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

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