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: "ex8-107", localId: 107, // Card informations name: { en: "Rayquaza Star", }, hp: 90, type: [ Type.COLORLESS, ], dexId: 384, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex8/107/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex8/107/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Masakazu Fukuda", attacks: [{ cost: [ Type.FIRE, Type.LIGHTNING ], name: { en: "Spiral Rush", }, text: { en: "Flip a coin until you get tails. This attack does 30 damage times the number of heads.", }, damage: 30 },{ cost: [ Type.FIRE, Type.FIRE, Type.LIGHTNING, Type.LIGHTNING ], name: { en: "Holy Star", }, text: { en: "Discard all Energy cards attached to Rayquaza Star. This attack does 100 damage to each of your opponent's Pokémon-ex. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, }], weaknesses: [{ type: Type.COLORLESS, value: "×2" }], resistances: [{ type: Type.WATER, value: "-30" },{ type: Type.FIGHTING, value: "-30" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Deoxys", code: "ex8" } } export default card