yolkbot 0.1.3 → 0.1.4-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/browser/build/global.js +1 -1
- package/browser/build/module.js +1 -1
- package/dist/api.js +3 -0
- package/dist/bot/GamePlayer.js +3 -0
- package/dist/bot.js +3 -0
- package/dist/comm/Codes.js +3 -0
- package/dist/comm/CommIn.js +3 -0
- package/dist/comm/CommOut.js +3 -0
- package/dist/comm/OutBuffer.js +3 -0
- package/dist/comm/Pool.js +3 -0
- package/dist/comm/index.js +3 -0
- package/dist/constants/challenges.js +3 -0
- package/dist/constants/changelog.js +3 -0
- package/dist/constants/codes.js +3 -0
- package/dist/constants/guns.js +3 -0
- package/dist/constants/housePromo.js +3 -0
- package/dist/constants/index.js +3 -0
- package/dist/constants/items.js +3 -0
- package/dist/constants/language.js +3 -0
- package/dist/constants/maps.js +3 -0
- package/dist/constants/shellNews.js +3 -0
- package/dist/constants/shellYoutube.js +3 -0
- package/dist/constants/shopItems.js +3 -0
- package/dist/constants/sounds.js +3 -0
- package/dist/dispatches/BootPlayerDispatch.js +3 -0
- package/dist/dispatches/ChatDispatch.js +3 -0
- package/dist/dispatches/FireDispatch.js +3 -0
- package/dist/dispatches/GameOptionsDispatch.js +3 -0
- package/dist/dispatches/GoToAmmoDispatch.js +3 -0
- package/dist/dispatches/GoToCoopDispatch.js +3 -0
- package/dist/dispatches/GoToGrenadeDispatch.js +3 -0
- package/dist/dispatches/GoToPlayerDispatch.js +3 -0
- package/dist/dispatches/GoToSpatulaDispatch.js +3 -0
- package/dist/dispatches/LookAtDispatch.js +3 -0
- package/dist/dispatches/LookAtPosDispatch.js +3 -0
- package/dist/dispatches/MeleeDispatch.js +3 -0
- package/dist/dispatches/MovementDispatch.js +3 -0
- package/dist/dispatches/PauseDispatch.js +3 -0
- package/dist/dispatches/ReloadDispatch.js +3 -0
- package/dist/dispatches/ReportPlayerDispatch.js +3 -0
- package/dist/dispatches/SaveLoadoutDispatch.js +3 -0
- package/dist/dispatches/SpawnDispatch.js +3 -0
- package/dist/dispatches/SwapWeaponDispatch.js +3 -0
- package/dist/dispatches/SwitchTeamDispatch.js +3 -0
- package/dist/dispatches/ThrowGrenadeDispatch.js +3 -0
- package/dist/dispatches/index.js +3 -0
- package/dist/globals.js +3 -0
- package/dist/index.js +10 -0
- package/dist/matchmaker.js +3 -0
- package/dist/pathing/astar.js +3 -0
- package/dist/pathing/binaryheap.js +3 -0
- package/dist/pathing/mapnode.js +3 -0
- package/dist/socket.js +3 -0
- package/package.json +28 -28
- package/src/.DS_Store +0 -0
- package/src/api.js +0 -235
- package/src/bot/GamePlayer.js +0 -88
- package/src/bot.js +0 -1998
- package/src/comm/Codes.js +0 -99
- package/src/comm/CommIn.js +0 -84
- package/src/comm/CommOut.js +0 -16
- package/src/comm/OutBuffer.js +0 -60
- package/src/comm/Pool.js +0 -55
- package/src/comm/index.js +0 -16
- package/src/constants/challenges.js +0 -1822
- package/src/constants/changelog.js +0 -19
- package/src/constants/codes.js +0 -45
- package/src/constants/guns.js +0 -368
- package/src/constants/housePromo.js +0 -727
- package/src/constants/index.js +0 -121
- package/src/constants/items.js +0 -42533
- package/src/constants/language.js +0 -1669
- package/src/constants/maps.js +0 -1095
- package/src/constants/shellNews.js +0 -59
- package/src/constants/shellYoutube.js +0 -93
- package/src/constants/shopItems.js +0 -2032
- package/src/constants/sounds.js +0 -1160
- package/src/dispatches/BootPlayerDispatch.js +0 -21
- package/src/dispatches/ChatDispatch.js +0 -30
- package/src/dispatches/FireDispatch.js +0 -20
- package/src/dispatches/GameOptionsDispatch.js +0 -46
- package/src/dispatches/GoToAmmoDispatch.js +0 -44
- package/src/dispatches/GoToCoopDispatch.js +0 -44
- package/src/dispatches/GoToGrenadeDispatch.js +0 -44
- package/src/dispatches/GoToPlayerDispatch.js +0 -38
- package/src/dispatches/GoToSpatulaDispatch.js +0 -32
- package/src/dispatches/LookAtDispatch.js +0 -48
- package/src/dispatches/LookAtPosDispatch.js +0 -33
- package/src/dispatches/MeleeDispatch.js +0 -28
- package/src/dispatches/MovementDispatch.js +0 -19
- package/src/dispatches/PauseDispatch.js +0 -18
- package/src/dispatches/ReloadDispatch.js +0 -36
- package/src/dispatches/ReportPlayerDispatch.js +0 -51
- package/src/dispatches/SaveLoadoutDispatch.js +0 -119
- package/src/dispatches/SpawnDispatch.js +0 -21
- package/src/dispatches/SwapWeaponDispatch.js +0 -19
- package/src/dispatches/SwitchTeamDispatch.js +0 -34
- package/src/dispatches/ThrowGrenadeDispatch.js +0 -26
- package/src/dispatches/index.js +0 -69
- package/src/globals.js +0 -15
- package/src/index.js +0 -14
- package/src/matchmaker.js +0 -206
- package/src/pathing/astar.js +0 -71
- package/src/pathing/binaryheap.js +0 -117
- package/src/pathing/mapnode.js +0 -236
- package/src/socket.js +0 -19
- /package/{src → dist}/types/api.d.ts +0 -0
- /package/{src → dist}/types/bot/GamePlayer.d.ts +0 -0
- /package/{src → dist}/types/bot.d.ts +0 -0
- /package/{src → dist}/types/constants/challenges.d.ts +0 -0
- /package/{src → dist}/types/constants/guns.d.ts +0 -0
- /package/{src → dist}/types/constants/index.d.ts +0 -0
- /package/{src → dist}/types/constants/items.d.ts +0 -0
- /package/{src → dist}/types/constants/maps.d.ts +0 -0
- /package/{src → dist}/types/dispatches/BootPlayerDispatch.d.ts +0 -0
- /package/{src → dist}/types/dispatches/ChatDispatch.d.ts +0 -0
- /package/{src → dist}/types/dispatches/FireDispatch.d.ts +0 -0
- /package/{src → dist}/types/dispatches/GameOptionsDispatch.d.ts +0 -0
- /package/{src → dist}/types/dispatches/GoToAmmoDispatch.d.ts +0 -0
- /package/{src → dist}/types/dispatches/GoToCoopDispatch.d.ts +0 -0
- /package/{src → dist}/types/dispatches/GoToGrenadeDispatch.d.ts +0 -0
- /package/{src → dist}/types/dispatches/GoToPlayerDispatch.d.ts +0 -0
- /package/{src → dist}/types/dispatches/GoToSpatulaDispatch.d.ts +0 -0
- /package/{src → dist}/types/dispatches/LookAtDispatch.d.ts +0 -0
- /package/{src → dist}/types/dispatches/LookAtPosDispatch.d.ts +0 -0
- /package/{src → dist}/types/dispatches/MeleeDispatch.d.ts +0 -0
- /package/{src → dist}/types/dispatches/MovementDispatch.d.ts +0 -0
- /package/{src → dist}/types/dispatches/PauseDispatch.d.ts +0 -0
- /package/{src → dist}/types/dispatches/ReloadDispatch.d.ts +0 -0
- /package/{src → dist}/types/dispatches/ReportPlayerDispatch.d.ts +0 -0
- /package/{src → dist}/types/dispatches/SaveLoadoutDispatch.d.ts +0 -0
- /package/{src → dist}/types/dispatches/SpawnDispatch.d.ts +0 -0
- /package/{src → dist}/types/dispatches/SwapWeaponDispatch.d.ts +0 -0
- /package/{src → dist}/types/dispatches/SwitchTeamDispatch.d.ts +0 -0
- /package/{src → dist}/types/dispatches/ThrowGrenadeDispatch.d.ts +0 -0
- /package/{src → dist}/types/dispatches/index.d.ts +0 -0
- /package/{src → dist}/types/matchmaker.d.ts +0 -0
- /package/{src → dist}/types/socket.d.ts +0 -0
|
@@ -1,727 +0,0 @@
|
|
|
1
|
-
/* eslint-disable */
|
|
2
|
-
export const HousePromo = {
|
|
3
|
-
"big": [
|
|
4
|
-
{
|
|
5
|
-
"imageExt": ".jpg",
|
|
6
|
-
"link": [
|
|
7
|
-
"https://basketballtips.info?utm_source=ssbigsplash&utm_medium=referral"
|
|
8
|
-
],
|
|
9
|
-
"label": "BasketBros",
|
|
10
|
-
"active": false,
|
|
11
|
-
"id": "kt4wqo5fb",
|
|
12
|
-
"weighted": false,
|
|
13
|
-
"hideOnCG": false,
|
|
14
|
-
"linksTo": "link"
|
|
15
|
-
},
|
|
16
|
-
{
|
|
17
|
-
"active": false,
|
|
18
|
-
"label": "castles",
|
|
19
|
-
"link": [
|
|
20
|
-
"https://castles.cc?utm=sssplash"
|
|
21
|
-
],
|
|
22
|
-
"imageExt": ".png",
|
|
23
|
-
"id": "kmv2r4wvq",
|
|
24
|
-
"weighted": false,
|
|
25
|
-
"hideOnCG": false,
|
|
26
|
-
"linksTo": "link"
|
|
27
|
-
},
|
|
28
|
-
{
|
|
29
|
-
"link": [
|
|
30
|
-
"https://www.surveymonkey.com/r/eggjune22?utm_source=sssplash"
|
|
31
|
-
],
|
|
32
|
-
"label": "Survey",
|
|
33
|
-
"imageExt": ".png",
|
|
34
|
-
"id": "l47ejll3r",
|
|
35
|
-
"active": false,
|
|
36
|
-
"weighted": false,
|
|
37
|
-
"hideOnCG": false,
|
|
38
|
-
"linksTo": "link"
|
|
39
|
-
},
|
|
40
|
-
{
|
|
41
|
-
"imageExt": ".jpg",
|
|
42
|
-
"active": false,
|
|
43
|
-
"label": "VIP Club",
|
|
44
|
-
"linksToVipStore": "1",
|
|
45
|
-
"id": "ki5mdikz13",
|
|
46
|
-
"weighted": false,
|
|
47
|
-
"hideOnCG": false,
|
|
48
|
-
"linksTo": "linksToVipStore"
|
|
49
|
-
},
|
|
50
|
-
{
|
|
51
|
-
"active": false,
|
|
52
|
-
"label": "Creators",
|
|
53
|
-
"link": [
|
|
54
|
-
"http://shellcreators.bluewizard.com/"
|
|
55
|
-
],
|
|
56
|
-
"imageExt": ".png",
|
|
57
|
-
"id": "kiutzlr317",
|
|
58
|
-
"weighted": false,
|
|
59
|
-
"hideOnCG": false,
|
|
60
|
-
"linksTo": "link"
|
|
61
|
-
},
|
|
62
|
-
{
|
|
63
|
-
"imageExt": ".jpg",
|
|
64
|
-
"label": "MonthlyUpdate",
|
|
65
|
-
"active": false,
|
|
66
|
-
"id": "kperqror1b",
|
|
67
|
-
"linksToTaggedItems": "Merc",
|
|
68
|
-
"weighted": false,
|
|
69
|
-
"hideOnCG": false,
|
|
70
|
-
"linksTo": "linksToTaggedItems"
|
|
71
|
-
},
|
|
72
|
-
{
|
|
73
|
-
"link": [
|
|
74
|
-
"https://bluewizard.threadless.com/collections/shell-shockers"
|
|
75
|
-
],
|
|
76
|
-
"label": "BW merch",
|
|
77
|
-
"active": false,
|
|
78
|
-
"imageExt": ".png",
|
|
79
|
-
"id": "kkxdntoi1f",
|
|
80
|
-
"weighted": false,
|
|
81
|
-
"hideOnCG": false,
|
|
82
|
-
"linksTo": "link"
|
|
83
|
-
},
|
|
84
|
-
{
|
|
85
|
-
"imageExt": ".png",
|
|
86
|
-
"linksToTaggedItems": "JulyM23",
|
|
87
|
-
"active": false,
|
|
88
|
-
"label": "Monthy Update",
|
|
89
|
-
"id": "lk7f4zzi1r",
|
|
90
|
-
"weighted": false,
|
|
91
|
-
"hideOnCG": false,
|
|
92
|
-
"linksTo": "linksToTaggedItems"
|
|
93
|
-
},
|
|
94
|
-
{
|
|
95
|
-
"active": false,
|
|
96
|
-
"label": "Twitch Drops",
|
|
97
|
-
"link": [
|
|
98
|
-
"https://shellshock.io/twitch?utm_source=ss-splash-ad&utm_medium=referral"
|
|
99
|
-
],
|
|
100
|
-
"imageExt": ".png",
|
|
101
|
-
"id": "lerd8ope1s",
|
|
102
|
-
"weighted": false,
|
|
103
|
-
"hideOnCG": false,
|
|
104
|
-
"linksTo": "link"
|
|
105
|
-
},
|
|
106
|
-
{
|
|
107
|
-
"active": false,
|
|
108
|
-
"label": "Nate Nook",
|
|
109
|
-
"link": [
|
|
110
|
-
"https://bluewizard.com/nate/?utm_source=sssplash"
|
|
111
|
-
],
|
|
112
|
-
"imageExt": ".jpg",
|
|
113
|
-
"id": "kzhfdvso1t",
|
|
114
|
-
"weighted": false,
|
|
115
|
-
"hideOnCG": false,
|
|
116
|
-
"linksTo": "link"
|
|
117
|
-
},
|
|
118
|
-
{
|
|
119
|
-
"label": "Basketball Grenade",
|
|
120
|
-
"link": [
|
|
121
|
-
"https://basketbros.io/?utm_source=ssbigsplash&utm_medium=referral"
|
|
122
|
-
],
|
|
123
|
-
"active": false,
|
|
124
|
-
"imageExt": ".png",
|
|
125
|
-
"id": "l0srdxke1v",
|
|
126
|
-
"weighted": false,
|
|
127
|
-
"hideOnCG": false,
|
|
128
|
-
"linksTo": "link"
|
|
129
|
-
},
|
|
130
|
-
{
|
|
131
|
-
"label": "Bad Egg",
|
|
132
|
-
"imageExt": ".png",
|
|
133
|
-
"link": [
|
|
134
|
-
"https://freegames.io/game/bad-egg?utm_source=shellshockers&utm_medium=referral&utm_campaign=splashad"
|
|
135
|
-
],
|
|
136
|
-
"id": "lchuivey1x",
|
|
137
|
-
"active": false,
|
|
138
|
-
"weighted": false,
|
|
139
|
-
"hideOnCG": false,
|
|
140
|
-
"linksTo": "link"
|
|
141
|
-
},
|
|
142
|
-
{
|
|
143
|
-
"link": [
|
|
144
|
-
"https://dragonjoust.io?utm_source=shellshockers&utm_medium=referral&utm_campaign=splashad"
|
|
145
|
-
],
|
|
146
|
-
"label": "Dragon Joust",
|
|
147
|
-
"imageExt": ".png",
|
|
148
|
-
"active": false,
|
|
149
|
-
"id": "lcsafw1j1y",
|
|
150
|
-
"weighted": false,
|
|
151
|
-
"hideOnCG": false,
|
|
152
|
-
"linksTo": "link"
|
|
153
|
-
},
|
|
154
|
-
{
|
|
155
|
-
"link": [
|
|
156
|
-
"https://freegames.io/game/zuck-vs-musk---techbro-beatdown?utm_source=shellshockers&utm_medium=referral&utm_campaign=splashad"
|
|
157
|
-
],
|
|
158
|
-
"label": "Zuck v Musk",
|
|
159
|
-
"active": false,
|
|
160
|
-
"imageExt": ".jpg",
|
|
161
|
-
"id": "lj8r5m7o20",
|
|
162
|
-
"weighted": false,
|
|
163
|
-
"hideOnCG": false,
|
|
164
|
-
"linksTo": "link"
|
|
165
|
-
},
|
|
166
|
-
{
|
|
167
|
-
"link": [
|
|
168
|
-
"https://freegames.io?utm_source=shellshockers&utm_medium=referral&utm_campaign=splashad"
|
|
169
|
-
],
|
|
170
|
-
"active": false,
|
|
171
|
-
"label": "Freegames",
|
|
172
|
-
"imageExt": ".png",
|
|
173
|
-
"id": "ljyrwybt21",
|
|
174
|
-
"weighted": false,
|
|
175
|
-
"hideOnCG": false,
|
|
176
|
-
"linksTo": "link"
|
|
177
|
-
}
|
|
178
|
-
],
|
|
179
|
-
"small": [
|
|
180
|
-
{
|
|
181
|
-
"link": [
|
|
182
|
-
"https://freegames.io/game/football-bros?utm_source=shell_shockers_houseads&utm_medium=referral"
|
|
183
|
-
],
|
|
184
|
-
"label": "Football Bros",
|
|
185
|
-
"active": true,
|
|
186
|
-
"weighted": true,
|
|
187
|
-
"hideOnCG": true,
|
|
188
|
-
"imageExt": ".png",
|
|
189
|
-
"id": "lz8tuwxpg",
|
|
190
|
-
"linksTo": "link"
|
|
191
|
-
},
|
|
192
|
-
{
|
|
193
|
-
"active": true,
|
|
194
|
-
"imageExt": ".jpg",
|
|
195
|
-
"link": [
|
|
196
|
-
"https://freegames.io/game/basket-bros?utm_source=shell_shockers_houseads&utm_medium=referral",
|
|
197
|
-
"https://www.crazygames.com/game/basketbros"
|
|
198
|
-
],
|
|
199
|
-
"label": "Basket Bros",
|
|
200
|
-
"id": "kokajqjqu",
|
|
201
|
-
"weighted": false,
|
|
202
|
-
"hideOnCG": true,
|
|
203
|
-
"linksTo": "link"
|
|
204
|
-
},
|
|
205
|
-
{
|
|
206
|
-
"active": true,
|
|
207
|
-
"linksToVipStore": "1",
|
|
208
|
-
"imageExt": ".png",
|
|
209
|
-
"label": "VIP",
|
|
210
|
-
"id": "kuzrh1cwt",
|
|
211
|
-
"weighted": false,
|
|
212
|
-
"hideOnCG": false,
|
|
213
|
-
"linksTo": "linksToVipStore"
|
|
214
|
-
},
|
|
215
|
-
{
|
|
216
|
-
"label": "Twitch Drops 7",
|
|
217
|
-
"imageExt": ".png",
|
|
218
|
-
"id": "m7b5681oc",
|
|
219
|
-
"weighted": false,
|
|
220
|
-
"hideOnCG": false,
|
|
221
|
-
"linksTo": "linkToTwitch",
|
|
222
|
-
"linkToTwitch": "1",
|
|
223
|
-
"active": false
|
|
224
|
-
},
|
|
225
|
-
{
|
|
226
|
-
"link": [
|
|
227
|
-
"https://freegames.io/game/mech-bros/?utm_source=shell_shockers_houseads&utm_medium=referral"
|
|
228
|
-
],
|
|
229
|
-
"active": false,
|
|
230
|
-
"label": "Mech Bros",
|
|
231
|
-
"weighted": false,
|
|
232
|
-
"hideOnCG": false,
|
|
233
|
-
"imageExt": ".jpg",
|
|
234
|
-
"id": "lwk851end",
|
|
235
|
-
"linksTo": "link"
|
|
236
|
-
},
|
|
237
|
-
{
|
|
238
|
-
"link": [
|
|
239
|
-
"https://freegames.io/game/soccer-bros?utm_source=shell_shockers&utm_medium=referral",
|
|
240
|
-
"https://www.crazygames.com/game/soccer-bros"
|
|
241
|
-
],
|
|
242
|
-
"label": "Soccer Bros",
|
|
243
|
-
"imageExt": ".jpg",
|
|
244
|
-
"id": "lphl58wab",
|
|
245
|
-
"weighted": false,
|
|
246
|
-
"hideOnCG": false,
|
|
247
|
-
"linksTo": "link",
|
|
248
|
-
"active": false
|
|
249
|
-
},
|
|
250
|
-
{
|
|
251
|
-
"imageExt": ".png",
|
|
252
|
-
"label": "Private Games",
|
|
253
|
-
"id": "ls3tphkc6",
|
|
254
|
-
"active": false,
|
|
255
|
-
"weighted": false,
|
|
256
|
-
"hideOnCG": false,
|
|
257
|
-
"linksTo": "linksToCreateGame",
|
|
258
|
-
"linksToCreateGame": "1"
|
|
259
|
-
},
|
|
260
|
-
{
|
|
261
|
-
"imageExt": ".jpg",
|
|
262
|
-
"active": false,
|
|
263
|
-
"label": "Shell Survey",
|
|
264
|
-
"link": [
|
|
265
|
-
"https://www.surveymonkey.com/r/septshell23"
|
|
266
|
-
],
|
|
267
|
-
"id": "lofzjd42w",
|
|
268
|
-
"weighted": false,
|
|
269
|
-
"hideOnCG": false,
|
|
270
|
-
"linksTo": "link"
|
|
271
|
-
},
|
|
272
|
-
{
|
|
273
|
-
"link": [
|
|
274
|
-
"https://freegames.io/game/wrestle-bros?utm_source=shell_shockers_houseads&utm_medium=referral"
|
|
275
|
-
],
|
|
276
|
-
"active": false,
|
|
277
|
-
"label": "Wrestle Bros",
|
|
278
|
-
"imageExt": ".png",
|
|
279
|
-
"id": "lhkqsfa911",
|
|
280
|
-
"weighted": false,
|
|
281
|
-
"hideOnCG": false,
|
|
282
|
-
"linksTo": "link"
|
|
283
|
-
}
|
|
284
|
-
],
|
|
285
|
-
"bigBanner": [
|
|
286
|
-
{
|
|
287
|
-
"active": true,
|
|
288
|
-
"label": "VIP",
|
|
289
|
-
"linksToVipStore": "1",
|
|
290
|
-
"imageExt": ".png",
|
|
291
|
-
"id": "kuzrh1cwg",
|
|
292
|
-
"weighted": false,
|
|
293
|
-
"hideOnCG": false,
|
|
294
|
-
"linksTo": "linksToVipStore"
|
|
295
|
-
},
|
|
296
|
-
{
|
|
297
|
-
"active": true,
|
|
298
|
-
"label": "VIP",
|
|
299
|
-
"linksToVipStore": "1",
|
|
300
|
-
"imageExt": ".png",
|
|
301
|
-
"id": "kuzrh1cwh",
|
|
302
|
-
"weighted": false,
|
|
303
|
-
"hideOnCG": false,
|
|
304
|
-
"linksTo": "linksToVipStore"
|
|
305
|
-
},
|
|
306
|
-
{
|
|
307
|
-
"imageExt": ".jpg",
|
|
308
|
-
"link": [
|
|
309
|
-
"https://freegames.io/game/basket-bros?utm_source=shell_shockers_houseads&utm_medium=referral"
|
|
310
|
-
],
|
|
311
|
-
"label": "Basket Bros",
|
|
312
|
-
"active": true,
|
|
313
|
-
"id": "kokal7c9i",
|
|
314
|
-
"weighted": false,
|
|
315
|
-
"hideOnCG": false,
|
|
316
|
-
"linksTo": "link"
|
|
317
|
-
},
|
|
318
|
-
{
|
|
319
|
-
"imageExt": ".jpg",
|
|
320
|
-
"link": [
|
|
321
|
-
"https://freegames.io/game/basket-bros?utm_source=shell_shockers_houseads&utm_medium=referral"
|
|
322
|
-
],
|
|
323
|
-
"label": "Basket Bros",
|
|
324
|
-
"active": true,
|
|
325
|
-
"id": "kokamphkj",
|
|
326
|
-
"weighted": false,
|
|
327
|
-
"hideOnCG": false,
|
|
328
|
-
"linksTo": "link"
|
|
329
|
-
},
|
|
330
|
-
{
|
|
331
|
-
"label": "Dragon Joust",
|
|
332
|
-
"link": [
|
|
333
|
-
"https://freegames.io/game/dragon-joust?utm_source=shell_shockers&utm_medium=referral"
|
|
334
|
-
],
|
|
335
|
-
"imageExt": ".png",
|
|
336
|
-
"active": true,
|
|
337
|
-
"id": "laskwdxfs",
|
|
338
|
-
"weighted": false,
|
|
339
|
-
"hideOnCG": false,
|
|
340
|
-
"linksTo": "link"
|
|
341
|
-
},
|
|
342
|
-
{
|
|
343
|
-
"active": true,
|
|
344
|
-
"label": "Dragon Joust",
|
|
345
|
-
"link": [
|
|
346
|
-
"https://freegames.io/game/dragon-joust?utm_source=shell_shockers&utm_medium=referral"
|
|
347
|
-
],
|
|
348
|
-
"imageExt": ".png",
|
|
349
|
-
"id": "laskwvhat",
|
|
350
|
-
"weighted": false,
|
|
351
|
-
"hideOnCG": false,
|
|
352
|
-
"linksTo": "link"
|
|
353
|
-
},
|
|
354
|
-
{
|
|
355
|
-
"active": true,
|
|
356
|
-
"label": "Bad Egg",
|
|
357
|
-
"link": [
|
|
358
|
-
"https://freegames.io/game/bad-egg?utm_source=shell_shockers&utm_medium=referral"
|
|
359
|
-
],
|
|
360
|
-
"imageExt": ".png",
|
|
361
|
-
"id": "laskxj0mu",
|
|
362
|
-
"weighted": false,
|
|
363
|
-
"hideOnCG": false,
|
|
364
|
-
"linksTo": "link"
|
|
365
|
-
},
|
|
366
|
-
{
|
|
367
|
-
"active": true,
|
|
368
|
-
"label": "Bad Egg",
|
|
369
|
-
"link": [
|
|
370
|
-
"https://freegames.io/game/bad-egg?utm_source=shell_shockers&utm_medium=referral"
|
|
371
|
-
],
|
|
372
|
-
"imageExt": ".png",
|
|
373
|
-
"id": "laskxwdnv",
|
|
374
|
-
"weighted": false,
|
|
375
|
-
"hideOnCG": false,
|
|
376
|
-
"linksTo": "link"
|
|
377
|
-
},
|
|
378
|
-
{
|
|
379
|
-
"link": [
|
|
380
|
-
"https://freegames.io/game/wrestle-bros?utm_source=shell_shockers_houseads&utm_medium=referral"
|
|
381
|
-
],
|
|
382
|
-
"active": true,
|
|
383
|
-
"label": "Wrestle Bros",
|
|
384
|
-
"imageExt": ".png",
|
|
385
|
-
"id": "lhkqwo2pw",
|
|
386
|
-
"weighted": false,
|
|
387
|
-
"hideOnCG": false,
|
|
388
|
-
"linksTo": "link"
|
|
389
|
-
},
|
|
390
|
-
{
|
|
391
|
-
"active": true,
|
|
392
|
-
"label": "Wrestle Bros",
|
|
393
|
-
"link": [
|
|
394
|
-
"https://freegames.io/game/wrestle-bros?utm_source=shell_shockers_houseads&utm_medium=referral"
|
|
395
|
-
],
|
|
396
|
-
"imageExt": ".png",
|
|
397
|
-
"id": "lhkqx9ohx",
|
|
398
|
-
"weighted": false,
|
|
399
|
-
"hideOnCG": false,
|
|
400
|
-
"linksTo": "link"
|
|
401
|
-
},
|
|
402
|
-
{
|
|
403
|
-
"active": false,
|
|
404
|
-
"imageExt": ".jpg",
|
|
405
|
-
"link": [
|
|
406
|
-
"https://www.curiouscorrespondence.com/?utm_source=shell_shockers_houseads&utm_medium=referral"
|
|
407
|
-
],
|
|
408
|
-
"label": "Curious Correspondence",
|
|
409
|
-
"id": "kmy3p8p80",
|
|
410
|
-
"weighted": false,
|
|
411
|
-
"hideOnCG": false,
|
|
412
|
-
"linksTo": "link"
|
|
413
|
-
},
|
|
414
|
-
{
|
|
415
|
-
"imageExt": ".jpg",
|
|
416
|
-
"link": [
|
|
417
|
-
"https://www.curiouscorrespondence.com/?utm_source=shell_shockers_houseads&utm_medium=referral"
|
|
418
|
-
],
|
|
419
|
-
"label": "Curious Correspondence",
|
|
420
|
-
"active": false,
|
|
421
|
-
"id": "kmy3s9571",
|
|
422
|
-
"weighted": false,
|
|
423
|
-
"hideOnCG": false,
|
|
424
|
-
"linksTo": "link"
|
|
425
|
-
},
|
|
426
|
-
{
|
|
427
|
-
"label": "Curious Correspondence",
|
|
428
|
-
"link": [
|
|
429
|
-
"https://www.curiouscorrespondence.com/?utm_source=shell_shockers_houseads&utm_medium=referral"
|
|
430
|
-
],
|
|
431
|
-
"active": false,
|
|
432
|
-
"imageExt": ".jpg",
|
|
433
|
-
"id": "kmy3tjgj2",
|
|
434
|
-
"weighted": false,
|
|
435
|
-
"hideOnCG": false,
|
|
436
|
-
"linksTo": "link"
|
|
437
|
-
},
|
|
438
|
-
{
|
|
439
|
-
"imageExt": ".jpg",
|
|
440
|
-
"active": false,
|
|
441
|
-
"label": "Friday the 13th Killer Puzzle",
|
|
442
|
-
"link": [
|
|
443
|
-
"https://f13killerpuzzle.com/?utm_source=shell_shockers_houseads&utm_medium=referral"
|
|
444
|
-
],
|
|
445
|
-
"id": "kmz1018u3",
|
|
446
|
-
"weighted": false,
|
|
447
|
-
"hideOnCG": false,
|
|
448
|
-
"linksTo": "link"
|
|
449
|
-
},
|
|
450
|
-
{
|
|
451
|
-
"imageExt": ".jpg",
|
|
452
|
-
"link": [
|
|
453
|
-
"https://f13killerpuzzle.com/?utm_source=shell_shockers_houseads&utm_medium=referral"
|
|
454
|
-
],
|
|
455
|
-
"label": "Friday the 13th Killer Puzzle",
|
|
456
|
-
"id": "kmz1140y4",
|
|
457
|
-
"active": false,
|
|
458
|
-
"weighted": false,
|
|
459
|
-
"hideOnCG": false,
|
|
460
|
-
"linksTo": "link"
|
|
461
|
-
},
|
|
462
|
-
{
|
|
463
|
-
"imageExt": ".png",
|
|
464
|
-
"link": [
|
|
465
|
-
"https://store.steampowered.com/app/1233690/Hypergalactic_Psychic_Table_Tennis_3000/?utm_source=shell_shockers_houseads&utm_medium=referral"
|
|
466
|
-
],
|
|
467
|
-
"label": "Hypergalactic Psychic Table Tennis 3000",
|
|
468
|
-
"id": "kmz12sag5",
|
|
469
|
-
"active": false,
|
|
470
|
-
"weighted": false,
|
|
471
|
-
"hideOnCG": false,
|
|
472
|
-
"linksTo": "link"
|
|
473
|
-
},
|
|
474
|
-
{
|
|
475
|
-
"imageExt": ".png",
|
|
476
|
-
"active": false,
|
|
477
|
-
"label": "Nuke Zone",
|
|
478
|
-
"link": [
|
|
479
|
-
"https://nuke.zone/?utm_source=shell_shockers_houseads&utm_medium=referral"
|
|
480
|
-
],
|
|
481
|
-
"id": "kmz16o7h6",
|
|
482
|
-
"weighted": false,
|
|
483
|
-
"hideOnCG": false,
|
|
484
|
-
"linksTo": "link"
|
|
485
|
-
},
|
|
486
|
-
{
|
|
487
|
-
"imageExt": ".png",
|
|
488
|
-
"link": [
|
|
489
|
-
"https://raid.land/?utm_source=shell_shockers_houseads&utm_medium=referral"
|
|
490
|
-
],
|
|
491
|
-
"label": "Raid Land",
|
|
492
|
-
"active": false,
|
|
493
|
-
"id": "kmz18sjd7",
|
|
494
|
-
"weighted": false,
|
|
495
|
-
"hideOnCG": false,
|
|
496
|
-
"linksTo": "link"
|
|
497
|
-
},
|
|
498
|
-
{
|
|
499
|
-
"imageExt": ".jpg",
|
|
500
|
-
"link": [
|
|
501
|
-
"https://slashycamp.com/?utm_source=shell_shockers_houseads&utm_medium=referral"
|
|
502
|
-
],
|
|
503
|
-
"active": false,
|
|
504
|
-
"label": "Slashy Camp",
|
|
505
|
-
"id": "kmz19yp68",
|
|
506
|
-
"weighted": false,
|
|
507
|
-
"hideOnCG": false,
|
|
508
|
-
"linksTo": "link"
|
|
509
|
-
},
|
|
510
|
-
{
|
|
511
|
-
"imageExt": ".jpg",
|
|
512
|
-
"link": [
|
|
513
|
-
"https://slashycamp.com/?utm_source=shell_shockers_houseads&utm_medium=referral"
|
|
514
|
-
],
|
|
515
|
-
"label": "Slashy Camp",
|
|
516
|
-
"active": false,
|
|
517
|
-
"id": "kmz1ap9b9",
|
|
518
|
-
"weighted": false,
|
|
519
|
-
"hideOnCG": false,
|
|
520
|
-
"linksTo": "link"
|
|
521
|
-
},
|
|
522
|
-
{
|
|
523
|
-
"imageExt": ".jpg",
|
|
524
|
-
"link": [
|
|
525
|
-
"https://bluewizard.com/slayawaycamp-free-to-slay/?utm_source=shell_shockers_houseads&utm_medium=referral"
|
|
526
|
-
],
|
|
527
|
-
"label": "Slayaway Camp",
|
|
528
|
-
"active": false,
|
|
529
|
-
"id": "kmz1bycra",
|
|
530
|
-
"weighted": false,
|
|
531
|
-
"hideOnCG": false,
|
|
532
|
-
"linksTo": "link"
|
|
533
|
-
},
|
|
534
|
-
{
|
|
535
|
-
"imageExt": ".jpg",
|
|
536
|
-
"link": [
|
|
537
|
-
"https://bluewizard.com/slayawaycamp-free-to-slay/?utm_source=shell_shockers_houseads&utm_medium=referral"
|
|
538
|
-
],
|
|
539
|
-
"label": "Slayaway Camp",
|
|
540
|
-
"active": false,
|
|
541
|
-
"id": "kmz1cyblb",
|
|
542
|
-
"weighted": false,
|
|
543
|
-
"hideOnCG": false,
|
|
544
|
-
"linksTo": "link"
|
|
545
|
-
},
|
|
546
|
-
{
|
|
547
|
-
"imageExt": ".jpg",
|
|
548
|
-
"active": false,
|
|
549
|
-
"link": [
|
|
550
|
-
"https://shop.stormcrow.com/?utm_source=shell_shockers_houseads&utm_medium=referral"
|
|
551
|
-
],
|
|
552
|
-
"label": "Shop Storm Crow",
|
|
553
|
-
"id": "kmz1evxgc",
|
|
554
|
-
"weighted": false,
|
|
555
|
-
"hideOnCG": false,
|
|
556
|
-
"linksTo": "link"
|
|
557
|
-
},
|
|
558
|
-
{
|
|
559
|
-
"link": [
|
|
560
|
-
"https://shop.stormcrow.com/?utm_source=shell_shockers_houseads&utm_medium=referral"
|
|
561
|
-
],
|
|
562
|
-
"label": "Shop Storm Crow",
|
|
563
|
-
"active": false,
|
|
564
|
-
"imageExt": ".jpg",
|
|
565
|
-
"id": "kmz1fpoxd",
|
|
566
|
-
"weighted": false,
|
|
567
|
-
"hideOnCG": false,
|
|
568
|
-
"linksTo": "link"
|
|
569
|
-
},
|
|
570
|
-
{
|
|
571
|
-
"imageExt": ".jpg",
|
|
572
|
-
"link": [
|
|
573
|
-
"https://shop.stormcrow.com/?utm_source=shell_shockers_houseads&utm_medium=referral"
|
|
574
|
-
],
|
|
575
|
-
"label": "Shop Storm Crow",
|
|
576
|
-
"active": false,
|
|
577
|
-
"id": "kmz1gms0e",
|
|
578
|
-
"weighted": false,
|
|
579
|
-
"hideOnCG": false,
|
|
580
|
-
"linksTo": "link"
|
|
581
|
-
},
|
|
582
|
-
{
|
|
583
|
-
"imageExt": ".jpg",
|
|
584
|
-
"link": [
|
|
585
|
-
"https://shop.stormcrow.com/?utm_source=shell_shockers_houseads&utm_medium=referral"
|
|
586
|
-
],
|
|
587
|
-
"active": false,
|
|
588
|
-
"label": "Shop Storm Crow",
|
|
589
|
-
"id": "kmz1h7u4f",
|
|
590
|
-
"weighted": false,
|
|
591
|
-
"hideOnCG": false,
|
|
592
|
-
"linksTo": "link"
|
|
593
|
-
},
|
|
594
|
-
{
|
|
595
|
-
"label": "Headless",
|
|
596
|
-
"active": false,
|
|
597
|
-
"link": [
|
|
598
|
-
"https://headless.gg/?utm_source=shell_shockers_houseads&utm_medium=referral"
|
|
599
|
-
],
|
|
600
|
-
"imageExt": ".jpg",
|
|
601
|
-
"id": "kp7h0zu8k",
|
|
602
|
-
"weighted": false,
|
|
603
|
-
"hideOnCG": false,
|
|
604
|
-
"linksTo": "link"
|
|
605
|
-
},
|
|
606
|
-
{
|
|
607
|
-
"active": false,
|
|
608
|
-
"label": "Headless",
|
|
609
|
-
"link": [
|
|
610
|
-
"https://headless.gg/?utm_source=shell_shockers_houseads&utm_medium=referral"
|
|
611
|
-
],
|
|
612
|
-
"imageExt": ".jpg",
|
|
613
|
-
"id": "kp7h1ekxl",
|
|
614
|
-
"weighted": false,
|
|
615
|
-
"hideOnCG": false,
|
|
616
|
-
"linksTo": "link"
|
|
617
|
-
},
|
|
618
|
-
{
|
|
619
|
-
"active": false,
|
|
620
|
-
"link": [
|
|
621
|
-
"https://store.steampowered.com/app/1255530/Nuke_Zone/?utm_source=ss-house-ads&utm_medium=referral&utm_campaign=next-fest-launch"
|
|
622
|
-
],
|
|
623
|
-
"label": "Nuke Zone Next Fest",
|
|
624
|
-
"imageExt": ".jpg",
|
|
625
|
-
"id": "kpzrnq8fm",
|
|
626
|
-
"weighted": false,
|
|
627
|
-
"hideOnCG": false,
|
|
628
|
-
"linksTo": "link"
|
|
629
|
-
},
|
|
630
|
-
{
|
|
631
|
-
"active": false,
|
|
632
|
-
"label": "Nuke Zone Next Fest",
|
|
633
|
-
"link": [
|
|
634
|
-
"https://store.steampowered.com/app/1255530/Nuke_Zone/?utm_source=ss-house-ads&utm_medium=referral&utm_campaign=next-fest-launch"
|
|
635
|
-
],
|
|
636
|
-
"imageExt": ".jpg",
|
|
637
|
-
"id": "kpzro6wzn",
|
|
638
|
-
"weighted": false,
|
|
639
|
-
"hideOnCG": false,
|
|
640
|
-
"linksTo": "link"
|
|
641
|
-
},
|
|
642
|
-
{
|
|
643
|
-
"imageExt": ".jpg",
|
|
644
|
-
"label": "Nuke Zone Demo",
|
|
645
|
-
"link": [
|
|
646
|
-
"https://store.steampowered.com/app/1255530/Nuke_Zone/?utm_source=ss-house-ads&utm_medium=referral&utm_campaign=demo-june22"
|
|
647
|
-
],
|
|
648
|
-
"active": false,
|
|
649
|
-
"id": "kq88mifpo",
|
|
650
|
-
"weighted": false,
|
|
651
|
-
"hideOnCG": false,
|
|
652
|
-
"linksTo": "link"
|
|
653
|
-
},
|
|
654
|
-
{
|
|
655
|
-
"active": false,
|
|
656
|
-
"label": "Nuke Zone Demo",
|
|
657
|
-
"link": [
|
|
658
|
-
"https://store.steampowered.com/app/1255530/Nuke_Zone/?utm_source=ss-house-ads&utm_medium=referral&utm_campaign=demo-june22"
|
|
659
|
-
],
|
|
660
|
-
"imageExt": ".jpg",
|
|
661
|
-
"id": "kq88n006p",
|
|
662
|
-
"weighted": false,
|
|
663
|
-
"hideOnCG": false,
|
|
664
|
-
"linksTo": "link"
|
|
665
|
-
},
|
|
666
|
-
{
|
|
667
|
-
"imageExt": ".png",
|
|
668
|
-
"link": [
|
|
669
|
-
"https://apps.apple.com/app/apple-store/id1515978119?pt=118229234&ct=ss-house-ad&mt=8"
|
|
670
|
-
],
|
|
671
|
-
"active": false,
|
|
672
|
-
"label": "SS Mobile iOS",
|
|
673
|
-
"id": "krdzwhajq",
|
|
674
|
-
"weighted": false,
|
|
675
|
-
"hideOnCG": false,
|
|
676
|
-
"linksTo": "link"
|
|
677
|
-
},
|
|
678
|
-
{
|
|
679
|
-
"active": false,
|
|
680
|
-
"label": "Cubic Castles",
|
|
681
|
-
"imageExt": ".png",
|
|
682
|
-
"link": [
|
|
683
|
-
"https://castles.cc/?utm_source=shell_shockers_houseads&utm_medium=referral"
|
|
684
|
-
],
|
|
685
|
-
"id": "ktn7rc9jr",
|
|
686
|
-
"weighted": false,
|
|
687
|
-
"hideOnCG": false,
|
|
688
|
-
"linksTo": "link"
|
|
689
|
-
}
|
|
690
|
-
],
|
|
691
|
-
"houseAdPercentChance": 100,
|
|
692
|
-
"specialItemsTag": "Apr25",
|
|
693
|
-
"featuredSocialMedia": "Facebook",
|
|
694
|
-
"premFeatured": "premFeatTwo",
|
|
695
|
-
"smHouseAds": [
|
|
696
|
-
{
|
|
697
|
-
"ad": "badEgg",
|
|
698
|
-
"weighted": 0
|
|
699
|
-
}
|
|
700
|
-
],
|
|
701
|
-
"shellLogo": [
|
|
702
|
-
{
|
|
703
|
-
"active": false,
|
|
704
|
-
"label": "Christmas",
|
|
705
|
-
"imageExt": ".svg",
|
|
706
|
-
"id": "lpn8kxv40",
|
|
707
|
-
"weighted": false,
|
|
708
|
-
"hideOnCG": false
|
|
709
|
-
},
|
|
710
|
-
{
|
|
711
|
-
"imageExt": ".svg",
|
|
712
|
-
"label": "Egg Org 2",
|
|
713
|
-
"active": false,
|
|
714
|
-
"id": "luhi1wp12",
|
|
715
|
-
"weighted": false,
|
|
716
|
-
"hideOnCG": false
|
|
717
|
-
},
|
|
718
|
-
{
|
|
719
|
-
"imageExt": ".svg",
|
|
720
|
-
"label": "Halloween",
|
|
721
|
-
"id": "m1qxbsyk2",
|
|
722
|
-
"weighted": false,
|
|
723
|
-
"hideOnCG": false,
|
|
724
|
-
"active": false
|
|
725
|
-
}
|
|
726
|
-
]
|
|
727
|
-
};
|