Paper Mario DX
Paper Mario (N64) modding
 
Loading...
Searching...
No Matches
nok_03.inc.c
Go to the documentation of this file.
1#include "battle/battle.h"
3
4#define NAMESPACE A(nok_03)
5
6EvtScript N(EVS_PreBattle) = {
7 Call(SetSpriteShading, SHADING_NONE)
9 End
10};
11
12EvtScript N(EVS_PostBattle) = {
13 Return
14 End
15};
16
17s32 N(ForegroundModels)[] = {
21};
22
23Stage NAMESPACE = {
24 .texture = "nok_tex",
25 .shape = "nok_bt03_shape",
26 .hit = "nok_bt03_hit",
27 .bg = "nok_bg",
28 .preBattle = &N(EVS_PreBattle),
29 .postBattle = &N(EVS_PostBattle),
30 .foregroundModelList = N(ForegroundModels),
31};
Bytecode EvtScript[]
#define MODEL_ha3
#define MODEL_hap
ApiStatus SetSpriteShading(Evt *script, b32 isInitialCall)
#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
#define STAGE_MODEL_LIST_END
Definition battle.h:8