mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 19:58:00 +00:00
Added Sloth's snow creatures, fixed Boreal Druid, added some card-pictures, readded Magus of the Library (which disappeared, somehow).
This commit is contained in:
BIN
res/all-decks2
BIN
res/all-decks2
Binary file not shown.
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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 **************************
|
||||
|
||||
Reference in New Issue
Block a user