-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindexes.nim
197 lines (196 loc) · 7.03 KB
/
indexes.nim
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
# [ INDEXES ] #
# Collect enums that are not usually required by the game data, but allow for easier
# understanding of content to developers and players
type
MWClothType* = enum
Pants = 0
Shoes = 1
Shirt = 2
Belt = 3
Robe = 4
RightGlove = 5
LeftGlove = 6
Skirt = 7
Ring = 8
Amulet = 9
MWClothBipedType* = enum
Head = 1
Hair = 2
Cuirass = 3
Groin = 4
Skirt = 5
RightHand = 6
LeftHang = 7
RightWrist = 8
LeftWrist = 9
Shield = 10
RightForearm = 11
LeftForearm = 12
RightUpperArm = 13
LeftUpperArm = 14
RightFoot = 15
LeftFoot = 16
RightAnkle = 17
LeftAnkle = 18
RightKnee = 19
LeftKnee = 20
RightUpperLeg = 21
LeftUpperLeg = 22
RightPauldron = 23
LeftPauldron = 24
Weapon = 25
Tail = 26
MWEffectType* = enum
sEffectWaterBreathing = 0
sEffectSwiftSwim = 1
sEffectWaterWalking = 2
sEffectShield = 3
sEffectFireShield = 4
sEffectLightningShield = 5
sEffectFrostShield = 6
sEffectBurden = 7
sEffectFeather = 8
sEffectJump = 9
sEffectLevitate = 10
sEffectSlowFall = 11
sEffectLock = 12
sEffectOpen = 13
sEffectFireDamage = 14
sEffectShockDamage = 15
sEffectFrostDamage = 16
sEffectDrainAttribute = 17
sEffectDrainHealth = 18
sEffectDrainSpellpoints = 19
sEffectDrainFatigue = 20
sEffectDrainSkill = 21
sEffectDamageAttribute = 22
sEffectDamageHealth = 23
sEffectDamageMagicka = 24
sEffectDamageFatigue = 25
sEffectDamageSkill = 26
sEffectPoison = 27
sEffectWeaknessToFire = 28
sEffectWeaknessToFrost = 29
sEffectWeaknessToShock = 30
sEffectWeaknessToMagicka = 31
sEffectWeaknessToCommonDisease = 32
sEffectWeaknessToBlightDisease = 33
sEffectWeaknessToCorprusDisease = 34
sEffectWeaknessToPoison = 35
sEffectWeaknessToNormalWeapons = 36
sEffectDisintegrateWeapon = 37
sEffectDisintegrateArmor = 38
sEffectInvisibility = 39
sEffectChameleon = 40
sEffectLight = 41
sEffectSanctuary = 42
sEffectNightEye = 43
sEffectCharm = 44
sEffectParalyze = 45
sEffectSilence = 46
sEffectBlind = 47
sEffectSound = 48
sEffectCalmHumanoid = 49
sEffectCalmCreature = 50
sEffectFrenzyHumanoid = 51
sEffectFrenzyCreature = 52
sEffectDemoralizeHumanoid = 53
sEffectDemoralizeCreature = 54
sEffectRallyHumanoid = 55
sEffectRallyCreature = 56
sEffectDispel = 57
sEffectSoultrap = 58
sEffectTelekinesis = 59
sEffectMark = 60
sEffectRecall = 61
sEffectDivineIntervention = 62
sEffectAlmsiviIntervention = 63
sEffectDetectAnimal = 64
sEffectDetectEnchantment = 65
sEffectDetectKey = 66
sEffectSpellAbsorption = 67
sEffectReflect = 68
sEffectCureCommonDisease = 69
sEffectCureBlightDisease = 70
sEffectCureCorprusDisease = 71
sEffectCurePoison = 72
sEffectCureParalyzation = 73
sEffectRestoreAttribute = 74
sEffectRestoreHealth = 75
sEffectRestoreSpellPoints = 76
sEffectRestoreFatigue = 77
sEffectRestoreSkill = 78
sEffectFortifyAttribute = 79
sEffectFortifyHealth = 80
sEffectFortifySpellpoints = 81
sEffectFortifyFatigue = 82
sEffectFortifySkill = 83
sEffectFortifyMagickaMultiplier = 84
sEffectAbsorbAttribute = 85
sEffectAbsorbHealth = 86
sEffectAbsorbSpellPoints = 87
sEffectAbsorbFatigue = 88
sEffectAbsorbSkill = 89
sEffectResistFire = 90
sEffectResistFrost = 91
sEffectResistShock = 92
sEffectResistMagicka = 93
sEffectResistCommonDisease = 94
sEffectResistBlightDisease = 95
sEffectResistCorprusDisease = 96
sEffectResistPoison = 97
sEffectResistNormalWeapons = 98
sEffectResistParalysis = 99
sEffectRemoveCurse = 100
sEffectTurnUndead = 101
sEffectSummonScamp = 102
sEffectSummonClannfear = 103
sEffectSummonDaedroth = 104
sEffectSummonDremora = 105
sEffectSummonAncestralGhost = 106
sEffectSummonSkeletalMinion = 107
sEffectSummonLeastBonewalker = 108
sEffectSummonGreaterBonewalker = 109
sEffectSummonBonelord = 110
sEffectSummonWingedTwilight = 111
sEffectSummonHunger = 112
sEffectSummonGoldensaint = 113
sEffectSummonFlameAtronach = 114
sEffectSummonFrostAtronach = 115
sEffectSummonStormAtronach = 116
sEffectFortifyAttackBonus = 117
sEffectCommandCreatures = 118
sEffectCommandHumanoids = 119
sEffectBoundDagger = 120
sEffectBoundLongsword = 121
sEffectBoundMace = 122
sEffectBoundBattleAxe = 123
sEffectBoundSpear = 124
sEffectBoundLongbow = 125
sEffectExtraSpell = 126
sEffectBoundCuirass = 127
sEffectBoundHelm = 128
sEffectBoundBoots = 129
sEffectBoundShield = 130
sEffectBoundGloves = 131
sEffectCorpus = 132
sEffectVampirism = 133
sEffectSummonCenturionSphere = 134
sEffectSunDamage = 135
sEffectStuntedMagicka = 136
sEffectSummonFabricant = 137 # TR
sEffectSummonCreature01 = 138 # Call Wolf (BM)
sEffectSummonCreature02 = 139 # Call Bear (BM)
sEffectSummonCreature03 = 140 # Call Bonewolf (BM)
sEffectSummonCreature04 = 141 # BM/TR
sEffectSummonCreature05 = 142 # BM/TR
MWLightType* = enum
Dynamic = 1
CanCarry = 2
Negative = 4
Flicker = 8
Fire = 10
OffByDefault = 20
FlickerSlow = 40
Pulse = 80
PulseSlow = 100