import { Card } from '../../../interfaces' import Set from '../Arceus' const card: Card = { name: { en: "Kabuto", }, illustrator: "Hironobu Yoshida", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 140, ], types: [ "Fighting", ], evolveFrom: { en: "Dome Fossil", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", ], name: { en: "Fast Evolution", }, effect: { en: "Search your deck for up to 2 Evolution cards, show them to your opponent, and put them into your hand. Shuffle your deck afterward.", }, }, { cost: [ "Fighting", "Colorless", ], name: { en: "Speed Attack", }, damage: 30, }, ], weaknesses: [ { type: "Grass", value: "+20" }, ], retreat: 1, } export default card