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-97", localId: 97, // Card informations name: { en: "Rayquaza ex δ", }, hp: 110, type: [ Type.LIGHTNING, ], dexId: 384, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex15/97/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex15/97/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Ryo Ueda", abilities: [{ id: 121, type: AbilityType.POKEBODY, name: { en: "Rage Aura", }, text: { en: "If you have more Prize cards left than your opponent, the attack cost of Rayquaza ex's Special Circuit is now Lightning and Rayquaza ex's Sky-high Claws is now Lightning Lightning.", } }], attacks: [{ cost: [ Type.LIGHTNING, Type.COLORLESS ], name: { en: "Special Circuit", }, text: { en: "Choose 1 of your opponent's Pokémon. This attack does 30 damage to that Pokémon. If you choose a Pokémon that has any Poké-Powers or Poké-Bodies, this attack does 50 damage instead. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, },{ cost: [ Type.LIGHTNING, Type.LIGHTNING, Type.COLORLESS, Type.COLORLESS ], name: { en: "Sky-high Claws", }, damage: 70 }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Dragon Frontiers", code: "ex15" } } export default card