yolkbot 0.1.3 β†’ 0.1.4-alpha.10

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.
Files changed (148) hide show
  1. package/browser/build/global.js +1 -1
  2. package/browser/build/module.js +1 -1
  3. package/dist/api.js +3 -0
  4. package/dist/bot/GamePlayer.js +3 -0
  5. package/dist/bot.js +3 -0
  6. package/dist/comm/Codes.js +3 -0
  7. package/dist/comm/CommIn.js +3 -0
  8. package/dist/comm/CommOut.js +3 -0
  9. package/dist/comm/OutBuffer.js +3 -0
  10. package/dist/comm/Pool.js +3 -0
  11. package/dist/comm/index.js +3 -0
  12. package/dist/constants/challenges.js +3 -0
  13. package/dist/constants/changelog.js +3 -0
  14. package/dist/constants/codes.js +3 -0
  15. package/dist/constants/guns.js +3 -0
  16. package/dist/constants/housePromo.js +3 -0
  17. package/dist/constants/index.js +3 -0
  18. package/dist/constants/items.js +3 -0
  19. package/dist/constants/language.js +3 -0
  20. package/dist/constants/maps.js +3 -0
  21. package/dist/constants/shellNews.js +3 -0
  22. package/dist/constants/shellYoutube.js +3 -0
  23. package/dist/constants/shopItems.js +3 -0
  24. package/dist/constants/sounds.js +3 -0
  25. package/dist/dispatches/BootPlayerDispatch.js +3 -0
  26. package/dist/dispatches/ChatDispatch.js +3 -0
  27. package/dist/dispatches/FireDispatch.js +3 -0
  28. package/dist/dispatches/GameOptionsDispatch.js +3 -0
  29. package/dist/dispatches/GoToAmmoDispatch.js +3 -0
  30. package/dist/dispatches/GoToCoopDispatch.js +3 -0
  31. package/dist/dispatches/GoToGrenadeDispatch.js +3 -0
  32. package/dist/dispatches/GoToPlayerDispatch.js +3 -0
  33. package/dist/dispatches/GoToSpatulaDispatch.js +3 -0
  34. package/dist/dispatches/LookAtDispatch.js +3 -0
  35. package/dist/dispatches/LookAtPosDispatch.js +3 -0
  36. package/dist/dispatches/MeleeDispatch.js +3 -0
  37. package/dist/dispatches/MovementDispatch.js +3 -0
  38. package/dist/dispatches/PauseDispatch.js +3 -0
  39. package/dist/dispatches/ReloadDispatch.js +3 -0
  40. package/dist/dispatches/ReportPlayerDispatch.js +3 -0
  41. package/dist/dispatches/SaveLoadoutDispatch.js +3 -0
  42. package/dist/dispatches/SpawnDispatch.js +3 -0
  43. package/dist/dispatches/SwapWeaponDispatch.js +3 -0
  44. package/dist/dispatches/SwitchTeamDispatch.js +3 -0
  45. package/dist/dispatches/ThrowGrenadeDispatch.js +3 -0
  46. package/dist/dispatches/index.js +3 -0
  47. package/dist/globals.js +3 -0
  48. package/dist/index.js +10 -0
  49. package/dist/matchmaker.js +3 -0
  50. package/dist/pathing/astar.js +3 -0
  51. package/dist/pathing/binaryheap.js +3 -0
  52. package/dist/pathing/mapnode.js +3 -0
  53. package/dist/socket.js +3 -0
  54. package/dist/types/comm/Codes.d.ts +21 -0
  55. package/dist/types/comm/index.d.ts +7 -0
  56. package/dist/types/constants/changelog.d.ts +7 -0
  57. package/dist/types/constants/codes.d.ts +44 -0
  58. package/dist/types/constants/housePromo.d.ts +40 -0
  59. package/{src β†’ dist}/types/constants/index.d.ts +1 -1
  60. package/dist/types/constants/language.d.ts +3 -0
  61. package/dist/types/constants/shellNews.d.ts +12 -0
  62. package/dist/types/constants/shellYoutube.d.ts +12 -0
  63. package/dist/types/constants/shopItems.d.ts +15 -0
  64. package/dist/types/constants/sounds.d.ts +10 -0
  65. package/package.json +31 -28
  66. package/src/.DS_Store +0 -0
  67. package/src/api.js +0 -235
  68. package/src/bot/GamePlayer.js +0 -88
  69. package/src/bot.js +0 -1998
  70. package/src/comm/Codes.js +0 -99
  71. package/src/comm/CommIn.js +0 -84
  72. package/src/comm/CommOut.js +0 -16
  73. package/src/comm/OutBuffer.js +0 -60
  74. package/src/comm/Pool.js +0 -55
  75. package/src/comm/index.js +0 -16
  76. package/src/constants/challenges.js +0 -1822
  77. package/src/constants/changelog.js +0 -19
  78. package/src/constants/codes.js +0 -45
  79. package/src/constants/guns.js +0 -368
  80. package/src/constants/housePromo.js +0 -727
  81. package/src/constants/index.js +0 -121
  82. package/src/constants/items.js +0 -42533
  83. package/src/constants/language.js +0 -1669
  84. package/src/constants/maps.js +0 -1095
  85. package/src/constants/shellNews.js +0 -59
  86. package/src/constants/shellYoutube.js +0 -93
  87. package/src/constants/shopItems.js +0 -2032
  88. package/src/constants/sounds.js +0 -1160
  89. package/src/dispatches/BootPlayerDispatch.js +0 -21
  90. package/src/dispatches/ChatDispatch.js +0 -30
  91. package/src/dispatches/FireDispatch.js +0 -20
  92. package/src/dispatches/GameOptionsDispatch.js +0 -46
  93. package/src/dispatches/GoToAmmoDispatch.js +0 -44
  94. package/src/dispatches/GoToCoopDispatch.js +0 -44
  95. package/src/dispatches/GoToGrenadeDispatch.js +0 -44
  96. package/src/dispatches/GoToPlayerDispatch.js +0 -38
  97. package/src/dispatches/GoToSpatulaDispatch.js +0 -32
  98. package/src/dispatches/LookAtDispatch.js +0 -48
  99. package/src/dispatches/LookAtPosDispatch.js +0 -33
  100. package/src/dispatches/MeleeDispatch.js +0 -28
  101. package/src/dispatches/MovementDispatch.js +0 -19
  102. package/src/dispatches/PauseDispatch.js +0 -18
  103. package/src/dispatches/ReloadDispatch.js +0 -36
  104. package/src/dispatches/ReportPlayerDispatch.js +0 -51
  105. package/src/dispatches/SaveLoadoutDispatch.js +0 -119
  106. package/src/dispatches/SpawnDispatch.js +0 -21
  107. package/src/dispatches/SwapWeaponDispatch.js +0 -19
  108. package/src/dispatches/SwitchTeamDispatch.js +0 -34
  109. package/src/dispatches/ThrowGrenadeDispatch.js +0 -26
  110. package/src/dispatches/index.js +0 -69
  111. package/src/globals.js +0 -15
  112. package/src/index.js +0 -14
  113. package/src/matchmaker.js +0 -206
  114. package/src/pathing/astar.js +0 -71
  115. package/src/pathing/binaryheap.js +0 -117
  116. package/src/pathing/mapnode.js +0 -236
  117. package/src/socket.js +0 -19
  118. /package/{src β†’ dist}/types/api.d.ts +0 -0
  119. /package/{src β†’ dist}/types/bot/GamePlayer.d.ts +0 -0
  120. /package/{src β†’ dist}/types/bot.d.ts +0 -0
  121. /package/{src β†’ dist}/types/constants/challenges.d.ts +0 -0
  122. /package/{src β†’ dist}/types/constants/guns.d.ts +0 -0
  123. /package/{src β†’ dist}/types/constants/items.d.ts +0 -0
  124. /package/{src β†’ dist}/types/constants/maps.d.ts +0 -0
  125. /package/{src β†’ dist}/types/dispatches/BootPlayerDispatch.d.ts +0 -0
  126. /package/{src β†’ dist}/types/dispatches/ChatDispatch.d.ts +0 -0
  127. /package/{src β†’ dist}/types/dispatches/FireDispatch.d.ts +0 -0
  128. /package/{src β†’ dist}/types/dispatches/GameOptionsDispatch.d.ts +0 -0
  129. /package/{src β†’ dist}/types/dispatches/GoToAmmoDispatch.d.ts +0 -0
  130. /package/{src β†’ dist}/types/dispatches/GoToCoopDispatch.d.ts +0 -0
  131. /package/{src β†’ dist}/types/dispatches/GoToGrenadeDispatch.d.ts +0 -0
  132. /package/{src β†’ dist}/types/dispatches/GoToPlayerDispatch.d.ts +0 -0
  133. /package/{src β†’ dist}/types/dispatches/GoToSpatulaDispatch.d.ts +0 -0
  134. /package/{src β†’ dist}/types/dispatches/LookAtDispatch.d.ts +0 -0
  135. /package/{src β†’ dist}/types/dispatches/LookAtPosDispatch.d.ts +0 -0
  136. /package/{src β†’ dist}/types/dispatches/MeleeDispatch.d.ts +0 -0
  137. /package/{src β†’ dist}/types/dispatches/MovementDispatch.d.ts +0 -0
  138. /package/{src β†’ dist}/types/dispatches/PauseDispatch.d.ts +0 -0
  139. /package/{src β†’ dist}/types/dispatches/ReloadDispatch.d.ts +0 -0
  140. /package/{src β†’ dist}/types/dispatches/ReportPlayerDispatch.d.ts +0 -0
  141. /package/{src β†’ dist}/types/dispatches/SaveLoadoutDispatch.d.ts +0 -0
  142. /package/{src β†’ dist}/types/dispatches/SpawnDispatch.d.ts +0 -0
  143. /package/{src β†’ dist}/types/dispatches/SwapWeaponDispatch.d.ts +0 -0
  144. /package/{src β†’ dist}/types/dispatches/SwitchTeamDispatch.d.ts +0 -0
  145. /package/{src β†’ dist}/types/dispatches/ThrowGrenadeDispatch.d.ts +0 -0
  146. /package/{src β†’ dist}/types/dispatches/index.d.ts +0 -0
  147. /package/{src β†’ dist}/types/matchmaker.d.ts +0 -0
  148. /package/{src β†’ dist}/types/socket.d.ts +0 -0
