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-19", localId: 19, // Card informations name: { en: "Lumineon", fr: "Luminéon", }, hp: 80, type: [ Type.WATER, ], dexId: 457, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy4/19/low", fr: "https://assets.tcgdex.net/fr/xy/xy4/19/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xy4/19/high", fr: "https://assets.tcgdex.net/fr/xy/xy4/19/high", }, }, evolveFrom: { en: "Finneon", fr: "Écayon", }, tags: [ Tag.STAGE1, ], illustrator: "sui", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Neon Sign", fr: "Appel Lumineux", }, text: { en: "Search your deck for up to 2 Pokémon, reveal them, and put them into your hand. Shuffle your deck afterward.", fr: "Cherchez jusqu'à 2 Pokémon dans votre deck, montrez-les, puis ajoutez-les à votre main. Mélangez ensuite votre deck.", }, },{ cost: [ Type.WATER, Type.COLORLESS ], name: { en: "Water Pulse", fr: "Vibraqua", }, text: { en: "Your opponent's Active Pokémon is now Asleep.", fr: "Le Pokémon Actif de votre adversaire est maintenant Endormi.", }, damage: 30 }], weaknesses: [{ type: Type.GRASS, value: "×2" }], retreat: 1, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Phantom Forces", code: "xy4" } } export default card