1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-26 01:49:54 +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

81 lines
1.5 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 Freeze'
const card: Card = {
name: {
en: "Mr. Mime",
fr: "M. Mime",
es: "Mr. Mime",
it: "Mr. Mime",
pt: "Mr. Mime",
de: "Pantimos"
},
illustrator: "Hiroki Asanuma",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
122,
],
hp: 70,
types: [
"Psychic",
],
stage: "Basic",
abilities: [
{
type: "Ability",
name: {
en: "Bench Barrier",
fr: "Barrière de Banc",
es: "Barrera de Banca",
it: "Panchinafranca",
pt: "Barreira de Banco",
de: "Bankbarriere"
},
effect: {
en: "Prevent all damage done to your Benched Pokémon by attacks.",
fr: "Évitez tous les dégâts infligés à vos Pokémon de Banc par des attaques.",
es: "Evita todo el daño infligido a tus Pokémon en Banca por ataques.",
it: "Previeni tutto il danno inflitto dagli attacchi ai tuoi Pokémon in panchina.",
pt: "Impede todos os danos causados por ataques a seus Pokémon no Banco.",
de: "Verhindere allen Schaden, der Pokémon auf deiner Bank durch Angriffe zugefügt wird."
},
},
],
attacks: [
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "Psy Bolt",
fr: "Choc Mental",
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé.",
},
damage: 20,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 1,
}
export default card