mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-11 08:21:59 +00:00
45 lines
737 B
TypeScript
45 lines
737 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,
|
|
boosters: ["ho-oh", "lugia"]
|
|
}
|
|
|
|
export default card |