import { Card } from '../../../interfaces' import Set from '../Skyridge' const card: Card = { name: { en: "Kabuto", }, illustrator: "Yukiko Baba", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 140, ], hp: 50, types: [ "Fighting", ], stage: "Stage1", abilities: [ { type: "Poke-BODY", name: { en: "Thick Shell", }, effect: { en: "All damage done by attacks to Kabuto from Evolved Pokémon is reduced by 10 (after applying Weakness and Resistance).", }, }, ], attacks: [ { cost: [ "Fighting", "Colorless", ], name: { en: "Scratch", }, damage: 30, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], } export default card