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: "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.png", fr: "https://assets.tcgdex.net/fr/xy/xy5/53/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xy5/53/high.png", fr: "https://assets.tcgdex.net/fr/xy/xy5/53/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 9, name: "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