1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-27 18:39:54 +00:00

62 lines
1.7 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: "Regirock"
},
illustrator: "Uta",
category: "Pokemon",
hp: 130,
types: ["Fighting"],
description: {
th: "แม้จะใช้เทคโนโลยีทางวิทยาศาสตร์ใหม่ล่าสุดเข้าสำรวจร่างหินผานั้น ก็ไม่สามารถหาสมองหรือหัวใจพบได้",
id: "Menggunakan teknologi ilmiah terbaru, dilakukan pemeriksaan atas tubuh batu Regirock, tetapi otak dan jantung Pokémon ini tidak dapat ditemukan."
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
th: "เกราะหิน",
id: "Zirah Batu"
},
effect: {
th: "ถ้าโปเกมอนนี้มีพลังงานติดอยู่ แดเมจของท่าต่อสู้ที่โปเกมอนนี้จะได้รับจะถูก [-30]",
id: "Jika Pokémon ini mengenakan Energi, kerusakan akibat serangan yang diterima Pokémon ini berkurang sejumlah 30."
}
}],
attacks: [{
name: {
th: "บัสเตอร์แลเรียท",
id: "Buster Lariat"
},
effect: {
th: "แดเมจของท่าต่อสู้นี้จะไม่นำความต้านทานมาคิด",
id: "Kerusakan akibat serangan ini tidak terpengaruh oleh Resistansi."
},
damage: 120,
cost: ["Fighting", "Fighting", "Fighting"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 3,
regulationMark: "I"
}
export default card