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: "pl4-67", localId: 67, // Card informations name: { en: "Kabuto", }, hp: 80, type: [ Type.FIGHTING, ], dexId: 140, image: { low: { en: "https://assets.tcgdex.net/en/pl/pl4/67/low.png", }, high: { en: "https://assets.tcgdex.net/en/pl/pl4/67/high.png", }, }, evolveFrom: { en: "Dome Fossil", }, tags: [ Tag.STAGE1, ], illustrator: { id: 60, name: "Hironobu Yoshida" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Fast Evolution", }, text: { en: "Search your deck for up to 2 Evolution cards, show them to your opponent, and put them into your hand. Shuffle your deck afterward.", }, },{ cost: [ Type.FIGHTING, Type.COLORLESS ], name: { en: "Speed Attack", }, damage: 30 }], weaknesses: [{ type: Type.GRASS, value: "+20" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Arceus", code: "pl4" } } export default card