1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

66 lines
1009 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Fusion Strike"
const card: Card = {
dexId: [737],
set: Set,
name: {
en: "Charjabug",
fr: "Chrysapile",
es: "Charjabug",
it: "Charjabug",
pt: "Charjabug",
de: "Akkup"
},
rarity: "Uncommon",
category: "Pokemon",
hp: 100,
types: ["Lightning"],
evolveFrom: {
en: "Grubbin",
fr: "Larvibule",
es: "Grubbin",
it: "Grubbin",
pt: "Grubbin",
de: "Mabula"
},
stage: "Stage1",
retreat: 3,
regulationMark: "E",
illustrator: "sowsow",
description: {
en: "Its digestive processes convert the leaves it eats into electricity. An electric sac in its belly stores the electricity for later use."
},
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
en: "Vise Grip"
},
damage: 30
}, {
cost: ["Lightning", "Colorless", "Colorless"],
name: {
en: "Head Bolt"
},
damage: 60
}],
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card