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

65 lines
1.7 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': "赫拉克羅斯",
th: "เฮราครอส"
},
category: "Pokemon",
rarity: "Uncommon",
illustrator: "Toshinao Aoki",
dexId: [214],
hp: 120,
types: ["Grass"],
description: {
ja: "ものすごい 怪力の 持ち主。 自分の 体重の 100倍の 重さでも 楽に ぶん投げる。",
'zh-tw': "擁有十分驚人的怪力。 就連重量是自己體重100倍的 物體也能輕鬆扔飛。",
th: "มีพละกำลังมหาศาลมาก สามารถโยนของที่หนักกว่าตัวเอง 100 เท่าได้อย่างสบาย ๆ"
},
stage: "Basic",
attacks: [{
cost: ["Grass", "Colorless", "Colorless"],
name: {
ja: "のしかかり",
'zh-tw': "泰山壓頂",
th: "ทิ้งตัวทับ"
},
damage: 60,
effect: {
ja: "コインを1回投げオモテなら、相手のバトルポケモンをマヒにする。",
'zh-tw': "擲1次硬幣若為正面則將對手的戰鬥寶可夢【麻痺】。",
th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว จะทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[ชา]"
}
}, {
cost: ["Grass", "Colorless", "Colorless", "Colorless"],
name: {
ja: "ちきゅうなげ",
'zh-tw': "地球上投",
th: "ขว้างใส่โลก"
},
damage: 130
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 2,
regulationMark: "H"
}
export default card