import { Card } from '../../../interfaces' import Set from '../Neo Discovery' const card: Card = { name: { en: "Kabuto", }, illustrator: "Yuka Morii", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 140, ], hp: 50, types: [ "Water", ], stage: "Stage1", abilities: [ { type: "Poke-POWER", name: { en: "Revive Friends", }, effect: { en: "Once during your turn (before you attack), you may flip a coin. If heads, search your deck for a card named Kabuto and put it on your Bench. Shuffle your deck afterward. Treat the new Kabuto as a Basic Pokémon. This power can't be used if Kabuto is Asleep, Confused, or Paralyzed (or if your Bench is full).", }, }, ], attacks: [ { cost: [ "Fighting", "Colorless", ], name: { en: "Work Together", }, effect: { en: "Flip a coin. If heads, this attack does 10 damage plus 10 more damage for each Omanyte, Omastar, Kabuto, and Kabutops on your Bench.", }, damage: 10, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], } export default card