1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
TCGdex [Bot] ab265c6c41
editor: misc fixes for variants (#517)
Co-authored-by: Avior <git@avior.me>
2024-07-03 22:44:31 +02:00

44 lines
654 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Celebrations'
const card: Card = {
dexId: [173],
set: Set,
name: {
en: "Cleffa"
},
illustrator: "Kagemaru Himeno",
rarity: "Classic Collection",
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,
description: {
en: "Because of its unusual, star-like silhouette, people believe that it came here on a meteor."
},
variants: {
reverse: false,
normal: false
}
}
export default card