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

57 lines
954 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 "../SV2D"
const card: Card = {
set: Set,
name: {
ja: "ナカヌチャン"
},
illustrator: "Tika Matsuno",
category: "Pokemon",
dexId: [958],
hp: 90,
types: ["Psychic"],
description: {
ja: "大きくて 頑丈な ハンマーを 作るために キリキザンの 群れを 襲って 金属を 集める。"
},
stage: "Stage1",
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
ja: "じゃれつく"
},
damage: "30",
effect: {
ja: "コインを1回投げオモテなら、30ダメージ追加。"
}
}, {
cost: ["Psychic", "Colorless", "Colorless"],
name: {
ja: "ふんさいプレス"
},
damage: 60,
effect: {
ja: "このワザのダメージは、相手のバトルポケモンにかかっている効果を計算しない。"
}
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2
}
export default card