implemented Doppleganger modifiers

This commit is contained in:
Nostrademous
2021-01-24 12:04:34 -05:00
parent 46175fc3e2
commit 88e4f3ee26
2 changed files with 13 additions and 0 deletions

View File

@@ -32,6 +32,9 @@ return {
{ var = "conditionMoving", type = "check", label = "Are you always moving?", ifCond = "Moving", apply = function(val, modList, enemyModList)
modList:NewMod("Condition:Moving", "FLAG", true, "Config")
end },
{ var = "insane", type = "check", label = "Are you insane?", ifCond = "Insane", apply = function(val, modList, enemyModList)
modList:NewMod("Condition:Insane", "FLAG", true, "Config")
end },
{ var = "conditionFullLife", type = "check", label = "Are you always on Full Life?", tooltip = "You will automatically be considered to be on Full Life if you have Chaos Inoculation,\nbut you can use this option to force it if necessary.", apply = function(val, modList, enemyModList)
modList:NewMod("Condition:FullLife", "FLAG", true, "Config")
end },