1
0
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:
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/079.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: "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