1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-03 21:02:02 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Wisdom of Sea and Sky/076.ts

44 lines
706 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Wisdom of Sea and Sky"
const card: Card = {
set: Set,
name: {
en: "Jynx"
},
illustrator: "Midori Harada",
rarity: "One Diamond",
category: "Pokemon",
hp: 80,
types: ["Psychic"],
description: {
en: "Its strange cries sound like human language.\nThere are some musicians who compose songs\nfor Jynx to sing."
},
stage: "Basic",
attacks: [{
name: {
en: "Attract Smack"
},
damage: 30,
cost: ["Psychic", "Colorless"],
effect: {
en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed."
}
}],
weaknesses: [{
type: "Darkness",
value: "+20"
}],
retreat: 2
}
export default card