mirror of
https://github.com/magefree/mage.git
synced 2026-01-24 20:29:19 -08:00
[DOM] Card Fixes
Fix: Grunn - Correct text for ability Fix: Tatyova - Correct type line
This commit is contained in:
parent
45a22e85ab
commit
2bb398b069
2 changed files with 7 additions and 5 deletions
|
|
@ -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();
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue