ff9mapkit 1.0.0b3__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (193) hide show
  1. ff9mapkit/__init__.py +18 -0
  2. ff9mapkit/__main__.py +36 -0
  3. ff9mapkit/_animdb.py +2994 -0
  4. ff9mapkit/_animdb_all.py +14125 -0
  5. ff9mapkit/_fieldtable.py +1516 -0
  6. ff9mapkit/_fieldtext.py +845 -0
  7. ff9mapkit/_held_poses.py +44 -0
  8. ff9mapkit/_itemdb.py +65 -0
  9. ff9mapkit/_modeldb.py +725 -0
  10. ff9mapkit/_narrowmap_data.py +10 -0
  11. ff9mapkit/_npcparams.py +634 -0
  12. ff9mapkit/_regen_animdb.py +72 -0
  13. ff9mapkit/_regen_animdb_all.py +66 -0
  14. ff9mapkit/_regen_fieldtable.py +95 -0
  15. ff9mapkit/_regen_fieldtext.py +66 -0
  16. ff9mapkit/_regen_modeldb.py +67 -0
  17. ff9mapkit/_regen_npcparams.py +123 -0
  18. ff9mapkit/_regen_scenedb.py +57 -0
  19. ff9mapkit/_scenedb.py +869 -0
  20. ff9mapkit/abilities.py +225 -0
  21. ff9mapkit/animations.py +120 -0
  22. ff9mapkit/archetypes.py +218 -0
  23. ff9mapkit/areatitle.py +76 -0
  24. ff9mapkit/battle/__init__.py +21 -0
  25. ff9mapkit/battle/abilityfeatures.py +294 -0
  26. ff9mapkit/battle/actiondelta.py +441 -0
  27. ff9mapkit/battle/aiauthor.py +305 -0
  28. ff9mapkit/battle/ailint.py +140 -0
  29. ff9mapkit/battle/aipatch.py +175 -0
  30. ff9mapkit/battle/battleai.py +148 -0
  31. ff9mapkit/battle/battlecsv.py +390 -0
  32. ff9mapkit/battle/battlepatch.py +395 -0
  33. ff9mapkit/battle/build.py +558 -0
  34. ff9mapkit/battle/camera_codec.py +332 -0
  35. ff9mapkit/battle/camera_data.py +128 -0
  36. ff9mapkit/battle/characterdelta.py +789 -0
  37. ff9mapkit/battle/event_data.py +72 -0
  38. ff9mapkit/battle/extract.py +540 -0
  39. ff9mapkit/battle/fbx.py +223 -0
  40. ff9mapkit/battle/reskin.py +149 -0
  41. ff9mapkit/battle/scene_codec.py +314 -0
  42. ff9mapkit/battle/scene_data.py +369 -0
  43. ff9mapkit/battle/scenelint.py +125 -0
  44. ff9mapkit/battle/seqasm.py +131 -0
  45. ff9mapkit/battle/seqauthor.py +220 -0
  46. ff9mapkit/battle/seqcodec.py +300 -0
  47. ff9mapkit/battle/seqdis.py +106 -0
  48. ff9mapkit/battle/seqpatch.py +137 -0
  49. ff9mapkit/battle_bgm.py +133 -0
  50. ff9mapkit/binutils.py +60 -0
  51. ff9mapkit/build.py +5445 -0
  52. ff9mapkit/campaign.py +1276 -0
  53. ff9mapkit/catalog.py +316 -0
  54. ff9mapkit/chain.py +358 -0
  55. ff9mapkit/cli.py +3114 -0
  56. ff9mapkit/config.py +360 -0
  57. ff9mapkit/content/__init__.py +13 -0
  58. ff9mapkit/content/areatitle.py +36 -0
  59. ff9mapkit/content/ate.py +118 -0
  60. ff9mapkit/content/camera.py +123 -0
  61. ff9mapkit/content/chest.py +186 -0
  62. ff9mapkit/content/choice.py +163 -0
  63. ff9mapkit/content/conductor.py +217 -0
  64. ff9mapkit/content/cutscene.py +290 -0
  65. ff9mapkit/content/encounter.py +41 -0
  66. ff9mapkit/content/entry_settle.py +50 -0
  67. ff9mapkit/content/equipment.py +93 -0
  68. ff9mapkit/content/event.py +191 -0
  69. ff9mapkit/content/gateway.py +101 -0
  70. ff9mapkit/content/inventory.py +59 -0
  71. ff9mapkit/content/itemdata.py +644 -0
  72. ff9mapkit/content/itemtext.py +168 -0
  73. ff9mapkit/content/jump.py +114 -0
  74. ff9mapkit/content/ladder.py +633 -0
  75. ff9mapkit/content/movement.py +53 -0
  76. ff9mapkit/content/music.py +97 -0
  77. ff9mapkit/content/npc.py +348 -0
  78. ff9mapkit/content/object.py +340 -0
  79. ff9mapkit/content/onentry.py +135 -0
  80. ff9mapkit/content/party.py +111 -0
  81. ff9mapkit/content/pathfind.py +138 -0
  82. ff9mapkit/content/platform.py +314 -0
  83. ff9mapkit/content/player.py +168 -0
  84. ff9mapkit/content/prop.py +75 -0
  85. ff9mapkit/content/region.py +340 -0
  86. ff9mapkit/content/reinit.py +59 -0
  87. ff9mapkit/content/savepoint.py +90 -0
  88. ff9mapkit/content/shop.py +178 -0
  89. ff9mapkit/content/sps_trigger.py +66 -0
  90. ff9mapkit/content/startup.py +71 -0
  91. ff9mapkit/content/synthesis.py +106 -0
  92. ff9mapkit/content/text.py +183 -0
  93. ff9mapkit/content/textcarry.py +290 -0
  94. ff9mapkit/content/verbatim.py +86 -0
  95. ff9mapkit/content/walkmesh_hotfix.py +38 -0
  96. ff9mapkit/data/__init__.py +48 -0
  97. ff9mapkit/data/_regen_provenance.py +142 -0
  98. ff9mapkit/data/provenance/blank.es.patch +1 -0
  99. ff9mapkit/data/provenance/blank.fr.patch +1 -0
  100. ff9mapkit/data/provenance/blank.gr.patch +1 -0
  101. ff9mapkit/data/provenance/blank.it.patch +1 -0
  102. ff9mapkit/data/provenance/blank.jp.patch +1 -0
  103. ff9mapkit/data/provenance/blank.uk.patch +1 -0
  104. ff9mapkit/data/provenance/blank.us.patch +1 -0
  105. ff9mapkit/data/provenance/manifest.json +65 -0
  106. ff9mapkit/data/provenance/region_template.patch +1 -0
  107. ff9mapkit/data/reference_arcs.toml +89 -0
  108. ff9mapkit/data/region_catalog.toml +593 -0
  109. ff9mapkit/deploystack.py +358 -0
  110. ff9mapkit/dialogue.py +803 -0
  111. ff9mapkit/eb/__init__.py +12 -0
  112. ff9mapkit/eb/_exprtable.py +59 -0
  113. ff9mapkit/eb/_membertable.py +38 -0
  114. ff9mapkit/eb/_optables.py +537 -0
  115. ff9mapkit/eb/_regen_optables.py +76 -0
  116. ff9mapkit/eb/cmdasm.py +323 -0
  117. ff9mapkit/eb/disasm.py +332 -0
  118. ff9mapkit/eb/edit.py +439 -0
  119. ff9mapkit/eb/exprasm.py +158 -0
  120. ff9mapkit/eb/model.py +178 -0
  121. ff9mapkit/eb/opcodes.py +463 -0
  122. ff9mapkit/eblint.py +177 -0
  123. ff9mapkit/editor/__init__.py +20 -0
  124. ff9mapkit/editor/app.py +950 -0
  125. ff9mapkit/editor/battle_forms.py +240 -0
  126. ff9mapkit/editor/breadcrumb.py +89 -0
  127. ff9mapkit/editor/dialogs.py +116 -0
  128. ff9mapkit/editor/feedback.py +208 -0
  129. ff9mapkit/editor/forms.py +632 -0
  130. ff9mapkit/editor/graphview.py +350 -0
  131. ff9mapkit/editor/jobs.py +342 -0
  132. ff9mapkit/editor/model.py +243 -0
  133. ff9mapkit/editor/picker.py +120 -0
  134. ff9mapkit/editor/theme.py +212 -0
  135. ff9mapkit/eventscan.py +1441 -0
  136. ff9mapkit/extract.py +2279 -0
  137. ff9mapkit/flags.py +693 -0
  138. ff9mapkit/forkreport.py +1383 -0
  139. ff9mapkit/hub.py +477 -0
  140. ff9mapkit/idgated.py +101 -0
  141. ff9mapkit/infohub.py +580 -0
  142. ff9mapkit/items.py +63 -0
  143. ff9mapkit/itemstats.py +346 -0
  144. ff9mapkit/journey.py +1902 -0
  145. ff9mapkit/keyitems.py +93 -0
  146. ff9mapkit/logic_add.py +632 -0
  147. ff9mapkit/logic_edit.py +728 -0
  148. ff9mapkit/logic_map.py +526 -0
  149. ff9mapkit/pack.py +175 -0
  150. ff9mapkit/playerswap.py +231 -0
  151. ff9mapkit/prop_archetypes.py +228 -0
  152. ff9mapkit/provision.py +282 -0
  153. ff9mapkit/refarc.py +825 -0
  154. ff9mapkit/save.py +337 -0
  155. ff9mapkit/save_items.py +1673 -0
  156. ff9mapkit/scene/__init__.py +11 -0
  157. ff9mapkit/scene/arena.py +63 -0
  158. ff9mapkit/scene/bgart.py +140 -0
  159. ff9mapkit/scene/bgi.py +732 -0
  160. ff9mapkit/scene/bgs.py +174 -0
  161. ff9mapkit/scene/bgx.py +185 -0
  162. ff9mapkit/scene/cam.py +345 -0
  163. ff9mapkit/scene/guide.py +311 -0
  164. ff9mapkit/scene/paint.py +506 -0
  165. ff9mapkit/scene/placeholder.py +107 -0
  166. ff9mapkit/sjbinary.py +285 -0
  167. ff9mapkit/sps/__init__.py +17 -0
  168. ff9mapkit/sps/author.py +294 -0
  169. ff9mapkit/sps/catalog.py +88 -0
  170. ff9mapkit/sps/codec.py +264 -0
  171. ff9mapkit/sps/edit.py +184 -0
  172. ff9mapkit/sps/lint.py +58 -0
  173. ff9mapkit/sps/render.py +116 -0
  174. ff9mapkit/sps/templates.py +47 -0
  175. ff9mapkit/sps/texture.py +131 -0
  176. ff9mapkit/walkmesh_hotfixes.py +163 -0
  177. ff9mapkit/workspace/__init__.py +18 -0
  178. ff9mapkit/workspace/battledoc.py +985 -0
  179. ff9mapkit/workspace/builddoc.py +607 -0
  180. ff9mapkit/workspace/forms_qt.py +586 -0
  181. ff9mapkit/workspace/importdoc.py +665 -0
  182. ff9mapkit/workspace/mapview.py +131 -0
  183. ff9mapkit/workspace/palette.py +85 -0
  184. ff9mapkit/workspace/savedoc.py +664 -0
  185. ff9mapkit/workspace/shell.py +6907 -0
  186. ff9mapkit/workspace/style.py +105 -0
  187. ff9mapkit/workspace/tuningdialog.py +223 -0
  188. ff9mapkit-1.0.0b3.dist-info/METADATA +155 -0
  189. ff9mapkit-1.0.0b3.dist-info/RECORD +193 -0
  190. ff9mapkit-1.0.0b3.dist-info/WHEEL +5 -0
  191. ff9mapkit-1.0.0b3.dist-info/entry_points.txt +5 -0
  192. ff9mapkit-1.0.0b3.dist-info/licenses/LICENSE +31 -0
  193. ff9mapkit-1.0.0b3.dist-info/top_level.txt +1 -0