@@ -1,59 +0,0 @@
1
- /* eslint-disable */
2
- export const ShellNews = [
3
- {
4
- "active": true,
5
- "content": "Fight from the shadows, or protect the light! ",
6
- "imageExt": ".png",
7
- "id": "news_m8z3wo2d0",
8
- "elId": "mJ16et",
9
- "linksToChangeLog": "1"
10
- },
11
- {
12
- "content": "🏈 Footballbros.io - Go Long!",
13
- "link": "https://footballbros.io/?utm_source=ssnewsfeed&utm_medium=referral",
14
- "imageExt": ".png",
15
- "active": true,
16
- "id": "news_m4ul484c2",
17
- "elId": "LkwgAI"
18
- },
19
- {
20
- "content": "Score in SoccerBros.gg ⚽",
21
- "imageExt": ".png",
22
- "id": "news_m4ukw0jq3",
23
- "elId": "3xLkgx",
24
- "link": "https://soccerbros.gg/?utm_source=ssnewsfeed&utm_medium=referral",
25
- "active": true
26
- },
27
- {
28
- "content": "🧟 It’s alive! Badegg.io! πŸ’€",
29
- "imageExt": ".png",
30
- "id": "news_m4ukw0jq4",
31
- "elId": "qEGhQf",
32
- "link": "https://badegg.io/?utm_source=ssnewsfeed&utm_medium=referral",
33
- "active": true
34
- },
35
- {
36
- "content": "🀼 Get ready to rumble! Check out WrestleBros.io and beat up your bros! πŸ†",
37
- "imageExt": ".png",
38
- "id": "news_m4ukw0jq5",
39
- "elId": "45kPN5",
40
- "link": "https://wrestlebros.io/?utm_source=ssnewsfeed&utm_medium=referral",
41
- "active": true
42
- },
43
- {
44
- "content": "Play the original Bros dunkathon, BasketBros.io! πŸ€ 1v1 basketball action! Unlock tons of new ballers and upgrades! β›ΉοΈβ›ΉπŸΏβ€β™€οΈβ›ΉπŸ½β€β™‚οΈ",
45
- "imageExt": ".jpg",
46
- "id": "news_m4ukw0jq6",
47
- "elId": "h3L3Ft",
48
- "active": true,
49
- "link": "https://basketbros.io/?utm_source=ssnewsfeed&utm_medium=referral"
50
- },
51
- {
52
- "content": "✨ Join the prestigious Shell Shockers VIP Club. For as little as $5 per month get 2 premium items, no ads, x2 eggs & more! πŸ’Ž ",
53
- "imageExt": ".png",
54
- "linksToVipStore": "1",
55
- "id": "news_m4uksyyj7",
56
- "elId": "aA1wMp",
57
- "active": true
58
- }
59
- ];
@@ -1,93 +0,0 @@
1
- /* eslint-disable */
2
- export const ShellYoutube = [
3
- {
4
- "active": true,
5
- "link": "https://www.youtube.com/watch?v=7afD9QxU_vA",
6
- "desc": "",
7
- "imageExt": "",
8
- "id": "7afD9QxU_vA",
9
- "author": "Godric Gryffindor",
10
- "title": "I Play a Game of BINGO!",
11
- "externalImg": "https://i.ytimg.com/vi/7afD9QxU_vA/hqdefault.jpg"
12
- },
13
- {
14
- "active": true,
15
- "link": "https://www.youtube.com/watch?v=RQ1zgGzCkm0",
16
- "desc": "",
17
- "imageExt": "",
18
- "id": "RQ1zgGzCkm0",
19
- "author": "Clingzter ",
20
- "title": "The Golden Dragon Side of Shell",
21
- "externalImg": "https://i.ytimg.com/vi/RQ1zgGzCkm0/hqdefault.jpg"
22
- },
23
- {
24
- "active": true,
25
- "link": "https://www.youtube.com/watch?v=I7MEVsuYVkY",
26
- "desc": "",
27
- "imageExt": "",
28
- "id": "I7MEVsuYVkY",
29
- "author": "Galactic",
30
- "title": "Smooth Lofi gameplay w/Phoenix Yt",
31
- "externalImg": "https://i.ytimg.com/vi/I7MEVsuYVkY/hqdefault.jpg"
32
- },
33
- {
34
- "active": true,
35
- "link": "https://www.youtube.com/watch?v=LrfhRAK-nDs",
36
- "desc": "",
37
- "imageExt": "",
38
- "id": "LrfhRAK-nDs",
39
- "author": "Meep ",
40
- "title": "10 KS w/ Golden Dragon Guns!",
41
- "externalImg": "https://i.ytimg.com/vi/LrfhRAK-nDs/hqdefault.jpg"
42
- },
43
- {
44
- "active": true,
45
- "link": "https://www.youtube.com/watch?v=vh39ORIN8L0",
46
- "desc": "",
47
- "imageExt": "",
48
- "id": "vh39ORIN8L0",
49
- "author": "ObviouslyNotJake",
50
- "title": "Fight For The Masters!",
51
- "externalImg": "https://i.ytimg.com/vi/vh39ORIN8L0/hqdefault.jpg"
52
- },
53
- {
54
- "active": true,
55
- "link": "https://www.youtube.com/watch?v=S3pbYxiDl2E",
56
- "desc": "",
57
- "imageExt": "",
58
- "id": "S3pbYxiDl2E",
59
- "author": "The Rogue Contractor ",
60
- "title": " 🎯Snipes & Clutch Plays & 200 IQ ShotsπŸ”₯",
61
- "externalImg": "https://i.ytimg.com/vi/S3pbYxiDl2E/hqdefault.jpg"
62
- },
63
- {
64
- "active": true,
65
- "link": "https://www.youtube.com/watch?v=w-YpgP2adGI",
66
- "desc": "",
67
- "imageExt": "",
68
- "id": "w-YpgP2adGI",
69
- "author": "Godric Gryffindor",
70
- "title": "Into the Shadows Update",
71
- "externalImg": "https://i.ytimg.com/vi/w-YpgP2adGI/hqdefault.jpg"
72
- },
73
- {
74
- "active": true,
75
- "link": "https://www.youtube.com/watch?v=sS7lZxdobug",
76
- "desc": "",
77
- "imageExt": "",
78
- "id": "sS7lZxdobug",
79
- "author": "Sharkbucks",
80
- "title": "Egg Org Went TOO FAR!",
81
- "externalImg": "https://i.ytimg.com/vi/sS7lZxdobug/hqdefault.jpg"
82
- },
83
- {
84
- "active": true,
85
- "link": "https://www.youtube.com/watch?v=Xs5OLOpfHcc",
86
- "desc": "",
87
- "imageExt": "",
88
- "id": "Xs5OLOpfHcc",
89
- "author": "Clingzter ",
90
- "title": "The Eggstra Value Pack is LOADED!!",
91
- "externalImg": "https://i.ytimg.com/vi/Xs5OLOpfHcc/hqdefault.jpg"
92
- }
93
- ];