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:
70
data/Diamond & Pearl/Diamond & Pearl/77.ts
Normal file
70
data/Diamond & Pearl/Diamond & Pearl/77.ts
Normal 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
|
Reference in New Issue
Block a user