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

40 lines
634 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: "Charjabug"
},
illustrator: "Misa Tsutsui",
category: "Pokemon",
hp: 100,
types: ["Lightning"],
description: {
id: "Charjabug melindungi dirinya dengan cangkang yang kuat. Pokémon ini membalas serangan menggunakan listrik yang dialirkan dari ujung rahangnya."
},
stage: "Stage1",
attacks: [{
name: {
id: "Berpijar-pijar"
},
damage: 60,
cost: ["Lightning", "Lightning"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "H"
}
export default card