mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 12:48:00 +00:00
Ant Queen and Sengir Autocrat to xxMakeToken keyword
This commit is contained in:
@@ -3,6 +3,7 @@ ManaCost:3 G G
|
|||||||
Types:Creature Insect
|
Types:Creature Insect
|
||||||
Text:no text
|
Text:no text
|
||||||
PT:5/5
|
PT:5/5
|
||||||
|
K:abMakeToken 1 G<>1<>Insect<>G 1 1 Insect<>Controller<>G<>Creature;Insect<>1<>1<>None<>put a 1/1 green Insect creature token onto the battlefield.
|
||||||
SVar:Rarity:Rare
|
SVar:Rarity:Rare
|
||||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/ant_queen.jpg
|
SVar:Picture:http://www.wizards.com/global/images/magic/general/ant_queen.jpg
|
||||||
End
|
End
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ ManaCost:3 B
|
|||||||
Types:Creature Human
|
Types:Creature Human
|
||||||
Text:When Sengir Autocrat comes into play, put three 0/1 black Serf creature tokens into play.\r\nWhen Sengir Autocrat leaves play, remove all Serf tokens from the game.
|
Text:When Sengir Autocrat comes into play, put three 0/1 black Serf creature tokens into play.\r\nWhen Sengir Autocrat leaves play, remove all Serf tokens from the game.
|
||||||
PT:2/2
|
PT:2/2
|
||||||
|
K:etbMakeToken<>3<>Serf<>B 0 1 Serf<>Controller<>B<>Creature;Serf<>0<>1<>None<>put three 0/1 black Serf creature tokens into play.
|
||||||
SVar:Rarity:Uncommon
|
SVar:Rarity:Uncommon
|
||||||
SVar:Picture:http://resources.wizards.com/magic/cards/tsb/en-us/card106638.jpg
|
SVar:Picture:http://resources.wizards.com/magic/cards/tsb/en-us/card106638.jpg
|
||||||
End
|
End
|
||||||
|
|||||||
@@ -1853,6 +1853,7 @@ public class CardFactory_Creatures {
|
|||||||
|
|
||||||
//*************** START *********** START **************************
|
//*************** START *********** START **************************
|
||||||
else if(cardName.equals("Sengir Autocrat")) {
|
else if(cardName.equals("Sengir Autocrat")) {
|
||||||
|
/*
|
||||||
final SpellAbility ability = new Ability(card, "0") {
|
final SpellAbility ability = new Ability(card, "0") {
|
||||||
@Override
|
@Override
|
||||||
public void resolve() {
|
public void resolve() {
|
||||||
@@ -1869,21 +1870,17 @@ public class CardFactory_Creatures {
|
|||||||
+ " puts three 0/1 tokens into play");
|
+ " puts three 0/1 tokens into play");
|
||||||
AllZone.Stack.add(ability);
|
AllZone.Stack.add(ability);
|
||||||
}
|
}
|
||||||
};
|
};*/
|
||||||
Command leavesPlay = new Command() {
|
Command leavesPlay = new Command() {
|
||||||
private static final long serialVersionUID = 7242867764317580066L;
|
private static final long serialVersionUID = 7242867764317580066L;
|
||||||
|
|
||||||
public void execute() {
|
public void execute() {
|
||||||
CardList all = new CardList();
|
CardList all = AllZoneUtil.getTypeInPlay("Serf");
|
||||||
all.addAll(AllZone.Human_Play.getCards());
|
for(Card serf:all)
|
||||||
all.addAll(AllZone.Computer_Play.getCards());
|
AllZone.GameAction.exile(serf);
|
||||||
|
|
||||||
all = all.getType("Serf");
|
|
||||||
for(int i = 0; i < all.size(); i++)
|
|
||||||
AllZone.GameAction.destroy(all.get(i));
|
|
||||||
}//execute
|
}//execute
|
||||||
};//Command
|
};//Command
|
||||||
card.addComesIntoPlayCommand(intoPlay);
|
// card.addComesIntoPlayCommand(intoPlay);
|
||||||
card.addLeavesPlayCommand(leavesPlay);
|
card.addLeavesPlayCommand(leavesPlay);
|
||||||
}//*************** END ************ END **************************
|
}//*************** END ************ END **************************
|
||||||
|
|
||||||
@@ -3577,7 +3574,7 @@ public class CardFactory_Creatures {
|
|||||||
|
|
||||||
}//*************** END ************ END **************************
|
}//*************** END ************ END **************************
|
||||||
|
|
||||||
|
/*
|
||||||
//*************** START *********** START **************************
|
//*************** START *********** START **************************
|
||||||
else if(cardName.equals("Ant Queen")) {
|
else if(cardName.equals("Ant Queen")) {
|
||||||
final SpellAbility ability = new Ability(card, "1 G") {
|
final SpellAbility ability = new Ability(card, "1 G") {
|
||||||
@@ -3593,7 +3590,7 @@ public class CardFactory_Creatures {
|
|||||||
|
|
||||||
|
|
||||||
}//*************** END ************ END **************************
|
}//*************** END ************ END **************************
|
||||||
|
*/
|
||||||
|
|
||||||
//*************** START *********** START **************************
|
//*************** START *********** START **************************
|
||||||
else if(cardName.equals("Eternal Witness")) {
|
else if(cardName.equals("Eternal Witness")) {
|
||||||
|
|||||||
Reference in New Issue
Block a user