mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
31 lines
1.1 KiB
TypeScript
31 lines
1.1 KiB
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV8a"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
ja: "改造ハンマー",
|
||
id: "Palu Luar Biasa",
|
||
th: "ค้อนสลายพลังงาน",
|
||
'zh-tw': "改造之錘",
|
||
'zh-cn': "改造之錘"
|
||
},
|
||
|
||
illustrator: "Eske Yoshinob",
|
||
rarity: "None",
|
||
category: "Trainer",
|
||
|
||
effect: {
|
||
ja: "相手の場のポケモンについている特殊エネルギーを1個選び、トラッシュする。",
|
||
id: "Pilih 1 Energi Spesial yang dikenakan pada Pokémon di Arena lawan, lalu buang ke Trash.",
|
||
th: "เลือกพลังงานพิเศษที่ติดอยู่กับโปเกมอนบนกระดานฝ่ายตรงข้าม 1 ลูก ทิ้งที่ตำแหน่งทิ้งการ์ด",
|
||
'zh-tw': "選擇1個對手的場上寶可夢身上附加的特殊能量,將其丟棄。",
|
||
'zh-cn': "選擇1個對手的場上寶可夢身上附加的特殊能量,將其丟棄。"
|
||
},
|
||
|
||
trainerType: "Item",
|
||
regulationMark: "H"
|
||
}
|
||
|
||
export default card |