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

60
data-asia/SV/SV9s/054.ts Normal file
View File

@ -0,0 +1,60 @@
import { Card } from "../../../interfaces"
import Set from "../SV9s"
const card: Card = {
set: Set,
name: {
th: "จุปเป็ตตะ",
id: "Banette"
},
illustrator: "Anesaki Dynamic",
category: "Pokemon",
hp: 90,
types: ["Psychic"],
description: {
th: "จิตเคียดแค้นสั่งสมในตัวตุ๊กตาที่ถูกทิ้งจนกลายเป็นโปเกมอน พบเจอได้ ในตรอกมืดสลัว",
id: "Perasaan dendam terkumpul pada boneka yang dibuang dan berubah menjadi Pokémon. Banette dapat dijumpai di lorong jalan yang gelap."
},
stage: "Stage1",
attacks: [{
name: {
th: "ถ้อยคำสาปแช่ง",
id: "Kata-kata Kutukan"
},
effect: {
th: "ฝ่ายตรงข้ามเลือกการ์ดบนมือฝ่ายตรงข้ามเอง 3 ใบ ใส่กลับไปในสำรับการ์ด แล้วสับ",
id: "Lawan memilih 3 lembar Kartu Pegangannya, lalu mengocoknya kembali ke Deck."
},
cost: ["Psychic"]
}, {
name: {
th: "ฮอลโลว์ช็อต",
id: "Hollow Shot"
},
damage: 70,
cost: ["Psychic", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "I"
}
export default card