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

48
data-asia/S/S4/047.ts Normal file
View File

@ -0,0 +1,48 @@
import { Card } from "../../../interfaces"
import Set from "../S4"
const card: Card = {
set: Set,
name: {
'zh-tw': "滾滾蝙蝠"
},
illustrator: "sui",
category: "Pokemon",
hp: 60,
types: ["Psychic"],
description: {
'zh-tw': "在洞窟中,如果抬頭看到牆壁上留著心形的痕跡,就代表滾滾蝙蝠住在那裡。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "赤手空拳音波"
},
effect: {
'zh-tw': "對手的所有寶可夢各受到30點傷害。若自己的手牌有1張卡以上則這個招式失敗。[在備戰區不計算弱點・抵抗力。]"
},
cost: ["Psychic"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "D"
}
export default card