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

52
data-asia/SV/SV1a/047.ts Normal file
View File

@ -0,0 +1,52 @@
import { Card } from "../../../interfaces"
import Set from "../SV1a"
const card: Card = {
set: Set,
name: {
ja: "マクノシタ",
'zh-tw': "幕下力士",
th: "มาคุโนชิตะ",
id: "Makuhita"
},
illustrator: "Kurata So",
rarity: "Common",
category: "Pokemon",
dexId: [296],
hp: 90,
types: ["Fighting"],
description: {
ja: "厳しい 稽古を 繰り返して 強くなる。 どんな 攻撃にも 耐える 根性の ポケモン。",
'zh-tw': "會在不斷的嚴格訓練中逐漸變強。能夠承受任何攻擊, 是很有毅力的寶可夢。",
th: "ฝึกหนักซ้ำไปมาจนแกร่งขึ้น เป็นโปเกมอนที่เด็ดเดี่ยวทนทานต่อการโจมตีทุกประเภท",
id: "Makuhita menjadi kuat dengan melakukan latihan keras secara berulang kali. Pokémon bernyali kuat yang tahan terhadap serangan apa pun."
},
stage: "Basic",
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
ja: "はりて",
'zh-tw': "巴掌撲擊",
th: "ฝ่ามือตบหน้า",
id: "Tamparan Menohok"
},
damage: 40
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 3,
regulationMark: "G"
}
export default card