mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
24 lines
870 B
TypeScript
24 lines
870 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../SV8s"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
id: "Megaton Blower",
|
|
th: "เมกะตันโบลเวอร์"
|
|
},
|
|
|
|
illustrator: "Toyste Beach",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
id: "Buang semua Pokémon Tool dan Energi Spesial yang dikenakan pada semua Pokémon lawan dan Stadium yang ada di Arena ke Trash.",
|
|
th: "ทิ้ง [ไอเท็มติดโปเกมอน] และ [พลังงานพิเศษ] ที่ติดอยู่กับโปเกมอน ฝ่ายตรงข้ามทุกตัว และ [สเตเดียม] ที่วางอยู่บนกระดาน ทั้งหมดที่ ตำแหน่งทิ้งการ์ด"
|
|
},
|
|
|
|
trainerType: "Item",
|
|
regulationMark: "H"
|
|
}
|
|
|
|
export default card |