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

55
data-asia/S/S8b/111.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../S8b"
const card: Card = {
set: Set,
name: {
'zh-tw': "一擊武道熊師"
},
illustrator: "Mitsuhiro Arita",
category: "Pokemon",
hp: 140,
types: ["Darkness"],
description: {
'zh-tw': "棲息在遙遠地區的山岳地帶。會在斷崖絕壁上來回奔跑 鍛鍊下盤,磨練招式。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "場地粉碎"
},
effect: {
'zh-tw': "將場上的對手的競技場卡丟棄。"
},
damage: 50,
cost: ["Darkness", "Colorless"]
}, {
name: {
'zh-tw': "修羅拳"
},
effect: {
'zh-tw': "若這隻寶可夢身上放置有傷害指示物則增加100點傷害。"
},
damage: "100+",
cost: ["Darkness", "Darkness", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2,
regulationMark: "E"
}
export default card