import { Card } from '../../../interfaces' import Set from '../Darkness Ablaze' const card: Card = { name: { en: "Granbull", }, illustrator: "SATOSHI NAKAI", rarity: "Rare", category: "Pokemon", set: Set, hp: 130, types: [ "Psychic", ], evolveFrom: { en: "Snubbull", }, attacks: [ { cost: [ "Psychic", "Colorless", ], name: { en: "Jaw Lock", }, effect: { en: "During your opponent’s next turn, the Defending Pokémon can’t retreat.", }, damage: 50, }, { cost: [ "Psychic", "Psychic", "Colorless", ], name: { en: "Headbutt Bounce", }, damage: 130, }, ], weaknesses: [ { type: "Metal", value: "×2" }, ], retreat: 2, } export default card