forked from Frimkron/mud-pi
-
Notifications
You must be signed in to change notification settings - Fork 3
/
items.py
46 lines (46 loc) · 1.21 KB
/
items.py
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
items = {
"ray gun": {
"description": "Don't use without adult supervision!",
"type": "weapon",
"damage": 10,
"value": 75,
},
"titanium bar": {
"description": "An ingot of very strong metal.",
"type": "material",
"damage": 1,
"value": 25,
},
"watermelon":{
"description": "A green and red melon.",
"type": "consumable",
"damage": 15,
"value": 150,
"upStat": "hp",
"upAmount": 200,
},
"ration":{
"description": "A typical food ration, not very tasty.",
"type": "consumable",
"damage": 1,
"value": 5,
"upStat": "hp",
"upAmount": 8,
},
"xp booster":{
"description": "A strange serum injection that makes one feel more experienced.",
"type": "consumable",
"damage": 1,
"value": 150,
"upStat": "xp",
"upAmount": 50,
},
"speedstim":{
"description": "A strange serum injection that makes one feel faster.",
"type": "consumable",
"damage": 1,
"value": 10,
"upStat": "spd",
"upAmount": 2,
},
}