mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 04:08:01 +00:00
1) Converted these cards from code to keyword: Fear; Flight; Launch.
2) Added these cards and their LQ pic urls: Cave Sense; Divine Transformation; Eternal Warrior. 3) Added LQ pic url for Darksteel Forge.
This commit is contained in:
@@ -38,6 +38,10 @@ snow_covered_mountain.jpg http://www.wizards.com/global/images/magic/gene
|
|||||||
snow_covered_mountain1.jpg http://www.wizards.com/global/images/magic/general/snow_covered_mountain.jpg
|
snow_covered_mountain1.jpg http://www.wizards.com/global/images/magic/general/snow_covered_mountain.jpg
|
||||||
snow_covered_mountain2.jpg http://www.magickartenmarkt.de/img/cards/Ice_Age/snow_covered_mountain.jpg
|
snow_covered_mountain2.jpg http://www.magickartenmarkt.de/img/cards/Ice_Age/snow_covered_mountain.jpg
|
||||||
snow_covered_mountain3.jpg http://www.magickartenmarkt.de/img/cards/Ice_Age/snow_covered_mountain.jpg
|
snow_covered_mountain3.jpg http://www.magickartenmarkt.de/img/cards/Ice_Age/snow_covered_mountain.jpg
|
||||||
|
cave_sense.jpg http://www.wizards.com/global/images/magic/general/cave_sense.jpg
|
||||||
|
divine_transformation.jpg http://www.wizards.com/global/images/magic/general/divine_transformation.jpg
|
||||||
|
eternal_warrior.jpg http://www.wizards.com/global/images/magic/general/eternal_warrior.jpg
|
||||||
|
darksteel_forge.jpg http://www.wizards.com/global/images/magic/general/darksteel_forge.jpg
|
||||||
agility.jpg http://www.wizards.com/global/images/magic/general/agility.jpg
|
agility.jpg http://www.wizards.com/global/images/magic/general/agility.jpg
|
||||||
alexis_cloak.jpg http://www.wizards.com/global/images/magic/general/alexis_cloak.jpg
|
alexis_cloak.jpg http://www.wizards.com/global/images/magic/general/alexis_cloak.jpg
|
||||||
burrowing.jpg http://www.wizards.com/global/images/magic/general/burrowing.jpg
|
burrowing.jpg http://www.wizards.com/global/images/magic/general/burrowing.jpg
|
||||||
|
|||||||
@@ -1,3 +1,24 @@
|
|||||||
|
Cave Sense
|
||||||
|
1 R
|
||||||
|
Enchantment Aura
|
||||||
|
Enchanted creature gets +1/+1 and has mountainwalk.
|
||||||
|
Enchant creature
|
||||||
|
enPump:+1/+1/Mountainwalk
|
||||||
|
|
||||||
|
Divine Transformation
|
||||||
|
2 W W
|
||||||
|
Enchantment Aura
|
||||||
|
Enchanted creature gets +3/+3.
|
||||||
|
Enchant creature
|
||||||
|
enPump:+3/+3
|
||||||
|
|
||||||
|
Eternal Warrior
|
||||||
|
R
|
||||||
|
Enchantment Aura
|
||||||
|
Enchanted creature has vigilance.
|
||||||
|
Enchant creature
|
||||||
|
enPump:Vigilance
|
||||||
|
|
||||||
Darksteel Forge
|
Darksteel Forge
|
||||||
9
|
9
|
||||||
Artifact
|
Artifact
|
||||||
@@ -5892,6 +5913,7 @@ B B
|
|||||||
Enchantment Aura
|
Enchantment Aura
|
||||||
Enchanted creature has fear.
|
Enchanted creature has fear.
|
||||||
Enchant creature
|
Enchant creature
|
||||||
|
enPump:Fear
|
||||||
|
|
||||||
Battle Mastery
|
Battle Mastery
|
||||||
2 W
|
2 W
|
||||||
@@ -6249,6 +6271,7 @@ U
|
|||||||
Enchantment Aura
|
Enchantment Aura
|
||||||
Enchanted creature has flying.
|
Enchanted creature has flying.
|
||||||
Enchant creature
|
Enchant creature
|
||||||
|
enPump:Flying
|
||||||
|
|
||||||
Sprout
|
Sprout
|
||||||
G
|
G
|
||||||
@@ -6286,8 +6309,9 @@ Launch
|
|||||||
1 U
|
1 U
|
||||||
Enchantment Aura
|
Enchantment Aura
|
||||||
Enchanted creature has flying.
|
Enchanted creature has flying.
|
||||||
When this card is put into a graveyard from the battlefield, return this card to its owner's hand
|
|
||||||
Enchant creature
|
Enchant creature
|
||||||
|
enPump:Flying
|
||||||
|
When this card is put into a graveyard from the battlefield, return this card to its owner's hand
|
||||||
|
|
||||||
Sleeper's Guile
|
Sleeper's Guile
|
||||||
1 B
|
1 B
|
||||||
|
|||||||
@@ -1356,6 +1356,8 @@ class CardFactory_Auras {
|
|||||||
spell.setBeforePayMana(CardFactoryUtil.input_targetCreature(spell));
|
spell.setBeforePayMana(CardFactoryUtil.input_targetCreature(spell));
|
||||||
}//*************** END ************ END **************************
|
}//*************** END ************ END **************************
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
//*************** START *********** START **************************
|
//*************** START *********** START **************************
|
||||||
else if(cardName.equals("Fear")) {
|
else if(cardName.equals("Fear")) {
|
||||||
final SpellAbility spell = new Spell(card) {
|
final SpellAbility spell = new Spell(card) {
|
||||||
@@ -1440,6 +1442,8 @@ class CardFactory_Auras {
|
|||||||
|
|
||||||
spell.setBeforePayMana(CardFactoryUtil.input_targetCreature(spell));
|
spell.setBeforePayMana(CardFactoryUtil.input_targetCreature(spell));
|
||||||
}//*************** END ************ END **************************
|
}//*************** END ************ END **************************
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
//*************** START *********** START **************************
|
//*************** START *********** START **************************
|
||||||
else if(cardName.equals("Battle Mastery")) {
|
else if(cardName.equals("Battle Mastery")) {
|
||||||
@@ -2537,6 +2541,7 @@ class CardFactory_Auras {
|
|||||||
}//*************** END ************ END **************************
|
}//*************** END ************ END **************************
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
//*************** START *********** START **************************
|
//*************** START *********** START **************************
|
||||||
else if(cardName.equals("Launch") || cardName.equals("Flight")) {
|
else if(cardName.equals("Launch") || cardName.equals("Flight")) {
|
||||||
final SpellAbility spell = new Spell(card) {
|
final SpellAbility spell = new Spell(card) {
|
||||||
@@ -2628,7 +2633,7 @@ class CardFactory_Auras {
|
|||||||
|
|
||||||
spell.setBeforePayMana(CardFactoryUtil.input_targetCreature(spell));
|
spell.setBeforePayMana(CardFactoryUtil.input_targetCreature(spell));
|
||||||
}//*************** END ************ END **************************
|
}//*************** END ************ END **************************
|
||||||
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
//*************** START *********** START **************************
|
//*************** START *********** START **************************
|
||||||
|
|||||||
Reference in New Issue
Block a user