String, CaseIterable, Identifiable { case normal case tequila case premium case secret var id: String { rawValue } var assetName: String { switch self { case .normal: return "pon" case .tequila: return "tequila" case .premium: return "pon_premium" case .secret: return "tequila_secret" } } var displayName: String { switch self { case .normal: return "ϊʔϚϧ" case .tequila: return "͍ͭͷ" case .premium: return "ϓϨϛΞϜ" case .secret: return "γʔΫϨοτ" } } }