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
+2 -2
View File
@@ -9,13 +9,13 @@ class che_징병_낙주 extends \sammo\BaseItem{
protected $rawName = '낙주';
protected $name = '낙주(징병)';
protected $info = '[군사] 징·모병비 -50%, 통솔 순수 능력치 보정 +15%';
protected $info = '[군사] 징·모병비 -30%, 통솔 순수 능력치 보정 +15%';
protected $cost = 200;
protected $consumable = false;
public function onCalcDomestic(string $turnType, string $varType, float $value, $aux=null):float{
if(in_array($turnType, ['징병', '모병'])){
if($varType == 'cost') return $value * 0.5;
if($varType == 'cost') return $value * 0.7;
}
return $value;