mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
22 lines
385 B
TypeScript
22 lines
385 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../SV6s"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
id: "Menara Pengacak"
|
|
},
|
|
|
|
illustrator: "AYUMI ODASHIMA",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
id: "Semua Pokémon Tool yang dikenakan pada semua Pokémon kedua pemain menjadi tidak memiliki efek."
|
|
},
|
|
|
|
trainerType: "Stadium",
|
|
regulationMark: "H"
|
|
}
|
|
|
|
export default card |