Paper Mario DX
Paper Mario (N64) modding
 
Loading...
Searching...
No Matches
Bobomb.h
Go to the documentation of this file.
1#include "common.h"
2#include "sprite/npc/Bobomb.h"
3
4#define BOBOMB_DROPS \
5{ \
6 .dropFlags = NPC_DROP_FLAG_80, \
7 .itemDropChance = 5, \
8 .itemDrops = { \
9 { ITEM_HONEY_SYRUP, 5, 0 }, \
10 { ITEM_FIRE_FLOWER, 5, 0 }, \
11 }, \
12 .heartDrops = STANDARD_HEART_DROPS(2), \
13 .flowerDrops = STANDARD_FLOWER_DROPS(2), \
14 .minCoinBonus = 0, \
15 .maxCoinBonus = 1, \
16}
17
18#define BOBOMB_ANIMS \
19{ \
20 .idle = ANIM_Bobomb_Idle, \
21 .walk = ANIM_Bobomb_Walk, \
22 .run = ANIM_Bobomb_Run, \
23 .chase = ANIM_Bobomb_Run, \
24 .anim_4 = ANIM_Bobomb_Idle, \
25 .anim_5 = ANIM_Bobomb_Idle, \
26 .death = ANIM_Bobomb_Hurt, \
27 .hit = ANIM_Bobomb_Hurt, \
28 .anim_8 = ANIM_Bobomb_Run, \
29 .anim_9 = ANIM_Bobomb_Run, \
30 .anim_A = ANIM_Bobomb_Run, \
31 .anim_B = ANIM_Bobomb_Run, \
32 .anim_C = ANIM_Bobomb_Run, \
33 .anim_D = ANIM_Bobomb_Run, \
34 .anim_E = ANIM_Bobomb_Run, \
35 .anim_F = ANIM_Bobomb_Run, \
36}