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

50 lines
819 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 "../SV-P"
const card: Card = {
set: Set,
name: {
'zh-tw': "泥泥鰍"
},
illustrator: "ryoma uratsuka",
category: "Pokemon",
hp: 70,
types: ["Fighting"],
description: {
'zh-tw': "2根鬍子是靈敏的雷達。即使在因為泥濘而渾濁的水中,也能偵查到獵物的位置。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "躲藏"
},
effect: {
'zh-tw': "擲1次硬幣若為正面則在下個對手的回合這隻寶可夢不會受到招式的傷害與效果的影響。"
},
cost: ["Fighting"]
}, {
name: {
'zh-tw': "擲泥"
},
damage: 20,
cost: ["Fighting", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card