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

63 lines
2.1 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 "../SV3a"
const card: Card = {
set: Set,
name: {
ja: "ヘイラッシャ",
'zh-tw': "吃吼霸",
th: "เฮรัชเชอร์"
},
illustrator: "Kouki Saitou",
rarity: "Uncommon",
category: "Pokemon",
dexId: [977],
hp: 160,
types: ["Water"],
description: {
ja: "大食らいだが エサを 取るのは 苦手。 シャリタツと コンビを 組んで 獲物を 捕らえるのだ。",
'zh-tw': "雖然是個大胃王,但不擅長捕食。 會和米立龍聯手捕捉獵物。",
th: "เป็นโปเกมอนที่ตะกละแต่กลับหาอาหารไม่เก่ง มักจับคู่กับชาริทัตสึเพื่อจับเหยื่อ"
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "まるのみほきゅう",
'zh-tw': "大口吞補給",
th: "เขมือบเติมเต็ม"
},
effect: {
ja: "自分の山札を上から5枚見て、その中から基本エネルギーを好きなだけ選び、このポケモンにつける。残りのカードは山札にもどして切る。",
'zh-tw': "查看自己的牌庫上方5張卡從其中選擇任意數量的基本能量卡附於這隻寶可夢身上。將剩餘卡放回牌庫並重洗。",
th: "ดูการ์ด 5 ใบจากด้านบนของสำรับการ์ดฝ่ายเรา เลือกการ์ดพลังงานพื้นฐานจากในนั้นตามจำนวนที่ชอบ ติดที่โปเกมอนนี้ การ์ดที่เหลือใส่กลับไปในสำรับการ์ดแล้วสับ"
}
}, {
cost: ["Water", "Colorless", "Colorless", "Colorless", "Colorless"],
name: {
ja: "ハイドロスプラッシュ",
'zh-tw': "水炮濺射",
th: "ไฮโดรสแปลช"
},
damage: 180
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 4,
regulationMark: "G"
}
export default card