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-87", localId: 87, // Card informations name: { en: "Hydreigon BREAK", fr: "Trioxhydre TURBO", }, hp: 190, type: [ Type.DRAGON, ], dexId: 635, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy11/87/low", fr: "https://assets.tcgdex.net/fr/xy/xy11/87/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xy11/87/high", fr: "https://assets.tcgdex.net/fr/xy/xy11/87/high", }, }, evolveFrom: { en: "Hydreigon", fr: "Trioxhydre", }, tags: [ Tag.BREAK, ], illustrator: "5ban Graphics", attacks: [{ cost: [ Type.PSYCHIC, Type.DARKNESS, Type.DARKNESS, Type.COLORLESS ], name: { en: "Calamity Blast", fr: "Règle des Évolutions TURBO", }, text: { en: "Discard 3 Energy attached to this Pokémon. This attack does 50 damage to 2 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, damage: 150 },{ cost: [ Type.PSYCHIC, Type.DARKNESS, Type.DARKNESS, Type.COLORLESS ], name: { fr: "Explo-Calamité", }, text: { fr: "Défaussez 3 Énergies attachées à ce Pokémon. Cette attaque inflige 50 dégâts à 2 des Pokémon de Banc de votre adversaire. (N’appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", }, damage: 150 }], weaknesses: [{ type: Type.FAIRY, value: "×2" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Steam Siege", code: "xy11" } } export default card