mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 12:48:00 +00:00
- Added Join the Ranks.
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
Join the Ranks
|
||||||
|
3 W
|
||||||
|
Instant
|
||||||
|
Put two 1/1 white Soldier Ally creature tokens onto the battlefield.
|
||||||
|
|
||||||
Virulent Sliver
|
Virulent Sliver
|
||||||
G
|
G
|
||||||
Creature Sliver
|
Creature Sliver
|
||||||
|
|||||||
@@ -16250,6 +16250,23 @@ public class CardFactory implements NewConstants {
|
|||||||
card.addSpellAbility(spell);
|
card.addSpellAbility(spell);
|
||||||
}//*************** END ************ END **************************
|
}//*************** END ************ END **************************
|
||||||
|
|
||||||
|
//*************** START *********** START **************************
|
||||||
|
else if(cardName.equals("Join the Ranks")) {
|
||||||
|
SpellAbility spell = new Spell(card) {
|
||||||
|
private static final long serialVersionUID = 2700238195526474372L;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void resolve() {
|
||||||
|
CardFactoryUtil.makeToken("Soldier Ally", "W 1 1 Soldier Ally", card, "W",
|
||||||
|
new String[] {"Creature", "Soldier", "Ally"}, 1, 1, new String[] {""});
|
||||||
|
CardFactoryUtil.makeToken("Soldier Ally", "W 1 1 Soldier Ally", card, "W",
|
||||||
|
new String[] {"Creature", "Soldier", "Ally"}, 1, 1, new String[] {""});
|
||||||
|
}//resolve()
|
||||||
|
};
|
||||||
|
card.clearSpellAbility();
|
||||||
|
card.addSpellAbility(spell);
|
||||||
|
}//*************** END ************ END **************************
|
||||||
|
|
||||||
// Cards with Cycling abilities
|
// Cards with Cycling abilities
|
||||||
// -1 means keyword "Cycling" not found
|
// -1 means keyword "Cycling" not found
|
||||||
if(hasKeyword(card, "Cycling") != -1) {
|
if(hasKeyword(card, "Cycling") != -1) {
|
||||||
|
|||||||
Reference in New Issue
Block a user