1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 13:22:15 +00:00

69 lines
1.0 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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