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

45 lines
659 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 "../SC2b"
const card: Card = {
set: Set,
name: {
'zh-tw': "波克基斯VMAX"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 310,
types: ["Colorless"],
stage: "VMAX",
attacks: [{
name: {
'zh-tw': "極巨滑行"
},
effect: {
'zh-tw': "若希望從自己的牌庫任意選擇最多2張卡加入手牌。並且重洗牌庫。"
},
damage: 120,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 0,
regulationMark: "D"
}
export default card