-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathitems.py
58 lines (34 loc) · 886 Bytes
/
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
47
48
49
50
51
52
53
54
55
56
57
58
item_id = {
"id": "id",
"name": "id card",
"description":
"""You new shiny student ID card. Expires 1 June 2017.
You wonder why they have printed a suicide hotline number on it?...""",
}
item_laptop = {
"id": "laptop",
"name": "laptop",
"description":
"It has seen better days. At least it has a WiFi card!",
}
item_money = {
"id": "money",
"name": "money",
"description":
"This wad of cash is barely enough to pay your tuition fees.",
}
item_biscuits = {
"id": "biscuits",
"name": "a pack of biscuits",
"description": "A pack of biscuits.",
}
item_pen = {
"id": "pen",
"name": "a pen",
"description": "A basic ballpoint pen.",
}
item_handbook = {
"id": "handbook",
"name": "a student handbook",
"description": "This student handbook explains everything. Seriously.",
}