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

71 lines
2.5 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 "../SV4M"
const card: Card = {
set: Set,
name: {
ja: "ヒヤッキー",
'zh-tw': "冷水猿",
th: "ฮิยักกี"
},
illustrator: "nagimiso",
rarity: "Uncommon",
category: "Pokemon",
dexId: [516],
hp: 100,
types: ["Water"],
description: {
ja: "水が きれいな 場所を 好む。 頭に ためこんだ 水が減ると 尻尾から 吸いあげて 補給。",
'zh-tw': "喜歡水質乾淨的地方。頭上儲存的水如果減少,就會從尾巴吸取水來補給。",
th: "ชอบบริเวณที่มีน้ำสะอาด เมื่อน้ำที่สะสมบนหัวลดลง จะเติมด้วยการใช้หางดูดน้ำขึ้นมา"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
ja: "モンキートリオ",
'zh-tw': "三猴行",
th: "มังกีทริโอ"
},
effect: {
ja: "自分の場に「ヤナッキー」「バオッキー」「ヒヤッキー」がいるなら、このポケモンがワザを使うためのエネルギーは、すべてなくなる。",
'zh-tw': "若自己的場上有「花椰猿」「爆香猿」「冷水猿」,則這隻寶可夢使用招式所需的【無】能量全部消除。",
th: "ถ้าบนกระดานฝ่ายเรามี [ยานักกี] [บาอกกี] [ฮิยักกี] อยู่ พลังงาน[ไร้สี]สำหรับใช้ท่าต่อสู้ของโปเกมอนนี้ ทั้งหมดจะหายไป"
}
}],
attacks: [{
cost: ["Water", "Colorless", "Colorless"],
name: {
ja: "あびせかける",
'zh-tw': "鋪天蓋地",
th: "สาดแรง"
},
damage: 50,
effect: {
ja: "相手のベンチポケモン全員にも、それぞれ30ダメージ。ベンチは弱点・抵抗力を計算しない。",
'zh-tw': "對手的所有備戰寶可夢也各受到30點傷害。[在備戰區不計算弱點・抵抗力。]",
th: "โปเกมอนบนเบนช์ฝ่ายตรงข้ามทุกตัว ก็จะได้รับแดเมจตัวละ 30 ด้วย {โปเกมอนบนเบนช์จะไม่นำจุดอ่อนและความต้านทานมาคิด}"
}
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card