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,33 +4,52 @@ import Set from '../Dark Explorers'
const card: Card = {
name: {
en: "Darkrai-EX",
fr: "Darkrai-EX",
es: "Darkrai-EX",
it: "Darkrai-EX",
pt: "Darkrai-EX",
de: "Darkrai-EX"
},
illustrator: "Shizurow",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
491,
],
hp: 180,
types: [
"Darkness",
],
suffix: "EX",
abilities: [
{
type: "Ability",
name: {
en: "Dark Cloak",
fr: "Cape Obscure",
es: "Manto Oscuro",
it: "Mantelnero",
pt: "Manto da Escuridão",
de: "Finsterumhang"
},
effect: {
en: "Each of your Pokémon that has any Darkness Energy attached to it has no Retreat Cost.",
fr: "Chacun de vos Pokémon auquel de lÉnergie Darkness est attachée na pas de coût de Retraite.",
es: "Cada uno de tus Pokémon que tenga cualquier Energía Darkness unida a él no tiene ningún Coste de Retirada.",
it: "Nessuno dei tuoi Pokémon che ha delle Energie Darkness assegnate ha costo di ritirata.",
pt: "Cada um de seus Pokémon que possui qualquer Energia Darkness ligada não possui Custo para Recuar.",
de: "Jedes deiner Pokémon, an dem Darkness-Energie angelegt ist, hat keine Rückzugskosten."
},
},
],
attacks: [
{
cost: [
@ -48,12 +67,14 @@ const card: Card = {
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
@ -61,9 +82,7 @@ const card: Card = {
},
],
retreat: 2
}
export default card