Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
rubberduckycooly
GitHub Repository: rubberduckycooly/Sonic-1-Sonic-2-2013-Script-Decompilation
Path: blob/master/Sonic 1/Scripts/MZ/LavaSplash.txt
1480 views
1
// ----------------------------------
2
// RSDK Project: Sonic 1
3
// Script Description: Lava Splash Object
4
// Script Author: Christian Whitehead/Simon Thomley
5
// Unpacked by Rubberduckycooly's script unpacker
6
// ----------------------------------
7
8
// ========================
9
// Aliases
10
// ========================
11
12
private alias object.value0 : object.timer
13
14
private alias 0 : LAVASPLASH_START
15
private alias 1 : LAVASPLASH_MAIN
16
17
event ObjectUpdate
18
switch object.state
19
case LAVASPLASH_START
20
object.frame = object.animationTimer
21
object.frame /= 3
22
object.animationTimer++
23
if object.animationTimer == 6
24
object.animationTimer = 0
25
object.timer++
26
if object.timer == 6
27
object.timer = 0
28
object.state++
29
end if
30
end if
31
break
32
33
case LAVASPLASH_MAIN
34
object.frame = object.animationTimer
35
object.frame /= 3
36
object.frame += 2
37
object.animationTimer++
38
if object.animationTimer == 6
39
object.animationTimer = 0
40
object.timer++
41
if object.timer == 2
42
object.type = TypeName[Blank Object]
43
end if
44
end if
45
break
46
47
end switch
48
end event
49
50
51
event ObjectDraw
52
DrawSprite(object.frame)
53
end event
54
55
56
event ObjectStartup
57
LoadSpriteSheet("MZ/Objects.gif")
58
SpriteFrame(-56, -18, 112, 30, 288, 332)
59
SpriteFrame(-55, -18, 110, 30, 401, 332)
60
SpriteFrame(-24, -18, 48, 30, 268, 1)
61
SpriteFrame(-23, -18, 46, 30, 270, 32)
62
end event
63
64
65
event RSDKDraw
66
DrawSprite(0)
67
end event
68
69
70
event RSDKLoad
71
LoadSpriteSheet("MZ/Objects.gif")
72
SpriteFrame(-56, -18, 112, 30, 288, 332)
73
SpriteFrame(-55, -18, 110, 30, 401, 332)
74
SpriteFrame(-24, -18, 48, 30, 268, 1)
75
SpriteFrame(-23, -18, 46, 30, 270, 32)
76
77
SetVariableAlias(ALIAS_VAR_PROPVAL, "unused")
78
end event
79
80