diff --git a/hwe/sammo/ActionItem/event_전투특기_무쌍.php b/hwe/sammo/ActionItem/event_전투특기_무쌍.php index 6a28d62e..f1ebd5a9 100644 --- a/hwe/sammo/ActionItem/event_전투특기_무쌍.php +++ b/hwe/sammo/ActionItem/event_전투특기_무쌍.php @@ -11,7 +11,7 @@ class event_전투특기_무쌍 extends \sammo\BaseItem{ protected $id = 61; protected $rawName = '비급'; protected $name = '비급(무쌍)'; - protected $info = '[전투] 대미지 +10%, 공격 시 필살 확률 +10%p,
승리 수만큼 대미지 0.20%씩 추가 상승(최대40%)
승리 수만큼 피해 0.05%씩 감소(최대50%)'; + protected $info = '[전투] 대미지 +10%, 피해 -5%, 공격 시 필살 확률 +10%p,
승리 수만큼 대미지 0.20%씩 추가 상승(최대40%)
승리 수만큼 피해 0.03%씩 감소(최대30%)'; protected $cost = 100; protected $buyable = true; protected $consumable = false; @@ -26,10 +26,10 @@ class event_전투특기_무쌍 extends \sammo\BaseItem{ public function getWarPowerMultiplier(WarUnit $unit):array{ $attackMultiplier = 1.1; - $defenceMultiplier = 1; + $defenceMultiplier = 0.95; $killnum = $unit->getGeneral()->getRankVar('killnum'); $attackMultiplier += Util::valueFit($killnum * 0.01 * 0.2, null, 0.4); - $defenceMultiplier -= Util::valueFit($killnum * 0.01 * 0.05, null, 0.5); + $defenceMultiplier -= Util::valueFit($killnum * 0.01 * 0.03, null, 0.3); return [$attackMultiplier, $defenceMultiplier]; } } \ No newline at end of file diff --git a/hwe/sammo/ActionSpecialDomestic/che_event_무쌍.php b/hwe/sammo/ActionSpecialDomestic/che_event_무쌍.php index 340577e8..0afebd6d 100644 --- a/hwe/sammo/ActionSpecialDomestic/che_event_무쌍.php +++ b/hwe/sammo/ActionSpecialDomestic/che_event_무쌍.php @@ -10,7 +10,7 @@ class che_event_무쌍 extends \sammo\BaseSpecial{ protected $id = 61; protected $name = '무쌍'; - protected $info = '[전투] 대미지 +10%, 공격 시 필살 확률 +10%p,
승리 수만큼 대미지 0.20%씩 추가 상승(최대40%)
승리 수만큼 피해 0.05%씩 감소(최대50%)'; + protected $info = '[전투] 대미지 +10%, 피해 -5%, 공격 시 필살 확률 +10%p,
승리 수만큼 대미지 0.20%씩 추가 상승(최대40%)
승리 수만큼 피해 0.03%씩 감소(최대30%)'; static $selectWeightType = SpecialityHelper::WEIGHT_NORM; static $selectWeight = 1; @@ -30,7 +30,7 @@ class che_event_무쌍 extends \sammo\BaseSpecial{ $defenceMultiplier = 1; $killnum = $unit->getGeneral()->getRankVar('killnum'); $attackMultiplier += Util::valueFit($killnum * 0.01 * 0.2, null, 0.4); - $defenceMultiplier -= Util::valueFit($killnum * 0.01 * 0.05, null, 0.5); + $defenceMultiplier -= Util::valueFit($killnum * 0.01 * 0.03, null, 0.3); return [$attackMultiplier, $defenceMultiplier]; } } \ No newline at end of file