1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 01:19:18 +00:00

feat: Add Twilight Masquerade (#491)

This commit is contained in:
2024-05-24 08:48:44 +02:00
committed by GitHub
parent d48971c95e
commit 8a4a93af8f
227 changed files with 13148 additions and 0 deletions

View File

@ -0,0 +1,41 @@
import { Card } from "../../../interfaces"
import Set from "../Twilight Masquerade"
const card: Card = {
set: Set,
name: {
en: "Clefairy",
fr: "Mélofée",
es: "Clefairy",
it: "Clefairy",
pt: "Clefairy",
de: "Piepi"
},
rarity: "Common",
category: "Pokemon",
hp: 60,
types: ["Psychic"],
stage: "Basic",
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
en: "Moon Kick",
fr: "Coup d'Pied Lunaire",
es: "Patada Lunar",
it: "Calcioluna",
pt: "Chute Lunar",
de: "Mondkick"
},
damage: 40
}],
retreat: 1,
regulationMark: "H"
}
export default card