1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-08 10:17:50 +00:00
Florian Bouillon dc4d1bd6cb
Fix HeartGold SoulSilver datas (#73)
* Update

Signed-off-by: Avior <github@avior.me>

* Update datas

Signed-off-by: Avior <github@avior.me>

* Finished fix

Signed-off-by: Avior <github@avior.me>

* Updated some more

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Some more updates

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-09-29 21:43:33 +00:00

71 lines
1.2 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../HeartGold SoulSilver'
const card: Card = {
name: {
en: "Cleffa",
fr: "Mélo",
},
illustrator: "Masakazu Fukuda",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
173,
],
hp: 30,
types: [
"Colorless",
],
stage: "Basic",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Sweet Sleeping Face",
fr: "Joli visage endormi",
},
effect: {
en: "As long as Cleffa is Asleep, prevent all damage done to Cleffa by attacks.",
fr: "Tant que Mélo reste Endormi, prévenez tous les dégâts qui peuvent lui être infligés par des attaques.",
},
},
],
attacks: [
{
name: {
en: "Eeeeeeek",
fr: "Arheuuuuu",
},
effect: {
en: "Shuffle your hand into your deck, then draw 6 cards. Cleffa is now Asleep.",
fr: "Mélangez votre main avec votre deck, piochez ensuite 6 cartes. Mélo est maintenant Endormi.",
},
},
],
retreat: 0,
description: {
en: "Because of its unusual, star-like silhouette, people believe that it came here on a meteor."
},
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card