import { Card } from '../../../interfaces' import Set from '../Promos' const card: Card = { name: { en: "Rayquaza", fr: "Rayquaza", }, illustrator: "Mitsuhiro Arita", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 384, ], hp: 120, types: [ "Dragon", ], stage: "Basic", abilities: [ { type: "Ability", name: { en: "Ozone Wall", fr: "Mur d'Ozone", }, effect: { en: "As long as this Pokémon is on your Bench, prevent all damage done to this Pokémon by attacks (both yours and your opponent's).", fr: "Tant que ce Pokémon est sur votre Banc, évitez tous les dégâts infligés à ce Pokémon par des attaques (les vôtres et celles de votre adversaire).", }, }, ], attacks: [ { cost: [ "Fire", "Fire", "Lightning", "Colorless", ], name: { en: "Dragon Pulse", }, effect: { en: "Discard the top 3 cards of your deck.", }, damage: 130, }, ], weaknesses: [ { type: "Fairy", value: "×2" }, ], retreat: 3, } export default card