diff --git a/hwe/sammo/WarUnitGeneral.php b/hwe/sammo/WarUnitGeneral.php index 82e301de..d0c16178 100644 --- a/hwe/sammo/WarUnitGeneral.php +++ b/hwe/sammo/WarUnitGeneral.php @@ -476,6 +476,10 @@ class WarUnitGeneral extends WarUnit{ $specialWar = $this->getSpecialWar(); $item = $this->getItem(); + if($specialWar == 73 && Util::randBool(0.2)){ + $this->activateSkill('치료'); + } + if( !$this->hasActivatedSkill('특수') && Util::randBool($this->getComputedCriticalRatio()) @@ -504,6 +508,14 @@ class WarUnitGeneral extends WarUnit{ $activated = true; } + if( + ($item == 23 || $item == 24) && + !$this->hasActivatedSkill('치료') && + Util::randBool(0.2) + ){ + $this->activateSkill('치료'); + } + return $activated; }