Resolves #13557 - trigger conditionals are a superset not global uniques

This commit is contained in:
yairm210 2025-07-02 21:49:21 +03:00
parent 911584dc49
commit 06d6a1bfe1

View File

@ -65,8 +65,8 @@ enum class UniqueTarget(
// Modifiers
Conditional("Modifiers that can be added to other uniques to limit when they will be active", modifierType = ModifierType.Conditional),
TriggerCondition("Special conditionals that can be added to Triggerable uniques, to make them activate upon specific actions.", inheritsFrom = Global, modifierType = ModifierType.Other),
UnitTriggerCondition("Special conditionals that can be added to UnitTriggerable uniques, to make them activate upon specific actions.", inheritsFrom = Global, modifierType = ModifierType.Other),
TriggerCondition("Special conditionals that can be added to Triggerable uniques, to make them activate upon specific actions.", modifierType = ModifierType.Other),
UnitTriggerCondition("Special conditionals that can be added to UnitTriggerable uniques, to make them activate upon specific actions.", modifierType = ModifierType.Other),
UnitActionModifier("Modifiers that can be added to UnitAction uniques as conditionals", modifierType = ModifierType.Other),
MetaModifier("Modifiers that can be added to other uniques changing user experience, not their behavior", modifierType = ModifierType.Other),
;