yolkbot 1.0.15 → 1.0.17
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 +123 -1
- package/browser/build/module.js +123 -1
- package/dist/bot/GamePlayer.js +1 -1
- package/dist/bot.js +1 -1
- package/dist/constants/changelog.js +1 -1
- package/dist/constants/guns.js +1 -1
- package/dist/constants/housePromo.js +1 -1
- package/dist/constants/index.js +1 -1
- package/dist/constants/items.js +1 -1
- package/dist/constants/language.js +47 -1
- package/dist/constants/maps.js +1 -1
- package/dist/constants/shellNews.js +1 -1
- package/dist/constants/shopItems.js +1 -1
- package/dist/constants/sounds.js +1 -1
- package/dist/dispatches/ChatDispatch.js +1 -1
- package/dist/dispatches/GameOptionsDispatch.js +1 -1
- package/dist/dispatches/MeleeDispatch.js +1 -1
- package/dist/dispatches/MovementDispatch.js +1 -1
- package/dist/dispatches/SaveLoadoutDispatch.js +1 -1
- package/dist/index.js +2 -2
- package/dist/matchmaker.js +1 -1
- package/dist/types/api.d.ts +1 -0
- package/dist/types/bot/GamePlayer.d.ts +13 -10
- package/dist/types/bot.d.ts +12 -7
- package/dist/types/constants/findItemById.d.ts +3 -0
- package/dist/types/constants/guns.d.ts +0 -4
- package/dist/types/constants/index.d.ts +60 -41
- package/dist/types/dispatches/BootPlayerDispatch.d.ts +1 -0
- package/dist/types/dispatches/ChatDispatch.d.ts +4 -1
- package/dist/types/dispatches/FireDispatch.d.ts +4 -1
- package/dist/types/dispatches/GameOptionsDispatch.d.ts +4 -0
- package/dist/types/dispatches/GoToAmmoDispatch.d.ts +1 -0
- package/dist/types/dispatches/GoToCoopDispatch.d.ts +1 -0
- package/dist/types/dispatches/GoToGrenadeDispatch.d.ts +1 -0
- package/dist/types/dispatches/GoToPlayerDispatch.d.ts +1 -0
- package/dist/types/dispatches/GoToSpatulaDispatch.d.ts +1 -0
- package/dist/types/dispatches/LookAtDispatch.d.ts +1 -0
- package/dist/types/dispatches/LookAtPosDispatch.d.ts +1 -0
- package/dist/types/dispatches/MeleeDispatch.d.ts +1 -0
- package/dist/types/dispatches/MovementDispatch.d.ts +1 -0
- package/dist/types/dispatches/PauseDispatch.d.ts +1 -0
- package/dist/types/dispatches/ReloadDispatch.d.ts +1 -0
- package/dist/types/dispatches/SaveLoadoutDispatch.d.ts +1 -0
- package/dist/types/dispatches/SpawnDispatch.d.ts +1 -0
- package/dist/types/dispatches/SwapWeaponDispatch.d.ts +5 -0
- package/dist/types/dispatches/SwitchTeamDispatch.d.ts +1 -0
- package/dist/types/dispatches/ThrowGrenadeDispatch.d.ts +3 -0
- package/dist/types/matchmaker.d.ts +3 -2
- package/dist/wasm/bytes.js +1 -1
- package/dist/wasm/imports.js +123 -1
- package/package.json +13 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "yolkbot",
|
|
3
3
|
"description": "create a shell shockers bot in under 10 lines.",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.17",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"shell shockers",
|
|
7
7
|
"shellshock.io",
|
|
@@ -86,6 +86,18 @@
|
|
|
86
86
|
"import": "./dist/dispatches/*.js",
|
|
87
87
|
"types": "./dist/types/dispatches/*.d.ts"
|
|
88
88
|
},
|
|
89
|
+
"./dispatches": {
|
|
90
|
+
"import": "./dist/dispatches/index.js",
|
|
91
|
+
"types": "./dist/types/dispatches.d.ts"
|
|
92
|
+
},
|
|
93
|
+
"./dispatches/*": {
|
|
94
|
+
"import": "./dist/dispatches/*.js",
|
|
95
|
+
"types": "./dist/types/dispatches/*.d.ts"
|
|
96
|
+
},
|
|
97
|
+
"./dispatches/*.js": {
|
|
98
|
+
"import": "./dist/dispatches/*.js",
|
|
99
|
+
"types": "./dist/types/dispatches/*.d.ts"
|
|
100
|
+
},
|
|
89
101
|
"./wasm": {
|
|
90
102
|
"import": "./dist/wasm/wrapper.js",
|
|
91
103
|
"types": "./dist/types/wasm/wrapper.d.ts"
|