import { Card } from '../../../interfaces' import Set from '../Pokémon Rumble' const card: Card = { name: { en: "Bastiodon", }, illustrator: undefined, rarity: "Common", category: "Pokemon", set: Set, dexId: [ 411, ], hp: 120, types: [ "Metal", ], evolveFrom: { en: "Shieldon", }, stage: "Stage2", attacks: [ { cost: [ "Metal", "Colorless", "Colorless", ], name: { en: "Strength", }, damage: 40, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-20" }, ], } export default card