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

79 lines
1.6 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 '../Dragons Exalted'
const card: Card = {
name: {
en: "Shedinja",
fr: "Munja",
es: "Shedinja",
it: "Shedinja",
pt: "Shedinja",
de: "Ninjatom"
},
illustrator: "Masakazu Fukuda",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
292,
],
hp: 60,
types: [
"Psychic",
],
evolveFrom: {
en: "Nincada",
fr: "Ningale",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "Empty Shell",
fr: "Coquille Vide",
es: "Concha Vacía",
it: "Guscio Vuoto",
pt: "Casca Vazia",
de: "Leerer Panzer"
},
effect: {
en: "If this Pokémon is Knocked Out, your opponent cant take any Prize cards for it.",
fr: "Si ce Pokémon est mis K.O., votre adversaire ne peut pas récupérer de carte Récompense pour ce Pokémon.",
es: "Si este Pokémon queda Fuera de Combate, tu rival no puede coger ninguna carta de Premio por él.",
it: "Se questo Pokémon viene messo K.O., il tuo avversario non può pescare carte Premio per questo Pokémon.",
pt: "Se este Pokémon for Nocauteado, seu oponente não poderá receber cards de Prêmio por ele.",
de: "Wenn dieses Pokémon kampfunfähig wird, darf dein Gegner dafür keine der Preiskarten nehmen."
},
},
],
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Cursed Drop",
fr: "Chute Maudite",
},
effect: {
en: "Put 3 damage counters on your opponent's Pokémon in any way you like.",
fr: "Placez 3 marqueurs de dégâts sur les Pokémon de votre adversaire, de la manière que vous voulez.",
},
},
],
retreat: 0
}
export default card