Added the LQ pic for Hagra Crocodile and fixed Buried Alive so it can only be played as a sorcery

This commit is contained in:
jendave
2011-08-06 05:08:09 +00:00
parent b4126709b0
commit 7eb1e66210
2 changed files with 2 additions and 1 deletions

View File

@@ -38,6 +38,7 @@ snow_covered_mountain.jpg http://www.wizards.com/global/images/magic/gene
snow_covered_mountain1.jpg http://www.wizards.com/global/images/magic/general/snow_covered_mountain.jpg snow_covered_mountain1.jpg http://www.wizards.com/global/images/magic/general/snow_covered_mountain.jpg
snow_covered_mountain2.jpg http://www.magickartenmarkt.de/img/cards/Ice_Age/snow_covered_mountain.jpg snow_covered_mountain2.jpg http://www.magickartenmarkt.de/img/cards/Ice_Age/snow_covered_mountain.jpg
snow_covered_mountain3.jpg http://www.magickartenmarkt.de/img/cards/Ice_Age/snow_covered_mountain.jpg snow_covered_mountain3.jpg http://www.magickartenmarkt.de/img/cards/Ice_Age/snow_covered_mountain.jpg
hagra_crocodile.jpg http://www.wizards.com/global/images/magic/general/hagra_crocodile.jpg
ancient_runes.jpg http://www.wizards.com/global/images/magic/general/ancient_runes.jpg ancient_runes.jpg http://www.wizards.com/global/images/magic/general/ancient_runes.jpg
vivid_crag.jpg http://www.wizards.com/global/images/magic/general/vivid_crag.jpg vivid_crag.jpg http://www.wizards.com/global/images/magic/general/vivid_crag.jpg
vivid_creek.jpg http://www.wizards.com/global/images/magic/general/vivid_creek.jpg vivid_creek.jpg http://www.wizards.com/global/images/magic/general/vivid_creek.jpg

View File

@@ -21744,7 +21744,7 @@ public class CardFactory implements NewConstants {
@Override @Override
public boolean canPlay() { public boolean canPlay() {
PlayerZone library = AllZone.getZone(Constant.Zone.Library, card.getController()); PlayerZone library = AllZone.getZone(Constant.Zone.Library, card.getController());
return library.getCards().length != 0; return library.getCards().length != 0 && super.canPlay();
} }
@Override @Override