1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-22 08:09:54 +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

88 lines
2.9 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: "Espeon VMAX",
fr: "Mentali VMAX",
es: "Espeon VMAX",
it: "Espeon VMAX",
pt: "Espeon VMAX",
de: "Psiana VMAX"
},
rarity: "Ultra Rare",
category: "Pokemon",
hp: 310,
types: ["Psychic"],
stage: "VMAX",
illustrator: "5ban Graphics",
abilities: [{
type: "Ability",
name: {
en: "Solar Revelation",
fr: "Révélation Solaire",
es: "Revelación Solar",
it: "Rivelasole",
pt: "Solar Revelation",
de: "Solarschild"
},
effect: {
en: "Prevent all effects of attacks from your opponents Pokémon done to all of your Pokémon that have Energy attached.(Existing effects are not removed. Damage is not an effect.)",
fr: "Évitez tous les effets dattaques infligés par les Pokémon de votre adversaire à tous vos Pokémon auxquels de lÉnergie est attachée. (Les effets déjà en action ne sont pas retirés. Les dégâts ne sont pas un effet.)",
es: "Evita todos los efectos de los ataques de los Pokémon de tu rival infligidos a cada uno de tus Pokémon que tenga alguna Energía unida a él. (No se eliminan los efectos ya existentes. El daño no es un efecto).",
it: "Previeni tutti gli effetti degli attacchi dei Pokémon del tuo avversario inflitti ai tuoi Pokémon che hanno Energie assegnate. Gli effetti esistenti non vengono rimossi. I danni non sono un effetto.",
pt: "Prevent all effects of attacks from your opponents Pokémon done to all of your Pokémon that have Energy attached.(Existing effects are not removed. Damage is not an effect.)",
de: "Verhindere alle Effekte von Attacken der Pokémon deines Gegners, die allen deinen Pokémon zugefügt werden, an die Energie angelegt ist. (Bestehende Effekte werden nicht entfernt. Schaden ist kein Effekt.)"
}
}],
attacks: [{
name: {
en: "Max Mindstorm",
fr: "Psychomax",
es: "Maxionda",
it: "Dynapsiche",
pt: "Max Mindstorm",
de: "Dyna-Kinese"
},
effect: {
en: "This attack does 60 damage for each Energy attached to all of your opponents Pokémon.",
fr: "Cette attaque inflige 60 dégâts pour chaque Énergie attachée à tous les Pokémon de votre adversaire.",
es: "Este ataque hace 60 puntos de daño por cada Energía unida a todos los Pokémon de tu rival.",
it: "Questo attacco infligge 60 danni per ogni Energia assegnata ai Pokémon del tuo avversario.",
pt: "This attack does 60 damage for each Energy attached to all of your opponents Pokémon.",
de: "Diese Attacke fügt für jede an alle Pokémon deines Gegners angelegte Energie 60 Schadenspunkte zu."
},
damage: "60×",
cost: ["Psychic", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 2
}
export default card