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: "pop1-3", localId: 3, // Card informations name: { en: "Rayquaza", }, hp: 80, type: [ Type.COLORLESS, ], dexId: 384, image: { low: { en: "https://assets.tcgdex.net/en/pop/pop1/3/low.png", }, high: { en: "https://assets.tcgdex.net/en/pop/pop1/3/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 76, name: "Katsura Tabata" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Fly", }, text: { en: "Flip a coin. If tails, this attack does nothing. If heads, prevent all effects of an attack, including damage, done to Rayquaza during your opponent's next turn.", }, damage: 10 },{ cost: [ Type.FIRE, Type.LIGHTNING ], name: { en: "Dragon Claw", }, damage: 30 }], weaknesses: [{ type: Type.COLORLESS, value: "×2" }], rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "POP Series 1", code: "pop1" } } export default card