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: "ex3-6", localId: 6, // Card informations name: { en: "Grumpig", }, hp: 80, type: [ Type.PSYCHIC, ], dexId: 326, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex3/6/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex3/6/high.png", }, }, evolveFrom: { en: "Spoink", }, tags: [ Tag.STAGE1, ], illustrator: { id: 2, name: "Midori Harada" }, attacks: [{ cost: [ Type.PSYCHIC, Type.COLORLESS ], name: { en: "Psychic Boom", }, text: { en: "Does 20 damage plus 10 more damage for each Energy attached to the Defending Pokémon.", }, damage: 20 },{ cost: [ Type.PSYCHIC, Type.COLORLESS, Type.COLORLESS ], name: { en: "Mind Trip", }, text: { en: "If Grumpig and the Defending Pokémon have the same amount of Energy attached to them, the Defending Pokémon is now Confused.", }, damage: 50 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], rarity: Rarity.RareHolo, category: Category.POKEMON, set: { name: "Dragon", code: "ex3" } } export default card