game: 반계도구 제거, 도구 밸런스 조정

This commit is contained in:
2022-02-22 00:14:20 +09:00
parent 90a71ba75d
commit 0807f9912c
17 changed files with 56 additions and 38 deletions
@@ -8,17 +8,14 @@ class che_집중_전국책 extends \sammo\BaseItem
{
protected $rawName = '전국책';
protected $name = '전국책(집중)';
protected $info = '[전투] 계략 성공 시 대미지 +50%, 공격 시 페이즈 -1';
protected $info = '[전투] 계략 성공 시 대미지 +30%';
protected $cost = 200;
protected $consumable = false;
public function onCalcStat(General $general, string $statName, $value, $aux = null)
{
if ($statName === 'initWarPhase') {
return $value - 1;
}
if ($statName === 'warMagicSuccessDamage') {
return $value * 1.5;
return $value * 1.3;
}
return $value;
}