1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49:18 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

60
data-asia/SV/SV6/003.ts Normal file
View File

@ -0,0 +1,60 @@
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