Deltarune (Chapter 5) script viewer

← back to main script listing

gml_GlobalScript_scr_encountersetup

(view raw script w/o annotations or w/e)
1
function 
scr_encountersetup
scr_encountersetup

function
scr_encountersetup(arg0)
{ xx = camerax(); yy = cameray(); var count = 0; var krloc = [94, 50]; var suloc = [80, 122]; var raloc = [72, 200]; var partyconfig = 0; if (global.char[0] != 0 && global.char[1] == 0 && global.char[2] == 0) partyconfig = 1; if (global.char[0] != 0 && global.char[1] != 0 && global.char[2] == 0) partyconfig = 2; for (var i = 0; i < 3; i += 1) { global.heromakex[i] = xx + 80; global.heromakey[i] = yy + 50 + (80 * i); global.monsterinstancetype[i] = obj_baseenemy; global.monstertype[i] = 1Enemy (placeholder/G-BODY); global.monstermakex[i] = xx + 500 + (20 * i); global.monstermakey[i] = yy + 40 + (90 * i); } global.monstertype[1] = 0(None); global.monstertype[2] = 0(None); if (global.char[0] != 0 && global.char[1] == 0 && global.char[2] == 0) global.heromakey[0] = yy + 140; if (global.char[0] != 0 && global.char[1] != 0 && global.char[2] == 0) { global.heromakey[0] = yy + 100; global.heromakey[1] = yy + 180; } global.battlemsg[0] = stringsetloc(
* It is known.
"* It is known.", "scr_encountersetup_slash_scr_encountersetup_gml_34_0"
);
switch (arg0) { case 0: break; case 1: global.monsterinstancetype[0] = obj_baseenemy; global.monstertype[0] = 1Enemy (placeholder/G-BODY); global.monstermakex[0] = xx + 480; global.monstermakey[0] = yy + 110; global.monsterinstancetype[1] = obj_baseenemy; global.monstertype[1] = 1Enemy (placeholder/G-BODY); global.monstermakex[1] = xx + 500; global.monstermakey[1] = yy + 200; global.monstertype[2] = 0(None); global.battlemsg[0] = stringset("* Test enemies showed up."); break; case 2: global.monsterinstancetype[0] = obj_lancerboss; global.monstertype[0] = 2Lancer; global.monstermakex[0] = xx + 540; global.monstermakey[0] = yy + 200; global.monstertype[1] = 0(None); global.monstertype[2] = 0(None); break; case 3: global.monsterinstancetype[0] = obj_dummyenemy; global.monstertype[0] = 3Dummy; global.monstermakex[0] = xx + 500; global.monstermakey[0] = yy + 160; if (instance_exists(obj_npc_room)) { global.monstermakex[0] = obj_npc_room.xstart; global.monstermakey[0] = obj_npc_room.ystart; } global.monstertype[1] = 0(None); global.monstertype[2] = 0(None); break; case 4: global.monsterinstancetype[0] = obj_diamondenemy; global.monstertype[0] = 5Rudinn; global.monstermakex[0] = xx + 480; global.monstermakey[0] = yy + 140; global.monstertype[1] = 0(None); global.monstertype[2] = 0(None); global.battlemsg[0] = stringsetloc(
* Rudinn drew near!
"* Rudinn drew near!", "scr_encountersetup_slash_scr_encountersetup_gml_98_0"
);
if (global.flag[500 times_rudinn_fought] >= 1) global.battlemsg[0] = stringsetloc(
* A different Rudinn from last time drew near!
"* A different Rudinn from last time drew near!", "scr_encountersetup_slash_scr_encountersetup_gml_99_0"
);
if (global.flag[500 times_rudinn_fought] == 2) global.battlemsg[0] = stringsetloc(
* Assumedly another different Rudinn appeared!
"* Assumedly another different Rudinn appeared!", "scr_encountersetup_slash_scr_encountersetup_gml_100_0"
);
break; case 5: global.monsterinstancetype[0] = obj_diamondenemy; global.monstertype[0] = 5Rudinn; global.monstermakex[0] = xx + 480; global.monstermakey[0] = yy + 110; global.monsterinstancetype[1] = obj_diamondenemy; global.monstertype[1] = 5Rudinn; global.monstermakex[1] = xx + 500; global.monstermakey[1] = yy + 200; global.monstertype[2] = 0(None); global.battlemsg[0] = stringsetloc(
* A necklace of Rudinns blocks your path.
"* A necklace of Rudinns blocks your path.", "scr_encountersetup_slash_scr_encountersetup_gml_116_0"
);
break; case 6: global.monsterinstancetype[0] = obj_diamondenemy; global.monstertype[0] = 5Rudinn; global.monstermakex[0] = xx + 480; global.monstermakey[0] = yy + 110; global.monsterinstancetype[1] = obj_heartenemy; global.monstertype[1] = 6Hathy; ...
(arg0)
2
{
3
    xx = camerax();
4
    yy = cameray();
5
    var count = 0;
6
    var krloc = [94, 50];
7
    var suloc = [80, 122];
8
    var raloc = [72, 200];
9
    var partyconfig = 0;
10
    if (global.char[0] != 0 && global.char[1] == 0 && global.char[2] == 0)
11
        partyconfig = 1;
12
    if (global.char[0] != 0 && global.char[1] != 0 && global.char[2] == 0)
13
        partyconfig = 2;
14
    for (var i = 0; i < 3; i += 1)
15
    {
16
        global.heromakex[i] = xx + 80;
17
        global.heromakey[i] = yy + 50 + (80 * i);
18
        global.monsterinstancetype[i] = obj_baseenemy;
19
        global.monstertype[i] = 1Enemy (placeholder/G-BODY);
20
        global.monstermakex[i] = xx + 500 + (20 * i);
21
        global.monstermakey[i] = yy + 40 + (90 * i);
22
    }
23
    global.monstertype[1] = 0(None);
24
    global.monstertype[2] = 0(None);
25
    if (global.char[0] != 0 && global.char[1] == 0 && global.char[2] == 0)
26
        global.heromakey[0] = yy + 140;
27
    if (global.char[0] != 0 && global.char[1] != 0 && global.char[2] == 0)
28
    {
29
        global.heromakey[0] = yy + 100;
30
        global.heromakey[1] = yy + 180;
31
    }
32
    global.battlemsg[0] = stringsetloc(
* It is known.
"* It is known.", "scr_encountersetup_slash_scr_encountersetup_gml_34_0"
);
33
    switch (arg0)
34
    {
35
        case 0:
36
            break;
37
        case 1:
38
            global.monsterinstancetype[0] = obj_baseenemy;
39
            global.monstertype[0] = 1Enemy (placeholder/G-BODY);
40
            global.monstermakex[0] = xx + 480;
41
            global.monstermakey[0] = yy + 110;
42
            global.monsterinstancetype[1] = obj_baseenemy;
43
            global.monstertype[1] = 1Enemy (placeholder/G-BODY);
44
            global.monstermakex[1] = xx + 500;
45
            global.monstermakey[1] = yy + 200;
46
            global.monstertype[2] = 0(None);
47
            global.battlemsg[0] = stringset("* Test enemies showed up.");
48
            break;
49
        case 2:
50
            global.monsterinstancetype[0] = obj_lancerboss;
51
            global.monstertype[0] = 2Lancer;
52
            global.monstermakex[0] = xx + 540;
53
            global.monstermakey[0] = yy + 200;
54
            global.monstertype[1] = 0(None);
55
            global.monstertype[2] = 0(None);
56
            break;
57
        case 3:
58
            global.monsterinstancetype[0] = obj_dummyenemy;
59
            global.monstertype[0] = 3Dummy;
60
            global.monstermakex[0] = xx + 500;
61
            global.monstermakey[0] = yy + 160;
62
            if (instance_exists(obj_npc_room))
63
            {
64
                global.monstermakex[0] = obj_npc_room.xstart;
65
                global.monstermakey[0] = obj_npc_room.ystart;
66
            }
67
            global.monstertype[1] = 0(None);
68
            global.monstertype[2] = 0(None);
69
            break;
70
        case 4:
71
            global.monsterinstancetype[0] = obj_diamondenemy;
72
            global.monstertype[0] = 5Rudinn;
73
            global.monstermakex[0] = xx + 480;
74
            global.monstermakey[0] = yy + 140;
75
            global.monstertype[1] = 0(None);
76
            global.monstertype[2] = 0(None);
77
            global.battlemsg[0] = stringsetloc(
* Rudinn drew near!
"* Rudinn drew near!", "scr_encountersetup_slash_scr_encountersetup_gml_98_0"
);
78
            if (global.flag[500 times_rudinn_fought] >= 1)
79
                global.battlemsg[0] = stringsetloc(
* A different Rudinn from last time drew near!
"* A different Rudinn from last time drew near!", "scr_encountersetup_slash_scr_encountersetup_gml_99_0"
);
80
            if (global.flag[500 times_rudinn_fought] == 2)
81
                global.battlemsg[0] = stringsetloc(
* Assumedly another different Rudinn appeared!
"* Assumedly another different Rudinn appeared!", "scr_encountersetup_slash_scr_encountersetup_gml_100_0"
);
82
            break;
83
        case 5:
84
            global.monsterinstancetype[0] = obj_diamondenemy;
85
            global.monstertype[0] = 5Rudinn;
86
            global.monstermakex[0] = xx + 480;
87
            global.monstermakey[0] = yy + 110;
88
            global.monsterinstancetype[1] = obj_diamondenemy;
89
            global.monstertype[1] = 5Rudinn;
90
            global.monstermakex[1] = xx + 500;
91
            global.monstermakey[1] = yy + 200;
92
            global.monstertype[2] = 0(None);
93
            global.battlemsg[0] = stringsetloc(
* A necklace of Rudinns blocks your path.
"* A necklace of Rudinns blocks your path.", "scr_encountersetup_slash_scr_encountersetup_gml_116_0"
);
94
            break;
95
        case 6:
96
            global.monsterinstancetype[0] = obj_diamondenemy;
97
            global.monstertype[0] = 5Rudinn;
98
            global.monstermakex[0] = xx + 480;
99
            global.monstermakey[0] = yy + 110;
100
            global.monsterinstancetype[1] = obj_heartenemy;
101
            global.monstertype[1] = 6Hathy;
102
            global.monstermakex[1] = xx + 500;
103
            global.monstermakey[1] = yy + 200;
104
            global.monstertype[2] = 0(None);
105
            global.battlemsg[0] = stringsetloc(
* Rudinn and Hathy blocked the way!
"* Rudinn and Hathy blocked the way!", "scr_encountersetup_slash_scr_encountersetup_gml_132_0"
);
106
            break;
107
        case 7:
108
            global.monsterinstancetype[0] = obj_smallcheckers_enemy;
109
            global.monstertype[0] = 9C.Round;
110
            global.monstermakex[0] = xx + 440;
111
            global.monstermakey[0] = yy + 150;
112
            global.monstertype[1] = 0(None);
113
            global.monstertype[2] = 0(None);
114
            global.battlemsg[0] = stringsetloc(
* C. Round attacked violently!
* (You recall Ralsei's advice to include Susie in an ACT.)
"* C. Round attacked violently!&* (You recall Ralsei's advice to include Susie in an ACT.)", "scr_encountersetup_slash_scr_encountersetup_gml_144_0"
);
115
            break;
116
        case 8:
117
            global.monsterinstancetype[0] = obj_clubsenemy;
118
            global.monstertype[0] = 16Clover (Boss);
119
            global.monstermakex[0] = xx + 400;
120
            global.monstermakey[0] = yy + 120;
121
            global.monstertype[1] = 0(None);
122
            global.monstertype[2] = 0(None);
123
            global.battlemsg[0] = stringsetloc(
* Clover grew close!
"* Clover grew close!", "scr_encountersetup_slash_scr_encountersetup_gml_155_0"
);
124
            break;
125
        case 9:
126
            global.monsterinstancetype[0] = obj_heartenemy;
127
            global.monstertype[0] = 6Hathy;
128
            global.monstermakex[0] = xx + 480;
129
            global.monstermakey[0] = yy + 20;
130
            global.monsterinstancetype[1] = obj_heartenemy;
131
            global.monstertype[1] = 6Hathy;
132
            global.monstermakex[1] = xx + 500;
133
            global.monstermakey[1] = yy + 120;
134
            global.monsterinstancetype[2] = obj_heartenemy;
135
            global.monstertype[2] = 6Hathy;
136
            global.monstermakex[2] = xx + 460;
137
            global.monstermakey[2] = yy + 220;
138
            global.battlemsg[0] = stringsetloc(
* Three Hathys blocked the way!
"* Three Hathys blocked the way!", "scr_encountersetup_slash_scr_encountersetup_gml_174_0"
);
139
            break;
140
        case 12:
141
            global.monsterinstancetype[0] = obj_checkers_enemy;
142
            global.monstertype[0] = 10K.Round;
143
            global.monstermakex[0] = xx + 480;
144
            global.monstermakey[0] = yy + 120;
145
            global.monstertype[1] = 0(None);
146
            global.monstertype[2] = 0(None);
147
            global.battlemsg[0] = stringsetloc(
* Here it comes!
"* Here it comes!", "scr_encountersetup_slash_scr_encountersetup_gml_188_0"
);
148
            break;
149
        case 13:
150
            global.monsterinstancetype[0] = obj_ponman_enemy;
151
            global.monstertype[0] = 11Ponman;
152
            global.monstermakex[0] = xx + 480;
153
            global.monstermakey[0] = yy + 110;
154
            global.monsterinstancetype[1] = obj_ponman_enemy;
155
            global.monstertype[1] = 11Ponman;
156
            global.monstermakex[1] = xx + 500;
157
            global.monstermakey[1] = yy + 200;
158
            global.battlemsg[0] = stringsetloc(
* Ponman drew near!
"* Ponman drew near!", "scr_encountersetup_slash_scr_encountersetup_gml_201_0"
);
159
            global.monstertype[2] = 0(None);
160
            break;
161
        case 14:
162
            global.monsterinstancetype[0] = obj_ponman_enemy;
163
            global.monstertype[0] = 11Ponman;
164
            global.monstermakex[0] = xx + 480;
165
            global.monstermakey[0] = yy + 20;
166
            global.monsterinstancetype[1] = obj_ponman_enemy;
167
            global.monstertype[1] = 11Ponman;
168
            global.monstermakex[1] = xx + 500;
169
            global.monstermakey[1] = yy + 120;
170
            global.monsterinstancetype[2] = obj_ponman_enemy;
171
            global.monstertype[2] = 11Ponman;
172
            global.monstermakex[2] = xx + 460;
173
            global.monstermakey[2] = yy + 220;
174
            global.battlemsg[0] = stringsetloc(
* Ponman drew near!
"* Ponman drew near!", "scr_encountersetup_slash_scr_encountersetup_gml_222_0"
);
175
            break;
176
        case 15:
177
            global.monsterinstancetype[0] = obj_clubsenemy;
178
            global.monstertype[0] = 7Clover (old/unused);
179
            global.monstermakex[0] = xx + 400;
180
            global.monstermakey[0] = yy + 30;
181
            global.monsterinstancetype[1] = obj_heartenemy;
182
            global.monstertype[1] = 6Hathy;
183
            global.monstermakex[1] = xx + 420;
184
            global.monstermakey[1] = yy + 200;
185
            global.monstertype[2] = 0(None);
186
            global.battlemsg[0] = stringsetloc(
* Clover and Hathy grew close!
"* Clover and Hathy grew close!", "scr_encountersetup_slash_scr_encountersetup_gml_239_0"
);
187
            break;
188
        case 16:
189
            global.monsterinstancetype[0] = obj_rabbick_enemy;
190
            global.monstertype[0] = 13Rabbick;
191
            global.monstermakex[0] = xx + 480;
192
            global.monstermakey[0] = yy + 140;
193
            global.monstertype[1] = 0(None);
194
            global.monstertype[2] = 0(None);
195
            global.battlemsg[0] = stringsetloc(
* Rabbick slithered in the way!
"* Rabbick slithered in the way!", "scr_encountersetup_slash_scr_encountersetup_gml_250_0"
);
196
            break;
197
        case 17:
198
            global.monsterinstancetype[0] = obj_rabbick_enemy;
199
            global.monstertype[0] = 13Rabbick;
200
            global.monstermakex[0] = xx + 480;
201
            global.monstermakey[0] = yy + 60;
202
            global.monsterinstancetype[1] = obj_rabbick_enemy;
203
            global.monstertype[1] = 13Rabbick;
204
            global.monstermakex[1] = xx + 460;
205
            global.monstermakey[1] = yy + 180;
206
            global.monstertype[2] = 0(None);
207
            global.battlemsg[0] = stringsetloc(
* Rabbicks slithered in the way!
"* Rabbicks slithered in the way!", "scr_encountersetup_slash_scr_encountersetup_gml_266_0"
);
208
            break;
209
        case 18:
210
            global.monsterinstancetype[0] = obj_bloxer_enemy;
211
            global.monstertype[0] = 14Bloxer;
212
            global.monstermakex[0] = xx + 480;
213
            global.monstermakey[0] = yy + 140;
214
            global.monstertype[1] = 0(None);
215
            global.monstertype[2] = 0(None);
216
            global.battlemsg[0] = stringsetloc(
* Bloxer assembled!
"* Bloxer assembled!", "scr_encountersetup_slash_scr_encountersetup_gml_277_0"
);
217
            break;
218
        case 19:
219
            global.monsterinstancetype[0] = obj_bloxer_enemy;
220
            global.monstertype[0] = 14Bloxer;
221
            global.monstermakex[0] = xx + 480;
222
            global.monstermakey[0] = yy + 60;
223
            global.monsterinstancetype[1] = obj_bloxer_enemy;
224
            global.monstertype[1] = 14Bloxer;
225
            global.monstermakex[1] = xx + 460;
226
            global.monstermakey[1] = yy + 180;
227
            global.monstertype[2] = 0(None);
228
            global.battlemsg[0] = stringsetloc(
* Bloxers assembled!
"* Bloxers assembled!", "scr_encountersetup_slash_scr_encountersetup_gml_293_0"
);
229
            break;
230
        case 20:
231
            global.monsterinstancetype[0] = obj_lancerboss2;
232
            global.monstertype[0] = 12Lancer 2;
233
            global.heromakex[0] = xx + 120;
234
            global.monstermakex[0] = xx + 480;
235
            global.monstermakey[0] = yy + 160;
236
            global.monstertype[1] = 0(None);
237
            global.monstertype[2] = 0(None);
238
            global.battlemsg[0] = stringsetloc(
* Lancer blocked the way!
"* Lancer blocked the way!", "scr_encountersetup_slash_scr_encountersetup_gml_308_0"
);
239
            break;
240
        case 21:
241
            global.monsterinstancetype[0] = obj_jigsawryenemy;
242
            global.monstertype[0] = 15Jigsawry;
243
            global.monstermakex[0] = xx + 480;
244
            global.monstermakey[0] = yy + 140;
245
            global.monstertype[1] = 0(None);
246
            global.monstertype[2] = 0(None);
247
            global.battlemsg[0] = stringsetloc(
* Jigsawry drew near!
"* Jigsawry drew near!", "scr_encountersetup_slash_scr_encountersetup_gml_319_0"
);
248
            if (global.flag[500 times_rudinn_fought] >= 1)
249
                global.battlemsg[0] = stringsetloc(
* A different Jigsawry from last time drew near!
"* A different Jigsawry from last time drew near!", "scr_encountersetup_slash_scr_encountersetup_gml_320_0"
);
250
            if (global.flag[500 times_rudinn_fought] == 2)
251
                global.battlemsg[0] = stringsetloc(
* Assumedly another different Jigsawry appeared!
"* Assumedly another different Jigsawry appeared!", "scr_encountersetup_slash_scr_encountersetup_gml_321_0"
);
252
            break;
253
        case 22:
254
            global.monsterinstancetype[0] = obj_jigsawryenemy;
255
            global.monstertype[0] = 15Jigsawry;
256
            global.monstermakex[0] = xx + 480;
257
            global.monstermakey[0] = yy + 20;
258
            global.monsterinstancetype[1] = obj_jigsawryenemy;
259
            global.monstertype[1] = 15Jigsawry;
260
            global.monstermakex[1] = xx + 500;
261
            global.monstermakey[1] = yy + 120;
262
            global.monsterinstancetype[2] = obj_jigsawryenemy;
263
            global.monstertype[2] = 15Jigsawry;
264
            global.monstermakex[2] = xx + 460;
265
            global.monstermakey[2] = yy + 220;
266
            global.battlemsg[0] = stringsetloc(
* A board of Jigsawrys blocked the way!
"* A board of Jigsawrys blocked the way!", "scr_encountersetup_slash_scr_encountersetup_gml_340_0"
);
267
            break;
268
        case 23:
269
            global.monsterinstancetype[0] = obj_jigsawryenemy;
270
            global.monstertype[0] = 15Jigsawry;
271
            global.monstermakex[0] = xx + 480;
272
            global.monstermakey[0] = yy + 20;
273
            global.monsterinstancetype[1] = obj_diamondenemy;
274
            global.monstertype[1] = 5Rudinn;
275
            global.monstermakex[1] = xx + 500;
276
            global.monstermakey[1] = yy + 120;
277
            global.monsterinstancetype[2] = obj_heartenemy;
278
            global.monstertype[2] = 6Hathy;
279
            global.monstermakex[2] = xx + 460;
280
            global.monstermakey[2] = yy + 220;
281
            global.battlemsg[0] = stringsetloc(
* Smorgasboard.
"* Smorgasboard.", "scr_encountersetup_slash_scr_encountersetup_gml_359_0"
);
282
            break;
283
        case 24:
284
            global.monsterinstancetype[0] = obj_rabbick_enemy;
285
            global.monstertype[0] = 13Rabbick;
286
            global.monstermakex[0] = xx + 480;
287
            global.monstermakey[0] = yy + 60;
288
            global.monsterinstancetype[1] = obj_diamondenemy;
289
            global.monstertype[1] = 5Rudinn;
290
            global.monstermakex[1] = xx + 460;
291
            global.monstermakey[1] = yy + 180;
292
            global.monstertype[2] = 0(None);
293
            global.battlemsg[0] = stringsetloc(
* Rabbick slithered in the way!
"* Rabbick slithered in the way!", "scr_encountersetup_slash_scr_encountersetup_gml_374_0"
);
294
            break;
295
        case 25:
296
            global.heromakex[0] = xx + 80;
297
            global.heromakey[0] = yy + 100;
298
            global.heromakex[1] = xx + 90;
299
            global.heromakey[1] = yy + 150;
300
            global.heromakex[2] = xx + 100;
301
            global.heromakey[2] = yy + 210;
302
            global.monsterinstancetype[0] = obj_joker;
303
            global.monstertype[0] = 20JEVIL;
304
            global.monstermakex[0] = xx + 500;
305
            global.monstermakey[0] = yy + 160;
306
            global.monstertype[1] = 0(None);
307
            global.monstertype[2] = 0(None);
308
            global.battlemsg[0] = stringsetloc(
* LET THE GAMES BEGIN!
"* LET THE GAMES BEGIN!", "scr_encountersetup_slash_scr_encountersetup_gml_400_0"
);
309
            break;
310
        case 27:
311
            global.monsterinstancetype[0] = obj_checkers_enemy;
312
            global.monstertype[0] = 21K.Round 2;
313
            global.monstermakex[0] = xx + 480;
314
            global.monstermakey[0] = yy + 120;
315
            global.monstertype[1] = 0(None);
316
            global.monstertype[2] = 0(None);
317
            global.battlemsg[0] = stringsetloc(
* Here it comes.Delay 11 Again.
"* Here it comes^1. Again.", "scr_encountersetup_slash_scr_encountersetup_gml_413_0"
);
318
            global.heromakey[0] = yy + 65;
319
            break;
320
        case 28:
321
            global.monsterinstancetype[0] = obj_rudinnranger;
322
            global.monstertype[0] = 22Rudinn Ranger;
323
            global.monstermakex[0] = xx + 480;
324
            global.monstermakey[0] = yy + 110;
325
            global.monsterinstancetype[1] = obj_rudinnranger;
326
            global.monstertype[1] = 22Rudinn Ranger;
327
            global.monstermakex[1] = xx + 500;
328
            global.monstermakey[1] = yy + 200;
329
            global.monstertype[2] = 0(None);
330
            global.battlemsg[0] = stringsetloc(
* Rudinn Rangers came sparkling into view!
"* Rudinn Rangers came sparkling into view!", "scr_encountersetup_slash_scr_encountersetup_gml_430_0"
);
331
            break;
332
        case 29:
333
            global.monsterinstancetype[0] = obj_headhathy;
334
            global.monstertype[0] = 23Head Hathy;
335
            global.monstermakex[0] = xx + 480;
336
            global.monstermakey[0] = yy + 110;
337
            global.monsterinstancetype[1] = obj_headhathy;
338
            global.monstertype[1] = 23Head Hathy;
339
            global.monstermakex[1] = xx + 500;
340
            global.monstermakey[1] = yy + 200;
341
            global.monstertype[2] = 0(None);
342
            global.battlemsg[0] = stringsetloc(
* Head Hathy blocked the way quietly!
"* Head Hathy blocked the way quietly!", "scr_encountersetup_slash_scr_encountersetup_gml_446_0"
);
343
            break;
344
        case 30:
345
            global.monsterinstancetype[0] = obj_headhathy;
346
            global.monstertype[0] = 23Head Hathy;
347
            global.monstermakex[0] = xx + 480;
348
            global.monstermakey[0] = yy + 20;
349
            global.monsterinstancetype[1] = obj_headhathy;
350
            global.monstertype[1] = 23Head Hathy;
351
            global.monstermakex[1] = xx + 500;
352
            global.monstermakey[1] = yy + 120;
353
            global.monsterinstancetype[2] = obj_headhathy;
354
            global.monstertype[2] = 23Head Hathy;
355
            global.monstermakex[2] = xx + 460;
356
            global.monstermakey[2] = yy + 220;
357
            global.battlemsg[0] = stringsetloc(
* Head Hathy blocked the way quietly! (x3)
"* Head Hathy blocked the way quietly! (x3)", "scr_encountersetup_slash_scr_encountersetup_gml_465_0"
);
358
            break;
359
        case 31:
360
            global.monsterinstancetype[0] = obj_susieenemy;
361
            global.monstertype[0] = 19Susie (w/ Lancer);
362
            global.monstermakex[0] = xx + 520;
363
            global.monstermakey[0] = yy + 80;
364
            global.monsterinstancetype[1] = obj_lancerboss3;
365
            global.monstertype[1] = 18Lancer 3 (w/ Susie);
366
            global.monstermakex[1] = xx + 540;
367
            global.monstermakey[1] = yy + 240;
368
            global.monstertype[2] = 0(None);
369
            global.battlemsg[0] = stringsetloc(
* Two bad guys blocked the way!
"* Two bad guys blocked the way!", "scr_encountersetup_slash_scr_encountersetup_gml_479_0"
);
370
            break;
371
        case 32:
372
            global.monsterinstancetype[0] = obj_rabbick_enemy;
373
            global.monstertype[0] = 13Rabbick;
374
            global.monstermakex[0] = xx + 480;
375
            global.monstermakey[0] = yy + 20;
376
            global.monsterinstancetype[1] = obj_rabbick_enemy;
377
            global.monstertype[1] = 13Rabbick;
378
            global.monstermakex[1] = xx + 500;
379
            global.monstermakey[1] = yy + 120;
380
            global.monsterinstancetype[2] = obj_rabbick_enemy;
381
            global.monstertype[2] = 13Rabbick;
382
            global.monstermakex[2] = xx + 460;
383
            global.monstermakey[2] = yy + 220;
384
            global.battlemsg[0] = stringsetloc(
* Rabbicks slithered in the way!
"* Rabbicks slithered in the way!", "scr_encountersetup_slash_scr_encountersetup_gml_500_0"
);
385
            break;
386
        case 33:
387
            global.monsterinstancetype[0] = obj_diamondenemy;
388
            global.monstertype[0] = 5Rudinn;
389
            global.monstermakex[0] = xx + 480;
390
            global.monstermakey[0] = yy + 20;
391
            global.monsterinstancetype[1] = obj_heartenemy;
392
            global.monstertype[1] = 6Hathy;
393
            global.monstermakex[1] = xx + 500;
394
            global.monstermakey[1] = yy + 120;
395
            global.monsterinstancetype[2] = obj_diamondenemy;
396
            global.monstertype[2] = 5Rudinn;
397
            global.monstermakex[2] = xx + 460;
398
            global.monstermakey[2] = yy + 220;
399
            global.battlemsg[0] = stringsetloc(
* Various guys appeared!
"* Various guys appeared!", "scr_encountersetup_slash_scr_encountersetup_gml_521_0"
);
400
            break;
401
        case 40:
402
            global.monsterinstancetype[0] = obj_king_boss;
403
            global.monstertype[0] = 25King;
404
            global.monstermakex[0] = xx + 460;
405
            global.monstermakey[0] = yy + 70;
406
            global.monstertype[1] = 0(None);
407
            global.monstertype[2] = 0(None);
408
            global.battlemsg[0] = stringsetloc(
* King blocked the way!
"* King blocked the way!", "scr_encountersetup_slash_scr_encountersetup_gml_533_0"
);
409
            break;
410
        case 71:
411
            global.heromakex[0] = xx + 94;
412
            global.heromakey[0] = yy + 50;
413
            global.heromakex[1] = xx + 80;
414
            global.heromakey[1] = yy + 122;
415
            global.heromakex[2] = xx + 72;
416
            global.heromakey[2] = yy + 200;
417
            global.monsterinstancetype[0] = obj_clubsenemy;
418
            global.monstertype[0] = 47Clover (rematch);
419
            global.monstermakex[0] = xx + 400;
420
            global.monstermakey[0] = yy + 80;
421
            global.battlemsg[0] = stringsetloc(
* Clover joins the stage!
"* Clover joins the stage!", "scr_encountersetup_slash_scr_encountersetup_gml_892_0"
);
422
            break;
423
        case 72:
424
            global.heromakex[0] = xx + 94;
425
            global.heromakey[0] = yy + 50;
426
            global.heromakex[1] = xx + 80;
427
            global.heromakey[1] = yy + 122;
428
            global.heromakex[2] = xx + 72;
429
            global.heromakey[2] = yy + 200;
430
            global.monsterinstancetype[0] = obj_dojograzeenemy;
431
            global.monstertype[0] = 42Tasque Manager;
432
            global.monstermakex[0] = xx + 440;
433
            global.monstermakey[0] = yy + 100;
434
            global.battlemsg[0] = stringsetloc(
* It's a grazing adventure.
"* It's a grazing adventure.", "scr_encountersetup_slash_scr_encountersetup_gml_901_0"
);
435
            break;
436
        case 89:
437
            global.heromakex[0] = xx + 94;
438
            global.heromakey[0] = yy + 50;
439
            global.heromakex[1] = xx + 80;
440
            global.heromakey[1] = yy + 122;
441
            global.heromakex[2] = xx + 72;
442
            global.heromakey[2] = yy + 200;
443
            global.monsterinstancetype[0] = obj_tasque_manager_enemy;
444
            global.monstertype[0] = 42Tasque Manager;
445
            global.monstermakex[0] = xx + 487;
446
            global.monstermakey[0] = yy + 94;
447
            global.monstertype[1] = 0(None);
448
            global.monstertype[2] = 0(None);
449
            global.battlemsg[0] = stringsetloc(
* Graze!
"* Graze!", "scr_encountersetup_slash_scr_encountersetup_gml_1247_0"
);
450
            break;
451
        case 90:
452
            global.heromakex[0] = xx + 94;
453
            global.heromakey[0] = yy + 50;
454
            global.heromakex[1] = xx + 80;
455
            global.heromakey[1] = yy + 122;
456
            global.heromakex[2] = xx + 72;
457
            global.heromakey[2] = yy + 200;
458
            global.monsterinstancetype[0] = obj_werewire_enemy;
459
            global.monstertype[0] = 33Werewire;
460
            global.monstermakex[0] = xx + 476;
461
            global.monstermakey[0] = yy + 70;
462
            global.monsterinstancetype[1] = obj_werewire_enemy;
463
            global.monstertype[1] = 33Werewire;
464
            global.monstermakex[1] = xx + 454;
465
            global.monstermakey[1] = yy + 168;
466
            global.monstertype[2] = 0(None);
467
            global.battlemsg[0] = stringsetloc(
* Round One!
"* Round One!", "scr_encountersetup_slash_scr_encountersetup_gml_1263_0"
);
468
            break;
469
        case 91:
470
            global.heromakex[0] = xx + 94;
471
            global.heromakey[0] = yy + 50;
472
            global.heromakex[1] = xx + 80;
473
            global.heromakey[1] = yy + 122;
474
            global.heromakex[2] = xx + 72;
475
            global.heromakey[2] = yy + 200;
476
            global.monsterinstancetype[0] = obj_poppup_enemy;
477
            global.monstertype[0] = 31Poppup;
478
            global.monstermakex[0] = xx + 412;
479
            global.monstermakey[0] = yy + 40;
480
            global.monsterinstancetype[1] = obj_omawaroid_enemy;
481
            global.monstertype[1] = 30Ambyu-Lance;
482
            global.monstermakex[1] = xx + 466;
483
            global.monstermakey[1] = yy + 106;
484
            global.monsterinstancetype[2] = obj_virovirokun_enemy;
485
            global.monstertype[2] = 35Virovirokun;
486
            global.monstermakex[2] = xx + 412;
487
            global.monstermakey[2] = yy + 184;
488
            global.battlemsg[0] = stringsetloc(
* Round Two!
"* Round Two!", "scr_encountersetup_slash_scr_encountersetup_gml_1282_0"
);
489
            break;
490
        case 92:
491
            global.heromakex[0] = xx + 94;
492
            global.heromakey[0] = yy + 50;
493
            global.heromakex[1] = xx + 80;
494
            global.heromakey[1] = yy + 122;
495
            global.heromakex[2] = xx + 72;
496
            global.heromakey[2] = yy + 200;
497
            global.monsterinstancetype[0] = obj_tasque_enemy;
498
            global.monstertype[0] = 32Tasque;
499
            global.monstermakex[0] = xx + 432;
500
            global.monstermakey[0] = yy + 52;
501
            global.monsterinstancetype[1] = obj_tasque_enemy;
502
            global.monstertype[1] = 32Tasque;
503
            global.monstermakex[1] = xx + 476;
504
            global.monstermakey[1] = yy + 140;
505
            global.monsterinstancetype[2] = obj_maus_enemy;
506
            global.monstertype[2] = 34Maus;
507
            global.monstermakex[2] = xx + 512;
508
            global.monstermakey[2] = yy + 236;
509
            global.battlemsg[0] = stringsetloc(
* Round Three!
"* Round Three!", "scr_encountersetup_slash_scr_encountersetup_gml_1301_0"
);
510
            break;
511
        case 93:
512
            global.flag[426 swatchling_combo] = choose(0, 1, 2, 3);
513
            global.heromakex[0] = xx + 94;
514
            global.heromakey[0] = yy + 50;
515
            global.heromakex[1] = xx + 80;
516
            global.heromakey[1] = yy + 122;
517
            global.heromakex[2] = xx + 72;
518
            global.heromakey[2] = yy + 200;
519
            global.monsterinstancetype[0] = obj_swatchling_enemy;
520
            global.monstertype[0] = 36Swatchling;
521
            global.monstermakex[0] = xx + 394;
522
            global.monstermakey[0] = yy + 8;
523
            global.monsterinstancetype[1] = obj_swatchling_enemy;
524
            global.monstertype[1] = 36Swatchling;
525
            global.monstermakex[1] = xx + 490;
526
            global.monstermakey[1] = yy + 74;
527
            global.monsterinstancetype[2] = obj_swatchling_enemy;
528
            global.monstertype[2] = 36Swatchling;
529
            global.monstermakex[2] = xx + 394;
530
            global.monstermakey[2] = yy + 160;
531
            global.battlemsg[0] = stringsetloc(
* Round Four!
"* Round Four!", "scr_encountersetup_slash_scr_encountersetup_gml_1323_0"
);
532
            break;
533
        case 94:
534
            global.heromakex[0] = xx + 94;
535
            global.heromakey[0] = yy + 50;
536
            global.heromakex[1] = xx + 80;
537
            global.heromakey[1] = yy + 122;
538
            global.heromakex[2] = xx + 72;
539
            global.heromakey[2] = yy + 200;
540
            global.monsterinstancetype[0] = obj_werewerewire_enemy;
541
            global.monstertype[0] = 40Werewerewire;
542
            global.monstermakex[0] = xx + 464;
543
            global.monstermakey[0] = yy + 68;
544
            global.monsterinstancetype[1] = obj_werewerewire_enemy;
545
            global.monstertype[1] = 40Werewerewire;
546
            global.monstermakex[1] = xx + 494;
547
            global.monstermakey[1] = yy + 184;
548
            global.monstertype[2] = 0(None);
549
            global.battlemsg[0] = stringsetloc(
* Final Round!
"* Final Round!", "scr_encountersetup_slash_scr_encountersetup_gml_1339_0"
);
550
            break;
551
        case 100:
552
            global.heromakex[0] = xx + 94;
553
            global.heromakey[0] = yy + 50;
554
            global.heromakex[1] = xx + 80;
555
            global.heromakey[1] = yy + 122;
556
            global.heromakex[2] = xx + 72;
557
            global.heromakey[2] = yy + 200;
558
            global.monsterinstancetype[0] = obj_dojo_spareenemy;
559
            global.monstertype[0] = 52Jigsaw Joe;
560
            global.monstermakex[0] = xx + 440;
561
            global.monstermakey[0] = yy + 100;
562
            global.battlemsg[0] = stringsetloc(
* Jigsaw Joe jigs in!
"* Jigsaw Joe jigs in!", "scr_encountersetup_slash_scr_encountersetup_gml_1422_0"
);
563
            break;
564
        case 200:
565
            global.monsterinstancetype[0] = obj_floradinn_enemy;
566
            global.monstertype[0] = 70???;
567
            global.monstermakex[0] = xx + 480;
568
            global.monstermakey[0] = yy + 110;
569
            global.monsterinstancetype[1] = obj_floradinn_enemy;
570
            global.monstertype[1] = 70???;
571
            global.monstermakex[1] = xx + 500;
572
            global.monstermakey[1] = yy + 200;
573
            global.monstertype[2] = 0(None);
574
            global.battlemsg[0] = stringsetloc(
* Floradinn florads in!
"* Floradinn florads in!", "scr_encountersetup_slash_scr_encountersetup_gml_819_0"
);
575
            break;
576
        case 201:
577
            global.monsterinstancetype[0] = obj_leafling_enemy;
578
            global.monstertype[0] = 71???;
579
            global.monstermakex[0] = xx + 510;
580
            global.monstermakey[0] = yy + 80;
581
            global.monsterinstancetype[1] = obj_leafling_enemy;
582
            global.monstertype[1] = 71???;
583
            global.monstermakex[1] = xx + 540;
584
            global.monstermakey[1] = yy + 200;
585
            global.monstertype[2] = 0(None);
586
            global.battlemsg[0] = stringsetloc(
* Leafling floats by carefree.
"* Leafling floats by carefree.", "scr_encountersetup_slash_scr_encountersetup_gml_834_0"
);
587
            break;
588
        case 202:
589
            global.monsterinstancetype[0] = obj_scarecrow_enemy;
590
            global.monstertype[0] = 72???;
591
            global.monstermakex[0] = xx + 450;
592
            global.monstermakey[0] = yy + 50;
593
            global.monsterinstancetype[1] = obj_kawkaw_enemy;
594
            global.monstertype[1] = 74???;
595
            global.monstermakex[1] = xx + 487;
596
            global.monstermakey[1] = yy + 208;
597
            global.monstertype[2] = 0(None);
598
            global.battlemsg[0] = stringsetloc(
* Shi blocks the way! (... sort of.)
* Kawkaw wants to play!
"* Shi blocks the way! (... sort of.)&* Kawkaw wants to play!", "scr_encountersetup_slash_scr_encountersetup_gml_849_0"
);
599
            break;
600
        case 203:
601
            global.monsterinstancetype[0] = obj_shinobeetle_enemy;
602
            global.monstertype[0] = 73???;
603
            global.monstermakex[0] = xx + 473;
604
            global.monstermakey[0] = yy + 50;
605
            global.monsterinstancetype[1] = obj_shinobeetle_enemy;
606
            global.monstertype[1] = 73???;
607
            global.monstermakex[1] = xx + 520;
608
            global.monstermakey[1] = yy + 160;
609
            global.monstertype[2] = 0(None);
610
            global.battlemsg[0] = stringsetloc(
* Shinobeetle sneaks in!
"* Shinobeetle sneaks in!", "scr_encountersetup_slash_scr_encountersetup_gml_864_0_b"
);
611
            break;
612
        case 204:
613
            global.monsterinstancetype[0] = obj_kawkaw_enemy;
614
            global.monstertype[0] = 74???;
615
            global.monstermakex[0] = xx + 480;
616
            global.monstermakey[0] = yy + 110;
617
            global.monsterinstancetype[1] = obj_kawkaw_enemy;
618
            global.monstertype[1] = 74???;
619
            global.monstermakex[1] = xx + 500;
620
            global.monstermakey[1] = yy + 200;
621
            global.monstertype[2] = 0(None);
622
            global.battlemsg[0] = stringsetloc(
* Kawkaw wants to play!
"* Kawkaw wants to play!", "scr_encountersetup_slash_scr_encountersetup_gml_879_0"
);
623
            break;
624
        case 205:
625
            global.monsterinstancetype[0] = obj_sheary_enemy;
626
            global.monstertype[0] = 75???;
627
            global.monstermakex[0] = xx + 461;
628
            global.monstermakey[0] = yy + 60;
629
            global.monsterinstancetype[1] = obj_sheary_enemy;
630
            global.monstertype[1] = 75???;
631
            global.monstermakex[1] = xx + 503;
632
            global.monstermakey[1] = yy + 183;
633
            global.monstertype[2] = 0(None);
634
            global.battlemsg[0] = stringsetloc(
* Sheary cuts in!
"* Sheary cuts in!", "scr_encountersetup_slash_scr_encountersetup_gml_894_0"
);
635
            break;
636
        case 206:
637
            global.monsterinstancetype[0] = obj_netskie_enemy;
638
            global.monstertype[0] = 76???;
639
            global.monstermakex[0] = xx + 473;
640
            global.monstermakey[0] = yy + 130;
641
            global.monstertype[2] = 0(None);
642
            global.battlemsg[0] = stringsetloc(
* Netskie unwraps itself from its big fluffy tail!
"* Netskie unwraps itself from its big fluffy tail!", "scr_encountersetup_slash_scr_encountersetup_gml_904_0"
);
643
            break;
644
        case 207:
645
            global.monsterinstancetype[0] = obj_terracota_enemy;
646
            global.monstertype[0] = 77???;
647
            global.monstermakex[0] = xx + 446;
648
            global.monstermakey[0] = yy + 76;
649
            global.battlemsg[0] = stringsetloc(
* Terakota stomps towards you!
"* Terakota stomps towards you!", "scr_encountersetup_slash_scr_encountersetup_gml_913_0"
);
650
            break;
651
        case 208:
652
            global.monsterinstancetype[0] = obj_floradinn_enemy;
653
            global.monstertype[0] = 70???;
654
            global.monstermakex[0] = xx + 458;
655
            global.monstermakey[0] = yy + 60;
656
            global.monsterinstancetype[1] = obj_leafling_enemy;
657
            global.monstertype[1] = 71???;
658
            global.monstermakex[1] = xx + 500;
659
            global.monstermakey[1] = yy + 180;
660
            global.monstertype[2] = 0(None);
661
            global.battlemsg[0] = stringsetloc(
* Floradinn florads in!
* Leafling floats by carefree.
"* Floradinn florads in!&* Leafling floats by carefree.", "scr_encountersetup_slash_scr_encountersetup_gml_928_0"
);
662
            break;
663
        case 209:
664
            global.monsterinstancetype[0] = obj_shinobeetle_enemy;
665
            global.monstertype[0] = 73???;
666
            global.monstermakex[0] = xx + 473;
667
            global.monstermakey[0] = yy + 50;
668
            global.monsterinstancetype[1] = obj_leafling_enemy;
669
            global.monstertype[1] = 71???;
670
            global.monstermakex[1] = xx + 540;
671
            global.monstermakey[1] = yy + 200;
672
            global.monstertype[2] = 0(None);
673
            global.battlemsg[0] = stringsetloc(
* Shinobeetle sneaks in!
* Floradinn florads in!
"* Shinobeetle sneaks in!&* Floradinn florads in!", "scr_encountersetup_slash_scr_encountersetup_gml_943_0"
);
674
            break;
675
        case 210:
676
            global.monsterinstancetype[0] = obj_scarecrow_enemy;
677
            global.monstertype[0] = 72???;
678
            global.monstermakex[0] = xx + 473;
679
            global.monstermakey[0] = yy + 24;
680
            global.monsterinstancetype[1] = obj_kawkaw_enemy;
681
            global.monstertype[1] = 74???;
682
            global.monstermakex[1] = xx + 446;
683
            global.monstermakey[1] = yy + 153;
684
            global.monsterinstancetype[2] = obj_kawkaw_enemy;
685
            global.monstertype[2] = 74???;
686
            global.monstermakex[2] = xx + 483;
687
            global.monstermakey[2] = yy + 240;
688
            global.battlemsg[0] = stringsetloc(
* Shi blocks the way! (... sort of.)
* Kawkaw wants to play!
"* Shi blocks the way! (... sort of.)&* Kawkaw wants to play!", "scr_encountersetup_slash_scr_encountersetup_gml_962_0"
);
689
            break;
690
        case 211:
691
            global.monsterinstancetype[0] = obj_scarecrow_enemy;
692
            global.monstertype[0] = 72???;
693
            global.monstermakex[0] = xx + 473;
694
            global.monstermakey[0] = yy + 32;
695
            global.monsterinstancetype[1] = obj_scarecrow_enemy;
696
            global.monstertype[1] = 72???;
697
            global.monstermakex[1] = xx + 473;
698
            global.monstermakey[1] = yy + 162;
699
            global.battlemsg[0] = stringsetloc(
* Shi blocks the way! (... sort of.)
"* Shi blocks the way! (... sort of.)", "scr_encountersetup_slash_scr_encountersetup_gml_976_0"
);
700
            break;
701
        case 212:
702
            global.monsterinstancetype[0] = obj_scarecrow_enemy;
703
            global.monstertype[0] = 72???;
704
            global.monstermakex[0] = xx + 473;
705
            global.monstermakey[0] = yy + 76;
706
            global.battlemsg[0] = stringsetloc(
* Shi blocks the way! (... sort of.)
"* Shi blocks the way! (... sort of.)", "scr_encountersetup_slash_scr_encountersetup_gml_985_0"
);
707
            break;
708
        case 213:
709
            global.monsterinstancetype[0] = obj_shinobeetle_enemy;
710
            global.monstertype[0] = 73???;
711
            global.monstermakex[0] = xx + 474;
712
            global.monstermakey[0] = yy + 24;
713
            global.monstertype[1] = 0(None);
714
            global.monstertype[2] = 0(None);
715
            global.battlemsg[0] = stringsetloc(
SETH AND 1 SHINOBEETLE
"SETH AND 1 SHINOBEETLE", "scr_encountersetup_slash_scr_encountersetup_gml_998_0"
);
716
            break;
717
        case 214:
718
            global.monsterinstancetype[0] = obj_floradinn_enemy;
719
            global.monstertype[0] = 70???;
720
            global.monstermakex[0] = xx + 473;
721
            global.monstermakey[0] = yy + 64;
722
            global.monsterinstancetype[1] = obj_floradinn_enemy;
723
            global.monstertype[1] = 70???;
724
            global.monstermakex[1] = xx + 446;
725
            global.monstermakey[1] = yy + 152;
726
            global.monsterinstancetype[2] = obj_floradinn_enemy;
727
            global.monstertype[2] = 70???;
728
            global.monstermakex[2] = xx + 483;
729
            global.monstermakey[2] = yy + 240;
730
            global.battlemsg[0] = stringsetloc(
* It's a din of Floradinns!
"* It's a din of Floradinns!", "scr_encountersetup_slash_scr_encountersetup_gml_1017_0"
);
731
            break;
732
        case 215:
733
            global.monsterinstancetype[0] = obj_leafling_enemy;
734
            global.monstertype[0] = 71???;
735
            global.monstermakex[0] = xx + 470;
736
            global.monstermakey[0] = yy + 80;
737
            global.monsterinstancetype[1] = obj_sheary_enemy;
738
            global.monstertype[1] = 75???;
739
            global.monstermakex[1] = xx + 490;
740
            global.monstermakey[1] = yy + 180;
741
            global.monstertype[2] = 0(None);
742
            global.battlemsg[0] = stringsetloc(
* A leaf and its cutter appeared!
"* A leaf and its cutter appeared!", "scr_encountersetup_slash_scr_encountersetup_gml_1032_0"
);
743
            break;
744
        case 220:
745
            global.monsterinstancetype[0] = obj_aqua_enemy;
746
            global.monstertype[0] = 112???;
747
            global.monstermakex[0] = xx + 480;
748
            global.monstermakey[0] = yy + 130;
749
            global.monstertype[2] = 0(None);
750
            global.battlemsg[0] = stringsetloc(
* A mysterious festival begins.
"* A mysterious festival begins.", "scr_encountersetup_slash_scr_encountersetup_gml_1042_0"
);
751
            break;
752
        case 221:
753
            global.monsterinstancetype[0] = obj_orange_enemy;
754
            global.monstertype[0] = 113???;
755
            global.monstermakex[0] = xx + 500;
756
            global.monstermakey[0] = yy + 103;
757
            global.monsterinstancetype[1] = obj_green_enemy;
758
            global.monstertype[1] = 114???;
759
            global.monstermakex[1] = xx + 493;
760
            global.monstermakey[1] = yy + 180;
761
            global.monstertype[2] = 0(None);
762
            global.battlemsg[0] = stringsetloc(
* Green brings the food!
* Orange brings the fight!
"* Green brings the food!&* Orange brings the fight!", "scr_encountersetup_slash_scr_encountersetup_gml_1056_0"
);
763
            break;
764
        case 222:
765
            global.monsterinstancetype[0] = obj_blue_enemy;
766
            global.monstertype[0] = 115???;
767
            global.monstermakex[0] = xx + 466;
768
            global.monstermakey[0] = yy + 40;
769
            global.monsterinstancetype[1] = obj_yellow_enemy;
770
            global.monstertype[1] = 116???;
771
            global.monstermakex[1] = xx + 500;
772
            global.monstermakey[1] = yy + 160;
773
            global.monstertype[2] = 0(None);
774
            global.battlemsg[0] = stringsetloc(
* Yellow brings the gun's!
* Blue brings the elegance!
"* Yellow brings the gun's!&* Blue brings the elegance!", "scr_encountersetup_slash_scr_encountersetup_gml_1070_0"
);
775
            break;
776
        case 223:
777
            global.monsterinstancetype[0] = obj_purple_enemy;
778
            global.monstertype[0] = 117???;
779
            global.monstermakex[0] = xx + 480;
780
            global.monstermakey[0] = yy + 110;
781
            global.monsterinstancetype[1] = obj_aqua_enemy;
782
            global.monstertype[1] = 112???;
783
            global.monstermakex[1] = xx + 500;
784
            global.monstermakey[1] = yy + 200;
785
            global.monstertype[2] = 0(None);
786
            global.battlemsg[0] = stringsetloc(
* Aqua brings the sword!
* Seth brings the pen!
"* Aqua brings the sword!&* Seth brings the pen!", "scr_encountersetup_slash_scr_encountersetup_gml_1084_0"
);
787
            break;
788
        case 224:
789
            global.monsterinstancetype[0] = obj_pink_enemy;
790
            global.monstertype[0] = 118???;
791
            global.monstermakex[0] = xx + 470;
792
            global.monstermakey[0] = yy + 131;
793
            global.battlemsg[0] = stringsetloc(
* TP MAX reduced by TEA!
Gather HEARTS to recover MAX TP!
"* TP MAX reduced by TEA!&Gather HEARTS to recover MAX TP!", "scr_encountersetup_slash_scr_encountersetup_gml_1093_0"
);
794
            break;
795
        case 225:
796
            global.monsterinstancetype[0] = obj_flowery_enemy;
797
            global.monstertype[0] = 119???;
798
            global.monstermakex[0] = xx + 500;
799
            global.monstermakey[0] = yy + 114;
800
            global.battlemsg[0] = stringsetloc(
* Flowery faces you!
"* Flowery faces you!", "scr_encountersetup_slash_scr_encountersetup_gml_1102_0"
);
801
            break;
802
        case 226:
803
            global.heromakex[0] = xx + 90;
804
            global.heromakey[0] = yy + 32;
805
            global.heromakex[1] = xx + 80;
806
            global.heromakey[1] = yy + 104;
807
            global.monsterinstancetype[0] = obj_floradinn_enemy;
808
            global.monstertype[0] = 70???;
809
            global.monstermakex[0] = xx + 298;
810
            global.monstermakey[0] = yy + 158;
811
            global.monsterinstancetype[1] = obj_floradinn_enemy;
812
            global.monstertype[1] = 70???;
813
            global.monstermakex[1] = xx + 420;
814
            global.monstermakey[1] = yy + 194;
815
            global.monstertype[2] = 0(None);
816
            global.battlemsg[0] = "";
817
            break;
818
        case 227:
819
            if (partyconfig == 1)
820
                krloc = [80, 122];
821
            if (partyconfig == 2)
822
            {
823
                krloc = [94, 86];
824
                suloc = [80, 166];
825
            }
826
            global.heromakex = [xx + krloc[0], xx + suloc[0], xx + raloc[0]];
827
            global.heromakey = [yy + krloc[1], yy + suloc[1], yy + raloc[1]];
828
            global.monsterinstancetype[count] = obj_floradinn_enemy;
829
            global.monstertype[count] = 70???;
830
            global.monstermakex[count] = xx + 480;
831
            global.monstermakey[count] = yy + 110;
832
            count++;
833
            global.battlemsg[0] = stringsetloc(
* Floradinn florads in!
"* Floradinn florads in!", "scr_encountersetup_slash_scr_encountersetup_gml_1147_0"
);
834
            break;
835
        case 228:
836
            if (partyconfig == 1)
837
                krloc = [80, 122];
838
            if (partyconfig == 2)
839
            {
840
                krloc = [94, 86];
841
                suloc = [80, 166];
842
            }
843
            global.heromakex = [xx + krloc[0], xx + suloc[0], xx + raloc[0]];
844
            global.heromakey = [yy + krloc[1], yy + suloc[1], yy + raloc[1]];
845
            global.monsterinstancetype[count] = obj_floradinn_enemy;
846
            global.monstertype[count] = 70???;
847
            global.monstermakex[count] = xx + 514;
848
            global.monstermakey[count] = yy + 38;
849
            count++;
850
            global.monsterinstancetype[count] = obj_sheary_enemy;
851
            global.monstertype[count] = 75???;
852
            global.monstermakex[count] = xx + 534;
853
            global.monstermakey[count] = yy + 130;
854
            count++;
855
            global.monsterinstancetype[count] = obj_netskie_enemy;
856
            global.monstertype[count] = 76???;
857
            global.monstermakex[count] = xx + 528;
858
            global.monstermakey[count] = yy + 222;
859
            count++;
860
            global.battlemsg[0] = stringsetloc(
* Floradinn florads in!
* Sheary cuts in!
* Netskie unwraps itself from its big fluffy tail!
"* Floradinn florads in!&* Sheary cuts in!&* Netskie unwraps itself from its big fluffy tail!", "scr_encountersetup_slash_scr_encountersetup_gml_1183_0"
);
861
            break;
862
        case 229:
863
            global.monsterinstancetype[0] = obj_netskie_enemy;
864
            global.monstertype[0] = 76???;
865
            global.monstermakex[0] = xx + 473;
866
            global.monstermakey[0] = yy + 130;
867
            global.monstertype[1] = 0(None);
868
            global.monstertype[2] = 0(None);
869
            global.battlemsg[0] = stringsetloc(
* Netskie tricked you!
"* Netskie tricked you!", "scr_encountersetup_slash_scr_encountersetup_gml_1194_0"
);
870
            break;
871
        case 230:
872
            global.heromakex[0] = xx + 90;
873
            global.heromakey[0] = yy + 32;
874
            global.heromakex[1] = xx + 90;
875
            global.heromakey[1] = yy + 104;
876
            global.monsterinstancetype[0] = obj_floradinn_enemy;
877
            global.monstertype[0] = 70???;
878
            global.monstermakex[0] = xx + 360;
879
            global.monstermakey[0] = yy + 158;
880
            global.monstertype[2] = 0(None);
881
            global.battlemsg[0] = "";
882
            break;
883
        case 231:
884
            global.monsterinstancetype[0] = obj_scarecrow_enemy;
885
            global.monstertype[0] = 72???;
886
            global.monstermakex[0] = xx + 462;
887
            global.monstermakey[0] = yy + 110;
888
            global.monstertype[2] = 0(None);
889
            global.battlemsg[0] = stringsetloc(
* Shi blocks the way! (... sort of.)
"* Shi blocks the way! (... sort of.)", "scr_encountersetup_slash_scr_encountersetup_gml_1226_0"
);
890
            break;
891
        case 232:
892
            global.monsterinstancetype[0] = obj_shinobeetle_enemy;
893
            global.monstertype[0] = 73???;
894
            global.monstermakex[0] = xx + 437;
895
            global.monstermakey[0] = yy + 112;
896
            global.battlemsg[0] = stringsetloc(
* Shinobeetle is no longer alone!
"* Shinobeetle is no longer alone!", "scr_encountersetup_slash_scr_encountersetup_gml_1235_0"
);
897
            break;
898
        case 233:
899
            global.monsterinstancetype[0] = obj_scarecrow_enemy;
900
            global.monstertype[0] = 72???;
901
            global.monstermakex[0] = xx + 495;
902
            global.monstermakey[0] = yy + 75;
903
            global.monsterinstancetype[1] = obj_scarecrow_enemy;
904
            global.monstertype[1] = 72???;
905
            global.monstermakex[1] = xx + 495;
906
            global.monstermakey[1] = yy + 130;
907
            global.monsterinstancetype[2] = obj_scarecrow_enemy;
908
            global.monstertype[2] = 72???;
909
            global.monstermakex[2] = xx + 495;
910
            global.monstermakey[2] = yy + 185;
911
            global.battlemsg[0] = stringsetloc(
* Shi blocks the way for real!
"* Shi blocks the way for real!", "scr_encountersetup_slash_scr_encountersetup_gml_1254_0"
);
912
            break;
913
        case 234:
914
            global.monsterinstancetype[0] = obj_trashy_trio;
915
            global.monstertype[0] = 121???;
916
            global.monstermakex[0] = xx + 456;
917
            global.monstermakey[0] = yy + 182;
918
            global.battlemsg[0] = stringsetloc(
* The world's most popular trio!
"* The world's most popular trio!", "scr_encountersetup_slash_scr_encountersetup_gml_1263_0_b"
);
919
            break;
920
        case 235:
921
            global.monsterinstancetype[0] = obj_enemy_example;
922
            global.monstertype[0] = 123???;
923
            global.monstermakex[0] = xx + 456;
924
            global.monstermakey[0] = yy + 102;
925
            global.battlemsg[0] = stringsetloc(
...
"...", "scr_encountersetup_slash_scr_encountersetup_gml_1272_0"
);
926
            break;
927
        case 500:
928
            global.monsterinstancetype[0] = obj_multiboss_enemy1;
929
            global.monstertype[0] = 500Multiboss Example;
930
            global.monstermakex[0] = xx + 480;
931
            global.monstermakey[0] = yy + 80;
932
            global.monsterinstancetype[1] = obj_multiboss_enemy2;
933
            global.monstertype[1] = 500Multiboss Example;
934
            global.monstermakex[1] = xx + 500;
935
            global.monstermakey[1] = yy + 160;
936
            global.monsterinstancetype[2] = obj_multiboss_enemy3;
937
            global.monstertype[2] = 500Multiboss Example;
938
            global.monstermakex[2] = xx + 520;
939
            global.monstermakey[2] = yy + 240;
940
            global.battlemsg[0] = stringset("* A multiboss example showed up.");
941
            break;
942
        case 501:
943
            global.monsterinstancetype[0] = obj_multiboss_controller_enemy1;
944
            global.monstertype[0] = 501Multiboss C Example;
945
            global.monstermakex[0] = xx + 480;
946
            global.monstermakey[0] = yy + 80;
947
            global.monsterinstancetype[1] = obj_multiboss_controller_enemy2;
948
            global.monstertype[1] = 501Multiboss C Example;
949
            global.monstermakex[1] = xx + 500;
950
            global.monstermakey[1] = yy + 160;
951
            global.monsterinstancetype[2] = obj_multiboss_controller_enemy3;
952
            global.monstertype[2] = 501Multiboss C Example;
953
            global.monstermakex[2] = xx + 520;
954
            global.monstermakey[2] = yy + 240;
955
            global.battlemsg[0] = stringset("* A multiboss example with controller showed up.");
956
            break;
957
        case 777:
958
            global.monsterinstancetype[0] = obj_bullettester_enemy;
959
            global.monsterinstancetype[1] = obj_bullettester_enemy;
960
            global.monsterinstancetype[2] = obj_bullettester_enemy;
961
            global.monstertype[0] = 1Enemy (placeholder/G-BODY);
962
            global.monstertype[1] = 1Enemy (placeholder/G-BODY);
963
            global.monstertype[2] = 1Enemy (placeholder/G-BODY);
964
            global.battlemsg[0] = stringset(" ");
965
            break;
966
        default:
967
            global.monsterinstancetype[0] = obj_baseenemy;
968
            global.monstertype[0] = 1Enemy (placeholder/G-BODY);
969
            global.monstermakex[0] = xx + 480;
970
            global.monstermakey[0] = yy + 110;
971
            global.monsterinstancetype[1] = obj_baseenemy;
972
            global.monstertype[1] = 1Enemy (placeholder/G-BODY);
973
            global.monstermakex[1] = xx + 500;
974
            global.monstermakey[1] = yy + 200;
975
            global.monstertype[2] = 0(None);
976
            break;
977
    }
978
}