mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
50 lines
648 B
TypeScript
50 lines
648 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Wizards Black Star Promos'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Cleffa",
|
|
fr: "Mélo"
|
|
},
|
|
|
|
illustrator: "Ken Sugimori",
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
set: Set,
|
|
|
|
dexId: [
|
|
173,
|
|
],
|
|
|
|
hp: 30,
|
|
|
|
types: [
|
|
"Colorless",
|
|
],
|
|
|
|
stage: "Basic",
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Eek",
|
|
fr: "Hi !"
|
|
},
|
|
effect: {
|
|
en: "Draw 2 cards",
|
|
fr: "Piochez 2 cartes."
|
|
},
|
|
|
|
},
|
|
],
|
|
|
|
description: {
|
|
fr: "À cause de son étrange forme en étoile, les gens pensent qu'il est arrivé ici sur un météore."
|
|
}
|
|
}
|
|
|
|
export default card
|