1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

52 lines
785 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Fusion Strike"
const card: Card = {
dexId: [707],
set: Set,
name: {
en: "Klefki",
fr: "Trousselin",
es: "Klefki",
it: "Klefki",
pt: "Klefki",
de: "Clavion"
},
rarity: "Common",
category: "Pokemon",
hp: 70,
types: ["Metal"],
stage: "Basic",
retreat: 1,
regulationMark: "E",
illustrator: "MAHOU",
description: {
en: "Long ago it lived in mines, but once the minerals that make up its diet became scarcer, Klefki began appearing in human settlements."
},
attacks: [{
cost: ["Colorless"],
name: {
en: "Unlock"
},
damage: 10,
effect: {
en: "Draw 2 cards."
}
}],
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card