mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
57 lines
963 B
TypeScript
57 lines
963 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SC1D"
|
||
|
||
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
|