mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-20 07:09:54 +00:00
23 lines
441 B
TypeScript
23 lines
441 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Genetic Apex"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Misty"
|
|
},
|
|
|
|
illustrator: "Sanosuke Sakuma",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
en: "Choose 1 of your W Pokémon, and flip a coin until you get tails. For each heads, take a W Energy from your Energy Zone and attach it to that Pokémon."
|
|
},
|
|
|
|
trainerType: "Supporter",
|
|
rarity: "Two Star"
|
|
}
|
|
|
|
export default card
|