- Converted Lava Hounds to AF Trigger.

- Fixed Sell-Sword Brute, it's DealDamage parameter key was miss-spelled.
This commit is contained in:
jendave
2011-08-06 17:48:48 +00:00
parent 400a27c818
commit ad9ad63488
4 changed files with 7 additions and 3 deletions

View File

@@ -1,9 +1,11 @@
Name:Lava Hounds
ManaCost:2 R R
Types:Creature Hound
Text:When CARDNAME enters the battlefield, it deals 4 damage to you.
Text:no text
PT:4/4
K:Haste
T:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | ValidCard$ Card.Self | Execute$ TrigDealDamage | TriggerDescription$ When CARDNAME enters the battlefield, it deals 4 damage to you.
SVar:TrigDealDamage:AB$DealDamage | Cost$ 0 | Defined$ You | NumDmg$ 4
SVar:Rarity:Rare
SVar:Picture:http://www.wizards.com/global/images/magic/general/lava_hounds.jpg
SetInfo:8ED|Rare|http://magiccards.info/scans/en/8e/198.jpg

View File

@@ -4,7 +4,7 @@ Types:Creature Human Mercenary
Text:no text
PT:2/2
T:Mode$ ChangesZone | Origin$ Battlefield | Destination$ Graveyard | ValidCard$ Card.Self | Execute$ TrigDealDamage | TriggerDescription$ When CARDNAME is put into a graveyard from the battlefield, it deals 2 damage to you.
SVar:TrigDealDamage:AB$DealDamage | Cost$ 0 | Defined$ You | DmgAmount$ 2
SVar:TrigDealDamage:AB$DealDamage | Cost$ 0 | Defined$ You | NumDmg$ 2
SVar:Rarity:Common
SVar:Picture:http://www.wizards.com/global/images/magic/general/sell_sword_brute.jpg
SetInfo:RAV|Common|http://magiccards.info/scans/en/rav/142.jpg

View File

@@ -16,6 +16,7 @@ import javax.swing.JOptionPane;
import forge.DeckIO;
import forge.NewDeckIO;
import forge.OldDeckIO;
import forge.properties.ForgeProps;
import forge.properties.NewConstants;

View File

@@ -499,6 +499,7 @@ public class CardFactory_Creatures {
}//*************** END ************ END **************************
*/
/* Converteded to AF Trigger
//*************** START *********** START **************************
else if(cardName.equals("Lava Hounds")) {
final SpellAbility ability = new Ability(card, "0") {
@@ -521,7 +522,7 @@ public class CardFactory_Creatures {
};
card.addComesIntoPlayCommand(intoPlay);
}//*************** END ************ END **************************
*/
//*************** START *********** START **************************
else if(cardName.equals("Thunder Dragon")) {