import { Card } from '../../../interfaces' import Set from '../Skyridge' const card: Card = { name: { en: "Granbull", }, illustrator: "Tomokazu Komiya", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 210, ], hp: 80, types: [ "Colorless", ], evolveFrom: { en: "Snubbull", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Fling", }, effect: { en: "Your opponent switches the Defending Pokémon with 1 of his or her Benched Pokémon. (Do the damage before switching the Pokémon.)", }, damage: 20, }, { cost: [ "Colorless", "Colorless", "Colorless", "Colorless", ], name: { en: "Mega Punch", }, damage: 50, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card