1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-27 18:39:54 +00:00

62 lines
2.0 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../SV9s"
const card: Card = {
set: Set,
name: {
th: "บูเบิร์น",
id: "Magmortar"
},
illustrator: "Tonji Matsuno",
category: "Pokemon",
hp: 130,
types: ["Fire"],
description: {
th: "ตอนที่ยิงลูกไฟร้อน 2000 องศาเซลเซียสออกมาจากปลายแขน ร่างกายจะขาวขึ้นเล็กน้อยจากความร้อน",
id: "Saat ia menembakkan bola api bersuhu 2000 ℃ dari ujung lengannya, tubuhnya sedikit memutih karena panas."
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
th: "คลื่นแม็กมา",
id: "Aura Magma"
},
effect: {
th: "ตราบใดที่โปเกมอนนี้ยังอยู่ โปเกมอนที่เป็นสภาวะ[ไหม้]ของฝ่ายตรงข้าม จำนวน ตัวนับแดเมจที่วางด้วยสภาวะ[ไหม้]จะเพิ่มขึ้น 3 ตัว",
id: "Selama Pokémon ini ada di Arena, jumlah Token Kerusakan yang diletakkan akibat kondisi Luka Bakar pada Pokémon lawan yang mengalami kondisi Luka Bakar bertambah sejumlah 3."
}
}],
attacks: [{
name: {
th: "เพลิงประลัยกัลป์",
id: "Kobaran Api Penghangus"
},
effect: {
th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว จะทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม เป็นสภาวะ[ไหม้]",
id: "Lempar koin 1 kali. Jika hasilnya sisi depan, ubah kondisi Pokémon Bertarung lawan menjadi Luka Bakar."
},
damage: 90,
cost: ["Fire", "Fire", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 2,
regulationMark: "I"
}
export default card