mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 04:38:00 +00:00
convert Urza's Factory and Kjeldoran Outppost to abMakeToken keyword
This commit is contained in:
@@ -3,6 +3,7 @@ ManaCost:no cost
|
|||||||
Types:Land
|
Types:Land
|
||||||
Text:If Kjeldoran Outpost would enter the battlefield, sacrifice a Plains instead. If you do, put Kjeldoran Outpost onto the battlefield. If you don't, put it into its owner's graveyard.
|
Text:If Kjeldoran Outpost would enter the battlefield, sacrifice a Plains instead. If you do, put Kjeldoran Outpost onto the battlefield. If you don't, put it into its owner's graveyard.
|
||||||
K:tap: add W
|
K:tap: add W
|
||||||
|
K:abMakeToken 1 W T<>1<>Soldier<>W 1 1 Soldier<>Controller<>W<>Creature;Soldier<>1<>1<>None<>Put a 1/1 white Soldier creature token onto the battlefield.
|
||||||
SVar:Rarity:Rare
|
SVar:Rarity:Rare
|
||||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/kjeldoran_outpost.jpg
|
SVar:Picture:http://www.wizards.com/global/images/magic/general/kjeldoran_outpost.jpg
|
||||||
End
|
End
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ ManaCost:no cost
|
|||||||
Types:Land Urza's
|
Types:Land Urza's
|
||||||
Text:no text
|
Text:no text
|
||||||
K:tap: add 1
|
K:tap: add 1
|
||||||
|
K:abMakeToken 7<>1<>Assembly-Worker<>C 2 2 Assembly-Worker<>Controller<>1<>Artifact;Creature;Assembly-Worker<>2<>2<>None<>Put a 2/2 colorless Assembly-Worker artifact creature token onto the battlefield.
|
||||||
SVar:Rarity:Uncommon
|
SVar:Rarity:Uncommon
|
||||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/urzas_factory.jpg
|
SVar:Picture:http://www.wizards.com/global/images/magic/general/urzas_factory.jpg
|
||||||
End
|
End
|
||||||
|
|||||||
@@ -2557,6 +2557,7 @@ class CardFactory_Lands {
|
|||||||
}
|
}
|
||||||
//*************** END ************ END **************************
|
//*************** END ************ END **************************
|
||||||
|
|
||||||
|
/*
|
||||||
//*************** START *********** START **************************
|
//*************** START *********** START **************************
|
||||||
else if(cardName.equals("Urza's Factory")) {
|
else if(cardName.equals("Urza's Factory")) {
|
||||||
final Ability_Tap ability = new Ability_Tap(card, "7") {
|
final Ability_Tap ability = new Ability_Tap(card, "7") {
|
||||||
@@ -2582,6 +2583,7 @@ class CardFactory_Lands {
|
|||||||
card.addSpellAbility(ability);
|
card.addSpellAbility(ability);
|
||||||
|
|
||||||
}//*************** END ************ END **************************
|
}//*************** END ************ END **************************
|
||||||
|
*/
|
||||||
|
|
||||||
//*************** START *********** START **************************
|
//*************** START *********** START **************************
|
||||||
else if(cardName.equals("Goblin Burrows")) {
|
else if(cardName.equals("Goblin Burrows")) {
|
||||||
@@ -3574,20 +3576,21 @@ class CardFactory_Lands {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
/*
|
||||||
final Ability_Tap ability2 = new Ability_Tap(card, "1 W") {
|
final Ability_Tap ability2 = new Ability_Tap(card, "1 W") {
|
||||||
private static final long serialVersionUID = 6987135326425915833L;
|
private static final long serialVersionUID = 6987135326425915833L;
|
||||||
public void resolve() {
|
public void resolve() {
|
||||||
CardFactoryUtil.makeToken("Soldier", "W 1 1 Soldier", card, "W", new String[] {"Creature", "Soldier"}, 1, 1, new String[] {""});
|
CardFactoryUtil.makeToken("Soldier", "W 1 1 Soldier", card, "W", new String[] {"Creature", "Soldier"}, 1, 1, new String[] {""});
|
||||||
}
|
}
|
||||||
};//SpellAbility
|
};//SpellAbility */
|
||||||
|
|
||||||
card.addComesIntoPlayCommand(comesIntoPlay);
|
card.addComesIntoPlayCommand(comesIntoPlay);
|
||||||
|
/*
|
||||||
card.addSpellAbility(ability2);
|
card.addSpellAbility(ability2);
|
||||||
ability2.setDescription("1 W, tap: Put a 1/1 white soldier token in play.");
|
ability2.setDescription("1 W, tap: Put a 1/1 white soldier token in play.");
|
||||||
ability2.setStackDescription("Kjeldoran Outpost - put a 1/1 white soldier token in play");
|
ability2.setStackDescription("Kjeldoran Outpost - put a 1/1 white soldier token in play");
|
||||||
ability2.setBeforePayMana(new Input_PayManaCost(ability2));
|
ability2.setBeforePayMana(new Input_PayManaCost(ability2));
|
||||||
|
*/
|
||||||
}//*************** END ************ END **************************
|
}//*************** END ************ END **************************
|
||||||
|
|
||||||
//*************** START *********** START **************************
|
//*************** START *********** START **************************
|
||||||
|
|||||||
Reference in New Issue
Block a user