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

79 lines
1.9 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: "Kecleon",
fr: "Kecleon",
es: "Kecleon",
it: "Kecleon",
pt: "Kecleon",
de: "Kecleon"
},
illustrator: "Toyste Beach",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
352,
],
hp: 70,
types: [
"Colorless",
],
stage: "Basic",
abilities: [
{
type: "Ability",
name: {
en: "Color Change",
fr: "Déguisement",
es: "Cambio Color",
it: "Cambiacolore",
pt: "Troca de Cor",
de: "Farbwechsel"
},
effect: {
en: "As long as this Pokémon is your Active Pokémon, this Pokémon is the same type as your opponents Active Pokémon.",
fr: "Tant que ce Pokémon est votre Pokémon Actif, ce Pokémon est du même type que le Pokémon Actif de votre adversaire.",
es: "Mientras este Pokémon sea tu Pokémon Activo, este Pokémon es del mismo tipo que el Pokémon Activo de tu rival.",
it: "Fintanto che questo Pokémon è il tuo Pokémon attivo, avrà lo stesso tipo del Pokémon attivo del tuo avversario.",
pt: "Desde que este Pokémon seja seu Pokémon Ativo, esse Pokémon é do mesmo tipo do Pokémon Ativo do seu oponente.",
de: "Solang dieses Pokémon dein Aktives Pokémon ist, ist dieses Pokémon vom gleichen Typ wie das Aktive Pokémon deines Gegners."
},
},
],
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Imittack",
fr: "ImitAttaque",
},
effect: {
en: "Choose 1 of the Defending Pokémon's attacks. If this Pokémon has the necessary Energy to use that attack, use it as this attack.",
fr: "Choisissez 1 des attaques du Pokémon Défenseur. Si ce Pokémon a l'Énergie nécessaire pour utiliser l'attaque choisie, utilisez-la à la place de cette attaque.",
},
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 1,
}
export default card