PkmnLib_rs/src/static_data/items/item_category.rs

22 lines
287 B
Rust
Raw Normal View History

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