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

55
data-asia/S/SC1b/060.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../SC1b"
const card: Card = {
set: Set,
name: {
'zh-tw': "巨鉗蟹"
},
illustrator: "tetsuya koizumi",
category: "Pokemon",
hp: 130,
types: ["Water"],
description: {
'zh-tw': "雖然堅硬的鉗子有著1萬馬力的力量,但尺寸太大讓牠行動遲緩。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "沉甸鉗"
},
effect: {
'zh-tw': "將對手的牌庫上方1張卡丟棄。"
},
damage: 40,
cost: ["Water"]
}, {
name: {
'zh-tw': "抓裂"
},
effect: {
'zh-tw': "若對手的戰鬥寶可夢身上放置有傷害指示物則增加60點傷害。"
},
damage: "90+",
cost: ["Water", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card