@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.
- package/LICENSE +21 -0
- package/README.md +68 -0
- package/dist/enums/Enums.d.ts +251 -0
- package/dist/enums/Enums.js +202 -0
- package/dist/enums/Enums.js.map +1 -0
- package/dist/index.d.ts +92 -0
- package/dist/index.js +194 -0
- package/dist/index.js.map +1 -0
- package/dist/resources/AuthClients.d.ts +39 -0
- package/dist/resources/AuthClients.js +41 -0
- package/dist/resources/AuthClients.js.map +1 -0
- package/dist/resources/BaseItemRating.json +5203 -0
- package/dist/resources/Endpoints.d.ts +58 -0
- package/dist/resources/Endpoints.js +71 -0
- package/dist/resources/Endpoints.js.map +1 -0
- package/dist/resources/HomebaseRatingMapping.json +255 -0
- package/dist/resources/PowerLevelCurves.d.ts +111 -0
- package/dist/resources/PowerLevelCurves.js +21 -0
- package/dist/resources/PowerLevelCurves.js.map +1 -0
- package/dist/resources/SurvivorItemRating.json +9343 -0
- package/dist/resources/constants.d.ts +2 -0
- package/dist/resources/constants.js +11 -0
- package/dist/resources/constants.js.map +1 -0
- package/dist/resources/defaultPartyMemberMeta.json +28 -0
- package/dist/resources/defaultPartyMeta.json +38 -0
- package/dist/resources/enums.d.ts +12 -0
- package/dist/resources/enums.js +18 -0
- package/dist/resources/enums.js.map +1 -0
- package/dist/resources/httpResponses.d.ts +773 -0
- package/dist/resources/httpResponses.js +3 -0
- package/dist/resources/httpResponses.js.map +1 -0
- package/dist/resources/structs.d.ts +1310 -0
- package/dist/resources/structs.js +3 -0
- package/dist/resources/structs.js.map +1 -0
- package/dist/src/Base.d.ts +15 -0
- package/dist/src/Base.js +15 -0
- package/dist/src/Base.js.map +1 -0
- package/dist/src/Client.d.ts +341 -0
- package/dist/src/Client.js +1043 -0
- package/dist/src/Client.js.map +1 -0
- package/dist/src/auth/Auth.d.ts +66 -0
- package/dist/src/auth/Auth.js +249 -0
- package/dist/src/auth/Auth.js.map +1 -0
- package/dist/src/auth/AuthSession.d.ts +41 -0
- package/dist/src/auth/AuthSession.js +25 -0
- package/dist/src/auth/AuthSession.js.map +1 -0
- package/dist/src/auth/EOSAuthSession.d.ts +19 -0
- package/dist/src/auth/EOSAuthSession.js +80 -0
- package/dist/src/auth/EOSAuthSession.js.map +1 -0
- package/dist/src/auth/FortniteAuthSession.d.ts +53 -0
- package/dist/src/auth/FortniteAuthSession.js +107 -0
- package/dist/src/auth/FortniteAuthSession.js.map +1 -0
- package/dist/src/auth/FortniteClientCredentialsAuthSession.d.ts +18 -0
- package/dist/src/auth/FortniteClientCredentialsAuthSession.js +88 -0
- package/dist/src/auth/FortniteClientCredentialsAuthSession.js.map +1 -0
- package/dist/src/auth/LauncherAuthSession.d.ts +23 -0
- package/dist/src/auth/LauncherAuthSession.js +120 -0
- package/dist/src/auth/LauncherAuthSession.js.map +1 -0
- package/dist/src/exceptions/AuthenticationMissingError.d.ts +15 -0
- package/dist/src/exceptions/AuthenticationMissingError.js +18 -0
- package/dist/src/exceptions/AuthenticationMissingError.js.map +1 -0
- package/dist/src/exceptions/CreativeIslandNotFoundError.d.ts +14 -0
- package/dist/src/exceptions/CreativeIslandNotFoundError.js +18 -0
- package/dist/src/exceptions/CreativeIslandNotFoundError.js.map +1 -0
- package/dist/src/exceptions/CreatorCodeNotFoundError.d.ts +14 -0
- package/dist/src/exceptions/CreatorCodeNotFoundError.js +18 -0
- package/dist/src/exceptions/CreatorCodeNotFoundError.js.map +1 -0
- package/dist/src/exceptions/DuplicateFriendshipError.d.ts +14 -0
- package/dist/src/exceptions/DuplicateFriendshipError.js +18 -0
- package/dist/src/exceptions/DuplicateFriendshipError.js.map +1 -0
- package/dist/src/exceptions/EpicgamesAPIError.d.ts +42 -0
- package/dist/src/exceptions/EpicgamesAPIError.js +27 -0
- package/dist/src/exceptions/EpicgamesAPIError.js.map +1 -0
- package/dist/src/exceptions/EventTimeoutError.d.ts +19 -0
- package/dist/src/exceptions/EventTimeoutError.js +20 -0
- package/dist/src/exceptions/EventTimeoutError.js.map +1 -0
- package/dist/src/exceptions/FriendNotFoundError.d.ts +14 -0
- package/dist/src/exceptions/FriendNotFoundError.js +18 -0
- package/dist/src/exceptions/FriendNotFoundError.js.map +1 -0
- package/dist/src/exceptions/FriendshipRequestAlreadySentError.d.ts +14 -0
- package/dist/src/exceptions/FriendshipRequestAlreadySentError.js +18 -0
- package/dist/src/exceptions/FriendshipRequestAlreadySentError.js.map +1 -0
- package/dist/src/exceptions/InviteeFriendshipRequestLimitExceededError.d.ts +14 -0
- package/dist/src/exceptions/InviteeFriendshipRequestLimitExceededError.js +18 -0
- package/dist/src/exceptions/InviteeFriendshipRequestLimitExceededError.js.map +1 -0
- package/dist/src/exceptions/InviteeFriendshipSettingsError.d.ts +14 -0
- package/dist/src/exceptions/InviteeFriendshipSettingsError.js +18 -0
- package/dist/src/exceptions/InviteeFriendshipSettingsError.js.map +1 -0
- package/dist/src/exceptions/InviteeFriendshipsLimitExceededError.d.ts +14 -0
- package/dist/src/exceptions/InviteeFriendshipsLimitExceededError.js +18 -0
- package/dist/src/exceptions/InviteeFriendshipsLimitExceededError.js.map +1 -0
- package/dist/src/exceptions/InviterFriendshipsLimitExceededError.d.ts +14 -0
- package/dist/src/exceptions/InviterFriendshipsLimitExceededError.js +18 -0
- package/dist/src/exceptions/InviterFriendshipsLimitExceededError.js.map +1 -0
- package/dist/src/exceptions/MatchNotFoundError.d.ts +14 -0
- package/dist/src/exceptions/MatchNotFoundError.js +18 -0
- package/dist/src/exceptions/MatchNotFoundError.js.map +1 -0
- package/dist/src/exceptions/OfferNotFoundError.d.ts +14 -0
- package/dist/src/exceptions/OfferNotFoundError.js +18 -0
- package/dist/src/exceptions/OfferNotFoundError.js.map +1 -0
- package/dist/src/exceptions/PartyAlreadyJoinedError.d.ts +7 -0
- package/dist/src/exceptions/PartyAlreadyJoinedError.js +14 -0
- package/dist/src/exceptions/PartyAlreadyJoinedError.js.map +1 -0
- package/dist/src/exceptions/PartyInvitationExpiredError.d.ts +7 -0
- package/dist/src/exceptions/PartyInvitationExpiredError.js +14 -0
- package/dist/src/exceptions/PartyInvitationExpiredError.js.map +1 -0
- package/dist/src/exceptions/PartyMaxSizeReachedError.d.ts +7 -0
- package/dist/src/exceptions/PartyMaxSizeReachedError.js +14 -0
- package/dist/src/exceptions/PartyMaxSizeReachedError.js.map +1 -0
- package/dist/src/exceptions/PartyMemberNotFoundError.d.ts +14 -0
- package/dist/src/exceptions/PartyMemberNotFoundError.js +18 -0
- package/dist/src/exceptions/PartyMemberNotFoundError.js.map +1 -0
- package/dist/src/exceptions/PartyNotFoundError.d.ts +7 -0
- package/dist/src/exceptions/PartyNotFoundError.js +14 -0
- package/dist/src/exceptions/PartyNotFoundError.js.map +1 -0
- package/dist/src/exceptions/PartyPermissionError.d.ts +7 -0
- package/dist/src/exceptions/PartyPermissionError.js +14 -0
- package/dist/src/exceptions/PartyPermissionError.js.map +1 -0
- package/dist/src/exceptions/SendMessageError.d.ts +27 -0
- package/dist/src/exceptions/SendMessageError.js +21 -0
- package/dist/src/exceptions/SendMessageError.js.map +1 -0
- package/dist/src/exceptions/StatsPrivacyError.d.ts +14 -0
- package/dist/src/exceptions/StatsPrivacyError.js +18 -0
- package/dist/src/exceptions/StatsPrivacyError.js.map +1 -0
- package/dist/src/exceptions/StompConnectionError.d.ts +14 -0
- package/dist/src/exceptions/StompConnectionError.js +18 -0
- package/dist/src/exceptions/StompConnectionError.js.map +1 -0
- package/dist/src/exceptions/UserNotFoundError.d.ts +14 -0
- package/dist/src/exceptions/UserNotFoundError.js +18 -0
- package/dist/src/exceptions/UserNotFoundError.js.map +1 -0
- package/dist/src/exceptions/XMPPConnectionError.d.ts +19 -0
- package/dist/src/exceptions/XMPPConnectionError.js +19 -0
- package/dist/src/exceptions/XMPPConnectionError.js.map +1 -0
- package/dist/src/exceptions/XMPPConnectionTimeoutError.d.ts +14 -0
- package/dist/src/exceptions/XMPPConnectionTimeoutError.js +18 -0
- package/dist/src/exceptions/XMPPConnectionTimeoutError.js.map +1 -0
- package/dist/src/http/HTTP.d.ts +40 -0
- package/dist/src/http/HTTP.js +124 -0
- package/dist/src/http/HTTP.js.map +1 -0
- package/dist/src/managers/ChatManager.d.ts +27 -0
- package/dist/src/managers/ChatManager.js +71 -0
- package/dist/src/managers/ChatManager.js.map +1 -0
- package/dist/src/managers/FriendManager.d.ts +66 -0
- package/dist/src/managers/FriendManager.js +175 -0
- package/dist/src/managers/FriendManager.js.map +1 -0
- package/dist/src/managers/STWManager.d.ts +29 -0
- package/dist/src/managers/STWManager.js +80 -0
- package/dist/src/managers/STWManager.js.map +1 -0
- package/dist/src/managers/TournamentManager.d.ts +51 -0
- package/dist/src/managers/TournamentManager.js +182 -0
- package/dist/src/managers/TournamentManager.js.map +1 -0
- package/dist/src/managers/UserManager.d.ts +78 -0
- package/dist/src/managers/UserManager.js +216 -0
- package/dist/src/managers/UserManager.js.map +1 -0
- package/dist/src/stomp/EOSConnect.d.ts +43 -0
- package/dist/src/stomp/EOSConnect.js +175 -0
- package/dist/src/stomp/EOSConnect.js.map +1 -0
- package/dist/src/structures/Avatar.d.ts +27 -0
- package/dist/src/structures/Avatar.js +22 -0
- package/dist/src/structures/Avatar.js.map +1 -0
- package/dist/src/structures/BaseMessage.d.ts +34 -0
- package/dist/src/structures/BaseMessage.js +22 -0
- package/dist/src/structures/BaseMessage.js.map +1 -0
- package/dist/src/structures/CreatorCode.d.ts +31 -0
- package/dist/src/structures/CreatorCode.js +22 -0
- package/dist/src/structures/CreatorCode.js.map +1 -0
- package/dist/src/structures/EpicgamesServerStatus.d.ts +52 -0
- package/dist/src/structures/EpicgamesServerStatus.js +31 -0
- package/dist/src/structures/EpicgamesServerStatus.js.map +1 -0
- package/dist/src/structures/EpicgamesServerStatusComponent.d.ts +67 -0
- package/dist/src/structures/EpicgamesServerStatusComponent.js +37 -0
- package/dist/src/structures/EpicgamesServerStatusComponent.js.map +1 -0
- package/dist/src/structures/EpicgamesServerStatusIncident.d.ts +58 -0
- package/dist/src/structures/EpicgamesServerStatusIncident.js +36 -0
- package/dist/src/structures/EpicgamesServerStatusIncident.js.map +1 -0
- package/dist/src/structures/EpicgamesServerStatusScheduledMainteance.d.ts +21 -0
- package/dist/src/structures/EpicgamesServerStatusScheduledMainteance.js +20 -0
- package/dist/src/structures/EpicgamesServerStatusScheduledMainteance.js.map +1 -0
- package/dist/src/structures/EventTokens.d.ts +32 -0
- package/dist/src/structures/EventTokens.js +45 -0
- package/dist/src/structures/EventTokens.js.map +1 -0
- package/dist/src/structures/FortniteServerStatus.d.ts +46 -0
- package/dist/src/structures/FortniteServerStatus.js +26 -0
- package/dist/src/structures/FortniteServerStatus.js.map +1 -0
- package/dist/src/structures/GlobalProfile.d.ts +36 -0
- package/dist/src/structures/GlobalProfile.js +25 -0
- package/dist/src/structures/GlobalProfile.js.map +1 -0
- package/dist/src/structures/Image.d.ts +36 -0
- package/dist/src/structures/Image.js +38 -0
- package/dist/src/structures/Image.js.map +1 -0
- package/dist/src/structures/NewsMessage.d.ts +56 -0
- package/dist/src/structures/NewsMessage.js +45 -0
- package/dist/src/structures/NewsMessage.js.map +1 -0
- package/dist/src/structures/NewsMessageVideo.d.ts +47 -0
- package/dist/src/structures/NewsMessageVideo.js +32 -0
- package/dist/src/structures/NewsMessageVideo.js.map +1 -0
- package/dist/src/structures/RadioStation.d.ts +31 -0
- package/dist/src/structures/RadioStation.js +33 -0
- package/dist/src/structures/RadioStation.js.map +1 -0
- package/dist/src/structures/Stats.d.ts +45 -0
- package/dist/src/structures/Stats.js +109 -0
- package/dist/src/structures/Stats.js.map +1 -0
- package/dist/src/structures/Tournament.d.ts +86 -0
- package/dist/src/structures/Tournament.js +64 -0
- package/dist/src/structures/Tournament.js.map +1 -0
- package/dist/src/structures/TournamentWindow.d.ts +124 -0
- package/dist/src/structures/TournamentWindow.js +52 -0
- package/dist/src/structures/TournamentWindow.js.map +1 -0
- package/dist/src/structures/friend/BaseFriendMessage.d.ts +32 -0
- package/dist/src/structures/friend/BaseFriendMessage.js +28 -0
- package/dist/src/structures/friend/BaseFriendMessage.js.map +1 -0
- package/dist/src/structures/friend/BasePendingFriend.d.ts +22 -0
- package/dist/src/structures/friend/BasePendingFriend.js +22 -0
- package/dist/src/structures/friend/BasePendingFriend.js.map +1 -0
- package/dist/src/structures/friend/Friend.d.ts +106 -0
- package/dist/src/structures/friend/Friend.js +97 -0
- package/dist/src/structures/friend/Friend.js.map +1 -0
- package/dist/src/structures/friend/FriendPresence.d.ts +84 -0
- package/dist/src/structures/friend/FriendPresence.js +48 -0
- package/dist/src/structures/friend/FriendPresence.js.map +1 -0
- package/dist/src/structures/friend/IncomingPendingFriend.d.ts +27 -0
- package/dist/src/structures/friend/IncomingPendingFriend.js +36 -0
- package/dist/src/structures/friend/IncomingPendingFriend.js.map +1 -0
- package/dist/src/structures/friend/OutgoingPendingFriend.d.ts +17 -0
- package/dist/src/structures/friend/OutgoingPendingFriend.js +24 -0
- package/dist/src/structures/friend/OutgoingPendingFriend.js.map +1 -0
- package/dist/src/structures/friend/ReceivedFriendMessage.d.ts +27 -0
- package/dist/src/structures/friend/ReceivedFriendMessage.js +27 -0
- package/dist/src/structures/friend/ReceivedFriendMessage.js.map +1 -0
- package/dist/src/structures/friend/SentFriendMessage.d.ts +21 -0
- package/dist/src/structures/friend/SentFriendMessage.js +19 -0
- package/dist/src/structures/friend/SentFriendMessage.js.map +1 -0
- package/dist/src/structures/party/BasePartyInvitation.d.ts +48 -0
- package/dist/src/structures/party/BasePartyInvitation.js +33 -0
- package/dist/src/structures/party/BasePartyInvitation.js.map +1 -0
- package/dist/src/structures/party/BasePartyJoinRequest.d.ts +37 -0
- package/dist/src/structures/party/BasePartyJoinRequest.js +30 -0
- package/dist/src/structures/party/BasePartyJoinRequest.js.map +1 -0
- package/dist/src/structures/party/ClientParty.d.ts +162 -0
- package/dist/src/structures/party/ClientParty.js +412 -0
- package/dist/src/structures/party/ClientParty.js.map +1 -0
- package/dist/src/structures/party/ClientPartyMember.d.ts +144 -0
- package/dist/src/structures/party/ClientPartyMember.js +463 -0
- package/dist/src/structures/party/ClientPartyMember.js.map +1 -0
- package/dist/src/structures/party/ClientPartyMemberMeta.d.ts +18 -0
- package/dist/src/structures/party/ClientPartyMemberMeta.js +54 -0
- package/dist/src/structures/party/ClientPartyMemberMeta.js.map +1 -0
- package/dist/src/structures/party/ClientPartyMeta.d.ts +23 -0
- package/dist/src/structures/party/ClientPartyMeta.js +59 -0
- package/dist/src/structures/party/ClientPartyMeta.js.map +1 -0
- package/dist/src/structures/party/Party.d.ts +95 -0
- package/dist/src/structures/party/Party.js +200 -0
- package/dist/src/structures/party/Party.js.map +1 -0
- package/dist/src/structures/party/PartyChat.d.ts +73 -0
- package/dist/src/structures/party/PartyChat.js +76 -0
- package/dist/src/structures/party/PartyChat.js.map +1 -0
- package/dist/src/structures/party/PartyMember.d.ts +139 -0
- package/dist/src/structures/party/PartyMember.js +201 -0
- package/dist/src/structures/party/PartyMember.js.map +1 -0
- package/dist/src/structures/party/PartyMemberConfirmation.d.ts +43 -0
- package/dist/src/structures/party/PartyMemberConfirmation.js +53 -0
- package/dist/src/structures/party/PartyMemberConfirmation.js.map +1 -0
- package/dist/src/structures/party/PartyMemberMeta.d.ts +76 -0
- package/dist/src/structures/party/PartyMemberMeta.js +145 -0
- package/dist/src/structures/party/PartyMemberMeta.js.map +1 -0
- package/dist/src/structures/party/PartyMessage.d.ts +30 -0
- package/dist/src/structures/party/PartyMessage.js +28 -0
- package/dist/src/structures/party/PartyMessage.js.map +1 -0
- package/dist/src/structures/party/PartyMeta.d.ts +24 -0
- package/dist/src/structures/party/PartyMeta.js +43 -0
- package/dist/src/structures/party/PartyMeta.js.map +1 -0
- package/dist/src/structures/party/PresenceParty.d.ts +66 -0
- package/dist/src/structures/party/PresenceParty.js +49 -0
- package/dist/src/structures/party/PresenceParty.js.map +1 -0
- package/dist/src/structures/party/ReceivedPartyInvitation.d.ts +33 -0
- package/dist/src/structures/party/ReceivedPartyInvitation.js +54 -0
- package/dist/src/structures/party/ReceivedPartyInvitation.js.map +1 -0
- package/dist/src/structures/party/ReceivedPartyJoinRequest.d.ts +26 -0
- package/dist/src/structures/party/ReceivedPartyJoinRequest.js +31 -0
- package/dist/src/structures/party/ReceivedPartyJoinRequest.js.map +1 -0
- package/dist/src/structures/party/SentPartyInvitation.d.ts +27 -0
- package/dist/src/structures/party/SentPartyInvitation.js +39 -0
- package/dist/src/structures/party/SentPartyInvitation.js.map +1 -0
- package/dist/src/structures/party/SentPartyJoinRequest.d.ts +19 -0
- package/dist/src/structures/party/SentPartyJoinRequest.js +22 -0
- package/dist/src/structures/party/SentPartyJoinRequest.js.map +1 -0
- package/dist/src/structures/stw/STWHero.d.ts +61 -0
- package/dist/src/structures/stw/STWHero.js +38 -0
- package/dist/src/structures/stw/STWHero.js.map +1 -0
- package/dist/src/structures/stw/STWHeroLoadout.d.ts +44 -0
- package/dist/src/structures/stw/STWHeroLoadout.js +34 -0
- package/dist/src/structures/stw/STWHeroLoadout.js.map +1 -0
- package/dist/src/structures/stw/STWItem.d.ts +31 -0
- package/dist/src/structures/stw/STWItem.js +23 -0
- package/dist/src/structures/stw/STWItem.js.map +1 -0
- package/dist/src/structures/stw/STWLocker.d.ts +32 -0
- package/dist/src/structures/stw/STWLocker.js +26 -0
- package/dist/src/structures/stw/STWLocker.js.map +1 -0
- package/dist/src/structures/stw/STWMeleeWeaponSchematic.d.ts +14 -0
- package/dist/src/structures/stw/STWMeleeWeaponSchematic.js +15 -0
- package/dist/src/structures/stw/STWMeleeWeaponSchematic.js.map +1 -0
- package/dist/src/structures/stw/STWNewsMessage.d.ts +42 -0
- package/dist/src/structures/stw/STWNewsMessage.js +27 -0
- package/dist/src/structures/stw/STWNewsMessage.js.map +1 -0
- package/dist/src/structures/stw/STWProfile.d.ts +132 -0
- package/dist/src/structures/stw/STWProfile.js +283 -0
- package/dist/src/structures/stw/STWProfile.js.map +1 -0
- package/dist/src/structures/stw/STWRangedWeaponSchematic.d.ts +14 -0
- package/dist/src/structures/stw/STWRangedWeaponSchematic.js +15 -0
- package/dist/src/structures/stw/STWRangedWeaponSchematic.js.map +1 -0
- package/dist/src/structures/stw/STWResource.d.ts +27 -0
- package/dist/src/structures/stw/STWResource.js +22 -0
- package/dist/src/structures/stw/STWResource.js.map +1 -0
- package/dist/src/structures/stw/STWSchematic.d.ts +72 -0
- package/dist/src/structures/stw/STWSchematic.js +40 -0
- package/dist/src/structures/stw/STWSchematic.js.map +1 -0
- package/dist/src/structures/stw/STWStats.d.ts +103 -0
- package/dist/src/structures/stw/STWStats.js +85 -0
- package/dist/src/structures/stw/STWStats.js.map +1 -0
- package/dist/src/structures/stw/STWSurvivor.d.ts +104 -0
- package/dist/src/structures/stw/STWSurvivor.js +76 -0
- package/dist/src/structures/stw/STWSurvivor.js.map +1 -0
- package/dist/src/structures/stw/STWTeamPerk.d.ts +19 -0
- package/dist/src/structures/stw/STWTeamPerk.js +20 -0
- package/dist/src/structures/stw/STWTeamPerk.js.map +1 -0
- package/dist/src/structures/stw/STWTrapSchematic.d.ts +15 -0
- package/dist/src/structures/stw/STWTrapSchematic.js +16 -0
- package/dist/src/structures/stw/STWTrapSchematic.js.map +1 -0
- package/dist/src/structures/stw/STWWeaponSchematic.d.ts +15 -0
- package/dist/src/structures/stw/STWWeaponSchematic.js +16 -0
- package/dist/src/structures/stw/STWWeaponSchematic.js.map +1 -0
- package/dist/src/structures/user/BlockedUser.d.ts +13 -0
- package/dist/src/structures/user/BlockedUser.js +19 -0
- package/dist/src/structures/user/BlockedUser.js.map +1 -0
- package/dist/src/structures/user/ClientUser.d.ts +78 -0
- package/dist/src/structures/user/ClientUser.js +34 -0
- package/dist/src/structures/user/ClientUser.js.map +1 -0
- package/dist/src/structures/user/User.d.ts +98 -0
- package/dist/src/structures/user/User.js +130 -0
- package/dist/src/structures/user/User.js.map +1 -0
- package/dist/src/structures/user/UserSearchResult.d.ts +31 -0
- package/dist/src/structures/user/UserSearchResult.js +23 -0
- package/dist/src/structures/user/UserSearchResult.js.map +1 -0
- package/dist/src/util/AsyncLock.d.ts +28 -0
- package/dist/src/util/AsyncLock.js +44 -0
- package/dist/src/util/AsyncLock.js.map +1 -0
- package/dist/src/util/BinaryWriter.d.ts +79 -0
- package/dist/src/util/BinaryWriter.js +136 -0
- package/dist/src/util/BinaryWriter.js.map +1 -0
- package/dist/src/util/CurveTable.d.ts +24 -0
- package/dist/src/util/CurveTable.js +37 -0
- package/dist/src/util/CurveTable.js.map +1 -0
- package/dist/src/util/Meta.d.ts +41 -0
- package/dist/src/util/Meta.js +73 -0
- package/dist/src/util/Meta.js.map +1 -0
- package/dist/src/util/Util.d.ts +162 -0
- package/dist/src/util/Util.js +539 -0
- package/dist/src/util/Util.js.map +1 -0
- package/dist/src/xmpp/XMPP.d.ts +100 -0
- package/dist/src/xmpp/XMPP.js +702 -0
- package/dist/src/xmpp/XMPP.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- 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"}
|