mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 20:58:03 +00:00
- Converted 3 cards with "At the beginning of your upkeep, you lose 1(2) life." to trigger.
This commit is contained in:
@@ -1,9 +1,11 @@
|
||||
Name:Benthic Djinn
|
||||
ManaCost:2 U B
|
||||
Types:Creature Djinn
|
||||
Text:At the beginning of your upkeep, lose 2 life.
|
||||
K:Islandwalk
|
||||
Text:no text
|
||||
PT:5/3
|
||||
K:Islandwalk
|
||||
T:Mode$ Phase | Phase$ Upkeep | ValidPlayer$ You | TriggerZones$ Battlefield | Execute$ TrigLoseLife | TriggerDescription$ At the beginning of your upkeep, you lose 2 life.
|
||||
SVar:TrigLoseLife:AB$LoseLife | Cost$ 0 | Defined$ You | LifeAmount$ 2
|
||||
SVar:Rarity:Rare
|
||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/benthic_djinn.jpg
|
||||
SetInfo:MIR|Rare|http://magiccards.info/scans/en/mr/317.jpg
|
||||
|
||||
@@ -1,8 +1,10 @@
|
||||
Name:Grinning Demon
|
||||
ManaCost:2 B B
|
||||
Types:Creature Demon
|
||||
Text:At the beginning of your upkeep, you lose 2 life.
|
||||
Text:no text
|
||||
PT:6/6
|
||||
T:Mode$ Phase | Phase$ Upkeep | ValidPlayer$ You | TriggerZones$ Battlefield | Execute$ TrigLoseLife | TriggerDescription$ At the beginning of your upkeep, you lose 2 life.
|
||||
SVar:TrigLoseLife:AB$LoseLife | Cost$ 0 | Defined$ You | LifeAmount$ 2
|
||||
K:Morph:2 B B
|
||||
SVar:Rarity:Rare
|
||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/grinning_demon.jpg
|
||||
|
||||
@@ -1,9 +1,11 @@
|
||||
Name:Moroii
|
||||
ManaCost:2 U B
|
||||
Types:Creature Vampire
|
||||
Text:At the beginning of your upkeep, you lose 1 life.
|
||||
Text:no text
|
||||
PT:4/4
|
||||
K:Flying
|
||||
T:Mode$ Phase | Phase$ Upkeep | ValidPlayer$ You | TriggerZones$ Battlefield | Execute$ TrigLoseLife | TriggerDescription$ At the beginning of your upkeep, you lose 1 life.
|
||||
SVar:TrigLoseLife:AB$LoseLife | Cost$ 0 | Defined$ You | LifeAmount$ 1
|
||||
SVar:Rarity:Uncommon
|
||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/moroii.jpg
|
||||
SetInfo:RAV|Uncommon|http://magiccards.info/scans/en/rav/216.jpg
|
||||
|
||||
@@ -96,11 +96,11 @@ public class GameActionUtil {
|
||||
//upkeep_Nettletooth_Djinn();
|
||||
//upkeep_Fledgling_Djinn();
|
||||
//upkeep_Juzam_Djinn();
|
||||
upkeep_Grinning_Demon();
|
||||
upkeep_Moroii();
|
||||
//upkeep_Grinning_Demon();
|
||||
//upkeep_Moroii();
|
||||
upkeep_Vampire_Lacerator();
|
||||
upkeep_Seizan_Perverter_of_Truth();
|
||||
upkeep_Serendib_Efreet();
|
||||
//upkeep_Serendib_Efreet();
|
||||
upkeep_Sleeper_Agent();
|
||||
upkeep_Cursed_Land();
|
||||
upkeep_Pillory_of_the_Sleepless();
|
||||
@@ -137,7 +137,7 @@ public class GameActionUtil {
|
||||
upkeep_Suspend();
|
||||
upkeep_Vanishing();
|
||||
upkeep_Fading();
|
||||
upkeep_Benthic_Djinn();
|
||||
//upkeep_Benthic_Djinn();
|
||||
upkeep_Masticore();
|
||||
upkeep_Eldrazi_Monument();
|
||||
upkeep_Blaze_Counters();
|
||||
@@ -6216,6 +6216,7 @@ public class GameActionUtil {
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
private static void upkeep_Benthic_Djinn() {
|
||||
final Player player = AllZone.Phase.getPlayerTurn();
|
||||
PlayerZone playZone = AllZone.getZone(Constant.Zone.Battlefield, player);
|
||||
@@ -6237,7 +6238,7 @@ public class GameActionUtil {
|
||||
AllZone.Stack.add(ability);
|
||||
}// for
|
||||
}// upkeep_Benthic_Djinn()
|
||||
|
||||
*/
|
||||
|
||||
/////////////////////////
|
||||
// Start of Kinship cards
|
||||
@@ -9471,6 +9472,7 @@ public class GameActionUtil {
|
||||
player.drawCards(2);
|
||||
}// upkeep_Seizan_Perverter_of_Truth()
|
||||
|
||||
/*
|
||||
private static void upkeep_Moroii() {
|
||||
final Player player = AllZone.Phase.getPlayerTurn();
|
||||
CardList list = AllZoneUtil.getPlayerCardsInPlay(player, "Moroii");
|
||||
@@ -9479,6 +9481,7 @@ public class GameActionUtil {
|
||||
player.loseLife(1, F_card);
|
||||
}
|
||||
}// upkeep_Moroii
|
||||
*/
|
||||
|
||||
private static void upkeep_Vampire_Lacerator() {
|
||||
final Player player = AllZone.Phase.getPlayerTurn();
|
||||
@@ -9501,6 +9504,7 @@ public class GameActionUtil {
|
||||
}
|
||||
}// upkeep_Vampire_Lacerator
|
||||
|
||||
/*
|
||||
private static void upkeep_Grinning_Demon() {
|
||||
final Player player = AllZone.Phase.getPlayerTurn();
|
||||
CardList list = AllZoneUtil.getPlayerCardsInPlay(player, "Grinning Demon");
|
||||
@@ -9525,7 +9529,6 @@ public class GameActionUtil {
|
||||
}// for
|
||||
}// upkeep_Grinning_Demon()
|
||||
|
||||
/*
|
||||
private static void upkeep_Juzam_Djinn() {
|
||||
final Player player = AllZone.Phase.getPlayerTurn();
|
||||
CardList list = AllZoneUtil.getPlayerCardsInPlay(player, "Juzam Djinn");
|
||||
|
||||
Reference in New Issue
Block a user