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: "g1-RC20", localId: "RC20", // Card informations name: { en: "Slurpuff", fr: "Cupcanaille", }, hp: 90, type: [ Type.FAIRY, ], dexId: 685, image: { low: { en: "https://assets.tcgdex.net/en/xy/g1/RC20/low", fr: "https://assets.tcgdex.net/fr/xy/g1/RC20/low", }, high: { en: "https://assets.tcgdex.net/en/xy/g1/RC20/high", fr: "https://assets.tcgdex.net/fr/xy/g1/RC20/high", }, }, evolveFrom: { en: "Swirlix", fr: "Sucroquin", }, tags: [ Tag.STAGE1, ], illustrator: "MAHOU", attacks: [{ cost: [ Type.FAIRY ], name: { en: "Lap Up", fr: "Gobeur", }, text: { en: "Draw 3 cards.", fr: "Piochez 3 cartes.", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Fairy Wind", fr: "Vent Féérique", }, damage: 40 }], weaknesses: [{ type: Type.METAL, value: "×2" }], resistances: [{ type: Type.DARKNESS, value: "-20" }], retreat: 2, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Generations", code: "g1" } } export default card