1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 17:09:19 +00:00

feat: Add SV9s (#746)

This commit is contained in:
2025-05-24 20:57:29 +02:00
committed by GitHub
parent db5863caee
commit 651313ce70
186 changed files with 9356 additions and 0 deletions

62
data-asia/SV/SV9s/025.ts Normal file
View File

@ -0,0 +1,62 @@
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