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: "base6-89", localId: 89, // Card informations name: { en: "Rattata", }, hp: 30, type: [ Type.COLORLESS, ], dexId: 19, image: { low: { en: "https://assets.tcgdex.net/en/base/base6/89/low.png", }, high: { en: "https://assets.tcgdex.net/en/base/base6/89/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 9, name: "Mitsuhiro Arita" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Bite", }, damage: 20 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-30" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Legendary Collection", code: "base6" } } export default card