import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/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", }, high: { en: "https://assets.tcgdex.net/en/ex/ex15/6/high", }, }, evolveFrom: { en: "Nidorino", }, tags: [ Tag.STAGE2, ], illustrator: "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.RARE, category: Category.POKEMON, set: { name: "Dragon Frontiers", code: "ex15" } } export default card