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: "gym2-45", localId: 45, // Card informations name: { en: "Giovanni's Nidorino", }, hp: 70, type: [ Type.GRASS, ], dexId: 33, image: { low: { en: "https://assets.tcgdex.net/en/gym/gym2/45/low.png", }, high: { en: "https://assets.tcgdex.net/en/gym/gym2/45/high.png", }, }, evolveFrom: { en: "Nidoran♂", }, tags: [ Tag.STAGE1, ], illustrator: { id: 5, name: "Ken Sugimori" }, attacks: [{ cost: [ Type.GRASS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Rend", }, text: { en: "If the Defending Pokémon already has any damage counters on it, this attack does 20 damage plus 20 more damage. If not, this attack does 20 damage.", }, damage: 20 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Gym Challenge", code: "gym2" } } export default card