mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 19:28:01 +00:00
- Added Monstrous Hound.
This commit is contained in:
1
.gitattributes
vendored
1
.gitattributes
vendored
@@ -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
|
||||
|
||||
9
res/cardsfolder/monstrous_hound.txt
Normal file
9
res/cardsfolder/monstrous_hound.txt
Normal 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
|
||||
@@ -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