game: 도구 유니크 밸런스 수정

This commit is contained in:
2022-07-06 22:50:54 +09:00
parent e443f92ddb
commit 8089457aa8
14 changed files with 30 additions and 25 deletions
+2 -2
View File
@@ -14,7 +14,7 @@ class che_불굴_상편 extends \sammo\BaseItem
protected $rawName = '상편';
protected $name = '상편(불굴)';
protected $info = '[전투] 남은 병력이 적을수록 공격력 증가. 최대 +50%';
protected $info = '[전투] 남은 병력이 적을수록 공격력 증가. 최대 +60%';
protected $cost = 200;
protected $consumable = false;
@@ -25,7 +25,7 @@ class che_불굴_상편 extends \sammo\BaseItem
$crewRatio = Util::valueFit($crew / ($leadership * 100), 0, 1);
return new WarUnitTriggerCaller(
new 전투력보정($unit, 1 + 0.5 * (1 - $crewRatio))
new 전투력보정($unit, 1 + 0.6 * (1 - $crewRatio))
);
}
}