@fnlb-project/fnbr 4.0.0

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 (363) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +68 -0
  3. package/dist/enums/Enums.d.ts +251 -0
  4. package/dist/enums/Enums.js +202 -0
  5. package/dist/enums/Enums.js.map +1 -0
  6. package/dist/index.d.ts +92 -0
  7. package/dist/index.js +194 -0
  8. package/dist/index.js.map +1 -0
  9. package/dist/resources/AuthClients.d.ts +39 -0
  10. package/dist/resources/AuthClients.js +41 -0
  11. package/dist/resources/AuthClients.js.map +1 -0
  12. package/dist/resources/BaseItemRating.json +5203 -0
  13. package/dist/resources/Endpoints.d.ts +58 -0
  14. package/dist/resources/Endpoints.js +71 -0
  15. package/dist/resources/Endpoints.js.map +1 -0
  16. package/dist/resources/HomebaseRatingMapping.json +255 -0
  17. package/dist/resources/PowerLevelCurves.d.ts +111 -0
  18. package/dist/resources/PowerLevelCurves.js +21 -0
  19. package/dist/resources/PowerLevelCurves.js.map +1 -0
  20. package/dist/resources/SurvivorItemRating.json +9343 -0
  21. package/dist/resources/constants.d.ts +2 -0
  22. package/dist/resources/constants.js +11 -0
  23. package/dist/resources/constants.js.map +1 -0
  24. package/dist/resources/defaultPartyMemberMeta.json +28 -0
  25. package/dist/resources/defaultPartyMeta.json +38 -0
  26. package/dist/resources/enums.d.ts +12 -0
  27. package/dist/resources/enums.js +18 -0
  28. package/dist/resources/enums.js.map +1 -0
  29. package/dist/resources/httpResponses.d.ts +773 -0
  30. package/dist/resources/httpResponses.js +3 -0
  31. package/dist/resources/httpResponses.js.map +1 -0
  32. package/dist/resources/structs.d.ts +1310 -0
  33. package/dist/resources/structs.js +3 -0
  34. package/dist/resources/structs.js.map +1 -0
  35. package/dist/src/Base.d.ts +15 -0
  36. package/dist/src/Base.js +15 -0
  37. package/dist/src/Base.js.map +1 -0
  38. package/dist/src/Client.d.ts +341 -0
  39. package/dist/src/Client.js +1043 -0
  40. package/dist/src/Client.js.map +1 -0
  41. package/dist/src/auth/Auth.d.ts +66 -0
  42. package/dist/src/auth/Auth.js +249 -0
  43. package/dist/src/auth/Auth.js.map +1 -0
  44. package/dist/src/auth/AuthSession.d.ts +41 -0
  45. package/dist/src/auth/AuthSession.js +25 -0
  46. package/dist/src/auth/AuthSession.js.map +1 -0
  47. package/dist/src/auth/EOSAuthSession.d.ts +19 -0
  48. package/dist/src/auth/EOSAuthSession.js +80 -0
  49. package/dist/src/auth/EOSAuthSession.js.map +1 -0
  50. package/dist/src/auth/FortniteAuthSession.d.ts +53 -0
  51. package/dist/src/auth/FortniteAuthSession.js +107 -0
  52. package/dist/src/auth/FortniteAuthSession.js.map +1 -0
  53. package/dist/src/auth/FortniteClientCredentialsAuthSession.d.ts +18 -0
  54. package/dist/src/auth/FortniteClientCredentialsAuthSession.js +88 -0
  55. package/dist/src/auth/FortniteClientCredentialsAuthSession.js.map +1 -0
  56. package/dist/src/auth/LauncherAuthSession.d.ts +23 -0
  57. package/dist/src/auth/LauncherAuthSession.js +120 -0
  58. package/dist/src/auth/LauncherAuthSession.js.map +1 -0
  59. package/dist/src/exceptions/AuthenticationMissingError.d.ts +15 -0
  60. package/dist/src/exceptions/AuthenticationMissingError.js +18 -0
  61. package/dist/src/exceptions/AuthenticationMissingError.js.map +1 -0
  62. package/dist/src/exceptions/CreativeIslandNotFoundError.d.ts +14 -0
  63. package/dist/src/exceptions/CreativeIslandNotFoundError.js +18 -0
  64. package/dist/src/exceptions/CreativeIslandNotFoundError.js.map +1 -0
  65. package/dist/src/exceptions/CreatorCodeNotFoundError.d.ts +14 -0
  66. package/dist/src/exceptions/CreatorCodeNotFoundError.js +18 -0
  67. package/dist/src/exceptions/CreatorCodeNotFoundError.js.map +1 -0
  68. package/dist/src/exceptions/DuplicateFriendshipError.d.ts +14 -0
  69. package/dist/src/exceptions/DuplicateFriendshipError.js +18 -0
  70. package/dist/src/exceptions/DuplicateFriendshipError.js.map +1 -0
  71. package/dist/src/exceptions/EpicgamesAPIError.d.ts +42 -0
  72. package/dist/src/exceptions/EpicgamesAPIError.js +27 -0
  73. package/dist/src/exceptions/EpicgamesAPIError.js.map +1 -0
  74. package/dist/src/exceptions/EventTimeoutError.d.ts +19 -0
  75. package/dist/src/exceptions/EventTimeoutError.js +20 -0
  76. package/dist/src/exceptions/EventTimeoutError.js.map +1 -0
  77. package/dist/src/exceptions/FriendNotFoundError.d.ts +14 -0
  78. package/dist/src/exceptions/FriendNotFoundError.js +18 -0
  79. package/dist/src/exceptions/FriendNotFoundError.js.map +1 -0
  80. package/dist/src/exceptions/FriendshipRequestAlreadySentError.d.ts +14 -0
  81. package/dist/src/exceptions/FriendshipRequestAlreadySentError.js +18 -0
  82. package/dist/src/exceptions/FriendshipRequestAlreadySentError.js.map +1 -0
  83. package/dist/src/exceptions/InviteeFriendshipRequestLimitExceededError.d.ts +14 -0
  84. package/dist/src/exceptions/InviteeFriendshipRequestLimitExceededError.js +18 -0
  85. package/dist/src/exceptions/InviteeFriendshipRequestLimitExceededError.js.map +1 -0
  86. package/dist/src/exceptions/InviteeFriendshipSettingsError.d.ts +14 -0
  87. package/dist/src/exceptions/InviteeFriendshipSettingsError.js +18 -0
  88. package/dist/src/exceptions/InviteeFriendshipSettingsError.js.map +1 -0
  89. package/dist/src/exceptions/InviteeFriendshipsLimitExceededError.d.ts +14 -0
  90. package/dist/src/exceptions/InviteeFriendshipsLimitExceededError.js +18 -0
  91. package/dist/src/exceptions/InviteeFriendshipsLimitExceededError.js.map +1 -0
  92. package/dist/src/exceptions/InviterFriendshipsLimitExceededError.d.ts +14 -0
  93. package/dist/src/exceptions/InviterFriendshipsLimitExceededError.js +18 -0
  94. package/dist/src/exceptions/InviterFriendshipsLimitExceededError.js.map +1 -0
  95. package/dist/src/exceptions/MatchNotFoundError.d.ts +14 -0
  96. package/dist/src/exceptions/MatchNotFoundError.js +18 -0
  97. package/dist/src/exceptions/MatchNotFoundError.js.map +1 -0
  98. package/dist/src/exceptions/OfferNotFoundError.d.ts +14 -0
  99. package/dist/src/exceptions/OfferNotFoundError.js +18 -0
  100. package/dist/src/exceptions/OfferNotFoundError.js.map +1 -0
  101. package/dist/src/exceptions/PartyAlreadyJoinedError.d.ts +7 -0
  102. package/dist/src/exceptions/PartyAlreadyJoinedError.js +14 -0
  103. package/dist/src/exceptions/PartyAlreadyJoinedError.js.map +1 -0
  104. package/dist/src/exceptions/PartyInvitationExpiredError.d.ts +7 -0
  105. package/dist/src/exceptions/PartyInvitationExpiredError.js +14 -0
  106. package/dist/src/exceptions/PartyInvitationExpiredError.js.map +1 -0
  107. package/dist/src/exceptions/PartyMaxSizeReachedError.d.ts +7 -0
  108. package/dist/src/exceptions/PartyMaxSizeReachedError.js +14 -0
  109. package/dist/src/exceptions/PartyMaxSizeReachedError.js.map +1 -0
  110. package/dist/src/exceptions/PartyMemberNotFoundError.d.ts +14 -0
  111. package/dist/src/exceptions/PartyMemberNotFoundError.js +18 -0
  112. package/dist/src/exceptions/PartyMemberNotFoundError.js.map +1 -0
  113. package/dist/src/exceptions/PartyNotFoundError.d.ts +7 -0
  114. package/dist/src/exceptions/PartyNotFoundError.js +14 -0
  115. package/dist/src/exceptions/PartyNotFoundError.js.map +1 -0
  116. package/dist/src/exceptions/PartyPermissionError.d.ts +7 -0
  117. package/dist/src/exceptions/PartyPermissionError.js +14 -0
  118. package/dist/src/exceptions/PartyPermissionError.js.map +1 -0
  119. package/dist/src/exceptions/SendMessageError.d.ts +27 -0
  120. package/dist/src/exceptions/SendMessageError.js +21 -0
  121. package/dist/src/exceptions/SendMessageError.js.map +1 -0
  122. package/dist/src/exceptions/StatsPrivacyError.d.ts +14 -0
  123. package/dist/src/exceptions/StatsPrivacyError.js +18 -0
  124. package/dist/src/exceptions/StatsPrivacyError.js.map +1 -0
  125. package/dist/src/exceptions/StompConnectionError.d.ts +14 -0
  126. package/dist/src/exceptions/StompConnectionError.js +18 -0
  127. package/dist/src/exceptions/StompConnectionError.js.map +1 -0
  128. package/dist/src/exceptions/UserNotFoundError.d.ts +14 -0
  129. package/dist/src/exceptions/UserNotFoundError.js +18 -0
  130. package/dist/src/exceptions/UserNotFoundError.js.map +1 -0
  131. package/dist/src/exceptions/XMPPConnectionError.d.ts +19 -0
  132. package/dist/src/exceptions/XMPPConnectionError.js +19 -0
  133. package/dist/src/exceptions/XMPPConnectionError.js.map +1 -0
  134. package/dist/src/exceptions/XMPPConnectionTimeoutError.d.ts +14 -0
  135. package/dist/src/exceptions/XMPPConnectionTimeoutError.js +18 -0
  136. package/dist/src/exceptions/XMPPConnectionTimeoutError.js.map +1 -0
  137. package/dist/src/http/HTTP.d.ts +40 -0
  138. package/dist/src/http/HTTP.js +124 -0
  139. package/dist/src/http/HTTP.js.map +1 -0
  140. package/dist/src/managers/ChatManager.d.ts +27 -0
  141. package/dist/src/managers/ChatManager.js +71 -0
  142. package/dist/src/managers/ChatManager.js.map +1 -0
  143. package/dist/src/managers/FriendManager.d.ts +66 -0
  144. package/dist/src/managers/FriendManager.js +175 -0
  145. package/dist/src/managers/FriendManager.js.map +1 -0
  146. package/dist/src/managers/STWManager.d.ts +29 -0
  147. package/dist/src/managers/STWManager.js +80 -0
  148. package/dist/src/managers/STWManager.js.map +1 -0
  149. package/dist/src/managers/TournamentManager.d.ts +51 -0
  150. package/dist/src/managers/TournamentManager.js +182 -0
  151. package/dist/src/managers/TournamentManager.js.map +1 -0
  152. package/dist/src/managers/UserManager.d.ts +78 -0
  153. package/dist/src/managers/UserManager.js +216 -0
  154. package/dist/src/managers/UserManager.js.map +1 -0
  155. package/dist/src/stomp/EOSConnect.d.ts +43 -0
  156. package/dist/src/stomp/EOSConnect.js +175 -0
  157. package/dist/src/stomp/EOSConnect.js.map +1 -0
  158. package/dist/src/structures/Avatar.d.ts +27 -0
  159. package/dist/src/structures/Avatar.js +22 -0
  160. package/dist/src/structures/Avatar.js.map +1 -0
  161. package/dist/src/structures/BaseMessage.d.ts +34 -0
  162. package/dist/src/structures/BaseMessage.js +22 -0
  163. package/dist/src/structures/BaseMessage.js.map +1 -0
  164. package/dist/src/structures/CreatorCode.d.ts +31 -0
  165. package/dist/src/structures/CreatorCode.js +22 -0
  166. package/dist/src/structures/CreatorCode.js.map +1 -0
  167. package/dist/src/structures/EpicgamesServerStatus.d.ts +52 -0
  168. package/dist/src/structures/EpicgamesServerStatus.js +31 -0
  169. package/dist/src/structures/EpicgamesServerStatus.js.map +1 -0
  170. package/dist/src/structures/EpicgamesServerStatusComponent.d.ts +67 -0
  171. package/dist/src/structures/EpicgamesServerStatusComponent.js +37 -0
  172. package/dist/src/structures/EpicgamesServerStatusComponent.js.map +1 -0
  173. package/dist/src/structures/EpicgamesServerStatusIncident.d.ts +58 -0
  174. package/dist/src/structures/EpicgamesServerStatusIncident.js +36 -0
  175. package/dist/src/structures/EpicgamesServerStatusIncident.js.map +1 -0
  176. package/dist/src/structures/EpicgamesServerStatusScheduledMainteance.d.ts +21 -0
  177. package/dist/src/structures/EpicgamesServerStatusScheduledMainteance.js +20 -0
  178. package/dist/src/structures/EpicgamesServerStatusScheduledMainteance.js.map +1 -0
  179. package/dist/src/structures/EventTokens.d.ts +32 -0
  180. package/dist/src/structures/EventTokens.js +45 -0
  181. package/dist/src/structures/EventTokens.js.map +1 -0
  182. package/dist/src/structures/FortniteServerStatus.d.ts +46 -0
  183. package/dist/src/structures/FortniteServerStatus.js +26 -0
  184. package/dist/src/structures/FortniteServerStatus.js.map +1 -0
  185. package/dist/src/structures/GlobalProfile.d.ts +36 -0
  186. package/dist/src/structures/GlobalProfile.js +25 -0
  187. package/dist/src/structures/GlobalProfile.js.map +1 -0
  188. package/dist/src/structures/Image.d.ts +36 -0
  189. package/dist/src/structures/Image.js +38 -0
  190. package/dist/src/structures/Image.js.map +1 -0
  191. package/dist/src/structures/NewsMessage.d.ts +56 -0
  192. package/dist/src/structures/NewsMessage.js +45 -0
  193. package/dist/src/structures/NewsMessage.js.map +1 -0
  194. package/dist/src/structures/NewsMessageVideo.d.ts +47 -0
  195. package/dist/src/structures/NewsMessageVideo.js +32 -0
  196. package/dist/src/structures/NewsMessageVideo.js.map +1 -0
  197. package/dist/src/structures/RadioStation.d.ts +31 -0
  198. package/dist/src/structures/RadioStation.js +33 -0
  199. package/dist/src/structures/RadioStation.js.map +1 -0
  200. package/dist/src/structures/Stats.d.ts +45 -0
  201. package/dist/src/structures/Stats.js +109 -0
  202. package/dist/src/structures/Stats.js.map +1 -0
  203. package/dist/src/structures/Tournament.d.ts +86 -0
  204. package/dist/src/structures/Tournament.js +64 -0
  205. package/dist/src/structures/Tournament.js.map +1 -0
  206. package/dist/src/structures/TournamentWindow.d.ts +124 -0
  207. package/dist/src/structures/TournamentWindow.js +52 -0
  208. package/dist/src/structures/TournamentWindow.js.map +1 -0
  209. package/dist/src/structures/friend/BaseFriendMessage.d.ts +32 -0
  210. package/dist/src/structures/friend/BaseFriendMessage.js +28 -0
  211. package/dist/src/structures/friend/BaseFriendMessage.js.map +1 -0
  212. package/dist/src/structures/friend/BasePendingFriend.d.ts +22 -0
  213. package/dist/src/structures/friend/BasePendingFriend.js +22 -0
  214. package/dist/src/structures/friend/BasePendingFriend.js.map +1 -0
  215. package/dist/src/structures/friend/Friend.d.ts +106 -0
  216. package/dist/src/structures/friend/Friend.js +97 -0
  217. package/dist/src/structures/friend/Friend.js.map +1 -0
  218. package/dist/src/structures/friend/FriendPresence.d.ts +84 -0
  219. package/dist/src/structures/friend/FriendPresence.js +48 -0
  220. package/dist/src/structures/friend/FriendPresence.js.map +1 -0
  221. package/dist/src/structures/friend/IncomingPendingFriend.d.ts +27 -0
  222. package/dist/src/structures/friend/IncomingPendingFriend.js +36 -0
  223. package/dist/src/structures/friend/IncomingPendingFriend.js.map +1 -0
  224. package/dist/src/structures/friend/OutgoingPendingFriend.d.ts +17 -0
  225. package/dist/src/structures/friend/OutgoingPendingFriend.js +24 -0
  226. package/dist/src/structures/friend/OutgoingPendingFriend.js.map +1 -0
  227. package/dist/src/structures/friend/ReceivedFriendMessage.d.ts +27 -0
  228. package/dist/src/structures/friend/ReceivedFriendMessage.js +27 -0
  229. package/dist/src/structures/friend/ReceivedFriendMessage.js.map +1 -0
  230. package/dist/src/structures/friend/SentFriendMessage.d.ts +21 -0
  231. package/dist/src/structures/friend/SentFriendMessage.js +19 -0
  232. package/dist/src/structures/friend/SentFriendMessage.js.map +1 -0
  233. package/dist/src/structures/party/BasePartyInvitation.d.ts +48 -0
  234. package/dist/src/structures/party/BasePartyInvitation.js +33 -0
  235. package/dist/src/structures/party/BasePartyInvitation.js.map +1 -0
  236. package/dist/src/structures/party/BasePartyJoinRequest.d.ts +37 -0
  237. package/dist/src/structures/party/BasePartyJoinRequest.js +30 -0
  238. package/dist/src/structures/party/BasePartyJoinRequest.js.map +1 -0
  239. package/dist/src/structures/party/ClientParty.d.ts +162 -0
  240. package/dist/src/structures/party/ClientParty.js +412 -0
  241. package/dist/src/structures/party/ClientParty.js.map +1 -0
  242. package/dist/src/structures/party/ClientPartyMember.d.ts +144 -0
  243. package/dist/src/structures/party/ClientPartyMember.js +463 -0
  244. package/dist/src/structures/party/ClientPartyMember.js.map +1 -0
  245. package/dist/src/structures/party/ClientPartyMemberMeta.d.ts +18 -0
  246. package/dist/src/structures/party/ClientPartyMemberMeta.js +54 -0
  247. package/dist/src/structures/party/ClientPartyMemberMeta.js.map +1 -0
  248. package/dist/src/structures/party/ClientPartyMeta.d.ts +23 -0
  249. package/dist/src/structures/party/ClientPartyMeta.js +59 -0
  250. package/dist/src/structures/party/ClientPartyMeta.js.map +1 -0
  251. package/dist/src/structures/party/Party.d.ts +95 -0
  252. package/dist/src/structures/party/Party.js +200 -0
  253. package/dist/src/structures/party/Party.js.map +1 -0
  254. package/dist/src/structures/party/PartyChat.d.ts +73 -0
  255. package/dist/src/structures/party/PartyChat.js +76 -0
  256. package/dist/src/structures/party/PartyChat.js.map +1 -0
  257. package/dist/src/structures/party/PartyMember.d.ts +139 -0
  258. package/dist/src/structures/party/PartyMember.js +201 -0
  259. package/dist/src/structures/party/PartyMember.js.map +1 -0
  260. package/dist/src/structures/party/PartyMemberConfirmation.d.ts +43 -0
  261. package/dist/src/structures/party/PartyMemberConfirmation.js +53 -0
  262. package/dist/src/structures/party/PartyMemberConfirmation.js.map +1 -0
  263. package/dist/src/structures/party/PartyMemberMeta.d.ts +76 -0
  264. package/dist/src/structures/party/PartyMemberMeta.js +145 -0
  265. package/dist/src/structures/party/PartyMemberMeta.js.map +1 -0
  266. package/dist/src/structures/party/PartyMessage.d.ts +30 -0
  267. package/dist/src/structures/party/PartyMessage.js +28 -0
  268. package/dist/src/structures/party/PartyMessage.js.map +1 -0
  269. package/dist/src/structures/party/PartyMeta.d.ts +24 -0
  270. package/dist/src/structures/party/PartyMeta.js +43 -0
  271. package/dist/src/structures/party/PartyMeta.js.map +1 -0
  272. package/dist/src/structures/party/PresenceParty.d.ts +66 -0
  273. package/dist/src/structures/party/PresenceParty.js +49 -0
  274. package/dist/src/structures/party/PresenceParty.js.map +1 -0
  275. package/dist/src/structures/party/ReceivedPartyInvitation.d.ts +33 -0
  276. package/dist/src/structures/party/ReceivedPartyInvitation.js +54 -0
  277. package/dist/src/structures/party/ReceivedPartyInvitation.js.map +1 -0
  278. package/dist/src/structures/party/ReceivedPartyJoinRequest.d.ts +26 -0
  279. package/dist/src/structures/party/ReceivedPartyJoinRequest.js +31 -0
  280. package/dist/src/structures/party/ReceivedPartyJoinRequest.js.map +1 -0
  281. package/dist/src/structures/party/SentPartyInvitation.d.ts +27 -0
  282. package/dist/src/structures/party/SentPartyInvitation.js +39 -0
  283. package/dist/src/structures/party/SentPartyInvitation.js.map +1 -0
  284. package/dist/src/structures/party/SentPartyJoinRequest.d.ts +19 -0
  285. package/dist/src/structures/party/SentPartyJoinRequest.js +22 -0
  286. package/dist/src/structures/party/SentPartyJoinRequest.js.map +1 -0
  287. package/dist/src/structures/stw/STWHero.d.ts +61 -0
  288. package/dist/src/structures/stw/STWHero.js +38 -0
  289. package/dist/src/structures/stw/STWHero.js.map +1 -0
  290. package/dist/src/structures/stw/STWHeroLoadout.d.ts +44 -0
  291. package/dist/src/structures/stw/STWHeroLoadout.js +34 -0
  292. package/dist/src/structures/stw/STWHeroLoadout.js.map +1 -0
  293. package/dist/src/structures/stw/STWItem.d.ts +31 -0
  294. package/dist/src/structures/stw/STWItem.js +23 -0
  295. package/dist/src/structures/stw/STWItem.js.map +1 -0
  296. package/dist/src/structures/stw/STWLocker.d.ts +32 -0
  297. package/dist/src/structures/stw/STWLocker.js +26 -0
  298. package/dist/src/structures/stw/STWLocker.js.map +1 -0
  299. package/dist/src/structures/stw/STWMeleeWeaponSchematic.d.ts +14 -0
  300. package/dist/src/structures/stw/STWMeleeWeaponSchematic.js +15 -0
  301. package/dist/src/structures/stw/STWMeleeWeaponSchematic.js.map +1 -0
  302. package/dist/src/structures/stw/STWNewsMessage.d.ts +42 -0
  303. package/dist/src/structures/stw/STWNewsMessage.js +27 -0
  304. package/dist/src/structures/stw/STWNewsMessage.js.map +1 -0
  305. package/dist/src/structures/stw/STWProfile.d.ts +132 -0
  306. package/dist/src/structures/stw/STWProfile.js +283 -0
  307. package/dist/src/structures/stw/STWProfile.js.map +1 -0
  308. package/dist/src/structures/stw/STWRangedWeaponSchematic.d.ts +14 -0
  309. package/dist/src/structures/stw/STWRangedWeaponSchematic.js +15 -0
  310. package/dist/src/structures/stw/STWRangedWeaponSchematic.js.map +1 -0
  311. package/dist/src/structures/stw/STWResource.d.ts +27 -0
  312. package/dist/src/structures/stw/STWResource.js +22 -0
  313. package/dist/src/structures/stw/STWResource.js.map +1 -0
  314. package/dist/src/structures/stw/STWSchematic.d.ts +72 -0
  315. package/dist/src/structures/stw/STWSchematic.js +40 -0
  316. package/dist/src/structures/stw/STWSchematic.js.map +1 -0
  317. package/dist/src/structures/stw/STWStats.d.ts +103 -0
  318. package/dist/src/structures/stw/STWStats.js +85 -0
  319. package/dist/src/structures/stw/STWStats.js.map +1 -0
  320. package/dist/src/structures/stw/STWSurvivor.d.ts +104 -0
  321. package/dist/src/structures/stw/STWSurvivor.js +76 -0
  322. package/dist/src/structures/stw/STWSurvivor.js.map +1 -0
  323. package/dist/src/structures/stw/STWTeamPerk.d.ts +19 -0
  324. package/dist/src/structures/stw/STWTeamPerk.js +20 -0
  325. package/dist/src/structures/stw/STWTeamPerk.js.map +1 -0
  326. package/dist/src/structures/stw/STWTrapSchematic.d.ts +15 -0
  327. package/dist/src/structures/stw/STWTrapSchematic.js +16 -0
  328. package/dist/src/structures/stw/STWTrapSchematic.js.map +1 -0
  329. package/dist/src/structures/stw/STWWeaponSchematic.d.ts +15 -0
  330. package/dist/src/structures/stw/STWWeaponSchematic.js +16 -0
  331. package/dist/src/structures/stw/STWWeaponSchematic.js.map +1 -0
  332. package/dist/src/structures/user/BlockedUser.d.ts +13 -0
  333. package/dist/src/structures/user/BlockedUser.js +19 -0
  334. package/dist/src/structures/user/BlockedUser.js.map +1 -0
  335. package/dist/src/structures/user/ClientUser.d.ts +78 -0
  336. package/dist/src/structures/user/ClientUser.js +34 -0
  337. package/dist/src/structures/user/ClientUser.js.map +1 -0
  338. package/dist/src/structures/user/User.d.ts +98 -0
  339. package/dist/src/structures/user/User.js +130 -0
  340. package/dist/src/structures/user/User.js.map +1 -0
  341. package/dist/src/structures/user/UserSearchResult.d.ts +31 -0
  342. package/dist/src/structures/user/UserSearchResult.js +23 -0
  343. package/dist/src/structures/user/UserSearchResult.js.map +1 -0
  344. package/dist/src/util/AsyncLock.d.ts +28 -0
  345. package/dist/src/util/AsyncLock.js +44 -0
  346. package/dist/src/util/AsyncLock.js.map +1 -0
  347. package/dist/src/util/BinaryWriter.d.ts +79 -0
  348. package/dist/src/util/BinaryWriter.js +136 -0
  349. package/dist/src/util/BinaryWriter.js.map +1 -0
  350. package/dist/src/util/CurveTable.d.ts +24 -0
  351. package/dist/src/util/CurveTable.js +37 -0
  352. package/dist/src/util/CurveTable.js.map +1 -0
  353. package/dist/src/util/Meta.d.ts +41 -0
  354. package/dist/src/util/Meta.js +73 -0
  355. package/dist/src/util/Meta.js.map +1 -0
  356. package/dist/src/util/Util.d.ts +162 -0
  357. package/dist/src/util/Util.js +539 -0
  358. package/dist/src/util/Util.js.map +1 -0
  359. package/dist/src/xmpp/XMPP.d.ts +100 -0
  360. package/dist/src/xmpp/XMPP.js +702 -0
  361. package/dist/src/xmpp/XMPP.js.map +1 -0
  362. package/dist/tsconfig.tsbuildinfo +1 -0
  363. package/package.json +66 -0
