mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 20:28:00 +00:00
- Added Monstrous Hound.
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user