removed instances of incorrect quote characters, expanded test

This commit is contained in:
Evan Kranzler 2021-11-24 20:56:31 -05:00
parent f66e844370
commit fba68a7255
5 changed files with 34 additions and 26 deletions

View file

@ -1,19 +1,17 @@
package mage.game.permanent.token;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.MageInt;
import mage.abilities.keyword.BandsWithOtherAbility;
import mage.constants.CardType;
import mage.constants.SubType;
/**
*
* @author L_J
*/
public final class WolvesOfTheHuntToken extends TokenImpl {
public WolvesOfTheHuntToken() {
super("Wolves of the Hunt", "1/1 green Wolf creature token named Wolves of the Hunt");
super("Wolves of the Hunt", "1/1 green Wolf creature token named Wolves of the Hunt. It has \"bands with other creatures named Wolves of the Hunt.\"");
cardType.add(CardType.CREATURE);
subtype.add(SubType.WOLF);
color.setGreen(true);