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: "xyp-XY61", localId: "XY61", // Card informations name: { en: "Flygon-EX", fr: "Libégon-eEX", }, hp: 170, type: [ Type.DRAGON, ], dexId: 330, image: { low: { en: "https://assets.tcgdex.net/en/xy/xyp/XY61/low.png", fr: "https://assets.tcgdex.net/fr/xy/xyp/XY61/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xyp/XY61/high.png", fr: "https://assets.tcgdex.net/fr/xy/xyp/XY61/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 13, name: "Toyste Beach" }, abilities: [{ id: 1349, type: AbilityType.TALENT, name: { en: "Voice of the Sands", fr: "Voix du Désert", }, text: { en: "Once during your turn (before your attack), if this Pokémon is your Active Pokémon, you may have your opponent switch his or her Active Pokémon with 1 of his or her Benched Pokémon.", fr: "Une seule fois pendant votre tour (avant votre attaque), si ce Pokémon est votre Pokémon Actif, vous pouvez demander à votre adversaire d'échanger son Pokémon Actif avec l'un de ses Pokémon de Banc.", } }], attacks: [{ cost: [ Type.GRASS, Type.FIGHTING, Type.FIGHTING, Type.COLORLESS ], name: { en: "Spiral Buzz", }, text: { en: "Flip a coin until you get tails. This attack does 30 more damage for each heads.", }, damage: 80 }], weaknesses: [{ type: Type.FAIRY, value: "×2" }], retreat: 2, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "XY Black Star Promos", code: "xyp" } } export default card