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

50 lines
841 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 "../SV3s"
const card: Card = {
set: Set,
name: {
id: "Tadbulb"
},
illustrator: "kirisAki",
category: "Pokemon",
hp: 50,
types: ["Lightning"],
description: {
id: "Tadbulb menghasilkan listrik dengan menggoyangkan ekornya. Ketika merasakan adanya bahaya, Pokémon ini memberitahukan sesamanya dengan mengedipkan cahaya kepalanya."
},
stage: "Basic",
attacks: [{
name: {
id: "Elektrifikasi"
},
effect: {
id: "Pilih 1 lembar Energi Dasar {Listrik} dari Trash sendiri, lalu kenakan pada Pokémon ini."
},
cost: ["Lightning"]
}, {
name: {
id: "Bola Petir"
},
damage: 30,
cost: ["Lightning", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card