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: "dp3-88", localId: 88, // Card informations name: { en: "Grimer", fr: "Tadmorv", }, hp: 60, type: [ Type.PSYCHIC, ], dexId: 88, image: { low: { en: "https://assets.tcgdex.net/en/dp/dp3/88/low", fr: "https://assets.tcgdex.net/fr/dp/dp3/88/low", }, high: { en: "https://assets.tcgdex.net/en/dp/dp3/88/high", fr: "https://assets.tcgdex.net/fr/dp/dp3/88/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Ken Sugimori", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Mud Bomb", fr: "Boue-Bombe", }, damage: 10 },{ cost: [ Type.PSYCHIC ], name: { en: "Gunky", fr: "Vase", }, text: { en: "If the Defending Pokémon tries to attack during your opponent's next turn, your opponent flips a coin. If tails, that attack does nothing.", fr: "Si le Pokémon Défenseur essaye d'attaquer lors du prochain tour de votre adversaire, celui-ci lance une pièce. Si c'est pile, cette attaque est sans effet.", }, }], weaknesses: [{ type: Type.PSYCHIC, value: "+10" }], retreat: 2, rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "Secret Wonders", code: "dp3" } } export default card