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 === 'bonusAtmos'){
return $value + 14;
return $value + 15;
}
return $value;
}
@@ -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 === 'bonusAtmos'){
return $value + 14;
return $value + 15;
}
return $value;
}
@@ -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;
}
@@ -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;
}