-
Notifications
You must be signed in to change notification settings - Fork 0
/
mapLoot.py
115 lines (111 loc) · 3.3 KB
/
mapLoot.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
"""
F04 Group 2: Bryan Tan, Ryan Kaw Zheng Da, Colin Teoh, Xu Muzi, Joseph Lai
"""
mapLoot = {
# Strucured by the type of lootbox u can find and what is inside them, with gold by range its loot by possibility in perecentage
"treasure chest": {
"gold": [50,125],
"possible loot": {
"bracelet of accuracy":15,
"ring of speed":10,
"focus shard":10,
"gloves of haste":5,
"cloak of darkness":5,
"obfuscating shroud":5,
"talisman of evasion":5,
"scale armor":5,
"dragonscale armor":1,
"plate armor":2,
"chainmail":5,
"gladius":5,
"sword":5,
"large torch fuel":10,
"large health potion":10,
"large food ration":10,
"health potion":10,
"torch fuel":10,
"food ration":10,
"small torch fuel":15,
"small health potion":15,
"small food ration":15,
"small torch fuel":10,
"small health potion":10,
"small food ration":10,
"health potion":10,
"torch fuel":10,
"food ration":10
}
},
"box of supplies": {
"gold": [6,15],
"possible loot": {
"large torch fuel":10,
"large health potion":10,
"large food ration":10,
"health potion":25,
"torch fuel":25,
"food ration":25,
"small torch fuel":50,
"small health potion":50,
"small food ration":50,
"small torch fuel":35,
"small health potion":35,
"small food ration":35,
"small torch fuel":10,
"small health potion":10,
"small food ration":10
}
},
"box of equipment": {
"gold": [5,20],
"possible loot": {
"dagger":85,
"short sword":30,
"spear":15,
"gladius":15,
"sword":10,
"halberd":5,
"longsword":5,
"leather armor":60,
"chainmail":15,
"scale armor":7,
"plate armor":3,
"bracelet of accuracy":10,
"ring of speed":10,
"focus shard":10,
"gloves of haste":5,
"cloak of darkness":5,
"obfuscating shroud":5,
"talisman of evasion":5
}
},
"caverneer's stash": {
"gold": [1,25],
"possible loot": {
"small torch fuel":95,
"small torch fuel":50,
"small torch fuel":20,
"torch fuel":40,
"large torch fuel":30,
"bracelet of accuracy":25,
"ring of speed":15,
"focus shard":15,
"gloves of haste":10,
"cloak of darkness":10,
"obfuscating shroud":5,
"talisman of evasion":5,
}
},
"potion pouch": {
"gold": [1,12],
"possible loot": {
"talisman of evasion":5,
"small health potion":90,
"small health potion":50,
"small health potion":30,
"health potion":40,
"health potion":20,
"large health potion":20,
}
}
}