훈련, 사기템 효과 두배

This commit is contained in:
2019-07-20 15:32:01 +09:00
parent 549114ae1f
commit 72682a3dd1
11 changed files with 22 additions and 22 deletions
@@ -7,13 +7,13 @@ class che_훈련_과실주 extends \sammo\BaseItem{
protected static $id = 12;
protected static $name = '과실주(훈련)';
protected static $info = '[전투] 훈련 보정 +5';
protected static $info = '[전투] 훈련 보정 +10';
protected static $cost = 200;
protected static $consumable = false;
public function onCalcStat(General $general, string $statName, $value, $aux=null){
if($statName === 'bonusTrain'){
return $value + 5;
return $value + 10;
}
return $value;
}