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

60 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: "Ogerpon Topeng Sumur"
},
illustrator: "rika",
category: "Pokemon",
hp: 110,
types: ["Water"],
description: {
th: "ร่างที่เชี่ยวชาญทั้งรุกและรับ ปลดปล่อยท่าออกมาได้อย่างไม่หยุดหย่อน ดั่งสายน้ำที่พรั่งพรูออกมาไม่ขาดสาย",
id: "Wujud yang unggul dalam menyerang dan bertahan. Ia dapat terus melancarkan jurusnya tanpa henti seperti air yang terus menyembur keluar."
},
stage: "Basic",
attacks: [{
name: {
th: "รำสักการะน้ำ",
id: "Pertunjukan Spiritual Air"
},
effect: {
th: "เลือกการ์ด [พลังงานพื้นฐาน[น้ำ]] 1 ใบจากสำรับการ์ดฝ่ายเรา ติดที่โปเกมอน ฝ่ายเรา แล้วสับสำรับการ์ด",
id: "Pilih 1 lembar Energi Dasar {Air} dari Deck sendiri, lalu kenakan pada Pokémon sendiri. Kemudian, kocok Deck."
},
cost: ["Colorless"]
}, {
name: {
th: "บับเบิลเดรน",
id: "Bubble Drain"
},
effect: {
th: "ฟื้นฟู HP ของโปเกมอนนี้ [30]",
id: "Pulihkan HP Pokémon ini sejumlah 30."
},
damage: 100,
cost: ["Water", "Water", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "I"
}
export default card