1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-29 11:09:51 +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

88
data-asia/S/SP5/009.ts Normal file
View File

@ -0,0 +1,88 @@
import { Card } from "../../../interfaces"
import Set from "../SP5"
const card: Card = {
set: Set,
name: {
'zh-tw': "蒼響V-UNION"
},
illustrator: "PLANETA Tsuji",
category: "Pokemon",
hp: 320,
types: ["Metal"],
stage: "Basic",
attacks: [{
name: {
'zh-tw': "寶可夢V-UNION放置方法"
},
effect: {
'zh-tw': "對戰中可放置1次在自己的回合將自己的棄牌區中4種蒼響【V-UNION】加以組合放置於備戰區。"
}
}, {
name: {
'zh-tw': "聯盟增輝"
},
effect: {
'zh-tw': "從自己的棄牌區選擇最多2張【鋼】能量卡附於這隻寶可夢身上。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "劍王之舞"
},
effect: {
'zh-tw': "在下個對手的回合,受到這個招式的寶可夢使用招式的傷害「-150」點。"
},
damage: 150,
cost: ["Metal", "Metal", "Colorless"]
}, {
name: {
'zh-tw': "鋼鐵斬"
},
damage: 200,
cost: ["Metal", "Metal", "Colorless"]
}, {
name: {
'zh-tw': "精湛利刃"
},
effect: {
'zh-tw': "選擇3個這隻寶可夢身上附加的能量將其丟棄。"
},
damage: 340,
cost: ["Metal", "Metal", "Metal", "Colorless"]
}, {
name: {
'zh-tw': "V-UNION規則"
},
effect: {
'zh-tw': "寶可夢【V-UNION】【氣絕】時對手獲得3張獎賞卡。"
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 2,
regulationMark: "E"
}
export default card