1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 19:02:10 +00:00

52 lines
1.2 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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