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

56 lines
961 B
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 "../S4a"
const card: Card = {
set: Set,
name: {
'zh-tw': "長毛巨魔"
},
illustrator: "nagimiso",
category: "Pokemon",
hp: 170,
types: ["Darkness"],
description: {
'zh-tw': "透過用頭髮裹住全身,讓肌肉的力量向上提升。能發揮出足以壓倒怪力的力量。"
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
'zh-tw': "惡之制約"
},
effect: {
'zh-tw': "只要這隻寶可夢在戰鬥場上對手的戰鬥寶可夢使用招式所需的能量增加1個【無】能量。"
}
}],
attacks: [{
name: {
'zh-tw': "能量壓制"
},
effect: {
'zh-tw': "增加對手的戰鬥寶可夢身上附加的能量的數量×30點傷害。"
},
damage: "100+",
cost: ["Darkness", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 3,
regulationMark: "D"
}
export default card