1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 19:02:10 +00:00

61 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': "蒼響V",
ja: "ザシアンV"
},
illustrator: "aky CG Works",
category: "Pokemon",
hp: 220,
types: ["Metal"],
stage: "Basic",
suffix: "V",
attacks: [{
name: {
'zh-tw': "打穿",
ja: "ぶちぬく"
},
effect: {
'zh-tw': "這個招式的傷害不計算弱點・抵抗力、對手的戰鬥寶可夢身上的附加效果。",
ja: "このワザのダメージは、弱点・抵抗力と、相手のバトルポケモンにかかっている効果を計算しない。"
},
damage: 40,
cost: ["Metal"]
}, {
name: {
'zh-tw': "巨獸斬",
ja: "きょじゅうざん"
},
effect: {
'zh-tw': "若對手的戰鬥寶可夢為「寶可夢【VMAX】」則增加160點傷害。",
ja: "相手のバトルポケモンが「ポケモンVMAX」なら、160ダメージ追加。"
},
damage: "100",
cost: ["Metal", "Metal", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "30"
}],
retreat: 2,
regulationMark: "F"
}
export default card