1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

60 lines
1.2 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../SP6"
const card: Card = {
set: Set,
name: {
'zh-tw': "蒼響VSTAR",
ja: "ザシアンVSTAR"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 270,
types: ["Metal"],
stage: "VMAX",
attacks: [{
name: {
'zh-tw': "破壞刀鋒",
ja: "ブレイクエッジ"
},
effect: {
'zh-tw': "這個招式的傷害不計算弱點・抵抗力、對手的戰鬥寶可夢身上的附加效果。",
ja: "このワザのダメージは、弱点・抵抗力と、相手のバトルポケモンにかかっている効果を計算しない。"
},
damage: 200,
cost: ["Metal", "Metal", "Colorless"]
}, {
name: {
'zh-tw': "[VSTAR力量]劍之星星",
ja: "ソードスター"
},
effect: {
'zh-tw': "這隻寶可夢也受到30點傷害。[對戰中己方只可使用1次【VSTAR】力量。]",
ja: "このポケモンにも30ダメージ。対戦中、自分はVSTARパワーを1回しか使えない。"
},
damage: 310,
cost: ["Metal", "Metal", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "30"
}],
retreat: 2,
regulationMark: "F"
}
export default card