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