-
Notifications
You must be signed in to change notification settings - Fork 0
/
global.json
41 lines (41 loc) · 1.18 KB
/
global.json
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
{
"BASE_URL": "https://api.api-ninjas.com/v1/randomword",
"WORD_ROUTE": "/api/word",
"INSTRUCTION": [
"1. The game begins by selecting a secret word or phrase.",
"2. The player must then guess a letter in the word or phrase.",
"3. If the guessed letter is in the word, it is revealed in its correct position(s) in the word.",
"4. If the guessed letter is not in the word, a part of the 'hangman' (a stick figure or other visual representation) is drawn. The player can continue guessing letters until the hangman is completely drawn, resulting in a loss.",
"5. The player has the option to ask for a hint if they are stuck. The hint may reveal a particular letter in the word or provide a clue related to the secret word or phrase.",
"6. If the player correctly guesses the word or phrase, they win the game.",
"7. If the player loses the game, they can try guessing the word or phrase again with the help of a hint."
],
"ALPHABET": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"i",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"w",
"x",
"y",
"z"
]
}