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: "ecard3-H13", localId: "H13", // Card informations name: { en: "Kabutops", }, hp: 90, type: [ Type.FIGHTING, ], dexId: 141, image: { low: { en: "https://assets.tcgdex.net/en/ecard/ecard3/H13/low.png", }, high: { en: "https://assets.tcgdex.net/en/ecard/ecard3/H13/high.png", }, }, evolveFrom: { en: "Kabuto", }, tags: [ Tag.STAGE2, ], illustrator: { id: 10, name: "Kouki Saitou" }, abilities: [{ id: 921, type: AbilityType.POKEBODY, name: { en: "Primal Aura", }, text: { 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: [ Type.FIGHTING, Type.FIGHTING, Type.COLORLESS ], name: { en: "Dual Cut", }, text: { en: "Flip 2 coins. This attack does 50 damage times the number of heads.", }, damage: 50 }], weaknesses: [{ type: Type.GRASS, value: "×2" }], rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Skyridge", code: "ecard3" } } export default card