Source

SlayTheSpireAPI/TimeServerHelpers/TimeHelper.ts

/**
 * Contains useful methods for manipulating time responses from the Slay the Spire time server
 * from {@link TimeLookup}. This is a static class and should not be instantiated using the `new`
 * keyword
 * @static
 */
export class TimeHelper {
    /**
     * Get the number of days since 1970. This is how Slay the Spire generates seeds for the
     * daily climb
     * @param {number} timeInSeconds Number of seconds since January 1, 1970 at 00:00:00
     * @returns {number}
     * @example
     * const timeServerQuery = new TimeLookup();
     * const timeServerResponse = await timeServerQuery.execute();
     * const rngSeed = TimeHelper.DaysSince1970(timeServerResponse);
     */
    public static DaysSince1970(timeInSeconds: number): number {
        return Math.floor(timeInSeconds / 60 / 60 / 24);
    }
}