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

41 lines
628 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Temporal Forces"
const card: Card = {
set: Set,
name: {
en: "Charjabug",
fr: "Chrysapile",
es: "Charjabug",
it: "Charjabug",
pt: "Charjabug",
de: "Akkup"
},
rarity: "Common",
category: "Pokemon",
hp: 100,
types: ["Lightning"],
stage: "Stage1",
attacks: [{
cost: ["Lightning", "Lightning"],
name: {
en: "Static Shock",
fr: "Choc Statique",
es: "Impacto Estático",
it: "Shock Statico",
pt: "Choque de Estática",
de: "Statischer Schock"
},
damage: 60
}],
retreat: 2,
regulationMark: "H"
}
export default card