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:
Muz 2026-01-06 07:19:38 -06:00 committed by GitHub
parent 27d578074d
commit 00f9fabf9a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 408 additions and 3 deletions

View file

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

View file

@ -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|