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: "ex4-3", localId: 3, // Card informations name: { en: "Team Aqua's Kyogre", }, hp: 100, type: [ Type.WATER, Type.DARKNESS, ], dexId: 382, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex4/3/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex4/3/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "K. Hoshiba", abilities: [{ id: 56, type: AbilityType.POKEBODY, name: { en: "Power Saver", }, text: { en: "As long as the number of Pokémon in play (both yours and your opponent's) that has Team Aqua in its name is 3 or less, Team Aqua's Kyogre can't attack.", } }], attacks: [{ cost: [ Type.WATER, Type.COLORLESS ], name: { en: "Aqua Trip", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Confused. If tails, the Defending Pokémon is now Asleep.", }, damage: 10 },{ cost: [ Type.WATER, Type.WATER, Type.COLORLESS ], name: { en: "Aqua Smash", }, text: { en: "If the Defending Pokémon is affected by a Special Condition, this attack does 50 damage plus 20 more damage.", }, damage: 50 }], weaknesses: [{ type: Type.GRASS, value: "×2" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Team Magma vs Team Aqua", code: "ex4" } } export default card