-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConstants.gd
More file actions
44 lines (38 loc) · 1003 Bytes
/
Constants.gd
File metadata and controls
44 lines (38 loc) · 1003 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
extends Node2D
enum {
unknown
asteroids
cantina
pirate
contraband
repair
graveyard
sos
cloud
treasure
nothing
}
var firs_time = true
var nb_events = 11
var ship
var ships = [
preload("res://player/ships/Basic.tscn"),
preload("res://player/ships/Titine.tscn"),
preload("res://player/ships/Fauche.tscn"),
preload("res://player/ships/Kyle.tscn"),
preload("res://player/ships/Futurama.tscn")
]
var ships_images = [
preload("res://player/spaceship.png"),
preload("res://player/ships/titine.png"),
preload("res://player/ships/fauche.png"),
preload("res://player/ships/kyle.png"),
preload("res://player/ships/futurama.png")
]
var ships_descs = [
"The most basic ship. If you're the vanilla kind.",
"This is the big deal. This ship is a BEAST. Might make you look like a redneck though.",
"This ship looks very techy. Like, into the future of the future \"techy\"",
"Grab a can of Monster (#NotSponsored) and GET IN DA SHIP",
"This is totally not a very similar ship to an animated TV show."
]