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

55
data-asia/S/SCC/057.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: "Kouki Saitou",
category: "Pokemon",
hp: 90,
types: ["Lightning"],
description: {
'zh-tw': "因為體內儲存著多到快要滿出來的電能,所以稍微受點刺激就會爆炸。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "音爆"
},
effect: {
'zh-tw': "這個招式的傷害不計算弱點・抵抗力。"
},
damage: 40,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "大爆炸"
},
effect: {
'zh-tw': "這隻寶可夢也受到90點傷害。"
},
damage: 120,
cost: ["Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "E"
}
export default card