mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
109 lines
2.7 KiB
TypeScript
109 lines
2.7 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Roaring Skies'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "M Rayquaza EX",
|
||
fr: "M-Rayquaza EX",
|
||
es: "M-Rayquaza EX",
|
||
it: "M Rayquaza EX",
|
||
pt: "M-Rayquaza EX",
|
||
de: "M-Rayquaza EX"
|
||
},
|
||
|
||
illustrator: "5ban Graphics",
|
||
rarity: "Ultra Rare",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
|
||
dexId: [
|
||
384,
|
||
],
|
||
|
||
hp: 220,
|
||
|
||
types: [
|
||
"Colorless",
|
||
],
|
||
|
||
evolveFrom: {
|
||
en: "Rayquaza-EX",
|
||
fr: "Rayquaza-EX",
|
||
es: "Rayquaza-EX",
|
||
it: "Rayquaza-EX",
|
||
pt: "Rayquaza-EX",
|
||
de: "Rayquaza-EX"
|
||
},
|
||
|
||
stage: "MEGA",
|
||
|
||
abilities: [
|
||
{
|
||
type: "Ancient Trait",
|
||
name: {
|
||
fr: "Évolution Δ",
|
||
en: "Δ Evolution",
|
||
es: "{title}:",
|
||
it: "{title}:",
|
||
pt: "{title}:",
|
||
de: "{title}:"
|
||
},
|
||
effect: {
|
||
fr: "Vous pouvez jouer cette carte de votre main pour faire évoluer un Pokémon pendant votre premier tour ou pendant le tour où vous le jouez.",
|
||
en: "You may play this card from your hand to evolve a Pokémon during your first turn or the turn you play that Pokémon.",
|
||
es: "{title}: Puedes jugar esta carta de tu mano para hacer evolucionar a 1 Pokémon durante tu primer turno o durante el turno en que pongas en juego a ese Pokémon.",
|
||
it: "{title}: Puoi giocare questa carta dalla tua mano per far evolvere un Pokémon durante il tuo primo turno o durante il turno in cui l'hai giocato.",
|
||
pt: "{title}: Você pode jogar este card de sua mão para evoluir um Pokémon durante sua primeira vez de jogar ou no turno em que jogar aquele Pokémon.",
|
||
de: "{title}: Du kannst diese Karte von deiner Hand spielen, um 1 Pokémon während deines ersten Zuges oder des Zuges, in dem du es spielst, zu entwickeln."
|
||
},
|
||
},
|
||
],
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Emerald Break",
|
||
fr: "Bris'Émeraude",
|
||
es: "Rotura Esmeralda",
|
||
it: "Colposmeraldo",
|
||
pt: "Quebra Esmeralda",
|
||
de: "Grüner Einschnitt"
|
||
},
|
||
effect: {
|
||
en: "This attack does 30 damage times the number of your Benched Pokémon.",
|
||
fr: "Cette attaque inflige 30 dégâts multipliés par le nombre de vos Pokémon de Banc.",
|
||
es: "Este ataque hace 30 puntos de daño por cada uno de tus Pokémon en Banca.",
|
||
it: "Questo attacco infligge 30 danni per ogni Pokémon che hai in panchina.",
|
||
pt: "Este ataque causa 30 de danos vezes o número de Pokémon no seu Banco.",
|
||
de: "Dieser Angriff fügt 30 Schadenspunkte mal der Anzahl der Pokémon auf deiner Bank zu."
|
||
},
|
||
damage: "30×",
|
||
|
||
}
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
resistances: [
|
||
{
|
||
type: "Fighting",
|
||
value: "-20"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
suffix: "EX"
|
||
}
|
||
|
||
export default card
|