1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-15 01:41:59 +00:00

Compare commits

..

21 Commits

Author SHA1 Message Date
Khaleeq Ahmad
a597759d9d fix: Pocket card data fixes (#659)
Co-authored-by: Khaleeq Ahmad <1710642+khaleeqahmad@users.noreply.github.com>
2025-02-19 21:52:42 +01:00
Octopixell
28662c55c3 fix: Add holo variants for sv03-148 and sv03-149 (#663) 2025-02-19 21:30:40 +01:00
Octopixell
eca49a1bee fix: add normal variant for swsh9-008 (#661) 2025-02-19 21:30:01 +01:00
Khaleeq Ahmad
de13bb175a feat: Add data for Promo-A cards 034-041 (#660)
Co-authored-by: Khaleeq Ahmad <1710642+khaleeqahmad@users.noreply.github.com>
2025-02-19 21:29:02 +01:00
34dc55b1d7 fix: TCGP promos should have a rarity of None (#657)
Signed-off-by: Avior <git@avior.me>
2025-02-07 00:51:20 +01:00
17ef7efab3 fix: missing 063 in A1a (#656)
Signed-off-by: Avior <git@avior.me>
2025-02-07 00:46:37 +01:00
Adam Woo
b6dab212b7 Fix sv08-106 variants (#651) 2025-02-05 14:49:11 +01:00
ff0cf14773 chore: update README 2025-01-30 23:10:34 +01:00
FalconChipp
2a2b6463ff Added evolveFrom tag to all Genetic Apex cards (#642)
Co-authored-by: Avior <github@avior.me>
2025-01-30 23:03:12 +01:00
Eric Cornely
6b3633e748 Added missing variants (#644)
Co-authored-by: Eric Cornely <eric.cornely@beoogo.be>
Co-authored-by: Avior <github@avior.me>
2025-01-30 23:03:05 +01:00
8fb7f88283 feat: Add Space-Time Smackdown (#648) 2025-01-30 22:53:07 +01:00
Benjamin Rousseliere
366e9e6ea7 feat: add release date to series (#620) 2025-01-27 16:38:57 +01:00
a33629e883 feat: Add Prismatic Evolutions (#637) 2025-01-18 01:56:17 +01:00
33232f1b65 chore : Add test for #566 (#569) 2025-01-10 03:09:38 +01:00
7568334dec chore: add example docker-compose file (#635) 2025-01-10 00:12:11 +01:00
Benjamin Rousseliere
f39956e429 fix: specific request crash (#621) 2025-01-09 23:48:58 +01:00
Duncan
a722ecbbda fix: Paldea Evolved variants are incorrect (#632) 2025-01-09 22:23:02 +01:00
f2a7f09e48 feat: Add the new Pokémon TCG Pocket promos (#627) 2025-01-01 23:29:50 +01:00
Benjamin Rousseliere
60031a9de6 fix: invalid names delta species (#623) 2024-12-19 11:52:36 +01:00
144b794610 fix: test not using the correct param 2024-12-19 01:26:12 +01:00
62f6671b63 feat: Add Mythical Island set (#624)
* feat: Add A1a

Signed-off-by: Avior <git@avior.me>

* fix: test failing

Signed-off-by: Avior <git@avior.me>

---------

Signed-off-by: Avior <git@avior.me>
2024-12-19 01:16:28 +01:00
977 changed files with 26950 additions and 559 deletions

View File

@@ -21,5 +21,5 @@ params:query {
assert {
res.status: eq 200
res.body: length 14
res.body.length: gte 14
}

View File

@@ -0,0 +1,15 @@
meta {
name: 566 - Specific request crash the request
type: http
seq: 7
}
get {
url: {{BASE_URL}}/v2/fr/cards?name=eq:Pikachu&name=eq:Pichu,Pikachu
body: none
auth: none
}
assert {
res.status: eq 200
}

View File

@@ -4,28 +4,31 @@ FROM docker.io/oven/bun:1-alpine AS build
WORKDIR /usr/src/app
# Add git as it is used to fetch updated times
RUN apk add git &&\
git config --global safe.directory '*'
RUN apk add git\
&& git config --global safe.directory '*'\
&& chown -R bun:bun .
USER bun
ADD --chown=bun:bun package.json bun.lockb ./
ADD --chown=bun:bun server/package.json server/bun.lockb ./server/
# install dependencies
RUN bun install --frozen-lockfile && \
cd server && \
bun install --frozen-lockfile
cd server && \
bun install --frozen-lockfile
# Add project files
ADD --chown=bun:bun . .
# build
RUN cd server && \
bun run compile
bun run compile
# remove dev dependencies (bun do not yet support "prune")
RUN cd server && \
rm -rf node_modules && \
bun install --frozen-install --production
rm -rf node_modules && \
bun install --frozen-install --production
# go to another VM
FROM docker.io/oven/bun:1-alpine AS prod

View File

@@ -31,7 +31,7 @@ A full documentation of the API is available at <https://tcgdex.dev>
- The easiest way to interact with the database is by using one of our SDKs listed below.
- You can also direcly use the endpoints at `api.tcgdex.net` (see the documentation).
- You can build the API yourself by using our `Dockerfile` and using it on the port 3000
- You can build the API yourself by using our `Dockerfile` and using it on the port 3000 (`docker-compose.yml` file included above)
#### SDKs / API Wrappers

View File

@@ -4,7 +4,7 @@ import Set from '../Crystal Guardians'
const card: Card = {
name: {
en: "Charmeleon δ",
fr: "Reptincel δ ESPÈCES DELTA",
fr: "Reptincel δ",
de: "Glutexo"
},
illustrator: "Mitsuhiro Arita",

View File

@@ -4,7 +4,7 @@ import Set from '../Crystal Guardians'
const card: Card = {
name: {
en: "Charmander δ",
fr: "Salamèche δ ESPÈCES DELTA",
fr: "Salamèche δ",
de: "Glumanda"
},
illustrator: "Mitsuhiro Arita",

View File

@@ -4,7 +4,7 @@ import Set from '../Delta Species'
const card: Card = {
name: {
en: "Beedrill δ",
fr: "Dardargnan δ ESPÈCES DELTA",
fr: "Dardargnan δ",
de: "Bibor"
},
illustrator: "Masakazu Fukuda",

View File

@@ -4,7 +4,7 @@ import Set from '../Delta Species'
const card: Card = {
name: {
en: "Marowak δ",
fr: "Ossatueur δ ESPÈCES DELTA",
fr: "Ossatueur δ",
de: "Knogga"
},
illustrator: "Hajime Kusajima",

View File

@@ -4,7 +4,7 @@ import Set from '../Delta Species'
const card: Card = {
name: {
en: "Metagross δ",
fr: "Metalosse δ ESPÈCES DELTA",
fr: "Metalosse δ",
de: "Metagross"
},
illustrator: "Masakazu Fukuda",

View File

@@ -4,7 +4,7 @@ import Set from '../Delta Species'
const card: Card = {
name: {
en: "Mewtwo δ",
fr: "Mewtwo δ ESPÈCES DELTA",
fr: "Mewtwo δ",
de: "Mewtu"
},
illustrator: "Ryo Ueda",

View File

@@ -4,7 +4,7 @@ import Set from '../Delta Species'
const card: Card = {
name: {
en: "Rayquaza δ",
fr: "Rayquaza δ ESPÈCES DELTA",
fr: "Rayquaza δ",
de: "Rayquaza"
},
illustrator: "Ryo Ueda",

View File

@@ -4,7 +4,7 @@ import Set from '../Delta Species'
const card: Card = {
name: {
en: "Salamence δ",
fr: "Drattak δ ESPÈCES DELTA",
fr: "Drattak δ",
de: "Brutalanda"
},
illustrator: "Ryo Ueda",

View File

@@ -4,7 +4,7 @@ import Set from '../Delta Species'
const card: Card = {
name: {
en: "Starmie δ",
fr: "Staross δ ESPÈCES DELTA",
fr: "Staross δ",
de: "Starmie"
},
illustrator: "Masakazu Fukuda",

View File

@@ -4,7 +4,7 @@ import Set from '../Delta Species'
const card: Card = {
name: {
en: "Tyranitar δ",
fr: "Tyranocif δ ESPÈCES DELTA",
fr: "Tyranocif δ",
de: "Despotar"
},
illustrator: "Mitsuhiro Arita",

View File

@@ -4,7 +4,7 @@ import Set from '../Delta Species'
const card: Card = {
name: {
en: "Umbreon δ",
fr: "Noctali δ ESPÈCES DELTA",
fr: "Noctali δ",
de: "Nachtara"
},
illustrator: "Ryo Ueda",

View File

@@ -4,7 +4,7 @@ import Set from '../Delta Species'
const card: Card = {
name: {
en: "Vaporeon δ",
fr: "Aquali δ ESPÈCES DELTA",
fr: "Aquali δ",
de: "Aquana"
},
illustrator: "Kouki Saitou",

View File

@@ -4,7 +4,7 @@ import Set from '../Delta Species'
const card: Card = {
name: {
en: "Azumarill δ",
fr: "Azumarill δ ESPÈCES DELTA",
fr: "Azumarill δ",
de: "Azumarill"
},
illustrator: "Atsuko Nishida",

View File

@@ -4,7 +4,7 @@ import Set from '../Delta Species'
const card: Card = {
name: {
en: "Crobat δ",
fr: "Nostenfer δ ESPÈCES DELTA",
fr: "Nostenfer δ",
de: "Iksbat"
},
illustrator: "Ryo Ueda",

View File

@@ -4,7 +4,7 @@ import Set from '../Delta Species'
const card: Card = {
name: {
en: "Mightyena δ",
fr: "Grahyena δ ESPÈCES DELTA",
fr: "Grahyena δ",
de: "Magnayen"
},
illustrator: "Hajime Kusajima",

View File

@@ -4,7 +4,7 @@ import Set from '../Delta Species'
const card: Card = {
name: {
en: "Sandslash δ",
fr: "Sablaireau δ ESPÈCES DELTA",
fr: "Sablaireau δ",
de: "Sandamer"
},
illustrator: "Mitsuhiro Arita",

View File

@@ -4,7 +4,7 @@ import Set from '../Delta Species'
const card: Card = {
name: {
en: "Dragonite δ",
fr: "Dracolosse δ ESPÈCES DELTA",
fr: "Dracolosse δ",
de: "Dragoran"
},
illustrator: "Ryo Ueda",

View File

@@ -4,7 +4,7 @@ import Set from '../Delta Species'
const card: Card = {
name: {
en: "Starmie δ",
fr: "Staross δ ESPÈCES DELTA",
fr: "Staross δ",
de: "Starmie"
},
illustrator: "Midori Harada",

View File

@@ -4,7 +4,7 @@ import Set from '../Delta Species'
const card: Card = {
name: {
en: "Espeon δ",
fr: "Mentali δ ESPÈCES DELTA",
fr: "Mentali δ",
de: "Psiana"
},
illustrator: "Ryo Ueda",

View File

@@ -4,7 +4,7 @@ import Set from '../Delta Species'
const card: Card = {
name: {
en: "Dragonair δ",
fr: "Draco δ ESPÈCES DELTA",
fr: "Draco δ",
de: "Dragonir"
},
illustrator: "Hajime Kusajima",

View File

@@ -4,7 +4,7 @@ import Set from '../Delta Species'
const card: Card = {
name: {
en: "Dragonair δ",
fr: "Draco δ ESPÈCES DELTA",
fr: "Draco δ",
de: "Dragonir"
},
illustrator: "Mitsuhiro Arita",

View File

@@ -4,7 +4,7 @@ import Set from '../Delta Species'
const card: Card = {
name: {
en: "Metang δ",
fr: "Metang δ ESPÈCES DELTA",
fr: "Metang δ",
de: "Metang"
},
illustrator: "Hajime Kusajima",

View File

@@ -4,7 +4,7 @@ import Set from '../Delta Species'
const card: Card = {
name: {
en: "Flareon δ",
fr: "Pyroli δ ESPÈCES DELTA",
fr: "Pyroli δ",
de: "Flamara"
},
illustrator: "Kouki Saitou",

View File

@@ -4,7 +4,7 @@ import Set from '../Delta Species'
const card: Card = {
name: {
en: "Pupitar δ",
fr: "Ymphect δ ESPÈCES DELTA",
fr: "Ymphect δ",
de: "Pupitar"
},
illustrator: "Masakazu Fukuda",

View File

@@ -4,7 +4,7 @@ import Set from '../Delta Species'
const card: Card = {
name: {
en: "Shelgon δ",
fr: "Drackhaus δ ESPÈCES DELTA",
fr: "Drackhaus δ",
de: "Draschel"
},
illustrator: "Masakazu Fukuda",

View File

@@ -4,7 +4,7 @@ import Set from '../Delta Species'
const card: Card = {
name: {
en: "Shelgon δ",
fr: "Drackhaus δ ESPÈCES DELTA",
fr: "Drackhaus δ",
de: "Draschel"
},
illustrator: "Mitsuhiro Arita",

View File

@@ -4,7 +4,7 @@ import Set from '../Delta Species'
const card: Card = {
name: {
en: "Bagon δ",
fr: "Draby δ ESPÈCES DELTA",
fr: "Draby δ",
de: "Kindwurm"
},
illustrator: "Masakazu Fukuda",

View File

@@ -4,7 +4,7 @@ import Set from '../Delta Species'
const card: Card = {
name: {
en: "Bagon δ",
fr: "Draby δ ESPÈCES DELTA",
fr: "Draby δ",
de: "Kindwurm"
},
illustrator: "Hajime Kusajima",

View File

@@ -4,7 +4,7 @@ import Set from '../Delta Species'
const card: Card = {
name: {
en: "Gardevoir δ",
fr: "Gardevoir δ ESPÈCES DELTA",
fr: "Gardevoir δ",
de: "Guardevoir"
},
illustrator: "Mitsuhiro Arita",

View File

@@ -4,7 +4,7 @@ import Set from '../Delta Species'
const card: Card = {
name: {
en: "Dratini δ",
fr: "Minidraco δ ESPÈCES DELTA",
fr: "Minidraco δ",
de: "Dratini"
},
illustrator: "Hajime Kusajima",

View File

@@ -4,7 +4,7 @@ import Set from '../Delta Species'
const card: Card = {
name: {
en: "Dratini δ",
fr: "Minidraco δ ESPÈCES DELTA",
fr: "Minidraco δ",
de: "Dratini"
},
illustrator: "Mitsuhiro Arita",

View File

@@ -4,7 +4,7 @@ import Set from '../Delta Species'
const card: Card = {
name: {
en: "Eevee δ",
fr: "Evoli δ ESPÈCES DELTA",
fr: "Evoli δ",
de: "Evoli"
},
illustrator: "Mitsuhiro Arita",

View File

@@ -4,7 +4,7 @@ import Set from '../Delta Species'
const card: Card = {
name: {
en: "Jolteon δ",
fr: "Voltali δ ESPÈCES DELTA",
fr: "Voltali δ",
de: "Blitza"
},
illustrator: "Kouki Saitou",

View File

@@ -4,7 +4,7 @@ import Set from '../Delta Species'
const card: Card = {
name: {
en: "Larvitar δ",
fr: "Embrylex δ ESPÈCES DELTA",
fr: "Embrylex δ",
de: "Larvitar"
},
illustrator: "Hajime Kusajima",

View File

@@ -4,7 +4,7 @@ import Set from '../Delta Species'
const card: Card = {
name: {
en: "Latias δ",
fr: "Latias δ ESPÈCES DELTA",
fr: "Latias δ",
de: "Latias"
},
illustrator: "Ryo Ueda",

View File

@@ -4,7 +4,7 @@ import Set from '../Delta Species'
const card: Card = {
name: {
en: "Latios δ",
fr: "Latios δ ESPÈCES DELTA",
fr: "Latios δ",
de: "Latios"
},
illustrator: "Ryo Ueda",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Ampharos δ",
fr: "Pharamp δ ESPÈCES DELTA",
fr: "Pharamp δ",
de: "Ampharos"
},
illustrator: "Kagemaru Himeno",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Snorlax δ",
fr: "Ronflex δ ESPÈCES DELTA",
fr: "Ronflex δ",
de: "Relaxo"
},
illustrator: "Masakazu Fukuda",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Togetic δ",
fr: "Togetic δ ESPÈCES DELTA",
fr: "Togetic δ",
de: "Togetic"
},
illustrator: "Kouki Saitou",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Typhlosion δ",
fr: "Typhlosion δ ESPÈCES DELTA",
fr: "Typhlosion δ",
de: "Tornupto"
},
illustrator: "Hisao Nakamura",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Arbok δ",
fr: "Arbok δ ESPÈCES DELTA",
fr: "Arbok δ",
de: "Arbok"
},
illustrator: "Hisao Nakamura",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Cloyster δ",
fr: "Crustabri δ ESPÈCES DELTA",
fr: "Crustabri δ",
de: "Austos"
},
illustrator: "Mitsuhiro Arita",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Dewgong δ",
fr: "Lamantine δ ESPÈCES DELTA",
fr: "Lamantine δ",
de: "Jugong"
},
illustrator: "Atsuko Nishida",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Gligar δ",
fr: "Scorplane δ ESPÈCES DELTA",
fr: "Scorplane δ",
de: "Skorgla"
},
illustrator: "Kagemaru Himeno",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Jynx δ",
fr: "Lippoutou δ ESPÈCES DELTA",
fr: "Lippoutou δ",
de: "Rossana"
},
illustrator: "Ken Sugimori",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Ledian δ",
fr: "Coxyclaque δ ESPÈCES DELTA",
fr: "Coxyclaque δ",
de: "Ledian"
},
illustrator: "Hajime Kusajima",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Lickitung δ",
fr: "Excelangue δ ESPÈCES DELTA",
fr: "Excelangue δ",
de: "Schlurp"
},
illustrator: "Masakazu Fukuda",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Feraligatr δ",
fr: "Aligatueur δ ESPÈCES DELTA",
fr: "Aligatueur δ",
de: "Impergator"
},
illustrator: "Kouki Saitou",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Mantine δ",
fr: "Demanta δ ESPÈCES DELTA",
fr: "Demanta δ",
de: "Mantax"
},
illustrator: "Sumiyoshi Kizuki",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Quagsire δ",
fr: "Maraiste δ ESPÈCES DELTA",
fr: "Maraiste δ",
de: "Morlord"
},
illustrator: "Sachiko Adachi",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Seadra δ",
fr: "Hypocéan δ ESPÈCES DELTA",
fr: "Hypocéan δ",
de: "Seemon"
},
illustrator: "Sachiko Adachi",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Tropius δ",
fr: "Tropius δ ESPÈCES DELTA",
fr: "Tropius δ",
de: "Tropius"
},
illustrator: "Mitsuhiro Arita",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Vibrava δ",
fr: "Vibraninf δ ESPÈCES DELTA",
fr: "Vibraninf δ",
de: "Vibrava"
},
illustrator: "Tomokazu Komiya",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Xatu δ",
fr: "Xatu δ ESPÈCES DELTA",
fr: "Xatu δ",
de: "Xatu"
},
illustrator: "Kouki Saitou",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Bayleef δ",
fr: "Macronium δ ESPÈCES DELTA",
fr: "Macronium δ",
de: "Lorblatt"
},
illustrator: "Kagemaru Himeno",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Croconaw δ",
fr: "Crocrodil δ ESPÈCES DELTA",
fr: "Crocrodil δ",
de: "Tyracroc"
},
illustrator: "Yuka Morii",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Dragonair δ",
fr: "Draco δ ESPÈCES DELTA",
fr: "Draco δ",
de: "Dragonir"
},
illustrator: "Kouki Saitou",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Electabuzz δ",
fr: "Elektek δ ESPÈCES DELTA",
fr: "Elektek δ",
de: "Elektek"
},
illustrator: "Ken Sugimori",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Heracross δ",
fr: "Scarhino δ ESPÈCES DELTA",
fr: "Scarhino δ",
de: "Skaraborn"
},
illustrator: "Mitsuhiro Arita",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Flaaffy δ",
fr: "Lainergie δ ESPÈCES DELTA",
fr: "Lainergie δ",
de: "Waaty"
},
illustrator: "Yuka Morii",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Horsea δ",
fr: "Hypotrempe δ ESPÈCES DELTA",
fr: "Hypotrempe δ",
de: "Seeper"
},
illustrator: "Tomokazu Komiya",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Kirlia δ",
fr: "Kirlia δ ESPÈCES DELTA",
fr: "Kirlia δ",
de: "Kirlia"
},
illustrator: "Kyoko Umemoto",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Nidorino δ",
fr: "Nidorino δ ESPÈCES DELTA",
fr: "Nidorino δ",
de: "Nidorino"
},
illustrator: "Atsuko Nishida",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Quilava δ",
fr: "Feurisson δ ESPÈCES DELTA",
fr: "Feurisson δ",
de: "Igelavar"
},
illustrator: "Midori Harada",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Seadra δ",
fr: "Hypocéan δ ESPÈCES DELTA",
fr: "Hypocéan δ",
de: "Seemon"
},
illustrator: "Hisao Nakamura",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Shelgon δ",
fr: "Drackhaus δ ESPÈCES DELTA",
fr: "Drackhaus δ",
de: "Draschel"
},
illustrator: "Kyoko Umemoto",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Smeargle δ",
fr: "Queulorior δ ESPÈCES DELTA",
fr: "Queulorior δ",
de: "Farbeagle"
},
illustrator: "Kagemaru Himeno",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Meganium δ",
fr: "Meganium δ ESPÈCES DELTA",
fr: "Meganium δ",
de: "Meganie"
},
illustrator: "Sumiyoshi Kizuki",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Swellow δ",
fr: "Heledelle δ ESPÈCES DELTA",
fr: "Heledelle δ",
de: "Schwalboss"
},
illustrator: "Sumiyoshi Kizuki",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Togepi δ",
fr: "Togepi δ ESPÈCES DELTA",
fr: "Togepi δ",
de: "Togepi"
},
illustrator: "Miki Tanaka",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Vibrava δ",
fr: "Vibraninf δ ESPÈCES DELTA",
fr: "Vibraninf δ",
de: "Vibrava"
},
illustrator: "Midori Harada",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Bagon δ",
fr: "Draby δ ESPÈCES DELTA",
fr: "Draby δ",
de: "Kindwurm"
},
illustrator: "Hajime Kusajima",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Chikorita δ",
fr: "Germignon δ ESPÈCES DELTA",
fr: "Germignon δ",
de: "Endivie"
},
illustrator: "Yuka Morii",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Cyndaquil δ",
fr: "Héricendre δ ESPÈCES DELTA",
fr: "Héricendre δ",
de: "Feurigel"
},
illustrator: "Atsuko Nishida",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Dratini δ",
fr: "Minidraco δ ESPÈCES DELTA",
fr: "Minidraco δ",
de: "Dratini"
},
illustrator: "Tomokazu Komiya",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Ekans δ",
fr: "Abo δ ESPÈCES DELTA",
fr: "Abo δ",
de: "Rettan"
},
illustrator: "Yuka Morii",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Elekid δ",
fr: "Elekid δ ESPÈCES DELTA",
fr: "Elekid δ",
de: "Elekid"
},
illustrator: "Ken Sugimori",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Feebas δ",
fr: "Barpau δ ESPÈCES DELTA",
fr: "Barpau δ",
de: "Barschwa"
},
illustrator: "Yukiko Baba",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Milotic δ",
fr: "Milobellus δ ESPÈCES DELTA",
fr: "Milobellus δ",
de: "Milotic"
},
illustrator: "Midori Harada",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Horsea δ",
fr: "Hypotrempe δ ESPÈCES DELTA",
fr: "Hypotrempe δ",
de: "Seeper"
},
illustrator: "Hisao Nakamura",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Mareep δ",
fr: "Wattouat δ ESPÈCES DELTA",
fr: "Wattouat δ",
de: "Voltilamm"
},
illustrator: "Sachiko Adachi",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Nidoran♀ δ",
fr: "Nidoran ♀ δ ESPÈCES DELTA",
fr: "Nidoran ♀ δ",
de: "Nidoran W"
},
illustrator: "Hajime Kusajima",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Nidoran♂ δ",
fr: "Nidoran ♂ δ ESPÈCES DELTA",
fr: "Nidoran ♂ δ",
de: "Nidoran M"
},
illustrator: "Midori Harada",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Pupitar δ",
fr: "Ymphect δ ESPÈCES DELTA",
fr: "Ymphect δ",
de: "Pupitar"
},
illustrator: "Kouki Saitou",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Nidoking δ",
fr: "Nidoking δ ESPÈCES DELTA",
fr: "Nidoking δ",
de: "Nidoking"
},
illustrator: "Mitsuhiro Arita",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Ralts δ",
fr: "Tarsal δ ESPÈCES DELTA",
fr: "Tarsal δ",
de: "Trasla"
},
illustrator: "Kyoko Umemoto",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Seel δ",
fr: "Otaria δ ESPÈCES DELTA",
fr: "Otaria δ",
de: "Jurob"
},
illustrator: "Hajime Kusajima",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Shellder δ",
fr: "Kokiyas δ ESPÈCES DELTA",
fr: "Kokiyas δ",
de: "Muschas"
},
illustrator: "Hisao Nakamura",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Smoochum δ",
fr: "Lippouti δ ESPÈCES DELTA",
fr: "Lippouti δ",
de: "Kussilla"
},
illustrator: "Miki Tanaka",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Swablu δ",
fr: "Tylton δ ESPÈCES DELTA",
fr: "Tylton δ",
de: "Wablu"
},
illustrator: "Miki Tanaka",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Taillow δ",
fr: "Nirondelle δ ESPÈCES DELTA",
fr: "Nirondelle δ",
de: "Schwalbini"
},
illustrator: "Miki Tanaka",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Totodile δ",
fr: "Kaiminus δ ESPÈCES DELTA",
fr: "Kaiminus δ",
de: "Karnimani"
},
illustrator: "Hisao Nakamura",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Trapinch δ",
fr: "Kraknoix δ ESPÈCES DELTA",
fr: "Kraknoix δ",
de: "Knacklion"
},
illustrator: "Midori Harada",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Trapinch δ",
fr: "Kraknoix δ ESPÈCES DELTA",
fr: "Kraknoix δ",
de: "Knacklion"
},
illustrator: "Yukiko Baba",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Nidoqueen δ",
fr: "Nidoqueen δ ESPÈCES DELTA",
fr: "Nidoqueen δ",
de: "Nidoqueen"
},
illustrator: "Kouki Saitou",

View File

@@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Vulpix δ",
fr: "Goupix δ ESPÈCES DELTA",
fr: "Goupix δ",
de: "Vulpix"
},
illustrator: "Sachiko Adachi",

Some files were not shown because too many files have changed in this diff Show More