Files
core/hwe/sammo/ActionSpecialDomestic/che_통찰.php
T
2020-04-26 22:31:49 +09:00

28 lines
836 B
PHP

<?php
namespace sammo\ActionSpecialDomestic;
use \sammo\iAction;
use \sammo\General;
use \sammo\SpecialityHelper;
class che_통찰 extends \sammo\BaseSpecial{
protected $id = 12;
protected $name = '통찰';
protected $info = '[내정] 치안 강화 : 기본 보정 +10%, 성공률 +10%p, 비용 -20%';
static $selectWeightType = SpecialityHelper::WEIGHT_NORM;
static $selectWeight = 1;
static $type = [
SpecialityHelper::STAT_STRENGTH
];
public function onCalcDomestic(string $turnType, string $varType, float $value, $aux=null):float{
if($turnType == '치안'){
if($varType == 'score') return $value * 1.1;
if($varType == 'cost') return $value * 0.8;
if($varType == 'success') return $value + 0.1;
}
return $value;
}
}