import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/interfaces/Category' const card: Card = { // ids id: "ex9-98", localId: 98, // Card informations name: { en: "Regice ex", }, hp: 100, type: [ Type.WATER, ], dexId: 378, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex9/98/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex9/98/high", }, }, evolveFrom: {}, tags: [ Tag.EX, ], illustrator: "Hikaru Koike", attacks: [{ cost: [ Type.WATER ], name: { en: "Ice Beam", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 10 },{ cost: [ Type.WATER, Type.WATER, Type.COLORLESS ], name: { en: "Iceberg Crush", }, text: { en: "If Regirock ex is in play, flip a coin. If heads, discard 1 Energy card attached to the Defending Pokémon.", }, damage: 40 }], weaknesses: [{ type: Type.METAL, value: "×2" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Emerald", code: "ex9" } } export default card