- Added Monstrous Hound.

This commit is contained in:
jendave
2011-08-07 01:27:04 +00:00
parent de55099868
commit 2d8c539b09
3 changed files with 17 additions and 0 deletions

1
.gitattributes vendored
View File

@@ -4609,6 +4609,7 @@ res/cardsfolder/monss_goblin_raiders.txt -text svneol=native#text/plain
res/cardsfolder/monstrify.txt -text svneol=native#text/plain
res/cardsfolder/monstrous_carabid.txt -text svneol=native#text/plain
res/cardsfolder/monstrous_growth.txt -text svneol=native#text/plain
res/cardsfolder/monstrous_hound.txt -text svneol=native#text/plain
res/cardsfolder/moon_sprite.txt -text svneol=native#text/plain
res/cardsfolder/moonglove_changeling.txt -text svneol=native#text/plain
res/cardsfolder/moonglove_extract.txt -text svneol=native#text/plain

View File

@@ -0,0 +1,9 @@
Name:Monstrous Hound
ManaCost:3 R
Types:Creature Hound
Text:no text
PT:4/4
K:stPumpSelf:Creature:0/0/CARDNAME can't attack. & CARDNAME can't block.:OppCtrlMoreLands:CARDNAME can't attack unless you control more lands than defending player. CARDNAME can't block unless you control more lands than attacking player.
SVar:Rarity:Rare
SVar:Picture:http://www.wizards.com/global/images/magic/general/monstrous_hound.jpg
End

View File

@@ -5358,6 +5358,13 @@ public class GameActionUtil {
CardList CreaturesInPlayOpp = AllZoneUtil.getPlayerCardsInPlay(SourceCard.getController().getOpponent());
CreaturesInPlayOpp = CreaturesInPlayOpp.getType("Creature");
if (CreaturesInPlayYou.size() > CreaturesInPlayOpp.size()) return false;
}
if(SpecialConditions.contains("OppCtrlMoreLands")) {
CardList LandsInPlayYou = AllZoneUtil.getPlayerCardsInPlay(SourceCard.getController());
LandsInPlayYou = LandsInPlayYou.getType("Land");
CardList LandsInPlayOpp = AllZoneUtil.getPlayerCardsInPlay(SourceCard.getController().getOpponent());
LandsInPlayOpp = LandsInPlayOpp.getType("Land");
if (LandsInPlayYou.size() > LandsInPlayOpp.size()) return false;
}
if(SpecialConditions.contains("OppLifeLE")) {
int life = SourceCard.getController().getOpponent().getLife();