1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-02 04:41:57 +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

52
data-asia/S/SI/254.ts Normal file
View File

@@ -0,0 +1,52 @@
import { Card } from "../../../interfaces"
import Set from "../SI"
const card: Card = {
set: Set,
name: {
'zh-tw': "伽勒爾 火焰鳥V"
},
illustrator: "aky CG Works",
category: "Pokemon",
hp: 220,
types: ["Darkness"],
stage: "Basic",
suffix: "V",
abilities: [{
type: "Ability",
name: {
'zh-tw': "邪焰之翼"
},
effect: {
'zh-tw': "在自己的回合時可使用1次。從自己的棄牌區選擇1張【惡】能量卡附於這隻寶可夢身上。在這個回合若已經使出了其他的「邪焰之翼」則這個特性無法使用。"
}
}],
attacks: [{
name: {
'zh-tw': "氣場烈焰"
},
effect: {
'zh-tw': "這隻寶可夢也受到30點傷害。"
},
damage: 190,
cost: ["Darkness", "Darkness", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2,
regulationMark: "E"
}
export default card