1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

71 lines
2.0 KiB
TypeScript
Raw Permalink 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 "../SV6"
const card: Card = {
set: Set,
name: {
ja: "オニゴーリ",
'zh-tw': "冰鬼護",
th: "โอนิโกริ"
},
category: "Pokemon",
rarity: "Uncommon",
illustrator: "Oku",
dexId: [362],
hp: 120,
types: ["Water"],
description: {
ja: "空気中の 水分を 一瞬で 凍らせることで 獲物が 逃げられないように する。",
'zh-tw': "會透過瞬間凍結 空氣中的水分, 使獵物無法逃脫。",
th: "ทำให้เหยื่อไม่สามารถหนีได้โดยการแช่แข็งน้ำในอากาศในชั่วพริบตา"
},
stage: "Stage1",
attacks: [{
cost: ["Water"],
name: {
ja: "ダメージビート",
'zh-tw': "傷害律動",
th: "แดเมจบีต"
},
damage: "20×",
effect: {
ja: "相手のバトルポケモンにのっているダメカンの数×20ダメージ。",
'zh-tw': "造成對手的戰鬥寶可夢身上放置的傷害指示物的數量×20點傷害。",
th: "แดเมจจะเท่ากับจำนวนตัวนับแดเมจที่วางอยู่บนโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม x20"
}
}, {
cost: ["Water", "Colorless", "Colorless"],
name: {
ja: "クレイジーヘッズ",
'zh-tw': "瘋狂頭",
th: "เครซีเฮด"
},
damage: 140,
effect: {
ja: "このポケモンについているエネルギーを1個選び、トラッシュする。",
'zh-tw': "選擇1個這隻寶可夢身上附加的能量將其丟棄。",
th: "เลือกพลังงานที่ติดอยู่กับโปเกมอนนี้ 1 ลูก ทิ้งที่ตำแหน่งทิ้งการ์ด"
}
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "H"
}
export default card