1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 16:39: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

56
data-asia/S/SC1b/047.ts Normal file
View File

@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../SC1b"
const card: Card = {
set: Set,
name: {
'zh-tw': "燈火幽靈"
},
illustrator: "Kyoko Umemoto",
category: "Pokemon",
hp: 80,
types: ["Fire"],
description: {
'zh-tw': "由於牠會在人類臨終時出現,人們因此認為牠是死神的使者,對牠畏懼不已。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "首發進場"
},
effect: {
'zh-tw': "在自己的回合開始從牌庫抽出了這張卡時若自己的備戰區有空位則在加入手牌前可使用1次。將這張卡放置於自己的備戰區。"
}
}],
attacks: [{
name: {
'zh-tw': "再烤一次"
},
effect: {
'zh-tw': "從自己的棄牌區選擇1張【火】能量卡附於自己的寶可夢身上。"
},
damage: 20,
cost: ["Fire"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card