mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-07 05:49:53 +00:00
22 lines
367 B
TypeScript
22 lines
367 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Extradimensional Crisis"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Looker"
|
|
},
|
|
|
|
illustrator: "Hideki Ishikawa",
|
|
rarity: "Two Diamond",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
en: "Your opponent reveals all of the Supporter cards in their deck."
|
|
},
|
|
|
|
trainerType: "Supporter"
|
|
}
|
|
|
|
export default card |