Home
last modified time | relevance | path

Searched refs:get_sword_damage_factor (Results 1 – 9 of 9) sorted by relevance

/dports/games/solarus/solarus-f43727b232b3ed13d98440a845e2a29e470e4f0d/src/hero/
H A DSpinAttackState.cpp152 int Hero::SpinAttackState::get_sword_damage_factor() const { in get_sword_damage_factor() function in Solarus::Hero::SpinAttackState
155 return HeroState::get_sword_damage_factor() * 2; in get_sword_damage_factor()
H A DRunningState.cpp391 int Hero::RunningState::get_sword_damage_factor() const { in get_sword_damage_factor() function in Solarus::Hero::RunningState
394 return HeroState::get_sword_damage_factor() * 2; in get_sword_damage_factor()
/dports/games/solarus/solarus-f43727b232b3ed13d98440a845e2a29e470e4f0d/include/solarus/hero/
H A DSpinAttackState.h41 int get_sword_damage_factor() const override;
H A DRunningState.h61 int get_sword_damage_factor() const override;
/dports/games/solarus/solarus-f43727b232b3ed13d98440a845e2a29e470e4f0d/include/solarus/entities/
H A DEntityState.h165 virtual int get_sword_damage_factor() const;
H A DHero.h236 int get_sword_damage_factor() const;
/dports/games/solarus/solarus-f43727b232b3ed13d98440a845e2a29e470e4f0d/src/entities/
H A DEntityState.cpp1203 int Entity::State::get_sword_damage_factor() const { in get_sword_damage_factor() function in Solarus::Entity::State
H A DHero.cpp2187 int Hero::get_sword_damage_factor() const { in get_sword_damage_factor() function in Solarus::Hero
2188 return get_state()->get_sword_damage_factor(); in get_sword_damage_factor()
H A DEnemy.cpp1259 reaction.life_lost *= hero.get_sword_damage_factor(); in try_hurt()