import Card from '../../../interfaces/Card' import Type from '../../../interfaces/Type' import Tag from '../../../interfaces/Tag' import Rarity from '../../../interfaces/Rarity' import AbilityType from '../../../interfaces/AbilityType' import Category from '../../../interfaces/Category' const card: Card = { // ids id: "bw4-52", localId: 52, // Card informations name: { en: "Grimer", fr: "Tadmorv", }, hp: 70, type: [ Type.PSYCHIC, ], dexId: 88, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw4/52/low.png", fr: "https://assets.tcgdex.net/fr/bw/bw4/52/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw4/52/high.png", fr: "https://assets.tcgdex.net/fr/bw/bw4/52/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 0, name: "Kagemaru Himeno" }, attacks: [{ cost: [ Type.PSYCHIC, Type.COLORLESS ], name: { en: "Nasty Goo", fr: "Glu Fétide", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé.", }, damage: 20 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], retreat: 2, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Next Destinies", code: "bw4" } } export default card