mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-17 22:09:54 +00:00
22 lines
585 B
TypeScript
22 lines
585 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Space-Time Smackdown"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Volkner"
|
|
},
|
|
|
|
illustrator: "GIDORA",
|
|
rarity: "Two Star",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
en: "Choose 1 of your <a class=\"localized-string__link\" href=\"/pokemon/electivire/\">Electivire</a> or <a class=\"localized-string__link\" href=\"/pokemon/luxray/\">Luxray</a>. Attach 2 <span class=\"energy-text energy-text--type-lightning\"></span> Energy from your discard pile to that Pokémon."
|
|
},
|
|
|
|
trainerType: "Supporter"
|
|
}
|
|
|
|
export default card |