mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 12:18:00 +00:00
- Converted Lava Hounds to AF Trigger.
- Fixed Sell-Sword Brute, it's DealDamage parameter key was miss-spelled.
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
@@ -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")) {
|
||||
|
||||
Reference in New Issue
Block a user