diff --git a/res/card-pictures.txt b/res/card-pictures.txt index 4027e4458a2..c4f693c2604 100644 --- a/res/card-pictures.txt +++ b/res/card-pictures.txt @@ -38,6 +38,8 @@ 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_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 +veterans_reflexes.jpg http://www.wizards.com/global/images/magic/general/veterans_reflexes.jpg +windrider_eel.jpg http://www.wizards.com/global/images/magic/general/windrider_eel.jpg explore.jpg http://www.wizards.com/global/images/magic/general/explore.jpg amrou_kithkin.jpg http://www.wizards.com/global/images/magic/general/amrou_kithkin.jpg fleet_footed_monk.jpg http://serv3.tcgimages.eu/img/cards/Portal/fleet_footed_monk.jpg diff --git a/res/cards.txt b/res/cards.txt index a6357697438..e68dbede6cb 100644 --- a/res/cards.txt +++ b/res/cards.txt @@ -1,3 +1,9 @@ +Veteran's Reflexes +W +Instant +no text +spPumpTgt:+1/+1:Drawback$UntapTgt:Target creature gets +1/+1 until end of turn. Untap that creature.:Veteran's Reflexes - target gets +1/+1; untap target. + Explore 1 G Sorcery diff --git a/src/forge/CardFactory.java b/src/forge/CardFactory.java index 4dc86fa38a3..d18c0f6440c 100644 --- a/src/forge/CardFactory.java +++ b/src/forge/CardFactory.java @@ -17506,7 +17506,7 @@ public class CardFactory implements NewConstants { } //*************** END ************ END ************************** - //*************** START *********** START ************************** + //*************** START *********** START ************************** else if(cardName.equals("Riding the Dilu Horse")) { SpellAbility spell = new Spell(card) @@ -17551,6 +17551,7 @@ public class CardFactory implements NewConstants { } }//resolve() }; + spell.setDescription("Target creature gets +2/+2 and gains horsemanship. (This effect lasts indefinitely.)"); spell.setBeforePayMana(CardFactoryUtil.input_targetCreature(spell)); card.clearSpellAbility(); card.addSpellAbility(spell);