game: 사기, 훈련 유니크 수치 변경

This commit is contained in:
2022-02-20 03:04:45 +09:00
parent 575e03c0fc
commit 4e97c6f7a2
4 changed files with 8 additions and 8 deletions
@@ -7,13 +7,13 @@ class che_훈련_단결도 extends \sammo\BaseItem{
protected $rawName = '단결도';
protected $name = '단결도(훈련)';
protected $info = '[전투] 훈련 보정 +14';
protected $info = '[전투] 훈련 보정 +15';
protected $cost = 200;
protected $consumable = false;
public function onCalcStat(General $general, string $statName, $value, $aux=null){
if($statName === 'bonusTrain'){
return $value + 14;
return $value + 15;
}
return $value;
}