1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-29 19:19:50 +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

50
data-asia/S/SC1a/004.ts Normal file
View File

@ -0,0 +1,50 @@
import { Card } from "../../../interfaces"
import Set from "../Sc1a"
const card: Card = {
set: Set,
name: {
'zh-tw': "頑皮雷彈"
},
illustrator: "otumami",
category: "Pokemon",
hp: 90,
types: ["Lightning"],
description: {
'zh-tw': "擁有被電力吸引的特質。主要聚集在發電廠吃剛產出的電力,是一群令人頭疼的傢伙。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "集球"
},
effect: {
'zh-tw': "從自己的牌庫選擇最多3張能量卡在給對手看過後加入手牌。並且重洗牌庫。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "滾球攻擊"
},
damage: 70,
cost: ["Lightning", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 0,
regulationMark: "D"
}
export default card