Paper Mario DX
Paper Mario (N64) modding
 
Loading...
Searching...
No Matches
FrostClubba.h
Go to the documentation of this file.
1#include "common.h"
2#include "sprite/npc/WorldClubba.h"
3
4#define FROST_CLUBBA_DROPS \
5{ \
6 .dropFlags = NPC_DROP_FLAG_80, \
7 .itemDropChance = 5, \
8 .itemDrops = { \
9 { ITEM_SUPER_SHROOM, 10, 0 }, \
10 }, \
11 .heartDrops = STANDARD_HEART_DROPS(2), \
12 .flowerDrops = STANDARD_FLOWER_DROPS(2), \
13 .minCoinBonus = 0, \
14 .maxCoinBonus = 3, \
15}
16
17#define FROST_CLUBBA_ANIMS \
18{ \
19 .idle = ANIM_WorldClubba_Frost_Anim02, \
20 .walk = ANIM_WorldClubba_Frost_Anim03, \
21 .run = ANIM_WorldClubba_Frost_Anim04, \
22 .chase = ANIM_WorldClubba_Frost_Anim04, \
23 .anim_4 = ANIM_WorldClubba_Frost_Anim02, \
24 .anim_5 = ANIM_WorldClubba_Frost_Anim02, \
25 .death = ANIM_WorldClubba_Frost_Anim0C, \
26 .hit = ANIM_WorldClubba_Frost_Anim0C, \
27 .anim_8 = ANIM_WorldClubba_Frost_Anim11, \
28 .anim_9 = ANIM_WorldClubba_Frost_Anim12, \
29 .anim_A = ANIM_WorldClubba_Frost_Anim07, \
30 .anim_B = ANIM_WorldClubba_Frost_Anim08, \
31 .anim_C = ANIM_WorldClubba_Frost_Anim02, \
32 .anim_D = ANIM_WorldClubba_Frost_Anim02, \
33 .anim_E = ANIM_WorldClubba_Frost_Anim02, \
34 .anim_F = ANIM_WorldClubba_Frost_Anim02, \
35}
36
37#define FROST_CLUBBA_MACE_HITBOX(npcID) \
38{ \
39 .id = npcID, \
40 .settings = &N(NpcSettings_FrostClubba_Hitbox), \
41 .pos = { NPC_DISPOSE_LOCATION }, \
42 .yaw = 0, \
43 .flags = ENEMY_FLAG_IGNORE_WORLD_COLLISION | ENEMY_FLAG_IGNORE_ENTITY_COLLISION | ENEMY_FLAG_FLYING | ENEMY_FLAG_NO_DROPS, \
44 .drops = NO_DROPS, \
45 .animations = FROST_CLUBBA_ANIMS, \
46 .extraAnimations = N(ExtraAnims_FrostClubba_Hitbox), \
47}