SSBM Decomp
Loading...
Searching...
No Matches
forward.h
Go to the documentation of this file.
1#ifndef MELEE_IT_FORWARD_H
2#define MELEE_IT_FORWARD_H
3
4#include "ft/forward.h"
5#include <baselib/forward.h>
6
7typedef struct Article Article;
8typedef struct BobOmbRain BobOmbRain;
10typedef struct CameraBoxFlags CameraBoxFlags;
12typedef struct ECB ECB;
13typedef struct flag32 flag32;
14typedef struct HSD_ObjAllocUnk HSD_ObjAllocUnk;
20typedef struct Item Item;
22typedef struct ItemAttr ItemAttr;
23typedef struct ItemCommonData ItemCommonData;
24typedef struct ItemDynamics ItemDynamics;
25typedef struct ItemModelDesc ItemModelDesc;
26typedef struct ItemModStruct ItemModStruct;
27typedef struct ItemStateArray ItemStateArray;
28typedef struct ItemStateDesc ItemStateDesc;
30typedef struct SpawnItem SpawnItem;
32
33#ifdef M2CTX
34typedef struct Item_GObj Item_GObj;
35struct Item_GObj {
36 /* +0 */ u16 classifier;
37 /* +2 */ u8 p_link;
38 /* +3 */ u8 gx_link;
39 /* +4 */ u8 p_priority;
40 /* +5 */ u8 render_priority;
41 /* +6 */ u8 obj_kind;
42 /* +7 */ u8 user_data_kind;
43 /* +8 */ Item_GObj* next;
44 /* +C */ Item_GObj* prev;
45 /* +10 */ Item_GObj* next_gx;
46 /* +14 */ Item_GObj* prev_gx;
47 /* +18 */ HSD_GObjProc* proc;
48 /* +1C */ void (*rendered)(Item_GObj* gobj, s32 code);
49 /* +20 */ u64 gxlink_prios;
50 /* +28 */ HSD_JObj* hsd_obj;
51 /* +2C */ Item* user_data;
52 /* +30 */ void (*user_data_remove_func)(Item* data);
53 /* +34 */ void* x34_unk;
54};
55#else
57#endif
58
59typedef void (*ItCmd)(Item_GObj* gobj, FtCmdState* cmd);
60
72
79
80// Combine with Item_UnkKinds?
81typedef enum Item_HoldKinds {
82 ITEM_HOLD_0, // Common items, besides It_Kind_Foods
83 ITEM_HOLD_1, // Item-related items
84 ITEM_HOLD_2, // It_Kind_Foods
85 ITEM_HOLD_3, // Pokemon_Random
86 ITEM_HOLD_4, // Monsters 2 and Stage-specific items, besides
87 // It_Kind_Arwing_Laser, It_Kind_GreatFox_Laser, and
88 // It_Kind_Kyasarin_Egg
89 ITEM_HOLD_5, // (Stage-specific projectile items) It_Kind_Arwing_Laser,
90 // It_Kind_GreatFox_Laser, and It_Kind_Kyasarin_Egg
91 ITEM_HOLD_6, // Monster items, besides It_Kind_Octarock_Stone
92 ITEM_HOLD_7, // It_Kind_Octarock_Stone
93 ITEM_HOLD_8, // Character-related items, besides It_Kind_Unk4 and
94 // It_Kind_Coin
95 ITEM_HOLD_9, // Pokemon items
96 ITEM_HOLD_10, // Pokemon-related items
97 ITEM_HOLD_11, // It_Kind_Coin
98 ITEM_HOLD_12, // It_Kind_Unk4
99 // More?
101
102// Based on "ID Lists" from the SSBM datasheet, in-game references, and further
103// research by VetriTheRetri
104// https://docs.google.com/spreadsheets/d/1JX2w-r2fuvWuNgGb6D3Cs4wHQKLFegZe2jhbBuIhCG8
105// Development JP name strings are listed starting at data address 0x803EA7A8
106
107typedef enum ItemKind {
108 // COMMON ITEMS
109
110 It_Kind_Capsule, // Capsule
111 It_Kind_Box, // Crate
112 It_Kind_Taru, // Barrel
114 It_Kind_Kusudama, // Party Ball (Kusudama)
115 It_Kind_TaruCann, // Barrel Cannon (TaruCann)
116 It_Kind_BombHei, // Bob-omb (BombHei)
117 It_Kind_Dosei, // Mr. Saturn (Dosei)
118 It_Kind_Heart, // Heart Container
119 It_Kind_Tomato, // Maxim Tomato
120 It_Kind_Star, // Starman (Super Star)
121 It_Kind_Bat, // Home-Run Bat
122 It_Kind_Sword, // Beam Sword
123 It_Kind_Parasol, // Parasol
124 It_Kind_G_Shell, // Green Shell (G Shell)
125 It_Kind_R_Shell, // Red Shell (R Shell)
126 It_Kind_L_Gun, // Ray Gun (L Gun)
127 It_Kind_Freeze, // Freezie (Freeze)
129 It_Kind_MSBomb, // Proximity Mine (MSBomb)
130 It_Kind_Flipper, // Flipper
131 It_Kind_S_Scope, // Super Scope (S Scope)
132 It_Kind_StarRod, // Star Rod
133 It_Kind_LipStick, // Lip's Stick
134 It_Kind_Harisen, // Fan (Harisen)
135 It_Kind_F_Flower, // Fire Flower (F Flower)
136 It_Kind_Kinoko, // Super Mushroom (Kinoko)
137 It_Kind_DKinoko, // Poison Mushroom (DKinoko)
138 It_Kind_Hammer, // Hammer
139 It_Kind_WStar, // Warp Star (WStar)
140 It_Kind_ScBall, // Screw Attack (ScBall)
141 It_Kind_RabbitC, // Bunny Hood (RabbitC)
142 It_Kind_MetalB, // Metal Box
143 It_Kind_Spycloak, // Cloaking Device (Spycloak)
144 It_Kind_M_Ball, // Poke Ball (M Ball)
145
146 // ITEM-RELATED
147
148 It_Kind_L_Gun_Ray, // Ray Gun recoil effect (?)
149 It_Kind_StarRod_Star, // Star Rod Star
150 It_Kind_LipStick_Spore, // Lips Stick Dust
151 It_Kind_S_Scope_Beam, // Super Scope Beam
152 It_Kind_L_Gun_Beam, // Ray Gun Beam
153 It_Kind_Hammer_Head, // Hammer Head
155 It_Kind_EvYoshiEgg, // Yoshi's Egg (Event)
156
157 // MONSTERS
158
159 It_Kind_Kuriboh, // Goomba (Kuriboh)
160 It_Kind_Leadead, // Redead (Leadead)
161 It_Kind_Octarock, // Octarok (Octarock)
162 It_Kind_Ottosea, // Ottosea
163 It_Kind_Octarock_Stone, // Stone (Octarok Projectile)
164
165 // CHARACTER-RELATED
166
167 It_Kind_Mario_Fire, // Mario's fireball
168 It_Kind_DrMario_Vitamin, // Dr. Mario's pill
169 It_Kind_Kirby_CBeam, // Kirby's Cutter beam
170 It_Kind_Kirby_Hammer, // Kirby's Hammer
171 It_Kind_Unk1, // Maybe Kirby copy star?
173 It_Kind_Fox_Laser, // Fox's Laser
174 It_Kind_Falco_Laser, // Falco's Laser
175 It_Kind_Fox_Illusion, // Fox's Illusion
176 It_Kind_Falco_Phantasm, // Falco's Phantasm
177 It_Kind_Link_Bomb, // Link's bomb
178 It_Kind_CLink_Bomb, // Young Link's bomb
179 It_Kind_Link_Boomerang, // Link's boomerang
180 It_Kind_CLink_Boomerang, // Young Link's boomerang
181 It_Kind_Link_HShot, // Link's Hookshot
182 It_Kind_CLink_HShot, // Young Link's Hookshot
183 It_Kind_Link_Arrow, // Link's Arrow
184 It_Kind_CLink_Arrow, // Young Link's Fire Arrow
186 It_Kind_Ness_PKFire_Flame, // PK Fire Pillar
187 It_Kind_Ness_PKFlush, // PK Flash (charging state)
188 It_Kind_Ness_PKThunder, // PK Thunder (Ball)
189 It_Kind_Ness_PKThunder1, // PK Thunder (Trail 1)
190 It_Kind_Ness_PKThunder2, // PK Thunder (Trail 2)
191 It_Kind_Ness_PKThunder3, // PK Thunder (Trail 3)
192 It_Kind_Ness_PKThunder4, // PK Thunder (Trail 4)
193 It_Kind_Fox_Blaster, // Fox's Blaster
194 It_Kind_Falco_Blaster, // Falco's Blaster
195 It_Kind_Link_Bow, // Link's Bow
196 It_Kind_CLink_Bow, // Young Link's Bow
197 It_Kind_Ness_PKFlush_Explode, // PK Flash (explosion)
198 It_Kind_Seak_NeedleThrow, // Needle (thrown)
199 It_Kind_Seak_NeedleHeld, // Needle (held)
200 It_Kind_Pikachu_Thunder, // Pikachu's Thunder
201 It_Kind_Pichu_Thunder, // Pichu's Thunder
202 It_Kind_Mario_Cape, // Mario's cape
203 It_Kind_DrMario_Sheet, // Dr. Mario's cape
204 It_Kind_Seak_Vanish, // Smoke (Sheik)
205 It_Kind_Yoshi_EggThrow, // Yoshi's Egg (thrown)
206 It_Kind_Yoshi_EggLay, // Yoshi's Egg Lay???
207 It_Kind_Yoshi_Star, // Yoshi's Star
208 It_Kind_Pikachu_TJolt_Ground, // Pikachu's thunder (B)
209 It_Kind_Pikachu_TJolt_Air, // Pikachu's thunder (B)
210 It_Kind_Pichu_TJolt_Ground, // Pichu's thunder (B)
211 It_Kind_Pichu_TJolt_Air, // Pichu's thunder (B)
212 It_Kind_Samus_Bomb, // Samus's bomb
213 It_Kind_Samus_Charge, // Samus's chargeshot
215 It_Kind_Samus_GBeam, // Grapple beam
216 It_Kind_Seak_Chain, // Sheik's chain
217 It_Kind_Peach_Explode, // Peach Bomber explosion?
218 It_Kind_Peach_Turnip, // Peach's turnip
219 It_Kind_Koopa_Flame, // Bowser's flame
220 It_Kind_Ness_Bat, // Ness's baseball bat
221 It_Kind_Ness_Yoyo, // Ness's Yo-Yo
222 It_Kind_Peach_Parasol, // Peach's parasol
223 It_Kind_Peach_Toad, // Peach's Toad special
224 It_Kind_Luigi_Fire, // Luigi's fireball
225 It_Kind_IceClimber_Ice, // Ice (Ice Climbers)
227 It_Kind_Zelda_DinFire, // Din's Fire (charging state)
228 It_Kind_Zelda_DinFire_Explode, // Din's Fire (explosion)
229 It_Kind_Mewtwo_Disable, // Mewtwo's Disable Projectile
230 It_Kind_Peach_ToadSpore, // Peach Toad's spore effect
231 It_Kind_Mewtwo_ShadowBall, // Mewtwo's Shadowball
232 It_Kind_IceClimber_GumStrings, // Ice Climbers Belay (Up B)
233 It_Kind_GameWatch_Greenhouse, // Mr. Game & Watch's Insecticide Spray
234 It_Kind_GameWatch_Manhole, // Mr. Game & Watch's Manhole
235 It_Kind_GameWatch_Fire, // Mr. Game & Watch's Fire (?)
236 It_Kind_GameWatch_Parachute, // Mr. Game & Watch's Parachute
237 It_Kind_GameWatch_Turtle, // Mr. Game & Watch's Turtle
238 It_Kind_GameWatch_Breath, // Mr. Game & Watch's Sparky
239 It_Kind_GameWatch_Judge, // Mr. Game & Watch's Judge
240 It_Kind_GameWatch_Panic, // Mr. Game & Watch's Oil Panic (?)
242 It_Kind_CLink_Milk, // Milk (Young Link)
243 It_Kind_GameWatch_Rescue, // Mr. Game & Watch's Firefighter
244 It_Kind_MasterHand_Laser, // Master Hand's Laser
245 It_Kind_MasterHand_Bullet, // Master Hand's Bullet
246 It_Kind_CrazyHand_Laser, // Crazy Hand's Laser
247 It_Kind_CrazyHand_Bullet, // Crazy Hand's Bullet
248 It_Kind_CrazyHand_Bomb, // Crazy Hand's Bomb
249 It_Kind_Kirby_MarioFire, // Kirby copy Mario's Fire (B)
250 It_Kind_Kirby_DrMarioVitamin, // Kirby copy Dr. Mario's Capsule (B)
251 It_Kind_Kirby_LuigiFire, // Kirby copy Luigi's Fire (B)
252 It_Kind_Kirby_IceClimberIce, // Kirby copy Ice Climbers' Ice Shot (B)
253 It_Kind_Kirby_PeachToad, // Kirby copy Peach's Toad (B)
254 It_Kind_Kirby_PeachToadSpore, // Kirby copy Toad's Spore (B)
255 It_Kind_Kirby_FoxLaser, // Kirby copy Fox's Laser (B)
256 It_Kind_Kirby_FalcoLaser, // Kirby copy Falco's Laser (B)
257 It_Kind_Kirby_FoxBlaster, // Kirby copy Fox's Blaster (B)
258 It_Kind_Kirby_FalcoBlaster, // Kirby copy Falco's Blaster (B)
259 It_Kind_Kirby_LinkArrow, // Kirby copy Link's Arrow (B)
260 It_Kind_Kirby_CLinkArrow, // Kirby copy Young Link's Arrow (B)
261 It_Kind_Kirby_LinkBow, // Kirby copy Link's Arrow (B)
262 It_Kind_Kirby_CLinkBow, // Kirby copy Young Link's Arrow (B)
263 It_Kind_Kirby_MewtwoShadowBall, // Kirby copy Mewtwo's Shadowball (B)
264 It_Kind_Kirby_NessPKFlush, // Kirby copy PK Flash (B)
265 It_Kind_Kirby_NessPKFlush_Explode, // Kirby copy PK Flash Explosion (B)
266 It_Kind_Kirby_PikachuTJolt_Ground, // Kirby copy Pikachu's Thunder (B)
267 It_Kind_Kirby_PikachuTJolt_Air, // Kirby copy Pikachu's Thunder (B)
268 It_Kind_Kirby_PichuTJolt_Ground, // Kirby copy Pichu's Thunder (B)
269 It_Kind_Kirby_PichuTJolt_Air, // Kirby copy Pichu's Thunder (B)
270 It_Kind_Kirby_SamusCharge, // Kirby copy Samus' Chargeshot (B)
271 It_Kind_Kirby_SeakNeedleThrow, // Kirby copy Sheik's Needle (thrown) (B)
272 It_Kind_Kirby_SeakNeedleHeld, // Kirby copy Sheik's Needle (ground) (B)
273 It_Kind_Kirby_KoopaFlame, // Kirby copy Bowser's Flame (B)
274 It_Kind_Kirby_GameWatchChef, // Kirby copy Mr. Game & Watch's Sausage (B)
275 It_Kind_Kirby_GameWatchChefPan, // Kirby copy Mr. Game & Watch's Chef Pan
276 // (B)
277 It_Kind_Kirby_YoshiEggLay, // Kirby's Yoshi Egg Lay??? (B)
278 It_Kind_Unk4, // (unique)
279 It_Kind_Coin, // Coin (?)
280
281 // POKEMON
282
283 Pokemon_Random, // Used for Random Pokemon value
284 Pokemon_Tosakinto, // Goldeen (Tosakinto)
285 Pokemon_Chicorita, // Chikorita (Chicorita)
286 Pokemon_Kabigon, // Snorlax (Kabigon)
287 Pokemon_Kamex, // Blastoise (Kamex)
288 Pokemon_Matadogas, // Weezing (Matadogas)
289 Pokemon_Lizardon, // Charizard (Lizardon)
290 Pokemon_Fire, // Moltres (Fire)
291 Pokemon_Thunder, // Zapdos (Thunder)
292 Pokemon_Freezer, // Articuno (Freezer)
293 Pokemon_Sonans, // Wobbuffet (Sonans)
294 Pokemon_Hassam, // Scizor (Hassam)
295 Pokemon_Unknown, // Unown (Unknown)
297 Pokemon_Raikou, // Raikou
298 Pokemon_Suikun, // Suicune (Suikun)
299 Pokemon_Kireihana, // Bellossom (Kireihana)
300 Pokemon_Marumine, // Electrode (Marumine)
302 Pokemon_Houou, // Ho-oh (Houou)
303 Pokemon_Metamon, // Ditto (Metamon)
304 Pokemon_Pippi, // Clefairy (Pippi)
305 Pokemon_Togepy, // Togepi (Togepy)
307 Pokemon_Cerebi, // Celebi (Cerebi)
308 Pokemon_Hitodeman, // Staryu (Hitodeman)
309 Pokemon_Lucky, // Chansey (Lucky)
310 Pokemon_Porygon2, // Porygon2
311 Pokemon_Hinoarashi, // Cyndaquil (Hinoarashi)
312 Pokemon_Maril, // Marill (Maril)
313 Pokemon_Fushigibana, // Venusaur (Fushigibana)
314
315 // POKEMON-RELATED
316 Pokemon_Chicorita_Leaf, // Chikorita's Leaf
317 Pokemon_Kamex_HydroPump, // Blastoise's Water
318 Pokemon_Matadogas_Gas1, // Weezing's Gas
319 Pokemon_Matadogas_Gas2, // Weezing's Gas
320 Pokemon_Lizardon_Flame1, // Charizard's Breath
321 Pokemon_Lizardon_Flame2, // Charizard's Breath
322 Pokemon_Lizardon_Flame3, // Charizard's Breath
323 Pokemon_Lizardon_Flame4, // Charizard's Breath
324 Pokemon_Unknown_Swarm, // Mini-Unowns
325 Pokemon_Lugia_Aeroblast, // Lugia's Aeroblast
326 Pokemon_Lugia_Aeroblast2, // Lugia's Aeroblast
327 Pokemon_Lugia_Aeroblast3, // Lugia's Aeroblast
328 Pokemon_Houou_SacredFire, // Ho-Oh's Flame
329 Pokemon_Hitodeman_Star, // Staryu's Star
330 Pokemon_Lucky_Egg, // Chansey's Healing Egg
331 Pokemon_Hinoarashi_Flame, // Cyndaquil's Fire
333
334 // MONSTERS 2
335
336 It_Kind_Old_Kuri, // Old Goomba (old-Kuri)
337 It_Kind_Mato, // Target (Mato)
338 It_Kind_Heiho, // Yoshi's Story Shy Guy (Heiho)
339 It_Kind_Nokonoko, // Koopa Troopa (Green) (Nokonoko)
340 It_Kind_Patapata, // Koopa Troopa (Red) (Patapata)
341 It_Kind_Likelike, // Like-Like (likelike)
342 It_Kind_Old_Lead, // Old Redead (old-lead) [invalid]
343 It_Kind_Old_Octa, // Old Octorok (old-octa) [invalid]
344 It_Kind_Old_Otto, // Old Ottosea (old-otto)
345 It_Kind_Whitebea, // Polar Bear (whitebea)
346 It_Kind_Klap, // Klaptrap (klap)
347 It_Kind_ZGShell, // Green Shell (zgshell)
348 It_Kind_ZRShell, // Red Shell (green act) (zrshell)
349
350 // STAGE-SPECIFIC
351
352 It_Kind_Tincle, // Tingle (Tincle) (on balloon)
353 It_Kind_Invalid1, // [Invalid]
354 It_Kind_Invalid2, // [Invalid]
355 It_Kind_Invalid3, // [Invalid]
356 It_Kind_WhispyApple, // Whispy Apple
357 It_Kind_WhispyHealApple, // Whispy's Healing Apple
358 It_Kind_Invalid4, // [Invalid]
359 It_Kind_Invalid5, // [Invalid]
360 It_Kind_Invalid6, // [Invalid]
361 It_Kind_Tools, // Tool (Flatzone)
362 It_Kind_Invalid7, // [Invalid]
363 It_Kind_Invalid8, // [Invalid]
364 It_Kind_Kyasarin, // Birdo (Kyasarin)
365 It_Kind_Arwing_Laser, // Arwing Laser
366 It_Kind_GreatFox_Laser, // Great Fox's Laser
367 It_Kind_Kyasarin_Egg, // Birdo's Egg
368} ItemKind;
369
370#endif
HSD_Pad prev
Definition dbinit.c:23
ItemKind
Definition forward.h:107
@ It_Kind_Pikachu_Thunder
Definition forward.h:200
@ It_Kind_Invalid2
Definition forward.h:354
@ It_Kind_Kirby_LinkBow
Definition forward.h:261
@ It_Kind_RabbitC
Definition forward.h:141
@ Pokemon_Matadogas
Definition forward.h:288
@ It_Kind_Old_Lead
Definition forward.h:342
@ It_Kind_Kirby_FoxLaser
Definition forward.h:255
@ Pokemon_Cerebi
Definition forward.h:307
@ It_Kind_DrMario_Sheet
Definition forward.h:203
@ It_Kind_Parasol
Definition forward.h:123
@ Pokemon_Marumine
Definition forward.h:300
@ It_Kind_Kusudama
Definition forward.h:114
@ It_Kind_Ness_PKFlush
Definition forward.h:187
@ Pokemon_Raikou
Definition forward.h:297
@ It_Kind_Capsule
Definition forward.h:110
@ Pokemon_Suikun
Definition forward.h:298
@ It_Kind_ZGShell
Definition forward.h:347
@ It_Kind_EvYoshiEgg
Definition forward.h:155
@ It_Kind_Samus_GBeam
Definition forward.h:215
@ Pokemon_Hinoarashi
Definition forward.h:311
@ It_Kind_Kirby_CLinkBow
Definition forward.h:262
@ It_Kind_Kirby_FoxBlaster
Definition forward.h:257
@ Pokemon_Freezer
Definition forward.h:292
@ Pokemon_Togepy
Definition forward.h:305
@ It_Kind_M_Ball
Definition forward.h:144
@ It_Kind_Kirby_DrMarioVitamin
Definition forward.h:250
@ It_Kind_GameWatch_Parachute
Definition forward.h:236
@ It_Kind_ScBall
Definition forward.h:140
@ It_Kind_Unk1
Definition forward.h:171
@ It_Kind_Kirby_MewtwoShadowBall
Definition forward.h:263
@ Pokemon_Hitodeman_Star
Definition forward.h:329
@ It_Kind_CLink_Bomb
Definition forward.h:178
@ It_Kind_Samus_Missile
Definition forward.h:214
@ Pokemon_Lugia_Aeroblast
Definition forward.h:325
@ It_Kind_Hammer_Head
Definition forward.h:153
@ It_Kind_Koopa_Flame
Definition forward.h:219
@ It_Kind_Link_HShot
Definition forward.h:181
@ It_Kind_Invalid8
Definition forward.h:363
@ It_Kind_Peach_Explode
Definition forward.h:217
@ It_Kind_Falco_Phantasm
Definition forward.h:176
@ It_Kind_Ness_PKFire_Flame
Definition forward.h:186
@ It_Kind_Egg
Definition forward.h:113
@ It_Kind_Kirby_SeakNeedleThrow
Definition forward.h:271
@ Pokemon_Mew
Definition forward.h:306
@ Pokemon_Thunder
Definition forward.h:291
@ It_Kind_Peach_Toad
Definition forward.h:223
@ It_Kind_Link_Boomerang
Definition forward.h:179
@ It_Kind_Invalid4
Definition forward.h:358
@ It_Kind_WStar
Definition forward.h:139
@ It_Kind_CLink_HShot
Definition forward.h:182
@ Pokemon_Unk
Definition forward.h:332
@ It_Kind_Arwing_Laser
Definition forward.h:365
@ It_Kind_WhispyHealApple
Definition forward.h:357
@ It_Kind_Tools
Definition forward.h:361
@ Pokemon_Lizardon_Flame4
Definition forward.h:323
@ Pokemon_Matadogas_Gas1
Definition forward.h:318
@ It_Kind_Fox_Illusion
Definition forward.h:175
@ Pokemon_Lugia_Aeroblast2
Definition forward.h:326
@ It_Kind_Pichu_Thunder
Definition forward.h:201
@ It_Kind_Ness_PKThunder2
Definition forward.h:190
@ It_Kind_MasterHand_Laser
Definition forward.h:244
@ It_Kind_Kirby_MarioFire
Definition forward.h:249
@ Pokemon_Fushigibana
Definition forward.h:313
@ Pokemon_Sonans
Definition forward.h:293
@ It_Kind_GameWatch_Turtle
Definition forward.h:237
@ It_Kind_DKinoko
Definition forward.h:137
@ It_Kind_Samus_Charge
Definition forward.h:213
@ Pokemon_Entei
Definition forward.h:296
@ It_Kind_GameWatch_Judge
Definition forward.h:239
@ It_Kind_Old_Otto
Definition forward.h:344
@ It_Kind_CLink_Arrow
Definition forward.h:184
@ It_Kind_Pichu_TJolt_Air
Definition forward.h:211
@ It_Kind_S_Scope_Beam
Definition forward.h:151
@ It_Kind_StarRod_Star
Definition forward.h:149
@ It_Kind_Ness_Bat
Definition forward.h:220
@ It_Kind_Yoshi_EggLay
Definition forward.h:206
@ It_Kind_IceClimber_Ice
Definition forward.h:225
@ It_Kind_Foods
Definition forward.h:128
@ Pokemon_Houou_SacredFire
Definition forward.h:328
@ It_Kind_Coin
Definition forward.h:279
@ It_Kind_Pichu_TJolt_Ground
Definition forward.h:210
@ It_Kind_GameWatch_Fire
Definition forward.h:235
@ It_Kind_Tincle
Definition forward.h:352
@ It_Kind_GameWatch_Chef
Definition forward.h:241
@ It_Kind_Kirby_PichuTJolt_Ground
Definition forward.h:268
@ It_Kind_Freeze
Definition forward.h:127
@ It_Kind_Fox_Blaster
Definition forward.h:193
@ Pokemon_Lizardon_Flame2
Definition forward.h:321
@ It_Kind_Kirby_Hammer
Definition forward.h:170
@ It_Kind_Ness_PKFire
Definition forward.h:185
@ It_Kind_GameWatch_Greenhouse
Definition forward.h:233
@ Pokemon_Hassam
Definition forward.h:294
@ It_Kind_Patapata
Definition forward.h:340
@ Pokemon_Lizardon_Flame3
Definition forward.h:322
@ It_Kind_Kyasarin_Egg
Definition forward.h:367
@ It_Kind_Samus_Bomb
Definition forward.h:212
@ It_Kind_LipStick_Spore
Definition forward.h:150
@ It_Kind_MasterHand_Bullet
Definition forward.h:245
@ It_Kind_Kirby_NessPKFlush
Definition forward.h:264
@ It_Kind_GameWatch_Breath
Definition forward.h:238
@ Pokemon_Porygon2
Definition forward.h:310
@ Pokemon_Lizardon_Flame1
Definition forward.h:320
@ It_Kind_StarRod
Definition forward.h:132
@ Pokemon_Hinoarashi_Flame
Definition forward.h:331
@ Pokemon_Lizardon
Definition forward.h:289
@ It_Kind_Ottosea
Definition forward.h:162
@ It_Kind_Kirby_SamusCharge
Definition forward.h:270
@ It_Kind_Invalid6
Definition forward.h:360
@ It_Kind_Kirby_PichuTJolt_Air
Definition forward.h:269
@ Pokemon_Kabigon
Definition forward.h:286
@ It_Kind_Falco_Laser
Definition forward.h:174
@ It_Kind_Link_Arrow
Definition forward.h:183
@ It_Kind_Pikachu_TJolt_Ground
Definition forward.h:208
@ It_Kind_Heiho
Definition forward.h:338
@ It_Kind_Invalid7
Definition forward.h:362
@ It_Kind_Octarock_Stone
Definition forward.h:163
@ It_Kind_Bat
Definition forward.h:121
@ It_Kind_Seak_Chain
Definition forward.h:216
@ It_Kind_F_Flower_Flame
Definition forward.h:154
@ It_Kind_Ness_PKThunder
Definition forward.h:188
@ Pokemon_Kamex_HydroPump
Definition forward.h:317
@ It_Kind_MetalB
Definition forward.h:142
@ It_Kind_L_Gun_Ray
Definition forward.h:148
@ Pokemon_Unknown_Swarm
Definition forward.h:324
@ It_Kind_Kirby_FalcoBlaster
Definition forward.h:258
@ It_Kind_G_Shell
Definition forward.h:124
@ It_Kind_Sword
Definition forward.h:122
@ It_Kind_Whitebea
Definition forward.h:345
@ It_Kind_Invalid1
Definition forward.h:353
@ It_Kind_Spycloak
Definition forward.h:143
@ It_Kind_Zelda_DinFire
Definition forward.h:227
@ It_Kind_Kirby_IceClimberIce
Definition forward.h:252
@ It_Kind_Klap
Definition forward.h:346
@ It_Kind_Peach_Turnip
Definition forward.h:218
@ It_Kind_R_Shell
Definition forward.h:125
@ It_Kind_WhispyApple
Definition forward.h:356
@ It_Kind_Kirby_CBeam
Definition forward.h:169
@ It_Kind_Peach_ToadSpore
Definition forward.h:230
@ It_Kind_Octarock
Definition forward.h:161
@ It_Kind_Heart
Definition forward.h:118
@ It_Kind_Kirby_SeakNeedleHeld
Definition forward.h:272
@ It_Kind_Ness_PKThunder4
Definition forward.h:192
@ It_Kind_Yoshi_EggThrow
Definition forward.h:205
@ It_Kind_Kirby_PikachuTJolt_Air
Definition forward.h:267
@ It_Kind_CrazyHand_Bomb
Definition forward.h:248
@ It_Kind_Box
Definition forward.h:111
@ It_Kind_Leadead
Definition forward.h:160
@ It_Kind_Mewtwo_ShadowBall
Definition forward.h:231
@ It_Kind_Taru
Definition forward.h:112
@ It_Kind_GameWatch_Manhole
Definition forward.h:234
@ It_Kind_Peach_Parasol
Definition forward.h:222
@ Pokemon_Metamon
Definition forward.h:303
@ It_Kind_DrMario_Vitamin
Definition forward.h:168
@ Pokemon_Maril
Definition forward.h:312
@ It_Kind_Nokonoko
Definition forward.h:339
@ It_Kind_CrazyHand_Bullet
Definition forward.h:247
@ It_Kind_TaruCann
Definition forward.h:115
@ It_Kind_Ness_PKThunder1
Definition forward.h:189
@ It_Kind_LipStick
Definition forward.h:133
@ It_Kind_Kirby_PeachToad
Definition forward.h:253
@ It_Kind_Kirby_LuigiFire
Definition forward.h:251
@ It_Kind_CLink_Milk
Definition forward.h:242
@ It_Kind_Star
Definition forward.h:120
@ It_Kind_Mewtwo_Disable
Definition forward.h:229
@ It_Kind_Mario_Fire
Definition forward.h:167
@ It_Kind_GameWatch_Rescue
Definition forward.h:243
@ It_Kind_F_Flower
Definition forward.h:135
@ It_Kind_Yoshi_Star
Definition forward.h:207
@ It_Kind_IceClimber_GumStrings
Definition forward.h:232
@ It_Kind_Kirby_GameWatchChef
Definition forward.h:274
@ Pokemon_Pippi
Definition forward.h:304
@ It_Kind_Kyasarin
Definition forward.h:364
@ It_Kind_Unk4
Definition forward.h:278
@ It_Kind_Kirby_NessPKFlush_Explode
Definition forward.h:265
@ It_Kind_Kinoko
Definition forward.h:136
@ It_Kind_Invalid5
Definition forward.h:359
@ It_Kind_Kirby_PikachuTJolt_Ground
Definition forward.h:266
@ Pokemon_Unknown
Definition forward.h:295
@ It_Kind_Link_Bow
Definition forward.h:195
@ It_Kind_Flipper
Definition forward.h:130
@ It_Kind_Link_Bomb
Definition forward.h:177
@ Pokemon_Tosakinto
Definition forward.h:284
@ Pokemon_Kamex
Definition forward.h:287
@ It_Kind_MSBomb
Definition forward.h:129
@ Pokemon_Lugia
Definition forward.h:301
@ It_Kind_Mario_Cape
Definition forward.h:202
@ Pokemon_Lucky
Definition forward.h:309
@ It_Kind_Kirby_GameWatchChefPan
Definition forward.h:275
@ It_Kind_Luigi_Fire
Definition forward.h:224
@ It_Kind_Seak_Vanish
Definition forward.h:204
@ It_Kind_Hammer
Definition forward.h:138
@ It_Kind_Kuriboh
Definition forward.h:159
@ Pokemon_Fire
Definition forward.h:290
@ It_Kind_Unk2
Definition forward.h:172
@ It_Kind_BombHei
Definition forward.h:116
@ It_Kind_Zelda_DinFire_Explode
Definition forward.h:228
@ It_Kind_L_Gun_Beam
Definition forward.h:152
@ Pokemon_Lugia_Aeroblast3
Definition forward.h:327
@ It_Kind_Kirby_FalcoLaser
Definition forward.h:256
@ It_Kind_CLink_Bow
Definition forward.h:196
@ Pokemon_Houou
Definition forward.h:302
@ Pokemon_Hitodeman
Definition forward.h:308
@ It_Kind_Dosei
Definition forward.h:117
@ It_Kind_Kirby_PeachToadSpore
Definition forward.h:254
@ It_Kind_Seak_NeedleThrow
Definition forward.h:198
@ Pokemon_Matadogas_Gas2
Definition forward.h:319
@ It_Kind_Tomato
Definition forward.h:119
@ It_Kind_IceClimber_Blizzard
Definition forward.h:226
@ It_Kind_Old_Octa
Definition forward.h:343
@ It_Kind_Mato
Definition forward.h:337
@ It_Kind_Pikachu_TJolt_Air
Definition forward.h:209
@ It_Kind_S_Scope
Definition forward.h:131
@ It_Kind_GreatFox_Laser
Definition forward.h:366
@ Pokemon_Chicorita
Definition forward.h:285
@ It_Kind_Ness_PKThunder3
Definition forward.h:191
@ It_Kind_Old_Kuri
Definition forward.h:336
@ It_Kind_Seak_NeedleHeld
Definition forward.h:199
@ It_Kind_Harisen
Definition forward.h:134
@ It_Kind_CLink_Boomerang
Definition forward.h:180
@ It_Kind_Likelike
Definition forward.h:341
@ Pokemon_Chicorita_Leaf
Definition forward.h:316
@ Pokemon_Random
Definition forward.h:283
@ It_Kind_Fox_Laser
Definition forward.h:173
@ It_Kind_Ness_Yoyo
Definition forward.h:221
@ It_Kind_Kirby_CLinkArrow
Definition forward.h:260
@ It_Kind_GameWatch_Panic
Definition forward.h:240
@ It_Kind_Kirby_YoshiEggLay
Definition forward.h:277
@ It_Kind_Invalid3
Definition forward.h:355
@ It_Kind_Ness_PKFlush_Explode
Definition forward.h:197
@ It_Kind_Falco_Blaster
Definition forward.h:194
@ It_Kind_Kirby_LinkArrow
Definition forward.h:259
@ Pokemon_Lucky_Egg
Definition forward.h:330
@ It_Kind_CrazyHand_Laser
Definition forward.h:246
@ Pokemon_Kireihana
Definition forward.h:299
@ It_Kind_ZRShell
Definition forward.h:348
@ It_Kind_Kirby_KoopaFlame
Definition forward.h:273
@ It_Kind_L_Gun
Definition forward.h:126
Item_HoldKinds
Definition forward.h:81
@ ITEM_HOLD_12
Definition forward.h:98
@ ITEM_HOLD_6
Definition forward.h:91
@ ITEM_HOLD_1
Definition forward.h:83
@ ITEM_HOLD_2
Definition forward.h:84
@ ITEM_HOLD_0
Definition forward.h:82
@ ITEM_HOLD_10
Definition forward.h:96
@ ITEM_HOLD_4
Definition forward.h:86
@ ITEM_HOLD_3
Definition forward.h:85
@ ITEM_HOLD_5
Definition forward.h:89
@ ITEM_HOLD_8
Definition forward.h:93
@ ITEM_HOLD_7
Definition forward.h:92
@ ITEM_HOLD_11
Definition forward.h:97
@ ITEM_HOLD_9
Definition forward.h:95
HSD_GObj Item_GObj
Definition forward.h:56
Item_StateChangeFlags
Definition forward.h:61
@ ITEM_CMD_UPDATE
Run item's Subaction Events up to its current animation frame.
Definition forward.h:70
@ ITEM_SFX_PRESERVE
Keep current SFX.
Definition forward.h:67
@ ITEM_UNK_0x1
Definition forward.h:62
@ ITEM_HIT_PRESERVE
Keep current hitboxes.
Definition forward.h:66
@ ITEM_UNK_UPDATE
Definition forward.h:69
@ ITEM_MODEL_UPDATE
Runs some HSD_JObj function.
Definition forward.h:65
@ ITEM_DROP_UPDATE
Copies Item::xC44 to Item::xC40 if enabled.
Definition forward.h:64
@ ITEM_ANIM_UPDATE
Updates item model with target Item State's AnimJoint, MatAnimJoint and extra HSD archive node if ava...
Definition forward.h:63
@ ITEM_COLANIM_PRESERVE
Keep current color overlay.
Definition forward.h:68
struct UnkItemArticles3 UnkItemArticles3
Definition forward.h:31
Item_UnkKinds
Definition forward.h:73
@ ITEM_UNK_7
Definition forward.h:77
@ ITEM_UNK_MATO
Item type: Target (Mato)
Definition forward.h:74
@ ITEM_UNK_ENEMY
Item type: Stage Enemy (Goomba, Koopa Troopa, etc.)
Definition forward.h:76
@ ITEM_UNK_LOCKON
Definition forward.h:75
void(* ItCmd)(Item_GObj *gobj, FtCmdState *cmd)
Definition forward.h:59
static unsigned long int next
Definition rand.c:3
Definition types.h:178
Definition types.h:606
Definition types.h:25
Definition types.h:23
Definition types.h:71
Definition itCommonItems.h:16
Definition types.h:1861
Definition gobjproc.h:8
Definition gobj.h:26
Definition jobj.h:107
Definition types.h:721
Definition types.h:784
Definition types.h:792
Definition types.h:775
Definition types.h:746
Definition types.h:84
Definition types.h:639
Definition types.h:134
Definition types.h:635
Definition types.h:164
Definition types.h:159
Definition types.h:145
Definition types.h:77
Definition types.h:198
Definition types.dox:41
Definition types.h:35
Definition itCommonItems.h:42
Definition itCommonItems.h:641