Paper Mario DX
Paper Mario (N64) modding
 
Loading...
Searching...
No Matches
isk_02b.inc.c
Go to the documentation of this file.
1#include "battle/battle.h"
3
4#define NAMESPACE A(isk_02b)
5
6EvtScript N(EVS_PreBattle) = {
7 Call(SetSpriteShading, SHADING_NONE)
15 Return
16 End
17};
18
19EvtScript N(EVS_PostBattle) = {
20 Return
21 End
22};
23
24s32 N(ForegroundModels)[] = {
29};
30
31Stage NAMESPACE = {
32 .texture = "isk_tex",
33 .shape = "isk_bt02_shape",
34 .hit = "isk_bt02_hit",
35 .preBattle = &N(EVS_PreBattle),
36 .postBattle = &N(EVS_PostBattle),
37 .foregroundModelList = N(ForegroundModels),
38};
#define MODEL_o399
#define MODEL_o398
Bytecode EvtScript[]
#define MODEL_o391
#define MODEL_o389
#define MODEL_o390
@ CAM_BATTLE
Definition enums.h:1801
#define MODEL_o365
#define MODEL_o366
#define MODEL_o367
#define MODEL_o397
ApiStatus SetSpriteShading(Evt *script, b32 isInitialCall)
ApiStatus EnableModel(Evt *script, b32 isInitialCall)
Enables or disables the given model.
ApiStatus SetCamBGColor(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