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: "xy10-20", localId: 20, // Card informations name: { en: "Glaceon-EX", fr: "Givrali-EX", }, hp: 170, type: [ Type.WATER, ], dexId: 471, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy10/20/low", fr: "https://assets.tcgdex.net/fr/xy/xy10/20/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xy10/20/high", fr: "https://assets.tcgdex.net/fr/xy/xy10/20/high", }, }, evolveFrom: {}, tags: [ Tag.EX, ], illustrator: "Ayaka Yoshida", attacks: [{ cost: [ Type.WATER, Type.COLORLESS ], name: { en: "Second Bite", fr: "Double Morsure", }, text: { en: "This attack does 10 more damage for each damage counter on your opponent's Active Pokémon.", fr: "Cette attaque inflige 10 dégâts supplémentaires pour chaque marqueur de dégâts placé sur le Pokémon Actif de votre adversaire.", }, damage: 20 },{ cost: [ Type.WATER, Type.COLORLESS, Type.COLORLESS ], name: { en: "Crystal Ray", fr: "Rayon de Cristal", }, text: { en: "During your opponent's next turn, prevent all damage done to this Pokémon by attacks from Evolution Pokémon.", fr: "Pendant le prochain tour de votre adversaire, évitez tous les dégâts infligés à ce Pokémon par des attaques de Pokémon Évolutifs.", }, damage: 70 }], weaknesses: [{ type: Type.METAL, value: "×2" }], retreat: 2, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Fates Collide", code: "xy10" } } export default card