-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchallenges.lua
51 lines (50 loc) · 862 Bytes
/
challenges.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
41
42
43
44
45
46
47
48
49
50
51
local challenges = {
'Pitch Black',
'High Brow',
'Head Trauma',
'Darkness Falls',
'The Tank',
'Solar System',
'Suicide King',
'Cat Got Your Tongue',
'Demo Man',
'Cursed!',
'Glass Cannon',
'When Life Gives You Lemons',
'Beans!',
'It\'s in the Cards',
'Slow Roll',
'Computer Savvy',
'Waka Waka',
'The Host',
'The Family Man',
'Purist',
'XXXXXXXXL',
'SPEED!',
'Blue Bomber',
'PAY TO PLAY',
'Have a Heart',
'I RULE!',
'BRAINS!',
'PRIDE DAY!',
'Onan\'s Streak',
'The Guardian',
'Backasswards',
'Aprils Fool',
'Pokey Mans',
'Ultra Hard',
'Pong',
'Scat Man',
'Bloody Mary',
'Baptism by Fire',
'Isaac\'s Awakening',
'Seeing Double',
'Pica Run',
'Hot Potato',
'Cantripped!',
'Red Redemption',
'DELETE THIS'
}
function GetChallengeName(id)
return challenges[id] or 'iamerror'
end