import Card from '../../../interfaces/Card' import Type from '../../../interfaces/Type' import Tag from '../../../interfaces/Tag' import Rarity from '../../../interfaces/Rarity' import AbilityType from '../../../interfaces/AbilityType' import Category from '../../../interfaces/Category' const card: Card = { // ids id: "ex16-10", localId: 10, // Card informations name: { en: "Kabutops", }, hp: 110, type: [ Type.FIGHTING, ], dexId: 141, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex16/10/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex16/10/high.png", }, }, evolveFrom: { en: "Kabuto", }, tags: [ Tag.STAGE2, ], illustrator: { id: 5, name: "Ken Sugimori" }, abilities: [{ id: 558, type: AbilityType.POKEBODY, name: { en: "Primal Stare", }, text: { en: "As long as Kabutops is your Active Pokémon, your opponent can't play any Basic Pokémon or Evolution cards from his or her hand to evolve his or her Active Pokémon.", } }], attacks: [{ cost: [ Type.FIGHTING, Type.COLORLESS ], name: { en: "Luring Antenna", }, text: { en: "Before doing damage, you may choose 1 of your opponent's Benched Pokémon and switch it with 1 of the Defending Pokémon. If you do, this attack does 20 damage to the new Defending Pokémon. Your opponent chooses the Defending Pokémon to switch.", }, damage: 20 },{ cost: [ Type.FIGHTING, Type.FIGHTING, Type.COLORLESS ], name: { en: "Blinding Scythe", }, damage: 60 }], weaknesses: [{ type: Type.GRASS, value: "×2" }], rarity: Rarity.RareHolo, category: Category.POKEMON, set: { name: "Power Keepers", code: "ex16" } } export default card