1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 16:19:18 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

56
data-asia/SV/SVDs/020.ts Normal file
View File

@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../SVDs"
const card: Card = {
set: Set,
name: {
th: "บูเบิร์น",
id: "Magmortar"
},
illustrator: "Hasuno",
category: "Pokemon",
hp: 140,
types: ["Fire"],
description: {
th: "ระหว่างที่อาศัยอยู่ ณ ปากปล่องภูเขาไฟทำให้มีร่างกายเหมือนภูเขาไฟซึ่งมีอวัยวะคล้ายแหล่งกักเก็บแม็กมาขึ้นมา",
id: "Hidup di kepundan gunung berapi membuat tubuh Magmortar menjadi seperti gunung berapi yang memiliki organ menyerupai endapan magma."
},
stage: "Stage1",
attacks: [{
name: {
th: "ไฟ",
id: "Api"
},
damage: 40,
cost: ["Fire"]
}, {
name: {
th: "โวลเคนิกฮีท",
id: "Volcanic Heat"
},
effect: {
th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ท่าต่อสู้ไม่ได้",
id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan."
},
damage: 170,
cost: ["Fire", "Fire", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 3,
regulationMark: "G"
}
export default card