- Added the option "RemoveTypes" to AF Animate to remove one special type.

- Added Arcum's Weathervane.
This commit is contained in:
Sloth
2011-09-04 10:32:01 +00:00
parent 91ded360f5
commit a40670d9de
3 changed files with 14 additions and 1 deletions

1
.gitattributes vendored
View File

@@ -412,6 +412,7 @@ res/cardsfolder/a/arctic_foxes.txt svneol=native#text/plain
res/cardsfolder/a/arctic_nishoba.txt svneol=native#text/plain
res/cardsfolder/a/arctic_wolves.txt svneol=native#text/plain
res/cardsfolder/a/arcums_sleigh.txt svneol=native#text/plain
res/cardsfolder/a/arcums_weathervane.txt -text
res/cardsfolder/a/ardent_militia.txt svneol=native#text/plain
res/cardsfolder/a/ardent_plea.txt svneol=native#text/plain
res/cardsfolder/a/ardent_recruit.txt svneol=native#text/plain

View File

@@ -0,0 +1,12 @@
Name:Arcum's Weathervane
ManaCost:2
Types:Artifact
Text:no text
A:AB$ Animate | Cost$ 2 T | ValidTgts$ Land.Snow | TgtPrompt$ Select target snow land | RemoveTypes$ Snow | Permanent$ True | SpellDescription$ Target snow land is no longer snow.
A:AB$ Animate | Cost$ 2 T | ValidTgts$ Land.nonSnow | TgtPrompt$ Select target nonsnow land | Types$ Snow | Permanent$ True | SpellDescription$ Target nonsnow basic land becomes snow.
SVar:RemRandomDeck:True
SVar:Rarity:Uncommon
SVar:Picture:http://www.wizards.com/global/images/magic/general/arcums_weathervane.jpg
SetInfo:ICE|Uncommon|http://magiccards.info/scans/en/ia/285.jpg
Oracle:{2}, {T}: Target snow land is no longer snow.\n{2}, {T}: Target nonsnow basic land becomes snow.
End

View File

@@ -622,7 +622,7 @@ public class AbilityFactory_Animate {
c.addNewPT(power, toughness, timestamp);
}
if (!types.isEmpty()) {
if (!types.isEmpty() || !removeTypes.isEmpty()) {
c.addChangedCardTypes(types, removeTypes, removeSuperTypes, removeCardTypes, removeSubTypes,
removeCreatureTypes, timestamp);
}