From 6b250e062ee47b8adaa847144969989cf1de933d Mon Sep 17 00:00:00 2001 From: jendave Date: Sat, 6 Aug 2011 03:17:55 +0000 Subject: [PATCH] - Added note to incarnations that they will slow down your computer when an Incarnation is placed in a graveyard. - Added Incarnations for removal from GenerateConstructedDeck.java and GenerateConstructedMultiColorDeck.java. --- res/cards.txt | 8 ++++---- res/main.properties | 2 +- src/forge/GenerateConstructedDeck.java | 7 +++++++ src/forge/GenerateConstructedMultiColorDeck.java | 8 ++++++++ 4 files changed, 20 insertions(+), 5 deletions(-) diff --git a/res/cards.txt b/res/cards.txt index 10cb5282c17..0ec70db5545 100644 --- a/res/cards.txt +++ b/res/cards.txt @@ -6753,7 +6753,7 @@ When this card is put into a graveyard from anywhere, reveal this card and shuff Brawn 3 G Creature Incarnation -As long as Brawn is in your graveyard and you control a Forest, creatures you control have trample. +As long as Brawn is in your graveyard and you control a Forest, creatures you control have trample. (NOTE: Your computer will slow down when an Incarnation is placed in a graveyard.) 3/3 Trample @@ -15064,21 +15064,21 @@ All creatures you control get +0/+1. Valor 3 W Creature Incarnation -As long as Valor is in your graveyard and you control a Plains, creatures you control have First Strike. +As long as Valor is in your graveyard and you control a Plains, creatures you control have First Strike. (NOTE: Your computer will slow down when an Incarnation is placed in a graveyard.) 2/2 First Strike Anger 3 R Creature Incarnation -As long as Anger is in your graveyard and you control a Mountain, creatures you control have Haste. +As long as Anger is in your graveyard and you control a Mountain, creatures you control have Haste. (NOTE: Your computer will slow down when an Incarnation is placed in a graveyard.) 2/2 Haste Wonder 3 U Creature Incarnation -As long as Wonder is in your graveyard and you control an Island, creatures you control have Flying. +As long as Wonder is in your graveyard and you control an Island, creatures you control have Flying. (NOTE: Your computer will slow down when an Incarnation is placed in a graveyard.) 2/2 Flying diff --git a/res/main.properties b/res/main.properties index b80a83cadda..d7fcff15814 100644 --- a/res/main.properties +++ b/res/main.properties @@ -1,6 +1,6 @@ program/mail=mtgerror@yahoo.com program/forum=http://www.slightlymagic.net/forum/viewforum.php?f=26 -program/version=Forge -- official beta: 10/01/17, SVN revision: 314 +program/version=Forge -- official beta: 10/01/17, SVN revision: 315 tokens--file=AllTokens.txt diff --git a/src/forge/GenerateConstructedDeck.java b/src/forge/GenerateConstructedDeck.java index 7a8f608910f..862ea70698e 100644 --- a/src/forge/GenerateConstructedDeck.java +++ b/src/forge/GenerateConstructedDeck.java @@ -149,6 +149,13 @@ public class GenerateConstructedDeck remove.add("Blinding Light"); remove.add("Hymn to Tourach"); + //cards that slow the computer down + + remove.add("Anger"); + remove.add("Brawn"); + remove.add("Valor"); + remove.add("Wonder"); + //not fully implemented: remove.add("Aether Membrane"); diff --git a/src/forge/GenerateConstructedMultiColorDeck.java b/src/forge/GenerateConstructedMultiColorDeck.java index a1137d2f576..5a2701dad00 100644 --- a/src/forge/GenerateConstructedMultiColorDeck.java +++ b/src/forge/GenerateConstructedMultiColorDeck.java @@ -372,6 +372,13 @@ public class GenerateConstructedMultiColorDeck remove.add("Blinding Light"); remove.add("Hymn to Tourach"); + //cards that slow the computer down + + remove.add("Anger"); + remove.add("Brawn"); + remove.add("Valor"); + remove.add("Wonder"); + //not fully implemented: remove.add("Aether Membrane"); @@ -407,6 +414,7 @@ public class GenerateConstructedMultiColorDeck //cards the AI cannot play (effectively): remove.add("Necropotence"); + remove.add("Yawgmoth's Bargain"); remove.add("Sensei's Divining Top"); remove.add("Standstill"); //remove.add("Counterspell");