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

51
data-asia/SV/SVF/001.ts Normal file
View File

@ -0,0 +1,51 @@
import { Card } from "../../../interfaces"
import Set from "../SVF"
const card: Card = {
set: Set,
name: {
'zh-tw': "光輝噴火龍"
},
illustrator: "Kouki Saitou",
category: "Pokemon",
hp: 160,
types: ["Fire"],
stage: "Basic",
abilities: [{
type: "Ability",
name: {
'zh-tw': "激動之心"
},
effect: {
'zh-tw': "這隻寶可夢使用招式所需的【無】能量,減少對手已經獲得的獎賞卡的張數數量。"
}
}],
attacks: [{
name: {
'zh-tw': "烈焰爆"
},
effect: {
'zh-tw': "在下個自己的回合,這隻寶可夢無法使用「烈焰爆」。"
},
damage: 250,
cost: ["Fire", "Colorless", "Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 3,
regulationMark: "F"
}
export default card