mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
50 lines
632 B
TypeScript
50 lines
632 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Skyridge'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Cleffa",
|
|
de: "Pii"
|
|
},
|
|
illustrator: "Miki Tanaka",
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
|
|
set: Set,
|
|
dexId: [
|
|
173,
|
|
],
|
|
hp: 30,
|
|
types: [
|
|
"Colorless",
|
|
],
|
|
|
|
stage: "Basic",
|
|
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Energy Recycle",
|
|
de: "Energierecycling"
|
|
},
|
|
effect: {
|
|
en: "Shuffle a basic Energy card from your discard pile into your deck.",
|
|
de: "Mische eine Basis-Energiekarte aus deinem Ablagestapel in dein Deck."
|
|
},
|
|
|
|
},
|
|
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
export default card
|