mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 12:48:00 +00:00
Converted four cards from code to keyword:
Festival of Trokin Reviving Dose Sacred Nectar Wandering Stream
This commit is contained in:
@@ -4745,6 +4745,7 @@ Sacred Nectar
|
|||||||
1 W
|
1 W
|
||||||
Sorcery
|
Sorcery
|
||||||
no text
|
no text
|
||||||
|
spGainLife:4
|
||||||
|
|
||||||
Maniacal Rage
|
Maniacal Rage
|
||||||
1 R
|
1 R
|
||||||
@@ -12590,7 +12591,9 @@ Put X 1/1 white Pegasus creature tokens with flying into play, where X is your l
|
|||||||
Festival of Trokin
|
Festival of Trokin
|
||||||
W
|
W
|
||||||
Sorcery
|
Sorcery
|
||||||
For each creature you have in play, you gain 2 life.
|
no text
|
||||||
|
spGainLife:X:You gain 2 life for each creature you control.:Festival of Trokin - player gains X life
|
||||||
|
SVar:X:Count$TypeYouCtrl.Creature/Times.2
|
||||||
|
|
||||||
Savannah
|
Savannah
|
||||||
no cost
|
no cost
|
||||||
@@ -16786,7 +16789,9 @@ Search your library for two basic land cards, reveal those cards, and put one in
|
|||||||
Wandering Stream
|
Wandering Stream
|
||||||
2 G
|
2 G
|
||||||
Sorcery
|
Sorcery
|
||||||
You gain 2 life for each basic land type among lands you control.
|
no text
|
||||||
|
spGainLife:X:Domain - You gain 2 life for each basic land type among lands you control.:Wandering Stream - player gains X life
|
||||||
|
SVar:X:Count$Domain/Times.2
|
||||||
|
|
||||||
Aggressive Urge
|
Aggressive Urge
|
||||||
1 G
|
1 G
|
||||||
@@ -17074,7 +17079,8 @@ Tap all nonwhite creatures.
|
|||||||
Reviving Dose
|
Reviving Dose
|
||||||
2 W
|
2 W
|
||||||
Instant
|
Instant
|
||||||
You gain 3 life.
|
no text
|
||||||
|
spGainLife:3
|
||||||
Draw a card.
|
Draw a card.
|
||||||
|
|
||||||
Angelic Blessing
|
Angelic Blessing
|
||||||
|
|||||||
@@ -5067,6 +5067,7 @@ public class CardFactory implements NewConstants {
|
|||||||
}//*************** END ************ END **************************
|
}//*************** END ************ END **************************
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
//*************** START *********** START **************************
|
//*************** START *********** START **************************
|
||||||
else if(cardName.equals("Sacred Nectar")) {
|
else if(cardName.equals("Sacred Nectar")) {
|
||||||
SpellAbility spell = new Spell(card) {
|
SpellAbility spell = new Spell(card) {
|
||||||
@@ -5091,6 +5092,7 @@ public class CardFactory implements NewConstants {
|
|||||||
card.addSpellAbility(spell);
|
card.addSpellAbility(spell);
|
||||||
|
|
||||||
}//*************** END ************ END **************************
|
}//*************** END ************ END **************************
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
//*************** START *********** START **************************
|
//*************** START *********** START **************************
|
||||||
@@ -5138,6 +5140,7 @@ public class CardFactory implements NewConstants {
|
|||||||
}//*************** END ************ END **************************
|
}//*************** END ************ END **************************
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
//*************** START *********** START **************************
|
//*************** START *********** START **************************
|
||||||
else if(cardName.equals("Reviving Dose")) {
|
else if(cardName.equals("Reviving Dose")) {
|
||||||
SpellAbility spell = new Spell(card) {
|
SpellAbility spell = new Spell(card) {
|
||||||
@@ -5155,7 +5158,9 @@ public class CardFactory implements NewConstants {
|
|||||||
card.clearSpellAbility();
|
card.clearSpellAbility();
|
||||||
card.addSpellAbility(spell);
|
card.addSpellAbility(spell);
|
||||||
}//*************** END ************ END **************************
|
}//*************** END ************ END **************************
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
//*************** START *********** START **************************
|
//*************** START *********** START **************************
|
||||||
else if(cardName.equals("Swords to Plowshares")) {
|
else if(cardName.equals("Swords to Plowshares")) {
|
||||||
SpellAbility spell = new Spell(card) {
|
SpellAbility spell = new Spell(card) {
|
||||||
@@ -9092,6 +9097,7 @@ public class CardFactory implements NewConstants {
|
|||||||
}//*************** END ************ END **************************
|
}//*************** END ************ END **************************
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
//*************** START *********** START **************************
|
//*************** START *********** START **************************
|
||||||
else if(cardName.equals("Wandering Stream")) {
|
else if(cardName.equals("Wandering Stream")) {
|
||||||
SpellAbility spell = new Spell(card) {
|
SpellAbility spell = new Spell(card) {
|
||||||
@@ -9121,7 +9127,9 @@ public class CardFactory implements NewConstants {
|
|||||||
card.clearSpellAbility();
|
card.clearSpellAbility();
|
||||||
card.addSpellAbility(spell);
|
card.addSpellAbility(spell);
|
||||||
}//*************** END ************ END **************************
|
}//*************** END ************ END **************************
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
//*************** START *********** START **************************
|
//*************** START *********** START **************************
|
||||||
else if(cardName.equals("Worldly Tutor") || cardName.equals("Sylvan Tutor")) {
|
else if(cardName.equals("Worldly Tutor") || cardName.equals("Sylvan Tutor")) {
|
||||||
SpellAbility spell = new Spell(card) {
|
SpellAbility spell = new Spell(card) {
|
||||||
@@ -10349,6 +10357,8 @@ public class CardFactory implements NewConstants {
|
|||||||
card.addSpellAbility(spell);
|
card.addSpellAbility(spell);
|
||||||
}//*************** END ************ END **************************
|
}//*************** END ************ END **************************
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
//*************** START *********** START **************************
|
//*************** START *********** START **************************
|
||||||
if(cardName.equals("Festival of Trokin")) {
|
if(cardName.equals("Festival of Trokin")) {
|
||||||
final SpellAbility spell = new Spell(card) {
|
final SpellAbility spell = new Spell(card) {
|
||||||
@@ -10387,6 +10397,7 @@ public class CardFactory implements NewConstants {
|
|||||||
card.clearSpellAbility();
|
card.clearSpellAbility();
|
||||||
card.addSpellAbility(spell);
|
card.addSpellAbility(spell);
|
||||||
}//*************** END ************ END **************************
|
}//*************** END ************ END **************************
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
//*************** START *********** START **************************
|
//*************** START *********** START **************************
|
||||||
|
|||||||
Reference in New Issue
Block a user