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: "bw5-4", localId: 4, // Card informations name: { en: "Scyther", }, hp: 80, type: [ Type.GRASS, ], dexId: 123, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw5/4/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw5/4/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 15, name: "Naoki Saito" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Air Slash", }, text: { en: "Discard an Energy attached to this Pokémon.", }, damage: 60 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Dark Explorers", code: "bw5" } } export default card