1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

60 lines
1.9 KiB
TypeScript
Raw Permalink 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 "../SV7s"
const card: Card = {
set: Set,
name: {
th: "การะการะ",
id: "Marowak"
},
illustrator: "cochi8i",
category: "Pokemon",
hp: 120,
types: ["Fighting"],
description: {
th: "เมื่อผ่านพ้นความเศร้าโศกไปแล้วก็จะวิวัฒนาการจนกล้าแกร่งขึ้น ใช้กระดูกเป็นอาวุธต่อสู้กับศัตรูอย่างกล้าหาญ",
id: "Telah mengatasi kesedihannya dan berevolusi menjadi Pokémon yang tangguh. Marowak menghadapi musuh dengan gagah berani menggunakan tulang sebagai senjatanya."
},
stage: "Stage1",
attacks: [{
name: {
th: "เสียงร้อง",
id: "Bersuara"
},
effect: {
th: "เทิร์นถัดไปของฝ่ายตรงข้าม แดเมจของท่าต่อสู้ที่โปเกมอนที่ได้รับท่าต่อสู้นี้ใช้ จะถูก [-40]",
id: "Pada giliran lawan berikutnya, kerusakan akibat serangan yang digunakan oleh Pokémon yang menerima serangan ini berkurang sejumlah 40."
},
cost: ["Fighting"]
}, {
name: {
th: "กระดูกแก้แค้น",
id: "Balas Dendam Tulang"
},
effect: {
th: "ถ้า [คาระคาระ] บนเบนช์ฝ่ายเรามีตัวนับแดเมจวางอยู่ การโจมตีนี้จะเพิ่มแดเมจอีก 120",
id: "Jika Cubone di Cadangan sendiri memiliki Token Kerusakan, kerusakan yang diberikan bertambah sejumlah 120."
},
damage: "60+",
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2,
regulationMark: "H"
}
export default card