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

56
data-asia/S/S-P/076.ts Normal file
View File

@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../S-P"
const card: Card = {
set: Set,
name: {
'zh-tw': "噴火龍"
},
illustrator: "Ryuta Fuse",
category: "Pokemon",
hp: 170,
types: ["Fire"],
description: {
'zh-tw': "會噴出彷彿連岩石都能燒焦的灼熱火焰。有時會引發森林火災。"
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
'zh-tw': "戰鬥意識"
},
effect: {
'zh-tw': "在自己的回合時可使用1次。查看自己的牌庫上方3張卡選擇其中1張卡加入手牌。將剩餘卡丟棄。"
}
}],
attacks: [{
name: {
'zh-tw': "王者火焰"
},
effect: {
'zh-tw': "增加自己的棄牌區的「丹帝」的張數×50點傷害。"
},
damage: "100+",
cost: ["Fire", "Fire"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 3,
regulationMark: "D"
}
export default card