mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 01:19:18 +00:00
feat: Add SV9s (#746)
This commit is contained in:
62
data-asia/SV/SV9s/068.ts
Normal file
62
data-asia/SV/SV9s/068.ts
Normal file
@ -0,0 +1,62 @@
|
||||
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
|
Reference in New Issue
Block a user