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: "xy4-116", localId: 116, // Card informations name: { en: "Florges-EX", fr: "Florges-EX", }, hp: 160, type: [ Type.FAIRY, ], dexId: 671, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy4/116/low", fr: "https://assets.tcgdex.net/fr/xy/xy4/116/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xy4/116/high", fr: "https://assets.tcgdex.net/fr/xy/xy4/116/high", }, }, evolveFrom: {}, tags: [ Tag.EX, ], illustrator: "Ryo Ueda", attacks: [{ cost: [ Type.FAIRY ], name: { en: "Lead", fr: "Mentor", }, text: { en: "Search your deck for a Supporter card, reveal it, and put it into your hand. Shuffle your deck afterward.", fr: "Cherchez une carte Supporter dans votre deck, montrez-la, puis ajoutez-la à votre main. Mélangez ensuite votre deck.", }, },{ cost: [ Type.FAIRY, Type.COLORLESS ], name: { en: "Bright Garden", fr: "Jardin Radieux", }, text: { en: "This attack does 20 damage times the number of Grass Pokémon and Fairy Pokémon you have in play.", fr: "Cette attaque inflige 20 dégâts multipliés par le nombre de Pokémon Grass et de Pokémon Fairy que vous avez en jeu.", }, damage: 20 }], weaknesses: [{ type: Type.METAL, value: "×2" }], resistances: [{ type: Type.DARKNESS, value: "-20" }], retreat: 2, rarity: Rarity.ULTRARARE, category: Category.POKEMON, set: { name: "Phantom Forces", code: "xy4" } } export default card