Paper Mario DX
Paper Mario (N64) modding
 
Loading...
Searching...
No Matches
SpikedGoomba_Patrol.inc.c
Go to the documentation of this file.
1#include "SpikedGoomba.h"
2
4
5MobileAISettings N(AISettings_SpikedGoomba_Patrol) = {
6 .moveSpeed = 1.5f,
7 .moveTime = 30,
8 .waitTime = 30,
9 .alertRadius = 130.0f,
10 .playerSearchInterval = 1,
11 .chaseSpeed = 2.5f,
12 .chaseTurnRate = 180,
13 .chaseUpdateInterval = 3,
14 .chaseRadius = 150.0f,
15 .unk_AI_2C = 1,
16};
17
18EvtScript N(EVS_NpcAI_SpikedGoomba_Patrol) = {
19 Call(N(PatrolNoAttackAI_Main), Ref(N(AISettings_SpikedGoomba_Patrol)))
20 Return
21 End
22};
23
24NpcSettings N(NpcSettings_SpikedGoomba_Patrol) = {
25 .height = 23,
26 .radius = 23,
27 .level = ACTOR_LEVEL_SPIKED_GOOMBA,
28 .ai = &N(EVS_NpcAI_SpikedGoomba_Patrol),
29 .onHit = &EnemyNpcHit,
30 .onDefeat = &EnemyNpcDefeat,
31};
Bytecode EvtScript[]
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