Skip to content

Commit

Permalink
[DSK] Implement Tunnel Surveyor
Browse files Browse the repository at this point in the history
  • Loading branch information
theelk801 committed Sep 6, 2024
1 parent c97a2d4 commit 53f32fc
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
39 changes: 39 additions & 0 deletions Mage.Sets/src/mage/cards/t/TunnelSurveyor.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
package mage.cards.t;

import mage.MageInt;
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
import mage.abilities.effects.common.CreateTokenEffect;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.game.permanent.token.GlimmerToken;

import java.util.UUID;

/**
* @author TheElk801
*/
public final class TunnelSurveyor extends CardImpl {

public TunnelSurveyor(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{U}");

this.subtype.add(SubType.HUMAN);
this.subtype.add(SubType.DETECTIVE);
this.power = new MageInt(2);
this.toughness = new MageInt(2);

// When Tunnel Surveyor enters, create a 1/1 white Glimmer enchantment creature token.
this.addAbility(new EntersBattlefieldTriggeredAbility(new CreateTokenEffect(new GlimmerToken())));
}

private TunnelSurveyor(final TunnelSurveyor card) {
super(card);
}

@Override
public TunnelSurveyor copy() {
return new TunnelSurveyor(this);
}
}
1 change: 1 addition & 0 deletions Mage.Sets/src/mage/sets/DuskmournHouseOfHorror.java
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ private DuskmournHouseOfHorror() {
cards.add(new SetCardInfo("Threats Around Every Corner", 200, Rarity.UNCOMMON, mage.cards.t.ThreatsAroundEveryCorner.class));
cards.add(new SetCardInfo("Toby, Beastie Befriender", 35, Rarity.RARE, mage.cards.t.TobyBeastieBefriender.class));
cards.add(new SetCardInfo("Trapped in the Screen", 36, Rarity.COMMON, mage.cards.t.TrappedInTheScreen.class));
cards.add(new SetCardInfo("Tunnel Surveyor", 76, Rarity.COMMON, mage.cards.t.TunnelSurveyor.class));
cards.add(new SetCardInfo("Turn Inside Out", 160, Rarity.COMMON, mage.cards.t.TurnInsideOut.class));
cards.add(new SetCardInfo("Twitching Doll", 201, Rarity.RARE, mage.cards.t.TwitchingDoll.class));
cards.add(new SetCardInfo("Tyvar, the Pummeler", 202, Rarity.MYTHIC, mage.cards.t.TyvarThePummeler.class));
Expand Down

0 comments on commit 53f32fc

Please sign in to comment.