-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconst.py
More file actions
185 lines (173 loc) · 2.69 KB
/
const.py
File metadata and controls
185 lines (173 loc) · 2.69 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
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
# Define each query as a constant string
# Actual helmets only (not hats/beanies)
QUERY_HELMETS = """
query {
items(types: [helmet], limit: 12) {
shortName
basePrice
inspectImageLink
}
}
"""
# Body armor
QUERY_PLATES = """
query {
items(categoryNames: [Armor], limit: 12) {
shortName
basePrice
inspectImageLink
}
}
"""
# Backpacks
QUERY_BACKPACKS = """
query {
items(categoryNames: [Backpack], limit: 12) {
shortName
basePrice
inspectImageLink
}
}
"""
# Preset weapons (complete builds with caliber info)
QUERY_WEAPONS = """
query {
items(types: [preset], categoryNames: [AssaultRifle, SMG, Shotgun, MarksmanRifle, SniperRifle], limit: 15) {
shortName
basePrice
inspectImageLink
properties {
... on ItemPropertiesPreset {
baseItem {
shortName
properties {
... on ItemPropertiesWeapon {
caliber
}
}
}
}
}
}
}
"""
# Ammo with caliber for filtering (high limit to get all calibers)
QUERY_AMMO = """
query {
ammo(limit: 200) {
item {
shortName
basePrice
inspectImageLink
}
caliber
damage
armorDamage
}
}
"""
QUERY_MAPS = """
query {
maps {
id
name
normalizedName
wiki
description
enemies
raidDuration
players
bosses {
name
spawnChance
}
accessKeys {
shortName
wikiLink
}
}
}
"""
QUERY_PLAYER_LEVELS = """
query {
playerLevels {
level
exp
}
}
"""
# Headphones/Ear Protection
QUERY_HEADPHONES = """
query {
items(categoryNames: [Headphones], limit: 8) {
shortName
basePrice
inspectImageLink
}
}
"""
# Magazines with capacity
QUERY_MAGAZINES = """
query {
items(categoryNames: [Magazine], limit: 50) {
shortName
basePrice
inspectImageLink
properties {
... on ItemPropertiesMagazine {
capacity
allowedAmmo {
shortName
}
}
}
}
}
"""
# Food items
QUERY_FOOD = """
query {
items(categoryNames: [Food], limit: 8) {
shortName
basePrice
inspectImageLink
properties {
... on ItemPropertiesFoodDrink {
energy
hydration
}
}
}
}
"""
# Drink items
QUERY_DRINKS = """
query {
items(categoryNames: [Drink], limit: 8) {
shortName
basePrice
inspectImageLink
properties {
... on ItemPropertiesFoodDrink {
energy
hydration
}
}
}
}
"""
# Medical items (medkits)
QUERY_MEDS = """
query {
items(categoryNames: [Medikit], limit: 8) {
shortName
basePrice
inspectImageLink
properties {
... on ItemPropertiesMedKit {
hitpoints
}
}
}
}
"""