Cards that use snow mana
Post MTG Forge Related Programming Questions Here
Moderators: timmermac, Agetian, friarsol, Blacksmith, KrazyTheFox, CCGHQ Admins
12 posts
• Page 1 of 1
Cards that use snow mana
by Sloth » 29 Oct 2009, 21:35
I read in the SVN comments, that snow mana should work in the next version. So here are some cards apart from Chilling Shade to test it on:
cards.txt:
cards.txt:
- Code: Select all
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
- Code: Select all
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
-

Sloth - Programmer
- Posts: 3498
- Joined: 23 Jun 2009, 19:40
- Has thanked: 125 times
- Been thanked: 507 times
Re: Cards that use snow mana
by Marek14 » 29 Oct 2009, 22:21
Maybe Boreal Centaur would also work? How are the ability restrictions?Sloth wrote:I read in the SVN comments, that snow mana should work in the next version. So here are some cards apart from Chilling Shade to test it on:
cards.txt:card-pictures.txt:
- Code: Select all
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:SAnd don't forget to add the Snow supertype to Boreal Druid (I hope he produces snow mana then).
- Code: Select all
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
And would Phyrexian Ironfoot work as this?
Phyrexian Ironfoot
3
Snow Artifact Creature Construct
no text
This card does not untap during your untap step.
3/4
Untap:1 S
Re: Cards that use snow mana
by Sloth » 30 Oct 2009, 07:36
I think Boreal Centaur needs some additional code in cardfactory, but Phyrexian Ironfoot is (nearly) alright. Good catch Marek!Marek14 wrote:Maybe Boreal Centaur would also work? How are the ability restrictions?
And would Phyrexian Ironfoot work as this?
Phyrexian Ironfoot
3
Snow Artifact Creature Construct
no text
This card does not untap during your untap step.
3/4
Untap:1 S
I think this is the proper wording for cards.txt:
- Code: Select all
Phyrexian Ironfoot
3
Snow Artifact Creature Construct
no text
3/4
This card does not untap during your untap phase.
Untap:1 S
- Code: Select all
phyrexian_ironfoot.jpg http://www.wizards.com/global/images/magic/general/phyrexian_ironfoot.jpg
-

Sloth - Programmer
- Posts: 3498
- Joined: 23 Jun 2009, 19:40
- Has thanked: 125 times
- Been thanked: 507 times
Re: Cards that use snow mana
by Marek14 » 30 Oct 2009, 10:35
Ah, it must be worded as "phase"? But "untap phase" doesn't, technically speaking, exist since Sixth Edition - it's "untap step" these days.Sloth wrote:I think Boreal Centaur needs some additional code in cardfactory, but Phyrexian Ironfoot is (nearly) alright. Good catch Marek!Marek14 wrote:Maybe Boreal Centaur would also work? How are the ability restrictions?
And would Phyrexian Ironfoot work as this?
Phyrexian Ironfoot
3
Snow Artifact Creature Construct
no text
This card does not untap during your untap step.
3/4
Untap:1 S
I think this is the proper wording for cards.txt:And here is the entry for the pic:
- Code: Select all
Phyrexian Ironfoot
3
Snow Artifact Creature Construct
no text
3/4
This card does not untap during your untap phase.
Untap:1 S
- Code: Select all
phyrexian_ironfoot.jpg http://www.wizards.com/global/images/magic/general/phyrexian_ironfoot.jpg
Re: Cards that use snow mana
by Sloth » 30 Oct 2009, 12:43
Well, you're right. It's not the proper terminology any more, but that's how the keyword is recognized:Marek14 wrote:Ah, it must be worded as "phase"? But "untap phase" doesn't, technically speaking, exist since Sixth Edition - it's "untap step" these days.
viewtopic.php?f=26&t=701&start=105#p21847
-

Sloth - Programmer
- Posts: 3498
- Joined: 23 Jun 2009, 19:40
- Has thanked: 125 times
- Been thanked: 507 times
Re: Cards that use snow mana
by Marek14 » 30 Oct 2009, 13:29
Really, if it's a recognized keyword, I'd suggest it shouldn't attempt to look like rules text. Might be a simple one-word identifier like noUntapSloth wrote:Well, you're right. It's not the proper terminology any more, but that's how the keyword is recognized:Marek14 wrote:Ah, it must be worded as "phase"? But "untap phase" doesn't, technically speaking, exist since Sixth Edition - it's "untap step" these days.
viewtopic.php?f=26&t=701&start=105#p21847
Re: Cards that use snow mana
by Rob Cashwalker » 30 Oct 2009, 13:57
The ability per-turn limit is a hardcoded list in CardFactoryUtil.
The Force will be with you, Always.
-

Rob Cashwalker - Programmer
- Posts: 2167
- Joined: 09 Sep 2008, 15:09
- Location: New York
- Has thanked: 5 times
- Been thanked: 40 times
Re: Cards that use snow mana
by apthaven » 30 Oct 2009, 16:31
Other cards that use snow mana that might be implemented later on if not possible now for future reference.
Diamond Faerie
Gelid Shackles
Mouth of Ronom
Ohran Yeti
Rimefeather Owl
Rimescale Dragon
Scrying Sheets
Stalking Yeti
Thermopod
Zombie Musher
Diamond Faerie
Gelid Shackles
Mouth of Ronom
Ohran Yeti
Rimefeather Owl
Rimescale Dragon
Scrying Sheets
Stalking Yeti
Thermopod
Zombie Musher
"I am a man and real men do not consume pink beverages. Get thee gone woman, and bring me something brown." - Jace Wayland
Re: Cards that use snow mana
by mtgrares » 30 Oct 2009, 17:14
Personally I view all steps as phases which is technically incorrect but it doesn't seem to matter now that the mana pool empties at the end of turn instead of the old way when the mana pool emptied (and burned you) at the end of every phase (but not step).Ah, it must be worded as "phase"? But "untap phase" doesn't, technically speaking, exist since Sixth Edition - it's "untap step" these days.
- mtgrares
- DEVELOPER
- Posts: 1352
- Joined: 08 Sep 2008, 22:10
- Has thanked: 3 times
- Been thanked: 12 times
Re: Cards that use snow mana
by Rob Cashwalker » 30 Oct 2009, 17:46
Mana is still supposed to empty between phases, it just doesn't deal damage.
The Force will be with you, Always.
-

Rob Cashwalker - Programmer
- Posts: 2167
- Joined: 09 Sep 2008, 15:09
- Location: New York
- Has thanked: 5 times
- Been thanked: 40 times
Re: Cards that use snow mana
by mtgrares » 30 Oct 2009, 18:22
If I'm not looking at the comprehensive rules, I'm probably wrong. Rules are hard, ha.mtgrares wrote:Personally I view all steps as phases which is technically incorrect but it doesn't seem to matter now that the mana pool empties at the end of turn
- mtgrares
- DEVELOPER
- Posts: 1352
- Joined: 08 Sep 2008, 22:10
- Has thanked: 3 times
- Been thanked: 12 times
Re: Cards that use snow mana
by Marek14 » 30 Oct 2009, 19:37
Actually, it empties between steps now as well.Rob Cashwalker wrote:Mana is still supposed to empty between phases, it just doesn't deal damage.
12 posts
• Page 1 of 1
Who is online
Users browsing this forum: No registered users and 46 guests