pub struct Stats {Show 43 fields
pub id: u32,
pub name: String,
pub form: Stage,
pub condition: Normal,
pub element1: Normal,
pub element2: Advanced,
pub rate: Rate,
pub owner: u32,
pub xp: f64,
pub total_xp: f64,
pub hp_xp: f64,
pub atk_xp: f64,
pub def_xp: f64,
pub speed_xp: f64,
pub special_xp: f64,
pub level: f64,
pub hp_max: f64,
pub hp: f64,
pub atk: f64,
pub def: f64,
pub speed: f64,
pub special: f64,
pub image: String,
pub move0: Normal,
pub move0_mp: f64,
pub move1: Normal,
pub move1_mp: f64,
pub move2: Normal,
pub move2_mp: f64,
pub move3: Normal,
pub move3_mp: f64,
pub move4: Normal,
pub move4_mp: f64,
pub item0: Normal,
pub items0: f64,
pub item1: Normal,
pub items1: f64,
pub item2: Normal,
pub items2: f64,
pub item3: Normal,
pub items3: f64,
pub item4: Normal,
pub items4: f64,
}Fields§
§id: u32Identification number
name: StringName of creature
form: StageCurrent Stage
condition: NormalCurrent status/ailment condition
element1: NormalNormal element type
element2: AdvancedAdvanced element type
rate: RateThe rate of occurrence, or rate of success
owner: u32this is the owner’s id
xp: f64level cycle xp (for display)
total_xp: f64Total XP
hp_xp: f64Experience points for leveling Health Points
atk_xp: f64Experience points for leveling Attack
def_xp: f64Experience points for leveling Defense
speed_xp: f64Experience points for leveling Speed
special_xp: f64Experience points for leveling Special
level: f64Current level
hp_max: f64Maximum Health Points
hp: f64Current Health Points
atk: f64Attack power
def: f64Defense capability
speed: f64Speed of creature in battle, or as they move
special: f64§image: StringPutting a file name here generates a picture
move0: Normal§move0_mp: f64Mana Points for Special move 0
move1: Normal§move1_mp: f64Mana Points for Special move 1
move2: Normal§move2_mp: f64Mana Points for Special move 2
move3: Normal§move3_mp: f64Mana Points for Special move 3
move4: Normal§move4_mp: f64Mana Points for Special move 4
item0: Normal§items0: f64Number of items in slot 0
item1: Normal§items1: f64Number of items in slot 1
item2: Normal§items2: f64Number of items in slot 2
item3: Normal§items3: f64Number of items in slot 3
item4: Normal§items4: f64Number of items in slot 4