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

51 lines
773 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: "nagimiso",
category: "Pokemon",
hp: 130,
types: ["Fighting"],
description: {
'zh-tw': "會倒立在懸崖上等獵物上門,但由於那會讓牠的血液倒流, 因此等不了太長的時間。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "夾住"
},
damage: 50,
cost: ["Fighting", "Fighting"]
}, {
name: {
'zh-tw': "腎上腺錘"
},
effect: {
'zh-tw': "將這隻寶可夢【混亂】。"
},
damage: 130,
cost: ["Fighting", "Fighting", "Fighting"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 3,
regulationMark: "G"
}
export default card