1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-26 01:49:54 +00:00

60 lines
1.8 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: "Ogerpon Topeng Fondasi"
},
illustrator: "Kazumasa Yasukuni",
category: "Pokemon",
hp: 110,
types: ["Fighting"],
description: {
th: "ร่างที่โดดเด่นด้านการป้องกัน สามารถตั้งรับแรงกระแทกได้อย่าง มั่นคงดั่งฐานรากของบ้าน",
id: "Wujud yang paling unggul dalam bertahan. Ia dapat menerima guncangan dengan tangguh seperti fondasi yang menyokong rumah."
},
stage: "Basic",
attacks: [{
name: {
th: "รำสักการะหิน",
id: "Pertunjukan Spiritual Bebatuan"
},
effect: {
th: "เลือกการ์ด [พลังงานพื้นฐาน[ต่อสู้]] 1 ใบจากสำรับการ์ดฝ่ายเรา ติดที่โปเกมอน ฝ่ายเรา แล้วสับสำรับการ์ด",
id: "Pilih 1 lembar Energi Dasar {Petarung} dari Deck sendiri, lalu kenakan pada Pokémon sendiri. Kemudian, kocok Deck."
},
cost: ["Colorless"]
}, {
name: {
th: "ต่อยตีภูเขา",
id: "Menohok Gunung"
},
effect: {
th: "ทิ้งการ์ด 1 ใบจากด้านบนของสำรับการ์ดฝ่ายตรงข้ามที่ตำแหน่งทิ้งการ์ด",
id: "Buang 1 kartu dari atas Deck lawan ke Trash."
},
damage: 100,
cost: ["Fighting", "Fighting", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 1,
regulationMark: "I"
}
export default card