Paper Mario DX
Paper Mario (N64) modding
 
Loading...
Searching...
No Matches
fright_jar.c
Go to the documentation of this file.
1#include "common.h"
2#include "script_api/battle.h"
3#include "model.h"
4#include "effects.h"
5#include "sprite/player.h"
6
7#define NAMESPACE battle_item_fright_jar
8
10
13
15
16EvtScript N(EVS_UseItem) = {
17 SetConst(LVarA, ITEM_FRIGHT_JAR)
18 ExecWait(N(UseItemWithEffect))
20 Thread
21 Wait(5)
22 Call(UseBattleCamPreset, BTL_CAM_DEFAULT)
23 Call(MoveBattleCamOver, 50)
25 Call(SetAnimation, ACTOR_PLAYER, 0, ANIM_Mario1_Crouch)
26 Call(PlaySoundAtActor, ACTOR_PLAYER, SOUND_FRIGHT_JAR)
27 Call(GetActorPos, ACTOR_PLAYER, LVar0, LVar1, LVar2)
28 Add(LVar0, -40)
29 Add(LVar1, 5)
30 SetF(LVar3, Float(0.7))
31 Loop(5)
32 PlayEffect(EFFECT_FRIGHT_JAR, 0, LVar0, LVar1, LVar2, LVar3, 25, 0)
33 Add(LVar0, 5)
34 AddF(LVar3, Float(0.15))
35 Wait(7)
37 PlayEffect(EFFECT_FRIGHT_JAR, 0, LVar0, LVar1, LVar2, Float(1.5), 60, 0)
38 Wait(20)
39 Loop(4)
40 Call(AddBattleCamDist, -100)
41 Call(MoveBattleCamOver, 2)
42 Wait(2)
43 Call(AddBattleCamDist, 100)
44 Call(MoveBattleCamOver, 2)
45 Wait(2)
47 Call(UseBattleCamPreset, BTL_CAM_VIEW_ENEMIES)
48 Call(MoveBattleCamOver, 20)
49 Call(InitTargetIterator)
50 Label(0)
51 Call(SetGoalToTarget, ACTOR_SELF)
52 Call(ItemCheckHit, LVar0, DAMAGE_TYPE_NO_CONTACT, 0, LVar0, 0)
54 Goto(1)
55 EndIf
56 Call(SetDamageSource, DMG_SRC_FRIGHT_JAR)
58 Label(1)
59 Call(ChooseNextTarget, ITER_NEXT, LVar0)
61 Goto(0)
62 EndIf
63 Wait(10)
64 Call(SetAnimation, ACTOR_PLAYER, 0, ANIM_Mario1_Walk)
66 Wait(20)
67 ExecWait(N(PlayerGoHome))
68 Return
69 End
70};
Bytecode EvtScript[]
@ BS_FLAGS1_TRIGGER_EVENTS
Definition enums.h:3575
@ ITER_NO_MORE
Definition enums.h:2030
@ ITER_NEXT
Definition enums.h:2025
@ HIT_RESULT_MISS
Definition enums.h:1956
@ BTL_CAM_DEFAULT
Definition enums.h:4824
@ BTL_CAM_VIEW_ENEMIES
Definition enums.h:4825
@ DMG_SRC_FRIGHT_JAR
Definition enums.h:2009
@ SOUND_FRIGHT_JAR
Definition enums.h:1175
@ ACTOR_PLAYER
Definition enums.h:2085
@ ACTOR_SELF
Definition enums.h:2084
@ DAMAGE_TYPE_STATUS_ALWAYS_HITS
Definition enums.h:2880
@ DAMAGE_TYPE_FEAR
Definition enums.h:2863
@ DAMAGE_TYPE_NO_CONTACT
Definition enums.h:2878
@ DAMAGE_TYPE_MULTIPLE_POPUPS
Definition enums.h:2879
ApiStatus FadeBackgroundLighten(Evt *script, b32 isInitialCall)
ApiStatus FadeBackgroundDarken(Evt *script, b32 isInitialCall)
#define AddF(VAR, FLOAT_VALUE)
Definition macros.h:383
#define IfNe(LVAR, RVAR)
Marks the beginning of an if statement that only executes if LVAR != RVAR.
Definition macros.h:272
#define End
Signals the end of EVT script data. A script missing this will likely crash on load.
Definition macros.h:213
#define Add(VAR, INT_VALUE)
Definition macros.h:376
#define EndLoop
Marks the end of a loop.
Definition macros.h:248
#define Goto(LABEL_ID)
Moves execution to the given label.
Definition macros.h:232
#define Float(DOUBLE)
Definition macros.h:51
#define Label(LABEL_ID)
Marks this point in the script as a Goto target.
Definition macros.h:227
#define EndIf
Marks the end of an if statement or an else block.
Definition macros.h:298
#define ExecWait(EVT_SOURCE)
Launches a new child thread.
Definition macros.h:475
#define Thread
Marks the start of a thread block.
Definition macros.h:544
#define EndThread
Marks the end of a thread block.
Definition macros.h:547
#define SetF(VAR, FLOAT_VALUE)
Sets the given variable to a given value, but supports Floats.
Definition macros.h:373
#define LVar2
Definition macros.h:150
#define LVar1
Definition macros.h:149
#define LVarA
Definition macros.h:158
#define Wait(NUM_FRAMES)
Blocks for the given number of frames.
Definition macros.h:254
#define PlayEffect(args...)
Definition macros.h:807
#define IfEq(LVAR, RVAR)
Marks the beginning of an if statement that only executes if LVAR == RVAR.
Definition macros.h:269
#define Call(FUNC, ARGS...)
Calls a given C EVT API function with any number of arguments.
Definition macros.h:576
#define Loop(TIMES)
Marks the beginning of a loop.
Definition macros.h:245
#define LVar3
Definition macros.h:151
#define LVar0
Definition macros.h:148
#define SetConst(VAR, CONST)
Sets the given variable to a given value, skipping the evt_get_variable call.
Definition macros.h:370
#define Return
Kills the current EVT thread.
Definition macros.h:217