1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-31 19:59:53 +00:00

69 lines
2.3 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-A"
const card: Card = {
set: Set,
name: {
en: "Rayquaza",
fr: "Rayquaza",
es: "Rayquaza",
it: "Rayquaza",
de: "Rayquaza",
'pt-br': "Rayquaza",
ko: "레쿠쟈"
},
illustrator: "Yoshinobu Saito",
rarity: "Three Diamond",
category: "Pokemon",
hp: 100,
types: ["Colorless"],
description: {
en: "It lives in the ozone layer far above the clouds and cannot be seen from the ground.",
fr: "Il vit dans la couche d'ozone, au-dessus\ndes nuages. Il est invisible depuis le sol.",
es: "Vive en la capa de ozono sobre las nubes\ny no puede ser visto desde el suelo.",
it: "Vive nello strato di ozono oltre le nuvole\ne non può essere avvistato da terra.",
de: "Es lebt in der Ozonschicht hoch über den Wolken\nund kann vom Boden aus nicht gesehen werden.",
'pt-br': "Ele vive na camada de ozônio muito acima das nuvens\ne não pode ser visto do solo.",
ko: "구름보다 아득히 먼 위의 오존층에\n서식하고 있기 때문에 지상에서\n모습을 볼 수 없다."
},
stage: "Basic",
attacks: [{
name: {
en: "Spiral Rush",
fr: "Course en Spirale",
es: "Avalancha Espiral",
it: "Raffica a Spirale",
de: "Spiralsturmangriff",
'pt-br': "Arremetida Espiral",
ko: "스파이럴러시"
},
damage: 70,
cost: ["Colorless", "Colorless", "Colorless", "Colorless"],
effect: {
en: "Flip a coin until you get tails. This attack does 30 more damage for each heads.",
fr: "Lancez une pièce jusqu'à ce que vous obteniez pile. Cette attaque inflige 30 dégâts supplémentaires pour chaque côté face.",
es: "Lanza 1 moneda hasta que salga cruz. Este ataque hace 30 puntos de daño más por cada cara.",
it: "Lancia una moneta finché non esce croce. Questo attacco infligge 30 danni in più ogni volta che esce testa.",
de: "Wirf so lange 1 Münze, bis sie Zahl zeigt. Diese Attacke fügt 30 Schadenspunkte mehr pro Kopf zu.",
'pt-br': "Jogue uma moeda até sair coroa. Este ataque causa 30 pontos de dano a mais para cada cara.",
ko: "뒷면이 나올 때까지 동전을 던져서 앞면이 나온 수 × 30데미지를 추가한다."
}
}],
weaknesses: [{
type: "Lightning",
value: "+20"
}],
retreat: 1,
boosters: ["vol7"]
}
export default card