[NEO] Implemented Tribute to Horobi / Echo of Death's Wail

This commit is contained in:
Daniel Bomar 2022-02-03 12:57:27 -06:00
parent d59f08bfbc
commit 0e23fae634
No known key found for this signature in database
GPG key ID: C86C8658F4023918
4 changed files with 180 additions and 0 deletions

View file

@ -0,0 +1,31 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
/**
*
* @author weirddan455
*/
public class RatRogueToken extends TokenImpl {
public RatRogueToken() {
super("Rat Rogue", "1/1 black Rat Rogue creature token");
cardType.add(CardType.CREATURE);
color.setBlack(true);
subtype.add(SubType.RAT);
subtype.add(SubType.ROGUE);
power = new MageInt(1);
toughness = new MageInt(1);
}
private RatRogueToken(final RatRogueToken token) {
super(token);
}
@Override
public RatRogueToken copy() {
return new RatRogueToken(this);
}
}