1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

59 lines
1.9 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 "../SV2a"
const card: Card = {
set: Set,
name: {
ja: "オムナイト",
'zh-tw': "菊石獸",
th: "ออมไนต์",
id: "Omanyte"
},
illustrator: "Akira Komayama",
rarity: "Uncommon",
category: "Pokemon",
dexId: [138],
hp: 100,
types: ["Water"],
description: {
ja: "絶滅した 古代のポケモン。 10本の脚で 水を かき 漂うように 泳ぐ。",
'zh-tw': "一度滅絕的古代寶可夢。會使用10隻腳划水, 在水中一漂一浮地游動。",
th: "เป็นโปเกมอนดึกดำบรรพ์ที่สูญพันธุ์ไปแล้ว ว่ายน้ำโดยการตวัดขาทั้งสิบบนน้ำราวกับลอยตัวอยู่",
id: "Pokémon purba yang telah punah. Omanyte mengayuh air menggunakan sepuluh kakinya dan berenang bagai mengambang."
},
stage: "Stage1",
attacks: [{
cost: ["Water", "Water"],
name: {
ja: "しょくしゅでもどす",
'zh-tw': "觸手復元",
th: "ใส่กลับด้วยหนวด",
id: "Tentakel Pengembali"
},
damage: 50,
effect: {
ja: "相手のバトルポケモンについているエネルギーを1個選び、相手の手札にもどす。",
'zh-tw': "選擇1個對手的戰鬥寶可夢身上附加的能量放回對手的手牌。",
th: "เลือกพลังงานที่ติดอยู่กับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม 1 ลูก นำกลับขึ้นมือฝ่ายตรงข้าม",
id: "Pilih 1 Energi yang dikenakan pada Pokémon Bertarung lawan, lalu kembalikan ke Kartu Pegangan lawan."
}
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card