mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
70 lines
2.0 KiB
TypeScript
70 lines
2.0 KiB
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV1S"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
ja: "ヘイラッシャ",
|
||
'zh-tw': "吃吼霸",
|
||
th: "เฮรัชเชอร์",
|
||
id: "Dondozo"
|
||
},
|
||
|
||
illustrator: "Souichirou Gunjima",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
dexId: [977],
|
||
hp: 160,
|
||
types: ["Water"],
|
||
|
||
description: {
|
||
ja: "大食らいだが エサを 取るのは 苦手。 シャリタツと コンビを 組んで 獲物を 捕らえるのだ。",
|
||
'zh-tw': "雖然是個大胃王,但不擅長捕食。 會和米立龍聯手捕捉獵物。",
|
||
th: "เป็นโปเกมอนที่ตะกละแต่กลับหาอาหารไม่เก่ง มักจับคู่กับชาริทัตสึเพื่อจับเหยื่อ",
|
||
id: "Meskipun rakus, Dondozo tidak pandai menangkap makanannya. Pokémon ini membentuk tim dengan Tatsugiri untuk berburu dan menangkap mangsa."
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
attacks: [{
|
||
cost: ["Colorless", "Colorless"],
|
||
|
||
name: {
|
||
ja: "いかりちらす",
|
||
'zh-tw': "洩怒",
|
||
th: "กระจายความโกรธ",
|
||
id: "Kemarahan Menghambur"
|
||
},
|
||
|
||
damage: "50×",
|
||
|
||
effect: {
|
||
ja: "自分のトラッシュにある「シャリタツ」の枚数×50ダメージ。",
|
||
'zh-tw': "造成自己的棄牌區的「米立龍」的張數×50點傷害。",
|
||
th: "แดเมจจะเท่ากับจำนวนการ์ด [ชาริทัตสึ] ที่อยู่บนตำแหน่งทิ้งการ์ดฝ่ายเรา x50",
|
||
id: "Serangan ini memberikan kerusakan sejumlah 50 untuk tiap lembar Tatsugiri yang ada di Trash sendiri."
|
||
}
|
||
}, {
|
||
cost: ["Water", "Water", "Colorless", "Colorless"],
|
||
|
||
name: {
|
||
ja: "ヘビースプラッシュ",
|
||
'zh-tw': "重磅飛濺",
|
||
th: "เฮฟวีสแปลช",
|
||
id: "Heavy Splash"
|
||
},
|
||
|
||
damage: 120
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 4,
|
||
regulationMark: "G"
|
||
}
|
||
|
||
export default card |