mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 20:41:58 -08:00
More OGW token tweaks.
This commit is contained in:
parent
f51be0b3ef
commit
0271506646
6 changed files with 272 additions and 121 deletions
|
|
@ -40,6 +40,12 @@ import mage.constants.Zone;
|
|||
* @author fireshoes
|
||||
*/
|
||||
public class EldraziScionToken extends Token {
|
||||
|
||||
final static private List<String> tokenImageSets = new ArrayList<>();
|
||||
|
||||
static {
|
||||
tokenImageSets.addAll(Arrays.asList("BFZ", "OGW"));
|
||||
}
|
||||
|
||||
public EldraziScionToken() {
|
||||
super("Eldrazi Scion", "1/1 colorless Eldrazi Scion creature token with \"Sacrifice this creature: Add {C} to your mana pool.\"");
|
||||
|
|
@ -49,8 +55,6 @@ public class EldraziScionToken extends Token {
|
|||
power = new MageInt(1);
|
||||
toughness = new MageInt(1);
|
||||
addAbility(new SimpleManaAbility(Zone.BATTLEFIELD, Mana.GenericMana(1), new SacrificeSourceCost()));
|
||||
setOriginalExpansionSetCode("BFZ");
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
@ -59,6 +63,9 @@ public class EldraziScionToken extends Token {
|
|||
if (getOriginalExpansionSetCode().equals("BFZ")) {
|
||||
this.setTokenType(new Random().nextInt(3) + 1); // 3 different images
|
||||
}
|
||||
if (getOriginalExpansionSetCode().equals("OGW")) {
|
||||
this.setTokenType(new Random().nextInt(6) + 1); // 6 different images
|
||||
}
|
||||
}
|
||||
|
||||
public EldraziScionToken(final EldraziScionToken token) {
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ public class ZombieToken extends Token {
|
|||
final static private List<String> tokenImageSets = new ArrayList<>();
|
||||
|
||||
static {
|
||||
tokenImageSets.addAll(Arrays.asList("10E", "M10", "M11", "M12", "M13", "M14", "M15", "MBS", "ALA", "ISD", "C14", "C15", "CNS", "MMA", "BNG", "KTK", "DTK", "ORI"));
|
||||
tokenImageSets.addAll(Arrays.asList("10E", "M10", "M11", "M12", "M13", "M14", "M15", "MBS", "ALA", "ISD", "C14", "C15", "CNS", "MMA", "BNG", "KTK", "DTK", "ORI", "OGW));
|
||||
}
|
||||
|
||||
public ZombieToken() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue