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

57 lines
870 B
TypeScript
Raw Permalink 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: "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