1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-05 08:57:49 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

91 lines
1.5 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: "Attach to Vikavolt or Vikavolt-GX as a Special Energy card.",
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