Added Kami of the Crescent Moon.

This commit is contained in:
jendave
2011-08-06 05:06:56 +00:00
parent 04862d6406
commit 0c448495ca
3 changed files with 21 additions and 0 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_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
kami_of_the_crescent_moon.jpg http://www.wizards.com/global/images/magic/general/kami_of_the_crescent_moon.jpg
three_visits.jpg http://www.wizards.com/global/images/magic/general/three_visits.jpg
bojuka_bog.jpg http://www.wizards.com/global/images/magic/general/bojuka_bog.jpg
thran_quarry.jpg http://www.wizards.com/global/images/magic/general/thran_quarry.jpg

View File

@@ -1,3 +1,9 @@
Kami of the Crescent Moon
U U
Legndray Creature Spirit
At the beginning of each player's draw step, that player draws an additional card.
1/3
Three Visits
1 G
Sorcery

View File

@@ -124,6 +124,7 @@ public class GameActionUtil {
upkeep_Howling_Mine(); // keep this one even laster, since it would
// cause black vise to do an extra point of
// damage if black vise was in play
upkeep_Kami_Crescent_Moon();
upkeep_Font_of_Mythos();
upkeep_Teferi_Puzzle_Box();
upkeep_Overbeing_of_Myth();
@@ -8586,6 +8587,19 @@ public class GameActionUtil {
}
}// upkeep_Howling_Mine()
private static void upkeep_Kami_Crescent_Moon() {
final String player = AllZone.Phase.getActivePlayer();
CardList list = new CardList();
list.addAll(AllZone.Human_Play.getCards());
list.addAll(AllZone.Computer_Play.getCards());
list = list.getName("Kami of the Crescent Moon");
for(int i = 0; i < list.size(); i++){
AllZone.GameAction.drawCard(player);
}
}// upkeep_Kami_Crescent_Moon()
private static void upkeep_Font_of_Mythos() {
final String player = AllZone.Phase.getActivePlayer();