import { Card } from '../../../interfaces' import Set from '../Legend Maker' const card: Card = { name: { en: "Kabutops", }, illustrator: "Mitsuhiro Arita", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 141, ], hp: 110, types: [ "Fighting", ], evolveFrom: { en: "Kabuto", }, stage: "Stage2", abilities: [ { type: "Poke-BODY", name: { en: "Ancient Shell", }, effect: { en: "As long as you have Omanyte or Omastar in play, damage done to Kabutops by attacks is reduced by 20 (after applying Weakness and Resistance).", }, }, ], attacks: [ { cost: [ "Fighting", ], name: { en: "Energy Stream", }, effect: { en: "Search your discard pile for a basic Energy card and attach it to Kabutops.", }, damage: 30, }, { cost: [ "Fighting", "Colorless", "Colorless", ], name: { en: "Extra Claws", }, effect: { en: "If the Defending Pokémon is Pokémon-ex, this attack does 50 damage plus 30 more damage.", }, damage: 50, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], } export default card