1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 17:39:18 +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

61
data-asia/SV/SV9s/100.ts Normal file
View File

@ -0,0 +1,61 @@
import { Card } from "../../../interfaces"
import Set from "../SV9s"
const card: Card = {
set: Set,
name: {
th: "กิกิเกียร์ <ของ N>",
id: "Klinklang <N>"
},
illustrator: "matazo",
category: "Pokemon",
hp: 160,
types: ["Metal"],
description: {
th: "โจมตีด้วยกระแสไฟฟ้าแรงสูงจากปลายหนาม สะสมพลังงานจำนวน มากไว้ที่แกนกลางสีแดง",
id: "Klinklang menembakkan listrik yang kuat dari ujung durinya. Inti tubuh merahnya menyimpan banyak energi."
},
stage: "Stage2",
attacks: [{
name: {
th: "แมกเน็ทบลาสต์",
id: "Magnetic Blast"
},
damage: 50,
cost: ["Colorless"]
}, {
name: {
th: "ทริปเปิลสแมช",
id: "Triple Smash"
},
effect: {
th: "ทอยเหรียญ 3 ครั้ง แดเมจจะเท่ากับจำนวนครั้งที่ออกหัว x120",
id: "Lempar koin 3 kali. Serangan ini memberikan kerusakan sejumlah 120 untuk tiap lemparan dengan hasil sisi depan."
},
damage: "120×",
cost: ["Metal", "Metal", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 3,
regulationMark: "I"
}
export default card