leonitousconforti/tinyburg

View on GitHub
packages/nucleus/src/parsing-structs/sync-item.ts

Summary

Maintainability
A
0 mins
Test Coverage
export enum SyncItemType {
    /** Unused, just a place holder idk. */
    None = "None",

    /** This is the type for when someone sends you a bitizen, short for player */
    Play = "Play",

    /** Not sure, haven't seen used. */
    Gift = "Gift",

    /**
     * Sometimes there might be gifts that come out of thin air, like nimblebit
     * might do a giveaway or something.
     */
    Cloud = "Cloud",

    /** Raffle gifts. */
    Raffle = "Raffle",

    /** Visit gifts. */
    Visit = "Visit",
}