ERwan
-fix issue 297 - also removed the "untapBlockers" system. The idea was nice but incorrectly implemented, and only 2 cards were using it so far.
This commit is contained in:
@@ -1405,27 +1405,6 @@ class GenericInstantAbility: public InstantAbility{
|
||||
};
|
||||
|
||||
|
||||
//Untap Blockers with simple Mana Mechanism
|
||||
class AUntapManaBlocker: public UntapBlocker{
|
||||
public:
|
||||
AUntapManaBlocker(int id, MTGCardInstance * card, ManaCost * _cost):UntapBlocker(id, card, _cost){
|
||||
}
|
||||
|
||||
AUntapManaBlocker(int id, MTGCardInstance * card, MTGCardInstance * _target, ManaCost * _cost):UntapBlocker(id, card,_target, _cost){
|
||||
}
|
||||
virtual ostream& toString(ostream& out) const
|
||||
{
|
||||
out << "AUntapManaBlocker ::: (";
|
||||
return UntapBlocker::toString(out) << ")";
|
||||
}
|
||||
AUntapManaBlocker * clone() const{
|
||||
AUntapManaBlocker * a = NEW AUntapManaBlocker(*this);
|
||||
a->isClone = 1;
|
||||
return a;
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
//Circle of Protections
|
||||
class ACircleOfProtection: public TargetAbility{
|
||||
protected:
|
||||
|
||||
Reference in New Issue
Block a user