1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-06 17:27:52 +00:00

69 lines
845 B
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 '../Southern Islands'
const card: Card = {
name: {
en: "Jigglypuff",
},
illustrator: "Keiko Fukuyama",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
39,
],
hp: 50,
types: [
"Colorless",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Tempting Eyes",
},
effect: {
en: "Choose 1 of your opponent's Benched Pokémon and switch it with the Defending Pokémon.",
},
},
{
cost: [
"Colorless",
],
name: {
en: "Sing",
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Asleep.",
},
},
],
weaknesses: [
{
type: "Fightning",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-30"
},
],
}
export default card