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-83", localId: 83, // Card informations name: { en: "Nidorina", }, hp: 80, type: [ Type.GRASS, ], dexId: 30, image: { low: { en: "https://assets.tcgdex.net/en/ecard/ecard3/83/low.png", }, high: { en: "https://assets.tcgdex.net/en/ecard/ecard3/83/high.png", }, }, evolveFrom: { en: "Nidoran♀", }, tags: [ Tag.STAGE1, ], illustrator: { id: 2, name: "Midori Harada" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Tackle", }, damage: 20 },{ cost: [ Type.GRASS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Poison Claws", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Poisoned.", }, }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Skyridge", code: "ecard3" } } export default card