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

51
data-asia/S/SCA/054.ts Normal file
View File

@ -0,0 +1,51 @@
import { Card } from "../../../interfaces"
import Set from "../SCA"
const card: Card = {
set: Set,
name: {
'zh-tw': "沙基拉斯"
},
illustrator: "Sekio",
category: "Pokemon",
hp: 80,
types: ["Fighting"],
description: {
'zh-tw': "被外殼覆蓋,但能自由自在地跳來跳去。兼具硬度與速度,因此破壞力超群。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "沙沫"
},
damage: 20,
cost: ["Fighting"]
}, {
name: {
'zh-tw': "火箭進化"
},
effect: {
'zh-tw': "從自己的牌庫選擇1張從這隻寶可夢進化而來的卡放置於這隻寶可夢身上完成進化。然後重洗牌庫。"
},
damage: 40,
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 3,
regulationMark: "D"
}
export default card