1
This commit is contained in:
parent
d4c8ce1939
commit
d1ff293dc2
@ -85,6 +85,36 @@ public:
|
||||
return brain_life_pct_;
|
||||
}
|
||||
|
||||
float GetSkillCdPct()
|
||||
{
|
||||
return 0.0f;
|
||||
}
|
||||
|
||||
float GetRescueTimePct()
|
||||
{
|
||||
return 0.0f;
|
||||
}
|
||||
|
||||
float GetDrugTimePct()
|
||||
{
|
||||
return 0.0f;
|
||||
}
|
||||
|
||||
float GetDrugEfficacyPct()
|
||||
{
|
||||
return 0.0f;
|
||||
}
|
||||
|
||||
float GetTenacityPct()
|
||||
{
|
||||
return 0.0f;
|
||||
}
|
||||
|
||||
float GetRecoverHpAdd()
|
||||
{
|
||||
return 0.0f;
|
||||
}
|
||||
|
||||
void Init(Creature* c)
|
||||
{
|
||||
if (hero_dto) {
|
||||
@ -895,30 +925,30 @@ float BattleDataContext::GetBrainLifePct()
|
||||
|
||||
float BattleDataContext::GetSkillCdPct()
|
||||
{
|
||||
return 0.0f;
|
||||
return hero_ability_->GetSkillCdPct();
|
||||
}
|
||||
|
||||
float BattleDataContext::GetRescueTimePct()
|
||||
{
|
||||
return 0.0f;
|
||||
return hero_ability_->GetRescueTimePct();
|
||||
}
|
||||
|
||||
float BattleDataContext::GetDrugTimePct()
|
||||
{
|
||||
return 0.0f;
|
||||
return hero_ability_->GetDrugTimePct();
|
||||
}
|
||||
|
||||
float BattleDataContext::GetDrugEfficacyPct()
|
||||
{
|
||||
return 0.0f;
|
||||
return hero_ability_->GetDrugEfficacyPct();
|
||||
}
|
||||
|
||||
float BattleDataContext::GetTenacityPct()
|
||||
{
|
||||
return 0.0f;
|
||||
return hero_ability_->GetTenacityPct();
|
||||
}
|
||||
|
||||
float BattleDataContext::GetRecoverHpAdd()
|
||||
{
|
||||
return 0.0f;
|
||||
return hero_ability_->GetRecoverHpAdd();
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user