1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 00:29:19 +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

55
data-asia/SV/SV3/095.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../SV3"
const card: Card = {
set: Set,
name: {
ja: "ホルビー",
'zh-tw': "掘掘兔",
th: "โฮรุบี"
},
illustrator: "Lee HyunJung",
rarity: "Common",
category: "Pokemon",
dexId: [659],
hp: 70,
types: ["Colorless"],
description: {
ja: "危険に 敏感。 アーマーガアの 羽音を 聴きとると あっという間に 穴を 掘って 地面に 潜る。",
'zh-tw': "對危險很敏感。只要聽到鋼鎧鴉拍打翅膀的聲音,就會馬上挖洞鑽進地下藏身。",
th: "ไวต่อภยันตราย พอได้เสียงปีกของอาร์เมอร์การ์ก็จะขุดรูแล้วมุดลงไปซ่อนใต้ดินเพียงเสี้ยววินาที"
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "ふみふみ",
'zh-tw': "踏踏",
th: "กระทืบเท้า"
},
damage: "10×",
effect: {
ja: "コインを2回投げ、オモテの数×10ダメージ。",
'zh-tw': "擲2次硬幣造成正面出現的次數×10點傷害。",
th: "ทอยเหรียญ 2 ครั้ง แดเมจจะเท่ากับจำนวนครั้งที่ออกหัว x10"
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card