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-23", localId: 23, // Card informations name: { en: "Giovanni's Nidoqueen", }, hp: 100, type: [ Type.GRASS, ], dexId: 31, image: { low: { en: "https://assets.tcgdex.net/en/gym/gym2/23/low.png", }, high: { en: "https://assets.tcgdex.net/en/gym/gym2/23/high.png", }, }, evolveFrom: { en: "Nidorina", }, tags: [ Tag.STAGE2, ], illustrator: { id: 5, name: "Ken Sugimori" }, attacks: [{ cost: [ Type.GRASS, Type.GRASS, Type.COLORLESS ], name: { en: "Mega Kick", }, damage: 40 },{ cost: [ Type.GRASS, Type.GRASS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Love Lariat", }, text: { en: "Flip a coin. If heads, this attack does 50 damage plus 50 more damage if you have at least 1 Giovanni's Nidoking on your Bench. If tails, this attack does nothing.", }, damage: 50 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Gym Challenge", code: "gym2" } } export default card