1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-06 17:27:52 +00:00
Florian Bouillon e21ea0646e
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>
2021-09-02 12:01:58 +02:00

89 lines
1.7 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 '../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: [
"Darkness",
"Darkness",
"Colorless",
],
name: {
en: "Night Spear",
},
effect: {
en: "Does 30 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
},
damage: 90,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 2
}
export default card