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

55 lines
1.4 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 "../SV5K"
const card: Card = {
set: Set,
name: {
ja: "ユキハミ",
'zh-tw': "雪吞蟲",
th: "ยูกิฮามิ"
},
illustrator: "Orca",
rarity: "Common",
category: "Pokemon",
dexId: [872],
hp: 50,
types: ["Water"],
description: {
ja: "エサは 地面に 積もった 雪。 柔らかな 新雪を 好み 山頂 目指して 食べ進む。",
'zh-tw': "地面的積雪是牠的主食。對新下的鬆軟白雪情有獨鍾, 會朝著山頂一路吃過去。",
th: "หิมะที่สุมอยู่บนพื้นคืออาหาร โปรดปรานหิมะสดใหม่ที่มีความนิ่ม โดยจะกินไปเรื่อย ๆ พลางมุ่งหน้าสู่ยอดเขา"
},
stage: "Basic",
attacks: [{
cost: ["Water"],
name: {
ja: "こなゆき",
'zh-tw': "細雪",
th: "ผงหิมะ"
},
damage: 10,
effect: {
ja: "相手のバトルポケモンをねむりにする。",
'zh-tw': "將對手的戰鬥寶可夢【睡眠】。",
th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[หลับ]"
}
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "H"
}
export default card