mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-23 04:19:18 +00:00
* 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>
90 lines
2.1 KiB
TypeScript
90 lines
2.1 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Black & White'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Klinklang",
|
||
fr: "Cliticlic",
|
||
es: "Klinklang",
|
||
it: "Klinklang",
|
||
pt: "Klinklang",
|
||
de: "Klikdiklak"
|
||
},
|
||
illustrator: "5ban Graphics",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
601,
|
||
],
|
||
hp: 140,
|
||
types: [
|
||
"Metal",
|
||
],
|
||
evolveFrom: {
|
||
en: "Klang",
|
||
fr: "Clic",
|
||
},
|
||
stage: "Stage2",
|
||
|
||
abilities: [
|
||
{
|
||
type: "Ability",
|
||
name: {
|
||
en: "Shift Gear",
|
||
fr: "Chgt Vitesse",
|
||
es: "Cambiomarcha",
|
||
it: "Cambiomarcia",
|
||
pt: "Troca de Marcha",
|
||
de: "Gangwechsel"
|
||
},
|
||
effect: {
|
||
en: "As often as you would like during your turn (before your attack), you may move a Metal Energy attached to 1 of your Pokémon to another of your Pokémon.",
|
||
fr: "Autant de fois que vous le voulez lors de votre tour (avant votre attaque), vous pouvez déplacer une Énergie Metal attachée à l’un de vos Pokémon vers un autre de vos Pokémon.",
|
||
es: "Todas las veces que quieras durante tu turno (antes de tu ataque), puedes mover una Energía Metal unida a 1 de tus Pokémon a otro de tus Pokémon.",
|
||
it: "Durante il tuo turno, prima di attaccare, puoi distribuire a piacimento le Energie Metal assegnate ai tuoi Pokémon.",
|
||
pt: "Sempre que desejar, na sua vez de jogar (antes de atacar), você poderá mover uma Energia Metal ligada a 1 dos seus Pokémon para outro dos seus Pokémon.",
|
||
de: "Beliebig oft während deines Zuges (vor deinem Angriff) kannst du 1 Metal-Energie von 1 deiner Pokémon auf 1 anderes deiner Pokémon verschieben."
|
||
},
|
||
},
|
||
],
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Metal",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Gear Grind",
|
||
fr: "Lancécrou",
|
||
},
|
||
effect: {
|
||
en: "Flip 2 coins. This attack does 80 damage times the number of heads.",
|
||
fr: "Lancez 2 pièces. Cette attaque inflige 80 dégâts multipliés par le nombre de côtés face.",
|
||
},
|
||
damage: 80,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fire",
|
||
value: "×2"
|
||
},
|
||
],
|
||
resistances: [
|
||
{
|
||
type: "Psychic",
|
||
value: "-20"
|
||
},
|
||
],
|
||
retreat: 3,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|