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

55
data-asia/S/SC1D/026.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../SC1D"
const card: Card = {
set: Set,
name: {
'zh-tw': "閃焰王牌"
},
illustrator: "Naoki Saito",
category: "Pokemon",
hp: 170,
types: ["Fire"],
description: {
'zh-tw': "會將小石頭像足球般用腳挑起,製造出纏繞著火焰的足球。會用猛烈的踢射來燃燒對手。"
},
stage: "Stage2",
attacks: [{
name: {
'zh-tw': "火焰球"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【灼傷】。"
},
damage: 50,
cost: ["Fire"]
}, {
name: {
'zh-tw': "燃燒踢"
},
effect: {
'zh-tw': "將這隻寶可夢身上附加的能量全部丟棄。"
},
damage: 160,
cost: ["Fire", "Fire"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card