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: "xy5-67", localId: 67, // Card informations name: { en: "Nidorina", fr: "Nidorina", }, hp: 90, type: [ Type.PSYCHIC, ], dexId: 30, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy5/67/low.png", fr: "https://assets.tcgdex.net/fr/xy/xy5/67/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xy5/67/high.png", fr: "https://assets.tcgdex.net/fr/xy/xy5/67/high.png", }, }, evolveFrom: { en: "Nidoran♀", fr: "Nidoran♀", }, tags: [ Tag.STAGE1, ], illustrator: { id: 43, name: "Aya Kusube" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Scratch", fr: "Griffe", }, damage: 20 },{ cost: [ Type.PSYCHIC, Type.PSYCHIC, Type.COLORLESS ], name: { en: "Strength", fr: "Force", }, damage: 60 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], retreat: 2, rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Primal Clash", code: "xy5" } } export default card