Trumpet Blast
*Updated to triggers
	Abyssal Horror
	Abyssal Nightstalker
	Abyssal Nocturnus
This commit is contained in:
jendave
2011-08-06 15:16:39 +00:00
parent bb7dc8e759
commit c0b65cd60c
6 changed files with 16 additions and 10 deletions

1
.gitattributes vendored
View File

@@ -5444,6 +5444,7 @@ res/cardsfolder/trolls_of_tel_jilad.txt -text svneol=native#text/plain
res/cardsfolder/tromp_the_domains.txt -text svneol=native#text/plain res/cardsfolder/tromp_the_domains.txt -text svneol=native#text/plain
res/cardsfolder/tropical_island.txt -text svneol=native#text/plain res/cardsfolder/tropical_island.txt -text svneol=native#text/plain
res/cardsfolder/true_conviction.txt -text svneol=native#text/plain res/cardsfolder/true_conviction.txt -text svneol=native#text/plain
res/cardsfolder/trumpet_blast.txt -text svneol=native#text/plain
res/cardsfolder/trusty_machete.txt -text svneol=native#text/plain res/cardsfolder/trusty_machete.txt -text svneol=native#text/plain
res/cardsfolder/tsabo_tavoc.txt -text svneol=native#text/plain res/cardsfolder/tsabo_tavoc.txt -text svneol=native#text/plain
res/cardsfolder/tsunami.txt -text svneol=native#text/plain res/cardsfolder/tsunami.txt -text svneol=native#text/plain

View File

@@ -4,7 +4,8 @@ Types:Creature Horror
Text:no text Text:no text
PT:2/2 PT:2/2
K:Flying K:Flying
K:WheneverKeyword:EntersBattleField:Self:Play:DiscardCards/2:ControllingPlayer_Opponent:ASAP:No_Condition:No Special Condition:When Abyssal Horror enters the battlefield, target player discards two cards. T:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | Execute$ TrigDiscard | TriggerDescription$ When CARDNAME enters the battlefield, target player discards two cards.
SVar:TrigDiscard:AB$Discard | Cost$ 0 | Tgt$ TgtP | NumCards$ 2 | Mode$ TgtChoose
SVar:Rarity:Rare SVar:Rarity:Rare
SVar:Picture:http://www.wizards.com/global/images/magic/general/abyssal_horror.jpg SVar:Picture:http://www.wizards.com/global/images/magic/general/abyssal_horror.jpg
SetInfo:USG|Rare|http://magiccards.info/scans/en/us/115.jpg SetInfo:USG|Rare|http://magiccards.info/scans/en/us/115.jpg

View File

@@ -3,7 +3,8 @@ ManaCost:3 B
Types:Creature Nightstalker Types:Creature Nightstalker
Text:no text Text:no text
PT:2/2 PT:2/2
K:WheneverKeyword:isUnblocked:Self:Play:DiscardCards/1:ControllingPlayer_Opponent:ASAP:No_Condition:No Special Condition:Whenever Abyssal Nightstalker attacks and isn't blocked, defending player discards a card. T:Mode$ AttackerUnblocked | ValidCard$ Card.Self | TriggerZones$ Battlefield | Execute$ TrigDiscards | TriggerDescription$ Whenever CARDNAME attacks and isn't blocked, defending player discards a card.
SVar:TrigDiscards:AB$Discard | Cost$ 0 | Defined$ Opponent | NumCards$ 1
SVar:Rarity:Uncommon SVar:Rarity:Uncommon
SVar:Picture:http://serv4.tcgimages.eu/img/cards/Portal_Second_Age/abyssal_nightstalker.jpg SVar:Picture:http://serv4.tcgimages.eu/img/cards/Portal_Second_Age/abyssal_nightstalker.jpg
SetInfo:PO2|Uncommon|http://magiccards.info/scans/en/po2/1.jpg SetInfo:PO2|Uncommon|http://magiccards.info/scans/en/po2/1.jpg

View File

@@ -3,7 +3,8 @@ ManaCost:1 B B
Types:Creature Horror Types:Creature Horror
Text:no text Text:no text
PT:2/2 PT:2/2
K:WheneverKeyword:DiscardsCard:ControllingPlayer_Opponent:Play:KeywordPumpEOT/Fear!StatsPumpEOT/2/2:Self!Self:ASAP:No_Condition:No Special Condition:Whenever an opponent discards a card, Abyssal Nocturnus gets +2/+2 and gains fear until end of turn. T:Mode$ Discarded | ValidCard$ Card.YouDontCtrl | Execute$ TrigPump | TriggerDescription$ Whenever an opponent discards a card, CARDNAME gets +2/+2 and gains fear until end of turn. (It can't be blocked except by artifact creatures and/or black creatures.)
SVar:TrigPump:AB$Pump | Cost$ 0 | Defined$ Self | NumAtt$ 2 | NumDef$ 2 | KW$ Fear
SVar:Rarity:Rare SVar:Rarity:Rare
SVar:Picture:http://www.wizards.com/global/images/magic/general/abyssal_nocturnus.jpg SVar:Picture:http://www.wizards.com/global/images/magic/general/abyssal_nocturnus.jpg
SetInfo:GPT|Rare|http://magiccards.info/scans/en/gp/43.jpg SetInfo:GPT|Rare|http://magiccards.info/scans/en/gp/43.jpg

View File

@@ -0,0 +1,9 @@
Name:Trumpet Blast
ManaCost:2 R
Types:Instant
Text:no text
A:SP$PumpAll | Cost$ 2 R | ValidCards$ Creature.attacking+YouCtrl | NumAtt$ 2 | SpellDescription$ Attacking creatures get +2/+0 until end of turn
SVar:Rarity:Common
SVar:RemAIDeck:True
SVar:Picture:http://www.wizards.com/global/images/magic/general/trumpet_blast.jpg
End

View File

@@ -10,13 +10,6 @@ public class Trigger_Discarded extends Trigger {
@Override @Override
public boolean performTest(HashMap<String, Object> runParams) { public boolean performTest(HashMap<String, Object> runParams) {
if(mapParams.containsKey("ValidPlayer"))
{
if(!matchesValid(runParams.get("Player"),mapParams.get("ValidPlayer").split(","),hostCard))
{
return false;
}
}
if(mapParams.containsKey("ValidCard")) if(mapParams.containsKey("ValidCard"))
{ {
if(!matchesValid(runParams.get("Card"),mapParams.get("ValidCard").split(","),hostCard)) if(!matchesValid(runParams.get("Card"),mapParams.get("ValidCard").split(","),hostCard))