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: "pl2-72", localId: 72, // Card informations name: { en: "Nidoran♂", fr: "Nidoran♂ Niv. 9", }, hp: 50, type: [ Type.PSYCHIC, ], dexId: 32, image: { low: { en: "https://assets.tcgdex.net/en/pl/pl2/72/low.png", fr: "https://assets.tcgdex.net/fr/pl/pl2/72/low.png", }, high: { en: "https://assets.tcgdex.net/en/pl/pl2/72/high.png", fr: "https://assets.tcgdex.net/fr/pl/pl2/72/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 5, name: "Ken Sugimori" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Leer", fr: "Groz'yeux", }, text: { en: "Flip a coin. If heads, the Defending Pokémon can't attack during your opponent's next turn.", fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur ne peut pas attaquer lors du prochain tour de votre adversaire.", }, },{ cost: [ Type.PSYCHIC, Type.COLORLESS ], name: { en: "Horn Hazard", fr: "Chanc'korne", }, text: { en: "Flip a coin. If tails, this attack does nothing.", fr: "Lancez une pièce. Si c'est pile, cette attaque est sans effet.", }, damage: 40 }], weaknesses: [{ type: Type.PSYCHIC, value: "+10" }], retreat: 1, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Rising Rivals", code: "pl2" } } export default card