1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-29 11:09:51 +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/SCC/101.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../SCC"
const card: Card = {
set: Set,
name: {
'zh-tw': "流氓熊貓"
},
illustrator: "HYOGONOSUKE",
category: "Pokemon",
hp: 140,
types: ["Darkness"],
description: {
'zh-tw': "透過葉子來洞悉敵人的動向。只要使出一記拳擊就能讓大型砂石車變成廢鐵。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "敲擊之錘"
},
effect: {
'zh-tw': "將對手的牌庫上方1張卡丟棄。"
},
damage: 90,
cost: ["Darkness", "Darkness", "Colorless"]
}, {
name: {
'zh-tw': "恐嚇掠奪"
},
effect: {
'zh-tw': "在不看正面的情況下選擇1張對手的手牌將其丟棄。"
},
damage: 150,
cost: ["Darkness", "Darkness", "Darkness", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 4,
regulationMark: "E"
}
export default card