mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 04:08:01 +00:00
- Converted 4 cards with "At the beginning of your upkeep, CARDNAME deals 1 damage to you." to trigger.
This commit is contained in:
@@ -1,9 +1,11 @@
|
||||
Name:Fledgling Djinn
|
||||
ManaCost:1 B
|
||||
Types:Creature Djinn
|
||||
Text:At the beginning of your upkeep, Fledgling Djinn deals 1 damage to you.
|
||||
Text:no text
|
||||
PT:2/2
|
||||
K:Flying
|
||||
T:Mode$ Phase | Phase$ Upkeep | ValidPlayer$ You | TriggerZones$ Battlefield | Execute$ TrigDealDamage | TriggerDescription$ At the beginning of your upkeep, CARDNAME deals 1 damage to you.
|
||||
SVar:TrigDealDamage:AB$DealDamage | Cost$ 0 | Defined$ You | NumDmg$ 1
|
||||
SVar:Rarity:Common
|
||||
SVar:Picture:http://resources.wizards.com/magic/cards/wl/en-us/card4457.jpg
|
||||
SetInfo:WTH|Common|http://magiccards.info/scans/en/wl/11.jpg
|
||||
|
||||
@@ -1,8 +1,10 @@
|
||||
Name:Juzam Djinn
|
||||
ManaCost:2 B B
|
||||
Types:Creature Djinn
|
||||
Text:At the beginning of your upkeep, Juzam Djinn deals 1 damage to you.
|
||||
Text:no text
|
||||
PT:5/5
|
||||
T:Mode$ Phase | Phase$ Upkeep | ValidPlayer$ You | TriggerZones$ Battlefield | Execute$ TrigDealDamage | TriggerDescription$ At the beginning of your upkeep, CARDNAME deals 1 damage to you.
|
||||
SVar:TrigDealDamage:AB$DealDamage | Cost$ 0 | Defined$ You | NumDmg$ 1
|
||||
SVar:Rarity:Rare
|
||||
SVar:Picture:http://resources.wizards.com/magic/cards/an/en-us/card922.jpg
|
||||
SetInfo:ARN|Uncommon|http://magiccards.info/scans/en/an/9.jpg
|
||||
|
||||
@@ -1,8 +1,10 @@
|
||||
Name:Nettletooth Djinn
|
||||
ManaCost:3 G
|
||||
Types:Creature Djinn
|
||||
Text:At the beginning of your upkeep, Nettletooth Djinn deals 1 damage to you.
|
||||
Text:no text
|
||||
PT:4/4
|
||||
T:Mode$ Phase | Phase$ Upkeep | ValidPlayer$ You | TriggerZones$ Battlefield | Execute$ TrigDealDamage | TriggerDescription$ At the beginning of your upkeep, CARDNAME deals 1 damage to you.
|
||||
SVar:TrigDealDamage:AB$DealDamage | Cost$ 0 | Defined$ You | NumDmg$ 1
|
||||
SVar:Rarity:Uncommon
|
||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/nettletooth_djinn.jpg
|
||||
SetInfo:MIR|Uncommon|http://magiccards.info/scans/en/mr/130.jpg
|
||||
|
||||
@@ -1,9 +1,11 @@
|
||||
Name:Serendib Efreet
|
||||
ManaCost:2 U
|
||||
Types:Creature Efreet
|
||||
Text:At the beginning of your upkeep, Serendib Efreet deals 1 damage to you.
|
||||
Text:no text
|
||||
PT:3/4
|
||||
K:Flying
|
||||
T:Mode$ Phase | Phase$ Upkeep | ValidPlayer$ You | TriggerZones$ Battlefield | Execute$ TrigDealDamage | TriggerDescription$ At the beginning of your upkeep, CARDNAME deals 1 damage to you.
|
||||
SVar:TrigDealDamage:AB$DealDamage | Cost$ 0 | Defined$ You | NumDmg$ 1
|
||||
SVar:Rarity:Rare
|
||||
SVar:Picture:http://resources.wizards.com/magic/cards/an/en-us/card939.jpg
|
||||
SetInfo:3ED|Rare|http://magiccards.info/scans/en/rv/79.jpg
|
||||
|
||||
@@ -93,9 +93,9 @@ public class GameActionUtil {
|
||||
|
||||
upkeep_Oversold_Cemetery();
|
||||
upkeep_Nether_Spirit();
|
||||
upkeep_Nettletooth_Djinn();
|
||||
upkeep_Fledgling_Djinn();
|
||||
upkeep_Juzam_Djinn();
|
||||
//upkeep_Nettletooth_Djinn();
|
||||
//upkeep_Fledgling_Djinn();
|
||||
//upkeep_Juzam_Djinn();
|
||||
upkeep_Grinning_Demon();
|
||||
upkeep_Moroii();
|
||||
upkeep_Vampire_Lacerator();
|
||||
@@ -8930,6 +8930,7 @@ public class GameActionUtil {
|
||||
}// for
|
||||
}// upkeep_Dragon_Broodmother()
|
||||
|
||||
/*
|
||||
private static void upkeep_Serendib_Efreet() {
|
||||
final Player player = AllZone.Phase.getPlayerTurn();
|
||||
PlayerZone playZone = AllZone.getZone(Constant.Zone.Battlefield, player);
|
||||
@@ -8979,6 +8980,7 @@ public class GameActionUtil {
|
||||
AllZone.Stack.add(ability);
|
||||
}// for
|
||||
}// upkeep_Nettletooth_Djinn()
|
||||
*/
|
||||
|
||||
private static void draw_Howling_Mine(Player player) {
|
||||
CardList list = AllZoneUtil.getCardsInPlay("Howling Mine");
|
||||
@@ -9523,6 +9525,7 @@ 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");
|
||||
@@ -9569,6 +9572,7 @@ public class GameActionUtil {
|
||||
AllZone.Stack.add(ability);
|
||||
}// for
|
||||
}// upkeep_Fledgling_Djinn()
|
||||
*/
|
||||
|
||||
private static void upkeep_Creakwood_Liege() {
|
||||
final Player player = AllZone.Phase.getPlayerTurn();
|
||||
|
||||
Reference in New Issue
Block a user