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

52 lines
843 B
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 "../SV-P"
const card: Card = {
set: Set,
name: {
'zh-tw': "毛崖蟹ex"
},
illustrator: "aky CG Works",
category: "Pokemon",
hp: 220,
types: ["Fighting"],
stage: "Basic",
suffix: "EX",
abilities: [{
type: "Ability",
name: {
'zh-tw': "反擊鉗"
},
effect: {
'zh-tw': "當這隻寶可夢在戰鬥場上受到對手的寶可夢招式的傷害時選擇1個使用招式的寶可夢身上附加的能量將其丟棄。"
}
}],
attacks: [{
name: {
'zh-tw': "落下壓制"
},
effect: {
'zh-tw': "擲1次硬幣若為正面則增加80點傷害。"
},
damage: "100+",
cost: ["Fighting", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 3,
regulationMark: "G"
}
export default card