mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 03:08:02 +00:00
- Converted Winds of Change to script (by Squee).
This commit is contained in:
@@ -1,7 +1,16 @@
|
||||
Name:Winds of Change
|
||||
ManaCost:R
|
||||
Types:Sorcery
|
||||
Text:Each player shuffles the cards from his or her hand into his or her library, then draws that many cards.
|
||||
Text:no text
|
||||
A:SP$ ChangeZoneAll | Cost$ R | Defined$ You | Origin$ Hand | Destination$ Library | LibraryPosition$ -1 | RememberChanged$ True | ForgetOtherRemembered$ True | Shuffle$ True | SubAbility$ WindDraw | SpellDescription$ Each player shuffles the cards from his or her hand into his or her library, then draws that many cards.
|
||||
SVar:WindDraw:DB$Draw | NumCards$ X | Defined$ You | SubAbility$ CleanTheWind
|
||||
SVar:CleanTheWind:DB$Cleanup | ClearRemembered$ True | SubAbility$ WindOpp
|
||||
SVar:WindOpp:DB$ ChangeZoneAll | Defined$ Opponent | Origin$ Hand | Destination$ Library | LibraryPosition$ -1 | RememberChanged$ True | ForgetOtherRemembered$ True | Shuffle$ True | SubAbility$ WindDrawOpp
|
||||
SVar:WindDrawOpp:DB$Draw | NumCards$ X | Defined$ Opponent | SubAbility$ DBCleanup
|
||||
SVar:DBCleanup:DB$Cleanup | ClearRemembered$ True
|
||||
SVar:X:Remembered$Amount
|
||||
SVar:RemRandomDeck:True
|
||||
SVar:RemAIDeck:True
|
||||
SVar:Rarity:Uncommon
|
||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/winds_of_change.jpg
|
||||
SetInfo:5ED|Rare|http://magiccards.info/scans/en/5e/275.jpg
|
||||
|
||||
@@ -1340,12 +1340,12 @@ public class CardFactorySorceries {
|
||||
} // *************** END ************ END **************************
|
||||
|
||||
// *************** START *********** START **************************
|
||||
else if (cardName.equals("Winds of Change")) {
|
||||
/*else if (cardName.equals("Winds of Change")) {
|
||||
/*
|
||||
* Each player shuffles the cards from his or her hand into his or
|
||||
* her library, then draws that many cards.
|
||||
*/
|
||||
final SpellAbility spell = new Spell(card) {
|
||||
/*final SpellAbility spell = new Spell(card) {
|
||||
private static final long serialVersionUID = 1137557863607126794L;
|
||||
|
||||
@Override
|
||||
@@ -1378,7 +1378,7 @@ public class CardFactorySorceries {
|
||||
|
||||
}; // SpellAbility
|
||||
card.addSpellAbility(spell);
|
||||
} // *************** END ************ END **************************
|
||||
}*/ // *************** END ************ END **************************
|
||||
|
||||
// *************** START *********** START **************************
|
||||
else if (cardName.equals("Molten Psyche")) {
|
||||
|
||||
Reference in New Issue
Block a user