Jeck - Added "nofizzle" ability (ala Great Sable Stag), please review.

I'm fairly certain this works as intended, cards with nofizzle "can be targeted by spells that try to counter it (such as Cancel). Those spells will resolve, but the part of their effect that would counter [it] won't do anything. Any other effects those spells have will work as normal."

Still, I don't work much with card logic, so it's possible this has some kind of unintended side effect.
This commit is contained in:
wagic.jeck
2009-12-01 11:50:42 +00:00
parent 90cf95d3d4
commit 2430aa66a6
5 changed files with 24 additions and 19 deletions

View File

@@ -102,16 +102,17 @@ class Constants
DEATHTOUCH = 44,
HORSEMANSHIP = 45,
CANTREGENERATE = 46,
NOFIZZLE = 47,
NB_BASIC_ABILITIES = 47,
NB_BASIC_ABILITIES = 48,
RARITY_M = 'M',
RARITY_R = 'R',
RARITY_U = 'U',
RARITY_C = 'C',
RARITY_L = 'L',
RARITY_T = 'T', //Tokens
RARITY_M = 'M', //Mythics
RARITY_R = 'R', //Rares
RARITY_U = 'U', //Uncommons
RARITY_C = 'C', //Commons
RARITY_L = 'L', //Lands
RARITY_T = '~', //Tokens, reserved for internal logic.
//Price for singles
PRICE_1M = 3000,