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

49 lines
877 B
TypeScript
Raw Permalink 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 "../SCC"
const card: Card = {
set: Set,
name: {
'zh-tw': "水伊布VMAX"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 320,
types: ["Water"],
stage: "VMAX",
attacks: [{
name: {
'zh-tw': "泡沫艙"
},
effect: {
'zh-tw': "從自己的棄牌區選擇1張【水】寶可夢卡放置於備戰區。然後從自己的棄牌區選擇最多3張【水】能量卡附於剛放置的寶可夢身上。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "極巨激流"
},
effect: {
'zh-tw': "若對手的戰鬥寶可夢身上放置有傷害指示物則增加100點傷害。"
},
damage: "100+",
cost: ["Water", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 2,
regulationMark: "E"
}
export default card