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

69 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 "../SV4M"
const card: Card = {
set: Set,
name: {
ja: "ヒヤップ",
'zh-tw': "冷水猴",
th: "ฮิยัปปุ"
},
illustrator: "Natsumi Yoshida",
rarity: "Common",
category: "Pokemon",
dexId: [515],
hp: 70,
types: ["Water"],
description: {
ja: "頭の ふさに ためた 水は 栄養 たっぷり。 植物に かけると 大きく 育つのだ。",
'zh-tw': "頭上的毛髮叢裡儲藏的水充滿營養。如果拿來灌溉,植物就會茁壯成長。",
th: "น้ำที่สะสมไว้ในหงอนบนหัวเต็มเปี่ยมไปด้วยสารอาหาร เมื่อนำไปรดต้นไม้จะทำให้โตขึ้น"
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "なかまをよぶ",
'zh-tw': "呼朋引伴",
th: "เรียกเพื่อน"
},
effect: {
ja: "自分の山札からたねポケモンを1枚選び、ベンチに出す。そして山札を切る。",
'zh-tw': "從自己的牌庫選擇1張【基礎】寶可夢卡放置於備戰區。並且重洗牌庫。",
th: "เลือกการ์ดโปเกมอน[พื้นฐาน] 1 ใบจากสำรับการ์ดฝ่ายเรา วางบนเบนช์ แล้วสับสำรับการ์ด"
}
}, {
cost: ["Water", "Colorless", "Colorless"],
name: {
ja: "みずのはどう",
'zh-tw': "水之波動",
th: "คลื่นน้ำ"
},
damage: 30,
effect: {
ja: "相手のバトルポケモンをねむりにする。",
'zh-tw': "將對手的戰鬥寶可夢【睡眠】。",
th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[หลับ]"
}
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card