1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-17 18:09:19 +00:00

Added BW translation (#65)

* Added basic translation
IT will need a second checkup by another source
as attacks are not correcly ordered

Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>

* Removed bugged file

Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
This commit is contained in:
2021-09-02 12:01:58 +02:00
committed by GitHub
parent b46b2c4fb9
commit e21ea0646e
1290 changed files with 8757 additions and 1960 deletions

View File

@ -4,22 +4,32 @@ import Set from '../Dark Explorers'
const card: Card = {
name: {
en: "Espeon",
fr: "Mentali",
es: "Espeon",
it: "Espeon",
pt: "Espeon",
de: "Psiana"
},
illustrator: "Mizue",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
196,
],
hp: 90,
types: [
"Psychic",
],
evolveFrom: {
en: "Eevee",
},
stage: "Stage1",
abilities: [
@ -27,12 +37,23 @@ const card: Card = {
type: "Ability",
name: {
en: "Solar Revelation",
fr: "Révélation Solaire",
es: "Revelación Solar",
it: "Rivelasole",
pt: "Revelação Solar",
de: "Solarschild"
},
effect: {
en: "Prevent all effects of your opponent's attacks, except damage, done to each of your Pokémon that has any Energy attached to it.",
en: "Prevent all effects of your opponents attacks, except damage, done to each of your Pokémon that has any Energy attached to it.",
fr: "Évitez tous les effets des attaques de votre adversaire, excepté les dégâts, infligés à chacun de vos Pokémon auquel de lÉnergie est attachée.",
es: "Evita todos los efectos de los ataques de tu rival, excepto el daño, infligidos a cada uno de tus Pokémon que tenga cualquier Energía unida a él.",
it: "Previeni tutti gli effetti degli attacchi del tuo avversario, esclusi i danni, inflitti ai tuoi Pokémon che abbiano delle Energie assegnate.",
pt: "Previne todos os efeitos dos ataques do seu oponente, exceto danos, causados a cada um dos seus Pokémon com Energia ligada.",
de: "Verhindere alle Effekte von gegnerischen Angriffen, außer Schaden, bei jedem deiner Pokémon, an das Energie angelegt ist."
},
},
],
attacks: [
{
cost: [
@ -50,6 +71,7 @@ const card: Card = {
},
],
weaknesses: [
{
type: "Psychic",
@ -57,10 +79,7 @@ const card: Card = {
},
],
retreat: 1
}
export default card