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: "ex13-26", localId: 26, // Card informations name: { en: "Rayquaza δ", }, hp: 80, type: [ Type.FIRE, ], dexId: 384, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex13/26/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex13/26/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 1, name: "Ryo Ueda" }, attacks: [{ cost: [ Type.FIRE, Type.COLORLESS ], name: { en: "Outrage", }, text: { en: "Flip a coin. If tails, this attack does nothing. If heads, this attack does 10 damage plus 10 more damage for each damage counter on Rayquaza.", }, damage: 10 },{ cost: [ Type.FIRE, Type.COLORLESS, Type.COLORLESS ], name: { en: "Flamethrower", }, text: { en: "Discard 1 Fire Energy attached to Rayquaza.", }, damage: 40 }], weaknesses: [{ type: Type.COLORLESS, value: "×2" }], rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Holon Phantoms", code: "ex13" } } export default card