mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-02 12:19:53 +00:00
22 lines
416 B
TypeScript
22 lines
416 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Celestial Guardians"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Lana"
|
|
},
|
|
|
|
illustrator: "Yuu Nishida",
|
|
rarity: "Two Star",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
en: "You can use this card only if you have Araquanid in play. Switch in 1 of your opponent's Benched Pokémon to the Active Spot."
|
|
},
|
|
|
|
trainerType: "Supporter"
|
|
}
|
|
|
|
export default card |