1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

51 lines
909 B
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 "../SCD"
const card: Card = {
set: Set,
name: {
'zh-tw': "千面避役VMAX"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 320,
types: ["Water"],
stage: "VMAX",
abilities: [{
type: "Ability",
name: {
'zh-tw': "雙重射擊手"
},
effect: {
'zh-tw': "在自己的回合若從自己的手牌將1張【水】能量卡丟棄則可使用1次。在對手的2隻備戰寶可夢身上各放置2個傷害指示物。"
}
}],
attacks: [{
name: {
'zh-tw': "超極巨漩澴盤渦"
},
effect: {
'zh-tw': "若希望選擇1個這隻寶可夢身上附加的能量放回手牌。這個情況下增加70點傷害。"
},
damage: "70+",
cost: ["Water", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 2,
regulationMark: "E"
}
export default card