mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
41 lines
601 B
TypeScript
41 lines
601 B
TypeScript
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 |