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: "bw9-45", localId: 45, // Card informations name: { en: "Grimer", fr: "Tadmorv", }, hp: 70, type: [ Type.PSYCHIC, ], dexId: 88, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw9/45/low.png", fr: "https://assets.tcgdex.net/fr/bw/bw9/45/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw9/45/high.png", fr: "https://assets.tcgdex.net/fr/bw/bw9/45/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 30, name: "Hajime Kusajima" }, attacks: [{ cost: [ Type.PSYCHIC ], name: { en: "Lure Poison", fr: "Appât Vénéneux", }, text: { en: "Flip a coin. If heads, switch 1 of your opponent's Benched Pokémon with the Defending Pokémon. The new Defending Pokémon is now Poisoned.", fr: "Lancez une pièce. Si c'est face, échangez 1 des Pokémon de Banc de votre adversaire avec le Pokémon Défenseur. Le nouveau Pokémon Défenseur est maintenant Empoisonné.", }, },{ cost: [ Type.PSYCHIC, Type.COLORLESS, Type.COLORLESS ], name: { en: "Sludge Toss", fr: "Giclée Vaseuse", }, damage: 30 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], retreat: 2, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Plasma Freeze", code: "bw9" } } export default card