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

49 lines
901 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 "../S9"
const card: Card = {
set: Set,
name: {
'zh-tw': "臭泥",
ja: "ベトベター"
},
illustrator: "Masakazu Fukuda",
category: "Pokemon",
hp: 80,
types: ["Darkness"],
description: {
'zh-tw': "最近工廠排放的廢水太乾淨,使得牠沒東西可吃。 據說就快要絕種了。",
ja: "最近は 工場が 流す 廃液が 綺麗で エサが ない。 じき 絶滅すると いわれている。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "毒瓦斯",
ja: "どくガス"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【中毒】。",
ja: "相手のバトルポケモンをどくにする。"
},
cost: ["Darkness"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 3,
regulationMark: "F",
rarity: "Common",
dexId: [88]
}
export default card