19 lines
464 B
PHP
19 lines
464 B
PHP
<?php
|
|
namespace sammo\TriggerSpecialWar;
|
|
use \sammo\iActionTrigger;
|
|
use \sammo\General;
|
|
use \sammo\SpecialityConst;
|
|
|
|
class che_신중 implements iActionTrigger{
|
|
use \sammo\DefaultActionTrigger;
|
|
|
|
static $id = 44;
|
|
static $name = '신중';
|
|
static $info = '[전투] 계략 성공 확률 100%';
|
|
|
|
static $selectWeightType = SpecialityConst::WEIGHT_NORM;
|
|
static $selectWeight = 1;
|
|
static $type = [
|
|
SpecialityConst::STAT_INTEL,
|
|
];
|
|
} |