Added/fixed primitives from NEC set, added new keyword "modified" to target creatures that are enchanted or geared or with counters, updated missing card by set list.
This commit is contained in:
@@ -651,6 +651,18 @@ TargetChooser * TargetChooserFactory::createTargetChooser(string s, MTGCardInsta
|
||||
cd->unsecureSetHasBackSide(1);
|
||||
}
|
||||
}
|
||||
//Is modified
|
||||
else if (attribute.find("modified") != string::npos)
|
||||
{
|
||||
if (minus)
|
||||
{
|
||||
cd->unsecureSetModified(-1);
|
||||
}
|
||||
else
|
||||
{
|
||||
cd->unsecureSetModified(1);
|
||||
}
|
||||
}
|
||||
//Has partner
|
||||
else if (attribute.find("haspartner") != string::npos)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user