1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-15 21:19:55 +00:00
Florian Bouillon 9138eedb16
Add swsh variants (#42)
* Updated Kalos Starter Set data

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed XY set

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed some more XY sets

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Added the rest of the SWSH variants

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-02 12:34:21 +00:00

100 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 '../Darkness Ablaze'
const card: Card = {
name: {
en: "Klinklang",
fr: "Cliticlic",
es: "Klinklang",
it: "Klinklang",
pt: "Klinklang",
de: "Klikdiklak"
},
illustrator: "Naoki Saito",
rarity: "Rare",
category: "Pokemon",
set: Set,
hp: 150,
types: [
"Metal",
],
evolveFrom: {
en: "Klang",
fr: "Clic"
},
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Beam",
fr: "Rayon",
es: "Transmisión",
it: "Raggio",
pt: "Feixe",
de: "Strahl"
},
damage: 60,
},
{
cost: [
"Metal",
"Colorless",
"Colorless",
],
name: {
en: "Clockwork",
fr: "Mécanisme",
es: "Mecanismo de Relojería",
it: "Ingranaggi",
pt: "Mecanismo",
de: "Uhrwerk"
},
effect: {
en: "If you dont have Klink and Klang on your Bench, this attack does nothing.",
fr: "Si vous navez pas Tic et Clic sur votre Banc, cette attaque ne fait rien.",
es: "Si no tienes a Klink y Klang en tu Banca, este ataque no hace nada.",
it: "Se non hai Klink e Klang nella tua panchina, questo attacco non ha effetto.",
pt: "Se Klink e Klang não estiverem no seu Banco, este ataque não fará nada.",
de: "Wenn sich Klikk und Kliklak nicht auf deiner Bank befinden, hat diese Attacke keine Auswirkungen."
},
damage: 200,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Grass",
value: "-30"
},
],
retreat: 3,
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card