public override object Evaluate(List <string> args, ExpressionEvaluator evaluator, Creature creature, Target target = null, CastedSpell spell = null, RollResults dice = null)
        {
            ExpectingArguments(args, 0);
            string spellId = evaluator.GetSpellId(spell);

            if (creature != null)
            {
                //Conditions condition = Expressions.Get<Conditions>(args[1]);

                creature.RemoveSpellCondition(spellId);
            }

            return(null);
        }