1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-30 19:40:48 +00:00

feat: Add SV8s (#675)

This commit is contained in:
2025-02-28 08:44:50 +01:00
committed by GitHub
parent e4099defdb
commit e8e9c23e14
245 changed files with 11903 additions and 0 deletions

61
data-asia/SV/SV8s/125.ts Normal file
View File

@ -0,0 +1,61 @@
import { Card } from "../../../interfaces"
import Set from "../SV8s"
const card: Card = {
set: Set,
name: {
id: "Bronzong",
th: "โดทาคุน"
},
illustrator: "kawayoo",
category: "Pokemon",
hp: 130,
types: ["Metal"],
description: {
id: "Bronzong membuka lubang ke dunia lain dan menurunkan hujan dari sana. Oleh karena itu, Pokémon ini dijadikan sebagai dewa pembawa berkah panen.",
th: "เปิดรูเชื่อมไปยังโลกอื่นแล้วทำให้ฝนตกลงมาจากรูนั้น จึงถูกบูชาใน ฐานะเทพแห่งการเกษตร"
},
stage: "Stage1",
attacks: [{
name: {
id: "Serangan Berputar",
th: "โจมตีหมุนวน"
},
damage: 50,
cost: ["Metal", "Colorless"]
}, {
name: {
id: "Double Impact",
th: "ดับเบิลอิมแพกต์"
},
effect: {
id: "Lempar koin 2 kali. Serangan ini memberikan kerusakan sejumlah 100 untuk tiap lemparan dengan hasil sisi depan.",
th: "ทอยเหรียญ 2 ครั้ง แดเมจจะเท่ากับจำนวนครั้งที่ออกหัว x100"
},
damage: "100×",
cost: ["Metal", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 3,
regulationMark: "H"
}
export default card