mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 19:28:01 +00:00
*Schemes: Changed Archenemy's DocID.
*Added Oracle to schemes.
This commit is contained in:
@@ -6,5 +6,6 @@ T:Mode$ SetInMotion | Execute$ DarkEffect | TriggerZones$ Command | TriggerDescr
|
||||
SVar:DarkEffect:AB$ DestroyAll | Cost$ 0 | ValidTgts$ Opponent | TgtPrompt$ Select target opponent | ValidCards$ Permanent.nonLand
|
||||
SVar:Rarity:Common
|
||||
SVar:Picture:http://gatherer.wizards.com/Handlers/Image.ashx?multiverseid=212585&type=card
|
||||
SetInfo:ARC|Common|http://magiccards.info/extras/scheme/archenemy/behold-the-power-of-destruction.jpg
|
||||
Oracle:When you set this scheme in motion, destroy all nonland permanents target opponent controls.
|
||||
End
|
||||
@@ -7,4 +7,5 @@ SVar:DarkEffect:AB$ Token | Cost$ 0 | TokenAmount$ 1 | TokenName$ Dragon | Token
|
||||
SVar:Rarity:Common
|
||||
SVar:Picture:http://gatherer.wizards.com/Handlers/Image.ashx?multiverseid=212579&type=card
|
||||
SetInfo:ARC|Common|http://magiccards.info/extras/scheme/archenemy/look-skyward-and-despair.jpg
|
||||
Oracle:When you set this scheme in motion, put a 5/5 red Dragon creature token with flying onto the battlefield.
|
||||
End
|
||||
@@ -9,4 +9,5 @@ SVar:X:Count$xPaid
|
||||
SVar:Rarity:Common
|
||||
SVar:Picture:http://gatherer.wizards.com/Handlers/Image.ashx?multiverseid=212661&type=card
|
||||
SetInfo:ARC|Common|http://magiccards.info/extras/scheme/archenemy/my-genius-knows-no-bounds.jpg
|
||||
Oracle:When you set this scheme in motion, you may pay {X}. If you do, you gain X life and draw X cards.
|
||||
End
|
||||
@@ -7,4 +7,5 @@ SVar:GetRealms:AB$ ChangeZone | Cost$ 0 | Origin$ Library | Destination$ Battlef
|
||||
SVar:Rarity:Common
|
||||
SVar:Picture:http://gatherer.wizards.com/Handlers/Image.ashx?multiverseid=212653&type=card
|
||||
SetInfo:ARC|Common|http://magiccards.info/extras/scheme/archenemy/realms-befitting-my-majesty.jpg
|
||||
Oracle:When you set this scheme in motion, search your library for up to two basic land cards, put them onto the battlefield tapped, then shuffle your library.
|
||||
End
|
||||
@@ -7,4 +7,5 @@ SVar:GetSaps:DB$ Token | Cost$ 0 | TokenAmount$ 5 | TokenName$ Saproling | Token
|
||||
SVar:Rarity:Common
|
||||
SVar:Picture:http://gatherer.wizards.com/Handlers/Image.ashx?multiverseid=212602&type=card
|
||||
SetInfo:ARC|Common|http://magiccards.info/extras/scheme/archenemy/roots-of-all-evil.jpg
|
||||
Oracle:When you set this scheme in motion, put five 1/1 green Saproling creature tokens onto the battlefield.
|
||||
End
|
||||
@@ -7,4 +7,5 @@ SVar:DarkEffect:AB$ Token | Cost$ 0 | TokenAmount$ 1 | TokenName$ Golem | TokenT
|
||||
SVar:Rarity:Common
|
||||
SVar:Picture:http://gatherer.wizards.com/Handlers/Image.ashx?multiverseid=212594&type=card
|
||||
SetInfo:ARC|Common|http://magiccards.info/extras/scheme/archenemy/the-iron-guardian-stirs.jpg
|
||||
Oracle:When you set this scheme in motion, put a 4/6 colorless Golem artifact creature token onto the battlefield.
|
||||
End
|
||||
@@ -8,4 +8,5 @@ SVar:Abandon:AB$ Abandon | Cost$ 0
|
||||
SVar:Rarity:Common
|
||||
SVar:Picture:http://gatherer.wizards.com/Handlers/Image.ashx?multiverseid=212615&type=card
|
||||
SetInfo:ARC|Common|http://magiccards.info/extras/scheme/archenemy/the-very-soil-shall-shake.jpg
|
||||
Oracle:(An ongoing scheme remains face up until it's abandoned.)\nCreatures you control get +2/+2 and have trample.\nWhen a creature you control dies, abandon this scheme.
|
||||
End
|
||||
@@ -8,4 +8,5 @@ SVar:X:Count$xPaid
|
||||
SVar:Rarity:Common
|
||||
SVar:Picture:http://gatherer.wizards.com/Handlers/Image.ashx?multiverseid=212605&type=card
|
||||
SetInfo:ARC|Common|http://magiccards.info/extras/scheme/archenemy/which-of-you-burns-brightest.jpg
|
||||
Oracle:When you set this scheme in motion, you may pay {X}. If you do, this scheme deals X damage to target opponent and each creature he or she controls.
|
||||
End
|
||||
@@ -157,7 +157,7 @@ public final class CEditorScheme extends ACEditorBase<CardPrinted, Deck> {
|
||||
@Override
|
||||
public boolean exit() {
|
||||
// Override the submenu save choice - tell it to go to "constructed".
|
||||
Singletons.getModel().getPreferences().setPref(FPref.SUBMENU_CURRENTMENU, EDocID.HOME_MULTITEST.toString());
|
||||
Singletons.getModel().getPreferences().setPref(FPref.SUBMENU_CURRENTMENU, EDocID.HOME_ARCHENEMY.toString());
|
||||
|
||||
return SEditorIO.confirmSaveChanges();
|
||||
}
|
||||
|
||||
@@ -68,7 +68,7 @@ public enum EDocID { /** */
|
||||
HOME_GAUNTLETLOAD (VSubmenuGauntletLoad.SINGLETON_INSTANCE), /** */
|
||||
HOME_GAUNTLETQUICK (VSubmenuGauntletQuick.SINGLETON_INSTANCE), /** */
|
||||
HOME_GAUNTLETCONTESTS (VSubmenuGauntletContests.SINGLETON_INSTANCE), /** */
|
||||
HOME_MULTITEST (VSubmenuArchenemy.SINGLETON_INSTANCE), /** */
|
||||
HOME_ARCHENEMY (VSubmenuArchenemy.SINGLETON_INSTANCE), /** */
|
||||
HOME_PREFERENCES (VSubmenuPreferences.SINGLETON_INSTANCE), /** */
|
||||
HOME_AVATARS (VSubmenuAvatars.SINGLETON_INSTANCE), /** */
|
||||
HOME_UTILITIES (VSubmenuDownloaders.SINGLETON_INSTANCE), /** */
|
||||
|
||||
@@ -211,7 +211,7 @@ public enum VSubmenuArchenemy implements IVSubmenu<CSubmenuArchenemy> {
|
||||
*/
|
||||
@Override
|
||||
public EDocID getItemEnum() {
|
||||
return EDocID.HOME_MULTITEST;
|
||||
return EDocID.HOME_ARCHENEMY;
|
||||
}
|
||||
|
||||
/* (non-Javadoc)
|
||||
@@ -266,7 +266,7 @@ public enum VSubmenuArchenemy implements IVSubmenu<CSubmenuArchenemy> {
|
||||
*/
|
||||
@Override
|
||||
public EDocID getDocumentID() {
|
||||
return EDocID.HOME_MULTITEST;
|
||||
return EDocID.HOME_ARCHENEMY;
|
||||
}
|
||||
|
||||
/* (non-Javadoc)
|
||||
|
||||
Reference in New Issue
Block a user