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

56 lines
949 B
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 "../S10a"
const card: Card = {
set: Set,
name: {
'zh-tw': "怪力"
},
illustrator: "Nisota Niso",
category: "Pokemon",
hp: 150,
types: ["Fighting"],
description: {
'zh-tw': "能夠迅速活動4隻手臂,從各種角度毫不停歇地 使出拳擊或手刀。"
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
'zh-tw': "火場筋力"
},
effect: {
'zh-tw': "若對手剩餘獎賞卡的張數為3張以下則這隻寶可夢的最大HP增加「150」。"
}
}],
attacks: [{
name: {
'zh-tw': "剛腕金勾臂"
},
effect: {
'zh-tw': "若希望增加100點傷害。這個情況下在下個自己的回合這隻寶可夢無法使用招式。"
},
damage: "100+",
cost: ["Fighting", "Fighting"]
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 2,
regulationMark: "F"
}
export default card