1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-03-31 01:07:39 -09:00

- fixed text on Master of the Hunt

This commit is contained in:
Jeff Wadsworth 2021-11-24 12:00:10 -06:00
parent 60167981c7
commit f66e844370

View file

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