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

52
data-asia/S/SCA/031.ts Normal file
View File

@ -0,0 +1,52 @@
import { Card } from "../../../interfaces"
import Set from "../SCA"
const card: Card = {
set: Set,
name: {
'zh-tw': "頑皮雷彈"
},
illustrator: "sui",
category: "Pokemon",
hp: 90,
types: ["Lightning"],
description: {
'zh-tw': "因為體內儲存著多到快要滿出來的電能,所以稍微受點刺激就會爆炸。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "能量發電"
},
effect: {
'zh-tw': "若這隻寶可夢在備戰區則在自己的回合時可使用1次若使用則將這隻寶可夢【氣絕】。從自己的牌庫選擇最多2張【雷】能量卡以任意方式附於自己的【雷】寶可夢身上。並且重洗牌庫。"
}
}],
attacks: [{
name: {
'zh-tw': "雷電球"
},
damage: 100,
cost: ["Lightning", "Lightning", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card