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

- 전략 쿨타임 2배 -> 4/3배
This commit is contained in:
2024-02-26 16:01:16 +00:00
parent 7c1a8d96a2
commit 71849a457b
+1 -1
View File
@@ -35,7 +35,7 @@ class che_음양가 extends \sammo\BaseNation{
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;
} }