1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +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.9 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 '../Next Destinies'
const card: Card = {
name: {
en: "Cinccino",
fr: "Pashmilla",
es: "Cinccino",
it: "Cinccino",
pt: "Cinccino",
de: "Chillabell"
},
illustrator: "Kanako Eo",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
573,
],
hp: 90,
types: [
"Colorless",
],
evolveFrom: {
en: "Minccino",
fr: "Chinchidou",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "Smooth Coat",
fr: "Pelage Lustré",
es: "Manto Suave",
it: "Pelliscia",
pt: "Manto Suave",
de: "Geschmeidiger Mantel"
},
effect: {
en: "If any damage is done to this Pokémon by attacks, flip a coin. If heads, prevent that damage.",
fr: "Si des dégâts sont infligés à ce Pokémon par des attaques, lancez une pièce. Si cest face, évitez les dégâts.",
es: "Si se inflige cualquier daño a este Pokémon por ataques, lanza una moneda. Si sale cara, evita ese daño.",
it: "Se questo Pokémon subisce danni da attacchi, lancia una moneta. Se esce testa, previeni quei danni.",
pt: "Se qualquer dano for causado a este Pokémon por ataques, jogue uma moeda. Se sair cara, o dano será impedido.",
de: "Wirf 1 Münze, wenn diesem Pokémon durch Angriffe Schaden zugefügt wird. Bei „Kopf“ verhindere diesen Schaden."
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Echoed Voice",
fr: "Écho",
},
effect: {
en: "During your next turn, this Pokémon's Echoed Voice attack does 50 more damage (before applying Weakness and Resistance).",
fr: "Pendant votre prochain tour, l'attaque Écho de ce Pokémon inflige 50 dégâts supplémentaires (avant application de la Faiblesse et de la Résistance).",
},
damage: 50,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 1,
}
export default card