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

57 lines
1.9 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 "../S5I"
const card: Card = {
set: Set,
name: {
'zh-tw': "黑魯加",
th: "เฮลการ์"
},
illustrator: "Ryota Murayama",
category: "Pokemon",
hp: 130,
types: ["Darkness"],
description: {
'zh-tw': "特徵是令人不寒而慄的長嚎。過去人們認為牠是來自地獄的使者,對牠十分畏懼。",
th: "มีจุดเด่นที่เสียงหอนอันชวนขนลุก ในอดีตผู้คนต่างหวาดกลัวในฐานะภูตรับใช้จากนรก"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "一擊咆哮",
th: "เสียงคำรามจู่โจมครั้งเดียว"
},
effect: {
'zh-tw': "在自己的回合時可使用1次。從自己的牌庫選擇1張「一擊能量」卡附於自己的「一擊」寶可夢身上。並且重洗牌庫。然後在附上那張卡的寶可夢身上放置2個傷害指示物。",
th: "ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา เลือกการ์ด [พลังงานจู่โจมครั้งเดียว] 1 ใบจากสำรับการ์ดฝ่ายเรา ติดที่โปเกมอน ฝ่ายเรา แล้วสับสำรับการ์ด จากนั้น วางตัวนับแดเมจ 2 ตัวบนโปเกมอนที่ติดการ์ดนั้น"
}
}],
attacks: [{
name: {
'zh-tw': "暗之牙",
th: "เขี้ยวแห่งความมืด"
},
damage: 50,
cost: ["Darkness", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2,
regulationMark: "E"
}
export default card