1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-24 17:09:55 +00:00

81 lines
1.3 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Guardians Rising'
const card: Card = {
name: {
en: "Clefable",
fr: "Mélodelfe",
},
illustrator: "Miki Tanaka",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
36,
],
hp: 100,
types: [
"Fairy",
],
evolveFrom: {
en: "Clefairy",
fr: "Mélofée",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Lullaby",
fr: "Comptine",
},
effect: {
en: "Your opponent's Active Pokémon is now Asleep.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Endormi.",
},
damage: 20,
},
{
cost: [
"Fairy",
"Colorless",
"Colorless",
],
name: {
en: "Meteor Mash",
fr: "Poing Météore",
},
effect: {
en: "During your next turn, this Pokémon's Meteor Mash attack does 60 more damage (before applying Weakness and Resistance).",
fr: "Pendant votre prochain tour, lattaque Poing Météore de ce Pokémon inflige 60 dégâts supplémentaires (avant application de la Faiblesse et de la Résistance).",
},
damage: 60,
},
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
resistances: [
{
type: "Darkness",
value: "-20"
},
],
retreat: 1,
}
export default card