mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 05:22:02 -08:00
[NEO] Implemented Tribute to Horobi / Echo of Death's Wail
This commit is contained in:
parent
d59f08bfbc
commit
0e23fae634
4 changed files with 180 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue