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

61 lines
1.9 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: "Sandaconda <Hop>"
},
illustrator: "Sanosuke Sakuma",
category: "Pokemon",
hp: 140,
types: ["Fighting"],
description: {
th: "ยืดและหดร่างกายอย่างสุดกำลังเพื่อพ่นทรายด้วยความแรงที่สามารถ พัดได้กระทั่งรถบรรทุกเทท้าย",
id: "Sandaconda berkontraksi dan meregang semaksimal mungkin dan menyemburkan pasir yang kekuatannya dapat menggulingkan truk jungkit."
},
stage: "Stage1",
attacks: [{
name: {
th: "พสุธากัมปนาท",
id: "Gelegar Tanah"
},
effect: {
th: "เทิร์นถัดไปของฝ่ายตรงข้าม โปเกมอนที่ได้รับท่าต่อสู้นี้ จะหนีไม่ได้",
id: "Pada giliran lawan berikutnya, Pokémon yang menerima serangan ini tidak dapat Mundur."
},
damage: 30,
cost: ["Fighting", "Colorless"]
}, {
name: {
th: "กราวนด์เบรก",
id: "Ground Break"
},
effect: {
th: "โปเกมอนบนเบนช์ฝ่ายเราทุกตัว ก็จะได้รับแดเมจตัวละ 20 ด้วย {โปเกมอน บนเบนช์จะไม่นำจุดอ่อนและความต้านทานมาคิด}",
id: "Serangan ini juga memberikan kerusakan masing-masing sejumlah 20 kepada semua Pokémon Cadangan sendiri. [Kelemahan dan Resistansi Pokémon Cadangan tidak mempengaruhi jumlah kerusakan.]"
},
damage: 140,
cost: ["Fighting", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 3,
regulationMark: "I"
}
export default card