forked from MagicBane/Server
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
2.4 KiB
58 lines
2.4 KiB
// • ▌ ▄ ·. ▄▄▄· ▄▄ • ▪ ▄▄· ▄▄▄▄· ▄▄▄· ▐▄▄▄ ▄▄▄ . |
|
// ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪▐█ ▀█▪▐█ ▀█ •█▌ ▐█▐▌· |
|
// ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄▐█▀▀█▄▄█▀▀█ ▐█▐ ▐▌▐▀▀▀ |
|
// ██ ██▌▐█▌▐█ ▪▐▌▐█▄▪▐█▐█▌▐███▌██▄▪▐█▐█ ▪▐▌██▐ █▌▐█▄▄▌ |
|
// ▀▀ █▪▀▀▀ ▀ ▀ ·▀▀▀▀ ▀▀▀·▀▀▀ ·▀▀▀▀ ▀ ▀ ▀▀ █▪ ▀▀▀ |
|
// Magicbane Emulator Project © 2013 - 2022 |
|
// www.magicbane.com |
|
|
|
|
|
package engine.powers.poweractions; |
|
|
|
import engine.math.Vector3fImmutable; |
|
import engine.mbEnums.EffectSourceType; |
|
import engine.objects.AbstractCharacter; |
|
import engine.objects.AbstractWorldObject; |
|
import engine.powers.ActionsBase; |
|
import engine.powers.PowersBase; |
|
import engine.wpak.data.PowerAction; |
|
|
|
|
|
public class RemoveEffectPowerAction extends AbstractPowerAction { |
|
|
|
|
|
public EffectSourceType sourceType; |
|
private boolean removeAll; |
|
|
|
public RemoveEffectPowerAction(PowerAction powerAction) { |
|
super(powerAction); |
|
String effectTypeToRemove = powerAction.damageType.name(); |
|
sourceType = EffectSourceType.GetEffectSourceType(effectTypeToRemove); |
|
this.removeAll = powerAction.removeAll; |
|
} |
|
|
|
|
|
@Override |
|
protected void _startAction(AbstractCharacter source, AbstractWorldObject awo, Vector3fImmutable targetLoc, int trains, ActionsBase ab, PowersBase pb) { |
|
if (awo != null) { |
|
|
|
|
|
if (this.removeAll) |
|
awo.removeEffectBySource(this.sourceType, trains, true); |
|
else if (this.getIDString().equals("SNC-003A")) |
|
trains = 40; |
|
awo.removeEffectBySource(this.sourceType, trains, false); |
|
} |
|
} |
|
|
|
@Override |
|
protected void _handleChant(AbstractCharacter source, AbstractWorldObject target, Vector3fImmutable targetLoc, int trains, ActionsBase ab, PowersBase pb) { |
|
} |
|
|
|
@Override |
|
protected void _startAction(AbstractCharacter source, AbstractWorldObject awo, Vector3fImmutable targetLoc, |
|
int numTrains, ActionsBase ab, PowersBase pb, int duration) { |
|
// TODO Auto-generated method stub |
|
|
|
} |
|
}
|
|
|