import { Card } from '../../../interfaces' import Set from '../Arceus' const card: Card = { name: { en: "Golem", }, illustrator: "Masakazu Fukuda", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 76, ], types: [ "Fighting", ], evolveFrom: { en: "Graveler", }, stage: "Stage2", attacks: [ { cost: [ "Fighting", "Colorless", ], name: { en: "Lunge Out", }, damage: 50, }, { cost: [ "Fighting", "Colorless", "Colorless", ], name: { en: "Tumble Down", }, effect: { en: "Discard as many Fighting Energy cards as you like from your hand. This attack does 30 damage times the number of Fighting Energy cards you discarded.", }, damage: "30x", }, { cost: [ "Fighting", "Fighting", "Colorless", "Colorless", ], name: { en: "Rock Tumble", }, effect: { en: "This attack's damage isn't affected by Resistance.", }, damage: 80, }, ], weaknesses: [ { type: "Grass", value: "+30" }, ], resistances: [ { type: "Lightning", value: "-20" }, ], retreat: 4, } export default card