mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
[40K] Implemented Aberrant
This commit is contained in:
parent
191ea321f6
commit
6266d0c4ee
2 changed files with 98 additions and 0 deletions
97
Mage.Sets/src/mage/cards/a/Aberrant.java
Normal file
97
Mage.Sets/src/mage/cards/a/Aberrant.java
Normal file
|
@ -0,0 +1,97 @@
|
||||||
|
package mage.cards.a;
|
||||||
|
|
||||||
|
import mage.MageInt;
|
||||||
|
import mage.abilities.TriggeredAbilityImpl;
|
||||||
|
import mage.abilities.effects.common.DestroyTargetEffect;
|
||||||
|
import mage.abilities.keyword.RavenousAbility;
|
||||||
|
import mage.abilities.keyword.TrampleAbility;
|
||||||
|
import mage.cards.CardImpl;
|
||||||
|
import mage.cards.CardSetInfo;
|
||||||
|
import mage.constants.CardType;
|
||||||
|
import mage.constants.SubType;
|
||||||
|
import mage.constants.Zone;
|
||||||
|
import mage.filter.FilterPermanent;
|
||||||
|
import mage.filter.common.FilterArtifactOrEnchantmentPermanent;
|
||||||
|
import mage.filter.predicate.permanent.ControllerIdPredicate;
|
||||||
|
import mage.game.Game;
|
||||||
|
import mage.game.events.DamagedEvent;
|
||||||
|
import mage.game.events.GameEvent;
|
||||||
|
import mage.players.Player;
|
||||||
|
import mage.target.TargetPermanent;
|
||||||
|
|
||||||
|
import java.util.UUID;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author TheElk801
|
||||||
|
*/
|
||||||
|
public final class Aberrant extends CardImpl {
|
||||||
|
|
||||||
|
public Aberrant(UUID ownerId, CardSetInfo setInfo) {
|
||||||
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{X}{1}{G}");
|
||||||
|
|
||||||
|
this.subtype.add(SubType.TYRANID);
|
||||||
|
this.subtype.add(SubType.MUTANT);
|
||||||
|
this.power = new MageInt(0);
|
||||||
|
this.toughness = new MageInt(0);
|
||||||
|
|
||||||
|
// Ravenous
|
||||||
|
this.addAbility(new RavenousAbility());
|
||||||
|
|
||||||
|
// Trample
|
||||||
|
this.addAbility(TrampleAbility.getInstance());
|
||||||
|
|
||||||
|
// Heavy Power Hammer -- Whenever Aberrant deals combat damage to a player, destroy target artifact or enchantment that player controls.
|
||||||
|
this.addAbility(new AberrantTriggeredAbility());
|
||||||
|
}
|
||||||
|
|
||||||
|
private Aberrant(final Aberrant card) {
|
||||||
|
super(card);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Aberrant copy() {
|
||||||
|
return new Aberrant(this);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class AberrantTriggeredAbility extends TriggeredAbilityImpl {
|
||||||
|
|
||||||
|
AberrantTriggeredAbility() {
|
||||||
|
super(Zone.BATTLEFIELD, new DestroyTargetEffect()
|
||||||
|
.setText("destroy target artifact or enchantment that player controls"), false
|
||||||
|
);
|
||||||
|
this.withFlavorWord("Heavy Power Hammer");
|
||||||
|
this.setTriggerPhrase("Whenever {this} deals combat damage to a player, ");
|
||||||
|
}
|
||||||
|
|
||||||
|
private AberrantTriggeredAbility(final AberrantTriggeredAbility ability) {
|
||||||
|
super(ability);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public AberrantTriggeredAbility copy() {
|
||||||
|
return new AberrantTriggeredAbility(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean checkEventType(GameEvent event, Game game) {
|
||||||
|
return event.getType() == GameEvent.EventType.DAMAGED_PLAYER;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean checkTrigger(GameEvent event, Game game) {
|
||||||
|
Player player = game.getPlayer(event.getPlayerId());
|
||||||
|
if (player == null
|
||||||
|
|| !event.getSourceId().equals(this.getSourceId())
|
||||||
|
|| !((DamagedEvent) event).isCombatDamage()) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
FilterPermanent filter = new FilterArtifactOrEnchantmentPermanent(
|
||||||
|
"artifact or enchantment " + player.getLogName() + " controls"
|
||||||
|
);
|
||||||
|
filter.add(new ControllerIdPredicate(player.getId()));
|
||||||
|
this.getTargets().clear();
|
||||||
|
this.addTarget(new TargetPermanent(filter));
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
|
@ -21,6 +21,7 @@ public final class Warhammer40000 extends ExpansionSet {
|
||||||
this.hasBoosters = false;
|
this.hasBoosters = false;
|
||||||
|
|
||||||
cards.add(new SetCardInfo("Abaddon the Despoiler", 2, Rarity.MYTHIC, mage.cards.a.AbaddonTheDespoiler.class));
|
cards.add(new SetCardInfo("Abaddon the Despoiler", 2, Rarity.MYTHIC, mage.cards.a.AbaddonTheDespoiler.class));
|
||||||
|
cards.add(new SetCardInfo("Aberrant", 86, Rarity.UNCOMMON, mage.cards.a.Aberrant.class));
|
||||||
cards.add(new SetCardInfo("Abundance", 210, Rarity.RARE, mage.cards.a.Abundance.class));
|
cards.add(new SetCardInfo("Abundance", 210, Rarity.RARE, mage.cards.a.Abundance.class));
|
||||||
cards.add(new SetCardInfo("Aetherize", 191, Rarity.UNCOMMON, mage.cards.a.Aetherize.class));
|
cards.add(new SetCardInfo("Aetherize", 191, Rarity.UNCOMMON, mage.cards.a.Aetherize.class));
|
||||||
cards.add(new SetCardInfo("Arcane Signet", 227, Rarity.COMMON, mage.cards.a.ArcaneSignet.class));
|
cards.add(new SetCardInfo("Arcane Signet", 227, Rarity.COMMON, mage.cards.a.ArcaneSignet.class));
|
||||||
|
|
Loading…
Reference in a new issue