mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
52 lines
1.3 KiB
TypeScript
52 lines
1.3 KiB
TypeScript
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 |