diff --git a/Mage.Sets/src/mage/cards/m/MasterOfTheHunt.java b/Mage.Sets/src/mage/cards/m/MasterOfTheHunt.java index 6a9bf75a11..39b54182e4 100644 --- a/Mage.Sets/src/mage/cards/m/MasterOfTheHunt.java +++ b/Mage.Sets/src/mage/cards/m/MasterOfTheHunt.java @@ -1,4 +1,3 @@ - package mage.cards.m; import java.util.UUID; @@ -17,24 +16,24 @@ import mage.game.permanent.token.WolvesOfTheHuntToken; * @author L_J */ public final class MasterOfTheHunt extends CardImpl { - + public MasterOfTheHunt(UUID ownerId, CardSetInfo setInfo) { - super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{2}{G}{G}"); + super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{G}{G}"); this.subtype.add(SubType.HUMAN); this.power = new MageInt(2); this.toughness = new MageInt(2); // Create a 1/1 green Wolf creature token named Wolves of the Hunt. It has “bands with other creatures named Wolves of the Hunt.” - this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new CreateTokenEffect(new WolvesOfTheHuntToken()), new ManaCostsImpl("{2}{G}{G}"))); + this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new CreateTokenEffect(new WolvesOfTheHuntToken()).setText("Create a 1/1 green Wolf creature token named Wolves of the Hunt. It has “bands with other creatures named Wolves of the Hunt.”"), new ManaCostsImpl("{2}{G}{G}"))); } - + private MasterOfTheHunt(final MasterOfTheHunt card) { super(card); } - + @Override public MasterOfTheHunt copy() { return new MasterOfTheHunt(this); } - + }