mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
46 lines
675 B
TypeScript
46 lines
675 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Temporal Forces"
|
|
|
|
const card: Card = {
|
|
dexId: [737],
|
|
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",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card |