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: "xy10-116", localId: 116, // 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/116/low.png", fr: "https://assets.tcgdex.net/fr/xy/xy10/116/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xy10/116/high.png", fr: "https://assets.tcgdex.net/fr/xy/xy10/116/high.png", }, }, evolveFrom: {}, tags: [ Tag.EX, ], illustrator: { id: 1, name: "Ryo Ueda" }, 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.RareUltra, category: Category.POKEMON, set: { name: "Fates Collide", code: "xy10" } } export default card