-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdata.js
More file actions
72 lines (72 loc) · 1.22 KB
/
data.js
File metadata and controls
72 lines (72 loc) · 1.22 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"type": "weapon",
"itemName": "Laser Baton",
"attackStat": 10,
"defenceStat": 0,
"buff": null,
"cost": 100
},
{
"type": "weapon",
"itemName": "Plasma Sword",
"attackStat": 50,
"defenceStat": 0,
"buff": null,
"cost": 500
},
{
"type": "weapon",
"itemName": "Beam Rifle",
"attackStat": 100,
"defenceStat": 0,
"buff": null,
"cost": 1000
},
{
"type": "armor",
"itemName": "Wooden Shield",
"attackStat": 0,
"defenceStat": 10,
"buff": null,
"cost": 100
},
{
"type": "armor",
"itemName": "Durasteel Protector",
"attackStat": 0,
"defenceStat": 50,
"buff": null,
"cost": 500
},
{
"type": "armor",
"itemName": "Electrum Defender",
"attackStat": 0,
"defenceStat": 100,
"buff": null,
"cost": 1000
},
{
"type": "potion",
"itemName": "Health Potion",
"attackStat": 0,
"defenceStat": 0,
"buff": "healing",
"cost": 50
},
{
"type": "potion",
"itemName": "Mana Potion",
"attackStat": 0,
"defenceStat": 0,
"buff": "mana",
"cost": 50
},
{
"type": "potion",
"itemName": "Strength Potion",
"attackStat": 10,
"defenceStat": 0,
"buff": "strength",
"cost": 100
}