1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00

50 lines
1.4 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../SV8s"
const card: Card = {
set: Set,
name: {
id: "Turtonator",
th: "บาคุกาเมส"
},
illustrator: "Rianti Hidayat",
category: "Pokemon",
hp: 120,
types: ["Dragon"],
description: {
id: "Turtonator menggendong tempurung yang dilapisi oleh bahan peledak. Jika diserang musuh, ia akan membalas dengan ledakan dahsyat.",
th: "แบกกระดองที่ถูกเคลือบด้วยดินระเบิด เอาคืนคู่ต่อสู้ที่โจมตีมาด้วย ระเบิดยักษ์"
},
stage: "Basic",
attacks: [{
name: {
id: "Bakar Gosong Habis",
th: "ไหม้หมดเกลี้ยง"
},
effect: {
id: "Pilih 1 Energi yang dikenakan pada Pokémon {ex} di Arena Bertarung lawan, lalu buang ke Trash.",
th: "เลือกพลังงานที่ติดอยู่กับ [โปเกมอน【ex】] บนตำแหน่งต่อสู้ฝ่ายตรงข้าม 1 ลูก ทิ้งที่ตำแหน่งทิ้งการ์ด"
},
cost: ["Fire"]
}, {
name: {
id: "Entakan Ledakan Panas",
th: "ตราประทับระเบิดร้อน"
},
damage: 100,
cost: ["Fighting", "Colorless", "Colorless"]
}],
retreat: 3,
regulationMark: "H"
}
export default card