diff --git a/Mage.Sets/src/mage/sets/battleforzendikar/GruesomeSlaughter.java b/Mage.Sets/src/mage/sets/battleforzendikar/GruesomeSlaughter.java index 189f4108e2..65b5208a13 100644 --- a/Mage.Sets/src/mage/sets/battleforzendikar/GruesomeSlaughter.java +++ b/Mage.Sets/src/mage/sets/battleforzendikar/GruesomeSlaughter.java @@ -65,7 +65,9 @@ public class GruesomeSlaughter extends CardImpl { effect.setText("{this} deals damage equal to its power to target creature."); Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, effect, new TapSourceCost()); ability.addTarget(new TargetCreaturePermanent()); - this.getSpellAbility().addEffect(new GainAbilityControlledEffect(ability, Duration.EndOfTurn, filter)); + effect = new GainAbilityControlledEffect(ability, Duration.EndOfTurn, filter); + effect.setText("Until end of turn, colorless creatures you control gain \"{T}: This creature deals damage equal to its power to target creature.\""); + this.getSpellAbility().addEffect(effect); } public GruesomeSlaughter(final GruesomeSlaughter card) { diff --git a/Mage.Sets/src/mage/sets/timespiral/ForiysianTotem.java b/Mage.Sets/src/mage/sets/timespiral/ForiysianTotem.java index f5c35e200e..20f34eb946 100644 --- a/Mage.Sets/src/mage/sets/timespiral/ForiysianTotem.java +++ b/Mage.Sets/src/mage/sets/timespiral/ForiysianTotem.java @@ -83,7 +83,7 @@ public class ForiysianTotem extends CardImpl { class ForiysianTotemToken extends Token { public ForiysianTotemToken() { - super("", "4/4 red Giant artifact creature"); + super("", "4/4 red Giant artifact creature with trample"); cardType.add(CardType.CREATURE); cardType.add(CardType.ARTIFACT); subtype.add("Giant"); @@ -92,4 +92,4 @@ class ForiysianTotemToken extends Token { toughness = new MageInt(4); this.addAbility(TrampleAbility.getInstance()); } -} \ No newline at end of file +}