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

44 lines
701 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: "Akira Komayama",
category: "Pokemon",
hp: 90,
types: ["Water"],
description: {
'zh-tw': "有別於外表,性格非常粗暴。會用長長的身體勒緊獵物, 然後拖進自己的巢穴裡。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "纏繞榨取"
},
effect: {
'zh-tw': "在下個對手的回合,受到這個招式的寶可夢無法撤退。"
},
damage: 50,
cost: ["Water"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card