14 lines
495 B
Rust
14 lines
495 B
Rust
#[derive(Debug, Copy, Clone)]
|
|
pub enum Status {
|
|
Poison, // hp slowly decreases
|
|
Static, // chance to miss turn
|
|
Freeze, // hp slowly decreases and chance to miss turn
|
|
Burn, // hp slowly decreases and unable to cast magic
|
|
Slow, // speed is halved
|
|
Confuse, // chance to hit random target (self included)
|
|
Stop, // miss turn
|
|
Haste, // speed is doubled
|
|
Faint, // close to death
|
|
Dead, // dead, cannot be revived
|
|
}
|