1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Florian Bouillon b46b2c4fb9
Updated Evolving Skies with attacks and other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-28 16:54:37 +02:00

78 lines
2.5 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Evolving Skies'
const card: Card = {
set: Set,
variants: {
normal: false,
reverse: false,
holo: false,
firstEdition: false
},
name: {
en: "Rayquaza V",
fr: "Rayquaza V",
es: "Rayquaza V",
it: "Rayquaza V",
pt: "Rayquaza V",
de: "Rayquaza V"
},
rarity: "Ultra Rare",
category: "Pokemon",
hp: 210,
types: ["Dragon"],
stage: "Basic",
illustrator: "PLANETA Mochizuki",
suffix: "V",
attacks: [{
name: {
en: "Dragon Pulse",
fr: "Draco-Choc",
es: "Pulso Dragón",
it: "Dragopulsar",
pt: "Dragon Pulse",
de: "Drachenpuls"
},
effect: {
en: "Discard the top 2 cards of your deck.",
fr: "Défaussez les 2 cartes du dessus de votre deck.",
es: "Descarta las 2 primeras cartas de tu baraja.",
it: "Scarta le prime due carte del tuo mazzo.",
pt: "Discard the top 2 cards of your deck.",
de: "Lege die obersten 2 Karten deines Decks auf deinen Ablagestapel."
},
damage: 40,
cost: ["Lightning"]
}, {
name: {
en: "Spiral Burst",
fr: "Spirale Détonante",
es: "Explosión en Espiral",
it: "Spiralscoppio",
pt: "Spiral Burst",
de: "Spiral-Detonation"
},
effect: {
en: "You may discard up to 2 basic Fire Energy or up to 2 basic Lightning Energy from this Pokémon. This attack does 80 more damage for each card you discarded in this way.",
fr: "Vous pouvez défausser jusquà 2 Énergies Fire de base ou jusquà 2 Énergies Lightning de base de ce Pokémon. Cette attaque inflige 80 dégâts supplémentaires pour chaque carte défaussée de cette façon.",
es: "Puedes descartar hasta 2 Energías Fire Básicas o hasta 2 Energías Lightning Básicas de este Pokémon. Este ataque hace 80 puntos de daño más por cada carta que hayas descartado de esta manera.",
it: "Puoi scartare fino a due Energie base Fire o due Energie base Lightning da questo Pokémon. Questo attacco infligge 80 danni in più per ogni carta che hai scartato in questo modo.",
pt: "You may discard up to 2 basic Fire Energy or up to 2 basic Lightning Energy from this Pokémon. This attack does 80 more damage for each card you discarded in this way.",
de: "Du kannst bis zu 2 Basis-Fire-Energien oder bis zu 2 Basis-Lightning-Energien von diesem Pokémon auf deinen Ablagestapel legen. Diese Attacke fügt für jede auf diese Weise abgelegte Karte 80 Schadenspunkte mehr zu."
},
damage: "20+",
cost: ["Fire", "Lightning"]
}],
retreat: 2
}
export default card