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

44 lines
728 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 "../SVD"
const card: Card = {
set: Set,
name: {
'zh-tw': "敗露球菇"
},
illustrator: "Nobuhiro Imagawa",
category: "Pokemon",
hp: 110,
types: ["Grass"],
description: {
'zh-tw': "小心牠噴出的毒孢子。因為被噴到的地方會長出蘑菇, 形狀像是敗露球菇的菌傘。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "險惡孢子"
},
effect: {
'zh-tw': "擲1次硬幣若為正面則將對手的戰鬥寶可夢【中毒】與【麻痺】。"
},
damage: 60,
cost: ["Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card