game: 수비자의 상대 병종을 0에서 0.1로 변경, 공격자 대비로는 10%

This commit is contained in:
2021-12-09 01:59:04 +09:00
parent 19b62a632b
commit 1d946aa525
+1 -1
View File
@@ -267,7 +267,7 @@ class WarUnitGeneral extends WarUnit
$addDex = $damage;
if (!$this->isAttacker) {
$addDex = 0;
$addDex = 0.1;
}
$this->addDex($this->oppose->getCrewType(), $addDex);