@@ -0,0 +1,634 @@
1
+ """Auto-generated per-model NPC OBJECT params -- the canonical (modal) animset / head-focus /
2
+ logical-size / movement clips real standing NPCs use, so ``content.npc.build_npc_init`` emits a
3
+ byte-faithful NPC for any GEO_NPC_* / GEO_MON_* model (not just moogles).
4
+
5
+ DO NOT EDIT BY HAND. Regenerate with: python -m ff9mapkit._regen_npcparams
6
+ Provenance: derived metadata (model ids + small ints), no Square-Enix bytes.
7
+ """
8
+
9
+ NPC_PARAMS = {
10
+ 10: { # GEO_NPC_F1_BBA
11
+ "animset": 87, "head_focus": (64, 1), "logical_size": (32, 32, 45),
12
+ "anims": {"stand": 560, "walk": 603, "run": 605, "left": 602, "right": 607},
13
+ },
14
+ 11: { # GEO_NPC_F1_TCK
15
+ "animset": 87, "head_focus": (64, 1), "logical_size": (26, 26, 37),
16
+ "anims": {"stand": 696, "walk": 645, "run": 646, "left": 643, "right": 647},
17
+ },
18
+ 12: { # GEO_NPC_F2_BBA
19
+ "animset": 87, "head_focus": (64, 1), "logical_size": (32, 32, 45),
20
+ "anims": {"stand": 560, "walk": 603, "run": 605, "left": 602, "right": 607},
21
+ },
22
+ 13: { # GEO_NPC_F3_BBA
23
+ "animset": 87, "head_focus": (64, 1), "logical_size": (32, 32, 45),
24
+ "anims": {"stand": 560, "walk": 603, "run": 605, "left": 602, "right": 607},
25
+ },
26
+ 17: { # GEO_NPC_F2_APM
27
+ "animset": 100, "head_focus": (64, 1), "logical_size": (20, 20, 30),
28
+ "anims": {"stand": 555, "walk": 599, "run": 598, "left": 597, "right": 601},
29
+ },
30
+ 18: { # GEO_NPC_F1_TMM
31
+ "animset": 100, "head_focus": (64, 1), "logical_size": (32, 32, 45),
32
+ "anims": {"stand": 706, "walk": 655, "run": 657, "left": 17, "right": 16},
33
+ },
34
+ 19: { # GEO_NPC_F1_TMF
35
+ "animset": 100, "head_focus": (64, 1), "logical_size": (32, 32, 45),
36
+ "anims": {"stand": 704, "walk": 648, "run": 652, "left": 649, "right": 650},
37
+ },
38
+ 20: { # GEO_NPC_F1_OFF
39
+ "animset": 87, "head_focus": (72, 1), "logical_size": (20, 20, 30),
40
+ "anims": {"stand": 1921, "walk": 1920, "run": 1924, "left": 1926, "right": 1918},
41
+ },
42
+ 21: { # GEO_NPC_F2_OSC
43
+ "animset": 100, "head_focus": (64, 1), "logical_size": (20, 20, 30),
44
+ "anims": {"stand": 2494, "walk": 2501, "run": 2501, "left": 2499, "right": 2497},
45
+ },
46
+ 24: { # GEO_NPC_F0_APF
47
+ "animset": 87, "head_focus": (72, 1), "logical_size": (20, 20, 30),
48
+ "anims": {"stand": 552, "walk": 428, "run": 427, "left": 430, "right": 426},
49
+ },
50
+ 25: { # GEO_NPC_F2_G17
51
+ "animset": 87, "head_focus": (80, 0), "logical_size": (26, 26, 37),
52
+ "anims": {"stand": 1310, "walk": 1309, "run": 1306, "left": 1308, "right": 1307},
53
+ },
54
+ 26: { # GEO_NPC_F2_G20
55
+ "animset": 100, "head_focus": (80, 0), "logical_size": (20, 20, 30),
56
+ "anims": {"stand": 3201, "walk": 3196, "run": 3196, "left": 3199, "right": 3195},
57
+ },
58
+ 27: { # GEO_NPC_F2_TBY
59
+ "animset": 62, "head_focus": (64, 1), "logical_size": (14, 14, 22),
60
+ "anims": {"stand": 691, "walk": 545, "run": 543, "left": 546, "right": 544},
61
+ },
62
+ 32: { # GEO_NPC_F0_TBY
63
+ "animset": 62, "head_focus": (64, 1), "logical_size": (14, 14, 22),
64
+ "anims": {"stand": 691, "walk": 545, "run": 543, "left": 546, "right": 544},
65
+ },
66
+ 34: { # GEO_NPC_F3_TBY
67
+ "animset": 62, "head_focus": (64, 1), "logical_size": (14, 14, 22),
68
+ "anims": {"stand": 691, "walk": 545, "run": 543, "left": 546, "right": 544},
69
+ },
70
+ 40: { # GEO_NPC_F2_TGR
71
+ "animset": 62, "head_focus": (64, 1), "logical_size": (14, 14, 22),
72
+ "anims": {"stand": 687, "walk": 5299, "run": 5295, "left": 5297, "right": 5298},
73
+ },
74
+ 49: { # GEO_NPC_F0_DAC
75
+ "animset": 75, "head_focus": (0, 65), "logical_size": (14, 14, 22),
76
+ "anims": {"stand": 1540, "walk": 459, "run": 100, "left": 407, "right": 248},
77
+ },
78
+ 50: { # GEO_NPC_F0_DAL
79
+ "animset": 100, "head_focus": (0, 65), "logical_size": (20, 20, 30),
80
+ "anims": {"stand": 1217, "walk": 1210, "run": 1209, "left": 1213, "right": 1211},
81
+ },
82
+ 51: { # GEO_NPC_F0_HUF
83
+ "animset": 87, "head_focus": (0, 65), "logical_size": (20, 20, 30),
84
+ "anims": {"stand": 1227, "walk": 1221, "run": 1220, "left": 1223, "right": 1219},
85
+ },
86
+ 52: { # GEO_NPC_F0_KAC
87
+ "animset": 75, "head_focus": (4, 1), "logical_size": (26, 26, 37),
88
+ "anims": {"stand": 1235, "walk": 1233, "run": 1231, "left": 1232, "right": 1229},
89
+ },
90
+ 53: { # GEO_NPC_F1_BMG
91
+ "animset": 87, "head_focus": (0, 65), "logical_size": (26, 26, 37),
92
+ "anims": {"stand": 1257, "walk": 1255, "run": 1243, "left": 1248, "right": 1244},
93
+ },
94
+ 54: { # GEO_NPC_F2_BMG
95
+ "animset": 87, "head_focus": (0, 65), "logical_size": (26, 26, 37),
96
+ "anims": {"stand": 1285, "walk": 1283, "run": 1275, "left": 1279, "right": 1276},
97
+ },
98
+ 55: { # GEO_NPC_F0_DAF
99
+ "animset": 62, "head_focus": (0, 65), "logical_size": (14, 14, 22),
100
+ "anims": {"stand": 1303, "walk": 1296, "run": 1295, "left": 1299, "right": 1297},
101
+ },
102
+ 56: { # GEO_NPC_F0_G17
103
+ "animset": 87, "head_focus": (80, 0), "logical_size": (26, 26, 37),
104
+ "anims": {"stand": 1310, "walk": 1309, "run": 1306, "left": 1308, "right": 1307},
105
+ },
106
+ 61: { # GEO_NPC_F3_TGR
107
+ "animset": 62, "head_focus": (64, 1), "logical_size": (14, 14, 22),
108
+ "anims": {"stand": 687, "walk": 5299, "run": 5295, "left": 5297, "right": 5298},
109
+ },
110
+ 63: { # GEO_NPC_F0_CCB
111
+ "animset": 37, "head_focus": (64, 1), "logical_size": (8, 8, 15),
112
+ "anims": {"stand": 2171, "walk": 2168, "run": 2160, "left": 2171, "right": 2171},
113
+ },
114
+ 64: { # GEO_NPC_F0_DAW
115
+ "animset": 100, "head_focus": (8, 65), "logical_size": (26, 26, 37),
116
+ "anims": {"stand": 1908, "walk": 1915, "run": 1910, "left": 1914, "right": 1912},
117
+ },
118
+ 65: { # GEO_NPC_F0_ORC
119
+ "animset": 93, "head_focus": (80, 0), "logical_size": (26, 26, 37),
120
+ "anims": {"stand": 2099, "walk": 2126, "run": 2117, "left": 2120, "right": 2106},
121
+ },
122
+ 66: { # GEO_NPC_F0_RAS
123
+ "animset": 100, "head_focus": (0, 65), "logical_size": (20, 20, 30),
124
+ "anims": {"stand": 4676, "walk": 4699, "run": 4678, "left": 4680, "right": 4686},
125
+ },
126
+ 67: { # GEO_NPC_F0_TRF
127
+ "animset": 100, "head_focus": (72, 1), "logical_size": (20, 20, 30),
128
+ "anims": {"stand": 1931, "walk": 1930, "run": 1933, "left": 1928, "right": 1936},
129
+ },
130
+ 68: { # GEO_NPC_F1_BAR
131
+ "animset": 100, "head_focus": (64, 1), "logical_size": (26, 26, 37),
132
+ "anims": {"stand": 2204, "walk": 2201, "run": 2198, "left": 2206, "right": 2200},
133
+ },
134
+ 69: { # GEO_NPC_F1_CCB
135
+ "animset": 37, "head_focus": (0, 65), "logical_size": (8, 8, 15),
136
+ "anims": {"stand": 2289, "walk": 2285, "run": 2285, "left": 2289, "right": 2289},
137
+ },
138
+ 70: { # GEO_NPC_F1_CSA
139
+ "animset": 87, "head_focus": (64, 1), "logical_size": (20, 20, 30),
140
+ "anims": {"stand": 1937, "walk": 1946, "run": 1939, "left": 1944, "right": 1942},
141
+ },
142
+ 71: { # GEO_NPC_F1_CSO
143
+ "animset": 100, "head_focus": (64, 1), "logical_size": (20, 20, 30),
144
+ "anims": {"stand": 3250, "walk": 3259, "run": 3252, "left": 3257, "right": 3255},
145
+ },
146
+ 72: { # GEO_NPC_F2_HUF
147
+ "animset": 75, "head_focus": (0, 65), "logical_size": (26, 26, 37),
148
+ "anims": {"stand": 1555, "walk": 1549, "run": 1548, "left": 1551, "right": 1547},
149
+ },
150
+ 73: { # GEO_NPC_F3_CSA
151
+ "animset": 100, "head_focus": (64, 1), "logical_size": (26, 26, 37),
152
+ "anims": {"stand": 2241, "walk": 2250, "run": 2243, "left": 2248, "right": 2246},
153
+ },
154
+ 74: { # GEO_NPC_F4_CSA
155
+ "animset": 87, "head_focus": (72, 1), "logical_size": (20, 20, 30),
156
+ "anims": {"stand": 2293, "walk": 2302, "run": 2295, "left": 2300, "right": 2298},
157
+ },
158
+ 99: { # GEO_NPC_F1_HUF
159
+ "animset": 87, "head_focus": (0, 65), "logical_size": (20, 20, 30),
160
+ "anims": {"stand": 1227, "walk": 1221, "run": 1220, "left": 1223, "right": 1219},
161
+ },
162
+ 100: { # GEO_NPC_F1_CHO
163
+ "animset": 125, "head_focus": (4, 1), "logical_size": (32, 32, 45),
164
+ "anims": {"stand": 2953, "walk": 2962, "run": 2960, "left": 2958, "right": 2956},
165
+ },
166
+ 101: { # GEO_NPC_F3_APM
167
+ "animset": 100, "head_focus": (64, 1), "logical_size": (20, 20, 30),
168
+ "anims": {"stand": 555, "walk": 599, "run": 598, "left": 597, "right": 601},
169
+ },
170
+ 102: { # GEO_NPC_F4_JJY
171
+ "animset": 87, "head_focus": (64, 1), "logical_size": (26, 26, 37),
172
+ "anims": {"stand": 617, "walk": 629, "run": 630, "left": 12, "right": 13},
173
+ },
174
+ 103: { # GEO_NPC_F1_WRK
175
+ "animset": 87, "head_focus": (64, 1), "logical_size": (26, 26, 37),
176
+ "anims": {"stand": 712, "walk": 662, "run": 661, "left": 18, "right": 19},
177
+ },
178
+ 104: { # GEO_NPC_F2_HTH
179
+ "animset": 100, "head_focus": (0, 65), "logical_size": (20, 20, 30),
180
+ "anims": {"stand": 7135, "walk": 7134, "run": 7139, "left": 7142, "right": 7132},
181
+ },
182
+ 108: { # GEO_NPC_F2_HUM
183
+ "animset": 100, "head_focus": (0, 65), "logical_size": (20, 20, 30),
184
+ "anims": {"stand": 926, "walk": 924, "run": 923, "left": 925, "right": 922},
185
+ },
186
+ 110: { # GEO_NPC_F1_HUM
187
+ "animset": 100, "head_focus": (0, 65), "logical_size": (20, 20, 30),
188
+ "anims": {"stand": 926, "walk": 924, "run": 923, "left": 925, "right": 922},
189
+ },
190
+ 111: { # GEO_NPC_F0_APM
191
+ "animset": 100, "head_focus": (64, 1), "logical_size": (20, 20, 30),
192
+ "anims": {"stand": 555, "walk": 599, "run": 598, "left": 597, "right": 601},
193
+ },
194
+ 112: { # GEO_NPC_F0_BBA
195
+ "animset": 87, "head_focus": (64, 1), "logical_size": (32, 32, 45),
196
+ "anims": {"stand": 560, "walk": 603, "run": 605, "left": 602, "right": 607},
197
+ },
198
+ 113: { # GEO_NPC_F0_BND
199
+ "animset": 100, "head_focus": (64, 1), "logical_size": (20, 20, 30),
200
+ "anims": {"stand": 567, "walk": 612, "run": 609, "left": 10, "right": 11},
201
+ },
202
+ 114: { # GEO_NPC_F0_BRI
203
+ "animset": 37, "head_focus": (64, 1), "logical_size": (8, 8, 15),
204
+ "anims": {"stand": 2229, "walk": 2233, "run": 2233, "left": 2229, "right": 2229},
205
+ },
206
+ 115: { # GEO_NPC_F0_CAT
207
+ "animset": 37, "head_focus": (64, 1), "logical_size": (14, 14, 22),
208
+ "anims": {"stand": 578, "walk": 621, "run": 619, "left": 2050, "right": 2044},
209
+ },
210
+ 116: { # GEO_NPC_F0_HEK
211
+ "animset": 87, "head_focus": (64, 1), "logical_size": (20, 20, 30),
212
+ "anims": {"stand": 589, "walk": 624, "run": 626, "left": 627, "right": 622},
213
+ },
214
+ 117: { # GEO_NPC_F0_JJY
215
+ "animset": 87, "head_focus": (64, 1), "logical_size": (26, 26, 37),
216
+ "anims": {"stand": 617, "walk": 629, "run": 630, "left": 12, "right": 13},
217
+ },
218
+ 118: { # GEO_NPC_F0_OFF
219
+ "animset": 87, "head_focus": (72, 1), "logical_size": (20, 20, 30),
220
+ "anims": {"stand": 1921, "walk": 1920, "run": 1924, "left": 1926, "right": 1918},
221
+ },
222
+ 119: { # GEO_NPC_F0_RMF
223
+ "animset": 100, "head_focus": (64, 1), "logical_size": (14, 14, 22),
224
+ "anims": {"stand": 641, "walk": 637, "run": 640, "left": 14, "right": 15},
225
+ },
226
+ 120: { # GEO_NPC_F0_RMM
227
+ "animset": 100, "head_focus": (64, 1), "logical_size": (20, 20, 30),
228
+ "anims": {"stand": 653, "walk": 24, "run": 28, "left": 27, "right": 26},
229
+ },
230
+ 121: { # GEO_NPC_F0_RTC
231
+ "animset": 62, "head_focus": (65, 1), "logical_size": (14, 14, 22),
232
+ "anims": {"stand": 664, "walk": 94, "run": 95, "left": 93, "right": 97},
233
+ },
234
+ 122: { # GEO_NPC_F0_TCK
235
+ "animset": 87, "head_focus": (64, 1), "logical_size": (26, 26, 37),
236
+ "anims": {"stand": 696, "walk": 645, "run": 646, "left": 643, "right": 647},
237
+ },
238
+ 123: { # GEO_NPC_F0_TMF
239
+ "animset": 100, "head_focus": (64, 1), "logical_size": (32, 32, 45),
240
+ "anims": {"stand": 704, "walk": 648, "run": 652, "left": 649, "right": 650},
241
+ },
242
+ 124: { # GEO_NPC_F0_TMM
243
+ "animset": 100, "head_focus": (64, 1), "logical_size": (32, 32, 45),
244
+ "anims": {"stand": 706, "walk": 655, "run": 657, "left": 17, "right": 16},
245
+ },
246
+ 126: { # GEO_NPC_F0_WRK
247
+ "animset": 87, "head_focus": (64, 1), "logical_size": (26, 26, 37),
248
+ "anims": {"stand": 712, "walk": 662, "run": 661, "left": 18, "right": 19},
249
+ },
250
+ 127: { # GEO_NPC_F1_BND
251
+ "animset": 87, "head_focus": (64, 1), "logical_size": (20, 20, 30),
252
+ "anims": {"stand": 725, "walk": 669, "run": 666, "left": 667, "right": 670},
253
+ },
254
+ 128: { # GEO_NPC_F1_BRI
255
+ "animset": 37, "head_focus": (64, 1), "logical_size": (8, 8, 15),
256
+ "anims": {"stand": 2235, "walk": 2239, "run": 2239, "left": 2235, "right": 2235},
257
+ },
258
+ 129: { # GEO_NPC_F1_MOG
259
+ "animset": 50, "head_focus": (4, 1), "logical_size": (14, 14, 22),
260
+ "anims": {"stand": 2904, "walk": 2927, "run": 2907, "left": 2923, "right": 2911},
261
+ },
262
+ 130: { # GEO_NPC_F2_BND
263
+ "animset": 87, "head_focus": (64, 1), "logical_size": (20, 20, 30),
264
+ "anims": {"stand": 738, "walk": 151, "run": 61, "left": 64, "right": 92},
265
+ },
266
+ 131: { # GEO_NPC_F3_BND
267
+ "animset": 87, "head_focus": (64, 1), "logical_size": (20, 20, 30),
268
+ "anims": {"stand": 743, "walk": 678, "run": 673, "left": 674, "right": 677},
269
+ },
270
+ 132: { # GEO_NPC_F4_BND
271
+ "animset": 100, "head_focus": (64, 1), "logical_size": (20, 20, 30),
272
+ "anims": {"stand": 749, "walk": 683, "run": 680, "left": 20, "right": 21},
273
+ },
274
+ 173: { # GEO_NPC_F0_BAR
275
+ "animset": 100, "head_focus": (72, 1), "logical_size": (20, 20, 30),
276
+ "anims": {"stand": 85, "walk": 82, "run": 79, "left": 89, "right": 81},
277
+ },
278
+ 174: { # GEO_NPC_F0_FRC
279
+ "animset": 37, "head_focus": (64, 1), "logical_size": (14, 14, 22),
280
+ "anims": {"stand": 1531, "walk": 1528, "run": 1528, "left": 1530, "right": 1529},
281
+ },
282
+ 175: { # GEO_NPC_F0_FRF
283
+ "animset": 37, "head_focus": (64, 1), "logical_size": (14, 14, 22),
284
+ "anims": {"stand": 1531, "walk": 1528, "run": 1528, "left": 1530, "right": 1529},
285
+ },
286
+ 176: { # GEO_NPC_F0_FRM
287
+ "animset": 37, "head_focus": (64, 1), "logical_size": (14, 14, 22),
288
+ "anims": {"stand": 1531, "walk": 1528, "run": 1528, "left": 1530, "right": 1529},
289
+ },
290
+ 177: { # GEO_NPC_F0_G16
291
+ "animset": 100, "head_focus": (80, 0), "logical_size": (26, 26, 37),
292
+ "anims": {"stand": 10357, "walk": 10352, "run": 10348, "left": 10355, "right": 10351},
293
+ },
294
+ 178: { # GEO_NPC_F0_TAD
295
+ "animset": 37, "head_focus": (64, 1), "logical_size": (8, 8, 15),
296
+ "anims": {"stand": 1536, "walk": 1535, "run": 1535, "left": 1535, "right": 1535},
297
+ },
298
+ 179: { # GEO_NPC_F1_DAL
299
+ "animset": 100, "head_focus": (0, 65), "logical_size": (20, 20, 30),
300
+ "anims": {"stand": 1645, "walk": 1661, "run": 1649, "left": 1653, "right": 1657},
301
+ },
302
+ 180: { # GEO_NPC_F1_DAC
303
+ "animset": 75, "head_focus": (0, 65), "logical_size": (14, 14, 22),
304
+ "anims": {"stand": 1540, "walk": 459, "run": 100, "left": 407, "right": 248},
305
+ },
306
+ 181: { # GEO_NPC_F1_RAS
307
+ "animset": 100, "head_focus": (0, 65), "logical_size": (20, 20, 30),
308
+ "anims": {"stand": 4676, "walk": 4699, "run": 4678, "left": 4680, "right": 4686},
309
+ },
310
+ 182: { # GEO_NPC_F4_CSO
311
+ "animset": 100, "head_focus": (64, 1), "logical_size": (20, 20, 30),
312
+ "anims": {"stand": 2370, "walk": 2379, "run": 2372, "left": 2377, "right": 2375},
313
+ },
314
+ 183: { # GEO_NPC_F4_APM
315
+ "animset": 100, "head_focus": (64, 1), "logical_size": (20, 20, 30),
316
+ "anims": {"stand": 555, "walk": 599, "run": 598, "left": 597, "right": 601},
317
+ },
318
+ 187: { # GEO_NPC_F0_OSC
319
+ "animset": 100, "head_focus": (64, 1), "logical_size": (20, 20, 30),
320
+ "anims": {"stand": 2494, "walk": 2501, "run": 2501, "left": 2499, "right": 2497},
321
+ },
322
+ 188: { # GEO_NPC_F1_CSM
323
+ "animset": 75, "head_focus": (64, 1), "logical_size": (26, 26, 37),
324
+ "anims": {"stand": 2516, "walk": 2525, "run": 2518, "left": 2523, "right": 2521},
325
+ },
326
+ 189: { # GEO_NPC_F2_CSM
327
+ "animset": 112, "head_focus": (64, 1), "logical_size": (20, 20, 30),
328
+ "anims": {"stand": 2526, "walk": 2535, "run": 2528, "left": 2533, "right": 2531},
329
+ },
330
+ 193: { # GEO_NPC_F0_DOG
331
+ "animset": 37, "head_focus": (64, 1), "logical_size": (20, 20, 30),
332
+ "anims": {"stand": 2884, "walk": 2901, "run": 2889, "left": 2895, "right": 2891},
333
+ },
334
+ 194: { # GEO_NPC_F0_CSA
335
+ "animset": 87, "head_focus": (64, 1), "logical_size": (20, 20, 30),
336
+ "anims": {"stand": 1511, "walk": 1641, "run": 1513, "left": 1515, "right": 1615},
337
+ },
338
+ 195: { # GEO_NPC_F0_GUD
339
+ "animset": 87, "head_focus": (64, 1), "logical_size": (26, 26, 37),
340
+ "anims": {"stand": 7173, "walk": 7170, "run": 7165, "left": 7172, "right": 7168},
341
+ },
342
+ 196: { # GEO_NPC_F2_MOG
343
+ "animset": 37, "head_focus": (4, 1), "logical_size": (14, 14, 22),
344
+ "anims": {"stand": 1125, "walk": 1134, "run": 1128, "left": 1132, "right": 1130},
345
+ },
346
+ 197: { # GEO_NPC_F3_CSM
347
+ "animset": 75, "head_focus": (64, 1), "logical_size": (32, 32, 45),
348
+ "anims": {"stand": 2536, "walk": 2545, "run": 2538, "left": 2543, "right": 2541},
349
+ },
350
+ 198: { # GEO_NPC_F4_MOG
351
+ "animset": 37, "head_focus": (4, 1), "logical_size": (8, 8, 15),
352
+ "anims": {"stand": 6045, "walk": 6052, "run": 6048, "left": 6054, "right": 6050},
353
+ },
354
+ 199: { # GEO_NPC_F5_MOG
355
+ "animset": 50, "head_focus": (4, 1), "logical_size": (8, 8, 15),
356
+ "anims": {"stand": 2904, "walk": 2927, "run": 2907, "left": 2923, "right": 2911},
357
+ },
358
+ 206: { # GEO_NPC_F0_BUC
359
+ "animset": 75, "head_focus": (0, 65), "logical_size": (14, 14, 22),
360
+ "anims": {"stand": 3174, "walk": 3183, "run": 3176, "left": 3181, "right": 3179},
361
+ },
362
+ 208: { # GEO_NPC_F0_CSM
363
+ "animset": 100, "head_focus": (64, 1), "logical_size": (20, 20, 30),
364
+ "anims": {"stand": 2506, "walk": 2515, "run": 2508, "left": 2513, "right": 2511},
365
+ },
366
+ 209: { # GEO_NPC_F0_FUK
367
+ "animset": 112, "head_focus": (0, 65), "logical_size": (26, 26, 37),
368
+ "anims": {"stand": 2783, "walk": 8078, "run": 8078, "left": 8076, "right": 8074},
369
+ },
370
+ 210: { # GEO_NPC_F0_STR
371
+ "animset": 100, "head_focus": (81, 0), "logical_size": (20, 20, 30),
372
+ "anims": {"stand": 2968, "walk": 2965, "run": 2969, "left": 2964, "right": 2972},
373
+ },
374
+ 211: { # GEO_NPC_F2_CSA
375
+ "animset": 100, "head_focus": (64, 1), "logical_size": (20, 20, 30),
376
+ "anims": {"stand": 2785, "walk": 2794, "run": 2787, "left": 2792, "right": 2790},
377
+ },
378
+ 212: { # GEO_NPC_F3_MOG
379
+ "animset": 50, "head_focus": (4, 1), "logical_size": (14, 14, 22),
380
+ "anims": {"stand": 1152, "walk": 1161, "run": 1155, "left": 1159, "right": 1157},
381
+ },
382
+ 213: { # GEO_NPC_F0_G20
383
+ "animset": 100, "head_focus": (80, 0), "logical_size": (20, 20, 30),
384
+ "anims": {"stand": 3201, "walk": 3196, "run": 3196, "left": 3199, "right": 3195},
385
+ },
386
+ 216: { # GEO_NPC_F0_BUF
387
+ "animset": 100, "head_focus": (0, 65), "logical_size": (20, 20, 30),
388
+ "anims": {"stand": 3190, "walk": 3189, "run": 3184, "left": 3193, "right": 3187},
389
+ },
390
+ 217: { # GEO_NPC_F0_CSO
391
+ "animset": 100, "head_focus": (64, 1), "logical_size": (20, 20, 30),
392
+ "anims": {"stand": 2370, "walk": 2379, "run": 2372, "left": 2377, "right": 2375},
393
+ },
394
+ 218: { # GEO_NPC_F2_CSO
395
+ "animset": 87, "head_focus": (64, 1), "logical_size": (32, 32, 45),
396
+ "anims": {"stand": 14667, "walk": 14674, "run": 14668, "left": 14670, "right": 14672},
397
+ },
398
+ 219: { # GEO_NPC_F3_CSO
399
+ "animset": 100, "head_focus": (80, 0), "logical_size": (20, 20, 30),
400
+ "anims": {"stand": 14679, "walk": 14686, "run": 14680, "left": 14682, "right": 14684},
401
+ },
402
+ 220: { # GEO_NPC_F0_MOG
403
+ "animset": 50, "head_focus": (4, 1), "logical_size": (14, 14, 22),
404
+ "anims": {"stand": 2904, "walk": 2927, "run": 2907, "left": 2923, "right": 2911},
405
+ },
406
+ 245: { # GEO_MON_F0_BFF
407
+ "animset": 93, "head_focus": (64, 1), "logical_size": (14, 14, 22),
408
+ "anims": {"stand": 10372, "walk": 10370, "run": 10376, "left": 10374, "right": 10368},
409
+ },
410
+ 246: { # GEO_MON_F0_BAN
411
+ "animset": 93, "head_focus": (64, 1), "logical_size": (14, 14, 22),
412
+ "anims": {"stand": 7033, "walk": 7027, "run": 7027, "left": 7035, "right": 7031},
413
+ },
414
+ 247: { # GEO_MON_F0_FFG
415
+ "animset": 93, "head_focus": (64, 1), "logical_size": (14, 14, 22),
416
+ "anims": {"stand": 7659, "walk": 8051, "run": 7661, "left": 8557, "right": 8560},
417
+ },
418
+ 248: { # GEO_MON_F0_MUU
419
+ "animset": 93, "head_focus": (64, 1), "logical_size": (14, 14, 22),
420
+ "anims": {"stand": 7664, "walk": 7666, "run": 7666, "left": 6682, "right": 6686},
421
+ },
422
+ 252: { # GEO_MON_F0_AMD
423
+ "animset": 93, "head_focus": (64, 1), "logical_size": (1, 180, 1),
424
+ "anims": {"stand": 2437, "walk": 9784, "run": 9784, "left": 12006, "right": 12006},
425
+ },
426
+ 253: { # GEO_NPC_F2_APF
427
+ "animset": 87, "head_focus": (72, 1), "logical_size": (20, 20, 30),
428
+ "anims": {"stand": 552, "walk": 428, "run": 427, "left": 430, "right": 426},
429
+ },
430
+ 259: { # GEO_NPC_F0_CHO
431
+ "animset": 125, "head_focus": (4, 1), "logical_size": (32, 32, 45),
432
+ "anims": {"stand": 2953, "walk": 2962, "run": 2960, "left": 2958, "right": 2956},
433
+ },
434
+ 260: { # GEO_NPC_F0_CHC
435
+ "animset": 62, "head_focus": (4, 1), "logical_size": (20, 20, 30),
436
+ "anims": {"stand": 458, "walk": 2952, "run": 2952, "left": 873, "right": 871},
437
+ },
438
+ 268: { # GEO_NPC_F0_DOK
439
+ "animset": 75, "head_focus": (0, 65), "logical_size": (32, 32, 45),
440
+ "anims": {"stand": 4459, "walk": 4468, "run": 4462, "left": 4466, "right": 4464},
441
+ },
442
+ 269: { # GEO_NPC_F0_FLS
443
+ "animset": 100, "head_focus": (0, 65), "logical_size": (26, 26, 37),
444
+ "anims": {"stand": 4662, "walk": 4669, "run": 4668, "left": 4666, "right": 4664},
445
+ },
446
+ 272: { # GEO_NPC_F0_CLD
447
+ "animset": 100, "head_focus": (0, 65), "logical_size": (32, 32, 45),
448
+ "anims": {"stand": 3202, "walk": 8042, "run": 8042, "left": 8044, "right": 8040},
449
+ },
450
+ 282: { # GEO_NPC_F4_CSM
451
+ "animset": 75, "head_focus": (64, 1), "logical_size": (26, 26, 37),
452
+ "anims": {"stand": 2516, "walk": 2525, "run": 2518, "left": 2523, "right": 2521},
453
+ },
454
+ 360: { # GEO_NPC_F5_CSM
455
+ "animset": 112, "head_focus": (64, 1), "logical_size": (20, 20, 30),
456
+ "anims": {"stand": 2526, "walk": 2535, "run": 2528, "left": 2533, "right": 2531},
457
+ },
458
+ 376: { # GEO_NPC_F2_JJY
459
+ "animset": 87, "head_focus": (64, 1), "logical_size": (26, 26, 37),
460
+ "anims": {"stand": 617, "walk": 629, "run": 630, "left": 12, "right": 13},
461
+ },
462
+ 412: { # GEO_NPC_F0_HTH
463
+ "animset": 100, "head_focus": (0, 65), "logical_size": (20, 20, 30),
464
+ "anims": {"stand": 7135, "walk": 7134, "run": 7139, "left": 7142, "right": 7132},
465
+ },
466
+ 417: { # GEO_NPC_F0_G19
467
+ "animset": 100, "head_focus": (80, 0), "logical_size": (20, 20, 30),
468
+ "anims": {"stand": 7148, "walk": 7161, "run": 7153, "left": 7156, "right": 7152},
469
+ },
470
+ 418: { # GEO_NPC_F1_TGR
471
+ "animset": 62, "head_focus": (64, 1), "logical_size": (14, 14, 22),
472
+ "anims": {"stand": 687, "walk": 5299, "run": 5295, "left": 5297, "right": 5298},
473
+ },
474
+ 420: { # GEO_NPC_F0_DOC
475
+ "animset": 62, "head_focus": (0, 65), "logical_size": (20, 20, 30),
476
+ "anims": {"stand": 7255, "walk": 7264, "run": 7258, "left": 7262, "right": 7260},
477
+ },
478
+ 421: { # GEO_NPC_F0_DOF
479
+ "animset": 75, "head_focus": (0, 65), "logical_size": (26, 26, 37),
480
+ "anims": {"stand": 7271, "walk": 7268, "run": 7266, "left": 7274, "right": 7270},
481
+ },
482
+ 422: { # GEO_NPC_F0_DOM
483
+ "animset": 75, "head_focus": (0, 65), "logical_size": (26, 26, 37),
484
+ "anims": {"stand": 7275, "walk": 7288, "run": 7280, "left": 7284, "right": 7282},
485
+ },
486
+ 423: { # GEO_NPC_F1_FRM
487
+ "animset": 37, "head_focus": (64, 1), "logical_size": (14, 14, 22),
488
+ "anims": {"stand": 1531, "walk": 1528, "run": 1528, "left": 1530, "right": 1529},
489
+ },
490
+ 424: { # GEO_NPC_F1_TBY
491
+ "animset": 62, "head_focus": (64, 1), "logical_size": (14, 14, 22),
492
+ "anims": {"stand": 691, "walk": 545, "run": 543, "left": 546, "right": 544},
493
+ },
494
+ 431: { # GEO_NPC_F0_NAN
495
+ "animset": 100, "head_focus": (0, 65), "logical_size": (26, 26, 37),
496
+ "anims": {"stand": 7347, "walk": 7346, "run": 7344, "left": 7350, "right": 7342},
497
+ },
498
+ 447: { # GEO_NPC_F0_CLM
499
+ "animset": 100, "head_focus": (0, 65), "logical_size": (20, 20, 30),
500
+ "anims": {"stand": 7525, "walk": 7534, "run": 7532, "left": 7530, "right": 7528},
501
+ },
502
+ 530: { # GEO_MON_F0_FFF
503
+ "animset": 93, "head_focus": (64, 1), "logical_size": (14, 14, 22),
504
+ "anims": {"stand": 760, "walk": 12721, "run": 12721, "left": 12721, "right": 12721},
505
+ },
506
+ 534: { # GEO_MON_F0_RAM
507
+ "animset": 93, "head_focus": (64, 1), "logical_size": (14, 14, 22),
508
+ "anims": {"stand": 9739, "walk": 11042, "run": 11042, "left": 11042, "right": 11042},
509
+ },
510
+ 542: { # GEO_NPC_F0_CHD
511
+ "animset": 137, "head_focus": (4, 1), "logical_size": (40, 40, 55),
512
+ "anims": {"stand": 11363, "walk": 11363, "run": 11363, "left": 11363, "right": 11363},
513
+ },
514
+ 543: { # GEO_NPC_F1_G17
515
+ "animset": 87, "head_focus": (80, 0), "logical_size": (26, 26, 37),
516
+ "anims": {"stand": 1310, "walk": 1309, "run": 1306, "left": 1308, "right": 1307},
517
+ },
518
+ 544: { # GEO_NPC_F1_OSC
519
+ "animset": 100, "head_focus": (64, 1), "logical_size": (20, 20, 30),
520
+ "anims": {"stand": 2494, "walk": 2501, "run": 2501, "left": 2499, "right": 2497},
521
+ },
522
+ 547: { # GEO_NPC_F1_HTH
523
+ "animset": 100, "head_focus": (0, 65), "logical_size": (20, 20, 30),
524
+ "anims": {"stand": 7135, "walk": 7134, "run": 7139, "left": 7142, "right": 7132},
525
+ },
526
+ 549: { # GEO_NPC_F1_DOC
527
+ "animset": 62, "head_focus": (0, 65), "logical_size": (20, 20, 30),
528
+ "anims": {"stand": 7255, "walk": 7264, "run": 7258, "left": 7262, "right": 7260},
529
+ },
530
+ 550: { # GEO_NPC_F1_DOF
531
+ "animset": 75, "head_focus": (0, 65), "logical_size": (26, 26, 37),
532
+ "anims": {"stand": 7271, "walk": 7268, "run": 7266, "left": 7274, "right": 7270},
533
+ },
534
+ 551: { # GEO_NPC_F1_DOM
535
+ "animset": 75, "head_focus": (0, 65), "logical_size": (26, 26, 37),
536
+ "anims": {"stand": 7275, "walk": 7288, "run": 7280, "left": 7284, "right": 7282},
537
+ },
538
+ 559: { # GEO_NPC_F1_APM
539
+ "animset": 100, "head_focus": (64, 1), "logical_size": (20, 20, 30),
540
+ "anims": {"stand": 555, "walk": 599, "run": 598, "left": 597, "right": 601},
541
+ },
542
+ 564: { # GEO_NPC_F1_DOK
543
+ "animset": 75, "head_focus": (0, 65), "logical_size": (32, 32, 45),
544
+ "anims": {"stand": 4459, "walk": 4468, "run": 4462, "left": 4466, "right": 4464},
545
+ },
546
+ 574: { # GEO_MON_F0_MKM
547
+ "animset": 61, "head_focus": (64, 1), "logical_size": (14, 14, 22),
548
+ "anims": {"stand": 3108, "walk": 3128, "run": 3116, "left": 3120, "right": 3124},
549
+ },
550
+ 597: { # GEO_NPC_F3_HUF
551
+ "animset": 87, "head_focus": (0, 65), "logical_size": (20, 20, 30),
552
+ "anims": {"stand": 1227, "walk": 1221, "run": 1220, "left": 1223, "right": 1219},
553
+ },
554
+ 598: { # GEO_NPC_F1_GUD
555
+ "animset": 87, "head_focus": (64, 1), "logical_size": (26, 26, 37),
556
+ "anims": {"stand": 7173, "walk": 7170, "run": 7165, "left": 7172, "right": 7168},
557
+ },
558
+ 599: { # GEO_NPC_F3_JJY
559
+ "animset": 87, "head_focus": (64, 1), "logical_size": (26, 26, 37),
560
+ "anims": {"stand": 617, "walk": 629, "run": 630, "left": 12, "right": 13},
561
+ },
562
+ 600: { # GEO_NPC_F7_CSM
563
+ "animset": 100, "head_focus": (64, 1), "logical_size": (20, 20, 30),
564
+ "anims": {"stand": 2506, "walk": 2515, "run": 2508, "left": 2513, "right": 2511},
565
+ },
566
+ 603: { # GEO_NPC_F2_DAL
567
+ "animset": 100, "head_focus": (0, 65), "logical_size": (20, 20, 30),
568
+ "anims": {"stand": 1645, "walk": 1661, "run": 1649, "left": 1653, "right": 1657},
569
+ },
570
+ 604: { # GEO_NPC_F1_DAF
571
+ "animset": 62, "head_focus": (8, 65), "logical_size": (14, 14, 22),
572
+ "anims": {"stand": 1303, "walk": 1296, "run": 1295, "left": 1299, "right": 1297},
573
+ },
574
+ 612: { # GEO_NPC_F1_G20
575
+ "animset": 100, "head_focus": (80, 0), "logical_size": (20, 20, 30),
576
+ "anims": {"stand": 3201, "walk": 3196, "run": 3196, "left": 3199, "right": 3195},
577
+ },
578
+ 613: { # GEO_NPC_F2_CHO
579
+ "animset": 125, "head_focus": (4, 1), "logical_size": (32, 32, 45),
580
+ "anims": {"stand": 2953, "walk": 2962, "run": 2960, "left": 2958, "right": 2956},
581
+ },
582
+ 614: { # GEO_NPC_F3_CHO
583
+ "animset": 125, "head_focus": (4, 1), "logical_size": (32, 32, 45),
584
+ "anims": {"stand": 2953, "walk": 2962, "run": 2960, "left": 2958, "right": 2956},
585
+ },
586
+ 615: { # GEO_NPC_F4_CHO
587
+ "animset": 125, "head_focus": (4, 1), "logical_size": (32, 32, 45),
588
+ "anims": {"stand": 2953, "walk": 2962, "run": 2960, "left": 2958, "right": 2956},
589
+ },
590
+ 624: { # GEO_NPC_F1_CAT
591
+ "animset": 37, "head_focus": (64, 1), "logical_size": (14, 14, 22),
592
+ "anims": {"stand": 578, "walk": 621, "run": 619, "left": 2050, "right": 2044},
593
+ },
594
+ 643: { # GEO_NPC_F2_DAC
595
+ "animset": 75, "head_focus": (0, 65), "logical_size": (14, 14, 22),
596
+ "anims": {"stand": 1540, "walk": 459, "run": 100, "left": 407, "right": 248},
597
+ },
598
+ 646: { # GEO_NPC_F1_APF
599
+ "animset": 87, "head_focus": (72, 1), "logical_size": (20, 20, 30),
600
+ "anims": {"stand": 552, "walk": 428, "run": 427, "left": 430, "right": 426},
601
+ },
602
+ 647: { # GEO_NPC_F1_JJY
603
+ "animset": 87, "head_focus": (64, 1), "logical_size": (26, 26, 37),
604
+ "anims": {"stand": 617, "walk": 629, "run": 630, "left": 12, "right": 13},
605
+ },
606
+ 677: { # GEO_NPC_F1_KAC
607
+ "animset": 75, "head_focus": (4, 1), "logical_size": (26, 26, 37),
608
+ "anims": {"stand": 1235, "walk": 1233, "run": 1231, "left": 1232, "right": 1229},
609
+ },
610
+ 678: { # GEO_NPC_F2_KAC
611
+ "animset": 75, "head_focus": (4, 1), "logical_size": (26, 26, 37),
612
+ "anims": {"stand": 1235, "walk": 1233, "run": 1231, "left": 1232, "right": 1229},
613
+ },
614
+ 5468: { # GEO_NPC_F0_BMG
615
+ "animset": 87, "head_focus": (0, 65), "logical_size": (26, 26, 37),
616
+ "anims": {"stand": 2029, "walk": 2038, "run": 2032, "left": 2036, "right": 2034},
617
+ },
618
+ 5474: { # GEO_NPC_F0_COK
619
+ "animset": 62, "head_focus": (64, 1), "logical_size": (14, 14, 22),
620
+ "anims": {"stand": 580, "walk": 766, "run": 763, "left": 765, "right": 764},
621
+ },
622
+ 5476: { # GEO_NPC_F0_G18
623
+ "animset": 87, "head_focus": (80, 0), "logical_size": (20, 20, 30),
624
+ "anims": {"stand": 800, "walk": 820, "run": 819, "left": 801, "right": 803},
625
+ },
626
+ 5478: { # GEO_NPC_F0_HUM
627
+ "animset": 100, "head_focus": (0, 65), "logical_size": (20, 20, 30),
628
+ "anims": {"stand": 926, "walk": 924, "run": 923, "left": 925, "right": 922},
629
+ },
630
+ 5492: { # GEO_NPC_F0_TGR
631
+ "animset": 62, "head_focus": (64, 1), "logical_size": (14, 14, 22),
632
+ "anims": {"stand": 687, "walk": 5299, "run": 5295, "left": 5297, "right": 5298},
633
+ },
634
+ }