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: "dp4-55", localId: 55, // Card informations name: { en: "Togetic", fr: "Togetic", }, hp: 70, type: [ Type.COLORLESS, ], dexId: 176, image: { low: { en: "https://assets.tcgdex.net/en/dp/dp4/55/low", fr: "https://assets.tcgdex.net/fr/dp/dp4/55/low", }, high: { en: "https://assets.tcgdex.net/en/dp/dp4/55/high", fr: "https://assets.tcgdex.net/fr/dp/dp4/55/high", }, }, evolveFrom: { en: "Togepi", fr: "Togepi", }, tags: [ Tag.STAGE1, ], illustrator: "Kagemaru Himeno", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Speed Dive", fr: "Équilibre Plongée", }, damage: 20 },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Sweet Kiss", fr: "Doux baiser", }, text: { en: "Your opponent may draw a card.", fr: "Votre adversaire peut piocher une carte.", }, damage: 50 }], weaknesses: [{ type: Type.LIGHTNING, value: "+20" }], resistances: [{ type: Type.FIGHTING, value: "-20" }], retreat: 1, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Great Encounters", code: "dp4" } } export default card