1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-17 13:59: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

85 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 '../Boundaries Crossed'
const card: Card = {
name: {
en: "Jellicent",
fr: "Moyade",
es: "Jellicent",
it: "Jellicent",
pt: "Jellicent",
de: "Apoquallyp"
},
illustrator: "Kouki Saitou",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
593,
],
hp: 100,
types: [
"Water",
],
evolveFrom: {
en: "Frillish",
fr: "Viskuse",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "Stickiness",
fr: "Viscosité",
es: "Pegajosidad",
it: "Colla",
pt: "Colante",
de: "Superkleber"
},
effect: {
en: "The Retreat Cost of each of your opponents Pokémon in play is Colorless more.",
fr: "Le coût de Retraite de chacun des Pokémon de votre adversaire est augmenté de Colorless.",
es: "El Coste de Retirada de cada uno de los Pokémon en juego de tu rival es de Colorless más.",
it: "Il costo di ritirata di ciascun Pokémon in gioco del tuo avversario aumenta di Colorless.",
pt: "O Custo para Recuar de cada um dos Pokémon do seu oponente em jogo será de Colorless a mais.",
de: "Die Rückzugskosten aller Pokémon deines Gegners im Spiel erhöhen sich um Colorless."
},
},
],
attacks: [
{
cost: [
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Eerie Light",
fr: "Lumière Étrange",
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Confused.",
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Confus.",
},
damage: 40,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
retreat: 3,
}
export default card