@@ -0,0 +1,58 @@
1
+ declare const _default: Readonly<{
2
+ LOGIN_REPUTATION: "https://www.epicgames.com/id/api/reputation";
3
+ LOGIN_CSRF: "https://www.epicgames.com/id/api/csrf";
4
+ LOGIN: "https://www.epicgames.com/id/api/login";
5
+ LOGIN_EXCHANGE: "https://www.epicgames.com/id/api/exchange";
6
+ OAUTH_TOKEN_CREATE: "https://account-public-service-prod.ol.epicgames.com/account/api/oauth/token";
7
+ OAUTH_TOKEN_VERIFY: "https://account-public-service-prod.ol.epicgames.com/account/api/oauth/verify";
8
+ OAUTH_TOKEN_KILL: "https://account-public-service-prod.ol.epicgames.com/account/api/oauth/sessions/kill";
9
+ OAUTH_TOKEN_KILL_MULTIPLE: "https://account-public-service-prod.ol.epicgames.com/account/api/oauth/sessions/kill";
10
+ OAUTH_EXCHANGE: "https://account-public-service-prod.ol.epicgames.com/account/api/oauth/exchange";
11
+ OAUTH_DEVICE_AUTH: "https://account-public-service-prod.ol.epicgames.com/account/api/public/account";
12
+ OAUTH_DEVICE_CODE: "https://account-public-service-prod.ol.epicgames.com/account/api/oauth/deviceAuthorization";
13
+ INIT_EULA: "https://eulatracking-public-service-prod-m.ol.epicgames.com/eulatracking/api/public/agreements/fn";
14
+ INIT_GRANTACCESS: "https://fngw-mcp-gc-livefn.ol.epicgames.com/fortnite/api/game/v2/grant_access";
15
+ XMPP_SERVER: "xmpp-service-prod.ol.epicgames.com";
16
+ EPIC_PROD_ENV: "prod.ol.epicgames.com";
17
+ EOS_STOMP: "connect.epicgames.dev";
18
+ EOS_TOKEN: "https://api.epicgames.dev/epic/oauth/v2/token";
19
+ EOS_TOKEN_INFO: "https://api.epicgames.dev/epic/oauth/v2/tokenInfo";
20
+ EOS_TOKEN_REVOKE: "https://api.epicgames.dev/epic/oauth/v2/revoke";
21
+ EOS_CHAT: "https://api.epicgames.dev/epic/chat";
22
+ BR_STATS_V2: "https://statsproxy-public-service-live.ol.epicgames.com/statsproxy/api/statsv2";
23
+ BR_SERVER_STATUS: "https://lightswitch-public-service-prod06.ol.epicgames.com/lightswitch/api/service/bulk/status?serviceId=Fortnite";
24
+ BR_STORE: "https://fngw-mcp-gc-livefn.ol.epicgames.com/fortnite/api/storefront/v2/catalog";
25
+ BR_STORE_KEYCHAIN: "https://fngw-mcp-gc-livefn.ol.epicgames.com/fortnite/api/storefront/v2/keychain?numKeysDownloaded=0";
26
+ BR_NEWS: "https://fortnitecontent-website-prod07.ol.epicgames.com/content/api/pages/fortnite-game";
27
+ BR_NEWS_MOTD: "https://prm-dialogue-public-api-prod.edea.live.use1a.on.epicgames.com/api/v1/fortnite-br/surfaces/motd/target";
28
+ BR_EVENT_FLAGS: "https://fngw-mcp-gc-livefn.ol.epicgames.com/fortnite/api/calendar/v1/timeline";
29
+ BR_SAC_SEARCH: "https://payment-website-pci.ol.epicgames.com/affiliate/search-by-slug";
30
+ BR_SAC: "https://affiliate-public-service-prod.ol.epicgames.com/affiliate/api/public/affiliates/slug";
31
+ BR_PARTY: "https://party-service-prod.ol.epicgames.com/party/api/v1/Fortnite";
32
+ BR_TOURNAMENTS: "https://events-public-service-live.ol.epicgames.com/api/v1/events/Fortnite/data";
33
+ BR_TOURNAMENTS_DOWNLOAD: "https://events-public-service-live.ol.epicgames.com/api/v1/events/Fortnite/download";
34
+ BR_TOURNAMENT_WINDOW: "https://events-public-service-live.ol.epicgames.com/api/v1/leaderboards/Fortnite";
35
+ BR_TOURNAMENT_TOKENS: "https://events-public-service-live.ol.epicgames.com/api/v1/players/Fortnite/tokens";
36
+ BR_STREAM: "https://fortnite-vod.akamaized.net";
37
+ BR_REPLAY: "https://datastorage-public-service-live.ol.epicgames.com/api/v1/access/fnreplays/public";
38
+ BR_REPLAY_METADATA: "https://datastorage-public-service-live.ol.epicgames.com/api/v1/access/fnreplaysmetadata/public";
39
+ BR_GIFT_ELIGIBILITY: "https://fngw-mcp-gc-livefn.ol.epicgames.com/fortnite/api/storefront/v2/gift/check_eligibility";
40
+ CREATIVE_ISLAND_LOOKUP: "https://links-public-service-live.ol.epicgames.com/links/api/fn/mnemonic";
41
+ CREATIVE_DISCOVERY: "https://fn-service-discovery-live-public.ogs.live.on.epicgames.com/api/v1/discovery/surface";
42
+ STW_WORLD_INFO: "https://fngw-mcp-gc-livefn.ol.epicgames.com/fortnite/api/game/v2/world/info";
43
+ ACCOUNT_MULTIPLE: "https://account-public-service-prod.ol.epicgames.com/account/api/public/account";
44
+ ACCOUNT_DISPLAYNAME: "https://account-public-service-prod.ol.epicgames.com/account/api/public/account/displayName";
45
+ ACCOUNT_ID: "https://account-public-service-prod.ol.epicgames.com/account/api/public/account";
46
+ ACCOUNT_EMAIL: "https://account-public-service-prod.ol.epicgames.com/account/api/public/account/email";
47
+ ACCOUNT_SEARCH: "https://user-search-service-prod.ol.epicgames.com/api/v1/search";
48
+ ACCOUNT_AVATAR: "https://avatar-service-prod.identity.live.on.epicgames.com/v1/avatar";
49
+ ACCOUNT_GLOBAL_PROFILE: "https://global-profile-service.game-social.epicgames.com/profiles";
50
+ MCP: "https://fngw-mcp-gc-livefn.ol.epicgames.com/fortnite/api/game/v2/profile";
51
+ FRIENDS: "https://friends-public-service-prod.ol.epicgames.com/friends/api/v1";
52
+ FRIEND_ADD: "https://friends-public-service-prod.ol.epicgames.com/friends/api/public/friends";
53
+ FRIEND_DELETE: "https://friends-public-service-prod.ol.epicgames.com/friends/api/v1";
54
+ FRIEND_BLOCK: "https://friends-public-service-prod.ol.epicgames.com/friends/api/public/blocklist";
55
+ SERVER_STATUS_SUMMARY: "https://ft308v428dv3.statuspage.io/api/v2/summary.json";
56
+ GRAPHQL: "https://graphql.epicgames.com/graphql";
57
+ }>;
58
+ export default _default;
@@ -0,0 +1,71 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.default = Object.freeze({
4
+ // AUTH
5
+ LOGIN_REPUTATION: 'https://www.epicgames.com/id/api/reputation',
6
+ LOGIN_CSRF: 'https://www.epicgames.com/id/api/csrf',
7
+ LOGIN: 'https://www.epicgames.com/id/api/login',
8
+ LOGIN_EXCHANGE: 'https://www.epicgames.com/id/api/exchange',
9
+ OAUTH_TOKEN_CREATE: 'https://account-public-service-prod.ol.epicgames.com/account/api/oauth/token',
10
+ OAUTH_TOKEN_VERIFY: 'https://account-public-service-prod.ol.epicgames.com/account/api/oauth/verify',
11
+ OAUTH_TOKEN_KILL: 'https://account-public-service-prod.ol.epicgames.com/account/api/oauth/sessions/kill',
12
+ OAUTH_TOKEN_KILL_MULTIPLE: 'https://account-public-service-prod.ol.epicgames.com/account/api/oauth/sessions/kill',
13
+ OAUTH_EXCHANGE: 'https://account-public-service-prod.ol.epicgames.com/account/api/oauth/exchange',
14
+ OAUTH_DEVICE_AUTH: 'https://account-public-service-prod.ol.epicgames.com/account/api/public/account',
15
+ OAUTH_DEVICE_CODE: 'https://account-public-service-prod.ol.epicgames.com/account/api/oauth/deviceAuthorization',
16
+ // INITIAL SETUP
17
+ INIT_EULA: 'https://eulatracking-public-service-prod-m.ol.epicgames.com/eulatracking/api/public/agreements/fn',
18
+ INIT_GRANTACCESS: 'https://fngw-mcp-gc-livefn.ol.epicgames.com/fortnite/api/game/v2/grant_access',
19
+ // XMPP
20
+ XMPP_SERVER: 'xmpp-service-prod.ol.epicgames.com',
21
+ EPIC_PROD_ENV: 'prod.ol.epicgames.com',
22
+ // EOS
23
+ EOS_STOMP: 'connect.epicgames.dev',
24
+ EOS_TOKEN: 'https://api.epicgames.dev/epic/oauth/v2/token',
25
+ EOS_TOKEN_INFO: 'https://api.epicgames.dev/epic/oauth/v2/tokenInfo',
26
+ EOS_TOKEN_REVOKE: 'https://api.epicgames.dev/epic/oauth/v2/revoke',
27
+ EOS_CHAT: 'https://api.epicgames.dev/epic/chat',
28
+ // BATTLE ROYALE
29
+ BR_STATS_V2: 'https://statsproxy-public-service-live.ol.epicgames.com/statsproxy/api/statsv2',
30
+ BR_SERVER_STATUS: 'https://lightswitch-public-service-prod06.ol.epicgames.com/lightswitch/api/service/bulk/status?serviceId=Fortnite',
31
+ BR_STORE: 'https://fngw-mcp-gc-livefn.ol.epicgames.com/fortnite/api/storefront/v2/catalog',
32
+ BR_STORE_KEYCHAIN: 'https://fngw-mcp-gc-livefn.ol.epicgames.com/fortnite/api/storefront/v2/keychain?numKeysDownloaded=0',
33
+ BR_NEWS: 'https://fortnitecontent-website-prod07.ol.epicgames.com/content/api/pages/fortnite-game',
34
+ BR_NEWS_MOTD: 'https://prm-dialogue-public-api-prod.edea.live.use1a.on.epicgames.com/api/v1/fortnite-br/surfaces/motd/target',
35
+ BR_EVENT_FLAGS: 'https://fngw-mcp-gc-livefn.ol.epicgames.com/fortnite/api/calendar/v1/timeline',
36
+ BR_SAC_SEARCH: 'https://payment-website-pci.ol.epicgames.com/affiliate/search-by-slug',
37
+ BR_SAC: 'https://affiliate-public-service-prod.ol.epicgames.com/affiliate/api/public/affiliates/slug',
38
+ BR_PARTY: 'https://party-service-prod.ol.epicgames.com/party/api/v1/Fortnite',
39
+ BR_TOURNAMENTS: 'https://events-public-service-live.ol.epicgames.com/api/v1/events/Fortnite/data',
40
+ BR_TOURNAMENTS_DOWNLOAD: 'https://events-public-service-live.ol.epicgames.com/api/v1/events/Fortnite/download',
41
+ BR_TOURNAMENT_WINDOW: 'https://events-public-service-live.ol.epicgames.com/api/v1/leaderboards/Fortnite',
42
+ BR_TOURNAMENT_TOKENS: 'https://events-public-service-live.ol.epicgames.com/api/v1/players/Fortnite/tokens',
43
+ BR_STREAM: 'https://fortnite-vod.akamaized.net',
44
+ BR_REPLAY: 'https://datastorage-public-service-live.ol.epicgames.com/api/v1/access/fnreplays/public',
45
+ BR_REPLAY_METADATA: 'https://datastorage-public-service-live.ol.epicgames.com/api/v1/access/fnreplaysmetadata/public',
46
+ BR_GIFT_ELIGIBILITY: 'https://fngw-mcp-gc-livefn.ol.epicgames.com/fortnite/api/storefront/v2/gift/check_eligibility',
47
+ // CREATIVE
48
+ CREATIVE_ISLAND_LOOKUP: 'https://links-public-service-live.ol.epicgames.com/links/api/fn/mnemonic',
49
+ CREATIVE_DISCOVERY: 'https://fn-service-discovery-live-public.ogs.live.on.epicgames.com/api/v1/discovery/surface',
50
+ // SAVE THE WORLD
51
+ STW_WORLD_INFO: 'https://fngw-mcp-gc-livefn.ol.epicgames.com/fortnite/api/game/v2/world/info',
52
+ // ACCOUNT
53
+ ACCOUNT_MULTIPLE: 'https://account-public-service-prod.ol.epicgames.com/account/api/public/account',
54
+ ACCOUNT_DISPLAYNAME: 'https://account-public-service-prod.ol.epicgames.com/account/api/public/account/displayName',
55
+ ACCOUNT_ID: 'https://account-public-service-prod.ol.epicgames.com/account/api/public/account',
56
+ ACCOUNT_EMAIL: 'https://account-public-service-prod.ol.epicgames.com/account/api/public/account/email',
57
+ ACCOUNT_SEARCH: 'https://user-search-service-prod.ol.epicgames.com/api/v1/search',
58
+ ACCOUNT_AVATAR: 'https://avatar-service-prod.identity.live.on.epicgames.com/v1/avatar',
59
+ ACCOUNT_GLOBAL_PROFILE: 'https://global-profile-service.game-social.epicgames.com/profiles',
60
+ MCP: 'https://fngw-mcp-gc-livefn.ol.epicgames.com/fortnite/api/game/v2/profile',
61
+ // FRIENDS
62
+ FRIENDS: 'https://friends-public-service-prod.ol.epicgames.com/friends/api/v1',
63
+ FRIEND_ADD: 'https://friends-public-service-prod.ol.epicgames.com/friends/api/public/friends',
64
+ FRIEND_DELETE: 'https://friends-public-service-prod.ol.epicgames.com/friends/api/v1',
65
+ FRIEND_BLOCK: 'https://friends-public-service-prod.ol.epicgames.com/friends/api/public/blocklist',
66
+ // SERVER STATUS
67
+ SERVER_STATUS_SUMMARY: 'https://ft308v428dv3.statuspage.io/api/v2/summary.json',
68
+ // GRAPH QL
69
+ GRAPHQL: 'https://graphql.epicgames.com/graphql',
70
+ });
71
+ //# sourceMappingURL=Endpoints.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Endpoints.js","sourceRoot":"","sources":["../../resources/Endpoints.ts"],"names":[],"mappings":";;AAAA,kBAAe,MAAM,CAAC,MAAM,CAAC;IAC3B,OAAO;IACP,gBAAgB,EAAE,6CAA6C;IAC/D,UAAU,EAAE,uCAAuC;IACnD,KAAK,EAAE,wCAAwC;IAC/C,cAAc,EAAE,2CAA2C;IAC3D,kBAAkB,EAAE,8EAA8E;IAClG,kBAAkB,EAAE,+EAA+E;IACnG,gBAAgB,EAAE,sFAAsF;IACxG,yBAAyB,EAAE,sFAAsF;IACjH,cAAc,EAAE,iFAAiF;IACjG,iBAAiB,EAAE,iFAAiF;IACpG,iBAAiB,EAAE,4FAA4F;IAE/G,gBAAgB;IAChB,SAAS,EAAE,mGAAmG;IAC9G,gBAAgB,EAAE,+EAA+E;IAEjG,OAAO;IACP,WAAW,EAAE,oCAAoC;IACjD,aAAa,EAAE,uBAAuB;IAEtC,MAAM;IACN,SAAS,EAAE,uBAAuB;IAClC,SAAS,EAAE,+CAA+C;IAC1D,cAAc,EAAE,mDAAmD;IACnE,gBAAgB,EAAE,gDAAgD;IAClE,QAAQ,EAAE,qCAAqC;IAE/C,gBAAgB;IAChB,WAAW,EAAE,gFAAgF;IAC7F,gBAAgB,EAAE,mHAAmH;IACrI,QAAQ,EAAE,gFAAgF;IAC1F,iBAAiB,EAAE,qGAAqG;IACxH,OAAO,EAAE,yFAAyF;IAClG,YAAY,EAAE,+GAA+G;IAC7H,cAAc,EAAE,+EAA+E;IAC/F,aAAa,EAAE,uEAAuE;IACtF,MAAM,EAAE,6FAA6F;IACrG,QAAQ,EAAE,mEAAmE;IAC7E,cAAc,EAAE,iFAAiF;IACjG,uBAAuB,EAAE,qFAAqF;IAC9G,oBAAoB,EAAE,kFAAkF;IACxG,oBAAoB,EAAE,oFAAoF;IAC1G,SAAS,EAAE,oCAAoC;IAC/C,SAAS,EAAE,yFAAyF;IACpG,kBAAkB,EAAE,iGAAiG;IACrH,mBAAmB,EAAE,+FAA+F;IAEpH,WAAW;IACX,sBAAsB,EAAE,0EAA0E;IAClG,kBAAkB,EAAE,6FAA6F;IAEjH,iBAAiB;IACjB,cAAc,EAAE,6EAA6E;IAE7F,UAAU;IACV,gBAAgB,EAAE,iFAAiF;IACnG,mBAAmB,EAAE,6FAA6F;IAClH,UAAU,EAAE,iFAAiF;IAC7F,aAAa,EAAE,uFAAuF;IACtG,cAAc,EAAE,iEAAiE;IACjF,cAAc,EAAE,sEAAsE;IACtF,sBAAsB,EAAE,mEAAmE;IAC3F,GAAG,EAAE,0EAA0E;IAE/E,UAAU;IACV,OAAO,EAAE,qEAAqE;IAC9E,UAAU,EAAE,iFAAiF;IAC7F,aAAa,EAAE,qEAAqE;IACpF,YAAY,EAAE,mFAAmF;IAEjG,gBAAgB;IAChB,qBAAqB,EAAE,wDAAwD;IAE/E,WAAW;IACX,OAAO,EAAE,uCAAuC;CACjD,CAAC,CAAC"}
@@ -0,0 +1,255 @@
1
+ [
2
+ {
3
+ "ExportType": "CurveTable",
4
+ "ExportValue": {
5
+ "UIMonsterRating": {
6
+ "InterpMode": "ERichCurveInterpMode::RCIM_Linear",
7
+ "Keys": [
8
+ {
9
+ "KeyTime": 0.0,
10
+ "KeyValue": 1.0
11
+ },
12
+ {
13
+ "KeyTime": 75.0,
14
+ "KeyValue": 2.0
15
+ },
16
+ {
17
+ "KeyTime": 165.0,
18
+ "KeyValue": 3.0
19
+ },
20
+ {
21
+ "KeyTime": 245.0,
22
+ "KeyValue": 4.0
23
+ },
24
+ {
25
+ "KeyTime": 395.0,
26
+ "KeyValue": 5.0
27
+ },
28
+ {
29
+ "KeyTime": 525.0,
30
+ "KeyValue": 6.0
31
+ },
32
+ {
33
+ "KeyTime": 780.0,
34
+ "KeyValue": 7.0
35
+ },
36
+ {
37
+ "KeyTime": 1020.0,
38
+ "KeyValue": 8.0
39
+ },
40
+ {
41
+ "KeyTime": 1280.0,
42
+ "KeyValue": 11.0
43
+ },
44
+ {
45
+ "KeyTime": 1600.0,
46
+ "KeyValue": 15.0
47
+ },
48
+ {
49
+ "KeyTime": 1965.0,
50
+ "KeyValue": 18.0
51
+ },
52
+ {
53
+ "KeyTime": 2540.0,
54
+ "KeyValue": 20.0
55
+ },
56
+ {
57
+ "KeyTime": 3155.0,
58
+ "KeyValue": 22.0
59
+ },
60
+ {
61
+ "KeyTime": 3765.0,
62
+ "KeyValue": 24.0
63
+ },
64
+ {
65
+ "KeyTime": 4310.0,
66
+ "KeyValue": 25.0
67
+ },
68
+ {
69
+ "KeyTime": 5095.0,
70
+ "KeyValue": 26.0
71
+ },
72
+ {
73
+ "KeyTime": 6060.0,
74
+ "KeyValue": 29.0
75
+ },
76
+ {
77
+ "KeyTime": 6980.0,
78
+ "KeyValue": 32.0
79
+ },
80
+ {
81
+ "KeyTime": 8140.0,
82
+ "KeyValue": 36.0
83
+ },
84
+ {
85
+ "KeyTime": 9440.0,
86
+ "KeyValue": 41.0
87
+ },
88
+ {
89
+ "KeyTime": 10695.0,
90
+ "KeyValue": 46.0
91
+ },
92
+ {
93
+ "KeyTime": 11890.0,
94
+ "KeyValue": 49.0
95
+ },
96
+ {
97
+ "KeyTime": 12990.0,
98
+ "KeyValue": 53.0
99
+ },
100
+ {
101
+ "KeyTime": 13615.0,
102
+ "KeyValue": 54.0
103
+ },
104
+ {
105
+ "KeyTime": 14285.0,
106
+ "KeyValue": 55.0
107
+ },
108
+ {
109
+ "KeyTime": 15335.0,
110
+ "KeyValue": 57.0
111
+ },
112
+ {
113
+ "KeyTime": 16845.0,
114
+ "KeyValue": 60.0
115
+ },
116
+ {
117
+ "KeyTime": 18445.0,
118
+ "KeyValue": 63.0
119
+ },
120
+ {
121
+ "KeyTime": 22255.0,
122
+ "KeyValue": 73.0
123
+ },
124
+ {
125
+ "KeyTime": 24030.0,
126
+ "KeyValue": 78.0
127
+ },
128
+ {
129
+ "KeyTime": 25260.0,
130
+ "KeyValue": 81.0
131
+ },
132
+ {
133
+ "KeyTime": 26480.0,
134
+ "KeyValue": 84.0
135
+ },
136
+ {
137
+ "KeyTime": 27145.0,
138
+ "KeyValue": 86.0
139
+ },
140
+ {
141
+ "KeyTime": 27870.0,
142
+ "KeyValue": 87.0
143
+ },
144
+ {
145
+ "KeyTime": 29230.0,
146
+ "KeyValue": 89.0
147
+ },
148
+ {
149
+ "KeyTime": 31500.0,
150
+ "KeyValue": 93.0
151
+ },
152
+ {
153
+ "KeyTime": 33410.0,
154
+ "KeyValue": 96.0
155
+ },
156
+ {
157
+ "KeyTime": 35640.0,
158
+ "KeyValue": 102.0
159
+ },
160
+ {
161
+ "KeyTime": 37840.0,
162
+ "KeyValue": 107.0
163
+ },
164
+ {
165
+ "KeyTime": 39840.0,
166
+ "KeyValue": 113.0
167
+ },
168
+ {
169
+ "KeyTime": 41500.0,
170
+ "KeyValue": 116.0
171
+ },
172
+ {
173
+ "KeyTime": 43055.0,
174
+ "KeyValue": 120.0
175
+ },
176
+ {
177
+ "KeyTime": 43870.0,
178
+ "KeyValue": 121.0
179
+ },
180
+ {
181
+ "KeyTime": 44590.0,
182
+ "KeyValue": 123.0
183
+ },
184
+ {
185
+ "KeyTime": 46050.0,
186
+ "KeyValue": 124.0
187
+ },
188
+ {
189
+ "KeyTime": 47685.0,
190
+ "KeyValue": 126.0
191
+ },
192
+ {
193
+ "KeyTime": 48780.0,
194
+ "KeyValue": 127.0
195
+ },
196
+ {
197
+ "KeyTime": 49550.0,
198
+ "KeyValue": 128.0
199
+ },
200
+ {
201
+ "KeyTime": 51500.0,
202
+ "KeyValue": 130.0
203
+ },
204
+ {
205
+ "KeyTime": 52125.0,
206
+ "KeyValue": 131.0
207
+ },
208
+ {
209
+ "KeyTime": 52590.0,
210
+ "KeyValue": 133.0
211
+ },
212
+ {
213
+ "KeyTime": 52990.0,
214
+ "KeyValue": 134.0
215
+ },
216
+ {
217
+ "KeyTime": 53455.0,
218
+ "KeyValue": 136.0
219
+ },
220
+ {
221
+ "KeyTime": 53855.0,
222
+ "KeyValue": 137.0
223
+ },
224
+ {
225
+ "KeyTime": 54320.0,
226
+ "KeyValue": 139.0
227
+ },
228
+ {
229
+ "KeyTime": 54720.0,
230
+ "KeyValue": 140.0
231
+ },
232
+ {
233
+ "KeyTime": 55180.0,
234
+ "KeyValue": 142.0
235
+ },
236
+ {
237
+ "KeyTime": 55615.0,
238
+ "KeyValue": 143.0
239
+ },
240
+ {
241
+ "KeyTime": 56095.0,
242
+ "KeyValue": 145.0
243
+ },
244
+ {
245
+ "KeyTime": 92765.0,
246
+ "KeyValue": 225.0
247
+ }
248
+ ],
249
+ "DefaultValue": 3.4028235e38,
250
+ "PreInfinityExtrap": "ERichCurveExtrapolation::RCCE_Constant",
251
+ "PostInfinityExtrap": "ERichCurveExtrapolation::RCCE_Constant"
252
+ }
253
+ }
254
+ }
255
+ ]
@@ -0,0 +1,111 @@
1
+ import CurveTable from '../src/util/CurveTable';
2
+ declare const _default: Readonly<{
3
+ homebaseRating: Readonly<CurveTable>;
4
+ baseItemRating: Readonly<{
5
+ default_c_t01: Readonly<CurveTable>;
6
+ default_c_t02: Readonly<CurveTable>;
7
+ default_c_t03: Readonly<CurveTable>;
8
+ default_c_t04: Readonly<CurveTable>;
9
+ default_c_t05: Readonly<CurveTable>;
10
+ default_c_t06: Readonly<CurveTable>;
11
+ default_uc_t01: Readonly<CurveTable>;
12
+ default_uc_t02: Readonly<CurveTable>;
13
+ default_uc_t03: Readonly<CurveTable>;
14
+ default_uc_t04: Readonly<CurveTable>;
15
+ default_uc_t05: Readonly<CurveTable>;
16
+ default_uc_t06: Readonly<CurveTable>;
17
+ default_r_t01: Readonly<CurveTable>;
18
+ default_r_t02: Readonly<CurveTable>;
19
+ default_r_t03: Readonly<CurveTable>;
20
+ default_r_t04: Readonly<CurveTable>;
21
+ default_r_t05: Readonly<CurveTable>;
22
+ default_r_t06: Readonly<CurveTable>;
23
+ default_vr_t01: Readonly<CurveTable>;
24
+ default_vr_t02: Readonly<CurveTable>;
25
+ default_vr_t03: Readonly<CurveTable>;
26
+ default_vr_t04: Readonly<CurveTable>;
27
+ default_vr_t05: Readonly<CurveTable>;
28
+ default_vr_t06: Readonly<CurveTable>;
29
+ default_sr_t01: Readonly<CurveTable>;
30
+ default_sr_t02: Readonly<CurveTable>;
31
+ default_sr_t03: Readonly<CurveTable>;
32
+ default_sr_t04: Readonly<CurveTable>;
33
+ default_sr_t05: Readonly<CurveTable>;
34
+ default_sr_t06: Readonly<CurveTable>;
35
+ default_ur_t01: Readonly<CurveTable>;
36
+ default_ur_t02: Readonly<CurveTable>;
37
+ default_ur_t03: Readonly<CurveTable>;
38
+ default_ur_t04: Readonly<CurveTable>;
39
+ default_ur_t05: Readonly<CurveTable>;
40
+ default_ur_t06: Readonly<CurveTable>;
41
+ }>;
42
+ survivorItemRating: Readonly<{
43
+ default_c_t01: Readonly<CurveTable>;
44
+ default_c_t02: Readonly<CurveTable>;
45
+ default_c_t03: Readonly<CurveTable>;
46
+ default_c_t04: Readonly<CurveTable>;
47
+ default_c_t05: Readonly<CurveTable>;
48
+ default_c_t06: Readonly<CurveTable>;
49
+ default_uc_t01: Readonly<CurveTable>;
50
+ default_uc_t02: Readonly<CurveTable>;
51
+ default_uc_t03: Readonly<CurveTable>;
52
+ default_uc_t04: Readonly<CurveTable>;
53
+ default_uc_t05: Readonly<CurveTable>;
54
+ default_uc_t06: Readonly<CurveTable>;
55
+ default_r_t01: Readonly<CurveTable>;
56
+ default_r_t02: Readonly<CurveTable>;
57
+ default_r_t03: Readonly<CurveTable>;
58
+ default_r_t04: Readonly<CurveTable>;
59
+ default_r_t05: Readonly<CurveTable>;
60
+ default_r_t06: Readonly<CurveTable>;
61
+ default_vr_t01: Readonly<CurveTable>;
62
+ default_vr_t02: Readonly<CurveTable>;
63
+ default_vr_t03: Readonly<CurveTable>;
64
+ default_vr_t04: Readonly<CurveTable>;
65
+ default_vr_t05: Readonly<CurveTable>;
66
+ default_vr_t06: Readonly<CurveTable>;
67
+ default_sr_t01: Readonly<CurveTable>;
68
+ default_sr_t02: Readonly<CurveTable>;
69
+ default_sr_t03: Readonly<CurveTable>;
70
+ default_sr_t04: Readonly<CurveTable>;
71
+ default_sr_t05: Readonly<CurveTable>;
72
+ default_sr_t06: Readonly<CurveTable>;
73
+ default_ur_t01: Readonly<CurveTable>;
74
+ default_ur_t02: Readonly<CurveTable>;
75
+ default_ur_t03: Readonly<CurveTable>;
76
+ default_ur_t04: Readonly<CurveTable>;
77
+ default_ur_t05: Readonly<CurveTable>;
78
+ default_ur_t06: Readonly<CurveTable>;
79
+ manager_c_t01: Readonly<CurveTable>;
80
+ manager_c_t02: Readonly<CurveTable>;
81
+ manager_c_t03: Readonly<CurveTable>;
82
+ manager_c_t04: Readonly<CurveTable>;
83
+ manager_c_t05: Readonly<CurveTable>;
84
+ manager_c_t06: Readonly<CurveTable>;
85
+ manager_uc_t01: Readonly<CurveTable>;
86
+ manager_uc_t02: Readonly<CurveTable>;
87
+ manager_uc_t03: Readonly<CurveTable>;
88
+ manager_uc_t04: Readonly<CurveTable>;
89
+ manager_uc_t05: Readonly<CurveTable>;
90
+ manager_uc_t06: Readonly<CurveTable>;
91
+ manager_r_t01: Readonly<CurveTable>;
92
+ manager_r_t02: Readonly<CurveTable>;
93
+ manager_r_t03: Readonly<CurveTable>;
94
+ manager_r_t04: Readonly<CurveTable>;
95
+ manager_r_t05: Readonly<CurveTable>;
96
+ manager_r_t06: Readonly<CurveTable>;
97
+ manager_vr_t01: Readonly<CurveTable>;
98
+ manager_vr_t02: Readonly<CurveTable>;
99
+ manager_vr_t03: Readonly<CurveTable>;
100
+ manager_vr_t04: Readonly<CurveTable>;
101
+ manager_vr_t05: Readonly<CurveTable>;
102
+ manager_vr_t06: Readonly<CurveTable>;
103
+ manager_sr_t01: Readonly<CurveTable>;
104
+ manager_sr_t02: Readonly<CurveTable>;
105
+ manager_sr_t03: Readonly<CurveTable>;
106
+ manager_sr_t04: Readonly<CurveTable>;
107
+ manager_sr_t05: Readonly<CurveTable>;
108
+ manager_sr_t06: Readonly<CurveTable>;
109
+ }>;
110
+ }>;
111
+ export default _default;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ const HomebaseRatingMapping_json_1 = tslib_1.__importDefault(require("./HomebaseRatingMapping.json"));
5
+ const BaseItemRating_json_1 = tslib_1.__importDefault(require("./BaseItemRating.json"));
6
+ const SurvivorItemRating_json_1 = tslib_1.__importDefault(require("./SurvivorItemRating.json"));
7
+ const CurveTable_1 = tslib_1.__importDefault(require("../src/util/CurveTable"));
8
+ function mapCurveTables(struc) {
9
+ const entries1 = Object.entries(struc);
10
+ const entries2 = entries1.map(([k, v]) => [k.toLowerCase(), Object.freeze(new CurveTable_1.default(v.Keys))]);
11
+ // False alarm: eslint claims K is used before it's defined, which it obviously isn't.
12
+ // eslint-disable-next-line no-use-before-define
13
+ const obj = Object.fromEntries(entries2);
14
+ return Object.freeze(obj);
15
+ }
16
+ exports.default = Object.freeze({
17
+ homebaseRating: Object.freeze(new CurveTable_1.default(HomebaseRatingMapping_json_1.default[0].ExportValue.UIMonsterRating.Keys)),
18
+ baseItemRating: mapCurveTables(BaseItemRating_json_1.default[0].ExportValue),
19
+ survivorItemRating: mapCurveTables(SurvivorItemRating_json_1.default[0].ExportValue),
20
+ });
21
+ //# sourceMappingURL=PowerLevelCurves.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PowerLevelCurves.js","sourceRoot":"","sources":["../../resources/PowerLevelCurves.ts"],"names":[],"mappings":";;;AAAA,sGAAiE;AACjE,wFAAmD;AACnD,gGAA2D;AAC3D,gFAAgD;AAGhD,SAAS,cAAc,CAAqD,KAAQ;IAClF,MAAM,QAAQ,GAAG,MAAM,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC;IACvC,MAAM,QAAQ,GAAG,QAAQ,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,WAAW,EAAE,EAAE,MAAM,CAAC,MAAM,CAAC,IAAI,oBAAU,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC;IACpG,sFAAsF;IACtF,gDAAgD;IAChD,MAAM,GAAG,GAAG,MAAM,CAAC,WAAW,CAAC,QAAQ,CAAsE,CAAC;IAC9G,OAAO,MAAM,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC;AAC5B,CAAC;AAED,kBAAe,MAAM,CAAC,MAAM,CAAC;IAC3B,cAAc,EAAE,MAAM,CAAC,MAAM,CAAC,IAAI,oBAAU,CAAC,oCAAqB,CAAC,CAAC,CAAE,CAAC,WAAW,CAAC,eAAe,CAAC,IAAI,CAAC,CAAC;IACzG,cAAc,EAAE,cAAc,CAAC,6BAAc,CAAC,CAAC,CAAE,CAAC,WAAW,CAAC;IAC9D,kBAAkB,EAAE,cAAc,CAAC,iCAAkB,CAAC,CAAC,CAAE,CAAC,WAAW,CAAC;CACvE,CAAC,CAAC"}