From e3cbe3edfadfd9ca1b7613ae8daa00b70b39782b Mon Sep 17 00:00:00 2001 From: Jaysyn904 <68194417+Jaysyn904@users.noreply.github.com> Date: Sat, 23 Jul 2022 21:50:02 -0400 Subject: [PATCH] Create NWN Spell Targeting Constants.txt --- _notes_/NWN Spell Targeting Constants.txt | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 _notes_/NWN Spell Targeting Constants.txt diff --git a/_notes_/NWN Spell Targeting Constants.txt b/_notes_/NWN Spell Targeting Constants.txt new file mode 100644 index 000000000..82ffcf5b3 --- /dev/null +++ b/_notes_/NWN Spell Targeting Constants.txt @@ -0,0 +1,13 @@ +int SPELL_TARGETING_SHAPE_NONE = 0; +int SPELL_TARGETING_SHAPE_SPHERE = 1; +int SPELL_TARGETING_SHAPE_RECT = 2; +int SPELL_TARGETING_SHAPE_CONE = 3; +int SPELL_TARGETING_SHAPE_HSPHERE = 4; + +int SPELL_TARGETING_FLAGS_NONE = 0; +int SPELL_TARGETING_FLAGS_HARMS_ENEMIES = 1; +int SPELL_TARGETING_FLAGS_HARMS_ALLIES = 2; +int SPELL_TARGETING_FLAGS_HELPS_ALLIES = 4; +int SPELL_TARGETING_FLAGS_IGNORES_SELF = 8; +int SPELL_TARGETING_FLAGS_ORIGIN_ON_SELF = 16; +int SPELL_TARGETING_FLAGS_SUPPRESS_WITH_TARGET = 32; \ No newline at end of file