1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-21 15:49:55 +00:00
Florian Bouillon 90ebef01cf Added more Evolving Skies data
Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-08-27 11:02:14 +02:00

75 lines
2.1 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 '../Evolving Skies'
const card: Card = {
set: Set,
variants: {
normal: false,
reverse: false,
holo: false,
firstEdition: false
},
name: {
en: "Umbreon VMAX",
fr: "Noctali VMAX",
es: "Umbreon VMAX",
it: "Umbreon VMAX",
pt: "Umbreon VMAX",
de: "Nachtara VMAX"
},
rarity: "Ultra Rare",
category: "Pokemon",
hp: 310,
types: ["Darkness"],
illustrator: "AKIRA EGAWA",
abilities: [{
type: "Ability",
name: {
en: "Dark Signal",
fr: "Signal Obscur",
es: "Señal Oscura",
pt: "Dark Signal",
it: "Segnale Oscuro",
de: "Dunkles Signal"
},
effect: {
en: "When you play this Pokémon from your hand to evolve 1 of your Pokémon during your turn, you may switch 1 of your opponents Benched Pokémon with their Active Pokémon.",
fr: "Lorsque vous jouez ce Pokémon de votre main pour faire évoluer lun de vos Pokémon pendant votre tour, vous pouvez échanger lun des Pokémon de Banc de votre adversaire contre son Pokémon Actif.",
es: "Cuando juegas este Pokémon de tu mano para hacer evolucionar a 1 de tus Pokémon durante tu turno, puedes cambiar 1 de los Pokémon en Banca de tu rival por su Pokémon Activo.",
pt: "When you play this Pokémon from your hand to evolve 1 of your Pokémon during your turn, you may switch 1 of your opponents Benched Pokémon with their Active Pokémon.",
it: "Quando giochi questo Pokémon dalla tua mano per far evolvere uno dei tuoi Pokémon durante il tuo turno, puoi scambiare uno dei Pokémon nella panchina del tuo avversario con il suo Pokémon attivo.",
de: "Wenn du dieses Pokémon aus deiner Hand spielst, um 1 deiner Pokémon während deines Zuges zu entwickeln, kannst du 1 Pokémon auf der Bank deines Gegners gegen sein Aktives Pokémon austauschen."
}
}],
attacks: [{
name: {
en: "Max Darkness",
fr: "Sinistromax",
es: "Maxisombra",
it: "Dynatenebre",
pt: "Max Darkness",
de: "Dyna-Dunkel"
},
damage: 160,
cost: ["Darkness", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2,
stage: "VMAX"
}
export default card