mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
72 lines
1.1 KiB
TypeScript
72 lines
1.1 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Detective Pikachu'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Jigglypuff",
|
||
fr: "Rondoudou",
|
||
es: "Jigglypuff",
|
||
it: "Jigglypuff",
|
||
pt: "Jigglypuff",
|
||
de: "Pummeluff"
|
||
},
|
||
illustrator: "Framestore",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
39,
|
||
],
|
||
hp: 60,
|
||
types: [
|
||
"Fairy",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Fairy",
|
||
],
|
||
name: {
|
||
en: "Healing Melody",
|
||
fr: "Mélodie Apaisante",
|
||
es: "Melodía Curativa",
|
||
it: "Cura Melodiosa",
|
||
pt: "Melodia Curativa",
|
||
de: "Heilende Melodie"
|
||
},
|
||
effect: {
|
||
en: "Heal 10 damage from each of your Pokémon.",
|
||
fr: "Soignez 10 dégâts à chacun de vos Pokémon.",
|
||
es: "Cura 10 puntos de daño a cada uno de tus Pokémon.",
|
||
it: "Cura ciascuno dei tuoi Pokémon da 10 danni.",
|
||
pt: "Cure 10 pontos de dano de cada um dos seus Pokémon.",
|
||
de: "Heile 10 Schadenspunkte bei jedem deiner Pokémon."
|
||
},
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Metal",
|
||
value: "×2"
|
||
},
|
||
],
|
||
resistances: [
|
||
{
|
||
type: "Darkness",
|
||
value: "-20"
|
||
},
|
||
],
|
||
retreat: 1,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|