mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
22 lines
373 B
TypeScript
22 lines
373 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../SV6s"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
id: "Palu Luar Biasa"
|
|
},
|
|
|
|
illustrator: "Eske Yoshinob",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
id: "Pilih 1 Energi Spesial yang dikenakan pada Pokémon di Arena lawan, lalu buang ke Trash."
|
|
},
|
|
|
|
trainerType: "Item",
|
|
regulationMark: "H"
|
|
}
|
|
|
|
export default card |