game: 종횡가의 전략 디메리트 감소

- 전략 쿨타임 2배 -> 4/3배
This commit is contained in:
2024-02-26 16:01:16 +00:00
parent 7c1a8d96a2
commit 71849a457b
+2 -2
View File
@@ -29,13 +29,13 @@ class che_음양가 extends \sammo\BaseNation{
if($type == 'pop' && $amount > 0){ if($type == 'pop' && $amount > 0){
return $amount * 1.2; return $amount * 1.2;
} }
return $amount; return $amount;
} }
public function onCalcStrategic(string $turnType, string $varType, $value){ public function onCalcStrategic(string $turnType, string $varType, $value){
if($varType == 'delay'){ if($varType == 'delay'){
return $value * 2; return Util::round($value * 4 / 3);
} }
return $value; return $value;
} }