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

61
data-asia/S/S5a/055.ts Normal file
View File

@ -0,0 +1,61 @@
import { Card } from "../../../interfaces"
import Set from "../S5a"
const card: Card = {
set: Set,
name: {
'zh-tw': "一擊武道熊師",
th: "วูลาโอส จู่โจมครั้งเดียว"
},
illustrator: "Mitsuhiro Arita",
category: "Pokemon",
hp: 140,
types: ["Darkness"],
description: {
'zh-tw': "棲息在遙遠地區的山岳地帶。會在斷崖絕壁上來回奔跑鍛鍊下盤,磨練招式。",
th: "อาศัยอยู่ในเทือกเขาของภูมิภาคอันห่างไกล วิ่งขึ้นหน้าผาสูงชันเพื่อฝึกกำลังขากับเอว และฝึกฝนท่าต่อสู้"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "場地粉碎",
th: "ทำลายสนาม"
},
effect: {
'zh-tw': "將場上的對手的競技場卡丟棄。",
th: "ทิ้งการ์ดสเตเดียมฝ่ายตรงข้ามที่วางบนกระดานบนตำแหน่งทิ้งการ์ด"
},
damage: 50,
cost: ["Darkness", "Colorless"]
}, {
name: {
'zh-tw': "修羅拳",
th: "หมัดชูร่า"
},
effect: {
'zh-tw': "若這隻寶可夢身上放置有傷害指示物則增加100點傷害。",
th: "ถ้าโปเกมอนนี้มีตัวนับแดเมจวางอยู่ การโจมตีนี้จะเพิ่มแดเมจอีก 100"
},
damage: "100+",
cost: ["Darkness", "Darkness", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2,
regulationMark: "E"
}
export default card