mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
54 lines
910 B
TypeScript
54 lines
910 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV6s"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
id: "Brute Bonnet"
|
||
},
|
||
|
||
illustrator: "danciao",
|
||
category: "Pokemon",
|
||
hp: 120,
|
||
types: ["Darkness"],
|
||
|
||
description: {
|
||
id: "Terdapat kemungkinan bahwa Pokémon ini merupakan makhluk hidup yang tertera sebagai Brute Bonnet dalam suatu buku."
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
attacks: [{
|
||
name: {
|
||
id: "Menyemprotkan Racun"
|
||
},
|
||
|
||
effect: {
|
||
id: "Ubah kondisi Pokémon Bertarung lawan menjadi Racun."
|
||
},
|
||
|
||
cost: ["Darkness"]
|
||
}, {
|
||
name: {
|
||
id: "Memukul Tanpa Henti"
|
||
},
|
||
|
||
effect: {
|
||
id: "Kerusakan yang diberikan bertambah sejumlah 50 untuk tiap Token Kerusakan yang dimiliki Pokémon Bertarung lawan."
|
||
},
|
||
|
||
damage: "50+",
|
||
cost: ["Darkness", "Darkness", "Darkness"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Grass",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 3,
|
||
regulationMark: "H"
|
||
}
|
||
|
||
export default card |