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: "ex9-29", localId: 29, // Card informations name: { en: "Grumpig", }, hp: 80, type: [ Type.PSYCHIC, ], dexId: 326, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex9/29/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex9/29/high.png", }, }, evolveFrom: { en: "Spoink", }, tags: [ Tag.STAGE1, ], illustrator: { id: 0, name: "Kagemaru Himeno" }, attacks: [{ cost: [ Type.PSYCHIC ], name: { en: "Psyshock", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 20 },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Teleport Blast", }, text: { en: "After your attack, you may switch Grumpig with 1 of your Benched Pokémon.", }, damage: 40 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Emerald", code: "ex9" } } export default card