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

39 lines
1.4 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: true,
reverse: true,
holo: false,
firstEdition: false
},
name: {
en: "Snow Leaf Badge",
fr: "Badge Feuille Neige",
es: "Medalla Hoja Nieve",
it: "Medaglia Nevefoglia",
pt: "Snow Leaf Badge",
de: "Schneeblattorden"
},
rarity: "Uncommon",
category: "Trainer",
effect: {
en: "If the Pokémon V this card is attached to has “Leafeon” or “Glaceon” in its name, it has no Retreat Cost and no Weakness.",
fr: "Si le Pokémon-V auquel cette carte est attachée a « Phyllali » ou « Givrali » dans son nom, il na pas de Coût de Retraite ni de Faiblesse.",
es: "Si el Pokémon V al que está unida esta carta tiene “Leafeon” o “Glaceon” en su nombre, no tiene ningún Coste de Retirada ni Debilidad.",
it: "Se il Pokémon-V a cui è assegnata questa carta ha “Leafeon” o “Glaceon” nel nome, non ha costo di ritirata né debolezza.",
pt: "If the Pokémon V this card is attached to has “Leafeon” or “Glaceon” in its name, it has no Retreat Cost and no Weakness.",
de: "Wenn bei dem Pokémon-V, an das diese Karte angelegt ist, „Folipurba“ oder „Glaziola“ zum Namen gehört, hat es keine Rückzugskosten und keine Schwäche."
},
trainerType: "Tool",
illustrator: "Studio Bora Inc."
}
export default card