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

60
data-asia/SV/SV8s/126.ts Normal file
View File

@ -0,0 +1,60 @@
import { Card } from "../../../interfaces"
import Set from "../SV8s"
const card: Card = {
set: Set,
name: {
id: "Klefki",
th: "เคลฟฟี"
},
illustrator: "mingo",
category: "Pokemon",
hp: 70,
types: ["Metal"],
description: {
id: "Keluarga bangsawan zaman dulu secara turun-temurun mewariskan dan menjaga dengan baik Klefki yang dipercaya untuk mengelola kunci brankas.",
th: "ขุนนางสมัยก่อนจากรุ่นสู่รุ่นจะดูแลเคลฟฟีที่คอยรักษากุญแจห้องเก็บ สมบัติเป็นอย่างดี"
},
stage: "Basic",
attacks: [{
name: {
id: "Ambil Mengisi",
th: "สอดเข้าจั่ว"
},
effect: {
id: "Buang 1 lembar Kartu Pegangan sendiri ke Trash. Setelah itu, ambil 2 kartu dari atas Deck sendiri.",
th: "ทิ้งการ์ดบนมือฝ่ายเรา 1 ใบที่ตำแหน่งทิ้งการ์ด หลังจากนั้น จั่วการ์ด 2 ใบ จากสำรับการ์ดฝ่ายเรา"
},
cost: ["Colorless"]
}, {
name: {
id: "Mengait",
th: "จับแขวน"
},
damage: 20,
cost: ["Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 1,
regulationMark: "H"
}
export default card