1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

87 lines
1.4 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 '../Team Up'
const card: Card = {
name: {
en: "Klefki",
fr: "Trousselin",
es: "Klefki",
it: "Klefki",
pt: "Klefki",
de: "Clavion"
},
illustrator: "Shigenori Negishi",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
707,
],
hp: 60,
types: [
"Metal",
],
stage: "Basic",
abilities: [
{
type: "Ability",
name: {
en: "Key of Secrets",
fr: "Clé des Secrets",
es: "Llave de Secretos",
it: "Chiave dei Segreti",
pt: "Chave de Segredos",
de: "Schlüssel der Geheimnisse"
},
effect: {
en: "Each of your Metal Pokémons Resistance is now -40.",
fr: "La Résistance de chacun de vos Pokémon Metal est maintenant -40.",
es: "La Resistencia de cada uno de tus Pokémon Metal pasa a ser -40.",
it: "La resistenza di ciascuno dei tuoi Pokémon Metal è -40.",
pt: "A Resistência de cada um dos seus Pokémon Metal agora é - 40.",
de: "Die Resistenz jedes deiner Metal-Pokémon ist jetzt -40."
},
},
],
attacks: [
{
cost: [
"Metal",
"Colorless",
],
name: {
en: "Ram",
fr: "Collision",
es: "Apisonar",
it: "Carica",
pt: "Aríete",
de: "Ramme"
},
damage: 30,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 1,
}
export default card