diff --git a/pkmn_lib_interface/src/app_interface/dynamic_data/pokemon.rs b/pkmn_lib_interface/src/app_interface/dynamic_data/pokemon.rs index 754495b..52dc7f3 100755 --- a/pkmn_lib_interface/src/app_interface/dynamic_data/pokemon.rs +++ b/pkmn_lib_interface/src/app_interface/dynamic_data/pokemon.rs @@ -25,7 +25,7 @@ pub trait PokemonTrait: WithVolatile { fn battle(&self) -> PkmnResult>; fn level(&self) -> PkmnResult; fn experience(&self) -> PkmnResult; - fn unique_identifier(&self) -> PkmnResult; + fn personality_value(&self) -> PkmnResult; fn gender(&self) -> PkmnResult; fn coloring(&self) -> PkmnResult; fn current_health(&self) -> PkmnResult; @@ -387,7 +387,7 @@ mod implementation { Pokemon, fn level(&self) -> LevelInt; fn experience(&self) -> u32; - fn unique_identifier(&self) -> u32; + fn personality_value(&self) -> u32; fn gender(&self) -> Gender; fn coloring(&self) -> u8; fn current_health(&self) -> u32; @@ -542,7 +542,7 @@ mod implementation { PokemonImpl, Pokemon, pub fn level(&self) -> LevelInt; pub fn experience(&self) -> u32; - pub fn unique_identifier(&self) -> u32; + pub fn personality_value(&self) -> u32; pub fn gender(&self) -> Gender; pub fn coloring(&self) -> u8; pub fn current_health(&self) -> u32; @@ -675,7 +675,7 @@ mockall::mock!( fn battle(&self) -> PkmnResult>; fn level(&self) -> PkmnResult; fn experience(&self) -> PkmnResult; - fn unique_identifier(&self) -> PkmnResult; + fn personality_value(&self) -> PkmnResult; fn gender(&self) -> PkmnResult; fn coloring(&self) -> PkmnResult; fn current_health(&self) -> PkmnResult;