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: "np-39", localId: 39, // Card informations name: { en: "Rayquaza ex", }, hp: 100, type: [ Type.COLORLESS, ], dexId: 384, image: { low: { en: "https://assets.tcgdex.net/en/pop/np/39/low.png", }, high: { en: "https://assets.tcgdex.net/en/pop/np/39/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 1, name: "Ryo Ueda" }, abilities: [{ id: 963, type: AbilityType.POKEBODY, name: { en: "Frenzy", }, text: { en: "As long as your opponent has Kyogre, Kyogre ex, Groudon, or Groudon ex in play, Rayquaza ex's attacks do 40 more damage to the Defending Pokémon (before applying Weakness and Resistance).", } }], attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Dragon Bind", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 20 },{ cost: [ Type.FIRE, Type.LIGHTNING, Type.COLORLESS ], name: { en: "Twister", }, text: { en: "Flip 2 coins. If both are tails, this attack does nothing. For each heads, discard an Energy attached to the Defending Pokémon.", }, damage: 50 }], weaknesses: [{ type: Type.COLORLESS, value: "×2" }], resistances: [{ type: Type.WATER, value: "-30" },{ type: Type.FIGHTING, value: "-30" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Nintendo Black Star Promos", code: "np" } } export default card