Skip to content
This repository has been archived by the owner on Feb 17, 2023. It is now read-only.
Vrekt edited this page Jan 11, 2020 · 1 revision

The Fortnite class is a wrapper for FortnitePublicService but also provides the shop/stores.

Retrieving daily/weekly

            final var daily = athena.fortnite().dailyStorefront();
            daily.catalogEntries().forEach(catalogEntry -> {
                System.err.println(catalogEntry.devName());
                System.err.println(catalogEntry.getPrimaryPrice().basePrice());
            });

            final var weekly = athena.fortnite().weeklyStorefront();

Retrieving other storefronts

            final var name = athena.fortnite().getStorefront("NAME");
            final var catalog = athena.fortnite().storefrontCatalog();
Clone this wiki locally