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

64 lines
1.3 KiB
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 "../S9"
const card: Card = {
set: Set,
name: {
'zh-tw': "臭臭泥",
ja: "ベトベトン"
},
illustrator: "Scav",
category: "Pokemon",
hp: 130,
types: ["Darkness"],
description: {
'zh-tw': "由於牠會散播病原菌,因此不斷遭到驅逐, 結果導致牠的數量急遽減少。",
ja: "病原菌を まき散らすので 駆除 し続けた 結果 数が 激減して しまった。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "污泥路",
ja: "ヘドロード"
},
effect: {
'zh-tw': "只要這隻寶可夢在場上對手的【中毒】的寶可夢【撤退】所需的能量增加1個。",
ja: "このポケモンがいるかぎり、相手のどくのポケモンのにげるためのエネルギーは、1個ぶん多くなる。"
}
}],
attacks: [{
name: {
'zh-tw': "絕境猛毒",
ja: "ぜっきょうポイズン"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【中毒】與【混亂】。",
ja: "相手のバトルポケモンをどくとこんらんにする。"
},
damage: 90,
cost: ["Darkness", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 3,
regulationMark: "F",
rarity: "Uncommon",
dexId: [89]
}
export default card