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

54
data-asia/S/SC1b/130.ts Normal file
View File

@ -0,0 +1,54 @@
import { Card } from "../../../interfaces"
import Set from "../SC1b"
const card: Card = {
set: Set,
name: {
'zh-tw': "穿著熊"
},
illustrator: "Ryuta Fuse",
category: "Pokemon",
hp: 140,
types: ["Colorless"],
description: {
'zh-tw': "如果牠認定你是牠的夥伴,便會試著擁抱你來表示喜愛。但這會弄碎你的骨頭,非常危險。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "臂錘"
},
effect: {
'zh-tw': "將對手的牌庫上方1張卡丟棄。"
},
damage: 90,
cost: ["Colorless", "Colorless", "Colorless"]
}, {
name: {
'zh-tw': "一擲千斤"
},
effect: {
'zh-tw': "擲1次硬幣若為正面則將對手的戰鬥寶可夢與附加的卡全部丟棄。"
},
cost: ["Colorless", "Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 3,
regulationMark: "D"
}
export default card