1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

39 lines
602 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."
}
}
export default card