-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathenemies.json
More file actions
55 lines (55 loc) · 1.08 KB
/
Copy pathenemies.json
File metadata and controls
55 lines (55 loc) · 1.08 KB
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
{
"_comment": "Stats de enemigos. sprite_row/col = posición en chars.png (32x32 grid).",
"enemies": {
"alumno_cansado": {
"name": "Alumno Cansado",
"emoji": "😴",
"maxHp": 25,
"atk": 5,
"sprite_row": 0,
"sprite_col": 0,
"xp": 15,
"coins": 2
},
"desmotivacion": {
"name": "Desmotivación",
"emoji": "😒",
"maxHp": 38,
"atk": 10,
"sprite_row": 0,
"sprite_col": 1,
"xp": 25,
"coins": 4
},
"prueba_sorpresa": {
"name": "Prueba Sorpresa",
"emoji": "📋",
"maxHp": 50,
"atk": 16,
"sprite_row": 0,
"sprite_col": 2,
"xp": 40,
"coins": 6
},
"resfriado": {
"name": "Resfriado",
"emoji": "🤧",
"maxHp": 35,
"atk": 9,
"sprite_row": 0,
"sprite_col": 3,
"xp": 20,
"coins": 3
},
"celular_clase": {
"name": "Celular en Clase",
"emoji": "📱",
"maxHp": 38,
"atk": 11,
"sprite_row": 0,
"sprite_col": 4,
"xp": 22,
"coins": 4
}
}
}