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
+2 -2
View File
@@ -9,7 +9,7 @@ class che_징병_낙주 extends \sammo\BaseItem{
protected $rawName = '낙주';
protected $name = '낙주(징병)';
protected $info = '[군사] 징·모병비 -50%, 통솔 순수 능력치 보정 +25%';
protected $info = '[군사] 징·모병비 -50%, 통솔 순수 능력치 보정 +15%';
protected $cost = 200;
protected $consumable = false;
@@ -23,7 +23,7 @@ class che_징병_낙주 extends \sammo\BaseItem{
public function onCalcStat(General $general, string $statName, $value, $aux=null){
if($statName === 'leadership'){
return $value + $general->getVar('leadership') * 0.25;
return $value + $general->getVar('leadership') * 0.15;
}
return $value;
}