dungeon-sdk-drikkx
Version:
Shared types and entities for the Dungeon game
15 lines • 518 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.KeyRarity = void 0;
// ====================================
// Key Rarity Types
// ====================================
var KeyRarity;
(function (KeyRarity) {
KeyRarity["COMMON"] = "COMMON";
KeyRarity["UNCOMMON"] = "UNCOMMON";
KeyRarity["RARE"] = "RARE";
KeyRarity["EPIC"] = "EPIC";
KeyRarity["LEGENDARY"] = "LEGENDARY";
})(KeyRarity || (exports.KeyRarity = KeyRarity = {}));
//# sourceMappingURL=key.types.js.map