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: "hgss4-70", localId: 70, // Card informations name: { en: "Nidoran♂", fr: "Nidoran♂", }, hp: 50, type: [ Type.PSYCHIC, ], dexId: 32, image: { low: { en: "https://assets.tcgdex.net/en/hgss/hgss4/70/low", fr: "https://assets.tcgdex.net/fr/hgss/hgss4/70/low", }, high: { en: "https://assets.tcgdex.net/en/hgss/hgss4/70/high", fr: "https://assets.tcgdex.net/fr/hgss/hgss4/70/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 28, name: "match" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Pheromone Poison", fr: "Poison de phéromones", }, text: { en: "If Nidoran♀ is on your Bench, the Defending Pokémon is now Poisoned.", fr: "Si Nidoran♀ est sur votre Banc, le Pokémon Défenseur est maintenant Empoisonné.", }, damage: 10 },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Horn Attack", fr: "Koud'korne", }, damage: 20 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], retreat: 1, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "HS—Triumphant", code: "hgss4" } } export default card