fix: g65_계략성공 보정치 수정

- 방어율도 100%p가까이 나올 수 있으므로 200%p 를 챙겨야 100%p 달성 가능
This commit is contained in:
2023-12-26 10:14:45 +00:00
parent 613a51db0d
commit 19f365b5d3
+1 -1
View File
@@ -12,7 +12,7 @@ class g65_계략성공 implements iAction
function onCalcDomestic(string $turnType, string $varType, float $value, $aux = null): float
{
if($turnType == '계략'){
if($varType == 'success') return $value + 1;
if($varType == 'success') return $value + 2;
}
return $value;
}