1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-05 05:09:53 +00:00

27 lines
353 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Promos-A"
const card: Card = {
set: Set,
name: {
en: "Clefairy"
},
illustrator: "Shibuzoh.",
rarity: "One Diamond",
category: "Pokemon",
types: ["Psychic"],
stage: "Basic",
attacks: [{
name: {
en: "Slap"
},
cost: ["Psychic"],
damage: 20
}]
}
export default card