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

51 lines
742 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 "../SCA"
const card: Card = {
set: Set,
name: {
'zh-tw': "豪力"
},
illustrator: "AKIRA EGAWA",
category: "Pokemon",
hp: 110,
types: ["Fighting"],
description: {
'zh-tw': "因為肉體非常強韌,所以戴著力量限制腰帶來控制力量。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "踢倒"
},
damage: 30,
cost: ["Fighting"]
}, {
name: {
'zh-tw': "狂毆"
},
effect: {
'zh-tw': "擲1次硬幣若為正面則增加70點傷害。"
},
damage: "50+",
cost: ["Fighting", "Fighting", "Colorless"]
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 3,
regulationMark: "D"
}
export default card