import { Card } from '../../../interfaces' import Set from '../Skyridge' const card: Card = { name: { en: "Kabutops", }, illustrator: "Kouki Saitou", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 141, ], hp: 90, types: [ "Fighting", ], evolveFrom: { en: "Kabuto", }, stage: "Stage2", abilities: [ { type: "Poke-BODY", name: { en: "Primal Aura", }, effect: { en: "As long as Kabutops is your Active Pokémon, neither player can play Basic Pokémon or Evolution cards from his or her hand to evolve Benched Pokémon.", }, }, ], attacks: [ { cost: [ "Fighting", "Fighting", "Colorless", ], name: { en: "Dual Cut", }, effect: { en: "Flip 2 coins. This attack does 50 damage times the number of heads.", }, damage: 50, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], } export default card