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:
52
data-asia/SV/SV1a/047.ts
Normal file
52
data-asia/SV/SV1a/047.ts
Normal 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
|
Reference in New Issue
Block a user