Paper Mario DX
Paper Mario (N64) modding
 
Loading...
Searching...
No Matches
GrooveGuy.inc.c
Go to the documentation of this file.
1#include "GrooveGuy.h"
2
4
5MobileAISettings N(AISettings_GrooveGuy) = {
6 .moveSpeed = 1.7f,
7 .moveTime = 80,
8 .waitTime = 1,
9 .alertRadius = 100.0f,
10 .playerSearchInterval = 4,
11 .chaseSpeed = 4.5f,
12 .chaseTurnRate = 20,
13 .chaseUpdateInterval = 1,
14 .chaseRadius = 140.0f,
15 .unk_AI_2C = 1,
16};
17
18EvtScript N(EVS_NpcAI_GrooveGuy) = {
19 Call(N(GrooveGuyAI_Main), Ref(N(AISettings_GrooveGuy)))
20 Return
21 End
22};
23
24NpcSettings N(NpcSettings_GrooveGuy) = {
25 .height = 24,
26 .radius = 22,
27 .level = ACTOR_LEVEL_GROOVE_GUY,
28 .ai = &N(EVS_NpcAI_GrooveGuy),
29 .onHit = &EnemyNpcHit,
30 .onDefeat = &EnemyNpcDefeat,
31 .actionFlags = AI_ACTION_JUMP_WHEN_SEE_PLAYER,
32};
Bytecode EvtScript[]
@ AI_ACTION_JUMP_WHEN_SEE_PLAYER
Definition enums.h:4612
EvtScript EnemyNpcDefeat
Definition encounter.c:158
EvtScript EnemyNpcHit
Definition encounter.c:131
#define Ref(sym)
Address/pointer constant.
Definition macros.h:60
#define End
Signals the end of EVT script data. A script missing this will likely crash on load.
Definition macros.h:213
#define Call(FUNC, ARGS...)
Calls a given C EVT API function with any number of arguments.
Definition macros.h:576
#define Return
Kills the current EVT thread.
Definition macros.h:217