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

52 lines
918 B
TypeScript
Raw 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 "../SV5s"
const card: Card = {
set: Set,
name: {
id: "Drilbur"
},
illustrator: "Kariya",
category: "Pokemon",
hp: 70,
types: ["Fighting"],
description: {
id: "Drilbur merapatkan cakar di kedua tangannya, berputar dengan kecepatan tinggi, dan menabrakkan diri ke arah mangsanya."
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
id: "Menggali Terus"
},
effect: {
id: "Dapat digunakan 1 kali pada giliran sendiri saat memasukkan kartu ini dari Kartu Pegangan ke Cadangan. Pilih paling banyak 3 lembar Energi Dasar {Petarung} dari Deck sendiri, lalu buang ke Trash. Kemudian, kocok Deck."
}
}],
attacks: [{
name: {
id: "Semburan Pasir"
},
damage: 20,
cost: ["Fighting", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card