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

53 lines
838 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 "../SC1b"
const card: Card = {
set: Set,
name: {
'zh-tw': "灰塵山"
},
illustrator: "AKIRA EGAWA",
category: "Pokemon",
hp: 120,
types: ["Darkness"],
description: {
'zh-tw': "吃掉的垃圾會在體內轉化為毒素。毒素的成分會隨著吃掉的垃圾而不同。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "浸毒之地"
},
effect: {
'zh-tw': "若場上有競技場卡則在自己的回合時可使用1次。將對手的戰鬥寶可夢【中毒】。"
}
}],
attacks: [{
name: {
'zh-tw': "污泥炸彈"
},
damage: 80,
cost: ["Darkness", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card