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

78 lines
1.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: false,
firstEdition: false
},
name: {
en: "Espeon V",
fr: "Mentali V",
es: "Espeon V",
it: "Espeon V",
pt: "Espeon V",
de: "Psiana V"
},
rarity: "Ultra Rare",
category: "Pokemon",
hp: 200,
types: ["Psychic"],
stage: "Basic",
illustrator: "5ban Graphics",
suffix: "V",
attacks: [{
name: {
en: "Zen Shot",
fr: "Tir Zen",
es: "Disparo Zen",
it: "Colpo Zen",
pt: "Zen Shot",
de: "Zen-Schuss"
},
effect: {
en: "This attack does 60 damage to 1 of your opponents Pokémon V. (Dont apply Weakness and Resistance for Benched Pokémon.)",
fr: "Cette attaque inflige 60 dégâts à lun des Pokémon-V de votre adversaire. (Nappliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
es: "Este ataque hace 60 puntos de daño a 1 de los Pokémon V de tu rival. (No apliques Debilidad y Resistencia a los Pokémon en Banca).",
it: "Questo attacco infligge 60 danni a uno dei Pokémon-V del tuo avversario. Non applicare debolezza e resistenza ai Pokémon in panchina.",
pt: "This attack does 60 damage to 1 of your opponents Pokémon V. (Dont apply Weakness and Resistance for Benched Pokémon.)",
de: "Diese Attacke fügt 1 Pokémon-V deines Gegners 60 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)"
},
cost: ["Psychic"]
}, {
name: {
en: "Super Psy Bolt",
fr: "Super Psy",
es: "Superrayo Psi",
it: "Superpsico",
pt: "Super Psy Bolt",
de: "Super-Psischlag"
},
damage: 120,
cost: ["Psychic", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1
}
export default card