├── .editorconfig ├── .eslintrc.js ├── .gitignore ├── LICENSE.MD ├── README.MD ├── enums └── SubGame.js ├── index.js ├── package.json ├── resources └── Endpoint.js └── src ├── Client ├── Matchmaking.js └── index.js ├── Http.js ├── Inventory ├── Item.js ├── Items │ ├── AthenaBackpack.js │ ├── AthenaCharacter.js │ ├── AthenaDance.js │ ├── AthenaGlider.js │ ├── AthenaItemWrap.js │ ├── AthenaLoadingScreen.js │ ├── AthenaMusicPack.js │ ├── AthenaPickaxe.js │ ├── AthenaSkyDiveContrail.js │ ├── ChallengeBundle.js │ ├── ChallengeBundleSchedule.js │ ├── ConditionalAction.js │ ├── Currency.js │ ├── EventPurchaseTracker.js │ ├── GiftBox.js │ ├── HomebaseBannerColor.js │ ├── HomebaseBannerIcon.js │ ├── Quest.js │ └── Token.js └── index.js ├── Party ├── Member.js ├── MemberMeta.js ├── PartyMeta.js └── index.js └── SubGames ├── BattleRoyale ├── StatsParser.js └── index.js ├── Creative ├── CreativeWorld.js └── index.js ├── SaveTheWorld └── index.js └── index.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-epicgames-fortnite-client/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-epicgames-fortnite-client/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-epicgames-fortnite-client/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-epicgames-fortnite-client/HEAD/LICENSE.MD -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-epicgames-fortnite-client/HEAD/README.MD -------------------------------------------------------------------------------- /enums/SubGame.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-epicgames-fortnite-client/HEAD/enums/SubGame.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-epicgames-fortnite-client/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-epicgames-fortnite-client/HEAD/package.json -------------------------------------------------------------------------------- /resources/Endpoint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-epicgames-fortnite-client/HEAD/resources/Endpoint.js -------------------------------------------------------------------------------- /src/Client/Matchmaking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-epicgames-fortnite-client/HEAD/src/Client/Matchmaking.js -------------------------------------------------------------------------------- /src/Client/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-epicgames-fortnite-client/HEAD/src/Client/index.js -------------------------------------------------------------------------------- /src/Http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-epicgames-fortnite-client/HEAD/src/Http.js -------------------------------------------------------------------------------- /src/Inventory/Item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-epicgames-fortnite-client/HEAD/src/Inventory/Item.js -------------------------------------------------------------------------------- /src/Inventory/Items/AthenaBackpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-epicgames-fortnite-client/HEAD/src/Inventory/Items/AthenaBackpack.js -------------------------------------------------------------------------------- /src/Inventory/Items/AthenaCharacter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-epicgames-fortnite-client/HEAD/src/Inventory/Items/AthenaCharacter.js -------------------------------------------------------------------------------- /src/Inventory/Items/AthenaDance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-epicgames-fortnite-client/HEAD/src/Inventory/Items/AthenaDance.js -------------------------------------------------------------------------------- /src/Inventory/Items/AthenaGlider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-epicgames-fortnite-client/HEAD/src/Inventory/Items/AthenaGlider.js -------------------------------------------------------------------------------- /src/Inventory/Items/AthenaItemWrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-epicgames-fortnite-client/HEAD/src/Inventory/Items/AthenaItemWrap.js -------------------------------------------------------------------------------- /src/Inventory/Items/AthenaLoadingScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-epicgames-fortnite-client/HEAD/src/Inventory/Items/AthenaLoadingScreen.js -------------------------------------------------------------------------------- /src/Inventory/Items/AthenaMusicPack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-epicgames-fortnite-client/HEAD/src/Inventory/Items/AthenaMusicPack.js -------------------------------------------------------------------------------- /src/Inventory/Items/AthenaPickaxe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-epicgames-fortnite-client/HEAD/src/Inventory/Items/AthenaPickaxe.js -------------------------------------------------------------------------------- /src/Inventory/Items/AthenaSkyDiveContrail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-epicgames-fortnite-client/HEAD/src/Inventory/Items/AthenaSkyDiveContrail.js -------------------------------------------------------------------------------- /src/Inventory/Items/ChallengeBundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-epicgames-fortnite-client/HEAD/src/Inventory/Items/ChallengeBundle.js -------------------------------------------------------------------------------- /src/Inventory/Items/ChallengeBundleSchedule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-epicgames-fortnite-client/HEAD/src/Inventory/Items/ChallengeBundleSchedule.js -------------------------------------------------------------------------------- /src/Inventory/Items/ConditionalAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-epicgames-fortnite-client/HEAD/src/Inventory/Items/ConditionalAction.js -------------------------------------------------------------------------------- /src/Inventory/Items/Currency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-epicgames-fortnite-client/HEAD/src/Inventory/Items/Currency.js -------------------------------------------------------------------------------- /src/Inventory/Items/EventPurchaseTracker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-epicgames-fortnite-client/HEAD/src/Inventory/Items/EventPurchaseTracker.js -------------------------------------------------------------------------------- /src/Inventory/Items/GiftBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-epicgames-fortnite-client/HEAD/src/Inventory/Items/GiftBox.js -------------------------------------------------------------------------------- /src/Inventory/Items/HomebaseBannerColor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-epicgames-fortnite-client/HEAD/src/Inventory/Items/HomebaseBannerColor.js -------------------------------------------------------------------------------- /src/Inventory/Items/HomebaseBannerIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-epicgames-fortnite-client/HEAD/src/Inventory/Items/HomebaseBannerIcon.js -------------------------------------------------------------------------------- /src/Inventory/Items/Quest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-epicgames-fortnite-client/HEAD/src/Inventory/Items/Quest.js -------------------------------------------------------------------------------- /src/Inventory/Items/Token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-epicgames-fortnite-client/HEAD/src/Inventory/Items/Token.js -------------------------------------------------------------------------------- /src/Inventory/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-epicgames-fortnite-client/HEAD/src/Inventory/index.js -------------------------------------------------------------------------------- /src/Party/Member.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-epicgames-fortnite-client/HEAD/src/Party/Member.js -------------------------------------------------------------------------------- /src/Party/MemberMeta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-epicgames-fortnite-client/HEAD/src/Party/MemberMeta.js -------------------------------------------------------------------------------- /src/Party/PartyMeta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-epicgames-fortnite-client/HEAD/src/Party/PartyMeta.js -------------------------------------------------------------------------------- /src/Party/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-epicgames-fortnite-client/HEAD/src/Party/index.js -------------------------------------------------------------------------------- /src/SubGames/BattleRoyale/StatsParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-epicgames-fortnite-client/HEAD/src/SubGames/BattleRoyale/StatsParser.js -------------------------------------------------------------------------------- /src/SubGames/BattleRoyale/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-epicgames-fortnite-client/HEAD/src/SubGames/BattleRoyale/index.js -------------------------------------------------------------------------------- /src/SubGames/Creative/CreativeWorld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-epicgames-fortnite-client/HEAD/src/SubGames/Creative/CreativeWorld.js -------------------------------------------------------------------------------- /src/SubGames/Creative/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-epicgames-fortnite-client/HEAD/src/SubGames/Creative/index.js -------------------------------------------------------------------------------- /src/SubGames/SaveTheWorld/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-epicgames-fortnite-client/HEAD/src/SubGames/SaveTheWorld/index.js -------------------------------------------------------------------------------- /src/SubGames/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-epicgames-fortnite-client/HEAD/src/SubGames/index.js --------------------------------------------------------------------------------