diff --git a/res/all-decks2 b/res/all-decks2 index 1afb80e468c..e3897864798 100644 Binary files a/res/all-decks2 and b/res/all-decks2 differ diff --git a/res/card-pictures.txt b/res/card-pictures.txt index 50044e57fea..e6d38c6eb98 100644 --- a/res/card-pictures.txt +++ b/res/card-pictures.txt @@ -18,6 +18,12 @@ forest.jpg http://resources.wizards.com/magic/cards/unh/en-us/card73946.jpg forest1.jpg http://gatherer.wizards.com/handlers/image.ashx?type=card&multiverseid=2748 forest2.jpg http://gatherer.wizards.com/handlers/image.ashx?type=card&multiverseid=587 forest3.jpg http://gatherer.wizards.com/handlers/image.ashx?type=card&multiverseid=586 +boreal_griffin.jpg http://www.wizards.com/global/images/magic/general/boreal_griffin.jpg +frost_raptor.jpg http://www.wizards.com/global/images/magic/general/frost_raptor.jpg +goblin_rimerunner.jpg http://www.wizards.com/global/images/magic/general/goblin_rimerunner.jpg +phyrexian_snowcrusher.jpg http://www.wizards.com/global/images/magic/general/phyrexian_snowcrusher.jpg +rimebound_dead.jpg http://www.wizards.com/global/images/magic/general/rimebound_dead.jpg +phyrexian_ironfoot.jpg http://www.wizards.com/global/images/magic/general/phyrexian_ironfoot.jpg dauthi_ghoul.jpg http://www.wizards.com/global/images/magic/general/dauthi_ghoul.jpg dingus_egg.jpg http://www.wizards.com/global/images/magic/general/dingus_egg.jpg dingus_staff.jpg http://www.wizards.com/global/images/magic/general/dingus_staff.jpg diff --git a/res/cards.txt b/res/cards.txt index 5b5700f9f37..6e081580bbb 100644 --- a/res/cards.txt +++ b/res/cards.txt @@ -1,3 +1,50 @@ +Boreal Griffin +3 W W +Snow Creature Griffin +no text +3/2 +Flying +KPump S:First Strike + +Frost Raptor +2 U +Snow Creature Bird +no text +2/2 +Flying +KPump S S:Shroud + +Goblin Rimerunner +2 R +Snow Creature Goblin Warrior +no text +2/2 +TgtKPump T:This creature cannot block +KPump S:Haste + +Phyrexian Snowcrusher +6 +Snow Artifact Creature Juggernaut +no text +6/5 +This card attacks each turn if able. +PTPump 1 S:+1/+0 + +Rimebound Dead +B +Snow Creature Skeleton +no text +1/1 +RegenerateMe:S + +Phyrexian Ironfoot +3 +Snow Artifact Creature Construct +no text +3/4 +This card doesn't untap during your untap step. +Untap:1 S + Door to Nothingness 5 Artifact @@ -9542,7 +9589,7 @@ no text Boreal Druid G -Creature Elf Druid +Snow Creature Elf Druid no text 1/1 tap: add 1 diff --git a/src/forge/CardFactory_Creatures.java b/src/forge/CardFactory_Creatures.java index 6dcf11af95f..62ff7572882 100644 --- a/src/forge/CardFactory_Creatures.java +++ b/src/forge/CardFactory_Creatures.java @@ -15443,6 +15443,28 @@ public class CardFactory_Creatures { } //*************** END ************ END ************************** + //*************** START *********** START ************************** + if(cardName.equals("Magus of the Library")) + { + final Ability_Tap ability2 = new Ability_Tap(card) + { + private static final long serialVersionUID = 6567685794684744457L; + public boolean canPlay() + { + PlayerZone hand = AllZone.getZone(Constant.Zone.Hand, card.getController()); + return hand.getCards().length == 7 && super.canPlay(); + } + public void resolve() + { + AllZone.GameAction.drawCard(card.getController()); + } + };//SpellAbility + card.addSpellAbility(ability2); + ability2.setDescription("tap: Draw a card. Play this ability only if you have exactly 7 cards in hand."); + ability2.setStackDescription("Magus of the Library - draw a card."); + ability2.setBeforePayMana(new Input_NoCost_TapAbility(ability2)); + + }//*************** END ************ END ************************** //*************** START *********** START **************************