PkmnLib_rs/src/static_data/items/item_category.rs

22 lines
312 B
Rust
Raw Normal View History

#[derive(Debug, Copy, Clone)]
2022-06-03 14:35:18 +00:00
#[repr(u8)]
pub enum ItemCategory {
MiscItem,
Pokeball,
Medicine,
Berry,
TMHM,
FormChanger,
KeyItem,
Mail,
}
#[derive(Debug, Copy, Clone)]
2022-06-03 14:35:18 +00:00
#[repr(u8)]
pub enum BattleItemCategory {
Healing,
StatusHealing,
Pokeball,
MiscBattleItem,
}