mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-13 17:27:46 +00:00
Moved everything back to cardforge.org in preparation for release
This commit is contained in:
@@ -13,7 +13,7 @@
|
||||
<sign.keypass>keypass</sign.keypass>
|
||||
<cardforge.user>user</cardforge.user>
|
||||
<cardforge.pass>pass</cardforge.pass>
|
||||
<cardforge.server>ftp.cardforge.link</cardforge.server>
|
||||
<cardforge.server>ftp.cardforge.org</cardforge.server>
|
||||
</properties>
|
||||
|
||||
<parent>
|
||||
@@ -334,14 +334,14 @@
|
||||
<phase>package</phase>
|
||||
<configuration>
|
||||
<target>
|
||||
<ftp action="mkdir" password="${cardforge.pass}" server="${cardforge.server}" userid="${cardforge.user}" passive="true" remotedir="releases/forge/forge-gui-android/${alpha-version}" />
|
||||
<ftp password="${cardforge.pass}" server="${cardforge.server}" userid="${cardforge.user}" passive="true" remotedir="releases/forge/forge-gui-android/${alpha-version}/">
|
||||
<ftp action="mkdir" password="${cardforge.pass}" server="${cardforge.server}" userid="${cardforge.user}" passive="true" remotedir="forge/forge-gui-android/${alpha-version}" />
|
||||
<ftp password="${cardforge.pass}" server="${cardforge.server}" userid="${cardforge.user}" passive="true" remotedir="forge/forge-gui-android/${alpha-version}/">
|
||||
<fileset dir="${project.build.directory}">
|
||||
<include name="${project.build.finalName}-signed-aligned.apk" />
|
||||
<include name="assets.zip" />
|
||||
</fileset>
|
||||
</ftp>
|
||||
<ftp password="${cardforge.pass}" server="${cardforge.server}" userid="${cardforge.user}" passive="true" remotedir="releases/forge/forge-gui-android/">
|
||||
<ftp password="${cardforge.pass}" server="${cardforge.server}" userid="${cardforge.user}" passive="true" remotedir="forge/forge-gui-android/">
|
||||
<fileset dir="${project.build.directory}/classes">
|
||||
<include name="version.txt" />
|
||||
</fileset>
|
||||
@@ -358,4 +358,4 @@
|
||||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
</project>
|
||||
</project>
|
||||
|
||||
@@ -1,16 +1,8 @@
|
||||
package forge.assets;
|
||||
|
||||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
import java.net.URL;
|
||||
import java.util.List;
|
||||
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
|
||||
import com.badlogic.gdx.Application.ApplicationType;
|
||||
import com.badlogic.gdx.Gdx;
|
||||
import com.google.common.collect.ImmutableList;
|
||||
|
||||
import forge.FThreads;
|
||||
import forge.Forge;
|
||||
import forge.download.GuiDownloadZipService;
|
||||
@@ -18,6 +10,12 @@ import forge.properties.ForgeConstants;
|
||||
import forge.screens.SplashScreen;
|
||||
import forge.util.FileUtil;
|
||||
import forge.util.gui.SOptionPane;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
|
||||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
import java.net.URL;
|
||||
import java.util.List;
|
||||
|
||||
public class AssetsDownloader {
|
||||
public static final boolean SHARE_DESKTOP_ASSETS = true; //change to false to test downloading separate assets for desktop version
|
||||
@@ -35,12 +33,12 @@ public class AssetsDownloader {
|
||||
boolean connectedToInternet = Forge.getDeviceAdapter().isConnectedToInternet();
|
||||
if (connectedToInternet) {
|
||||
try {
|
||||
URL versionUrl = new URL("http://cardforge.link/releases/forge/forge-gui-android/version.txt");
|
||||
URL versionUrl = new URL("https://releases.cardforge.org/forge/forge-gui-android/version.txt");
|
||||
String version = FileUtil.readFileToString(versionUrl);
|
||||
if (!StringUtils.isEmpty(version) && !Forge.CURRENT_VERSION.equals(version)) {
|
||||
splashScreen.prepareForDialogs();
|
||||
|
||||
message = "A new version of Forge is available (" + version + ").\n" +
|
||||
message = "A new version of Forge is available (" + version + ").\n" +
|
||||
"You are currently on an older version (" + Forge.CURRENT_VERSION + ").\n\n" +
|
||||
"Would you like to update to the new version now?";
|
||||
if (!Forge.getDeviceAdapter().isConnectedToWifi()) {
|
||||
@@ -49,7 +47,7 @@ public class AssetsDownloader {
|
||||
if (SOptionPane.showConfirmDialog(message, "New Version Available", "Update Now", "Update Later")) {
|
||||
String filename = "forge-android-" + version + "-signed-aligned.apk";
|
||||
String apkFile = new GuiDownloadZipService("", "update",
|
||||
"http://cardforge.link/releases/forge/forge-gui-android/" + version + "/" + filename,
|
||||
"https://releases.cardforge.org/forge/forge-gui-android/" + version + "/" + filename,
|
||||
Forge.getDeviceAdapter().getDownloadsDir(), null, splashScreen.getProgressBar()).download(filename);
|
||||
if (apkFile != null) {
|
||||
Forge.getDeviceAdapter().openFile(apkFile);
|
||||
@@ -102,7 +100,7 @@ public class AssetsDownloader {
|
||||
}
|
||||
|
||||
//prompt user whether they wish to download the updated resource files
|
||||
message = "There are updated resource files to download. " +
|
||||
message = "There are updated resource files to download. " +
|
||||
"This download is around 80MB, ";
|
||||
if (Forge.getDeviceAdapter().isConnectedToWifi()) {
|
||||
message += "which shouldn't take long if your wifi connection is good.";
|
||||
@@ -132,7 +130,7 @@ public class AssetsDownloader {
|
||||
}
|
||||
|
||||
new GuiDownloadZipService("", "resource files",
|
||||
"http://cardforge.link/releases/forge/forge-gui-android/" + Forge.CURRENT_VERSION + "/" + "assets.zip",
|
||||
"https://releases.cardforge.org/forge/forge-gui-android/" + Forge.CURRENT_VERSION + "/" + "assets.zip",
|
||||
ForgeConstants.ASSETS_DIR, ForgeConstants.RES_DIR, splashScreen.getProgressBar()).downloadAndUnzip();
|
||||
|
||||
FSkinFont.deleteCachedFiles(); //delete cached font files in case any skin's .ttf file changed
|
||||
|
||||
@@ -5,5 +5,5 @@ T:Mode$ SetInMotion | ValidCard$ Card.Self | Execute$ DarkEffect | TriggerZones$
|
||||
SVar:DarkEffect:AB$ Effect | Cost$ 0 | Name$ Dark Power Scheme | Duration$ UntilYourNextTurn | Triggers$ DarkPower | SVars$ DarkMana
|
||||
SVar:DarkPower:Mode$ TapsForMana | ValidCard$ Land | Execute$ DarkMana | TriggerZones$ Command | Static$ True | TriggerDescription$ Whenever a player taps a land for mana, that player adds one mana to his or her mana pool of any type that land produced.
|
||||
SVar:DarkMana:AB$ ManaReflected | Cost$ 0 | ColorOrType$ Type | Valid$ Defined.Triggered | ReflectProperty$ Produced | Defined$ TriggeredPlayer
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/ARC/A Display of My Dark Power.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/ARC/A Display of My Dark Power.full.jpg
|
||||
Oracle:When you set this scheme in motion, until your next turn, whenever a player taps a land for mana, that player adds one mana to his or her mana pool of any type that land produced.
|
||||
|
||||
@@ -4,5 +4,5 @@ Types:Vanguard
|
||||
HandLifeModifier:+1/+7
|
||||
T:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | TriggerZones$ Command | ValidCard$ Creature.YouCtrl | Execute$ PumpRandom | TriggerDescription$ Whenever a creature enters the battlefield under your control, it gains two abilities chosen at random from flying, first strike, trample, haste, protection from black, protection from red, and vigilance.
|
||||
SVar:PumpRandom:AB$ Pump | Cost$ 0 | Defined$ TriggeredCard | Permanent$ True | KW$ Flying & First Strike & Trample & Haste & Protection from black & Protection from red & Vigilance | RandomKeyword$ True | RandomKWNum$ 2
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Akroma, Angel of Wrath Avatar.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Akroma, Angel of Wrath Avatar.full.jpg
|
||||
Oracle:Hand +1, life +7\nWhenever a creature enters the battlefield under your control, it gains two abilities chosen at random from flying, first strike, trample, haste, protection from black, protection from red, and vigilance.
|
||||
|
||||
@@ -3,5 +3,5 @@ ManaCost:no cost
|
||||
Types:Scheme
|
||||
T:Mode$ SetInMotion | ValidCard$ Card.Self | Execute$ GoodTimes | TriggerZones$ Command | TriggerDescription$ When you set this scheme in motion, take an extra turn after this one. Schemes can't be set in motion that turn.
|
||||
SVar:GoodTimes:AB$ AddTurn | Cost$ 0 | NumTurns$ 1 | NoSchemes$ True
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/ARC/All in Good Time.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/ARC/All in Good Time.full.jpg
|
||||
Oracle:When you set this scheme in motion, take an extra turn after this one. Schemes can't be set in motion that turn.
|
||||
|
||||
@@ -5,5 +5,5 @@ T:Mode$ SetInMotion | ValidCard$ Card.Self | Execute$ Ignite | TriggerZones$ Com
|
||||
SVar:Ignite:AB$ Destroy | Cost$ 0 | TargetMin$ 0 | TargetMax$ 1 | ValidTgts$ Artifact | TgtPrompt$ Select target artifact to destroy | SubAbility$ Burn
|
||||
SVar:Burn:DB$ Destroy | TargetMin$ 0 | TargetMax$ 1 | ValidTgts$ Enchantment | TgtPrompt$ Select target enchantment to destroy | SubAbility$ Smolder
|
||||
SVar:Smolder:DB$ Destroy | TargetMin$ 0 | TargetMax$ 1 | ValidTgts$ Land.nonBasic | TgtPrompt$ Select target nonbasic land to destroy
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/ARC/All Shall Smolder in My Wake.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/ARC/All Shall Smolder in My Wake.full.jpg
|
||||
Oracle:When you set this scheme in motion, destroy up to one target artifact, up to one target enchantment, and up to one target nonbasic land.
|
||||
|
||||
@@ -6,5 +6,5 @@ SVar:MoltenEffect:DB$ Effect | Name$ Molten Realm Effect | ReplacementEffects$ M
|
||||
SVar:MoltenRealm:Event$ DamageDone | ActiveZones$ Command | ValidSource$ Card | ReplaceWith$ DmgTwice | Description$ Until your next turn, if a source would deal damage, it deals double that damage instead.
|
||||
SVar:DmgTwice:DB$ ReplaceEffect | VarName$ DamageAmount | VarValue$ MoltenX | References$ MoltenX
|
||||
SVar:MoltenX:ReplaceCount$DamageAmount/Twice
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/ARC/Approach My Molten Realm.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/ARC/Approach My Molten Realm.full.jpg
|
||||
Oracle:When you set this scheme in motion, until your next turn, if a source would deal damage, it deals double that damage instead.
|
||||
|
||||
@@ -5,5 +5,5 @@ HandLifeModifier:+1/-3
|
||||
A:AB$ Draw | ActivationZone$ Command | Announce$ X | Cost$ XCantBe0 X Return<1/Creature.cmcEQX/creature you control with converted mana cost X> | NumCards$ Y | References$ X,Y | SpellDescription$ Draw a number of cards chosen at random between 0 and X. X can't be 0. | StackDescription$ SpellDescription
|
||||
SVar:X:Count$xPaid
|
||||
SVar:Y:Count$Random.0.X
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Arcanis, the Omnipotent Avatar.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Arcanis, the Omnipotent Avatar.full.jpg
|
||||
Oracle:Hand +1, life -3\n{X}, Return a creature you control with converted mana cost X to its owner's hand: Draw a number of cards chosen at random between 0 and X. X can't be 0.
|
||||
|
||||
@@ -6,5 +6,5 @@ T:Mode$ Phase | Phase$ Upkeep | ValidPlayer$ You | TriggerZones$ Command | Execu
|
||||
SVar:BuildCounter:AB$ PutCounter | Cost$ 0 | CounterType$ P1P1 | CounterNum$ 1 | ValidTgts$ Creature.YouCtrl | TgtPrompt$ Select target creature you control
|
||||
T:Mode$ Phase | Phase$ Upkeep | ValidPlayer$ You | TriggerZones$ Command | Execute$ ChargeCounter | OptionalDecider$ You | TriggerDescription$ At the beginning of your upkeep, you may put a charge counter on target permanent you control.
|
||||
SVar:ChargeCounter:AB$ PutCounter | Cost$ 0 | CounterType$ CHARGE | CounterNum$ 1 | ValidTgts$ Permanent.YouCtrl | TgtPrompt$ Select target permanent you control
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Arcbound Overseer Avatar.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Arcbound Overseer Avatar.full.jpg
|
||||
Oracle:Hand +0, life +3\nAt the beginning of your upkeep, you may put a +1/+1 counter on target creature you control.\nAt the beginning of your upkeep, you may put a charge counter on target permanent you control.
|
||||
|
||||
@@ -3,5 +3,5 @@ ManaCost:no cost
|
||||
Types:Vanguard
|
||||
HandLifeModifier:+1/-3
|
||||
A:AB$ DestroyAll | ActivationZone$ Command | Cost$ 5 | ValidCards$ Permanent.nonLand | PlayerTurn$ True | GameActivationLimit$ 1 | SpellDescription$ Destroy all nonland permanents. Activate this ability only once and only during your turn.
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Ashling, the Extinguisher Avatar.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Ashling, the Extinguisher Avatar.full.jpg
|
||||
Oracle:Hand +1, life -3\n{5}: Destroy all nonland permanents. Activate this ability only once and only during your turn.
|
||||
|
||||
@@ -3,5 +3,5 @@ ManaCost:no cost
|
||||
Types:Vanguard
|
||||
HandLifeModifier:-1/+6
|
||||
A:AB$ DamageAll | ActivationZone$ Command | Cost$ 2 | NumDmg$ 1 | ValidCards$ Creature | ValidPlayers$ Player | ValidDescription$ each creature and each player. | SpellDescription$ CARDNAME deals 1 damage to each creature and each player.
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Ashling the Pilgrim Avatar.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Ashling the Pilgrim Avatar.full.jpg
|
||||
Oracle:Hand -1, life +6\n{2}: Ashling the Pilgrim Avatar deals 1 damage to each creature and each player.
|
||||
|
||||
@@ -4,5 +4,5 @@ Types:Vanguard
|
||||
HandLifeModifier:+1/-8
|
||||
T:Mode$ DamageDone | ValidSource$ Creature | ValidTarget$ You | Execute$ TrigDestroy | TriggerZones$ Command | TriggerDescription$ Whenever a creature deals damage to you, destroy it.
|
||||
SVar:TrigDestroy:AB$ Destroy | Cost$ 0 | Defined$ TriggeredSource
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Ashnod.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Ashnod.full.jpg
|
||||
Oracle:Hand +1, life -8\nWhenever a creature deals damage to you, destroy it.
|
||||
|
||||
@@ -4,5 +4,5 @@ Types:Vanguard
|
||||
HandLifeModifier:+0/+6
|
||||
A:AB$ ChangeZone | ActivationZone$ Command | Cost$ Sac<1/Permanent> | ValidTgts$ Creature | TgtPrompt$ Select target Creature | Origin$ Battlefield | Destination$ Hand | SpellDescription$ Return target creature to its owner's hand.
|
||||
SVar:RemAIDeck:True
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Barrin.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Barrin.full.jpg
|
||||
Oracle:Hand +0, life +6\nSacrifice a permanent: Return target creature to its owner's hand.
|
||||
|
||||
@@ -3,5 +3,5 @@ ManaCost:no cost
|
||||
Types:Scheme
|
||||
T:Mode$ SetInMotion | ValidCard$ Card.Self | Execute$ DarkEffect | TriggerZones$ Command | TriggerDescription$ When you set this scheme in motion, destroy all nonland permanents target opponent controls.
|
||||
SVar:DarkEffect:AB$ DestroyAll | Cost$ 0 | ValidTgts$ Opponent | TgtPrompt$ Select target opponent | ValidCards$ Permanent.nonLand
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/ARC/Behold the Power of Destruction.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/ARC/Behold the Power of Destruction.full.jpg
|
||||
Oracle:When you set this scheme in motion, destroy all nonland permanents target opponent controls.
|
||||
|
||||
@@ -4,5 +4,5 @@ Types:Vanguard
|
||||
HandLifeModifier:+0/-3
|
||||
S:Mode$ Continuous | EffectZone$ Command | AffectedZone$ Battlefield | Affected$ Land.YouCtrl | AddAbility$ AnyMana | Description$ Lands you control have "{T}: Add one mana of any color to your mana pool."
|
||||
SVar:AnyMana:AB$ Mana | Cost$ T | Produced$ Any | Amount$ 1 | SpellDescription$ Add one mana of any color to your mana pool.
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Birds of Paradise Avatar1.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Birds of Paradise Avatar1.full.jpg
|
||||
Oracle:Hand +0, life -3\nLands you control have "{T}: Add one mana of any color to your mana pool."
|
||||
|
||||
@@ -4,6 +4,6 @@ Types:Vanguard
|
||||
HandLifeModifier:+0/-2
|
||||
A:AB$ DealDamage | ActivationZone$ Command | Announce$ X | Cost$ X Sac<1/Artifact.cmcEQX/artifact with converted mana cost X> | ValidTgts$ Creature,Player | TgtPrompt$ Select target creature or player | NumDmg$ X | References$ X | SpellDescription$ CARDNAME deals X damage to target creature or player.
|
||||
SVar:X:Count$xPaid
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Bosh, Iron Golem Avatar.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Bosh, Iron Golem Avatar.full.jpg
|
||||
SVar:RemAIDeck:True
|
||||
Oracle:Hand +0, life -2\n{X}, Sacrifice an artifact with converted mana cost X: Bosh, Iron Golem Avatar deals X damage to target creature or player.
|
||||
|
||||
@@ -5,5 +5,5 @@ HandLifeModifier:+0/+3
|
||||
A:AB$ ChangeZone | ActivationZone$ Command | Cost$ 2 | Origin$ Hand | Destination$ Battlefield | ChangeType$ Land | DefinedPlayer$ Player | ChangeNum$ 1 | Tapped$ True | SpellDescription$ Each player may put a land card from his or her hand onto the battlefield tapped.
|
||||
A:AB$ ChangeZone | ActivationZone$ Command | Cost$ 3 | Origin$ Hand | Destination$ Battlefield | ChangeType$ Artifact.nonCreature | DefinedPlayer$ Player | ChangeNum$ 1 | SpellDescription$ Each player may put a noncreature artifact card from his or her hand onto the battlefield.
|
||||
A:AB$ ChangeZone | ActivationZone$ Command | Cost$ 4 | Origin$ Hand | Destination$ Battlefield | ChangeType$ Creature | DefinedPlayer$ Player | ChangeNum$ 1 | SorcerySpeed$ True | SpellDescription$ Each player may put a creature card from his or her hand onto the battlefield. Activate this ability only any time you could cast a sorcery.
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Braids, Conjurer Adept Avatar.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Braids, Conjurer Adept Avatar.full.jpg
|
||||
Oracle:Hand +0, life +3\n{2}: Each player may put a land card from his or her hand onto the battlefield tapped.\n{3}: Each player may put a noncreature artifact card from his or her hand onto the battlefield.\n{4}: Each player may put a creature card from his or her hand onto the battlefield. Activate this ability only any time you could cast a sorcery.
|
||||
|
||||
@@ -6,5 +6,5 @@ SVar:ChooseChampion:AB$ ChoosePlayer | Cost$ 0 | ValidTgts$ Opponent | Choices$
|
||||
SVar:PrepChamps:DB$ Effect | RememberObjects$ ChosenPlayer,You | Name$ Choose Your Champion Scheme | Duration$ UntilYourNextTurn | StaticAbilities$ RestrictAttackers,RestrictCasting
|
||||
SVar:RestrictAttackers:Mode$ Continuous | Affected$ Creature.nonRememberedPlayerCtrl | AddHiddenKeyword$ CARDNAME can't attack. | EffectZone$ Command | Description$ Until your next turn, only you and the chosen player can attack with creatures.
|
||||
SVar:RestrictCasting:Mode$ CantBeCast | ValidCard$ Card | Caster$ Player.IsNotRemembered | EffectZone$ Command | Description$ Until your next turn, only you and the chosen player can cast spells.
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/ARC/Choose Your Champion.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/ARC/Choose Your Champion.full.jpg
|
||||
Oracle:When you set this scheme in motion, target opponent chooses a player. Until your next turn, only you and the chosen player can cast spells and attack with creatures.
|
||||
|
||||
@@ -6,5 +6,5 @@ S:Mode$ Continuous | EffectZone$ Command | Affected$ You | SetMaxHandSize$ Unlim
|
||||
A:AB$ Draw | ActivationZone$ Command | Cost$ 0 | NumCards$ 3 | Defined$ You | ActivationLimit$ 1 | SubAbility$ DBSkipTurn | SpellDescription$ Draw three cards. You skip your next turn. Activate this ability only once each turn.
|
||||
SVar:DBSkipTurn:DB$ SkipTurn | NumTurns$ 1 | Defined$ You
|
||||
SVar:RemAIDeck:True
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Chronatog Avatar.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Chronatog Avatar.full.jpg
|
||||
Oracle:Hand -1, life +1\nYou have no maximum hand size.\n{0}: Draw three cards. You skip your next turn. Activate this ability only once each turn.
|
||||
|
||||
@@ -4,5 +4,5 @@ Types:Vanguard
|
||||
HandLifeModifier:+2/+0
|
||||
T:Mode$ DamageDone | ValidSource$ Creature+YouCtrl | ValidTarget$ Creature,Player | TriggerZones$ Command | Execute$ TrigGainLife | TriggerDescription$ Whenever a creature you control deals damage to a creature or player, you gain 1 life.
|
||||
SVar:TrigGainLife:AB$ GainLife | Cost$ 0 | Defined$ You | LifeAmount$ 1
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Crovax.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Crovax.full.jpg
|
||||
Oracle:Hand +2, life +0\nWhenever a creature you control deals damage to a creature or player, you gain 1 life.
|
||||
|
||||
@@ -5,5 +5,5 @@ HandLifeModifier:+1/+0
|
||||
S:Mode$ Continuous | EffectZone$ Command | AffectedZone$ Hand | Affected$ Card.nonColorless+YouOwn | AddAbility$ STPlayLand | Description$ You may play any colored card from your hand as a copy of a basic land card chosen at random that can produce mana of one of the card's colors.
|
||||
SVar:STPlayLand:ST$ PlayLandVariant | Cost$ 0 | Clone$ BasicLand | SorcerySpeed$ True | ActivationZone$ Hand | SpellDescription$ Play CARDNAME from your hand as a copy of a basic land card chosen at random that can produce mana of one of CARDNAME's colors.
|
||||
SVar:RemAIDeck:True
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Dakkon Blackblade Avatar.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Dakkon Blackblade Avatar.full.jpg
|
||||
Oracle:Hand +1, life +0\nYou may play any colored card from your hand as a copy of a basic land card chosen at random that can produce mana of one of the card's colors.
|
||||
|
||||
@@ -7,5 +7,5 @@ SVar:MakeItChoose:DB$ ChooseCard | Choices$ Card.IsRemembered | ChoiceZone$ Libr
|
||||
SVar:MakeItDance:DB$ ChangeZone | Defined$ ChosenCard | Origin$ Library | Destination$ Battlefield | Mandatory$ True | GainControl$ True | ForgetChanged$ True | SubAbility$ TakeOutTheTrash
|
||||
SVar:TakeOutTheTrash:DB$ ChangeZoneAll | ChangeType$ Card.IsRemembered | Origin$ Library | Destination$ Graveyard | SubAbility$ DBCleanup
|
||||
SVar:DBCleanup:DB$ Cleanup | ClearRemembered$ True
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/ARC/Dance, Pathetic Marionette.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/ARC/Dance, Pathetic Marionette.full.jpg
|
||||
Oracle:When you set this scheme in motion, each opponent reveals cards from the top of his or her library until he or she reveals a creature card. Choose one of the revealed creature cards and put it onto the battlefield under your control. Put all other cards revealed this way into their owners' graveyards.
|
||||
|
||||
@@ -3,5 +3,5 @@ ManaCost:no cost
|
||||
Types:Vanguard
|
||||
HandLifeModifier:+1/+1
|
||||
S:Mode$ Continuous | EffectZone$ Command | Affected$ Creature.YouCtrl | AddKeyword$ Exalted | Description$ Creatures you control have exalted. (Whenever a creature you control attacks alone, it gets +1/+1 until end of turn for each instance of exalted among permanents you control.)
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Dauntless Escort Avatar.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Dauntless Escort Avatar.full.jpg
|
||||
Oracle:Hand +1, life +1\nCreatures you control have exalted. (Whenever a creature you control attacks alone, it gets +1/+1 until end of turn for each instance of exalted among permanents you control.)
|
||||
|
||||
@@ -4,5 +4,5 @@ Types:Vanguard
|
||||
HandLifeModifier:+0/+5
|
||||
A:AB$ Pump | ActivationZone$ Command | Cost$ S | ValidTgts$ Creature.YouCtrl | TgtPrompt$ Select target creature you control | NumAtt$ 1 | NumDef$ 1 | SpellDescription$ Target creature you control gets +1/+1 until end of turn.
|
||||
SVar:RemRandomDeck:True
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Diamond Faerie Avatar.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Diamond Faerie Avatar.full.jpg
|
||||
Oracle:Hand +0, life +5\n{S}: Target creature you control gets +1/+1 until end of turn.
|
||||
|
||||
@@ -4,5 +4,5 @@ Types:Scheme
|
||||
T:Mode$ SetInMotion | ValidCard$ Card.Self | Execute$ BloodyCombat | TriggerZones$ Command | TriggerDescription$ When you set this scheme in motion, after the main phase, there is an additional combat phase followed by an additional main phase. Creatures you control gain vigilance until end of turn.
|
||||
SVar:BloodyCombat:DB$ AddPhase | ExtraPhase$ BeginCombat | FollowedBy$ ThisPhase | ConditionPhases$ Main1,Main2 | SubAbility$ MakeVigilant
|
||||
SVar:MakeVigilant:DB$ PumpAll | ValidCards$ Creature.YouCtrl | KW$ Vigilance
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/ARC/Drench the Soil in Their Blood.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/ARC/Drench the Soil in Their Blood.full.jpg
|
||||
Oracle:When you set this scheme in motion, after the main phase, there is an additional combat phase followed by an additional main phase. Creatures you control gain vigilance until end of turn.
|
||||
|
||||
@@ -3,5 +3,5 @@ ManaCost:no cost
|
||||
Types:Vanguard
|
||||
HandLifeModifier:+2/-3
|
||||
A:AB$ Pump | Cost$ 1 | ActivationZone$ Command | ValidTgts$ Permanent.YouCtrl | TgtPrompt$ Select target permanent you control | KW$ Protection from red & Protection from blue & Protection from black & Protection from white & Protection from green | RandomKeyword$ True | NoRepetition$ True | StackDescription$ SpellDescription | SpellDescription$ Until end of turn, target permanent you control gains protection from a color chosen at random from colors it doesn't have protection from.
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Eight-and-a-Half-Tails Avatar.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Eight-and-a-Half-Tails Avatar.full.jpg
|
||||
Oracle:Hand +2, life -3\n{1}: Until end of turn, target permanent you control gains protection from a color chosen at random from colors it doesn't have protection from.
|
||||
|
||||
@@ -5,6 +5,6 @@ HandLifeModifier:-1/+15
|
||||
A:AB$ Effect | ActivationZone$ Command | Cost$ 0 | ValidTgts$ Creature.YouCtrl | TgtPrompt$ Select target creature to redirect damage from | ReplacementEffects$ RedirectDamage | SVars$ RedirectDmg | References$ RedirectDamage,RedirectDmg | RememberObjects$ Targeted | ExileOnMoved$ Battlefield | Duration$ Permanent | SpellDescription$ The next 1 damage that would be dealt to target creature you control is dealt to you instead.
|
||||
SVar:RedirectDamage:Event$ DamageDone | ValidTarget$ Creature.IsRemembered | ReplaceWith$ RedirectDmg | DamageTarget$ You | Description$ The next 1 damage that would be dealt to target creature you control is dealt to you instead.
|
||||
SVar:RedirectDmg:DB$ ReplaceSplitDamage | DamageTarget$ You
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Eladamri.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Eladamri.full.jpg
|
||||
SVar:RemAIDeck:True
|
||||
Oracle:Hand -1, life +15\n{0}: The next 1 damage that would be dealt to target creature you control is dealt to you instead.
|
||||
|
||||
@@ -6,5 +6,5 @@ T:Mode$ Phase | Phase$ Main1 | ValidPlayer$ Player | TriggerZones$ Command | Exe
|
||||
SVar:TrigAddMana:AB$ Mana | Cost$ 0 | Produced$ G | Amount$ 2 | Defined$ TriggeredPlayer
|
||||
SVar:RemAIDeck:True
|
||||
SVar:RemRandomDeck:True
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Eladamri, Lord of Leaves Avatar.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Eladamri, Lord of Leaves Avatar.full.jpg
|
||||
Oracle:Hand -1, life +2\nAt the beginning of each player's precombat main phase, that player adds {G}{G} to his or her mana pool.
|
||||
|
||||
@@ -5,5 +5,5 @@ HandLifeModifier:+0/-5
|
||||
T:Mode$ NewGame | TriggerZones$ Command | Execute$ TrigToken | Static$ True | TriggerDescription$ You begin the game with a 1/1 green Elf creature token on the battlefield. It has "{T}: Add {G} to your mana pool."
|
||||
SVar:TrigToken:AB$ Token | Cost$ 0 | TokenAmount$ 1 | TokenName$ Elf | TokenTypes$ Creature,Elf | TokenOwner$ You | TokenColors$ Green | TokenPower$ 1 | TokenToughness$ 1 | TokenAbilities$ DBMana
|
||||
SVar:DBMana:AB$ Mana | Cost$ T | Produced$ G | SpellDescription$ Add {G} to your mana pool.
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Elvish Champion Avatar.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Elvish Champion Avatar.full.jpg
|
||||
Oracle:Hand +0, life -5\nYou begin the game with a 1/1 green Elf creature token on the battlefield. It has "{T}: Add {G} to your mana pool."
|
||||
|
||||
@@ -5,5 +5,5 @@ T:Mode$ SetInMotion | ValidCard$ Card.Self | Execute$ GraveEmbrace | TriggerZone
|
||||
SVar:GraveEmbrace:AB$ ChangeZoneAll | Cost$ 0 | ChangeType$ Card | Origin$ Graveyard,Hand | Destination$ Library | Shuffle$ True | SubAbility$ MyVision
|
||||
SVar:MyVision:DB$ Draw | Defined$ You | NumCards$ 7 | SubAbility$ PitifulDraw
|
||||
SVar:PitifulDraw:DB$ Draw | Defined$ Player.Other | NumCards$ 4
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/ARC/Embrace My Diabolical Vision.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/ARC/Embrace My Diabolical Vision.full.jpg
|
||||
Oracle:When you set this scheme in motion, each player shuffles his or her hand and graveyard into his or her library. You draw seven cards, then each other player draws four cards.
|
||||
|
||||
@@ -8,5 +8,5 @@ SVar:DBPlay:DB$ Play | Defined$ Remembered | Controller$ You | WithoutManaCost$
|
||||
SVar:DBCleanup:DB$ Cleanup | ClearRemembered$ True
|
||||
SVar:NumColoredCast:Count$ThisTurnCast_Artifact.nonColorless+YouCtrl
|
||||
SVar:X:Count$TriggeredCardManaCost
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Enigma Sphinx Avatar.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Enigma Sphinx Avatar.full.jpg
|
||||
Oracle:Hand +0, life +5\nWhenever you cast a colored artifact spell for the first time each turn, search your library for a colored artifact card chosen at random whose converted mana cost is less than that spell's converted mana cost. You may play that card without paying its mana cost. If you don't, put that card on the bottom of your library.
|
||||
|
||||
@@ -4,5 +4,5 @@ Types:Vanguard
|
||||
HandLifeModifier:+0/+3
|
||||
T:Mode$ SpellCast | ValidCard$ Creature | ValidActivatingPlayer$ You | Execute$ DjinnisGift | TriggerZones$ Command | TriggerDescription$ Whenever you cast a creature spell, create a 1/1 green Saproling creature token.
|
||||
SVar:DjinnisGift:AB$ Token | Cost$ 0 | TokenAmount$ 1 | TokenName$ Saproling | TokenTypes$ Creature,Saproling | TokenOwner$ You | TokenColors$ Green | TokenPower$ 1 | TokenToughness$ 1
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Erhnam Djinn Avatar1.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Erhnam Djinn Avatar1.full.jpg
|
||||
Oracle:Hand +0, life +3\nWhenever you cast a creature spell, create a 1/1 green Saproling creature token.
|
||||
|
||||
@@ -3,5 +3,5 @@ ManaCost:no cost
|
||||
Types:Vanguard
|
||||
HandLifeModifier:-1/+4
|
||||
S:Mode$ Continuous | EffectZone$ Command | Affected$ Creature.YouCtrl | AddKeyword$ Hexproof | Description$ Creatures you control have hexproof. (They can't be the targets of spells or abilities your opponents control.)
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Ertai.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Ertai.full.jpg
|
||||
Oracle:Hand -1, life +4\nCreatures you control have hexproof. (They can't be the targets of spells or abilities your opponents control.)
|
||||
|
||||
@@ -4,5 +4,5 @@ Types:Vanguard
|
||||
HandLifeModifier:+1/-4
|
||||
S:Mode$ Continuous | EffectZone$ Command | Affected$ Card.YouCtrl | AddKeyword$ Alternative Cost:W U B R G | AffectedZone$ Hand,Graveyard,Exile,Library,Command | Description$ You may pay {W}{U}{B}{R}{G} rather than pay the mana cost for spells that you cast.
|
||||
SVar:RemRandomDeck:True
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Etched Oracle Avatar.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Etched Oracle Avatar.full.jpg
|
||||
Oracle:Hand +1, life -4\nYou may pay {W}{U}{B}{R}{G} rather than pay the mana cost for spells that you cast.
|
||||
|
||||
@@ -3,5 +3,5 @@ ManaCost:no cost
|
||||
Types:Scheme
|
||||
T:Mode$ SetInMotion | ValidCard$ Card.Self | Execute$ DiscardHope | TriggerZones$ Command | TriggerDescription$ When you set this scheme in motion, each opponent reveals his or her hand. Choose a nonland card from each of those hands. Those players discard those cards.
|
||||
SVar:DiscardHope:AB$ Discard | Cost$ 0 | Defined$ Player.Opponent | Mode$ RevealYouChoose | DiscardValid$ Card.nonLand | NumCards$ 1
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/ARC/Every Hope Shall Vanish.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/ARC/Every Hope Shall Vanish.full.jpg
|
||||
Oracle:When you set this scheme in motion, each opponent reveals his or her hand. Choose a nonland card from each of those hands. Those players discard those cards.
|
||||
|
||||
@@ -4,5 +4,5 @@ Types:Scheme
|
||||
T:Mode$ SetInMotion | ValidCard$ Card.Self | Execute$ MoveToBottom | TriggerZones$ Command | OptionalDecider$ You | TriggerDescription$ When you set this scheme in motion, you may pay {X}. If you do, put each nonland permanent target player controls with converted mana cost X or less on the bottom of its owner's library.
|
||||
SVar:MoveToBottom:AB$ ChangeZoneAll | Cost$ X | ChangeType$ Permanent.nonLand+cmcLEX | ValidTgts$ Player | TgtPrompt$ Select target player | Origin$ Battlefield | Destination$ Library | LibraryPosition$ -1
|
||||
SVar:X:Count$xPaid
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/ARC/Every Last Vestige Shall Rot.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/ARC/Every Last Vestige Shall Rot.full.jpg
|
||||
Oracle:When you set this scheme in motion, you may pay {X}. If you do, put each nonland permanent target player controls with converted mana cost X or less on the bottom of its owner's library.
|
||||
|
||||
@@ -5,5 +5,5 @@ T:Mode$ SetInMotion | ValidCard$ Card.Self | Execute$ NewEvil | TriggerZones$ Co
|
||||
SVar:NewEvil:AB$ Token | Cost$ 0 | TokenAmount$ 7 | TokenName$ Plant | TokenTypes$ Creature,Plant | TokenOwner$ You | TokenColors$ Green | TokenPower$ 0 | TokenToughness$ 1 | ConditionPresent$ Land.YouCtrl | ConditionCompare$ LT10 | SubAbility$ MatureEvil
|
||||
SVar:MatureEvil:DB$ Token | Cost$ 0 | TokenAmount$ 7 | TokenName$ Elemental | TokenTypes$ Creature,Elemental | TokenOwner$ You | TokenColors$ Green | TokenPower$ 3 | TokenToughness$ 3 | ConditionPresent$ Land.YouCtrl | ConditionCompare$ GE10
|
||||
SVar:X:Count$NumTypeYouCtrl.Land
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/ARC/Evil Comes to Fruition.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/ARC/Evil Comes to Fruition.full.jpg
|
||||
Oracle:When you set this scheme in motion, put seven 0/1 green Plant creature tokens onto the battlefield. If you control ten or more lands, put seven 3/3 green Elemental creature tokens onto the battlefield instead.
|
||||
|
||||
@@ -5,5 +5,5 @@ HandLifeModifier:+0/-5
|
||||
T:Mode$ ChangesZone | Origin$ Battlefield | Destination$ Graveyard | ValidCard$ Creature.YouCtrl | Execute$ TrigDrain | TriggerZones$ Command | TriggerDescription$ Whenever a creature you control dies, target opponent loses 1 life and you gain 1 life.
|
||||
SVar:TrigDrain:AB$ LoseLife | Cost$ 0 | ValidTgts$ Opponent | LifeAmount$ 1 | SubAbility$ DBGainLife
|
||||
SVar:DBGainLife:DB$ GainLife | Defined$ You | LifeAmount$ 1
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Fallen Angel Avatar.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Fallen Angel Avatar.full.jpg
|
||||
Oracle:Hand +0, life -5\nWhenever a creature you control dies, target opponent loses 1 life and you gain 1 life.
|
||||
|
||||
@@ -7,5 +7,5 @@ SVar:DBChoose:DB$ GenericChoice | ValidTgts$ Opponent | Choices$ Self,Others | A
|
||||
SVar:Self:DB$ Sacrifice | SacValid$ Creature | Defined$ ParentTarget | Amount$ 2 | SpellDescription$ Self
|
||||
SVar:Others:DB$ Sacrifice | SacValid$ Creature | Defined$ OppNonParentTarget | Amount$ 1 | SpellDescription$ Others
|
||||
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/ARC/Feed the Machine.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/ARC/Feed the Machine.full.jpg
|
||||
Oracle:When you set this scheme in motion, target opponent chooses self or others. If that player chooses self, he or she sacrifices two creatures. if the player chooses others, each of your other opponents sacrifice a creature.
|
||||
|
||||
@@ -4,5 +4,5 @@ Types:Vanguard
|
||||
HandLifeModifier:+0/+3
|
||||
A:AB$ PutCounter | ActivationZone$ Command | Announce$ X | Cost$ X | CounterType$ P1P1 | CounterNum$ 1 | ValidTgts$ Creature.counters_LTX_P1P1 | TgtPrompt$ Select target creature with fewer than X +1/+1 counters on it | References$ X | SpellDescription$ Put a +1/+1 counter on target creature with fewer than X +1/+1 counters on it.
|
||||
SVar:X:Count$xPaid
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Figure of Destiny Avatar.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Figure of Destiny Avatar.full.jpg
|
||||
Oracle:Hand +0, life +3\n{X}: Put a +1/+1 counter on target creature with fewer than X +1/+1 counters on it.
|
||||
|
||||
@@ -5,5 +5,5 @@ HandLifeModifier:+0/-6
|
||||
T:Mode$ ChangesZone | ValidCard$ Creature.nonToken+YouCtrl | Origin$ Any | Destination$ Battlefield | Execute$ TrigDealDamage | TriggerZones$ Command | TriggerDescription$ Whenever a nontoken creature enters the battlefield under your control, that creature deals X damage to target creature, where X is a number chosen at random from 0 to 4.
|
||||
SVar:TrigDealDamage:AB$ DealDamage | Cost$ 0 | ValidTgts$ Creature | NumDmg$ X | References$ X | DamageSource$ TriggeredCard
|
||||
SVar:X:Count$Random.0.4
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Flametongue Kavu Avatar.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Flametongue Kavu Avatar.full.jpg
|
||||
Oracle:Hand +0, life -6\nWhenever a nontoken creature enters the battlefield under your control, that creature deals X damage to target creature, where X is a number chosen at random from 0 to 4.
|
||||
|
||||
@@ -6,5 +6,5 @@ S:Mode$ Continuous | EffectZone$ Command | Affected$ Permanent.YouCtrl | AddKeyw
|
||||
T:Mode$ Phase | Phase$ End of Turn | ValidPlayer$ You | TriggerZones$ Command | Execute$ TrigFlip | TriggerDescription$ At the beginning of your end step, flip a coin. If you win the flip, take an extra turn after this one.
|
||||
SVar:TrigFlip:AB$ FlipACoin | Cost$ 0 | Defined$ You | WinSubAbility$ DBAddTurn
|
||||
SVar:DBAddTurn:DB$ AddTurn | NumTurns$ 1
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Frenetic Efreet Avatar.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Frenetic Efreet Avatar.full.jpg
|
||||
Oracle:Hand -1, life -3\nEach permanent you control has phasing. (It phases in or out before you untap during each of your untap steps. While it's phased out, it's treated as though it doesn't exist.)\nAt the beginning of your end step, flip a coin. If you win the flip, take an extra turn after this one.
|
||||
|
||||
@@ -4,5 +4,5 @@ Types:Vanguard
|
||||
HandLifeModifier:-4/+0
|
||||
T:Mode$ Phase | Phase$ Draw | ValidPlayer$ You | TriggerZones$ Command | Execute$ TrigDraw | TriggerDescription$ At the beginning of your draw step, draw an additional card.
|
||||
SVar:TrigDraw:AB$ Draw | Cost$ 0 | NumCards$ 1 | Defined$ You
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Gerrard.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Gerrard.full.jpg
|
||||
Oracle:Hand -4, life +0\nAt the beginning of your draw step, draw an additional card.
|
||||
|
||||
@@ -3,5 +3,5 @@ ManaCost:no cost
|
||||
Types:Vanguard
|
||||
HandLifeModifier:-2/+18
|
||||
A:AB$ ChangeZone | Cost$ 3 | ActivationZone$ Command | Origin$ Graveyard | Destination$ Hand | TgtPrompt$ Select target creature card in your graveyard | ValidTgts$ Creature.YouCtrl | SpellDescription$ Return target creature card from your graveyard to your hand.
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Gix.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Gix.full.jpg
|
||||
Oracle:Hand -2, life +18\n{3}: Return target creature card from your graveyard to your hand.
|
||||
|
||||
@@ -3,5 +3,5 @@ ManaCost:no cost
|
||||
Types:Vanguard
|
||||
HandLifeModifier:+1/+2
|
||||
S:Mode$ Continuous | EffectZone$ Command | AffectedZone$ Battlefield | Affected$ Creature.attacking+YouCtrl | AddPower$ 1 | Description$ Attacking creatures you control get +1/+0.
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Goblin Warchief Avatar1.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Goblin Warchief Avatar1.full.jpg
|
||||
Oracle:Hand +1, life +2\nAttacking creatures you control get +1/+0.
|
||||
|
||||
@@ -4,5 +4,5 @@ Types:Vanguard
|
||||
HandLifeModifier:-1/+2
|
||||
T:Mode$ DamageDone | ValidSource$ Creature.YouCtrl | ValidTarget$ Creature | TriggerZones$ Command | Execute$ TrigDestroy | TriggerDescription$ Whenever a creature you control deals damage to a creature, destroy the other creature. It can't be regenerated.
|
||||
SVar:TrigDestroy:AB$ Destroy | Cost$ 0 | Defined$ TriggeredTarget | NoRegen$ True
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Greven il-Vec.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Greven il-Vec.full.jpg
|
||||
Oracle:Hand -1, life +2\nWhenever a creature you control deals damage to a creature, destroy the other creature. It can't be regenerated.
|
||||
|
||||
@@ -4,5 +4,5 @@ Types:Vanguard
|
||||
HandLifeModifier:-1/-2
|
||||
T:Mode$ ChangesZone | Origin$ Battlefield | Destination$ Graveyard | ValidCard$ Creature.YouCtrl+nonToken | TriggerZones$ Command | Execute$ GrinningDiscard | TriggerDescription$ Whenever a nontoken creature you control dies, target opponent discards a card.
|
||||
SVar:GrinningDiscard:AB$ Discard | Cost$ 0 | ValidTgts$ Opponent | TgtPrompt$ Select an opponent to discard | NumCards$ 1 | Mode$ TgtChoose
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Grinning Demon Avatar1.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Grinning Demon Avatar1.full.jpg
|
||||
Oracle:Hand -1, life -2\nWhenever a nontoken creature you control dies, target opponent discards a card.
|
||||
|
||||
@@ -7,5 +7,5 @@ SVar:Play:Mode$ Continuous | MayPlay$ True | EffectZone$ Command | Affected$ Car
|
||||
T:Mode$ SpellCast | ValidCard$ Card.wasCastFromGraveyard | ValidControllingPlayer$ You | TriggerZones$ Command | Execute$ TrigAnimate | TriggerDescription$ Whenever you play a creature card from your graveyard, it becomes a black Zombie Knight.
|
||||
SVar:TrigAnimate:AB$ Animate | Cost$ 0 | Defined$ TriggeredCard | Types$ Zombie,Knight | Colors$ Black | OverwriteColors$ True | Permanent$ True | OverwriteTypes$ True | KeepSupertypes$ True | KeepCardTypes$ True
|
||||
S:Mode$ Continuous | EffectZone$ Command | Affected$ Card.Zombie+Knight | AffectedZone$ Battlefield | AddHiddenKeyword$ If CARDNAME would be put into a graveyard, exile it instead. | Description$ If a Zombie Knight would be put into your graveyard from the battlefield, exile it instead.
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Haakon, Stromgald Scourge Avatar.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Haakon, Stromgald Scourge Avatar.full.jpg
|
||||
Oracle:Hand +0, life -3\nPay 1 life: You may play target creature card in your graveyard this turn.\nWhenever you play a creature card from your graveyard, it becomes a black Zombie Knight.\nIf a Zombie Knight would be put into your graveyard from the battlefield, exile it instead.
|
||||
|
||||
@@ -3,5 +3,5 @@ ManaCost:no cost
|
||||
Types:Vanguard
|
||||
HandLifeModifier:+1/-5
|
||||
S:Mode$ ReduceCost | EffectZone$ Command | ValidCard$ Card | Type$ Spell | Activator$ You | Amount$ 1 | Description$ Spells you cast cost {1} less to cast.
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Hanna.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Hanna.full.jpg
|
||||
Oracle:Hand +1, life -5\nSpells you cast cost {1} less to cast.
|
||||
|
||||
@@ -4,5 +4,5 @@ Types:Vanguard
|
||||
HandLifeModifier:-1/+4
|
||||
S:Mode$ ReduceCost | EffectZone$ Command | ValidCard$ Card.Creature | Activator$ You | Type$ Spell | OnlyFirstSpell$ True | Amount$ 1 | Description$ The first creature spell you cast each turn costs {1} less to cast.
|
||||
S:Mode$ RaiseCost | EffectZone$ Command | ValidCard$ Card.nonCreature | Activator$ Player.Opponent | Type$ Spell | OnlyFirstSpell$ True | Amount$ 1 | Description$ The first noncreature spell each opponent casts each turn costs {1} more to cast.
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Heartwood Storyteller Avatar.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Heartwood Storyteller Avatar.full.jpg
|
||||
Oracle:Hand -1, life +4\nThe first creature spell you cast each turn costs {1} less to cast.\nThe first noncreature spell each opponent casts each turn costs {1} more to cast.
|
||||
|
||||
@@ -4,5 +4,5 @@ Types:Vanguard
|
||||
HandLifeModifier:-1/-4
|
||||
A:AB$ ChangeZone | Cost$ 3 Sac<1/Creature/creature> | ActivationZone$ Command | Origin$ Graveyard | Destination$ Battlefield | ValidTgts$ Creature.YouCtrl | TgtPrompt$ Select target creature in your graveyard | SpellDescription$ Return target creature card from your graveyard to the battlefield.
|
||||
SVar:RemAIDeck:True
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Hell's Caretaker Avatar.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Hell's Caretaker Avatar.full.jpg
|
||||
Oracle:Hand -1, life -4\n{3}, Sacrifice a creature: Return target creature card from your graveyard to the battlefield.
|
||||
|
||||
@@ -4,5 +4,5 @@ Types:Vanguard
|
||||
HandLifeModifier:-2/-2
|
||||
T:Mode$ Phase | Phase$ Upkeep | ValidPlayer$ You | Execute$ TrigBounce | TriggerZones$ Command | TriggerDescription$ At the beginning of your upkeep, put a land card from your library chosen at random onto the battlefield.
|
||||
SVar:TrigBounce:AB$ ChangeZone | Cost$ 0 | Origin$ Library | Destination$ Battlefield | AtRandom$ True | ChangeType$ Land
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Hermit Druid Avatar.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Hermit Druid Avatar.full.jpg
|
||||
Oracle:Hand -2, life -2\nAt the beginning of your upkeep, put a land card from your library chosen at random onto the battlefield.
|
||||
|
||||
@@ -4,5 +4,5 @@ Types:Vanguard
|
||||
HandLifeModifier:-1/+3
|
||||
T:Mode$ DamageDone | ValidSource$ Creature.nonToken+YouCtrl | ValidTarget$ Opponent | TriggerZones$ Command | CombatDamage$ True | Execute$ TrigChangeZone | TriggerDescription$ Whenever a nontoken creature you control deals combat damage to an opponent, choose a creature card at random from your library, reveal that card, and put it into your hand. Then shuffle your library.
|
||||
SVar:TrigChangeZone:AB$ ChangeZone | Cost$ 0 | Origin$ Library | Destination$ Hand | AtRandom$ True | ChangeType$ Card.Creature | ChangeNum$ 1
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Higure, the Still Wind Avatar.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Higure, the Still Wind Avatar.full.jpg
|
||||
Oracle:Hand -1, life +3\nWhenever a nontoken creature you control deals combat damage to an opponent, choose a creature card at random from your library, reveal that card, and put it into your hand. Then shuffle your library.
|
||||
|
||||
@@ -4,6 +4,6 @@ Types:Plane Pyrulea
|
||||
S:Mode$ Continuous | EffectZone$ Command | Affected$ Permanent | AddHiddenKeyword$ CARDNAME untaps during each other player's untap step. | Description$ All permanents untap during each player's untap step.
|
||||
T:Mode$ PlanarDice | Result$ Chaos | TriggerZones$ Command | Execute$ DBFetch | TriggerDescription$ Whenever you roll {CHAOS}, you may search your library for up to three basic land cards, put them onto the battlefield tapped, then shuffle your library.
|
||||
SVar:DBFetch:DB$ChangeZone | Origin$ Library | Destination$ Battlefield | Tapped$ True | ChangeType$ Land.Basic | ChangeNum$ 3 | ShuffleNonMandatory$ True
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/HOP/Horizon Boughs.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/HOP/Horizon Boughs.jpg
|
||||
SVar:AIRollPlanarDieParams:Mode$ Always | LowPriority$ True | MaxRollsPerTurn$ 9
|
||||
Oracle:All permanents untap during each player's untap step.\nWhenever you roll {CHAOS}, you may search your library for up to three basic land cards, put them onto the battlefield tapped, then shuffle your library.
|
||||
|
||||
@@ -14,5 +14,5 @@ SVar:DBReset:AB$ StoreSVar | Cost$ 0 | SVar$ X | Type$ Number | Expression$ 0
|
||||
|
||||
SVar:Abandon:AB$ Abandon | Cost$ 0
|
||||
SVar:X:Number$0
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/ARC/I Bask in Your Silent Awe.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/ARC/I Bask in Your Silent Awe.full.jpg
|
||||
Oracle:(An ongoing scheme remains face up until it's abandoned.)\nEach opponent can't cast more than one spell each turn.\nAt the beginning of your upkeep, if no opponent cast a spell since your last turn ended, abandon this scheme.
|
||||
|
||||
@@ -4,5 +4,5 @@ Types:Scheme
|
||||
T:Mode$ SetInMotion | ValidCard$ Card.Self | Execute$ OppTutor | TriggerZones$ Command | TriggerDescription$ When you set this scheme in motion, each other player searches his or her library for a card, reveals it, and puts it into his or her hand. Then you search your library for two cards and put them into your hand. Each player shuffles his or her library.
|
||||
SVar:OppTutor:AB$ ChangeZone | Cost$ 0 | DefinedPlayer$ Player.Other | Origin$ Library | Destination$ Hand | ChangeType$ Card | ChangeNum$ 1 | Reveal$ True | Mandatory$ True | SubAbility$ MyMagic
|
||||
SVar:MyMagic:DB$ ChangeZone | DefinedPlayer$ You | Origin$ Library | Destination$ Hand | ChangeType$ Card | ChangeNum$ 2 | Mandatory$ True
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/ARC/I Call on the Ancient Magics.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/ARC/I Call on the Ancient Magics.full.jpg
|
||||
Oracle:When you set this scheme in motion, each other player searches his or her library for a card, reveals it, and puts it into his or her hand. Then you search your library for two cards and put them into your hand. Each player shuffles his or her library.
|
||||
|
||||
@@ -5,5 +5,5 @@ T:Mode$ SetInMotion | ValidCard$ Card.Self | Execute$ DarkEffect | TriggerZones$
|
||||
SVar:DarkEffect:AB$ LoseLife | Cost$ 0 | Defined$ Player.Opponent | LifeAmount$ 3 | SubAbility$ DBGainLife
|
||||
SVar:DBGainLife:DB$ GainLife | Defined$ You | LifeAmount$ AFLifeLost | StackDescription$ You gain life equal to the life lost this way.
|
||||
SVar:AFLifeLost:Number$0
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/ARC/I Delight in Your Convulsions.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/ARC/I Delight in Your Convulsions.full.jpg
|
||||
Oracle:When you set this scheme in motion, each opponent loses 3 life. You gain life equal to the life lost this way.
|
||||
|
||||
@@ -5,5 +5,5 @@ S:Mode$ Continuous | EffectZone$ Command | Affected$ Permanent.YouCtrl | AddHidd
|
||||
T:Mode$ Phase | Phase$ End of Turn | Execute$ Abandon | TriggerZones$ Command | CheckSVar$ X | SVarCompare$ GE3 | TriggerDescription$ At the beginning of each end step, if three or more cards were put into your graveyard this turn from anywhere, abandon this scheme.
|
||||
SVar:Abandon:AB$ Abandon | Cost$ 0
|
||||
SVar:X:Count$ThisTurnEntered_Graveyard_Card.YouOwn
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/ARC/I Know All, I See All.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/ARC/I Know All, I See All.full.jpg
|
||||
Oracle:(An ongoing scheme remains face up until it's abandoned.)\nUntap all permanents you control during each opponent's untap step.\nAt the beginning of each end step, if three or more cards were put into your graveyard this turn from anywhere, abandon this scheme.
|
||||
|
||||
@@ -3,5 +3,5 @@ ManaCost:no cost
|
||||
Types:Scheme
|
||||
T:Mode$ SetInMotion | ValidCard$ Card.Self | Execute$ DarkEffect | TriggerZones$ Command | TriggerDescription$ When you set this scheme in motion, put a token onto the battlefield that's a copy of target permanent an opponent controls.
|
||||
SVar:DarkEffect:AB$ CopyPermanent | Cost$ 0 | ValidTgts$ Permanent.OppCtrl | TgtPrompt$ Select target permanent an opponent controls
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/ARC/Ignite the Cloneforge!.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/ARC/Ignite the Cloneforge!.full.jpg
|
||||
Oracle:When you set this scheme in motion, put a token onto the battlefield that's a copy of target permanent an opponent controls.
|
||||
|
||||
@@ -7,5 +7,5 @@ S:Mode$ Continuous | EffectZone$ Command | Affected$ Permanent.ChosenCtrl | Affe
|
||||
T:Mode$ Attacks | ValidCard$ Card | Attacked$ Player.Chosen | Execute$ Abandon | TriggerZones$ Command | TriggerDescription$ When the chosen player is attacked or becomes the target of a spell or ability, abandon this scheme.
|
||||
T:Mode$ BecomesTarget | ValidTarget$ Player.Chosen | TriggerZones$ Command | Execute$ Abandon | Secondary$ True | TriggerDescription$ When the chosen player is attacked or becomes the target of a spell or ability, abandon this scheme.
|
||||
SVar:Abandon:AB$ Abandon | Cost$ 0
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/ARC/Imprison This Insolent Wretch.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/ARC/Imprison This Insolent Wretch.full.jpg
|
||||
Oracle:When you set this scheme in motion, choose an opponent.\nPermanents the chosen player controls don't untap during his or her untap step.\nWhen the chosen player is attacked or becomes the target of a spell or ability, abandon this scheme.
|
||||
|
||||
@@ -6,5 +6,5 @@ T:Mode$ NewGame | Execute$ TrigDiscard | TriggerZones$ Command | TriggerDescript
|
||||
SVar:TrigDiscard:AB$ Discard | Cost$ 0 | ValidTgts$ Opponent | Mode$ RevealYouChoose | NumCards$ 1 | DiscardValid$ Card.nonLand
|
||||
A:AB$ ChangeZone | ActivationZone$ Command | Announce$ X | Cost$ X PayLife<X> | References$ X | ValidTgts$ Creature.OppOwn+cmcEQX | TgtPrompt$ Select target creature with converted mana cost X from an opponent's graveyard | Origin$ Graveyard | Destination$ Battlefield | GainControl$ True | SpellDescription$ Put target creature card with converted mana cost X from an opponent's graveyard onto the battlefield under your control.
|
||||
SVar:X:Count$xPaid
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Ink-Eyes, Servant of Oni Avatar.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Ink-Eyes, Servant of Oni Avatar.full.jpg
|
||||
Oracle:Hand +0, life -3\nAt the beginning of the game, look at target opponent's hand and choose a nonland card from it. That player discards that card.\n{X}, Pay X life: Put target creature card with converted mana cost X from an opponent's graveyard onto the battlefield under your control.
|
||||
|
||||
@@ -5,5 +5,5 @@ T:Mode$ SetInMotion | ValidCard$ Card.Self | Execute$ ExileFlying | TriggerZones
|
||||
SVar:ExileFlying:AB$ ChangeZone | Cost$ 0 | Origin$ Battlefield | Destination$ Exile | TargetMin$ 0 | TargetMax$ 1 | ValidTgts$ Creature.withFlying | TgtPrompt$ Select target creature with Flying | SubAbility$ ExileWithoutFly
|
||||
SVar:ExileWithoutFly:DB$ ChangeZone | Origin$ Battlefield | Destination$ Exile | TargetMin$ 0 | TargetMax$ 1 | ValidTgts$ Creature.withoutFlying | TgtPrompt$ Select target creature without Flying | SubAbility$ ExileAllYard
|
||||
SVar:ExileAllYard:DB$ ChangeZoneAll | Origin$ Graveyard | Destination$ Exile | TargetMin$ 0 | TargetMax$ 1 | ValidTgts$ Opponent | ChangeType$ Card
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/ARC/Into the Earthen Maw.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/ARC/Into the Earthen Maw.full.jpg
|
||||
Oracle:When you set this scheme in motion, exile up to one target creature with flying, up to one target creature without flying, and all cards from up to one target opponent's graveyard.
|
||||
|
||||
@@ -5,5 +5,5 @@ T:Mode$ SetInMotion | ValidCard$ Card.Self | Execute$ TrigCharm | TriggerZones$
|
||||
SVar:TrigCharm:DB$ Charm | Choices$ DBTutorCreature,DBPutCreature | CharmNum$ 1
|
||||
SVar:DBTutorCreature:DB$ ChangeZone | Origin$ Library | Destination$ Hand | ChangeType$ Card.Creature | ChangeNum$ 1 | SpellDescription$ Search your library for a creature card, reveal it, put it into your hand, then shuffle your library;
|
||||
SVar:DBPutCreature:DB$ ChangeZone | Origin$ Hand | Destination$ Battlefield | ChangeType$ Card.Creature | ChangeNum$ 1 | SpellDescription$ or you may put a creature card from your hand onto the battlefield.
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/ARC/Introductions Are in Order.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/ARC/Introductions Are in Order.full.jpg
|
||||
Oracle:When you set this scheme in motion, choose one -\n• Search your library for a creature card, reveal it, put it into your hand, then shuffle your library.\n• You may put a creature card from your hand onto the battlefield.
|
||||
|
||||
@@ -5,5 +5,5 @@ HandLifeModifier:+0/+1
|
||||
A:AB$ DealDamage | ActivationZone$ Command | Cost$ X | ValidTgts$ Creature,Player | TgtPrompt$ Select target creature or player | NumDmg$ Y | References$ X,Y | ActivationLimit$ 1 | StackDescription$ SpellDescription | SpellDescription$ CARDNAME deals an amount of damage chosen at random from 0 to X to target creature or player. Activate this ability only once each turn.
|
||||
SVar:X:Count$xPaid
|
||||
SVar:Y:Count$Random.0.X
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Jaya Ballard Avatar.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Jaya Ballard Avatar.full.jpg
|
||||
Oracle:Hand +0, life +1\n{X}: Jaya Ballard Avatar deals an amount of damage chosen at random from 0 to X to target creature or player. Activate this ability only once each turn.
|
||||
|
||||
@@ -4,5 +4,5 @@ Types:Vanguard
|
||||
HandLifeModifier:+1/+0
|
||||
A:AB$ Play | Cost$ 3 Discard<1/Card> | ActivationZone$ Command | AnySupportedCard$ Instant | RandomCopied$ True | RandomNum$ 3 | ChoiceNum$ 1 | CopyCard$ True | WithoutManaCost$ True | SpellDescription$ Copy three instant cards chosen at random. You may cast one of the copies without paying its mana cost.
|
||||
A:AB$ Play | Cost$ 3 Discard<1/Card> | ActivationZone$ Command | AnySupportedCard$ Sorcery | RandomCopied$ True | RandomNum$ 3 | ChoiceNum$ 1 | CopyCard$ True | WithoutManaCost$ True | SorcerySpeed$ True | SpellDescription$ Copy three sorcery cards chosen at random. You may cast one of the copies without paying its mana cost. Activate this ability only any time you could cast a sorcery.
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Jhoira of the Ghitu Avatar.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Jhoira of the Ghitu Avatar.full.jpg
|
||||
Oracle:Hand +1, life +0\n{3}, Discard a card: Copy three instant cards chosen at random. You may cast one of the copies without paying its mana cost.\n{3}, Discard a card: Copy three sorcery cards chosen at random. You may cast one of the copies without paying its mana cost. Activate this ability only any time you could cast a sorcery.
|
||||
|
||||
@@ -4,5 +4,5 @@ Types:Vanguard
|
||||
HandLifeModifier:+1/+6
|
||||
S:Mode$ Continuous | EffectZone$ Command | Affected$ Artifact.nonCreature+YouCtrl | SetPower$ AffectedX | SetToughness$ AffectedX | AddType$ Creature | Description$ Each noncreature artifact you control is an artifact creature with power and toughness each equal to its converted mana cost.
|
||||
SVar:AffectedX:Count$CardManaCost
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Karn.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Karn.full.jpg
|
||||
Oracle:Hand +1, life +6\nEach noncreature artifact you control is an artifact creature with power and toughness each equal to its converted mana cost.
|
||||
|
||||
@@ -7,5 +7,5 @@ SVar:TrigExchangeChoose:AB$ ChooseCard | Cost$ 0 | ValidTgts$ Opponent | Choices
|
||||
SVar:ChooseYou:DB$ ChooseCard | Choices$ Permanent.YouCtrl | Amount$ 1 | AtRandom$ True | RememberChosen$ True | SubAbility$ DBExchange
|
||||
SVar:DBExchange:DB$ ExchangeControl | Defined$ Remembered | BothDefined$ True | SubAbility$ DBCleanup
|
||||
SVar:DBCleanup:DB$ Cleanup | ClearRemembered$ True
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Karona, False God Avatar.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Karona, False God Avatar.full.jpg
|
||||
Oracle:Hand -1, life +8\nAt the beginning of your upkeep, exchange control of a permanent you control chosen at random and a permanent target opponent controls chosen at random.
|
||||
|
||||
@@ -5,5 +5,5 @@ T:Mode$ SetInMotion | ValidCard$ Card.Self | Execute$ DmgAll | TriggerZones$ Com
|
||||
SVar:DmgAll:AB$ RepeatEach | Cost$ 0 | RepeatPlayers$ Player.Opponent | RepeatSubAbility$ DBDamage
|
||||
SVar:DBDamage:DB$ DealDamage | Defined$ Player.IsRemembered | NumDmg$ X | References$ X
|
||||
SVar:X:PlayerCountRemembered$CardsInHand
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/ARC/Know Naught but Fire.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/ARC/Know Naught but Fire.full.jpg
|
||||
Oracle:When you set this scheme in motion, it deals damage to each opponent equal to the number of cards in that player's hand.
|
||||
|
||||
@@ -5,5 +5,5 @@ HandLifeModifier:+1/-3
|
||||
T:Mode$ Devoured | ValidDevoured$ Creature.YouCtrl | TriggerZones$ Command | Execute$ TrigToken | TriggerDescription$ Whenever a creature you control is devoured, create an X/X green Ooze creature token, where X is the devoured creature's power.
|
||||
SVar:TrigToken:AB$ Token | Cost$ 0 | TokenAmount$ 1 | TokenName$ Ooze | TokenTypes$ Creature,Ooze | TokenOwner$ You | TokenColors$ Green | TokenPower$ X | TokenToughness$ X | References$ X | TokenImage$ g x x ooze rtr | SpellDescription$ Create an X/X green Ooze creature token.
|
||||
SVar:X:TriggeredDevoured$CardPower
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Kresh the Bloodbraided Avatar.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Kresh the Bloodbraided Avatar.full.jpg
|
||||
Oracle:Hand +1, life -3\nWhenever a creature you control is devoured, create an X/X green Ooze creature token, where X is the devoured creature's power.
|
||||
|
||||
@@ -3,5 +3,5 @@ ManaCost:no cost
|
||||
Types:Scheme
|
||||
T:Mode$ SetInMotion | ValidCard$ Card.Self | Execute$ DarkEffect | TriggerZones$ Command | TriggerDescription$ When you set this scheme in motion, put a 5/5 red Dragon creature token with flying onto the battlefield.
|
||||
SVar:DarkEffect:AB$ Token | Cost$ 0 | TokenAmount$ 1 | TokenName$ Dragon | TokenTypes$ Creature,Dragon | TokenOwner$ You | TokenColors$ Red | TokenPower$ 5 | TokenToughness$ 5 | TokenKeywords$ Flying
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/ARC/Look Skyward and Despair.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/ARC/Look Skyward and Despair.full.jpg
|
||||
Oracle:When you set this scheme in motion, put a 5/5 red Dragon creature token with flying onto the battlefield.
|
||||
|
||||
@@ -3,5 +3,5 @@ ManaCost:no cost
|
||||
Types:Vanguard
|
||||
HandLifeModifier:+0/+12
|
||||
A:AB$ Regenerate | ActivationZone$ Command | Cost$ Sac<1/Permanent> | ValidTgts$ Creature.YouCtrl | TgtPrompt$ Select target creature you control | SpellDescription$ Regenerate target creature you control.
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Loxodon Hierarch Avatar.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Loxodon Hierarch Avatar.full.jpg
|
||||
Oracle:Hand +0, life +12\nSacrifice a permanent: Regenerate target creature you control.
|
||||
|
||||
@@ -3,5 +3,5 @@ ManaCost:no cost
|
||||
Types:Vanguard
|
||||
HandLifeModifier:+2/-4
|
||||
S:Mode$ Continuous | EffectZone$ Command | Affected$ Creature.YouCtrl | AddKeyword$ Shadow | Description$ Creatures you control have shadow. (They can block and be blocked only by creatures with shadow.)
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Lyna.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Lyna.full.jpg
|
||||
Oracle:Hand +2, life -4\nCreatures you control have shadow. (They can block and be blocked only by creatures with shadow.)
|
||||
|
||||
@@ -8,5 +8,5 @@ SVar:X:ReplaceCount$DamageAmount/Twice
|
||||
T:Mode$ Phase | Phase$ End of Turn | ValidPlayer$ You | TriggerZones$ Command | Hellbent$ True | Execute$ LyzoldasDiscard | TriggerDescription$ Hellbent - At the beginning of your end step, if you have no cards in hand, each of your opponents discards a card.
|
||||
SVar:LyzoldasDiscard:AB$ Discard | Cost$ 0 | Defined$ Player.Opponent | NumCards$ 1 | Mode$ TgtChoose
|
||||
DeckHints:Ability$Discard
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Lyzolda, the Blood Witch Avatar.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Lyzolda, the Blood Witch Avatar.full.jpg
|
||||
Oracle:Hand -1, life -1\nHellbent - As long as you have no cards in hand, if a source you control would deal damage to a creature or player, it deals double that damage to that creature or player instead.\nHellbent - At the beginning of your end step, if you have no cards in hand, each of your opponents discards a card.
|
||||
|
||||
@@ -6,5 +6,5 @@ T:Mode$ ChangesZone | ValidCard$ Creature.YouCtrl+IsUnearthed | Origin$ Any | De
|
||||
SVar:TrigPump:AB$ Pump | Cost$ 0 | Defined$ TriggeredCard | NumAtt$ +3
|
||||
T:Mode$ ChangesZone | ValidCard$ Card.IsUnearthed | Origin$ Any | Destination$ Exile | TriggerZones$ Command | Execute$ TrigMove | TriggerDescription$ Whenever a creature you control is exiled, if it was uneathed, shuffle that card into its owner's library.
|
||||
SVar:TrigMove:AB$ ChangeZone | Cost$ 0 | Origin$ Exile | Destination$ Library | Defined$ TriggeredCard | Shuffle$ True
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Malfegor Avatar.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Malfegor Avatar.full.jpg
|
||||
Oracle:Hand +2, life -2\nWhenever a creature enters the battlefield under your control, if it was unearthed, it gets +3/+0.\nWhenever a creature you control is exiled, if it was uneathed, shuffle that card into its owner's library.
|
||||
|
||||
@@ -11,5 +11,5 @@ T:Mode$ Phase | Phase$ Draw | ValidPlayer$ You | TriggerZones$ Command | Execute
|
||||
SVar:TrigDig:AB$ Dig | Cost$ 0 | DigNum$ LifePaidOnNewGame | References$ LifePaidOnNewGame | ChangeNum$ 1 | LibraryPosition$ 0 | SubAbility$ DBShuffle
|
||||
SVar:DBShuffle:DB$ Shuffle | Defined$ You
|
||||
SVar:RemAIDeck:True
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Maralen of the Mornsong Avatar.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Maralen of the Mornsong Avatar.full.jpg
|
||||
Oracle:Hand +0, life -3\nAt the beginning of the game, you may pay any amount of life.\nYou can't draw cards.\nAt the beginning of your draw step, look at the top X cards of your library, where X is the amount of life paid with Maralen of the Mornsong Avatar. Put one of them into your hand, then shuffle your library.
|
||||
|
||||
@@ -3,5 +3,5 @@ ManaCost:no cost
|
||||
Types:Vanguard
|
||||
HandLifeModifier:+1/+2
|
||||
S:Mode$ Continuous | EffectZone$ Command | Affected$ Creature.YouCtrl | AddPower$ 1 | Description$ Creatures you control get +1/+0.
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Maraxus.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Maraxus.full.jpg
|
||||
Oracle:Hand +1, life +2\nCreatures you control get +1/+0.
|
||||
|
||||
@@ -4,6 +4,6 @@ Types:Vanguard
|
||||
HandLifeModifier:+2/-7
|
||||
A:AB$ Pump | Cost$ tapXType<1/Creature> Discard<1/Card> | ActivationZone$ Command | ValidTgts$ Creature | NumAtt$ +X | NumDef$ +X | SpellDescription$ Target creature you control gets +X/+X until end of turn, where X is the number of cards in your hand.
|
||||
SVar:X:Count$InYourHand
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Maro Avatar.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Maro Avatar.full.jpg
|
||||
SVar:RemAIDeck:True
|
||||
Oracle:Hand +2, life -7\nTap an untapped creature you control, Discard a card: Target creature you control gets +X/+X until end of turn, where X is the number of cards in your hand.
|
||||
|
||||
@@ -7,5 +7,5 @@ SVar:Wolf:DB$ Token | TokenAmount$ 1 | TokenName$ Wolf | TokenTypes$ Creature,Wo
|
||||
SVar:Antelope:DB$ Token | TokenAmount$ 1 | TokenName$ Antelope | TokenTypes$ Creature,Antelope | TokenOwner$ You | TokenColors$ Green | TokenPower$ 2 | TokenToughness$ 3 | TokenKeywords$ Forestwalk | SpellDescription$ Antelope
|
||||
SVar:Cat:DB$ Token | TokenAmount$ 1 | TokenName$ Cat | TokenTypes$ Creature,Cat | TokenOwner$ You | TokenColors$ Green | TokenPower$ 3 | TokenToughness$ 2 | TokenKeywords$ Shroud | SpellDescription$ Cat
|
||||
SVar:Rhino:DB$ Token | TokenAmount$ 1 | TokenName$ Rhino | TokenTypes$ Creature,Rhino | TokenOwner$ You | TokenColors$ Green | TokenPower$ 4 | TokenToughness$ 4 | TokenKeywords$ Trample | SpellDescription$ Rhino
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Master of the Wild Hunt Avatar.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Master of the Wild Hunt Avatar.full.jpg
|
||||
Oracle:Hand +1, life +3\n{2}{G}: Put a green creature token onto the battlefield that's a 2/2 Wolf, a 2/3 Antelope with forestwalk, a 3/2 Cat with shroud, or a 4/4 Rhino with trample, chosen at random.
|
||||
|
||||
@@ -7,5 +7,5 @@ SVar:DBChoose:DB$ GenericChoice | ValidTgts$ Opponent | Choices$ Self,Others | A
|
||||
SVar:Self:DB$ Sacrifice | SacValid$ Land | Defined$ ParentTarget | Amount$ 2 | SpellDescription$ Self
|
||||
SVar:Others:DB$ Sacrifice | SacValid$ Land | Defined$ OppNonParentTarget | Amount$ 1 | SpellDescription$ Others
|
||||
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/ARC/May Civilization Collapse.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/ARC/May Civilization Collapse.full.jpg
|
||||
Oracle:When you set this scheme in motion, target opponent chooses self or others. If that player chooses self, he or she sacrifices two lands. if the player chooses others, each of your other opponents sacrifice a land.
|
||||
|
||||
@@ -7,5 +7,5 @@ SVar:TrigDig:AB$ Dig | Cost$ 0 | DigNum$ 1 | Reveal$ True | ChangeNum$ All | Cha
|
||||
SVar:DBDig:DB$ Dig | DigNum$ 1 | DestinationZone$ Library | Optional$ True | LibraryPosition$ -1 | LibraryPosition2$ 0 | ConditionCheckSVar$ X | ConditionSVarCompare$ EQ0 | SubAbility$ DBCleanup | References$ X
|
||||
SVar:X:Remembered$Amount
|
||||
SVar:DBCleanup:DB$Cleanup | ClearRemembered$ True
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Mayael the Anima Avatar.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Mayael the Anima Avatar.full.jpg
|
||||
Oracle:Hand +1, life +5\nAt the beginning of your upkeep, reveal the top card of your library. If it's a creature card with power 5 or greater, put it into your hand. Otherwise, you may put it on the bottom of your library.
|
||||
|
||||
@@ -5,5 +5,5 @@ HandLifeModifier:+0/+5
|
||||
R:Event$ ProduceMana | ActiveZones$ Command | ValidCard$ Land.Basic+YouCtrl | ManaReplacement$ ProduceAny | Description$ If a basic land you control is tapped for mana, it produces mana of a color of your choice instead of any other type.
|
||||
SVar:ProduceAny:Colorless->Any & B->Any & R->Any & G->Any & W->Any & U->Any
|
||||
SVar:RemAIDeck:True
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Mirri.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Mirri.full.jpg
|
||||
Oracle:Hand +0, life +5\nIf a basic land you control is tapped for mana, it produces mana of a color of your choice instead of any other type.
|
||||
|
||||
@@ -5,5 +5,5 @@ HandLifeModifier:-2/-3
|
||||
S:Mode$ Continuous | EffectZone$ Command | AffectedZone$ Battlefield | Affected$ Creature.YouCtrl | AddAbility$ MirriPump | AddSVar$ MirriPutCounter | Description$ Creatures you control have "{T}: Another target creature gets -1/-1 until end of turn. Put a +1/+1 counter on this creature."
|
||||
SVar:MirriPump:AB$ Pump | Cost$ T | ValidTgts$ Creature.Other | NumAtt$ -1 | NumDef$ -1 | SubAbility$ MirriPutCounter | SpellDescription$ Another target creature gets -1/-1 until end of turn. Put a +1/+1 counter on this creature.
|
||||
SVar:MirriPutCounter:DB$ PutCounter | Defined$ Self | CounterType$ P1P1 | CounterNum$ 1
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Mirri the Cursed Avatar.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Mirri the Cursed Avatar.full.jpg
|
||||
Oracle:Hand -2, life -3\nCreatures you control have "{T}: Another target creature gets -1/-1 until end of turn. Put a +1/+1 counter on this creature."
|
||||
|
||||
@@ -6,5 +6,5 @@ A:AB$ ChooseType | ActivationZone$ Command | Cost$ X | Defined$ You | Type$ Crea
|
||||
SVar:DBAnimate:DB$ AnimateAll | Power$ X | Toughness$ X | References$ X | Types$ AllCreatureTypes | ValidCards$ Creature.YouCtrl+ChosenType
|
||||
SVar:X:Count$xPaid
|
||||
SVar:RemAIDeck:True
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Mirror Entity Avatar.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Mirror Entity Avatar.full.jpg
|
||||
Oracle:Hand +1, life -2\n{X}: Choose a creature type. Until end of turn, creatures you control of the chosen type become X/X and gain all creature types.
|
||||
|
||||
@@ -5,5 +5,5 @@ HandLifeModifier:+0/-3
|
||||
R:Event$ DamageDone | ActiveZones$ Command | ValidSource$ Creature.YouCtrl | ReplaceWith$ DmgTwice | Description$ If a creature you control would deal damage, it deals double that damage instead.
|
||||
SVar:DmgTwice:DB$ ReplaceEffect | VarName$ DamageAmount | VarValue$ X | References$ X
|
||||
SVar:X:ReplaceCount$DamageAmount/Twice
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Mishra.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Mishra.full.jpg
|
||||
Oracle:Hand +0, life -3\nIf a creature you control would deal damage, it deals double that damage instead.
|
||||
|
||||
@@ -5,5 +5,5 @@ HandLifeModifier:+0/+4
|
||||
A:AB$ NameCard | Cost$ X Discard<1/Card> | AILogic$ MomirAvatar | ActivationZone$ Command | AtRandom$ True | ValidCards$ Creature | ValidAttribute$ cmcEQX | References$ X | Amount$ 1 | SubAbility$ DBToken | SorcerySpeed$ True | ActivationLimit$ 1 | AILogic$ MomirAvatar | SpellDescription$ Put a token onto the battlefield that's a copy of a creature card with converted mana cost X chosen at random. Activate this ability only any time you could cast a sorcery and only once each turn. | StackDescription$ SpellDescription
|
||||
SVar:DBToken:DB$ CopyPermanent | ValidSupportedCopy$ Card | DefinedName$ NamedCard | NumCopies$ 1 | StackDescription$
|
||||
SVar:X:Count$xPaid
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Momir Vig, Simic Visionary Avatar.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Momir Vig, Simic Visionary Avatar.full.jpg
|
||||
Oracle:Hand +0, life +4\n{X}, Discard a card: Put a token onto the battlefield that's a copy of a creature card with converted mana cost X chosen at random. Activate this ability only any time you could cast a sorcery and only once each turn.
|
||||
|
||||
@@ -7,5 +7,5 @@ SVar:TrigLoseLife:AB$ LoseLife | Cost$ 0 | Defined$ You | LifeAmount$ Ouch
|
||||
SVar:Ouch:Count$Valid Permanent.YouCtrl
|
||||
SVar:RemAIDeck:True
|
||||
SVar:RemRandomDeck:True
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Morinfen Avatar.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Morinfen Avatar.full.jpg
|
||||
Oracle:Hand +0, life +30\nAt the beginning of your upkeep, you lose 1 life for each permanent you control.
|
||||
|
||||
@@ -4,5 +4,5 @@ Types:Scheme
|
||||
T:Mode$ SetInMotion | ValidCard$ Card.Self | Execute$ ShowTheWeakness | TriggerZones$ Command | TriggerDescription$ When you set this scheme in motion, each opponent's life total becomes the lowest life total among your opponents.
|
||||
SVar:ShowTheWeakness:AB$ SetLife | Cost$ 0 | Defined$ Player.Opponent | LifeAmount$ X | References$ X
|
||||
SVar:X:PlayerCountOpponents$LowestLifeTotal
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/ARC/Mortal Flesh Is Weak.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/ARC/Mortal Flesh Is Weak.full.jpg
|
||||
Oracle:When you set this scheme in motion, each opponent's life total becomes the lowest life total among your opponents.
|
||||
|
||||
@@ -4,5 +4,5 @@ Types:Vanguard
|
||||
HandLifeModifier:-3/-2
|
||||
S:Mode$ Continuous | EffectZone$ Command | Affected$ Creature.YouCtrl | AddPower$ X | References$ X | Description$ Creatures you control get +X/+0, where X is the number of cards in your hand.
|
||||
SVar:X:Count$CardsInYourHand
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Multani.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Multani.full.jpg
|
||||
Oracle:Hand -3, life -2\nCreatures you control get +X/+0, where X is the number of cards in your hand.
|
||||
|
||||
@@ -5,5 +5,5 @@ HandLifeModifier:+0/-2
|
||||
T:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | ValidCard$ Creature.YouCtrl+HasCounters | TriggerZones$ Command | Execute$ TrigDamage | TriggerDescription$ Whenever a creature enters the battlefield under your control with a counter on it, you may have it deal damage equal to its power to target creature or player.
|
||||
SVar:TrigDamage:AB$ DealDamage | Cost$ 0 | ValidTgts$ Creature,Player | TgtPrompt$ Select target creature or player | DamageSource$ TriggeredCard | NumDmg$ Damage | References$ Damage
|
||||
SVar:Damage:TriggeredCard$CardPower
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Murderous Redcap Avatar.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Murderous Redcap Avatar.full.jpg
|
||||
Oracle:Hand +0, life -2\nWhenever a creature enters the battlefield under your control with a counter on it, you may have it deal damage equal to its power to target creature or player.
|
||||
|
||||
@@ -3,5 +3,5 @@ ManaCost:no cost
|
||||
Types:Scheme
|
||||
T:Mode$ SetInMotion | ValidCard$ Card.Self | Execute$ TrigControl | TriggerZones$ Command | TriggerDescription$ When you set this scheme in motion, gain control of all nonland permanents your opponents control until end of turn. Untap those permanents. They gain haste until the end of turn. Each of them attacks its owner this turn if able.
|
||||
SVar:TrigControl:AB$ GainControl | Cost$ 0 | AllValid$ Permanent.OppCtrl+nonLand | Untap$ True | AddKWs$ Haste & HIDDEN CARDNAME attacks specific player each combat if able:CardOwner | LoseControl$ EOT
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/ARC/My Crushing Masterstroke.full.jpg
|
||||
Oracle:When you set this scheme in motion, gain control of all nonland permanents your opponents control until end of turn. Untap those permanents. They gain haste until the end of turn. Each of them attacks its owner this turn if able.
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/ARC/My Crushing Masterstroke.full.jpg
|
||||
Oracle:When you set this scheme in motion, gain control of all nonland permanents your opponents control until end of turn. Untap those permanents. They gain haste until the end of turn. Each of them attacks its owner this turn if able.
|
||||
|
||||
@@ -5,5 +5,5 @@ T:Mode$ SetInMotion | ValidCard$ Card.Self | Execute$ GeniusLife | TriggerZones$
|
||||
SVar:GeniusLife:AB$ GainLife | Cost$ X | Defined$ You | LifeAmount$ X | SubAbility$ GeniusCards
|
||||
SVar:GeniusCards:DB$ Draw | Defined$ You | NumCards$ X
|
||||
SVar:X:Count$xPaid
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/ARC/My Genius Knows No Bounds.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/ARC/My Genius Knows No Bounds.full.jpg
|
||||
Oracle:When you set this scheme in motion, you may pay {X}. If you do, you gain X life and draw X cards.
|
||||
|
||||
@@ -5,5 +5,5 @@ T:Mode$ Phase | Phase$ End of Turn | ValidPlayer$ You | TriggerZones$ Command |
|
||||
SVar:TrigNecromancy:AB$ ChangeZone | Cost$ 0 | ValidTgts$ Creature.OppCtrl | Origin$ Graveyard | Destination$ Battlefield | GainControl$ True | RememberChanged$ True
|
||||
T:Mode$ ChangesZone | ValidCard$ Creature.IsRemembered | Origin$ Battlefield | Destination$ Graveyard | Execute$ TrigAbandon | TriggerZones$ Command | TriggerDescription$ When a creature put onto the battlefield with this scheme dies, abandon this scheme.
|
||||
SVar:TrigAbandon:AB$ Abandon | Cost$ 0
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/ARC/My Undead Horde Awakens.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/ARC/My Undead Horde Awakens.full.jpg
|
||||
Oracle:(An ongoing scheme remains face up until it's abandoned.)\nAt the beginning of your end step, you may put target creature card from an opponent's graveyard onto the battlefield under your control.\nWhen a creature put onto the battlefield with this scheme dies, abandon this scheme.
|
||||
|
||||
@@ -5,5 +5,5 @@ T:Mode$ SetInMotion | ValidCard$ Card.Self | Execute$ MyWish | TriggerZones$ Com
|
||||
SVar:MyWish:AB$ RevealHand | Cost$ 0 | Defined$ Player.Opponent | RememberRevealed$ True | SubAbility$ MyPleasure
|
||||
SVar:MyPleasure:DB$ Play | Valid$ Card.nonCreature+nonLand+IsRemembered | WithoutManaCost$ True | Optional$ True | SubAbility$ DBCleanup
|
||||
SVar:DBCleanup:DB$ Cleanup | ClearRemembered$ True
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/ARC/My Wish Is Your Command.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/ARC/My Wish Is Your Command.full.jpg
|
||||
Oracle:When you set this scheme in motion, each opponent reveals his or her hand. You may choose a noncreature, nonland card revealed this way and cast it without paying its mana cost.
|
||||
|
||||
@@ -16,5 +16,5 @@ SVar:BounceLand:DB$ ChangeZone | Defined$ ChosenCard | Origin$ Battlefield | Des
|
||||
SVar:DBRemember4:DB$ Pump | RememberObjects$ ImprintedOwner | SubAbility$ DBShuffle
|
||||
SVar:DBShuffle:DB$ Shuffle | Defined$ Remembered | SubAbility$ DBCleanup
|
||||
SVar:DBCleanup:DB$ Cleanup | ClearRemembered$ True | ClearImprinted$ True
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/ARC/Nature Demands an Offering.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/ARC/Nature Demands an Offering.full.jpg
|
||||
Oracle:When you set this scheme in motion, target opponent chooses a creature you don't control and puts it on top of its owner's library, then repeats this process for an artifact, an enchantment, and a land. Then the owner of each permanent chosen this way shuffles his or her library.
|
||||
|
||||
@@ -7,5 +7,5 @@ T:Mode$ AttackersDeclared | Execute$ DelTrigEOC | CheckSVar$ NatureShields | SVa
|
||||
SVar:DelTrigEOC:DB$ DelayedTrigger | Mode$ Phase | Phase$ EndCombat | ValidPlayer$ Player | Execute$ Abandon | TriggerDescription$ Abandon this scheme at end of combat.
|
||||
SVar:Abandon:DB$ Abandon
|
||||
SVar:NatureShields:Count$Valid Creature.attackingYou
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/ARC/Nature Shields Its Own.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/ARC/Nature Shields Its Own.full.jpg
|
||||
Oracle:(An ongoing scheme remains face up until it's abandoned.)\nWhenever a creature attacks and isn't blocked, if you're the defending player, put a 0/1 green Plant creature token onto the battlefield blocking that creature.\nWhen four or more creatures attack you, abandon this scheme at end of combat.
|
||||
|
||||
@@ -9,6 +9,6 @@ SVar:TrigDraw:DB$Draw | Defined$ You | NumCards$ X | SubAbility$ DBLoseLife | Re
|
||||
SVar:DBLoseLife:DB$LoseLife | Defined$ You | LifeAmount$ X | References$ X
|
||||
SVar:X:Count$CardCounters.DEATH
|
||||
SVar:Turns:Count$TotalTurns
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Necropotence Avatar.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Necropotence Avatar.full.jpg
|
||||
SVar:RemAIDeck:True
|
||||
Oracle:Hand +0, life +4\nSkip your draw step.\nAt the beginning of your end step, if it's not the first turn of the game, put a death counter on Necropotence Avatar. You draw X cards and you lose X life, where X is the number of death counters on Necropotence Avatar.
|
||||
|
||||
@@ -4,5 +4,5 @@ Types:Vanguard
|
||||
HandLifeModifier:-1/-4
|
||||
S:Mode$ ReduceCost | EffectZone$ Command | ValidCard$ Creature | Type$ Spell | Activator$ You | Amount$ 1 | Color$ B | Description$ Creature spells you cast cost {B} less to cast. This effect reduces only the amount of colored mana you pay.
|
||||
SVar:RemRandomDeck:True
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Nekrataal Avatar.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Nekrataal Avatar.full.jpg
|
||||
Oracle:Hand -1, life -4\nCreature spells you cast cost {B} less to cast. This effect reduces only the amount of colored mana you pay.
|
||||
|
||||
@@ -6,5 +6,5 @@ S:Mode$ PreventDamage | EffectZone$ Command | Target$ You | Source$ Card.OppCtrl
|
||||
T:Mode$ Phase | Phase$ End of Turn | CheckSVar$ X | SVarCompare$ GE5 | TriggerZones$ Command | Execute$ Abandon | TriggerDescription$ At the beginning of each end step, if you've been dealt 5 or more damage this turn, abandon this scheme.
|
||||
SVar:Abandon:AB$ Abandon | Cost$ 0
|
||||
SVar:X:Count$YourDamageThisTurn
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/ARC/Nothing Can Stop Me Now.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/ARC/Nothing Can Stop Me Now.full.jpg
|
||||
Oracle:(An ongoing scheme remains face up until it's abandoned.)\nIf a source an opponent controls would deal damage to you, prevent 1 of that damage.\nAt the beginning of each end step, if you've been dealt 5 or more damage this turn, abandon this scheme.
|
||||
|
||||
@@ -5,5 +5,5 @@ HandLifeModifier:+0/-2
|
||||
S:Mode$ Continuous | EffectZone$ Command | AffectedZone$ Battlefield | Affected$ Creature.YouCtrl | AddKeyword$ Haste | Description$ Creatures you control have haste.
|
||||
T:Mode$ Phase | Phase$ Upkeep | ValidPlayer$ You | IsPresent$ Creature | PresentZone$ Battlefield | PresentPlayer$ You | Execute$ TrigBounce | TriggerZones$ Command | TriggerDescription$ At the beginning of your upkeep, return a creature you control to its owner's hand.
|
||||
SVar:TrigBounce:AB$ ChangeZone | Cost$ 0 | Origin$ Battlefield | Destination$ Hand | Mandatory$ True | Hidden$ True | ChangeType$ Creature.YouCtrl
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/VAN/Oni of Wild Places Avatar.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/VAN/Oni of Wild Places Avatar.full.jpg
|
||||
Oracle:Hand +0, life -2\nCreatures you control have haste.\nAt the beginning of your upkeep, return a creature you control to its owner's hand.
|
||||
|
||||
@@ -7,5 +7,5 @@ SVar:DBRepeat:DB$ RepeatEach | RepeatPlayers$ Player.Opponent | RepeatSubAbility
|
||||
SVar:DBDiscard:DB$ Discard | Defined$ Player.IsRemembered | Mode$ TgtChoose | NumCards$ 2 | ConditionCheckSVar$ X | ConditionSVarCompare$ EQ0 | References$ X
|
||||
SVar:DBCleanup:DB$ Cleanup | ClearRemembered$ True
|
||||
SVar:X:Remembered$Valid Card.RememberedPlayerCtrl
|
||||
SVar:Picture:http://downloads.cardforge.link/images/cards/ARC/Only Blood Ends Your Nightmares.full.jpg
|
||||
SVar:Picture:https://downloads.cardforge.org/images/cards/ARC/Only Blood Ends Your Nightmares.full.jpg
|
||||
Oracle:When you set this scheme in motion, each opponent sacrifices a creature. Then each opponent who didn't sacrifice a creature discards two cards.
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user