1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-31 11:51:59 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

57
data-asia/SV/SV2D/077.ts Normal file
View File

@@ -0,0 +1,57 @@
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