1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 01:37:52 +00:00

71 lines
892 B
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",
},
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",
},
effect: {
en: "Each of your Metal Pokémon's Resistance is now -40.",
fr: "La Résistance de chacun de vos Pokémon Metal est maintenant -40.",
},
},
],
attacks: [
{
cost: [
"Metal",
"Colorless",
],
name: {
en: "Ram",
fr: "Collision",
},
damage: 30,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 1,
}
export default card