1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-04 13:21:58 +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/097.ts Normal file
View File

@@ -0,0 +1,61 @@
import { Card } from "../../../interfaces"
import Set from "../SV9s"
const card: Card = {
set: Set,
name: {
th: "ชูวัลโก",
id: "Escavalier"
},
illustrator: "Takumi Wada",
category: "Pokemon",
hp: 120,
types: ["Metal"],
description: {
th: "ตั้งท่าถือหอกพร้อมบุกเข้าจู่โจมศัตรู ภาพวาดของการดวลกับ เนกิกะไนท์นั้นเป็นที่เลื่องชื่อ",
id: "Escavalier memasang tombak dan menyerang musuh. Lukisan yang menggambarkan duel antara Pokémon ini dan Sirfetch'd terkenal."
},
stage: "Stage1",
attacks: [{
name: {
th: "แทง",
id: "Melubangi"
},
damage: 20,
cost: ["Colorless"]
}, {
name: {
th: "ไอออนบัสเตอร์",
id: "Iron Buster"
},
effect: {
th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ท่าต่อสู้ไม่ได้",
id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan."
},
damage: 120,
cost: ["Metal", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 2,
regulationMark: "I"
}
export default card