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-6", localId: 6, // Card informations name: { en: "Nidoking δ", }, hp: 120, type: [ Type.DARKNESS, ], dexId: 34, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex15/6/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex15/6/high.png", }, }, evolveFrom: { en: "Nidorino", }, tags: [ Tag.STAGE2, ], illustrator: { id: 9, name: "Mitsuhiro Arita" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Linear Attack", }, text: { en: "Choose 1 of your opponent's Pokémon. This attack does 30 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, },{ cost: [ Type.DARKNESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Dark Horn", }, text: { en: "You may discard a Basic Pokémon or Evolution card from your hand. If you do, choose 1 of your opponent's Benched Pokémon and do 20 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, damage: 60 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], rarity: Rarity.RareHolo, category: Category.POKEMON, set: { name: "Dragon Frontiers", code: "ex15" } } export default card