mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-30 23:02:09 +00:00
64 lines
984 B
TypeScript
64 lines
984 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Rebel Clash'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Charjabug",
|
||
fr: "Chrysapile"
|
||
},
|
||
|
||
illustrator: "Masakazu Fukuda",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
|
||
evolveFrom: {
|
||
en: "Grubbin",
|
||
fr: "Larvibule"
|
||
},
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Charge",
|
||
fr: "Chargeur"
|
||
},
|
||
effect: {
|
||
en: "Search your deck for up to 2 Lightning Energy cards and attach them to this Pokémon. Then, shuffle your deck.",
|
||
fr: "Cherchez jusqu’à 2 cartes Énergie Lightning dans votre deck, puis attachez-les à ce Pokémon. Mélangez ensuite votre deck."
|
||
},
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Lightning",
|
||
"Lightning",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Lightning Ball",
|
||
fr: "Boule Éclair"
|
||
},
|
||
|
||
damage: 70,
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 2,
|
||
hp: 90,
|
||
types: ["Lightning"]
|
||
}
|
||
|
||
export default card
|