File size: 16,926 Bytes
5c2ed06
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
'use strict';

const assert = require('./../assert');
const common = require('./../common');

let battle;

describe('Choice parser', () => {
	afterEach(() => battle.destroy());
	describe('Team Preview requests', () => {
		it('should accept only `team` choices', () => {
			battle = common.createBattle({ preview: true }, [
				[{ species: "Mew", ability: 'synchronize', moves: ['recover'] }],
				[{ species: "Rhydon", ability: 'prankster', moves: ['splash'] }],
			]);

			const validChoice = 'team 1';
			assert(battle.choose('p1', validChoice));
			battle.p1.clearChoice();
			assert(battle.choose('p2', validChoice));
			battle.p1.clearChoice();

			const badChoices = ['move 1', 'move 2 mega', 'switch 1', 'pass', 'shift'];
			for (const badChoice of badChoices) {
				assert.throws(() => battle.choose('p1', badChoice));
			}
		});

		it('should reject non-numerical choice details', () => {
			battle = common.createBattle({ preview: true }, [
				[{ species: "Mew", ability: 'synchronize', moves: ['recover'] }],
				[{ species: "Rhydon", ability: 'prankster', moves: ['splash'] }],
			]);

			for (const side of battle.sides) {
				assert.throws(() => battle.choose(side.id, 'team Rhydon'));
				assert.throws(() => battle.choose(side.id, 'team Mew'));
				assert.throws(() => battle.choose(side.id, 'team first'));
			}
		});

		it('should reject zero-based choice details', () => {
			battle = common.createBattle({ preview: true }, [
				[{ species: "Mew", ability: 'synchronize', moves: ['recover'] }],
				[{ species: "Rhydon", ability: 'prankster', moves: ['splash'] }],
			]);

			for (const side of battle.sides) {
				assert.throws(
					() => battle.choose(side.id, 'team 0'),
					/\[Invalid choice\] Can't choose for Team Preview:/i,
					`Input should have been rejected`
				);
			}
		});
	});

	describe('Switch requests', () => {
		describe('Generic', () => {
			it('should reject non-numerical input for `switch` choices', () => {
				battle = common.createBattle();
				battle.setPlayer('p1', { team: [
					{ species: "Mew", ability: 'synchronize', moves: ['lunardance'] },
					{ species: "Bulbasaur", ability: 'overgrow', moves: ['tackle', 'growl'] },
				] });
				battle.setPlayer('p2', { team: [{ species: "Rhydon", ability: 'prankster', moves: ['splash'] }] });

				battle.makeChoices('move lunardance', 'move splash');

				assert.throws(() => battle.choose('p1', 'switch first'));
				assert.throws(() => battle.choose('p1', 'switch second'));
			});
		});

		describe('Singles', () => {
			it('should accept only `switch` choices', () => {
				battle = common.createBattle();
				battle.setPlayer('p1', { team: [
					{ species: "Mew", ability: 'synchronize', moves: ['lunardance'] },
					{ species: "Bulbasaur", ability: 'overgrow', moves: ['tackle', 'growl'] },
				] });
				battle.setPlayer('p2', { team: [{ species: "Rhydon", ability: 'prankster', moves: ['splash'] }] });

				battle.makeChoices('move lunardance', 'move splash');

				const badChoices = ['move 1', 'move 2 mega', 'team 1', 'pass', 'shift'];
				for (const badChoice of badChoices) {
					assert.throws(() => battle.p1.choose(badChoice));
				}

				const validChoice = 'switch Bulbasaur';
				assert(battle.p1.choose(validChoice));
				battle.p1.clearChoice();
			});
		});

		describe('Doubles/Triples', () => {
			it('should accept only `switch` and `pass` choices', () => {
				battle = common.createBattle({ gameType: 'doubles' });
				battle.setPlayer('p1', { team: [
					{ species: "Pineco", ability: 'sturdy', moves: ['selfdestruct'] },
					{ species: "Geodude", ability: 'sturdy', moves: ['selfdestruct'] },
					{ species: "Koffing", ability: 'levitate', moves: ['smog'] },
				] });
				battle.setPlayer('p2', { team: [
					{ species: "Skarmory", ability: 'sturdy', moves: ['roost'] },
					{ species: "Aggron", ability: 'sturdy', moves: ['irondefense'] },
					{ species: "Ekans", ability: 'shedskin', moves: ['wrap'] },
				] });
				battle.makeChoices('move selfdestruct, move selfdestruct', 'move roost, move irondefense'); // Both p1 active Pokémon faint

				const badChoices = ['move 1', 'move 2 mega', 'team 1', 'shift'];
				for (const badChoice of badChoices) {
					assert.throws(() => battle.p1.choose(badChoice));
				}

				assert(battle.p1.choose(`pass, switch 3`), `Choice 'pass, switch 3' should be valid`);
			});

			it('should reject choice details for `pass` choices', () => {
				battle = common.createBattle({ gameType: 'doubles' });
				battle.setPlayer('p1', { team: [
					{ species: "Pineco", ability: 'sturdy', moves: ['selfdestruct'] },
					{ species: "Geodude", ability: 'sturdy', moves: ['selfdestruct'] },
					{ species: "Koffing", ability: 'levitate', moves: ['smog'] },
				] });
				battle.setPlayer('p2', { team: [
					{ species: "Skarmory", ability: 'sturdy', moves: ['roost'] },
					{ species: "Aggron", ability: 'sturdy', moves: ['irondefense'] },
					{ species: "Ekans", ability: 'shedskin', moves: ['wrap'] },
				] });
				battle.makeChoices('move selfdestruct, move selfdestruct', 'move roost, move irondefense'); // Both p1 active Pokémon faint

				const switchChoice = 'switch 3';
				const passChoice = 'pass';

				assert.throws(() => battle.choose('p1', `${switchChoice}, ${passChoice} 1`));
				assert.throws(() => battle.choose('p1', `${passChoice} 1, ${switchChoice}`));
				assert.throws(() => battle.choose('p1', `${switchChoice}, ${passChoice} a`));
				assert.throws(() => battle.choose('p1', `${passChoice} a, ${switchChoice}`));
			});

			it.skip(`should only allow switching to left slots on double KOs with only one Pokemon remaining`, () => {
				battle = common.createBattle({ gameType: 'doubles' }, [[
					{ species: 'tornadus', moves: ['sleeptalk'] },
					{ species: 'landorus', moves: ['earthquake'] },
				], [
					{ species: 'roggenrola', level: 1, moves: ['sleeptalk'] },
					{ species: 'aron', level: 1, moves: ['sleeptalk'] },
					{ species: 'wynaut', moves: ['sleeptalk'] },
				]]);
				battle.makeChoices();
				assert.throws(() => battle.choose('p2', 'pass, switch 3'), 'Wynaut should only be able to switch on the left.');
			});
		});
	});

	describe('Move requests', () => {
		describe('Generic', () => {
			it('should reject `pass` choices for non-fainted Pokémon', () => {
				battle = common.createBattle();
				battle.setPlayer('p1', { team: [{ species: "Mew", ability: 'synchronize', moves: ['recover'] }] });
				battle.setPlayer('p2', { team: [{ species: "Rhydon", ability: 'prankster', moves: ['splash'] }] });

				for (const side of battle.sides) {
					assert.throws(() => battle.choose(side.id, 'pass'));
				}
			});

			it('should allow mega evolving and targeting in the same move in either order', () => {
				battle = common.createBattle({ gameType: 'doubles' });
				battle.setPlayer('p1', { team: [
					{ species: "Gengar", ability: 'cursedbody', item: 'gengarite', moves: ['shadowball'] },
					{ species: "Zigzagoon", ability: 'pickup', moves: ['tackle'] },
				] });
				battle.setPlayer('p2', { team: [
					{ species: "Blaziken", ability: 'blaze', item: 'firiumz', moves: ['blazekick'] },
					{ species: "Aggron", ability: 'sturdy', moves: ['irondefense'] },
				] });

				const badChoices = [`move 1 1 2`, `move 1 1 mega ultra`, `move 1 mega zmove 2`];
				for (const badChoice of badChoices) {
					const choice = `${badChoice}, move tackle 1`;
					assert.throws(() => battle.choose('p1', choice));
				}

				assert(battle.choose('p1', `move 1 +1 mega, move tackle 1`));
				assert(battle.choose('p2', `move Blaze Kick zmove 1, move irondefense`));
			});

			it('should allow Dynamax use in multiple possible formats', () => {
				battle = common.gen(8).createBattle([[
					{ species: "Mew", moves: ['psychic'] },
				], [
					{ species: "Mew", moves: ['psychic'] },
				]]);

				battle.makeChoices(`move max mindstorm`, `move psychic max`);
				assert(battle.p1.active[0].volatiles['dynamax']);
				assert(battle.p2.active[0].volatiles['dynamax']);
			});

			it('should handle Conversion 2', () => {
				battle = common.createBattle({ gameType: 'doubles' });
				battle.setPlayer('p1', { team: [
					{ species: "Porygon-Z", ability: 'adaptability', item: 'normaliumz', moves: ['conversion', 'conversion2'] },
					{ species: "Porygon", ability: 'download', moves: ['conversion', 'conversion2'] },
				] });
				battle.setPlayer('p2', { team: [
					{ species: "Gengar", ability: 'cursedbody', moves: ['lick'] },
					{ species: "Aggron", ability: 'sturdy', moves: ['irondefense'] },
				] });

				assert(battle.choose('p1', `move 1, move Conversion 2 2`));
				assert.equal(battle.p1.getChoice(), `move conversion, move conversion2 +2`);
				battle.p1.clearChoice();

				assert.throws(() => battle.choose('p1', `move 1, move Conversion -2`));
				battle.p1.clearChoice();

				assert(battle.choose('p1', `move Conversion 2 zmove 2, move 1`));
				assert.equal(battle.p1.getChoice(), `move conversion2 +2 zmove, move conversion`);
				battle.p1.clearChoice();
			});
		});

		describe('Singles', () => {
			it('should accept only `move` and `switch` choices', () => {
				battle = common.createBattle();
				battle.setPlayer('p1', { team: [
					{ species: "Mew", ability: 'synchronize', moves: ['lunardance', 'recover'] },
					{ species: "Bulbasaur", ability: 'overgrow', moves: ['tackle', 'growl'] },
				] });
				battle.setPlayer('p2', { team: [
					{ species: "Rhydon", ability: 'prankster', moves: ['splash', 'horndrill'] },
					{ species: "Charmander", ability: 'blaze', moves: ['tackle', 'growl'] },
				] });

				const validChoices = ['move 1', 'move 2', 'switch 2'];
				for (const action of validChoices) {
					assert(battle.choose('p1', action), `Choice '${action}' should be valid`);
					battle.p1.clearChoice();
				}

				const badChoices = ['move 1 zmove', 'move 2 mega', 'team 1', 'pass', 'shift'];
				for (const badChoice of badChoices) {
					assert.throws(() => battle.choose('p1', badChoice));
				}
			});
		});

		describe('Doubles', () => {
			it('should enforce `pass` choices for fainted Pokémon', () => {
				battle = common.createBattle({ gameType: 'doubles' });
				battle.setPlayer('p1', { team: [
					{ species: "Pineco", ability: 'sturdy', moves: ['selfdestruct'] },
					{ species: "Geodude", ability: 'sturdy', moves: ['selfdestruct'] },
					{ species: "Koffing", ability: 'levitate', moves: ['smog'] },
				] });
				battle.setPlayer('p2', { team: [
					{ species: "Skarmory", ability: 'sturdy', moves: ['roost'] },
					{ species: "Aggron", ability: 'sturdy', moves: ['irondefense'] },
				] });
				const p1 = battle.p1;
				battle.makeChoices('move selfdestruct, move selfdestruct', 'move roost, move irondefense'); // Both p1 active Pokémon faint
				battle.makeChoices('pass, switch 3', ''); // Koffing switches in at slot #2

				assert.fainted(p1.active[0]);
				assert.species(p1.active[1], 'Koffing');
				assert.false.fainted(p1.active[1]);

				assert(battle.choose('p1', 'move smog 2'));
				assert.equal(battle.p1.getChoice(), `pass, move smog +2`, `Choice mismatch`);
			});
		});

		describe('Triples', () => {
			it('should accept only `move` and `switch` choices for a healthy Pokémon on the center', () => {
				battle = common.gen(5).createBattle({ gameType: 'triples' });
				battle.setPlayer('p1', { team: [
					{ species: "Pineco", ability: 'sturdy', moves: ['selfdestruct'] },
					{ species: "Geodude", ability: 'sturdy', moves: ['selfdestruct'] },
					{ species: "Gastly", ability: 'levitate', moves: ['lick'] },
					{ species: "Forretress", ability: 'levitate', moves: ['spikes'] },
				] });
				battle.setPlayer('p2', { team: [
					{ species: "Skarmory", ability: 'sturdy', moves: ['roost'] },
					{ species: "Aggron", ability: 'sturdy', moves: ['irondefense'] },
					{ species: "Golem", ability: 'sturdy', moves: ['defensecurl'] },
				] });

				const validChoices = ['move 1', 'switch 4'];

				for (const action of validChoices) {
					const choiceString = `move 1, ${action}, move 1 1`;
					assert(battle.choose('p1', choiceString), `Choice '${choiceString}' should be valid`);
					battle.p1.clearChoice();
				}

				const badChoices = ['move 1 zmove', 'move 2 mega', 'team 1', 'pass', 'shift'];
				for (const badChoice of badChoices) {
					const choiceString = `move 1, ${badChoice}, move 1 1`;
					assert.throws(() => battle.choose('p1', choiceString));
				}
			});

			it('should accept only `move`, `switch` and `shift` choices for a healthy Pokémon on the left', () => {
				battle = common.gen(5).createBattle({ gameType: 'triples' });
				battle.setPlayer('p1', { team: [
					{ species: "Pineco", ability: 'sturdy', moves: ['selfdestruct'] },
					{ species: "Geodude", ability: 'sturdy', moves: ['selfdestruct'] },
					{ species: "Gastly", ability: 'levitate', moves: ['lick'] },
					{ species: "Forretress", ability: 'levitate', moves: ['spikes'] },
				] });
				battle.setPlayer('p2', { team: [
					{ species: "Skarmory", ability: 'sturdy', moves: ['roost'] },
					{ species: "Aggron", ability: 'sturdy', moves: ['irondefense'] },
					{ species: "Golem", ability: 'sturdy', moves: ['defensecurl'] },
					{ species: "Magnezone", ability: 'magnetpull', moves: ['discharge'] },
				] });

				const validChoices = ['move 1', 'switch 4', 'shift'];

				for (const action of validChoices) {
					const choiceString = `${action}, move 1, move 1 1`;
					assert(battle.choose('p1', choiceString), `Choice '${choiceString}' should be valid`);
					battle.p1.clearChoice();
				}

				const badChoices = ['move 1 zmove', 'move 2 mega', 'team 1', 'pass'];
				for (const badChoice of badChoices) {
					const choiceString = `${badChoice}, move 1, move 1 1`;
					assert.throws(() => battle.choose('p1', choiceString));
				}
			});

			it('should accept only `move`, `switch` and `shift` choices for a healthy Pokémon on the right', () => {
				battle = common.gen(5).createBattle({ gameType: 'triples' });
				battle.setPlayer('p1', { team: [
					{ species: "Pineco", ability: 'sturdy', moves: ['selfdestruct'] },
					{ species: "Geodude", ability: 'sturdy', moves: ['selfdestruct'] },
					{ species: "Gastly", ability: 'levitate', moves: ['lick'] },
					{ species: "Forretress", ability: 'levitate', moves: ['spikes'] },
				] });
				battle.setPlayer('p2', { team: [
					{ species: "Skarmory", ability: 'sturdy', moves: ['roost'] },
					{ species: "Aggron", ability: 'sturdy', moves: ['irondefense'] },
					{ species: "Golem", ability: 'sturdy', moves: ['defensecurl'] },
					{ species: "Magnezone", ability: 'magnetpull', moves: ['discharge'] },
				] });

				const validChoices = ['move 1 1', 'switch 4', 'shift'];

				for (const action of validChoices) {
					const choiceString = `move 1, move 1, ${action}`;
					assert(battle.choose('p1', choiceString), `Choice '${choiceString}' should be valid`);
					battle.p1.clearChoice();
				}

				const badChoices = ['move 1 zmove', 'move 2 mega', 'team 1', 'pass', 'shift blah'];
				for (const badChoice of badChoices) {
					const choiceString = `move 1, move 1, ${badChoice}`;
					assert.throws(() => battle.choose('p1', choiceString));
				}
			});

			it('should enforce `pass` choices for fainted Pokémon', () => {
				battle = common.gen(5).createBattle({ gameType: 'triples' });
				battle.setPlayer('p1', { team: [
					{ species: "Pineco", ability: 'sturdy', moves: ['selfdestruct'] },
					{ species: "Geodude", ability: 'sturdy', moves: ['selfdestruct'] },
					{ species: "Gastly", ability: 'levitate', moves: ['lunardance'] },
					{ species: "Forretress", ability: 'levitate', moves: ['spikes'] },
				] });
				battle.setPlayer('p2', { team: [
					{ species: "Skarmory", ability: 'sturdy', moves: ['roost'] },
					{ species: "Aggron", ability: 'sturdy', moves: ['irondefense'] },
					{ species: "Golem", ability: 'sturdy', moves: ['defensecurl'] },
				] });
				const p1 = battle.p1;
				battle.makeChoices('move selfdestruct, move selfdestruct, move lunardance', 'move roost, move irondefense, move defensecurl'); // All p1 active Pokémon faint

				battle.makeChoices('pass, switch 4, default', ''); // Forretress switches in to slot #2
				assert.species(p1.active[1], 'Forretress');

				const validChoices = ['move spikes', 'move 1'];
				for (const action of validChoices) {
					battle.choose('p1', action);
					assert.equal(battle.p1.getChoice(), `pass, move spikes, pass`);
					battle.p1.clearChoice();
					battle.choose('p1', `pass, ${action}, pass`);
					assert.equal(battle.p1.getChoice(), `pass, move spikes, pass`);
					battle.p1.clearChoice();
					battle.choose('p1', `pass, ${action}`);
					assert.equal(battle.p1.getChoice(), `pass, move spikes, pass`);
					battle.p1.clearChoice();
					battle.choose('p1', `${action}, pass`);
					assert.equal(battle.p1.getChoice(), `pass, move spikes, pass`);
					battle.p1.clearChoice();
				}
			});
		});
	});
});