-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtexts.js
46 lines (45 loc) · 2.02 KB
/
texts.js
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
/*
* Pixelated
* Copyright (c) Michael Kolesidis <michael.kolesidis@gmail.com>
* GNU Affero General Public License v3.0
*
* ATTENTION! FREE SOFTWARE
* This website is free software (free as in freedom).
* If you use any part of this code, you must make your entire project's source code
* publicly available under the same license. This applies whether you modify the code
* or use it as it is in your own project. This ensures that all modifications and
* derivative works remain free software, so that everyone can benefit.
* If you are not willing to comply with these terms, you must refrain from using any part of this code.
*
* For full license terms and conditions, you can read the AGPL-3.0 here:
* https://www.gnu.org/licenses/agpl-3.0.html
*
*/
const TEXTS = {
LOSS_MESSAGE: 'Game over! Out of moves.',
WINNING_STREAK: 'Winning streak: ',
MOVES_LEFT: (moves) => `${moves} move${moves === 1 ? '' : 's'} left`,
WIN_MESSAGE: (moves) =>
`You won with ${moves === 1 ? '1 move' : `${moves} moves`} left!`,
HELP_TITLE: 'How to Play',
HELP_DESCRIPTION:
'Pixelated is a puzzle-based strategy game that requires a mix of skill and luck.',
HELP_OBJECTIVE:
'The objective is to change the color of the squares until the entire screen is a single solid color.',
HELP_INSTRUCTIONS:
'Starting with the square in the upper left corner you can change the color of the blocks in order to match that of the surrounding squares. This is done repeatedly until the entire screen is one color. You must do so in under 22 moves to win!',
HELP_CONTROLS:
'The game is controlled by the color buttons at the bottom of the screen.',
BACK_BUTTON: 'Back',
NEW_BUTTON: 'New',
COPYRIGHT: `©<a
href="https://github.com/michaelkolesidis/pixelated"
target="_blank"
>Michael Kolesidis</a
>
<br />
Licensed under the
<a href="https://www.gnu.org/licenses/agpl-3.0.html" target="_blank"
>GNU AGPL</a
>`,
};