Laurent - Corrected bug following wololo instruction. + found two small bug in CFX (fixed) and POR... for thundermare i'm not sure I fixed it and that it will work correctly...

This commit is contained in:
wagic.laurent
2009-07-31 07:37:58 +00:00
parent 8366169893
commit eda36220f6
3 changed files with 5 additions and 2 deletions

View File

@@ -211,6 +211,7 @@ text=Reach (This can block creatures with flying.) As long as you control a red
auto=aslongas(*[red]|myinplay) 1/0
auto=aslongas(*[red]|myinplay) first strike
id=184990
abilities=reach
name=Ember Weaver
rarity=C
type=Creature

View File

@@ -1426,8 +1426,9 @@ mana={2}{U}
[/card]
[card]
text=Haste (This creature can attack the turn it comes under your control.) When Thundermare comes into play, tap all other creatures.
auto=tap all(creature) other
auto=tap all(creature[-Thundermare])
id=4364
abilities=haste
name=Thundermare
rarity=R
type=Creature

View File

@@ -262,7 +262,8 @@ MTGAbility * AbilityFactory::parseMagicLine(string s, int id, Spell * spell, MTG
if (card->hasType("sorcery") || card->hasType("instant")) oneShot = 1;
if (i == 3) oneShot = 1;
if (a->oneShot) oneShot = 1;
Damageable * _target = spell->getNextDamageableTarget();
Damageable * _target = NULL;
if (spell) _target = spell->getNextDamageableTarget();
if (!_target) _target = target;
switch(i){
case 0: result = NEW ALord(id, card, lordTargets, lordIncludeSelf, a); break;