전투 특기 클래스 추가,

This commit is contained in:
2018-09-17 03:31:36 +09:00
parent 51fdc2d920
commit 8a374e1963
34 changed files with 487 additions and 41 deletions
@@ -0,0 +1,21 @@
<?php
namespace sammo\TriggerSpecialWar;
use \sammo\iActionTrigger;
use \sammo\General;
use \sammo\SpecialityConst;
class che_저격 implements iActionTrigger{
use \sammo\DefaultActionTrigger;
static $id = 70;
static $name = '저격';
static $info = '[전투] 전투 개시 시 1/3 확률로 저격 발동';
static $selectWeightType = SpecialityConst::WEIGHT_NORM;
static $selectWeight = 1;
static $type = [
SpecialityConst::STAT_LEADERSHIP,
SpecialityConst::STAT_POWER,
SpecialityConst::STAT_INTEL
];
}