|
|
|
// • ▌ ▄ ·. ▄▄▄· ▄▄ • ▪ ▄▄· ▄▄▄▄· ▄▄▄· ▐▄▄▄ ▄▄▄ .
|
|
|
|
// ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪▐█ ▀█▪▐█ ▀█ •█▌ ▐█▐▌·
|
|
|
|
// ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄▐█▀▀█▄▄█▀▀█ ▐█▐ ▐▌▐▀▀▀
|
|
|
|
// ██ ██▌▐█▌▐█ ▪▐▌▐█▄▪▐█▐█▌▐███▌██▄▪▐█▐█ ▪▐▌██▐ █▌▐█▄▄▌
|
|
|
|
// ▀▀ █▪▀▀▀ ▀ ▀ ·▀▀▀▀ ▀▀▀·▀▀▀ ·▀▀▀▀ ▀ ▀ ▀▀ █▪ ▀▀▀
|
|
|
|
// 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
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|