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: "bw5-104", localId: 104, // Card informations name: { en: "Kyogre-EX", }, hp: 170, type: [ Type.WATER, ], dexId: 382, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw5/104/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw5/104/high", }, }, evolveFrom: {}, tags: [ Tag.EX, ], illustrator: "5ban Graphics", attacks: [{ cost: [ Type.WATER, Type.COLORLESS ], name: { en: "Smash Turn", }, text: { en: "You may switch this Pokémon with 1 of your Benched Pokémon.", }, damage: 30 },{ cost: [ Type.WATER, Type.WATER, Type.COLORLESS ], name: { en: "Dual Splash", }, text: { en: "This attack does 50 damage to 2 of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], rarity: Rarity.ULTRARARE, category: Category.POKEMON, set: { name: "Dark Explorers", code: "bw5" } } export default card