mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-15 01:41:59 +00:00
29
data/Trainer kits/SM trainer Kit (Lycanroc)/1.ts
Normal file
29
data/Trainer kits/SM trainer Kit (Lycanroc)/1.ts
Normal file
@@ -0,0 +1,29 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../SM trainer Kit (Lycanroc)'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Caterpie",
|
||||
fr: "Chenipan",
|
||||
es: "Caterpie",
|
||||
it: "Caterpie",
|
||||
pt: "Caterpie",
|
||||
de: "Raupy"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 50,
|
||||
types: ["Grass"],
|
||||
stage: "Basic",
|
||||
retreat: 1,
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
}]
|
||||
}
|
||||
|
||||
export default card
|
34
data/Trainer kits/SM trainer Kit (Lycanroc)/11.ts
Normal file
34
data/Trainer kits/SM trainer Kit (Lycanroc)/11.ts
Normal file
@@ -0,0 +1,34 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../SM trainer Kit (Lycanroc)'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Fletchling",
|
||||
fr: "Passerouge",
|
||||
es: "Fletchling",
|
||||
it: "Fletchling",
|
||||
pt: "Fletchling",
|
||||
de: "Dartiri"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 50,
|
||||
types: ["Colorless"],
|
||||
stage: "Basic",
|
||||
retreat: 1,
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: "Fighting",
|
||||
value: "-20"
|
||||
}]
|
||||
}
|
||||
|
||||
export default card
|
29
data/Trainer kits/SM trainer Kit (Lycanroc)/12.ts
Normal file
29
data/Trainer kits/SM trainer Kit (Lycanroc)/12.ts
Normal file
@@ -0,0 +1,29 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../SM trainer Kit (Lycanroc)'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Yungoos",
|
||||
fr: "Manglouton",
|
||||
es: "Yungoos",
|
||||
it: "Yungoos",
|
||||
pt: "Yungoos",
|
||||
de: "Mangunior"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Colorless"],
|
||||
stage: "Basic",
|
||||
retreat: 1,
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
}]
|
||||
}
|
||||
|
||||
export default card
|
44
data/Trainer kits/SM trainer Kit (Lycanroc)/13.ts
Normal file
44
data/Trainer kits/SM trainer Kit (Lycanroc)/13.ts
Normal file
@@ -0,0 +1,44 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../SM trainer Kit (Lycanroc)'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Fletchinder",
|
||||
fr: "Braisillon",
|
||||
es: "Fletchinder",
|
||||
it: "Fletchinder",
|
||||
pt: "Fletchinder",
|
||||
de: "Dartignis"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Colorless"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Fletchling",
|
||||
fr: "Passerouge",
|
||||
es: "Fletchling",
|
||||
it: "Fletchling",
|
||||
pt: "Fletchling",
|
||||
de: "Dartiri"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
retreat: 1,
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: "Fighting",
|
||||
value: "-20"
|
||||
}]
|
||||
}
|
||||
|
||||
export default card
|
29
data/Trainer kits/SM trainer Kit (Lycanroc)/14.ts
Normal file
29
data/Trainer kits/SM trainer Kit (Lycanroc)/14.ts
Normal file
@@ -0,0 +1,29 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../SM trainer Kit (Lycanroc)'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Rockruff",
|
||||
fr: "Rocabot",
|
||||
es: "Rockruff",
|
||||
it: "Rockruff",
|
||||
pt: "Rockruff",
|
||||
de: "Wuffels"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Fighting"],
|
||||
stage: "Basic",
|
||||
retreat: 1,
|
||||
|
||||
weaknesses: [{
|
||||
type: "Grass",
|
||||
value: "×2"
|
||||
}]
|
||||
}
|
||||
|
||||
export default card
|
34
data/Trainer kits/SM trainer Kit (Lycanroc)/15.ts
Normal file
34
data/Trainer kits/SM trainer Kit (Lycanroc)/15.ts
Normal file
@@ -0,0 +1,34 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../SM trainer Kit (Lycanroc)'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Pikipek",
|
||||
fr: "Picassaut",
|
||||
es: "Pikipek",
|
||||
it: "Pikipek",
|
||||
pt: "Pikipek",
|
||||
de: "Peppeck"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 50,
|
||||
types: ["Colorless"],
|
||||
stage: "Basic",
|
||||
retreat: 1,
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: "Fighting",
|
||||
value: "-20"
|
||||
}]
|
||||
}
|
||||
|
||||
export default card
|
58
data/Trainer kits/SM trainer Kit (Lycanroc)/16.ts
Normal file
58
data/Trainer kits/SM trainer Kit (Lycanroc)/16.ts
Normal file
@@ -0,0 +1,58 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../SM trainer Kit (Lycanroc)'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Lycanroc",
|
||||
fr: "Lougaroc",
|
||||
es: "Lycanroc",
|
||||
it: "Lycanroc",
|
||||
pt: "Lycanroc",
|
||||
de: "Wolwerock"
|
||||
},
|
||||
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
hp: 110,
|
||||
types: ["Fighting"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Rockruff",
|
||||
fr: "Rocabot",
|
||||
es: "Rockruff",
|
||||
it: "Rockruff",
|
||||
pt: "Rockruff",
|
||||
de: "Wuffels"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
retreat: 1,
|
||||
illustrator: "5ban Graphics",
|
||||
|
||||
description: {
|
||||
en: "The more intimidating the opponent it faces, the more this Pokémon’s blood boils. It will attack with no regard for its own safety."
|
||||
},
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Bite"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}, {
|
||||
name: {
|
||||
en: "Claw Slash"
|
||||
},
|
||||
|
||||
damage: 80
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Grass",
|
||||
value: "×2"
|
||||
}]
|
||||
}
|
||||
|
||||
export default card
|
29
data/Trainer kits/SM trainer Kit (Lycanroc)/18.ts
Normal file
29
data/Trainer kits/SM trainer Kit (Lycanroc)/18.ts
Normal file
@@ -0,0 +1,29 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../SM trainer Kit (Lycanroc)'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Makuhita",
|
||||
fr: "Makuhita",
|
||||
es: "Makuhita",
|
||||
it: "Makuhita",
|
||||
pt: "Makuhita",
|
||||
de: "Makuhita"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Fighting"],
|
||||
stage: "Basic",
|
||||
retreat: 2,
|
||||
|
||||
weaknesses: [{
|
||||
type: "Psychic",
|
||||
value: "×2"
|
||||
}]
|
||||
}
|
||||
|
||||
export default card
|
31
data/Trainer kits/SM trainer Kit (Lycanroc)/19.ts
Normal file
31
data/Trainer kits/SM trainer Kit (Lycanroc)/19.ts
Normal file
@@ -0,0 +1,31 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../SM trainer Kit (Lycanroc)'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Hau",
|
||||
fr: "Tili",
|
||||
es: "Tilo",
|
||||
it: "Hau",
|
||||
pt: "Hibi",
|
||||
de: "Tali"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Trainer",
|
||||
|
||||
effect: {
|
||||
en: "Draw 3 cards.",
|
||||
fr: "Piochez 3 cartes.",
|
||||
es: "Roba 3 cartas.",
|
||||
it: "Pesca tre carte.",
|
||||
pt: "Compre 3 cartas.",
|
||||
de: "Ziehe 3 Karten."
|
||||
},
|
||||
|
||||
trainerType: "Supporter"
|
||||
}
|
||||
|
||||
export default card
|
31
data/Trainer kits/SM trainer Kit (Lycanroc)/21.ts
Normal file
31
data/Trainer kits/SM trainer Kit (Lycanroc)/21.ts
Normal file
@@ -0,0 +1,31 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../SM trainer Kit (Lycanroc)'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Great Ball",
|
||||
fr: "Super Ball",
|
||||
es: "Super Ball",
|
||||
it: "Mega Ball",
|
||||
pt: "Grande Bola",
|
||||
de: "Superball"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Trainer",
|
||||
|
||||
effect: {
|
||||
en: "Look at the top 7 cards of your deck. You may reveal a Pokémon you find there and put it into your hand. Shuffle the other cards back into your deck.",
|
||||
fr: "Regardez les 7 cartes du dessus de votre deck. Vous pouvez montrer un Pokémon que vous y trouvez et l’ajouter à votre main. Mélangez les autres cartes avec votre deck.",
|
||||
es: "Mira las 7 primeras cartas de tu baraja. Puedes enseñar 1 Pokémon que encuentres entre ellas y ponerlo en tu mano. Pon el resto de cartas de nuevo en tu baraja y barájalas todas.",
|
||||
it: "Guarda le prime sette carte del tuo mazzo. Puoi mostrare un Pokémon che hai trovato e aggiungerlo alle carte che hai in mano. Poi rimischia le altre carte nel tuo mazzo.",
|
||||
pt: "Olhe as 7 primeiras cartas do seu baralho. Você poderá revelar 1 Pokémon que encontrar lá e colocá-lo em sua mão. Embaralhe as demais cartas de volta no seu baralho.",
|
||||
de: "Schau dir die obersten 7 Karten deines Decks an. Du kannst 1 Pokémon, das du dort findest, deinem Gegner zeigen und auf deine Hand nehmen. Mische die anderen Karten zurück in dein Deck."
|
||||
},
|
||||
|
||||
trainerType: "Item"
|
||||
}
|
||||
|
||||
export default card
|
44
data/Trainer kits/SM trainer Kit (Lycanroc)/22.ts
Normal file
44
data/Trainer kits/SM trainer Kit (Lycanroc)/22.ts
Normal file
@@ -0,0 +1,44 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../SM trainer Kit (Lycanroc)'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Toucannon",
|
||||
fr: "Bazoucan",
|
||||
es: "Toucannon",
|
||||
it: "Toucannon",
|
||||
pt: "Toucannon",
|
||||
de: "Tukanon"
|
||||
},
|
||||
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
hp: 140,
|
||||
types: ["Colorless"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Trumbeak",
|
||||
fr: "Piclairon",
|
||||
es: "Trumbeak",
|
||||
it: "Trumbeak",
|
||||
pt: "Trumbeak",
|
||||
de: "Trompeck"
|
||||
},
|
||||
|
||||
stage: "Stage2",
|
||||
retreat: 2,
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: "Fighting",
|
||||
value: "-20"
|
||||
}]
|
||||
}
|
||||
|
||||
export default card
|
31
data/Trainer kits/SM trainer Kit (Lycanroc)/23.ts
Normal file
31
data/Trainer kits/SM trainer Kit (Lycanroc)/23.ts
Normal file
@@ -0,0 +1,31 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../SM trainer Kit (Lycanroc)'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Hau",
|
||||
fr: "Tili",
|
||||
es: "Tilo",
|
||||
it: "Hau",
|
||||
pt: "Hibi",
|
||||
de: "Tali"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Trainer",
|
||||
|
||||
effect: {
|
||||
en: "Draw 3 cards.",
|
||||
fr: "Piochez 3 cartes.",
|
||||
es: "Roba 3 cartas.",
|
||||
it: "Pesca tre carte.",
|
||||
pt: "Compre 3 cartas.",
|
||||
de: "Ziehe 3 Karten."
|
||||
},
|
||||
|
||||
trainerType: "Supporter"
|
||||
}
|
||||
|
||||
export default card
|
31
data/Trainer kits/SM trainer Kit (Lycanroc)/25.ts
Normal file
31
data/Trainer kits/SM trainer Kit (Lycanroc)/25.ts
Normal file
@@ -0,0 +1,31 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../SM trainer Kit (Lycanroc)'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Great Ball",
|
||||
fr: "Super Ball",
|
||||
es: "Super Ball",
|
||||
it: "Mega Ball",
|
||||
pt: "Grande Bola",
|
||||
de: "Superball"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Trainer",
|
||||
|
||||
effect: {
|
||||
en: "Look at the top 7 cards of your deck. You may reveal a Pokémon you find there and put it into your hand. Shuffle the other cards back into your deck.",
|
||||
fr: "Regardez les 7 cartes du dessus de votre deck. Vous pouvez montrer un Pokémon que vous y trouvez et l’ajouter à votre main. Mélangez les autres cartes avec votre deck.",
|
||||
es: "Mira las 7 primeras cartas de tu baraja. Puedes enseñar 1 Pokémon que encuentres entre ellas y ponerlo en tu mano. Pon el resto de cartas de nuevo en tu baraja y barájalas todas.",
|
||||
it: "Guarda le prime sette carte del tuo mazzo. Puoi mostrare un Pokémon che hai trovato e aggiungerlo alle carte che hai in mano. Poi rimischia le altre carte nel tuo mazzo.",
|
||||
pt: "Olhe as 7 primeiras cartas do seu baralho. Você poderá revelar 1 Pokémon que encontrar lá e colocá-lo em sua mão. Embaralhe as demais cartas de volta no seu baralho.",
|
||||
de: "Schau dir die obersten 7 Karten deines Decks an. Du kannst 1 Pokémon, das du dort findest, deinem Gegner zeigen und auf deine Hand nehmen. Mische die anderen Karten zurück in dein Deck."
|
||||
},
|
||||
|
||||
trainerType: "Item"
|
||||
}
|
||||
|
||||
export default card
|
31
data/Trainer kits/SM trainer Kit (Lycanroc)/27.ts
Normal file
31
data/Trainer kits/SM trainer Kit (Lycanroc)/27.ts
Normal file
@@ -0,0 +1,31 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../SM trainer Kit (Lycanroc)'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Big Malasada",
|
||||
fr: "Malasada Maxi",
|
||||
es: "Malasada Maxi",
|
||||
it: "Malasada maxi",
|
||||
pt: "Sonho Recheado Grande",
|
||||
de: "Maxi-Malasada"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Trainer",
|
||||
|
||||
effect: {
|
||||
en: "Heal 20 damage and remove a Special Condition from your Active Pokémon.",
|
||||
fr: "Soignez 20 dégâts et retirez un État Spécial de votre Pokémon Actif.",
|
||||
es: "Cura 20 puntos de daño y elimina 1 Condición Especial de tu Pokémon Activo.",
|
||||
it: "Cura il tuo Pokémon attivo da 20 danni e rimuovi una condizione speciale che lo influenza.",
|
||||
pt: "Cure 20 pontos de dano e remova 1 Condição Especial do seu Pokémon Ativo.",
|
||||
de: "Heile 20 Schadenspunkte und entferne 1 Speziellen Zustand von deinem Aktiven Pokémon."
|
||||
},
|
||||
|
||||
trainerType: "Item"
|
||||
}
|
||||
|
||||
export default card
|
29
data/Trainer kits/SM trainer Kit (Lycanroc)/29.ts
Normal file
29
data/Trainer kits/SM trainer Kit (Lycanroc)/29.ts
Normal file
@@ -0,0 +1,29 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../SM trainer Kit (Lycanroc)'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Rockruff",
|
||||
fr: "Rocabot",
|
||||
es: "Rockruff",
|
||||
it: "Rockruff",
|
||||
pt: "Rockruff",
|
||||
de: "Wuffels"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Fighting"],
|
||||
stage: "Basic",
|
||||
retreat: 1,
|
||||
|
||||
weaknesses: [{
|
||||
type: "Grass",
|
||||
value: "×2"
|
||||
}]
|
||||
}
|
||||
|
||||
export default card
|
58
data/Trainer kits/SM trainer Kit (Lycanroc)/30.ts
Normal file
58
data/Trainer kits/SM trainer Kit (Lycanroc)/30.ts
Normal file
@@ -0,0 +1,58 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../SM trainer Kit (Lycanroc)'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Lycanroc",
|
||||
fr: "Lougaroc",
|
||||
es: "Lycanroc",
|
||||
it: "Lycanroc",
|
||||
pt: "Lycanroc",
|
||||
de: "Wolwerock"
|
||||
},
|
||||
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
hp: 110,
|
||||
types: ["Fighting"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Rockruff",
|
||||
fr: "Rocabot",
|
||||
es: "Rockruff",
|
||||
it: "Rockruff",
|
||||
pt: "Rockruff",
|
||||
de: "Wuffels"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
retreat: 1,
|
||||
illustrator: "5ban Graphics",
|
||||
|
||||
description: {
|
||||
en: "The more intimidating the opponent it faces, the more this Pokémon’s blood boils. It will attack with no regard for its own safety."
|
||||
},
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Bite"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}, {
|
||||
name: {
|
||||
en: "Claw Slash"
|
||||
},
|
||||
|
||||
damage: 80
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Grass",
|
||||
value: "×2"
|
||||
}]
|
||||
}
|
||||
|
||||
export default card
|
44
data/Trainer kits/SM trainer Kit (Lycanroc)/4.ts
Normal file
44
data/Trainer kits/SM trainer Kit (Lycanroc)/4.ts
Normal file
@@ -0,0 +1,44 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../SM trainer Kit (Lycanroc)'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Trumbeak",
|
||||
fr: "Piclairon",
|
||||
es: "Trumbeak",
|
||||
it: "Trumbeak",
|
||||
pt: "Trumbeak",
|
||||
de: "Trompeck"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Colorless"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Pikipek",
|
||||
fr: "Picassaut",
|
||||
es: "Pikipek",
|
||||
it: "Pikipek",
|
||||
pt: "Pikipek",
|
||||
de: "Peppeck"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
retreat: 1,
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: "Fighting",
|
||||
value: "-20"
|
||||
}]
|
||||
}
|
||||
|
||||
export default card
|
21
data/Trainer kits/SM trainer Kit (Lycanroc)/5.ts
Normal file
21
data/Trainer kits/SM trainer Kit (Lycanroc)/5.ts
Normal file
@@ -0,0 +1,21 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../SM trainer Kit (Lycanroc)'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Fighting Energy",
|
||||
fr: "Énergie Combat",
|
||||
es: "Energía Lucha",
|
||||
it: "Energia Lotta",
|
||||
pt: "Energia de Luta",
|
||||
de: "Kampf-Energie"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Energy",
|
||||
energyType: "Normal"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user