Paper Mario DX
Paper Mario (N64) modding
 
Loading...
Searching...
No Matches
Fuzzy.h
Go to the documentation of this file.
1#include "common.h"
2#include "sprite/npc/Fuzzy.h"
3
4#define FUZZY_DROPS \
5{ \
6 .dropFlags = NPC_DROP_FLAG_80, \
7 .heartDrops = STANDARD_HEART_DROPS(2), \
8 .flowerDrops = REDUCED_FLOWER_DROPS(2), \
9 .minCoinBonus = 0, \
10 .maxCoinBonus = 1, \
11}
12
13#define FUZZY_ANIMS \
14{ \
15 .idle = ANIM_Fuzzy_Walk, \
16 .walk = ANIM_Fuzzy_Walk, \
17 .run = ANIM_Fuzzy_Run, \
18 .chase = ANIM_Fuzzy_Run, \
19 .anim_4 = ANIM_Fuzzy_Idle, \
20 .anim_5 = ANIM_Fuzzy_Idle, \
21 .death = ANIM_Fuzzy_Hurt, \
22 .hit = ANIM_Fuzzy_Hurt, \
23 .anim_8 = ANIM_Fuzzy_Run, \
24 .anim_9 = ANIM_Fuzzy_Run, \
25 .anim_A = ANIM_Fuzzy_Run, \
26 .anim_B = ANIM_Fuzzy_Run, \
27 .anim_C = ANIM_Fuzzy_Run, \
28 .anim_D = ANIM_Fuzzy_Run, \
29 .anim_E = ANIM_Fuzzy_Run, \
30 .anim_F = ANIM_Fuzzy_Run, \
31}