Paper Mario DX
Paper Mario (N64) modding
 
Loading...
Searching...
No Matches
PyroGuy.inc.c
Go to the documentation of this file.
1#include "PyroGuy.h"
2
3MobileAISettings N(AISettings_PyroGuy) = {
4 .moveSpeed = 3.0f,
5 .moveTime = 30,
6 .waitTime = 60,
7 .alertRadius = 100.0f,
8 .alertOffsetDist = 30.0f,
9 .playerSearchInterval = 4,
10 .chaseSpeed = 5.0f,
11 .chaseTurnRate = 8,
12 .chaseUpdateInterval = 1,
13 .chaseRadius = 140.0f,
14 .chaseOffsetDist = 30.0f,
15 .unk_AI_2C = 1,
16};
17
18EvtScript N(EVS_NpcAI_PyroGuy) = {
19 Call(BasicAI_Main, Ref(N(AISettings_PyroGuy)))
20 Return
21 End
22};
23
24NpcSettings N(NpcSettings_PyroGuy) = {
25 .height = 23,
26 .radius = 22,
27 .level = ACTOR_LEVEL_PYRO_GUY,
28 .ai = &N(EVS_NpcAI_PyroGuy),
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