1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-06 01:07:53 +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

83 lines
2.2 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: true,
firstEdition: false
},
name: {
en: "Volcarona V",
fr: "Pyrax V",
es: "Volcarona V",
it: "Volcarona V",
pt: "Volcarona V",
de: "Ramoth V"
},
rarity: "Ultra Rare",
category: "Pokemon",
hp: 210,
types: ["Fire"],
stage: "Basic",
illustrator: "kawayoo",
suffix: "V",
attacks: [{
name: {
en: "Surging Flames",
fr: "Flammes Jaillissantes",
es: "Llamas Crecientes",
it: "Fuocoraffica",
pt: "Surging Flames",
de: "Flammenschwall"
},
effect: {
en: "This attack does 20 more damage for each basic Energy card in your discard pile. Then, shuffle those Energy cards into your deck.",
fr: "Cette attaque inflige 20 dégâts supplémentaires pour chaque carte Énergie de base dans votre pile de défausse. Mélangez ensuite ces cartes Énergie avec votre deck.",
es: "Este ataque hace 20 puntos de daño más por cada carta de Energía Básica en tu pila de descartes. Después, pon esas cartas de Energía en tu baraja y barájalas todas.",
it: "Questo attacco infligge 20 danni in più per ogni carta Energia base nella tua pila degli scarti. Poi rimischia quelle carte Energia nel tuo mazzo.",
pt: "This attack does 20 more damage for each basic Energy card in your discard pile. Then, shuffle those Energy cards into your deck.",
de: "Diese Attacke fügt für jede Basis-Energiekarte in deinem Ablagestapel 20 Schadenspunkte mehr zu. Mische jene Energiekarten anschließend in dein Deck."
},
damage: "20+",
cost: ["Fire"]
}, {
name: {
en: "Fire Blast",
fr: "Déflagration",
es: "Llamarada",
it: "Fuocobomba",
pt: "Fire Blast",
de: "Feuersturm"
},
effect: {
en: "Discard an Energy from this Pokémon.",
fr: "Défaussez une Énergie de ce Pokémon.",
es: "Descarta 1 Energía de este Pokémon.",
it: "Scarta unEnergia da questo Pokémon.",
pt: "Discard an Energy from this Pokémon.",
de: "Lege 1 Energie von diesem Pokémon auf deinen Ablagestapel."
},
damage: 160,
cost: ["Fire", "Fire", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 2
}
export default card