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