- 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

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();