[DOM] Card Fixes

Fix: Grunn - Correct text for ability
Fix: Tatyova - Correct type line
This commit is contained in:
Justin Herlehy 2018-04-12 00:23:50 -07:00
parent 45a22e85ab
commit 2bb398b069
No known key found for this signature in database
GPG key ID: D6B412BFAE85AF92
2 changed files with 7 additions and 5 deletions

View file

@ -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();

View file

@ -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);