전투 이벤트 갱신

This commit is contained in:
2019-06-05 01:36:57 +09:00
parent 4fdcc0221d
commit 22b57f39ef
11 changed files with 214 additions and 4 deletions
@@ -0,0 +1,29 @@
<?php
namespace sammo\WarUnitTrigger;
use sammo\BaseWarUnitTrigger;
use sammo\WarUnitGeneral;
use sammo\WarUnitCity;
use sammo\WarUnit;
use sammo\GameUnitDetail;
use sammo\ObjectTrigger;
class che_반계시도 extends BaseWarUnitTrigger{
static protected $priority = ObjectTrigger::PRIORITY_BODY + 300;
protected function actionWar(WarUnit $self, WarUnit $oppose, array &$selfEnv, array &$opposeEnv):bool{
if(!$oppose->hasActivatedSkill('계략')){
return true;
}
if(!Util::randBool(0.4)){
return true;
}
assert(key_exists('magic', $opposeEnv));
$self->activateSkill('반계');
$oppose->deactivateSkill('계략');
return true;
}
}