mirror of
https://github.com/magefree/mage.git
synced 2026-01-24 12:19:59 -08:00
Add in some ECL spoilers to ECL and SPG (#14170)
* Update SPG with ECL spoilers * Add spoiled reprints to Lorwyn Eclipsed * mtg-cards-data for spoiled ECL cards * [ECL] Add Virulent Emissary * [ECL] Add Lys Alana Informant * [ECL] Add Crossroads Watcher * [ECL] Add Sear * [ECL] Add Thoughtweft Lieutenant * [ECL] Add Vinebred Brawler * [ECL] Add Elder Auntie and supporting black/red Goblin token --------- Co-authored-by: Evan Kranzler <theelk801@gmail.com>
This commit is contained in:
parent
27d578074d
commit
00f9fabf9a
12 changed files with 408 additions and 3 deletions
|
|
@ -0,0 +1,29 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
/**
|
||||
* @author muz
|
||||
*/
|
||||
public final class BlackAndRedGoblinToken extends TokenImpl {
|
||||
|
||||
public BlackAndRedGoblinToken() {
|
||||
super("Goblin Token", "1/1 black and red Goblin creature token");
|
||||
cardType.add(CardType.CREATURE);
|
||||
subtype.add(SubType.GOBLIN);
|
||||
color.setBlack(true);
|
||||
color.setRed(true);
|
||||
power = new MageInt(1);
|
||||
toughness = new MageInt(1);
|
||||
}
|
||||
|
||||
private BlackAndRedGoblinToken(final BlackAndRedGoblinToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public BlackAndRedGoblinToken copy() {
|
||||
return new BlackAndRedGoblinToken(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -2910,6 +2910,9 @@
|
|||
|Generate|TOK:TLE|Marit Lage|||MaritLageToken|
|
||||
|Generate|TOK:TLE|Soldier|||SoldierRedToken|
|
||||
|
||||
# ECL
|
||||
|Generate|TOK:ECL|Goblin|||BlackAndRedGoblinToken|
|
||||
|
||||
#TMT
|
||||
|Generate|TOK:TMT|Mutagen|||MutagenToken|
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue