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: "xy11-15", localId: 15, // Card informations name: { en: "Volcarona", fr: "Pyrax", }, hp: 110, type: [ Type.FIRE, Type.GRASS, ], dexId: 637, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy11/15/low", fr: "https://assets.tcgdex.net/fr/xy/xy11/15/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xy11/15/high", fr: "https://assets.tcgdex.net/fr/xy/xy11/15/high", }, }, evolveFrom: { en: "Larvesta", fr: "Pyronille", }, tags: [ Tag.STAGE1, ], illustrator: "Kouki Saitou", attacks: [{ cost: [ Type.GRASS ], name: { en: "Shimmering Scales", fr: "Écailles Scintillantes", }, text: { en: "Flip a coin. If heads, your opponent's Active Pokémon is now Confused. If tails, your opponent's Active Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c’est face, le Pokémon Actif de votre adversaire est maintenant Confus. Si c’est pile, le Pokémon Actif de votre adversaire est maintenant Paralysé.", }, damage: 20 },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Power Hurricane", fr: "Ouragan Puissant", }, text: { en: "Discard all Energy attached to this Pokémon.", fr: "Défaussez toutes les Énergies attachées à ce Pokémon.", }, damage: 120 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], retreat: 1, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Steam Siege", code: "xy11" } } export default card