1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-03 00:49:19 +00:00

fix: correct data for sets tk-ex-latia, tk-ex-latio, tk-ex-m, tk-ex-p, tk-bw-e, tk-bw-z (#726)

Co-authored-by: Avior <github@avior.me>
This commit is contained in:
yugi-classic
2025-05-04 00:37:30 +02:00
committed by GitHub
parent d0c43e5ce6
commit d169a67833
128 changed files with 2709 additions and 1068 deletions

View File

@ -0,0 +1,61 @@
import { Card } from '../../../interfaces'
import Set from '../BW trainer Kit (Excadrill).ts'
const card: Card = {
dexId: [506],
set: Set,
name: {
en: "Lillipup",
fr: "Ponchiot",
es: "Lillipup",
it: "Lillipup",
pt: "Lillipup",
de: "Yorkleff"
},
illustrator: "Mosakazu Fukuda",
rarity: "None",
category: "Pokemon",
stage: "Basic",
hp: 50,
types: [
"Colorless"
],
attacks: [{
cost: [
"Colorless",
],
name: {
en: "Pickup"
},
effect: {
en: "Put an Item card from your discard pile into your hand."
}
}, {
cost: [
"Colorless",
],
name: {
en: "Bite"
},
damage: 10
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
description: {
en: "It faces strong opponents with great courage. But, when at a disadvantage in a fight, this intelligent Pokémon flees."
},
retreat: 1,
}
export default card

View File

@ -0,0 +1,21 @@
import { Card } from '../../../interfaces'
import Set from '../BW trainer Kit (Excadrill).ts'
const card: Card = {
set: Set,
name: {
en: "Fighting Energy",
fr: "Énergie Combat",
es: "Energía Lucha",
it: "Energia Combattimento",
pt: "Energia de Luta",
de: "Kampf-Energie"
},
rarity: "None",
category: "Energy",
energyType: "Normal"
}
export default card

View File

@ -0,0 +1,49 @@
import { Card } from '../../../interfaces'
import Set from '../BW trainer Kit (Excadrill).ts'
const card: Card = {
dexId: [532],
set: Set,
name: {
en: "Timburr",
fr: "Charpenti",
es: "Timburr",
it: "Timburr",
pt: "Timburr",
de: "Praktibalk"
},
illustrator: "match",
rarity: "None",
category: "Pokemon",
hp: 60,
types: ["Fighting"],
stage: "Basic",
attacks: [{
cost: [
"Fighting",
"Fighting"
],
name: {
en: "Pound"
},
damage: 30
}],
weaknesses: [
{
type: "Psychic",
value: "2x"
},
],
description: {
en: "It fights by swinging a piece of lumber around. It is close to evolving when it can handle the lumber without difficulty."
},
retreat: 1,
}
export default card

View File

@ -0,0 +1,52 @@
import { Card } from '../../../interfaces'
import Set from '../BW trainer Kit (Excadrill).ts'
const card: Card = {
dexId: [531],
set: Set,
name: {
en: "Audino",
fr: "Nanméouïe",
es: "Audino",
it: "Audino",
pt: "Audino",
de: "Ohrdoch"
},
illustrator: "MAHOU",
rarity: "None",
category: "Pokemon",
hp: 80,
types: ["Colorless"],
stage: "Basic",
attacks: [{
cost: [
"Colorless",
"Colorless"
],
name: {
en: "Doubleslap"
},
effect: {
en: "Flip 2 coins. This attack does 30 damage times the number of heads."
},
damage: "30x"
}],
weaknesses: [
{
type: "Fighting",
value: "2x"
},
],
description: {
en: "It touches others with the feelers on its ears, using the sound of their heartbeats to tell how they are feeling."
},
retreat: 2,
}
export default card

View File

@ -0,0 +1,62 @@
import { Card } from '../../../interfaces'
import Set from '../BW trainer Kit (Excadrill).ts'
const card: Card = {
dexId: [529],
set: Set,
name: {
en: "Drilbur",
fr: "Rototaupe",
es: "Drilbur",
it: "Drilbur",
pt: "Drilbur",
de: "Rotomurf"
},
rarity: "None",
category: "Pokemon",
hp: 70,
types: ["Fighting"],
stage: "Basic",
attacks: [{
cost: [
"Colorless",
],
name: {
en: "Hone Claws"
},
effect: {
en: "During your next turn, each of this Pokémon's attacks does 30 more damage (before applying Weakness and Ressistance)."
}
}, {
cost: [
"Fighting",
],
name: {
en: "Scratch"
},
damage: 10
}],
weaknesses: [
{
type: "Water",
value: "2x"
},
],
resistances: [{
type: "Lightning",
value: "-20"
}],
description: {
en: "It can dig through the ground at a speed of 30 mph. It could give a car running aboveground a good race."
},
retreat: 2,
}
export default card

View File

@ -0,0 +1,67 @@
import { Card } from '../../../interfaces'
import Set from '../BW trainer Kit (Excadrill).ts'
const card: Card = {
dexId: [533],
set: Set,
name: {
en: "Gurdurr",
fr: "Ouvrifier",
es: "Gurdurr",
it: "Gurdurr",
pt: "Gurdurr",
de: "Strepoli"
},
rarity: "None",
category: "Pokemon",
hp: 80,
types: ["Fighting"],
evolveFrom: {
en: "Timburr",
fr: "Charpenti",
es: "Timburr",
it: "Timburr",
pt: "Timburr",
de: "Praktibalk"
},
stage: "Stage1",
attacks: [{
cost: [
"Colorless",
],
name: {
en: "Bulk Up"
},
effect: {
en: "During your next turn, each of this Pokémon's attacks does 20 more damage (before applying Weakness and Resistance)."
}
}, {
cost: [
"Fighting",
"Fighting",
"Colorless"
],
name: {
en: "Pound"
},
damage: 60
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
description: {
en: "They strengthen their bodies by carrying steel beams. They show off their big muscles to their friends."
},
retreat: 2,
}
export default card

View File

@ -0,0 +1,32 @@
import { Card } from '../../../interfaces'
import Set from '../BW trainer Kit (Excadrill).ts'
const card: Card = {
set: Set,
name: {
en: "Potion",
fr: "Potion",
es: "Poción",
it: "Pozione",
pt: "Poção",
de: "Trank"
},
rarity: "None",
category: "Trainer",
illustrator: "Ayaka Yoshida",
effect: {
en: "Heal 30 damage from 1 of your Pokémon.",
fr: "Soignez 30 dégâts à 1 de vos Pokémon.",
es: "Cura 30 puntos de daño a 1 de tus Pokémon.",
it: "Cura uno dei tuoi Pokémon da 30 danni.",
pt: "Cura 30 de danos de 1 Pokémon seu.",
de: "Heile 30 Schadenspunkte bei 1 deiner Pokémon."
},
trainerType: "Item"
}
export default card

View File

@ -0,0 +1,32 @@
import { Card } from '../../../interfaces'
import Set from '../BW trainer Kit (Excadrill).ts'
const card: Card = {
set: Set,
name: {
en: "PlusPower",
fr: "PlusPower",
es: "PoderPlus",
it: "PlusPotenza",
pt: "PlusPower",
de: "PlusPower"
},
rarity: "None",
category: "Trainer",
illustrator: "5ban Graphics",
effect: {
en: "During this turn, your Pokémons attacks do 10 more damage to the Active Pokémon (before applying Weakness and Resistance).",
fr: "Pendant ce tour, les attaques de votre Pokémon infligent 10 dégâts supplémentaires aux Pokémon Actifs (avant application de la Faiblesse et de la Résistance).",
es: "Durante este turno, los ataques de tus Pokémon hacen 10 puntos de daño más a los Pokémon Activos (antes de aplicar Debilidad y Resistencia).",
it: "Durante questo turno, gli attacchi dei tuoi Pokémon infliggono 10 danni in più al Pokémon attivo, prima di aver applicato debolezza e resistenza.",
pt: "Nesta vez de jogar, os ataques do seu Pokémon causam 10 de danos extras ao Pokémon Ativo (antes de aplicar Fraqueza e Resistência).",
de: "Während dieses Zuges fügen alle Angriffe deines Pokémon den Aktiven Pokémon 10 weitere Schadenspunkte zu (bevor Schwäche und Resistenz verrechnet werden)."
},
trainerType: "Item"
}
export default card

View File

@ -0,0 +1,78 @@
import { Card } from '../../../interfaces'
import Set from '../BW trainer Kit (Excadrill).ts'
const card: Card = {
dexId: [530],
set: Set,
name: {
en: "Excadrill",
fr: "Minotaupe",
es: "Excadrill",
it: "Excadrill",
pt: "Excadrill",
de: "Stalobor"
},
rarity: "None",
category: "Pokemon",
illustrator: "5ban Graphics",
stage: "Stage1",
evolveFrom: {
en: "Drilbur",
fr: "Rototaupe",
es: "Drilbur",
it: "Drilbur",
pt: "Drilbur",
de: "Rotomurf"
},
hp: 110,
types: [
"Fighting"
],
attacks: [{
cost: [
"Colorless",
],
name: {
en: "Metal Claw"
},
damage: 30
}, {
cost: [
"Fighting",
"Fighting",
"Fighting"
],
name: {
en: "Drill Run"
},
effect: {
en: "Discard an Energy attached to the Defending Pokémon."
},
damage: 80,
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
resistances: [{
type: "Lightning",
value: "-20"
}],
description: {
en: "It can help in tunnel construction. Its drill has evolved into steel strong enough to bore through iron plates."
},
retreat: 2,
}
export default card

View File

@ -0,0 +1,52 @@
import { Card } from '../../../interfaces'
import Set from '../BW trainer Kit (Excadrill).ts'
const card: Card = {
dexId: [531],
set: Set,
name: {
en: "Audino",
fr: "Nanméouïe",
es: "Audino",
it: "Audino",
pt: "Audino",
de: "Ohrdoch"
},
illustrator: "MAHOU",
rarity: "None",
category: "Pokemon",
hp: 80,
types: ["Colorless"],
stage: "Basic",
attacks: [{
cost: [
"Colorless",
"Colorless"
],
name: {
en: "Doubleslap"
},
effect: {
en: "Flip 2 coins. This attack does 30 damage times the number of heads."
},
damage: "30x"
}],
weaknesses: [
{
type: "Fighting",
value: "2x"
},
],
description: {
en: "It touches others with the feelers on its ears, using the sound of their heartbeats to tell how they are feeling."
},
retreat: 2,
}
export default card

View File

@ -0,0 +1,69 @@
import { Card } from '../../../interfaces'
import Set from '../BW trainer Kit (Excadrill).ts'
const card: Card = {
dexId: [507],
set: Set,
name: {
en: "Herdier",
fr: "Ponchien",
es: "Herdier",
it: "Herdier",
pt: "Herdier",
de: "Terribark"
},
illustrator: "Midori Harada",
rarity: "None",
category: "Pokemon",
hp: 80,
types: ["Colorless"],
evolveFrom: {
en: "Lillipup",
fr: "Ponchiot",
es: "Lillipup",
it: "Lillipup",
pt: "Lillipup",
de: "Yorkleff"
},
stage: "Stage1",
attacks: [{
cost: [
"Colorless",
"Colorless"
],
name: {
en: "Collect"
},
effect: {
en: "Draw 3 cards."
}
}, {
cost: [
"Colorless",
"Colorless",
"Colorless"
],
name: {
en: "Bite"
},
damage: 50
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
description: {
en: "It loyally follows its Trainer's orders. For ages, they have helped Trainers raise Pokémon."
},
retreat: 1,
}
export default card

View File

@ -0,0 +1,21 @@
import { Card } from '../../../interfaces'
import Set from '../BW trainer Kit (Excadrill).ts'
const card: Card = {
set: Set,
name: {
en: "Fighting Energy",
fr: "Énergie Combat",
es: "Energía Lucha",
it: "Energia Combattimento",
pt: "Energia de Luta",
de: "Kampf-Energie"
},
rarity: "None",
category: "Energy",
energyType: "Normal"
}
export default card

View File

@ -0,0 +1,21 @@
import { Card } from '../../../interfaces'
import Set from '../BW trainer Kit (Excadrill).ts'
const card: Card = {
set: Set,
name: {
en: "Fighting Energy",
fr: "Énergie Combat",
es: "Energía Lucha",
it: "Energia Combattimento",
pt: "Energia de Luta",
de: "Kampf-Energie"
},
rarity: "None",
category: "Energy",
energyType: "Normal"
}
export default card

View File

@ -0,0 +1,32 @@
import { Card } from '../../../interfaces'
import Set from '../BW trainer Kit (Excadrill).ts'
const card: Card = {
set: Set,
name: {
en: "Energy Search",
fr: "Recherche dÉnergie",
es: "Búsqueda de Energía",
it: "Ricerca di Energia",
pt: "Busca de Energia",
de: "Energiesuche"
},
rarity: "None",
category: "Trainer",
illustrator: "Ryo Ueda",
effect: {
en: "Search your deck for a basic Energy card, reveal it, and put it into your hand. Shuffle your deck afterward.",
fr: "Cherchez une carte Énergie de base dans votre deck, montrez-la, puis ajoutez-la à votre main. Mélangez ensuite votre deck.",
es: "Busca en tu baraja una carta de Energía Básica, enséñala y ponla en tu mano. Baraja las cartas de tu baraja después.",
it: "Cerca nel tuo mazzo una carta Energia base, mostrala e aggiungila a quelle che hai in mano. Poi rimischia le carte del tuo mazzo.",
pt: "Procure um card de Energia básica no seu baralho, revele-o e coloque-o na sua mão. Em seguida, embaralhe seu baralho.",
de: "Durchsuche dein Deck nach 1 Basis-Energiekarte, zeige sie deinem Gegner und nimm sie auf deine Hand. Mische anschließend dein Deck."
},
trainerType: "Item"
}
export default card

View File

@ -0,0 +1,21 @@
import { Card } from '../../../interfaces'
import Set from '../BW trainer Kit (Excadrill).ts'
const card: Card = {
set: Set,
name: {
en: "Fighting Energy",
fr: "Énergie Combat",
es: "Energía Lucha",
it: "Energia Combattimento",
pt: "Energia de Luta",
de: "Kampf-Energie"
},
rarity: "None",
category: "Energy",
energyType: "Normal"
}
export default card

View File

@ -0,0 +1,32 @@
import { Card } from '../../../interfaces'
import Set from '../BW trainer Kit (Excadrill).ts'
const card: Card = {
set: Set,
name: {
en: "Potion",
fr: "Potion",
es: "Poción",
it: "Pozione",
pt: "Poção",
de: "Trank"
},
rarity: "None",
category: "Trainer",
illustrator: "Ayaka Yoshida",
effect: {
en: "Heal 30 damage from 1 of your Pokémon.",
fr: "Soignez 30 dégâts à 1 de vos Pokémon.",
es: "Cura 30 puntos de daño a 1 de tus Pokémon.",
it: "Cura uno dei tuoi Pokémon da 30 danni.",
pt: "Cura 30 de danos de 1 Pokémon seu.",
de: "Heile 30 Schadenspunkte bei 1 deiner Pokémon."
},
trainerType: "Item"
}
export default card

View File

@ -0,0 +1,32 @@
import { Card } from '../../../interfaces'
import Set from '../BW trainer Kit (Excadrill).ts'
const card: Card = {
set: Set,
name: {
en: "Pokémon Communication",
fr: "Communication Pokémon",
es: "Comunicación Pokémon",
it: "Comunicazione Pokémon",
pt: "Comunicação Pokémon",
de: "Pokémon-Kommunikation"
},
rarity: "None",
category: "Trainer",
illustrator: "5ban Graphics",
effect: {
en: "Reveal a Pokémon in your hand and put it on top of your deck. If you do, search your deck for a Pokémon, reveal it, and put it into your hand. Shuffle your deck afterward.",
fr: "Montrez lun des Pokémon de votre main et placez-le sur le dessus de votre deck. Dans ce cas, cherchez un Pokémon dans votre deck, montrez-le, puis ajoutez-le à votre main. Mélangez ensuite votre deck.",
es: "Enseña un Pokémon de tu mano y ponlo en la parte superior de tu baraja. Si lo haces, busca en tu baraja un Pokémon, enséñalo y ponlo en tu mano. Baraja las cartas de tu baraja después.",
it: "Mostra un Pokémon che hai in mano e mettilo in cima al tuo mazzo. A questo punto cerca nel tuo mazzo un Pokémon, mostra anche questo e aggiungilo alle carte che hai in mano. Poi rimischia le carte del tuo mazzo.",
pt: "Revele um Pokémon em sua mão e coloque-o em cima do seu baralho. Se fizer isso, procure um Pokémon em seu baralho, revele-o e coloque-o na sua mão. Em seguida, embaralhe seu baralho.",
de: "Nimm 1 Pokémon von deiner Hand, zeige es deinem Gegner und lege es auf dein Deck. Wenn du das machst, durchsuche dein Deck nach 1 Pokémon, zeige es deinem Gegner und nimm es auf deine Hand. Mische anschließend dein Deck."
},
trainerType: "Item"
}
export default card

View File

@ -0,0 +1,60 @@
import { Card } from '../../../interfaces'
import Set from '../BW trainer Kit (Excadrill).ts'
const card: Card = {
dexId: [529],
set: Set,
name: {
en: "Drilbur",
fr: "Rototaupe",
es: "Drilbur",
it: "Drilbur",
pt: "Drilbur",
de: "Rotomurf"
},
rarity: "None",
category: "Pokemon",
hp: 70,
types: ["Fighting"],
stage: "Basic",
attacks: [{
cost: [
"Colorless",
],
name: {
en: "Hone Claws"
},
effect: {
en: "During your next turn, each of this Pokémon's attacks does 30 more damage (before applying Weakness and Ressistance)."
}
}, {
cost: [
"Fighting",
],
name: {
en: "Scratch"
},
damage: 10
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
resistances: [{
type: "Lightning",
value: "-20"
}],
description: {
en: "It can dig through the ground at a speed of 30 mph. It could give a car running aboveground a good race."
},
retreat: 2,
}
export default card

View File

@ -0,0 +1,21 @@
import { Card } from '../../../interfaces'
import Set from '../BW trainer Kit (Excadrill).ts'
const card: Card = {
set: Set,
name: {
en: "Fighting Energy",
fr: "Énergie Combat",
es: "Energía Lucha",
it: "Energia Combattimento",
pt: "Energia de Luta",
de: "Kampf-Energie"
},
rarity: "None",
category: "Energy",
energyType: "Normal"
}
export default card

View File

@ -0,0 +1,61 @@
import { Card } from '../../../interfaces'
import Set from '../BW trainer Kit (Excadrill).ts'
const card: Card = {
dexId: [506],
set: Set,
name: {
en: "Lillipup",
fr: "Ponchiot",
es: "Lillipup",
it: "Lillipup",
pt: "Lillipup",
de: "Yorkleff"
},
illustrator: "Mosakazu Fukuda",
rarity: "None",
category: "Pokemon",
stage: "Basic",
hp: 50,
types: [
"Colorless"
],
attacks: [{
cost: [
"Colorless",
],
name: {
en: "Pickup"
},
effect: {
en: "Put an Item card from your discard pile into your hand."
}
}, {
cost: [
"Colorless",
],
name: {
en: "Bite"
},
damage: 10
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
description: {
en: "It faces strong opponents with great courage. But, when at a disadvantage in a fight, this intelligent Pokémon flees."
},
retreat: 1,
}
export default card

View File

@ -0,0 +1,21 @@
import { Card } from '../../../interfaces'
import Set from '../BW trainer Kit (Excadrill).ts'
const card: Card = {
set: Set,
name: {
en: "Fighting Energy",
fr: "Énergie Combat",
es: "Energía Lucha",
it: "Energia Combattimento",
pt: "Energia de Luta",
de: "Kampf-Energie"
},
rarity: "None",
category: "Energy",
energyType: "Normal"
}
export default card

View File

@ -0,0 +1,49 @@
import { Card } from '../../../interfaces'
import Set from '../BW trainer Kit (Excadrill).ts'
const card: Card = {
dexId: [532],
set: Set,
name: {
en: "Timburr",
fr: "Charpenti",
es: "Timburr",
it: "Timburr",
pt: "Timburr",
de: "Praktibalk"
},
illustrator: "match",
rarity: "None",
category: "Pokemon",
hp: 60,
types: ["Fighting"],
stage: "Basic",
attacks: [{
cost: [
"Fighting",
"Fighting"
],
name: {
en: "Pound"
},
damage: 30
}],
weaknesses: [
{
type: "Psychic",
value: "2x"
},
],
description: {
en: "It fights by swinging a piece of lumber around. It is close to evolving when it can handle the lumber without difficulty."
},
retreat: 1,
}
export default card

View File

@ -0,0 +1,21 @@
import { Card } from '../../../interfaces'
import Set from '../BW trainer Kit (Excadrill).ts'
const card: Card = {
set: Set,
name: {
en: "Fighting Energy",
fr: "Énergie Combat",
es: "Energía Lucha",
it: "Energia Combattimento",
pt: "Energia de Luta",
de: "Kampf-Energie"
},
rarity: "None",
category: "Energy",
energyType: "Normal"
}
export default card

View File

@ -0,0 +1,78 @@
import { Card } from '../../../interfaces'
import Set from '../BW trainer Kit (Excadrill).ts'
const card: Card = {
dexId: [530],
set: Set,
name: {
en: "Excadrill",
fr: "Minotaupe",
es: "Excadrill",
it: "Excadrill",
pt: "Excadrill",
de: "Stalobor"
},
rarity: "None",
category: "Pokemon",
illustrator: "5ban Graphics",
stage: "Stage1",
evolveFrom: {
en: "Drilbur",
fr: "Rototaupe",
es: "Drilbur",
it: "Drilbur",
pt: "Drilbur",
de: "Rotomurf"
},
hp: 110,
types: [
"Fighting"
],
attacks: [{
cost: [
"Colorless",
],
name: {
en: "Metal Claw"
},
damage: 30
}, {
cost: [
"Fighting",
"Fighting",
"Fighting"
],
name: {
en: "Drill Run"
},
effect: {
en: "Discard an Energy attached to the Defending Pokémon."
},
damage: 80,
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
resistances: [{
type: "Lightning",
value: "-20"
}],
description: {
en: "It can help in tunnel construction. Its drill has evolved into steel strong enough to bore through iron plates."
},
retreat: 2,
}
export default card

View File

@ -0,0 +1,32 @@
import { Card } from '../../../interfaces'
import Set from '../BW trainer Kit (Excadrill).ts'
const card: Card = {
set: Set,
name: {
en: "Energy Switch",
fr: "Échange dÉnergie",
es: "Interruptor de Energía",
it: "Scambio di Energia",
pt: "Substituição de Energia",
de: "Energie-Umschalter"
},
rarity: "None",
category: "Trainer",
illustrator: "Kent Kanetsuna",
effect: {
en: "Move a basic Energy from 1 of your Pokémon to another of your Pokémon.",
fr: "Déplacez une Énergie de base de lun de vos Pokémon vers un autre de vos Pokémon.",
es: "Mueve una Energía Básica de 1 de tus Pokémon a otro de tus Pokémon.",
it: "Sposta unEnergia base da uno dei tuoi Pokémon a un altro.",
pt: "Mova uma Energia básica de 1 dos seus Pokémon para outro dos seus Pokémon.",
de: "Verschiebe 1 an 1 deiner Pokémon angelegte Basis-Energie auf ein anderes deiner Pokémon."
},
trainerType: "Item"
}
export default card

View File

@ -0,0 +1,21 @@
import { Card } from '../../../interfaces'
import Set from '../BW trainer Kit (Excadrill).ts'
const card: Card = {
set: Set,
name: {
en: "Fighting Energy",
fr: "Énergie Combat",
es: "Energía Lucha",
it: "Energia Combattimento",
pt: "Energia de Luta",
de: "Kampf-Energie"
},
rarity: "None",
category: "Energy",
energyType: "Normal"
}
export default card

View File

@ -0,0 +1,21 @@
import { Card } from '../../../interfaces'
import Set from '../BW trainer Kit (Excadrill).ts'
const card: Card = {
set: Set,
name: {
en: "Fighting Energy",
fr: "Énergie Combat",
es: "Energía Lucha",
it: "Energia Combattimento",
pt: "Energia de Luta",
de: "Kampf-Energie"
},
rarity: "None",
category: "Energy",
energyType: "Normal"
}
export default card

View File

@ -0,0 +1,21 @@
import { Card } from '../../../interfaces'
import Set from '../BW trainer Kit (Excadrill).ts'
const card: Card = {
set: Set,
name: {
en: "Fighting Energy",
fr: "Énergie Combat",
es: "Energía Lucha",
it: "Energia Combattimento",
pt: "Energia de Luta",
de: "Kampf-Energie"
},
rarity: "None",
category: "Energy",
energyType: "Normal"
}
export default card

View File

@ -0,0 +1,21 @@
import { Card } from '../../../interfaces'
import Set from '../BW trainer Kit (Excadrill).ts'
const card: Card = {
set: Set,
name: {
en: "Fighting Energy",
fr: "Énergie Combat",
es: "Energía Lucha",
it: "Energia Combattimento",
pt: "Energia de Luta",
de: "Kampf-Energie"
},
rarity: "None",
category: "Energy",
energyType: "Normal"
}
export default card

View File

@ -0,0 +1,21 @@
import { Card } from '../../../interfaces'
import Set from '../BW trainer Kit (Excadrill).ts'
const card: Card = {
set: Set,
name: {
en: "Fighting Energy",
fr: "Énergie Combat",
es: "Energía Lucha",
it: "Energia Combattimento",
pt: "Energia de Luta",
de: "Kampf-Energie"
},
rarity: "None",
category: "Energy",
energyType: "Normal"
}
export default card