Laurent - Added Threaten (10E) - Steal creature until end of turn. Return creature at end of turn to opponent and also "untap" it.. not sure if it is quite right, but does not make any difference since it is at the end of turn just before the untap phase of opponent.

Few comments: 

I spent quite some time to make it work... made some test all working but experienced some random crash in windows version (debugging did not help much) don't know if i broke something or if it is due to other SVN addition.

Some other cards are similar and could be hardcoded/aliased (Overtake - MRQ, Ray of Command - ICE,MIR, Slave of Bolas - ARB, Spinal Embrace INV, Unwilling Recruit EVE) we could discuss about them...

I think it is the last card that was missing for the red premade 10E deck. Now 10E has 255 cards and is the set with the most cards...

Grü.
L.
This commit is contained in:
wagic.laurent
2009-06-23 00:43:31 +00:00
parent be086640eb
commit 5dc98359c1
4 changed files with 53 additions and 1 deletions

View File

@@ -1885,7 +1885,7 @@ void AbilityFactory::addAbilities(int _id, Spell * spell){
MTGCardInstance * current = game->players[i]->game->inPlay->cards[j];
if (current->hasType("Artifact")){
game->players[i]->game->putInGraveyard(current);
current->controller()->life-= current->getManaCost()->getConvertedCost();
current->controller()->life+= current->getManaCost()->getConvertedCost();
}
}
}
@@ -1915,6 +1915,11 @@ void AbilityFactory::addAbilities(int _id, Spell * spell){
//-- addon 10E---
case 129767: //Threaten
{
game->addObserver( NEW AInstantControlSteal(_id,card,card->target));
break;
}
case 130542: //Flowstone Slide
{
TargetChooser * lordTargets = NULL;