mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-29 22:32:10 +00:00
101 lines
2.4 KiB
TypeScript
101 lines
2.4 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Guardians Rising'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Clefable",
|
||
fr: "Mélodelfe",
|
||
es: "Clefable",
|
||
it: "Clefable",
|
||
pt: "Clefable",
|
||
de: "Pixi"
|
||
},
|
||
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",
|
||
es: "Nana",
|
||
it: "Ninnananna",
|
||
pt: "Canção de Ninar",
|
||
de: "Wiegenlied"
|
||
},
|
||
effect: {
|
||
en: "Your opponent’s Active Pokémon is now Asleep.",
|
||
fr: "Le Pokémon Actif de votre adversaire est maintenant Endormi.",
|
||
es: "El Pokémon Activo de tu rival pasa a estar Dormido.",
|
||
it: "Il Pokémon attivo del tuo avversario viene addormentato.",
|
||
pt: "O Pokémon Ativo do seu oponente agora está Adormecido.",
|
||
de: "Das Aktive Pokémon deines Gegners schläft jetzt."
|
||
},
|
||
damage: 20,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Fairy",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Meteor Mash",
|
||
fr: "Poing Météore",
|
||
es: "Puño Meteoro",
|
||
it: "Meteorpugno",
|
||
pt: "Meteoro Esmagador",
|
||
de: "Sternenhieb"
|
||
},
|
||
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, l’attaque 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).",
|
||
es: "Durante tu próximo turno, el ataque Puño Meteoro de este Pokémon hace 60 puntos de daño más (antes de aplicar Debilidad y Resistencia).",
|
||
it: "Durante il tuo prossimo turno, l’attacco Meteorpugno di questo Pokémon infligge 60 danni in più, prima di aver applicato debolezza e resistenza.",
|
||
pt: "Durante a sua próxima vez de jogar, o ataque Meteoro Esmagador deste Pokémon causará 60 pontos de dano a mais (antes de aplicar Fraqueza e Resistência).",
|
||
de: "Während deines nächsten Zuges fügt die Attacke Sternenhieb dieses Pokémon 60 Schadenspunkte mehr zu (bevor Schwäche und Resistenz verrechnet werden)."
|
||
},
|
||
damage: 60,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Metal",
|
||
value: "×2"
|
||
},
|
||
],
|
||
resistances: [
|
||
{
|
||
type: "Darkness",
|
||
value: "-20"
|
||
},
|
||
],
|
||
retreat: 1,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|