mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 00:09:18 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
57
data-asia/SV/SV2D/079.ts
Normal file
57
data-asia/SV/SV2D/079.ts
Normal file
@ -0,0 +1,57 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV2D"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "バンギラス"
|
||||
},
|
||||
|
||||
illustrator: "Nurikabe",
|
||||
category: "Pokemon",
|
||||
dexId: [248],
|
||||
hp: 180,
|
||||
types: ["Darkness"],
|
||||
|
||||
description: {
|
||||
ja: "あたりの 地形を 変えるぐらい 朝飯前の 力持ち。 まわりを 気にしない ふてぶてしさ。"
|
||||
},
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Darkness"],
|
||||
|
||||
name: {
|
||||
ja: "けちらす"
|
||||
},
|
||||
|
||||
damage: "30+",
|
||||
|
||||
effect: {
|
||||
ja: "相手のベンチポケモンの数×30ダメージ追加。"
|
||||
}
|
||||
}, {
|
||||
cost: ["Darkness", "Darkness"],
|
||||
|
||||
name: {
|
||||
ja: "ドレッドマウンテン"
|
||||
},
|
||||
|
||||
damage: 230,
|
||||
|
||||
effect: {
|
||||
ja: "自分の山札を上から4枚トラッシュする。"
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Grass",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 3
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user