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: "ex15-34", localId: 34, // Card informations name: { en: "Nidorina δ", }, hp: 70, type: [ Type.METAL, ], dexId: 30, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex15/34/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex15/34/high.png", }, }, evolveFrom: { en: "Nidoran?", }, tags: [ Tag.STAGE1, ], illustrator: { id: 7, name: "Sumiyoshi Kizuki" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Poison Sting", }, text: { en: "The Defending Pokémon is now Poisoned.", }, damage: 10 },{ cost: [ Type.METAL, Type.COLORLESS, Type.COLORLESS ], name: { en: "Rear Kick", }, damage: 40 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Dragon Frontiers", code: "ex15" } } export default card