1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +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

84 lines
2.2 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 '../Plasma Storm'
const card: Card = {
name: {
en: "Jellicent",
fr: "Moyade",
es: "Jellicent",
it: "Jellicent",
pt: "Jellicent",
de: "Apoquallyp"
},
illustrator: "5ban Graphics",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
593,
],
hp: 100,
types: [
"Water",
],
evolveFrom: {
en: "Frillish",
fr: "Viskuse",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "Spiteful Spirit",
fr: "Esprit Malveillant",
es: "Espíritu Malvado",
it: "Sferza",
pt: "Espírito Maldoso",
de: "Tückischer Geist"
},
effect: {
en: "If this Pokémon is your Active Pokémon and is Knocked Out by damage from an opponents attack, the Attacking Pokémon is now Confused and Poisoned.",
fr: "Si ce Pokémon est votre Pokémon Actif et est mis K.O. par les dégâts dune attaque de votre adversaire, le Pokémon Attaquant est maintenant Confus et Empoisonné.",
es: "Si este Pokémon es tu Pokémon Activo y queda Fuera de Combate por el daño de un ataque de tu rival, el Pokémon Atacante pasa a estar Confundido y Envenenado.",
it: "Se questo Pokémon è il tuo Pokémon attivo e viene messo K.O. dai danni inflitti da un attacco del tuo avversario, il Pokémon attaccante viene confuso e avvelenato.",
pt: "Se este Pokémon for seu Pokémon Ativo e ele for Nocauteado por danos causados pelo ataque de um oponente, o Pokémon Atacante ficará Confuso e Envenenado.",
de: "Wenn dieses Pokémon dein Aktives Pokémon ist und durch Schaden eines gegnerischen Angriffs kampfunfähig wird, ist das Angreifende Pokémon jetzt verwirrt und vergiftet."
},
},
],
attacks: [
{
cost: [
"Water",
"Colorless",
],
name: {
en: "Aqua Bullet",
fr: "Aquaballe",
},
effect: {
en: "Does 10 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Inflige 10 dégâts à 1 des Pokémon de Banc de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
},
damage: 40,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
retreat: 2,
}
export default card