mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
80 lines
2.6 KiB
TypeScript
80 lines
2.6 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Silver Tempest"
|
|
|
|
const card: Card = {
|
|
dexId: [601],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Klinklang",
|
|
fr: "Cliticlic",
|
|
es: "Klinklang",
|
|
it: "Klinklang",
|
|
pt: "Klinklang",
|
|
de: "Klikdiklak"
|
|
},
|
|
|
|
rarity: "Rare",
|
|
category: "Pokemon",
|
|
hp: 160,
|
|
types: ["Metal"],
|
|
|
|
evolveFrom: {
|
|
en: "Klang",
|
|
fr: "Clic",
|
|
es: "Klang",
|
|
it: "Klang",
|
|
pt: "Klang",
|
|
de: "Kliklak"
|
|
},
|
|
|
|
stage: "Stage2",
|
|
|
|
abilities: [{
|
|
type: "Ability",
|
|
|
|
name: {
|
|
en: "Triple Gears",
|
|
fr: "Triple Engrenage",
|
|
es: "Triple Engranaje",
|
|
it: "Triplo Ingranaggio",
|
|
pt: "Engrenagem Tripla",
|
|
de: "Dreifachgetriebe"
|
|
},
|
|
|
|
effect: {
|
|
en: "When you play this Pokémon from your hand to evolve 1 of your Pokémon during your turn, you may search your deck for up to 3 basic Energy cards and attach them to your Pokémon in any way you like. Then, shuffle your deck.",
|
|
fr: "Lorsque vous jouez ce Pokémon de votre main pour faire évoluer l'un de vos Pokémon pendant votre tour, vous pouvez chercher dans votre deck jusqu'à 3 cartes Énergie de base et les attacher à vos Pokémon comme il vous plaît. Mélangez ensuite votre deck.",
|
|
es: "Cuando juegas este Pokémon de tu mano para hacer evolucionar a 1 de tus Pokémon durante tu turno, puedes buscar en tu baraja hasta 3 cartas de Energía Básica y unirlas a tus Pokémon de la manera que desees. Después, baraja las cartas de tu baraja.",
|
|
it: "Quando giochi questo Pokémon dalla tua mano per far evolvere uno dei tuoi Pokémon durante il tuo turno, puoi cercare nel tuo mazzo fino a tre carte Energia base e assegnarle ai tuoi Pokémon nel modo che preferisci. Poi rimischia le carte del tuo mazzo.",
|
|
pt: "Quando você jogar este Pokémon da sua mão para evoluir 1 dos seus Pokémon durante o seu turno, você poderá procurar por até 3 cartas de Energia básica no seu baralho e ligá-las aos seus Pokémon como desejar. Em seguida, embaralhe o seu baralho.",
|
|
de: "Wenn du dieses Pokémon aus deiner Hand spielst, um 1 deiner Pokémon während deines Zuges zu entwickeln, kannst du dein Deck nach bis zu 3 Basis-Energiekarten durchsuchen und sie beliebig an deine Pokémon anlegen. Mische anschließend dein Deck."
|
|
}
|
|
}],
|
|
|
|
attacks: [{
|
|
cost: ["Metal", "Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Power Beam",
|
|
fr: "Puissant Rayon",
|
|
es: "Rayo de Luz Poderoso",
|
|
it: "Raggiopotenza",
|
|
pt: "Raio de Poder",
|
|
de: "Power-Strahl"
|
|
},
|
|
|
|
damage: 130
|
|
}],
|
|
|
|
retreat: 3,
|
|
regulationMark: "F",
|
|
variants: {
|
|
normal: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card |