Erwan
- remove dead code
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -90,17 +90,7 @@ toughness=3
|
||||
text=Flying Morph {3}{W} (You may cast this face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.) When Aven Liberator is turned face up, target creature you control gains protection from the color of your choice until end of turn.
|
||||
rarity=C
|
||||
[/card]
|
||||
[card]
|
||||
id=42024
|
||||
name=Bladewing the Risen
|
||||
mana={3}{B}{B}{R}{R}
|
||||
type=Legendary Creature
|
||||
subtype=Zombie Dragon
|
||||
power=4
|
||||
toughness=4
|
||||
text=Flying When Bladewing the Risen enters the battlefield, you may return target Dragon permanent card from your graveyard to the battlefield. {B}{R}: Dragon creatures get +1/+1 until end of turn.
|
||||
rarity=R
|
||||
[/card]
|
||||
|
||||
[card]
|
||||
id=47224
|
||||
name=Bladewing's Thrall
|
||||
|
||||
@@ -2287,51 +2287,6 @@ class AAladdinsLamp: public TargetAbility{
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
//Ankh of Mishra
|
||||
class AAnkhOfMishra: public ListMaintainerAbility{
|
||||
public:
|
||||
int init;
|
||||
AAnkhOfMishra(int id, MTGCardInstance * _source):ListMaintainerAbility(id, _source){
|
||||
init = 0;
|
||||
}
|
||||
|
||||
void Update(float dt){
|
||||
ListMaintainerAbility::Update(dt);
|
||||
init = 1;
|
||||
}
|
||||
|
||||
int canBeInList(MTGCardInstance * card){
|
||||
if (card->hasType(Subtypes::TYPE_LAND) && game->isInPlay(card)) return 1;
|
||||
return 0;
|
||||
}
|
||||
|
||||
int added(MTGCardInstance * card){
|
||||
if (!init) return 0;
|
||||
game->mLayers->stackLayer()->addDamage(source,card->controller(), 2);
|
||||
return 1;
|
||||
}
|
||||
|
||||
int removed(MTGCardInstance * card){
|
||||
return 1;
|
||||
}
|
||||
|
||||
virtual ostream& toString(ostream& out) const
|
||||
{
|
||||
out << "AAnkhOfMishra ::: init : " << init
|
||||
<< " (";
|
||||
return ListMaintainerAbility::toString(out) << ")";
|
||||
}
|
||||
AAnkhOfMishra * clone() const{
|
||||
AAnkhOfMishra * a = NEW AAnkhOfMishra(*this);
|
||||
a->isClone = 1;
|
||||
return a;
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
|
||||
// Armageddon Clock
|
||||
class AArmageddonClock:public MTGAbility{
|
||||
public:
|
||||
@@ -2594,39 +2549,6 @@ class ACreatureBond:public MTGAbility{
|
||||
}
|
||||
};
|
||||
|
||||
//1105: Dingus Egg
|
||||
class ADingusEgg: public ListMaintainerAbility{
|
||||
public:
|
||||
ADingusEgg(int id, MTGCardInstance * _source):ListMaintainerAbility(id, _source){
|
||||
}
|
||||
|
||||
int canBeInList(MTGCardInstance * card){
|
||||
if (card->hasType(Subtypes::TYPE_LAND) && game->isInPlay(card)) return 1;
|
||||
return 0;
|
||||
}
|
||||
|
||||
int added(MTGCardInstance * card){
|
||||
return 1;
|
||||
}
|
||||
|
||||
int removed(MTGCardInstance * card){
|
||||
game->mLayers->stackLayer()->addDamage(source,card->controller(), 2);
|
||||
return 1;
|
||||
}
|
||||
|
||||
virtual ostream& toString(ostream& out) const
|
||||
{
|
||||
out << "ADingusEgg ::: (";
|
||||
return ListMaintainerAbility::toString(out) << ")";
|
||||
}
|
||||
ADingusEgg * clone() const{
|
||||
ADingusEgg * a = NEW ADingusEgg(*this);
|
||||
a->isClone = 1;
|
||||
return a;
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
|
||||
//1106 DisruptingScepter
|
||||
class ADisruptingScepter:public TargetAbility{
|
||||
|
||||
Reference in New Issue
Block a user