add saclands cost

sacrifice all lands {saclands} cost
This commit is contained in:
Anthony Calosa
2017-02-19 22:11:16 +08:00
parent 5b16ff4a69
commit e6bf23e536
3 changed files with 50 additions and 0 deletions

View File

@@ -183,6 +183,15 @@ public:
virtual int doPay();
};
//Sacrifice all Lands cost
class SacLandsCost : public ExtraCost
{
public:
SacLandsCost(TargetChooser *_tc = NULL);
virtual int doPay();
virtual SacLandsCost * clone() const;
};
//unattach cost
class UnattachCost : public ExtraCost
{