poke_engine::state

Struct Pokemon

source
pub struct Pokemon {
Show 17 fields pub id: String, pub level: i8, pub types: (PokemonType, PokemonType), pub hp: i16, pub maxhp: i16, pub ability: Abilities, pub item: Items, pub attack: i16, pub defense: i16, pub special_attack: i16, pub special_defense: i16, pub speed: i16, pub status: PokemonStatus, pub rest_turns: i8, pub sleep_turns: i8, pub weight_kg: f32, pub moves: PokemonMoves,
}

Fields§

§id: String§level: i8§types: (PokemonType, PokemonType)§hp: i16§maxhp: i16§ability: Abilities§item: Items§attack: i16§defense: i16§special_attack: i16§special_defense: i16§speed: i16§status: PokemonStatus§rest_turns: i8§sleep_turns: i8§weight_kg: f32§moves: PokemonMoves

Implementations§

source§

impl Pokemon

source

pub fn serialize(&self) -> String

source

pub fn deserialize(serialized: &str) -> Pokemon

source§

impl Pokemon

source

pub fn get_sleep_talk_choices(&self) -> Vec<Choice>

source

pub fn replace_move( &mut self, move_index: PokemonMoveIndex, new_move_name: Choices, )

source

pub fn add_available_moves( &self, vec: &mut Vec<MoveChoice>, last_used_move: &LastUsedMove, encored: bool, )

source

pub fn add_move_from_choice(&self, vec: &mut Vec<MoveChoice>, choice: Choices)

source

pub fn has_type(&self, pkmn_type: &PokemonType) -> bool

source

pub fn item_can_be_removed(&self) -> bool

source

pub fn is_grounded(&self) -> bool

source

pub fn calculate_highest_stat(&self) -> PokemonBoostableStat

source

pub fn volatile_status_can_be_applied( &self, volatile_status: &PokemonVolatileStatus, active_volatiles: &HashSet<PokemonVolatileStatus>, first_move: bool, ) -> bool

source

pub fn immune_to_stats_lowered_by_opponent( &self, stat: &PokemonBoostableStat, volatiles: &HashSet<PokemonVolatileStatus>, ) -> bool

Trait Implementations§

source§

impl Clone for Pokemon

source§

fn clone(&self) -> Pokemon

Returns a copy of the value. Read more
1.6.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Pokemon

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Pokemon

source§

fn default() -> Pokemon

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V