J0N4TH4N - readded back "AUntapManaBlocker"
This commit is contained in:
@@ -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
|
//Circle of Protections
|
||||||
class ACircleOfProtection: public TargetAbility{
|
class ACircleOfProtection: public TargetAbility{
|
||||||
protected:
|
protected:
|
||||||
@@ -3876,6 +3899,7 @@ class AARandomDiscarder:public ActivatedAbilityTP{
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//ShieldOfTheAge
|
//ShieldOfTheAge
|
||||||
class AShieldOfTheAge: public TargetAbility{
|
class AShieldOfTheAge: public TargetAbility{
|
||||||
public:
|
public:
|
||||||
|
|||||||
Reference in New Issue
Block a user