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

87 lines
1.4 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 '../Plasma Freeze'
const card: Card = {
name: {
en: "Umbreon",
fr: "Noctali",
es: "Umbreon",
it: "Umbreon",
pt: "Umbreon",
de: "Nachtara"
},
illustrator: "5ban Graphics",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
197,
],
hp: 100,
types: [
"Darkness",
],
evolveFrom: {
en: "Eevee",
fr: "Évoli",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "Dark Shade",
fr: "Ombre Ténébreuse",
es: "Sombra Oscura",
it: "Tonoscuro",
pt: "Máscara da Escuridão",
de: "Finsterer Schatten"
},
effect: {
en: "Each of your Team Plasma Pokémon in play gets +20 HP.",
fr: "Ajoute 20 PV à chacun de vos Pokémon de la Team Plasma en jeu.",
es: "Cada uno de tus Pokémon del Equipo Plasma en juego obtiene 20 PV más.",
it: "Ciascuno dei tuoi Pokémon Team Plasma in gioco ottiene 20 PV in più.",
pt: "Cada um dos seus Pokémon da Equipe Plasma em jogo recebe +20 PS.",
de: "Jedes deiner Team-Plasma-Pokémon im Spiel erhält +20 KP."
},
},
],
attacks: [
{
cost: [
"Darkness",
"Colorless",
"Colorless",
],
name: {
en: "Darkness Fang",
fr: "Croc Obscur",
},
damage: 70,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 1,
}
export default card