Code from Beached As

Alaborn Zealot: Portal Second Age Uncommon
Add to CombatUtil.java after the Abomination code
Add to CombatUtil.java after the Abomination code
- Code: Select all
if(b.getName().equals("Alaborn Zealot") || b.getName().equals("Alaborn Zealot")) {
final Card blocker = b;
final Card attacker = a;
final Ability ability = new Ability(b, "0") {
@Override
public void resolve() {
AllZone.GameAction.destroy(attacker);
AllZone.GameAction.destroy(blocker);
}
};
ability.setStackDescription(b + " - destroy attacking creature.");
AllZone.Stack.add(ability);
}
- Code: Select all
Alaborn Zealot
W
Creature Human Soldier
When Alaborn Zealot blocks a creature, destroy that creature and Alaborn Zealot.
1/1