import Card from '../../../interfaces/Card' import Type from '../../../interfaces/Type' import Tag from '../../../interfaces/Tag' import Rarity from '../../../interfaces/Rarity' import AbilityType from '../../../interfaces/AbilityType' import Category from '../../../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.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex9/98/high.png", }, }, evolveFrom: {}, tags: [ Tag.EX, ], illustrator: { id: 74, name: "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.RareHoloEX, category: Category.POKEMON, set: { name: "Emerald", code: "ex9" } } export default card