-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstory.lua
40 lines (37 loc) · 1.15 KB
/
story.lua
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
local intro = {
"In the wake of an asteroid strike, food supplies are",
"running low. Desperate to feed the colony until the new",
"hydroponics systems come online, you enter the deadly",
"asteroid Endor in search of a legendary root vegetable..."
}
local endings = {
{
food = -1,
"You died in the depths of Endor, dooming the colony to a",
"painful death."
},
{
food = 0,
"You return nearly empty-handed, helpless to stop the",
"colony's demise."
},
{
food = 300,
"Though you found the Yam of Endor, you only managed to bring",
"back a paltry %food pounds of it. So despite your desperate",
"venture, %n people died, and the rest are quite emaciated."
},
{
food = 700,
"You brought back %food pounds of the legendary Yam of Endor.",
"Though the colonists are a bit emaciated, and no-one ever wants",
"to see another sweet potato, everyone survived thanks to you."
},
{
food = 1500,
"You returned with %food pounds of the legendary Yam of Endor.",
"Though no-one ever wants to see another sweet potato, they are",
"all alive and in good health thanks to your daring and skill."
}
}
return { intro = intro, endings = endings }