package net.demilich.metastone.game.spells;
import java.util.Map;
import net.demilich.metastone.game.Attribute;
import net.demilich.metastone.game.GameContext;
import net.demilich.metastone.game.Player;
import net.demilich.metastone.game.entities.Entity;
import net.demilich.metastone.game.spells.desc.SpellArg;
import net.demilich.metastone.game.spells.desc.SpellDesc;
import net.demilich.metastone.game.targeting.EntityReference;
public class RemoveAttributeSpell extends RevertableSpell {
public static SpellDesc create(Attribute tag) {
return create(null, tag);
}
public static SpellDesc create(EntityReference target, Attribute tag) {
Map<SpellArg, Object> arguments = SpellDesc.build(RemoveAttributeSpell.class);
arguments.put(SpellArg.ATTRIBUTE, tag);
arguments.put(SpellArg.TARGET, target);
return new SpellDesc(arguments);
}
@Override
protected SpellDesc getReverseSpell(SpellDesc desc, EntityReference target) {
return AddAttributeSpell.create(target, (Attribute) desc.get(SpellArg.ATTRIBUTE));
}
@Override
protected void onCast(GameContext context, Player player, SpellDesc desc, Entity source, Entity target) {
Attribute tag = (Attribute) desc.get(SpellArg.ATTRIBUTE);
context.getLogic().removeAttribute(target, tag);
super.onCast(context, player, desc, source, target);
}
}