mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-06 21:39:55 +00:00
22 lines
473 B
TypeScript
22 lines
473 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Extradimensional Crisis"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Lusamine"
|
|
},
|
|
|
|
illustrator: "Taira Akitsu",
|
|
rarity: "Two Diamond",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
en: "You can use this card only if your opponent has gotten at least 1 point.\n\nChoose 1 of your Ultra Beasts. Attach 2 random Energy from your discard pile to that Pokémon."
|
|
},
|
|
|
|
trainerType: "Supporter"
|
|
}
|
|
|
|
export default card |