From 7214d31f780b5d862df98f23994502639eb6dd34 Mon Sep 17 00:00:00 2001 From: spjspj Date: Fri, 16 Sep 2016 23:54:17 +1000 Subject: [PATCH 1/2] spjspj - Combustible Gearhulk --- .../src/mage/sets/masterpieceseries/CombustibleGearhulk.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/sets/masterpieceseries/CombustibleGearhulk.java b/Mage.Sets/src/mage/sets/masterpieceseries/CombustibleGearhulk.java index 15fa52f5a97..60ba3756c1c 100644 --- a/Mage.Sets/src/mage/sets/masterpieceseries/CombustibleGearhulk.java +++ b/Mage.Sets/src/mage/sets/masterpieceseries/CombustibleGearhulk.java @@ -31,7 +31,7 @@ import java.util.UUID; /** * - * @author anonymous + * @author spjspj */ public class CombustibleGearhulk extends mage.sets.kaladesh.CombustibleGearhulk { From 06c2a7b8a5784168955e1ad8df1d4be4b6252528 Mon Sep 17 00:00:00 2001 From: spjspj Date: Sat, 17 Sep 2016 01:15:13 +1000 Subject: [PATCH 2/2] spjspj - Combustible Gearhulk --- Mage.Sets/src/mage/sets/kaladesh/CombustibleGearhulk.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/sets/kaladesh/CombustibleGearhulk.java b/Mage.Sets/src/mage/sets/kaladesh/CombustibleGearhulk.java index a2285a7cdae..d5645ae1394 100644 --- a/Mage.Sets/src/mage/sets/kaladesh/CombustibleGearhulk.java +++ b/Mage.Sets/src/mage/sets/kaladesh/CombustibleGearhulk.java @@ -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. EntersBattlefieldTriggeredAbility ability = new EntersBattlefieldTriggeredAbility(new CombustibleGearhulkEffect(), false); - ability.addTarget(new TargetOpponent()); + + ability.addTarget(new TargetOpponent(false)); this.addAbility(ability); } @@ -83,6 +84,7 @@ class CombustibleGearhulkEffect extends OneShotEffect { public CombustibleGearhulkEffect() { 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) {