game: 수비자 피살 숙련도 0, 사살 숙련도 0.9->0.8

This commit is contained in:
2021-11-26 17:42:50 +09:00
parent 4ee6946828
commit d50c409315
+2 -2
View File
@@ -267,7 +267,7 @@ class WarUnitGeneral extends WarUnit
$addDex = $damage; $addDex = $damage;
if (!$this->isAttacker) { if (!$this->isAttacker) {
$addDex *= 0.9; $addDex = 0;
} }
$this->addDex($this->oppose->getCrewType(), $addDex); $this->addDex($this->oppose->getCrewType(), $addDex);
@@ -291,7 +291,7 @@ class WarUnitGeneral extends WarUnit
$addDex = $damage; $addDex = $damage;
if (!$this->isAttacker) { if (!$this->isAttacker) {
$addDex *= 0.9; $addDex *= 0.8;
} }
$this->addDex($this->getCrewType(), $addDex); $this->addDex($this->getCrewType(), $addDex);