mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 03:38:01 +00:00
Added Kami of the Crescent Moon.
This commit is contained in:
@@ -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
|
||||||
|
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
|
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
|
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
|
thran_quarry.jpg http://www.wizards.com/global/images/magic/general/thran_quarry.jpg
|
||||||
|
|||||||
@@ -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
|
Three Visits
|
||||||
1 G
|
1 G
|
||||||
Sorcery
|
Sorcery
|
||||||
|
|||||||
@@ -124,6 +124,7 @@ public class GameActionUtil {
|
|||||||
upkeep_Howling_Mine(); // keep this one even laster, since it would
|
upkeep_Howling_Mine(); // keep this one even laster, since it would
|
||||||
// cause black vise to do an extra point of
|
// cause black vise to do an extra point of
|
||||||
// damage if black vise was in play
|
// damage if black vise was in play
|
||||||
|
upkeep_Kami_Crescent_Moon();
|
||||||
upkeep_Font_of_Mythos();
|
upkeep_Font_of_Mythos();
|
||||||
upkeep_Teferi_Puzzle_Box();
|
upkeep_Teferi_Puzzle_Box();
|
||||||
upkeep_Overbeing_of_Myth();
|
upkeep_Overbeing_of_Myth();
|
||||||
@@ -8585,6 +8586,19 @@ public class GameActionUtil {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}// upkeep_Howling_Mine()
|
}// 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() {
|
private static void upkeep_Font_of_Mythos() {
|
||||||
final String player = AllZone.Phase.getActivePlayer();
|
final String player = AllZone.Phase.getActivePlayer();
|
||||||
|
|||||||
Reference in New Issue
Block a user