This commit is contained in:
aozhiwei 2023-07-21 18:56:56 +08:00
parent 30dbd7f3b2
commit f5626febf7

View File

@ -147,8 +147,8 @@ private:
(c->room->pve_instance->gemini_lv()); (c->room->pve_instance->gemini_lv());
if (standard_meta) { if (standard_meta) {
hp_ = standard_meta->hp(); hp_ = standard_meta->hp();
atk_ = standard_meta->damage() * hero_meta->damage_ratio(); atk_ = standard_meta->damage();
def_ = standard_meta->defence() * hero_meta->defence_ratio(); def_ = standard_meta->defence();
} else { } else {
#ifdef DEBUG #ifdef DEBUG
abort(); abort();
@ -168,8 +168,8 @@ private:
} }
if (standard_meta) { if (standard_meta) {
hp_ = standard_meta->hp(); hp_ = standard_meta->hp();
atk_ = standard_meta->damage() * hero_meta->damage_ratio(); atk_ = standard_meta->damage();
def_ = standard_meta->defence() * hero_meta->defence_ratio(); def_ = standard_meta->defence();
} }
} }
} }