1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-06 01:07:53 +00:00
Florian Bouillon 146aad93fa
Added Celebrations (#86)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-10-09 22:48:54 +00:00

33 lines
451 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Celebrations'
const card: Card = {
set: Set,
name: {
en: "Cleffa"
},
illustrator: "Kagemaru Himeno",
rarity: "None",
category: "Pokemon",
hp: 30,
types: ["Colorless"],
stage: "Basic",
attacks: [{
name: {
en: "Eeeeeeek"
},
effect: {
en: "Shuffle your hand into your deck, then draw 7 cards."
},
cost: ["Colorless"]
}],
retreat: 0
}
export default card