J0N4TH4N - readded back "AUntapManaBlocker"

This commit is contained in:
leungclj
2009-10-04 01:55:53 +00:00
parent f882fd437b
commit 8ab5b5cfd5

View File

@@ -1218,6 +1218,29 @@ class APowerToughnessModifierUntilEndOfTurn: public ActivatedAbility{
//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:
@@ -3876,6 +3899,7 @@ class AARandomDiscarder:public ActivatedAbilityTP{
};
//ShieldOfTheAge
class AShieldOfTheAge: public TargetAbility{
public: