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-88", localId: 88, // Card informations name: { en: "Togepi", fr: "Togepi", }, hp: 50, type: [ Type.COLORLESS, ], dexId: 175, image: { low: { en: "https://assets.tcgdex.net/en/dp/dp4/88/low", fr: "https://assets.tcgdex.net/fr/dp/dp4/88/low", }, high: { en: "https://assets.tcgdex.net/en/dp/dp4/88/high", fr: "https://assets.tcgdex.net/fr/dp/dp4/88/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Ken Sugimori", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Yawn", fr: "Baillement", }, text: { en: "The Defending Pokémon is now Asleep.", fr: "Le Pokémon Défenseur est maintenant Endormi.", }, },{ cost: [ Type.COLORLESS ], name: { en: "Find a friend", fr: "Trouver un ami", }, text: { en: "Flip a coin. If heads, search your deck for a Pokémon, show it to your opponent, and put it into your hand. Shuffle your deck afterward.", fr: "Lancez une pièce. Si c'est face, choisissez un Pokémon dans votre deck, montrez-le à votre adversaire et placez-le dans votre main. Ensuite, mélangez votre deck.", }, }], weaknesses: [{ type: Type.FIGHTING, value: "+10" }], retreat: 1, rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "Great Encounters", code: "dp4" } } export default card