spjspj - Combustible Gearhulk

This commit is contained in:
spjspj 2016-09-17 01:15:13 +10:00
parent 7214d31f78
commit 06c2a7b8a5

View file

@ -65,7 +65,8 @@ public class CombustibleGearhulk extends CardImpl {
// When Combustible Gearhulk enters the battlefield, target opponent may have you draw three cards. If the player doesn't, put the top three cards of your library into your graveyard, then Combustible Gearhulk deals damage to that player equal to the total converted mana cost of those cards. // When Combustible Gearhulk enters the battlefield, target opponent may have you draw three cards. If the player doesn't, put the top three cards of your library into your graveyard, then Combustible Gearhulk deals damage to that player equal to the total converted mana cost of those cards.
EntersBattlefieldTriggeredAbility ability = new EntersBattlefieldTriggeredAbility(new CombustibleGearhulkEffect(), false); EntersBattlefieldTriggeredAbility ability = new EntersBattlefieldTriggeredAbility(new CombustibleGearhulkEffect(), false);
ability.addTarget(new TargetOpponent());
ability.addTarget(new TargetOpponent(false));
this.addAbility(ability); this.addAbility(ability);
} }
@ -83,6 +84,7 @@ class CombustibleGearhulkEffect extends OneShotEffect {
public CombustibleGearhulkEffect() { public CombustibleGearhulkEffect() {
super(Outcome.AIDontUseIt); super(Outcome.AIDontUseIt);
staticText = "target opponent may have you draw three cards. If the player doesn't, put the top three cards of your library into your graveyard, then {this} deals damage to that player equal to the total converted mana cost of those cards";
} }
public CombustibleGearhulkEffect(final CombustibleGearhulkEffect effect) { public CombustibleGearhulkEffect(final CombustibleGearhulkEffect effect) {