mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 08:19:17 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
52
data-asia/SV/SV2D/087.ts
Normal file
52
data-asia/SV/SV2D/087.ts
Normal file
@ -0,0 +1,52 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV2D"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "デカヌチャンex"
|
||||
},
|
||||
|
||||
illustrator: "takuyoa",
|
||||
category: "Pokemon",
|
||||
hp: 300,
|
||||
types: ["Psychic"],
|
||||
stage: "Stage2",
|
||||
suffix: "EX",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
ja: "ビッグハンマー"
|
||||
},
|
||||
|
||||
damage: "30×",
|
||||
|
||||
effect: {
|
||||
ja: "自分の手札の枚数×30ダメージ。"
|
||||
}
|
||||
}, {
|
||||
cost: ["Psychic", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
ja: "ふんさいプレス"
|
||||
},
|
||||
|
||||
damage: 140,
|
||||
|
||||
effect: {
|
||||
ja: "このワザのダメージは、相手のバトルポケモンにかかっている効果を計算しない。"
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Metal",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 2
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user