From 2bb398b06921d612fffa97fd212b864fd981241b Mon Sep 17 00:00:00 2001 From: Justin Herlehy Date: Thu, 12 Apr 2018 00:23:50 -0700 Subject: [PATCH] [DOM] Card Fixes Fix: Grunn - Correct text for ability Fix: Tatyova - Correct type line --- Mage.Sets/src/mage/cards/g/GrunnTheLonelyKing.java | 3 ++- Mage.Sets/src/mage/cards/t/TatyovaBenthicDruid.java | 9 +++++---- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/Mage.Sets/src/mage/cards/g/GrunnTheLonelyKing.java b/Mage.Sets/src/mage/cards/g/GrunnTheLonelyKing.java index 5f1b1c8f247..a4c951c585e 100644 --- a/Mage.Sets/src/mage/cards/g/GrunnTheLonelyKing.java +++ b/Mage.Sets/src/mage/cards/g/GrunnTheLonelyKing.java @@ -39,7 +39,8 @@ public class GrunnTheLonelyKing extends CardImpl { this.addAbility(new KickerAbility("{3}")); //If Grunn, the Lonely King was kicked, it enters the battlefield with five +1/+1 counters on it. - this.addAbility(new EntersBattlefieldAbility(new ConditionalOneShotEffect(new AddCountersSourceEffect(CounterType.P1P1.createInstance(5)), KickedCondition.instance))); + this.addAbility(new EntersBattlefieldAbility(new AddCountersSourceEffect(CounterType.P1P1.createInstance(5)), + KickedCondition.instance, "If {this} was kicked, it enters the battlefield with five +1/+1 counters on it", "")); //Whenever Grunn attacks alone, double its power and toughness until end of turn. SourcePermanentPowerCount power = new SourcePermanentPowerCount(); diff --git a/Mage.Sets/src/mage/cards/t/TatyovaBenthicDruid.java b/Mage.Sets/src/mage/cards/t/TatyovaBenthicDruid.java index c10948c377c..eb3a4ee5265 100644 --- a/Mage.Sets/src/mage/cards/t/TatyovaBenthicDruid.java +++ b/Mage.Sets/src/mage/cards/t/TatyovaBenthicDruid.java @@ -47,10 +47,11 @@ import mage.filter.common.FilterLandPermanent; public class TatyovaBenthicDruid extends CardImpl { public TatyovaBenthicDruid(UUID ownerId, CardSetInfo setInfo) { - super(ownerId,setInfo,new CardType[]{CardType.ENCHANTMENT,CardType.CREATURE},"{3}{G}{U}"); - addSuperType(SuperType.LEGENDARY); - this.subtype.add(SubType.MERFOLK); - this.subtype.add(SubType.DRUID); + super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{3}{G}{U}"); + + this.addSuperType(SuperType.LEGENDARY); + this.subtype.add(SubType.MERFOLK, SubType.DRUID); + this.power = new MageInt(3); this.toughness = new MageInt(3);