1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

60 lines
1.2 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 "../SV6"
const card: Card = {
set: Set,
name: {
ja: "ヘラクロス",
'zh-tw': "赫拉克羅斯"
},
category: "Pokemon",
rarity: "Uncommon",
illustrator: "Toshinao Aoki",
dexId: [214],
hp: 120,
types: ["Grass"],
description: {
ja: "ものすごい 怪力の 持ち主。 自分の 体重の 100倍の 重さでも 楽に ぶん投げる。",
'zh-tw': "擁有十分驚人的怪力。 就連重量是自己體重100倍的 物體也能輕鬆扔飛。"
},
stage: "Basic",
attacks: [{
cost: ["Grass", "Colorless", "Colorless"],
name: {
ja: "のしかかり",
'zh-tw': "泰山壓頂"
},
damage: 60,
effect: {
ja: "コインを1回投げオモテなら、相手のバトルポケモンをマヒにする。",
'zh-tw': "擲1次硬幣若為正面則將對手的戰鬥寶可夢【麻痺】。"
}
}, {
cost: ["Grass", "Colorless", "Colorless", "Colorless"],
name: {
ja: "ちきゅうなげ",
'zh-tw': "地球上投"
},
damage: 130
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 2,
regulationMark: "H"
}
export default card