WarUnitTrigger 개편, 병종 Trigger 개념 추가, 저지, 성벽부상무효
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
namespace sammo\WarUnitTrigger;
|
||||
use sammo\BaseWarUnitTrigger;
|
||||
use sammo\WarUnitGeneral;
|
||||
use sammo\WarUnitCity;
|
||||
use sammo\WarUnit;
|
||||
use sammo\GameUnitDetail;
|
||||
use sammo\Util;
|
||||
use sammo\ObjectTrigger;
|
||||
|
||||
class che_저지발동 extends BaseWarUnitTrigger{
|
||||
static protected $priority = ObjectTrigger::PRIORITY_POST; //최우선 순위
|
||||
|
||||
protected function actionWar(WarUnit $self, WarUnit $oppose, array &$selfEnv, array &$opposeEnv):bool{
|
||||
if(!$self->hasActivatedSkill('저지')){
|
||||
return true;
|
||||
}
|
||||
|
||||
if($selfEnv['저지발동']??false){
|
||||
return true;
|
||||
}
|
||||
$selfEnv['저지발동'] = true;
|
||||
|
||||
$self->getLogger()->pushGeneralBattleDetailLog("상대를 <C>저지</>했다!", ActionLogger::PLAIN);
|
||||
$oppose->getLogger()->pushGeneralBattleDetailLog("저지</>당했다!", ActionLogger::PLAIN);
|
||||
|
||||
$self->addDex($oppose->getCrewType(), $oppose->getWarPower() * 0.9);
|
||||
$self->addDex($self->getCrewType(), $self->getWarPower() * 0.9);
|
||||
|
||||
$self->setWarPowerMultiply(0);
|
||||
$oppose->setWarPowerMultiply(0);
|
||||
|
||||
return false; //저지는 모든 특수 이벤트를 중지시킨다.
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user