1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-06 05:19:55 +00:00

60 lines
1.4 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 "../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