1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-03 04:19: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 Tungku"
},
illustrator: "HYOGONOSUKE",
category: "Pokemon",
hp: 110,
types: ["Fire"],
description: {
th: "ร่างที่ถนัดการโจมตีมากที่สุด จู่โจมศัตรูต่อเนื่องอย่างรุนแรงดั่ง เปลวไฟที่ลุกโชนในเตาไฟ",
id: "Wujud yang paling agresif. Ia menyerang musuhnya dengan ganas seperti api yang membara di dalam tungku."
},
stage: "Basic",
attacks: [{
name: {
th: "รำสักการะไฟ",
id: "Pertunjukan Spiritual Api"
},
effect: {
th: "เลือกการ์ด [พลังงานพื้นฐาน[ไฟ]] 1 ใบจากสำรับการ์ดฝ่ายเรา ติดที่โปเกมอน ฝ่ายเรา แล้วสับสำรับการ์ด",
id: "Pilih 1 lembar Energi Dasar {Api} dari Deck sendiri, lalu kenakan pada Pokémon sendiri. Kemudian, kocok Deck."
},
cost: ["Colorless"]
}, {
name: {
th: "เพลิงประลัยกัลป์",
id: "Kobaran Api Penghangus"
},
effect: {
th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[ไหม้]",
id: "Ubah kondisi Pokémon Bertarung lawan menjadi Luka Bakar."
},
damage: 80,
cost: ["Fire", "Fire", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 1,
regulationMark: "I"
}
export default card