game: 도구 유니크 밸런스 수정

This commit is contained in:
2022-07-06 22:50:54 +09:00
parent e443f92ddb
commit 8089457aa8
14 changed files with 30 additions and 25 deletions
@@ -8,13 +8,13 @@ class che_전략_평만지장도 extends \sammo\BaseItem{
protected $rawName = '평만지장도';
protected $name = '평만지장도(전략)';
protected $info = '[전략] 국가전략 사용시 재사용 대기 기간 -15%';
protected $info = '[전략] 국가전략 사용시 재사용 대기 기간 -20%';
protected $cost = 200;
protected $consumable = false;
public function onCalcStrategic(string $turnType, string $varType, $value){
if($varType == 'delay'){
return Util::round($value * 0.85);
return Util::round($value * 0.80);
}
return $value;
}