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

53 lines
774 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 "../SV1S"
const card: Card = {
set: Set,
name: {
ja: "ガケガニ"
},
illustrator: "Mina Nakai",
category: "Pokemon",
dexId: [950],
hp: 130,
types: ["Fighting"],
description: {
ja: "逆さまになって 崖の 上から 獲物を 狙うが 頭に 血が上るので 長くは 待てない。"
},
stage: "Basic",
attacks: [{
cost: ["Fighting", "Fighting"],
name: {
ja: "はさむ"
},
damage: 50
}, {
cost: ["Fighting", "Fighting", "Fighting"],
name: {
ja: "アドレナハンマー"
},
damage: 130,
effect: {
ja: "このポケモンをこんらんにする。"
}
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 3
}
export default card