mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
22 lines
383 B
TypeScript
22 lines
383 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../SV8s"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
id: "Gunung Gravitasi"
|
|
},
|
|
|
|
illustrator: "AYUMI ODASHIMA",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
id: "HP maksimal semua Pokémon Stage 2 di Arena kedua pemain masing-masing berkurang sejumlah 30."
|
|
},
|
|
|
|
trainerType: "Stadium",
|
|
regulationMark: "H"
|
|
}
|
|
|
|
export default card |