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

56
data-asia/S/SC1b/054.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: "Kouki Saitou",
category: "Pokemon",
hp: 170,
types: ["Fire"],
description: {
'zh-tw': "會將小石頭像足球般用腳挑起,製造出纏繞著火焰的足球。會用猛烈的踢射來燃燒對手。"
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
'zh-tw': "自由者"
},
effect: {
'zh-tw': "在自己的回合當從備戰區將這隻寶可夢放置於戰鬥場時可使用1次。從自己的棄牌區選擇最多2張【火】能量卡附於這隻寶可夢身上。"
}
}],
attacks: [{
name: {
'zh-tw': "閃焰前鋒"
},
effect: {
'zh-tw': "選擇2個這隻寶可夢身上附加的能量將其丟棄。"
},
damage: 190,
cost: ["Fire", "Fire", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card