diff --git a/projects/mtg/include/AllAbilities.h b/projects/mtg/include/AllAbilities.h index 484591b05..5eefb1ccf 100644 --- a/projects/mtg/include/AllAbilities.h +++ b/projects/mtg/include/AllAbilities.h @@ -183,6 +183,14 @@ private: { intValue = target->controller()->opponent()->damageCount; } + else if (s == "playerpoisoncount") + { + intValue = target->controller()->poisonCount; + } + else if (s == "opponentpoisoncount") + { + intValue = target->controller()->opponent()->poisonCount; + } else if (s == "opponentlifetotal") { intValue = target->controller()->opponent()->life;