1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-21 07:39:54 +00:00

36 lines
520 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Genetic Apex"
const card: Card = {
set: Set,
name: {
en: "Jynx"
},
illustrator: "Oswaldo KATO",
category: "Pokemon",
hp: 80,
types: ["Psychic"],
stage: "Basic",
attacks: [{
cost: ["Psychic", "Colorless"],
name: {
en: "Psychic"
},
effect: {
en: "This attack does 20 more damage for each Energy attached to your opponent's Active Pokémon."
},
damage: "30+"
}],
retreat: 1,
rarity: "One Diamond"
}
export default card