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: "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.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex8/107/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 8, name: "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.RareHolo, category: Category.POKEMON, set: { name: "Deoxys", code: "ex8" } } export default card