1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 06:42:10 +00:00
Florian Bouillon 1a98a6022b
Fixed GX being with a dash while it isn't on the card (#58)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-16 11:05:52 +02:00

91 lines
1.6 KiB
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 '../Unbroken Bonds'
const card: Card = {
name: {
en: "Charjabug",
fr: "Chrysapile",
es: "Charjabug",
it: "Charjabug",
pt: "Charjabug",
de: "Akkup"
},
illustrator: "Sekio",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
737,
],
hp: 80,
types: [
"Lightning",
],
evolveFrom: {
en: "Grubbin",
fr: "Larvibule",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "Battery",
fr: "Batterie",
es: "Batería",
it: "Batteria",
pt: "Bateria",
de: "Batterie"
},
effect: {
en: "Once during your turn (before your attack), you may attach this card from your hand to 1 of your Vikavolt or Vikavolt-GX as a Special Energy card. This card provides 2 Lightning Energy only while its attached to a Pokémon.",
fr: "Lattacher à Lucanon ou Lucanon-GX comme carte Énergie spéciale.",
es: "Une a Vikavolt o Vikavolt-GX como una carta de Energía Especial.",
it: "Assegna a Vikavolt o Vikavolt-GX come carta Energia speciale.",
pt: "Ligar a Vikavolt ou Vikavolt-GX como uma carta de Energia Especial.",
de: "Lege sie als Spezial-Energiekarte an Donarion oder Donarion-GX an."
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Pierce",
fr: "Transpercement",
es: "Perforar",
it: "Perforare",
pt: "Perfurar",
de: "Durchbohren"
},
damage: 60,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
retreat: 3,
}
export default card