1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-07 02:29:18 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,70 @@
import { Card } from '../../../interfaces'
import Set from '../Diamond & Pearl'
const card: Card = {
name: {
en: "Clefairy",
fr: "Melofée",
},
illustrator: "Ken Sugimori",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
35,
],
hp: 60,
types: [
"Colorless",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Sing",
fr: "Berceuse",
},
effect: {
en: "The Defending Pokémon is now Asleep.",
fr: "Le Pokémon Défenseur est maintenant Endormi.",
},
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Moon Impact",
fr: "Impact lunaire",
},
effect: {
en: "If Clefairy is evolved from Cleffa, this attack does 20 damage plus 20 more damage.",
fr: "Si Melofée évolue de Melo, cette attaque inflige 20 dégâts plus 20 dégâts supplémentaires.",
},
damage: 20,
},
],
weaknesses: [
{
type: "Fightning",
value: "+10"
},
],
retreat: 1,
}
export default card