1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 01:37:52 +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.1 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: "Flareon V",
fr: "Pyroli V",
es: "Flareon V",
it: "Flareon V",
pt: "Flareon V",
de: "Flamara V"
},
rarity: "Ultra Rare",
category: "Pokemon",
hp: 210,
types: ["Fire"],
stage: "Basic",
illustrator: "5ban Graphics",
suffix: "V",
attacks: [{
name: {
en: "Flaming Breath",
fr: "Souffle de Flamme",
es: "Aliento Flamígero",
it: "Soffio Ardente",
pt: "Flaming Breath",
de: "Flammender Atem"
},
effect: {
en: "Search your deck for a Fire Energy card and attach it to this Pokémon. Then, shuffle your deck.",
fr: "Cherchez dans votre deck une carte Énergie Fire, puis attachez-la à ce Pokémon. Mélangez ensuite votre deck.",
es: "Busca en tu baraja 1 carta de Energía Fire y únela a este Pokémon. Después, baraja las cartas de tu baraja.",
it: "Cerca nel tuo mazzo una carta Energia Fire e assegnala a questo Pokémon. Poi rimischia le carte del tuo mazzo.",
pt: "Search your deck for a Fire Energy card and attach it to this Pokémon. Then, shuffle your deck.",
de: "Durchsuche dein Deck nach 1 Fire-Energiekarte und lege sie an dieses Pokémon an. Mische anschließend dein Deck."
},
damage: 20,
cost: ["Colorless"]
}, {
name: {
en: "Scorching Column",
fr: "Colonne Torride",
es: "Columna Abrasadora",
it: "Torre Ustionante",
pt: "Scorching Column",
de: "Versengende Säule"
},
effect: {
en: "Your opponents Active Pokémon is now Burned.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Brûlé.",
es: "El Pokémon Activo de tu rival pasa a estar Quemado.",
it: "Il Pokémon attivo del tuo avversario viene bruciato.",
pt: "Your opponents Active Pokémon is now Burned.",
de: "Das Aktive Pokémon deines Gegners ist jetzt verbrannt."
},
damage: 120,
cost: ["Fire", "Fire", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 2
}
export default card