« get me outta code hell

data.js - guess-the-character - Unnamed repository; edit this file 'description' to name the repository.
summary refs log tree commit diff
path: root/data.js
blob: e6f4c77488cf0dc5251dd7f123667a69acc8d6f4 (plain)
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
/**
 *
 * hi this is the data for the game
 *
 */

'use strict';

window.gameData = {
    characters: [
        {
            name: 'Alphys',
            games: ['undertale', 'deltarune'],
            file: 'al',
            volume: 1.0, speed: 50, // TODO: I don't think Alphys is physically capable of speaking up
            messages: [
                `Watching someone on\na screen really makes\nyou root for them.`,
                `S-so, ahhh, now I\nwant to help you!`,
                `Using my knowledge,\nI can easily guide\nyou through Hotland!`
            ]
        },
        {
            name: 'Asgore',
            games: ['undertale', 'deltarune'],
            file: 'asg',
            volume: 0.5, speed: 80,
            messages: [
                `Oh?\nIs someone there?`,
                `Would you like\na cup of tea?`
            ]
        },
        {
            name: 'Berdly',
            games: ['deltarune'],
            file: 'ber',
            volume: 0.5, speed: 50,
            messages: [
                `Sorry, I'm already\npartners with the 2nd\nsmartest student.`,
                `Your unique skillset\nmight help a LOT on this\nassignment!`,
                `We're FINE being alone!`
            ]
        },
        {
            name: 'Jevil',
            games: ['deltarune'],
            file: 'jok',
            volume: 0.5, speed: 50,
            messages: [
                `UEE HEE HEE, THE KEY, THE KEY.`,
                `A MARVELOUS FUN IS ABOUT TO\nBREAK FREE.`,
                `WHEN YOUR HP DROPS TO 0, YOU LOSE!`
            ]
        },
        {
            name: 'Lancer',
            games: ['deltarune'],
            file: 'lan',
            volume: 0.5, speed: 50,
            messages: [
                `You're going to be\nthrashed!`,
                `AHHHHH HA HA HA HA HA HA\nHA HA!!!!`,
                `Merry Christmas!`
            ]
        },
        {
            name: 'Noelle',
            games: ['deltarune'],
            file: 'noe',
            volume: 0.5, speed: 40,
            messages: [
                `I could ask Ms. Alphys\nif we could make\na group of 3!`,
                `B-but if I die, you're\npaying for my funeral, Kris!`,
                `(Though, honestly, if\nshe's nice I might die, too...)`
            ]
        },
        {
            name: 'Papyrus',
            games: ['undertale', 'deltarune'],
            file: 'pap',
            volume: 0.4, speed: 50,
            messages: [
                `I GUESS\nI CAN MAKE AN\nALLOWANCE FOR YOU!`,
                `WOW!!!\nI HAVE FRIENDS!!!`,
                `YOU TAUGHT ME A\nLOT, HUMAN.`
            ]
        },
        {
            name: 'Ralsei',
            games: ['deltarune'],
            file: 'ral',
            volume: 0.5, speed: 50,
            messages: [
                `I hope we can be good\nfriends, Kris.`,
                `It'll fall asleep, and we'll win peacefully!`,
                `As heroes, we have the\npower to make a peaceful\nfuture!`
            ]
        },
        {
            name: 'Rudy',
            games: ['deltarune'],
            file: 'rud',
            volume: 0.5, speed: 50,
            messages: [
                `Well jingle my goshdarn\nbells! Looks like\nKrismas came early!`,
                `Don't worry, there's no\nway you can bore me\nright now!`,
                `Yikes, man!`
            ]
        },
        {
            name: 'Sans',
            games: ['undertale', 'deltarune'],
            file: 'sans',
            volume: 0.4, speed: 50,
            messages: [
                `anyways,\nyou're a human, right?`,
                `i dont really care about\ncapturing anybody.`,
                `staring at this lamp.\nits really cool.`
            ]
        },
        {
            name: 'Susie',
            games: ['deltarune'],
            file: 'sus',
            volume: 0.5, speed: 50,
            messages: [
                `God, can you walk any\nslower, or what?`,
                `Oh, you're not dead.\nSweet.`,
                `Why don't we just climb\nover this spiked fence?`
            ]
        },
        {
            name: 'Toriel',
            games: ['undertale', 'deltarune'],
            file: 'tor',
            volume: 0.5, speed: 50,
            messages: [
                `You have done\nexcellently thus\nfar, my child.`,
                `Thank you for trusting\nme.`,
                `If you have a need for\nanything, just call.`
            ]
        },
        {
            name: 'Undyne',
            games: ['undertale', 'deltarune'],
            file: 'und',
            messages: [
                `Homemade noodles\nare the best!`,
                `BUT I JUST BUY\nSTORE-BRAND!`,
                `NGAHHHHHHHHH\nHHHHHHHHHH!!!`
            ]
        }
    ]
};