diff --git a/hwe/sammo/WarUnitGeneral.php b/hwe/sammo/WarUnitGeneral.php index 9b430259..f0ec04b4 100644 --- a/hwe/sammo/WarUnitGeneral.php +++ b/hwe/sammo/WarUnitGeneral.php @@ -157,7 +157,13 @@ class WarUnitGeneral extends WarUnit $general->increaseRankVar('occupied', 1); } - $general->multiplyVarWithLimit('atmos', 1.1, null, GameConst::$maxAtmosByWar); + if($this->isAttacker()){ + $general->multiplyVarWithLimit('atmos', 1.1, null, GameConst::$maxAtmosByWar); + } + else{ + $general->multiplyVarWithLimit('atmos', 1.05, null, GameConst::$maxAtmosByWar); + } + $this->addStatExp(1); }