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

40 lines
568 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 "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "巴大蝶VMAX"
},
illustrator: "aky CG Works",
category: "Pokemon",
hp: 300,
types: ["Grass"],
stage: "VMAX",
attacks: [{
name: {
'zh-tw': "超極巨毒起雲湧"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【中毒】與【混亂】。"
},
damage: 150,
cost: ["Grass", "Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 0,
regulationMark: "D"
}
export default card