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: "xy5-53", localId: 53, // Card informations name: { en: "Kyogre", fr: "Kyogre", }, hp: 130, type: [ Type.WATER, ], dexId: 382, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy5/53/low", fr: "https://assets.tcgdex.net/fr/xy/xy5/53/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xy5/53/high", fr: "https://assets.tcgdex.net/fr/xy/xy5/53/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Mitsuhiro Arita", attacks: [{ cost: [ Type.WATER, Type.COLORLESS ], name: { en: "Spring Tides", fr: "Marée Naissante", }, text: { en: "Flip a coin until you get tails. This attack does 30 damage times the number of heads.", fr: "Lancez une pièce jusqu'à ce que vous obteniez un côté pile. Cette attaque inflige 30 dégâts multipliés par le nombre de côtés face.", }, damage: 30 },{ cost: [ Type.WATER, Type.WATER, Type.WATER, Type.COLORLESS ], name: { en: "Ocean Cyclone", fr: "Cyclone Océanique", }, text: { en: "This attack does 10 damage to each of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", fr: "Cette attaque inflige 10 dégâts à chacun des Pokémon de Banc de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", }, damage: 80 }], weaknesses: [{ type: Type.GRASS, value: "×2" }], retreat: 4, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Primal Clash", code: "xy5" } } export default card