From b185a344942ca2cfd9a6bfd89c1f9493d165e48a Mon Sep 17 00:00:00 2001 From: Evan Kranzler Date: Sat, 5 Feb 2022 13:26:14 -0500 Subject: [PATCH] [NEO] Implemented Acquisition Octopus --- .../src/mage/cards/a/AcquisitionOctopus.java | 85 +++++++++++++++++++ .../src/mage/sets/KamigawaNeonDynasty.java | 1 + 2 files changed, 86 insertions(+) create mode 100644 Mage.Sets/src/mage/cards/a/AcquisitionOctopus.java diff --git a/Mage.Sets/src/mage/cards/a/AcquisitionOctopus.java b/Mage.Sets/src/mage/cards/a/AcquisitionOctopus.java new file mode 100644 index 0000000000..e49d61f649 --- /dev/null +++ b/Mage.Sets/src/mage/cards/a/AcquisitionOctopus.java @@ -0,0 +1,85 @@ +package mage.cards.a; + +import mage.MageInt; +import mage.abilities.TriggeredAbilityImpl; +import mage.abilities.effects.common.DrawCardSourceControllerEffect; +import mage.abilities.keyword.ReconfigureAbility; +import mage.cards.CardImpl; +import mage.cards.CardSetInfo; +import mage.constants.CardType; +import mage.constants.SubType; +import mage.constants.Zone; +import mage.game.Game; +import mage.game.events.DamagedEvent; +import mage.game.events.GameEvent; +import mage.game.permanent.Permanent; + +import java.util.UUID; + +/** + * @author TheElk801 + */ +public final class AcquisitionOctopus extends CardImpl { + + public AcquisitionOctopus(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT, CardType.CREATURE}, "{2}{U}"); + + this.subtype.add(SubType.EQUIPMENT); + this.subtype.add(SubType.OCTOPUS); + this.power = new MageInt(2); + this.toughness = new MageInt(2); + + // When Acquisition Octopus or equipped creature deals combat damage to a player, draw a card. + this.addAbility(new AcquisitionOctopusTriggeredAbility()); + + // Reconfigure {2} + this.addAbility(new ReconfigureAbility("{2}")); + } + + private AcquisitionOctopus(final AcquisitionOctopus card) { + super(card); + } + + @Override + public AcquisitionOctopus copy() { + return new AcquisitionOctopus(this); + } +} + +class AcquisitionOctopusTriggeredAbility extends TriggeredAbilityImpl { + + AcquisitionOctopusTriggeredAbility() { + super(Zone.BATTLEFIELD, new DrawCardSourceControllerEffect(1)); + } + + private AcquisitionOctopusTriggeredAbility(final AcquisitionOctopusTriggeredAbility ability) { + super(ability); + } + + @Override + public AcquisitionOctopusTriggeredAbility copy() { + return new AcquisitionOctopusTriggeredAbility(this); + } + + @Override + public boolean checkEventType(GameEvent event, Game game) { + return event.getType() == GameEvent.EventType.DAMAGED_PLAYER; + } + + @Override + public boolean checkTrigger(GameEvent event, Game game) { + if (!((DamagedEvent) event).isCombatDamage()) { + return false; + } + if (getSourceId().equals(event.getSourceId())) { + return true; + } + Permanent permanent = getSourcePermanentOrLKI(game); + return permanent != null && event.getSourceId().equals(permanent.getAttachedTo()); + } + + @Override + public String getRule() { + return "When {this} or equipped creature deals combat damage to a player, draw a card."; + } +} diff --git a/Mage.Sets/src/mage/sets/KamigawaNeonDynasty.java b/Mage.Sets/src/mage/sets/KamigawaNeonDynasty.java index 9d3666733b..ea72d5da04 100644 --- a/Mage.Sets/src/mage/sets/KamigawaNeonDynasty.java +++ b/Mage.Sets/src/mage/sets/KamigawaNeonDynasty.java @@ -26,6 +26,7 @@ public final class KamigawaNeonDynasty extends ExpansionSet { this.hasBasicLands = true; this.numBoosterDoubleFaced = 1; // temporary test fix + cards.add(new SetCardInfo("Acquisition Octopus", 44, Rarity.UNCOMMON, mage.cards.a.AcquisitionOctopus.class)); cards.add(new SetCardInfo("Akki Ember-Keeper", 130, Rarity.COMMON, mage.cards.a.AkkiEmberKeeper.class)); cards.add(new SetCardInfo("Akki Ronin", 131, Rarity.COMMON, mage.cards.a.AkkiRonin.class)); cards.add(new SetCardInfo("Akki War Paint", 132, Rarity.COMMON, mage.cards.a.AkkiWarPaint.class));