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

52
data-asia/SV/SV8s/120.ts Normal file
View File

@ -0,0 +1,52 @@
import { Card } from "../../../interfaces"
import Set from "../SV8s"
const card: Card = {
set: Set,
name: {
id: "Alolan Diglett",
th: "อโลลา ดิกดา"
},
illustrator: "Akino Fukuji",
category: "Pokemon",
hp: 50,
types: ["Metal"],
description: {
id: "Kumis keemasannya memiliki fitur sensorik. Ia mengeluarkan kumis dari lubang dan mendeteksi keadaan sekitar dengannya.",
th: "หนวดสีทองนั้นมีฟังก์ชันเซนเซอร์ มันจะยื่นหนวดออกมาจากรูเพื่อ ตรวจสอบบริเวณโดยรอบ"
},
stage: "Basic",
attacks: [{
name: {
id: "Serangan Kejutan",
th: "จู่โจมกะทันหัน"
},
effect: {
id: "Lempar koin 1 kali. Jika hasilnya sisi belakang, serangan ini gagal.",
th: "ทอยเหรียญ 1 ครั้งถ้าออกก้อย ท่าต่อสู้นี้จะล้มเหลว"
},
damage: 30
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 1,
regulationMark: "H"
}
export default card