36 lines
1.0 KiB
PHP
36 lines
1.0 KiB
PHP
<?php
|
|
namespace sammo\ActionSpecialWar;
|
|
use \sammo\iAction;
|
|
use \sammo\General;
|
|
use \sammo\SpecialityHelper;
|
|
use \sammo\WarUnit;
|
|
use sammo\WarUnitTriggerCaller;
|
|
use sammo\WarUnitTrigger\che_필살강화_회피불가;
|
|
|
|
class che_필살 extends \sammo\BaseSpecial{
|
|
|
|
protected $id = 71;
|
|
protected $name = '필살';
|
|
protected $info = '[전투] 필살 확률 +20%p, 필살 발동시 대상 회피 불가';
|
|
|
|
static $selectWeightType = SpecialityHelper::WEIGHT_NORM;
|
|
static $selectWeight = 1;
|
|
static $type = [
|
|
SpecialityHelper::STAT_LEADERSHIP,
|
|
SpecialityHelper::STAT_STRENGTH,
|
|
SpecialityHelper::STAT_INTEL
|
|
];
|
|
|
|
public function onCalcStat(General $general, string $statName, $value, $aux=null){
|
|
if($statName === 'warCriticalRatio'){
|
|
return $value + 0.2;
|
|
}
|
|
return $value;
|
|
}
|
|
|
|
public function getBattlePhaseSkillTriggerList(WarUnit $unit):?WarUnitTriggerCaller{
|
|
return new WarUnitTriggerCaller(
|
|
new che_필살강화_회피불가($unit)
|
|
);
|
|
}
|
|
} |