diff --git a/.nvimrc.lua b/.nvimrc.lua
new file mode 100644
index 0000000..78f98c0
--- /dev/null
+++ b/.nvimrc.lua
@@ -0,0 +1,21 @@
+-- Set spelling
+local function set_lang(buf)
+ if string.match(vim.api.nvim_buf_get_name(buf), "en.md$") ~= nil then
+ vim.opt_local.spelllang = "en"
+ else
+ vim.opt_local.spelllang = "es"
+ end
+end
+
+vim.api.nvim_create_autocmd({ "FileType" }, {
+ pattern = "markdown",
+ callback = function(event)
+ set_lang(event.buf)
+ end,
+})
+
+for _, buf in ipairs(vim.api.nvim_list_bufs()) do
+ if vim.api.nvim_get_option_value("filetype", { buf = buf }) == "markdown" then
+ set_lang(buf)
+ end
+end
diff --git a/README.md b/README.md
index 48b207d..8f078bb 100644
--- a/README.md
+++ b/README.md
@@ -31,5 +31,5 @@ Para hacer un inserto con una carta en particular, necesitamos intestar código
el que sigue en nuestro archivo
```
-{{ ptcg_card(id="scr-es-128") }}
+{{ ptcg_card(id="terapagos-ex-es") }}
```
diff --git a/config.toml b/config.toml
index 47658dd..3883b81 100644
--- a/config.toml
+++ b/config.toml
@@ -48,16 +48,24 @@ ptcg-stage2 = "Fase 2"
ptcg-vstar = "V-Astro"
ptcg-ability = "Habilidad"
ptcg-vstar-power = "Poder V-Astro"
-ptcg-acespec = "As Táctico"
-ptcg-acespec-text = "No puedes tener más de una carta AS TÁCTICO en tu baraja."
+ptcg-weakness = "Debilidad"
+ptcg-resistance = "Resistencia"
+ptcg-retreat = "Retirada"
ptcg-tera = "Teracristal"
ptcg-tera-text = "Mientras este Pokémon esté en tu Banca, evita todo el daño infligido a este Pokémon por ataques (tanto tuyos como de tu rival)."
+ptcg-ancient = "Pasado"
+ptcg-future = "Futuro"
ptcg-ex-rule = "Regla para los Pokémon ex"
ptcg-ex-rule-text = "Cuando tu Pokémon ex queda Fuera de Combate, tu rival coge 2 cartas de premio."
ptcg-v-rule = "Regla V"
ptcg-v-rule-text = "Cuando tu Pokémon V queda Fuera de Combate, tu rival coge 2 cartas de Premio."
-ptcg-radiant-rule = "Regla para los Pokémon Radiante"
+ptcg-vstar-rule = "Regla V-Astro"
+ptcg-vstar-rule-text = "Cuando tu Pokémon V-ASTRO queda Fuera de Combate, tu rival coge 2 cartas de Premio."
+ptcg-radiant-rule = "Regla para los Pokémon Radiantes"
ptcg-radiant-rule-text = "No puedes tener más de 1 Pokémon Radiante en tu baraja."
+ptcg-acespec = "As Táctico"
+ptcg-acespec-text = "No puedes tener más de una carta AS TÁCTICO en tu baraja."
+ptcg-tagteam = "Relevos"
ptcg-trainers = "Entrenadores"
ptcg-trainer = "Entrenador"
ptcg-item = "Objeto"
@@ -72,4 +80,3 @@ ptcg-energies = "Energías"
ptcg-energy = "Energía"
ptcg-energy-basic = "Básica"
ptcg-energy-special = "Especial"
-
diff --git a/content/ptcg/cards/asr-es-050.toml b/content/ptcg/cards/asr-es-050.toml
deleted file mode 100644
index c5da955..0000000
--- a/content/ptcg/cards/asr-es-050.toml
+++ /dev/null
@@ -1,13 +0,0 @@
-name = "Luxray V"
-kind = "pokemon"
-type = "basic"
-hp = 210
-element = "[L]"
-attacks = [
- { cost = "[C][C]", name = "Disparo Colmillo", damage = 30, effect = "Tu rival enseña las cartas de su mano. Descarta 1 carta de Entrenador que encuentres entre ellas." },
- { cost = "[L][L][C]", name = "Pulso Radiante", damage = 120, effect = "Descarta 2 Energías de este Pokémon. El Pokémon Activo de tu rival pasa a estar Paralizado." },
-]
-rulebox = "v"
-weakness = "[L]×2"
-resistance = ""
-retreat = "[C]"
diff --git a/content/ptcg/cards/asr-es-134.toml b/content/ptcg/cards/asr-es-134.toml
deleted file mode 100644
index eb94b93..0000000
--- a/content/ptcg/cards/asr-es-134.toml
+++ /dev/null
@@ -1,13 +0,0 @@
-name = "Wyrdeer V"
-kind = "pokemon"
-type = "basic"
-hp = 220
-element = "[C]"
-ability = { name = "Camino Fronterizo", effect = "Una vez durante tu turno, cuando este Pokémon se mueve de tu Banca al Puesto Activo, puedes mover cualquier cantidad de Energías de tus otros Pokémon a este Pokémon." }
-attacks = [
- { cost = "[C][C][C]", name = "Asalto Barrera", damage = "40×", effect = "Este ataque hace 40 puntos de daño por cada Energía unida a este Pokémon." },
-]
-rulebox = "v"
-weakness = "[F]×2"
-resistance = ""
-retreat = "[C][C]"
diff --git a/content/ptcg/cards/asr-es-155.toml b/content/ptcg/cards/asr-es-155.toml
deleted file mode 100644
index 9e89604..0000000
--- a/content/ptcg/cards/asr-es-155.toml
+++ /dev/null
@@ -1,4 +0,0 @@
-name = "Templo de Sinnoh"
-kind = "trainer"
-type = "stadium"
-effect = "Todas las Energías Especiales unidas a los Pokémon (tanto tuyos como de tu rival) proporcionan 1 Energía [C] y no tienen ningún otro efecto."
diff --git a/content/ptcg/cards/brs-es-040.toml b/content/ptcg/cards/brs-es-040.toml
deleted file mode 100644
index f3d7eac..0000000
--- a/content/ptcg/cards/brs-es-040.toml
+++ /dev/null
@@ -1,13 +0,0 @@
-name = "Lumineon V"
-kind = "pokemon"
-type = "basic"
-hp = 170
-element = "[W]"
-ability = { name = "Señal Luminosa", effect = "Cuando juegas este Pokémon de tu mano a tu Banca, puedes buscar en tu baraja 1 carta de Partidario, enseñarla y ponerla en tu mano. Después, baraja las cartas de tu baraja." }
-attacks = [
- { cost = "[W][C][C]", name = "Retorno Acuático", damage = 120, effect = "Pon este Pokémon y todas las cartas unidas a él en tu baraja, y baraja todas las cartas." },
-]
-rulebox = "v"
-weakness = "[L]×2"
-resistance = ""
-retreat = "[C]"
diff --git a/content/ptcg/cards/brs-es-041.toml b/content/ptcg/cards/brs-es-041.toml
deleted file mode 100644
index 9bd659b..0000000
--- a/content/ptcg/cards/brs-es-041.toml
+++ /dev/null
@@ -1,10 +0,0 @@
-name = "Manaphy"
-kind = "pokemon"
-type = "basic"
-hp = 70
-element = "[W]"
-ability = { name = "Velo de Olas", effect = "Evita todo el daño infligido a tus Pokémon en Banca por ataques de los Pokémon de tu rival." }
-attacks = [{ cost = "[W]", name = "Retorno Acuático", damage = 20 }]
-weakness = "[L]×2"
-resistance = ""
-retreat = "[C]"
diff --git a/content/ptcg/cards/brs-es-048.toml b/content/ptcg/cards/brs-es-048.toml
deleted file mode 100644
index b0618f9..0000000
--- a/content/ptcg/cards/brs-es-048.toml
+++ /dev/null
@@ -1,13 +0,0 @@
-name = "Raikou V"
-kind = "pokemon"
-type = "basic"
-hp = 200
-element = "[L]"
-ability = { name = "Celeridad", effect = "Una vez durante tu turno, si este Pokémon está en el Puesto Activo, puedes robar 1 carta." }
-attacks = [
- { cost = "[L][C]", name = "Rondó Relámpago", damage = "20+", effect = "Este ataque hace 40 puntos de daño más por cada Pokémon en Banca (tanto tuyos, como de tu rival)." },
-]
-rulebox = "v"
-weakness = "[F]×2"
-resistance = ""
-retreat = "[C]"
diff --git a/content/ptcg/cards/brs-es-124.toml b/content/ptcg/cards/brs-es-124.toml
deleted file mode 100644
index c4c7e2d..0000000
--- a/content/ptcg/cards/brs-es-124.toml
+++ /dev/null
@@ -1,12 +0,0 @@
-name = "Minccino"
-kind = "pokemon"
-type = "basic"
-hp = 60
-element = "[C]"
-attacks = [
- { cost = "[C]", name = "Llamar a la Familia", effect = "Busca en tu baraja hasta 2 Pokémon Básicos y ponlos en tu Banca. Después, baraja las cartas de tu baraja." },
- { cost = "[C]", name = "Destructor", damage = "10" },
-]
-weakness = "[F]×2"
-resistance = ""
-retreat = "[C]"
diff --git a/content/ptcg/cards/brs-es-137.toml b/content/ptcg/cards/brs-es-137.toml
deleted file mode 100644
index 0bfd697..0000000
--- a/content/ptcg/cards/brs-es-137.toml
+++ /dev/null
@@ -1,4 +0,0 @@
-name = "Estadio en Ruinas"
-kind = "trainer"
-type = "stadium"
-effect = "Ningún jugador puede tener más de 4 Pokémon en Banca. Si un jugador tiene 5 Pokémon en Banca o más, descarta Pokémon en Banca hasta tener 4 Pokémon en la Banca. El jugador que juegue esta carta descarta primero. Si más de un efecto cambia el número de Pokémon en Banca permitidos, se usa el número menor."
diff --git a/content/ptcg/cards/brs-es-151.toml b/content/ptcg/cards/brs-es-151.toml
deleted file mode 100644
index 7b0155c..0000000
--- a/content/ptcg/cards/brs-es-151.toml
+++ /dev/null
@@ -1,4 +0,0 @@
-name = "Doble Energía Turbo"
-kind = "energy"
-type = "special"
-effect = "Mientras esta carta esté unida a un Pokémon, proporciona 2 Energías [C]. Los ataques del Pokémon al que esté unida esta carta hacen 20 puntos de daño menos a los Pokémon de tu rival (antes de aplicar Debilidad y Resistencia)."
diff --git a/content/ptcg/cards/crz-es-020.toml b/content/ptcg/cards/crz-es-020.toml
deleted file mode 100644
index fcbc53d..0000000
--- a/content/ptcg/cards/crz-es-020.toml
+++ /dev/null
@@ -1,13 +0,0 @@
-name = "Charizard Radiante"
-kind = "pokemon"
-type = "basic"
-hp = 150
-element = "[R]"
-ability = { name = "Corazón Exaltado", effect = "Los ataques de este Pokémon cuestan [C] menos por cada carta de Premio que haya cogido tu rival." }
-attacks = [
- { cost = "[R][C][C][C][C]", name = "Estallido Fuego", damage = "250", effect = "Durante tu próximo turno, este Pokémon no puede usar Estallido Fuego." },
-]
-rulebox = "radiant"
-weakness = "[W]×2"
-resistance = ""
-retreat = "[C][C][C]"
diff --git a/content/ptcg/cards/lor-es-058.toml b/content/ptcg/cards/lor-es-058.toml
deleted file mode 100644
index 49b48e8..0000000
--- a/content/ptcg/cards/lor-es-058.toml
+++ /dev/null
@@ -1,13 +0,0 @@
-name = "Rotom V"
-kind = "pokemon"
-type = "basic"
-hp = 190
-element = "[L]"
-ability = { name = "Carga Instantánea", effect = "Una vez durante tu turno, puedes robar 3 cartas. Si usas esta habilidad, tu turno termina." }
-attacks = [
- { cost = "[L][L]", name = "Cortocircuito Chatarra", damage = "40+", effect = "Pon cualquier cantidad de cartas de Herramienta Pokémon de tu pila de descartes en la Zona Perdida. Este ataque hace 40 puntos de daño más por cada carta que hayas puesto en la Zona Perdida de esta manera." },
-]
-rulebox = "v"
-weakness = "[F]×2"
-resistance = ""
-retreat = "[C]"
diff --git a/content/ptcg/cards/lor-es-167.toml b/content/ptcg/cards/lor-es-167.toml
deleted file mode 100644
index 40503f9..0000000
--- a/content/ptcg/cards/lor-es-167.toml
+++ /dev/null
@@ -1,4 +0,0 @@
-name = "Espinal"
-kind = "trainer"
-type = "supporter"
-effect = "Elige 1 Pokémon Básico de tu pila de descartes y cámbialo por 1 de tus Pokémon Básicos en juego. Todas las cartas unidas a este Pokémon, los contadores de daño, las Condiciones Especiales, los turnos de juego y todos los demás efectos permanecen en el nuevo Pokémon."
diff --git a/content/ptcg/cards/lor-es-171.toml b/content/ptcg/cards/lor-es-171.toml
deleted file mode 100644
index 01554b7..0000000
--- a/content/ptcg/cards/lor-es-171.toml
+++ /dev/null
@@ -1,4 +0,0 @@
-name = "Energía Regalo"
-kind = "energy"
-type = "special"
-effect = "Mientras esta carta esté unida a un Pokémon, proporciona 1 Energía [C]. Si el Pokémon al que está unida esta carta queda Fuera de Combate por el daño de un ataque de los Pokémon de tu rival, roba cartas hasta que tengas 7 cartas en tu mano."
diff --git a/content/ptcg/cards/obf-es-125.toml b/content/ptcg/cards/obf-es-125.toml
deleted file mode 100644
index 481326b..0000000
--- a/content/ptcg/cards/obf-es-125.toml
+++ /dev/null
@@ -1,14 +0,0 @@
-name = "Charizard ex"
-kind = "pokemon"
-type = "stage2"
-hp = 330
-element = "[D]"
-tera = true
-ability = { name = "Reino Infernal", effect = "Cuando juegas este Pokémon de tu mano para hacer evolucionar a uno de tus Pokémon durante tu turno, puedes buscar en tu baraja hasta 3 cartas de Energía [R] Básica y unirlas a tus Pokémon de la manera que desees. Después, baraja las cartas de tu baraja." }
-attacks = [
- { cost = "[R][R]", name = "Oscuridad Ardiente", damage = "180+", effect = "Este ataque hace 30 puntos de daño más por cada carta de Premio que haya cogido tu rival." },
-]
-rulebox = "ex"
-weakness = "[G]×2"
-resistance = ""
-retreat = "[C][C]"
diff --git a/content/ptcg/cards/obf-es-164.toml b/content/ptcg/cards/obf-es-164.toml
deleted file mode 100644
index 47c3c39..0000000
--- a/content/ptcg/cards/obf-es-164.toml
+++ /dev/null
@@ -1,13 +0,0 @@
-name = "Pidgeot ex"
-kind = "pokemon"
-type = "stage2"
-hp = 280
-element = "[C]"
-ability = { name = "Búsqueda Rápida", effect = "Una vez durante tu turno, puedes buscar en tu baraja 1 carta y ponerla en tu mano. Después, baraja las cartas de tu baraja. No puedes usar más de una habilidad Búsqueda Rápida en cada turno." }
-attacks = [
- { cost = "[C][C]", name = "Ventarrón", damage = 120, effect = "Puedes descartar 1 Estadio en juego." },
-]
-rulebox = "ex"
-weakness = "[L]×2"
-resistance = "[F]-30"
-retreat = ""
diff --git a/content/ptcg/cards/paf-es-015.toml b/content/ptcg/cards/paf-es-015.toml
deleted file mode 100644
index d6ab92a..0000000
--- a/content/ptcg/cards/paf-es-015.toml
+++ /dev/null
@@ -1,12 +0,0 @@
-name = "Armarouge"
-kind = "pokemon"
-type = "stage1"
-hp = 130
-element = "[R]"
-ability = { name = "Pirodisparo", effect = "Todas las veces que quieras durante tu turno, puedes mover 1 Energía [R] de uno de tus Pokémon en Banca a tu Pokémon Activo." }
-attacks = [
- { cost = "[R][C]", name = "Cañón Llama", damage = 90, effect = "El Pokémon Activo de tu rival pasa a estar Quemado." },
-]
-weakness = "[W]×2"
-resistance = ""
-retreat = "[C][C]"
diff --git a/content/ptcg/cards/paf-es-081.toml b/content/ptcg/cards/paf-es-081.toml
deleted file mode 100644
index aefab40..0000000
--- a/content/ptcg/cards/paf-es-081.toml
+++ /dev/null
@@ -1,4 +0,0 @@
-name = "Colina de Luz Lunar"
-kind = "trainer"
-type = "stadium"
-effect = "Una vez durante el turno de cada jugador, ese jugador puede descartar 1 carta de Energía [P] Básica de su mano para poder curar 30 puntos de daño a cada uno de sus Pokémon."
diff --git a/content/ptcg/cards/pal-es-169.toml b/content/ptcg/cards/pal-es-169.toml
deleted file mode 100644
index b900f5a..0000000
--- a/content/ptcg/cards/pal-es-169.toml
+++ /dev/null
@@ -1,13 +0,0 @@
-name = "Squawkabilly ex "
-kind = "pokemon"
-type = "basic"
-hp = 160
-element = "[C]"
-ability = { name = "Graznido y Captura", effect = "Una vez durante tu primer turno, puedes descartar las cartas de tu mano y robar 6 cartas. No puedes usar más de una habilidad Graznido y Captura durante tu turno." }
-attacks = [
- { cost = "[C]", name = "Motivar", damage = 20, effect = "Une hasta 2 cartas de Energía Básica de tu pila de descartes a uno de tus Pokémon en Banca." },
-]
-rulebox = "ex"
-weakness = "[L]×2"
-resistance = "[F]-30"
-retreat = "[C]"
diff --git a/content/ptcg/cards/pal-es-172.toml b/content/ptcg/cards/pal-es-172.toml
deleted file mode 100644
index a608f85..0000000
--- a/content/ptcg/cards/pal-es-172.toml
+++ /dev/null
@@ -1,4 +0,0 @@
-name = "Órdenes de Jefes"
-kind = "trainer"
-type = "supporter"
-effect = "Cambia 1 de los Pokémon en Banca de tu rival por el Pokémon que esté en el Puesto Activo."
diff --git a/content/ptcg/cards/pal-es-173.toml b/content/ptcg/cards/pal-es-173.toml
deleted file mode 100644
index 91e8547..0000000
--- a/content/ptcg/cards/pal-es-173.toml
+++ /dev/null
@@ -1,4 +0,0 @@
-name = "Amuleto de Bravura"
-kind = "trainer"
-type = "tool"
-effect = "El Pokémon Básico al que esté unida esta carta obtiene 50 PS más."
diff --git a/content/ptcg/cards/pal-es-182.toml b/content/ptcg/cards/pal-es-182.toml
deleted file mode 100644
index f1c3196..0000000
--- a/content/ptcg/cards/pal-es-182.toml
+++ /dev/null
@@ -1,4 +0,0 @@
-name = "Anán"
-kind = "trainer"
-type = "supporter"
-effect = "Descarta 1 Energía Especial de cada uno de los Pokémon de tu rival."
diff --git a/content/ptcg/cards/pal-es-183.toml b/content/ptcg/cards/pal-es-183.toml
deleted file mode 100644
index c9e7238..0000000
--- a/content/ptcg/cards/pal-es-183.toml
+++ /dev/null
@@ -1,4 +0,0 @@
-name = "Super Ball"
-kind = "trainer"
-type = "item"
-effect = "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 las cartas de nuevo en tu baraja y barájalas todas."
diff --git a/content/ptcg/cards/pal-es-185.toml b/content/ptcg/cards/pal-es-185.toml
deleted file mode 100644
index 4d4e4c1..0000000
--- a/content/ptcg/cards/pal-es-185.toml
+++ /dev/null
@@ -1,4 +0,0 @@
-name = "e-Nigma"
-kind = "trainer"
-type = "supporter"
-effect = "Cada jugador baraja las cartas de su mano y las pone en la parte inferior de su baraja. Si cualquiera de los jugadores pone alguna carta en la parte inferior de su baraja de esta manera, cada jugador roba 1 carta por cada una de las cartas de Premio que le queden."
diff --git a/content/ptcg/cards/pal-es-190.toml b/content/ptcg/cards/pal-es-190.toml
deleted file mode 100644
index c2cd677..0000000
--- a/content/ptcg/cards/pal-es-190.toml
+++ /dev/null
@@ -1,4 +0,0 @@
-name = "Energía Propulsión"
-kind = "energy"
-type = "special"
-effect = "Mientras esta carta esté unida a un Pokémon, proporciona 1 Energía [C]. Cuando unas esta carta de tu mano a uno de tus Pokémon en Banca, cambia ese Pokémon por tu Pokémon Activo."
diff --git a/content/ptcg/cards/pal-es-192.toml b/content/ptcg/cards/pal-es-192.toml
deleted file mode 100644
index cfbfe15..0000000
--- a/content/ptcg/cards/pal-es-192.toml
+++ /dev/null
@@ -1,4 +0,0 @@
-name = "Energía Inversión"
-kind = "energy"
-type = "special"
-effect = "Mientras esta carta esté unida a un Pokémon, proporciona 1 Energía [C]. Si te quedan más cartas de Premio que a tu rival, y si esta carta está unida a un Pokémon Evolución que no tenga un recuadro de regla (Pokémon ex, Pokémon V, etc. tienen recuadros de regla), esta carta proporciona cualquier tipo de Energía, pero proporciona solo 3 Energías a la vez."
diff --git a/content/ptcg/cards/par-es-056.toml b/content/ptcg/cards/par-es-056.toml
deleted file mode 100644
index e7b6254..0000000
--- a/content/ptcg/cards/par-es-056.toml
+++ /dev/null
@@ -1,12 +0,0 @@
-name = "Ferrosaco"
-kind = "pokemon"
-type = "basic"
-hp = 100
-element = "[W]"
-ability = { name = "Hipersoplador", effect = "Una vez durante tu turno, si este Pokémon está en tu banca, puedes mover el Pokémon Activo de tu rival a la Banca. (Tu rival elige el nuevo Pokémon Activo). Si lo haces, descarta este Pokémon y todas las cartas unidas a él." }
-attacks = [
- { cost = "[W][C][C]", name = "Corriente Refrigerada", damage = 80, effect = "Si el Pokémon Defensor es un Pokémon Evolución, no puede atacar durante el próximo turno de tu rival." },
-]
-weakness = "[L]×2"
-resistance = ""
-retreat = "[C]"
diff --git a/content/ptcg/cards/par-es-070.toml b/content/ptcg/cards/par-es-070.toml
deleted file mode 100644
index 02aef83..0000000
--- a/content/ptcg/cards/par-es-070.toml
+++ /dev/null
@@ -1,13 +0,0 @@
-name = "Ferropalmas ex"
-kind = "pokemon"
-type = "basic"
-hp = 230
-element = "[L]"
-attacks = [
- { cost = "[L][L][C]", name = "Prensa de Brazo", damage = 160 },
- { cost = "[L][C][C][C]", name = "Gracias Amplificadas", damage = 120, effect = "Si un Pokémon de tu rival queda Fuera de Combate por el daño de este ataque, coge 1 carta de Premio más." },
-]
-rulebox = "ex"
-weakness = "[F]×2"
-resistance = ""
-retreat = "[C][C][C][C]"
diff --git a/content/ptcg/cards/par-es-107.toml b/content/ptcg/cards/par-es-107.toml
deleted file mode 100644
index 39dfbc1..0000000
--- a/content/ptcg/cards/par-es-107.toml
+++ /dev/null
@@ -1,12 +0,0 @@
-name = "Reptalada"
-kind = "pokemon"
-type = "basic"
-hp = 140
-element = "[F]"
-attacks = [
- { cost = "[F]", name = "Pisotear", effect = "Descarta la primera carta de la baraja de tu rival." },
- { cost = "[F][F]", name = "Turbulencia Abrasadora", damage = 90, effect = "Este Pokémon también se hace 90 puntos de daño a sí mismo. El Pokémon Activo de tu rival pasa a estar Quemado." },
-]
-weakness = "[P]×2"
-resistance = ""
-retreat = "[C][C][C]"
diff --git a/content/ptcg/cards/par-es-160.toml b/content/ptcg/cards/par-es-160.toml
deleted file mode 100644
index fd5bb23..0000000
--- a/content/ptcg/cards/par-es-160.toml
+++ /dev/null
@@ -1,4 +0,0 @@
-name = "Capturador Contraataque"
-kind = "trainer"
-type = "item"
-effect = "Puedes usar esta carta solo si te quedan más cartas de Premio que a tu rival.Cambia 1 de los Pokémon en Banca de tu rival por el Pokémon que esté en el Puesto Activo."
diff --git a/content/ptcg/cards/scr-es-045.toml b/content/ptcg/cards/scr-es-045.toml
deleted file mode 100644
index 124f67b..0000000
--- a/content/ptcg/cards/scr-es-045.toml
+++ /dev/null
@@ -1,12 +0,0 @@
-name = "Veluza"
-kind = "pokemon"
-type = "basic"
-hp = 130
-element = "[W]"
-ability = { name = "Preparar la comida", effect = "Los atagues usados por este Pokémon cuestan [C] menos por cada carta de Fuco en tu pila de descartes." }
-attacks = [
- { cost = "[C][C][C][C]", name = "Tajo Sónico", damage = 110, effect = "El daño de este ataque no se ve afectado por ningún efecto en el Pokémon Activo de tu rival." },
-]
-weakness = "[L]×2"
-resistance = ""
-retreat = "[C][C]"
diff --git a/content/ptcg/cards/scr-es-051.toml b/content/ptcg/cards/scr-es-051.toml
deleted file mode 100644
index 59c76df..0000000
--- a/content/ptcg/cards/scr-es-051.toml
+++ /dev/null
@@ -1,14 +0,0 @@
-name = "Galvantula ex"
-kind = "pokemon"
-type = "stage1"
-hp = 260
-element = "[L]"
-tera = true
-attacks = [
- { cost = "[L][C]", name = "Tela Cargada", damage = "110+" },
- { cost = "[G][L][F]", name = "Fulgurita", damage = 180, effect = "Descarta todas las Energías de este Pokémon. Durante el próximo turno de tu rival, este no puede jugar ninguna carta de Objeto de su mano." },
-]
-rulebox = "ex"
-weakness = "[F]×2"
-resistance = ""
-retreat = "[C]"
diff --git a/content/ptcg/cards/scr-es-060.toml b/content/ptcg/cards/scr-es-060.toml
deleted file mode 100644
index 3529046..0000000
--- a/content/ptcg/cards/scr-es-060.toml
+++ /dev/null
@@ -1,11 +0,0 @@
-name = "Drifloon"
-kind = "pokemon"
-type = "basic"
-hp = 70
-element = "[P]"
-attacks = [
- { cost = "[P]", name = "Expandir", damage = 10, effect = "Durante el próximo turno de tu rival, los ataques hacen 10 puntos de daño menos a este Pokémon (después de aplicar Debilidad y Resistencia)." },
-]
-weakness = "[D]×2"
-resistance = "[F]-30"
-retreat = "[C]"
diff --git a/content/ptcg/cards/scr-es-063.toml b/content/ptcg/cards/scr-es-063.toml
deleted file mode 100644
index de6a02f..0000000
--- a/content/ptcg/cards/scr-es-063.toml
+++ /dev/null
@@ -1,12 +0,0 @@
-name = "Comfey"
-kind = "pokemon"
-type = "basic"
-hp = 70
-element = "[P]"
-attacks = [
- { cost = "[P]", name = "Lluvia de Flores", effect = "Cada jugador roba 3 cartas." },
- { cost = "[P]", name = "Carantoña", damage = "20+", effect = "Lanza 1 moneda. Si sale cara, este ataque hace 20 puntos de daño más." },
-]
-weakness = "[M]×2"
-resistance = ""
-retreat = "[C]"
diff --git a/content/ptcg/cards/scr-es-086.toml b/content/ptcg/cards/scr-es-086.toml
deleted file mode 100644
index 4c1bc9f..0000000
--- a/content/ptcg/cards/scr-es-086.toml
+++ /dev/null
@@ -1,12 +0,0 @@
-name = "Diancie"
-kind = "pokemon"
-type = "basic"
-hp = 110
-element = "[F]"
-attacks = [
- { cost = "[C]", name = "Refracción Dispersa", damage = "40×", effect = "Este ataque hace 40 puntos de daño por cada Energia Especial unida a cada uno de los Pokémon de tu rival." },
- { cost = "[F][C]", name = "Joya de Luz", damage = 60 },
-]
-weakness = "[G]×2"
-resistance = ""
-retreat = "[C]"
diff --git a/content/ptcg/cards/scr-es-087.toml b/content/ptcg/cards/scr-es-087.toml
deleted file mode 100644
index 68e317f..0000000
--- a/content/ptcg/cards/scr-es-087.toml
+++ /dev/null
@@ -1,12 +0,0 @@
-name = "Crabrawler"
-kind = "pokemon"
-type = "basic"
-hp = 90
-element = "[F]"
-attacks = [
- { cost = "[C][C]", name = "Agarre", damage = 20 },
- { cost = "[C][C][C]", name = "Martillazo", damage = 50 },
-]
-weakness = "[P]×2"
-resistance = ""
-retreat = "[C][C][C]"
diff --git a/content/ptcg/cards/scr-es-115.toml b/content/ptcg/cards/scr-es-115.toml
deleted file mode 100644
index d45e644..0000000
--- a/content/ptcg/cards/scr-es-115.toml
+++ /dev/null
@@ -1,10 +0,0 @@
-name = "Noctowl"
-kind = "pokemon"
-type = "stage1"
-hp = 100
-element = "[C]"
-ability = { name = "Buscajoyas", effect = "Una vez durante tu turno, cuando juegas este Pokémon de tu mano para hacer evolucionar a uno de tus Pokémon, si tienes algún Pokémon Teracristal en juego, puedes buscar en tu baraja hasta 2 cartas de Entrenador, enseñarlas y ponerlas en tu mano. Después, baraja las cartas de tu baraja." }
-attacks = [{ cost = "[C][C]", name = "Ala Veloz", damage = 60 }]
-weakness = "[L]×2"
-resistance = "[F]-30"
-retreat = "[C]"
diff --git a/content/ptcg/cards/scr-es-118.toml b/content/ptcg/cards/scr-es-118.toml
deleted file mode 100644
index 8f019d0..0000000
--- a/content/ptcg/cards/scr-es-118.toml
+++ /dev/null
@@ -1,12 +0,0 @@
-name = "Rotom Ventilador"
-kind = "pokemon"
-type = "basic"
-hp = 70
-element = "[C]"
-ability = { name = "Llamada del Ventilador", effect = "Una vez durante tu primer turno, puedes buscar en tu baraja hasta 3 Pokémon [C] con 100 PS o menos, enseñarlos y ponerlos en tu mano. Después, baraja las cartas de tu baraja. No puedes usar más de una habilidad Llamada del ventilador durante tu turno." }
-attacks = [
- { cost = "[C]", name = "Aterrizaje Asalto", damage = 70, effect = "Si no hay ningún Estadio en juego, este ataque no hace nada." },
-]
-weakness = "[L]×2"
-resistance = "[F]-30"
-retreat = "[C]"
diff --git a/content/ptcg/cards/scr-es-120.toml b/content/ptcg/cards/scr-es-120.toml
deleted file mode 100644
index 4ef9d65..0000000
--- a/content/ptcg/cards/scr-es-120.toml
+++ /dev/null
@@ -1,13 +0,0 @@
-name = "Tornadus"
-kind = "pokemon"
-type = "basic"
-hp = 110
-element = "[C]"
-attacks = [
- { cost = "[C][C]", name = "Puño con Nudillos", damage = 50 },
- { cost = "[C][C][C]", name = "Barrera Tempestad", damage = 100, effect = "Durante el próximo turno de tu rival, los ataques hacen 50 puntos de daño menos a este Pokémon (después de aplicar Debilidad y Resistencia)." },
-]
-rulebox = "ex"
-weakness = "[L]×2"
-resistance = "[F]-30"
-retreat = "[C]"
diff --git a/content/ptcg/cards/scr-es-138.toml b/content/ptcg/cards/scr-es-138.toml
deleted file mode 100644
index cad4c85..0000000
--- a/content/ptcg/cards/scr-es-138.toml
+++ /dev/null
@@ -1,4 +0,0 @@
-name = "Fuco"
-kind = "trainer"
-type = "supporter"
-effect = "Pon 2 cartas de tu mano en la parte inferior de tu baraja en el orden que quieras. Si pones 2 cartas en la parte inferior de tu baraja de esta manera, roba 4 cartas. (Si no puedes poner 2 cartas de tu mano en la parte inferior de tu baraja, no puedes usar esta carta)."
diff --git a/content/ptcg/cards/scr-es-139.toml b/content/ptcg/cards/scr-es-139.toml
deleted file mode 100644
index bde966e..0000000
--- a/content/ptcg/cards/scr-es-139.toml
+++ /dev/null
@@ -1,3 +0,0 @@
-name = "Aroa"
-type = "supporter"
-effect = "Pon las cartas de tu mano en tu baraja y barájalas todas. Después, roba 4 cartas. Si a tu rival le quedan 3 cartas de Premio o menos, roba 8 cartas en vez de 4."
diff --git a/content/ptcg/cards/scr-es-141.toml b/content/ptcg/cards/scr-es-141.toml
deleted file mode 100644
index b776af1..0000000
--- a/content/ptcg/cards/scr-es-141.toml
+++ /dev/null
@@ -1,4 +0,0 @@
-name = "Baya Papaya"
-kind = "trainer"
-type = "tool"
-effect = "Si el Pokémon al que está unida esta carta resulta dañado por un ataque de los Pokémon [P] de tu rival, ese ataque le hace 60 puntos de daño menos (después de aplicar Debilidad y Resistencia), y descartas esta carta."
diff --git a/content/ptcg/cards/sfa-es-020.toml b/content/ptcg/cards/sfa-es-020.toml
deleted file mode 100644
index 1ff51aa..0000000
--- a/content/ptcg/cards/sfa-es-020.toml
+++ /dev/null
@@ -1,12 +0,0 @@
-name = "Dusknoir"
-kind = "pokemon"
-type = "stage2"
-hp = 160
-element = "[P]"
-ability = { name = "Estallido Maldito", effect = "Una vez durante tu turno, puedes poner 13 contadores de daño en uno de los Pokémon de tu rival. Si usas esta habilidad, este Pokémon queda Fuera de Combate" }
-attacks = [
- { cost = "[P][P][C]", name = "Atadura Sombría", damage = 150, effect = "Durante el próximo turno de tu rival, el Pokémon Defensor no puede retirarse." },
-]
-weakness = "[D]×2"
-resistance = "[F]-30"
-retreat = "[C][C][C]"
diff --git a/content/ptcg/cards/sfa-es-038.toml b/content/ptcg/cards/sfa-es-038.toml
deleted file mode 100644
index 07c1659..0000000
--- a/content/ptcg/cards/sfa-es-038.toml
+++ /dev/null
@@ -1,13 +0,0 @@
-name = "Fezandipiti ex"
-kind = "pokemon"
-type = "basic"
-hp = 210
-element = "[D]"
-ability = { name = "Giro de Guion", effect = "Una vez durante tu turno, si alguno de tus Pokémon quedó Fuera de Combate durante el último turno de tu rival, puedes robar 3 cartas. No puedes usar más de una habilidad Giro de Guion en cada turno." }
-attacks = [
- { cost = "[C][C][C]", name = "Flecha Cruel", effect = "Este ataque hace 100 puntos de daño a uno de los Pokémon de tu rival. (No apliques Debilidad y Resistencia a los Pokémon en Banca)." },
-]
-rulebox = "ex"
-weakness = "[F]×2"
-resistance = ""
-retreat = "[C]"
diff --git a/content/ptcg/cards/sfa-es-040.toml b/content/ptcg/cards/sfa-es-040.toml
deleted file mode 100644
index 0bf09ee..0000000
--- a/content/ptcg/cards/sfa-es-040.toml
+++ /dev/null
@@ -1,10 +0,0 @@
-name = "Genesect"
-kind = "pokemon"
-type = "basic"
-hp = 110
-element = "[M]"
-ability = { name = "Inhibidor AS", effect = "Si este Pokémon tiene una Herramienta Pokémon unida, tu rival no puede jugar ninguna carta de AS TÁCTICO de su mano." }
-attacks = [{ cost = "[M][C][C]", name = "Explosión Magnética", damage = 100 }]
-weakness = "[F]×2"
-resistance = "[G]-30"
-retreat = "[C]"
diff --git a/content/ptcg/cards/sfa-es-061.toml b/content/ptcg/cards/sfa-es-061.toml
deleted file mode 100644
index f74d506..0000000
--- a/content/ptcg/cards/sfa-es-061.toml
+++ /dev/null
@@ -1,4 +0,0 @@
-name = "Camilla Nocturna"
-kind = "trainer"
-type = "item"
-effect = "Pon 1 Pokémon o 1 carta de Energía Básica de tu pila de descartes en tu mano."
diff --git a/content/ptcg/cards/sit-es-138.toml b/content/ptcg/cards/sit-es-138.toml
deleted file mode 100644
index 08eaaee..0000000
--- a/content/ptcg/cards/sit-es-138.toml
+++ /dev/null
@@ -1,13 +0,0 @@
-name = "Lugia V"
-kind = "pokemon"
-type = "basic"
-hp = 220
-element = "[C]"
-attacks = [
- { cost = "[C]", name = "Leer el Viento", effect = "Descarta 1 carta de tu mano. Si lo haces, roba 3 cartas." },
- { cost = "[C][C][C][C]", name = "Aerozambullida", damage = 130, effect = "Puedes descartar un Estadio en juego." },
-]
-rulebox = "v"
-weakness = "[L]×2"
-resistance = "[F]-30"
-retreat = "[C]"
diff --git a/content/ptcg/cards/sit-es-139.toml b/content/ptcg/cards/sit-es-139.toml
deleted file mode 100644
index 54862a4..0000000
--- a/content/ptcg/cards/sit-es-139.toml
+++ /dev/null
@@ -1,13 +0,0 @@
-name = "Lugia V-Astro"
-kind = "pokemon"
-type = "vstar"
-hp = 280
-element = "[C]"
-attacks = [
- { cost = "[C][C][C][C]", name = "Zambullida Tempestad", damage = 220, effect = "Puedes descartar un Estadio en juego." },
-]
-vstar-power = { ability = { name = "Astro Invocación", effect = "Durante tu turno, puedes poner hasta 2 Pokémon [C] que no tengan un recuadro de regla en tu banca (Pokémon V, Pokémon GX, etc. tienen recuadro de regla), (no puedes usar más de 1 Poder V-Astro en una partida)." } }
-rulebox = "v"
-weakness = "[L]×2"
-resistance = "[F]-30"
-retreat = "[C][C]"
diff --git a/content/ptcg/cards/sit-es-147.toml b/content/ptcg/cards/sit-es-147.toml
deleted file mode 100644
index 8ca7916..0000000
--- a/content/ptcg/cards/sit-es-147.toml
+++ /dev/null
@@ -1,10 +0,0 @@
-name = "Archeops"
-kind = "pokemon"
-type = "stage2"
-hp = 150
-element = "[C]"
-ability = { name = "Turbo Primigenio", effect = "Una vez durante tu turno, puedes buscar en tu baraja hasta 2 cartas de Energía Especial y unirlas a 1 de tus Pokémon. Después, baraja las cartas de tu baraja." }
-attacks = [{ cost = "[C][C][C]", name = "Ala Veloz", damage = 120 }]
-weakness = "[L]×2"
-resistance = "[F]-30"
-retreat = "[C]"
diff --git a/content/ptcg/cards/sit-es-153.toml b/content/ptcg/cards/sit-es-153.toml
deleted file mode 100644
index f634583..0000000
--- a/content/ptcg/cards/sit-es-153.toml
+++ /dev/null
@@ -1,4 +0,0 @@
-name = "Aroma Embriagador"
-kind = "trainer"
-type = "item"
-effect = "Lanza 1 moneda. Si sale cara, busca en tu baraja 1 Pokémon Evolución, enséñalo y ponlo en tu mano. Si sale cruz, busca en tu baraja 1 Pokémon Básico, enséñalo y ponlo en tu mano. Después, baraja las cartas de tu baraja."
diff --git a/content/ptcg/cards/sit-es-164.toml b/content/ptcg/cards/sit-es-164.toml
deleted file mode 100644
index bd5d981..0000000
--- a/content/ptcg/cards/sit-es-164.toml
+++ /dev/null
@@ -1,4 +0,0 @@
-name = "Serena"
-kind = "trainer"
-type = "supporter"
-effect = "Elige 1 opción: • Descarta hasta 3 cartas de tu mano. (Debes descartar por lo menos 1 carta). Si lo haces, roba cartas hasta que tengas 5 cartas en tu mano. • Cambia 1 de los Pokémon V en Banca de tu rival por su Pokémon Activo."
diff --git a/content/ptcg/cards/sit-es-169.toml b/content/ptcg/cards/sit-es-169.toml
deleted file mode 100644
index f5b4d8f..0000000
--- a/content/ptcg/cards/sit-es-169.toml
+++ /dev/null
@@ -1,4 +0,0 @@
-name = "Energía Guardia V"
-kind = "energy"
-type = "special"
-effect = "Mientras esta carta esté unida a un Pokémon, proporciona 1 Energía [C]. Los ataques de los Pokémon V de tu rival hacen 30 puntos de daño menos al Pokémon al que esté unida esta carta (después de aplicar Debilidad y Resistenca). Este efecto no puede aplicarse más de una vez de forma simultánea al mismo Pokémon."
diff --git a/content/ptcg/cards/sve-es-011.toml b/content/ptcg/cards/sve-es-011.toml
deleted file mode 100644
index 2dc6e54..0000000
--- a/content/ptcg/cards/sve-es-011.toml
+++ /dev/null
@@ -1,3 +0,0 @@
-name = "Energía [W] Básica"
-kind = "energy"
-type = "basic"
diff --git a/content/ptcg/cards/sve-es-012.toml b/content/ptcg/cards/sve-es-012.toml
deleted file mode 100644
index e7caa8e..0000000
--- a/content/ptcg/cards/sve-es-012.toml
+++ /dev/null
@@ -1,3 +0,0 @@
-name = "Energía [L] Básica"
-kind = "energy"
-type = "basic"
diff --git a/content/ptcg/cards/sve-es-013.toml b/content/ptcg/cards/sve-es-013.toml
deleted file mode 100644
index 012a775..0000000
--- a/content/ptcg/cards/sve-es-013.toml
+++ /dev/null
@@ -1,3 +0,0 @@
-name = "Energía [P] Básica"
-kind = "energy"
-type = "basic"
diff --git a/content/ptcg/cards/svi-es-175.toml b/content/ptcg/cards/svi-es-175.toml
deleted file mode 100644
index 23a0e53..0000000
--- a/content/ptcg/cards/svi-es-175.toml
+++ /dev/null
@@ -1,4 +0,0 @@
-name = "Cinio"
-kind = "trainer"
-type = "supporter"
-effect = "Busca en tu baraja hasta 2 Pokémon Evolución, enséñalos y ponlos en tu mano. Después, baraja las cartas de tu baraja."
diff --git a/content/ptcg/cards/svi-es-178.toml b/content/ptcg/cards/svi-es-178.toml
deleted file mode 100644
index b159293..0000000
--- a/content/ptcg/cards/svi-es-178.toml
+++ /dev/null
@@ -1,4 +0,0 @@
-name = "Ciudad Meseta"
-kind = "trainer"
-type = "stadium"
-effect = "Una vez durante el turno de cada jugador, ese jugador puede lanzar 1 moneda. Si sale cara, ese jugador busca en su baraja 1 Pokémon, lo enseña y lo pone en su mano. Después, ese jugador baraja las cartas de su baraja."
diff --git a/content/ptcg/cards/svi-es-181.toml b/content/ptcg/cards/svi-es-181.toml
deleted file mode 100644
index d0774db..0000000
--- a/content/ptcg/cards/svi-es-181.toml
+++ /dev/null
@@ -1,4 +0,0 @@
-name = "Nido Ball"
-kind = "trainer"
-type = "item"
-effect = "Busca en tu baraja 1 Pokémon Básico y ponlo en tu banca. Después, baraja las cartas de tu baraja."
diff --git a/content/ptcg/cards/svi-es-183.toml b/content/ptcg/cards/svi-es-183.toml
deleted file mode 100644
index 92b368b..0000000
--- a/content/ptcg/cards/svi-es-183.toml
+++ /dev/null
@@ -1,4 +0,0 @@
-name = "Noa"
-kind = "trainer"
-type = "supporter"
-effect = "Pon 1 de tus Pokémon Básicos y todas las cartas unidas a él en tu mano."
diff --git a/content/ptcg/cards/svi-es-189.toml b/content/ptcg/cards/svi-es-189.toml
deleted file mode 100644
index ad83cbf..0000000
--- a/content/ptcg/cards/svi-es-189.toml
+++ /dev/null
@@ -1,4 +0,0 @@
-name = "Investigación de Profesores"
-kind = "trainer"
-type = "supporter"
-effect = "Descarta las cartas de tu mano y roba 7 cartas."
diff --git a/content/ptcg/cards/svi-es-196.toml b/content/ptcg/cards/svi-es-196.toml
deleted file mode 100644
index 9ab9160..0000000
--- a/content/ptcg/cards/svi-es-196.toml
+++ /dev/null
@@ -1,4 +0,0 @@
-name = "Ultra Ball"
-kind = "trainer"
-type = "item"
-effect = "Puedes usar esta carta solo si descartas otras 2 cartas de tu mano. Busca en tu baraja 1 Pokémon, enséñalo y ponlo en tu mano. Después, baraja las cartas de tu baraja."
diff --git a/content/ptcg/cards/svp-es-134.toml b/content/ptcg/cards/svp-es-134.toml
deleted file mode 100644
index 1e6f922..0000000
--- a/content/ptcg/cards/svp-es-134.toml
+++ /dev/null
@@ -1,12 +0,0 @@
-name = "Crabominable"
-kind = "pokemon"
-type = "stage1"
-hp = 160
-element = "[W]"
-ability = { name = "Preparar la comida", effect = "Los ataques usados por este Pokémon cuestan [C] menos por cada carta de Fuco en tu pila de descartes." }
-attacks = [
- { cost = "[W][C][C][C][C]", name = "Golpazo", damage = 250, effect = "Durante tu próximo turno, este Pokémon no puede usar Golpazo" },
-]
-weakness = "[M]×2"
-resistance = ""
-retreat = "[C][C][C]"
diff --git a/content/ptcg/cards/svp-es-135.toml b/content/ptcg/cards/svp-es-135.toml
deleted file mode 100644
index bc2da1f..0000000
--- a/content/ptcg/cards/svp-es-135.toml
+++ /dev/null
@@ -1,11 +0,0 @@
-name = "Drifblim"
-kind = "pokemon"
-type = "stage1"
-hp = 130
-element = "[P]"
-attacks = [
- { cost = "[P]", name = "Que Explote Todo el Mundo", damage = "50×", effect = "Este ataque hace 50 puntos de daño por cada uno de tus Drifloon y Drifblim en juego. Este ataque también hace 30 puntos de daño a cada uno de tus Drifloon y Drifblim. (No apligues Debilidad y Resistencia a los Pokémon en Banco)." },
-]
-weakness = "[D]×2"
-resistance = "[F]-30"
-retreat = "[C][C]"
diff --git a/content/ptcg/cards/svp-es-136.toml b/content/ptcg/cards/svp-es-136.toml
deleted file mode 100644
index 7fe1878..0000000
--- a/content/ptcg/cards/svp-es-136.toml
+++ /dev/null
@@ -1,12 +0,0 @@
-name = "Bouffalant"
-kind = "pokemon"
-type = "basic"
-hp = 100
-element = "[C]"
-ability = { name = "Muro Rizo", effect = "Mientras tengas por lo menos a otro Bouffalant en juego, los ataques de los Pokémon de tu rival hacen 60 puntos de daño menos a todos tus Pokémon [C] Básicos (después de aplicar Debilidad y Resistencia). El efecto de Muro Rizo no se acumula." }
-attacks = [
- { cost = "[C][C][C]", name = "Poder Ilimitado", damage = 130, effect = "Durante tu próximo turno, este Pokémon no puede atacar." },
-]
-weakness = "[F]×2"
-resistance = ""
-retreat = "[C][C]"
diff --git a/content/ptcg/cards/tef-es-098.toml b/content/ptcg/cards/tef-es-098.toml
deleted file mode 100644
index c9e9205..0000000
--- a/content/ptcg/cards/tef-es-098.toml
+++ /dev/null
@@ -1,12 +0,0 @@
-name = "Pelarena"
-kind = "pokemon"
-type = "basic"
-hp = 120
-element = "[P]"
-attacks = [
- { cost = "[F]", name = "Estallido Magnético", damage = "20+", effect = "Si tienes 3 Energías o más en juego, este ataque hace 70 puntos de daño más. El daño de este ataque no se ve afectado por Debilidad." },
- { cost = "[F][C]", name = "Joya de Luz", damage = 60 },
-]
-weakness = "[G]×2"
-resistance = ""
-retreat = "[C][C]"
diff --git a/content/ptcg/cards/tef-es-123.toml b/content/ptcg/cards/tef-es-123.toml
deleted file mode 100644
index 3ae8123..0000000
--- a/content/ptcg/cards/tef-es-123.toml
+++ /dev/null
@@ -1,13 +0,0 @@
-name = "Electrofuria ex"
-kind = "pokemon"
-type = "basic"
-hp = 240
-element = "[N]"
-attacks = [
- { cost = "[C]", name = "Rugido Explosivo", effect = "Descarta las cartas de tu mano y roba 6 cartas." },
- { cost = "[L][F]", name = "Bramido Atronador", damage = "70×", effect = "Puedes descartar cualquier cantidad de Energías Básicas de tus Pokémon. Este ataque hace 70 puntos de daño por cada carta que hayas descartado de esta manera." },
-]
-rulebox = "ex"
-weakness = ""
-resistance = ""
-retreat = "[C][C][C]"
diff --git a/content/ptcg/cards/tef-es-136.toml b/content/ptcg/cards/tef-es-136.toml
deleted file mode 100644
index 3e81f44..0000000
--- a/content/ptcg/cards/tef-es-136.toml
+++ /dev/null
@@ -1,12 +0,0 @@
-name = "Minccino"
-kind = "pokemon"
-type = "basic"
-hp = 70
-element = "[C]"
-attacks = [
- { cost = "[C]", name = "Toque", damage = 10 },
- { cost = "[C][C]", name = "Purgar", effect = "Descarta hasta 2 Herramientas Pokémon de los Pokémon de tu rival." },
-]
-weakness = "[F]×2"
-resistance = ""
-retreat = "[C]"
diff --git a/content/ptcg/cards/tef-es-137.toml b/content/ptcg/cards/tef-es-137.toml
deleted file mode 100644
index 05cb5d4..0000000
--- a/content/ptcg/cards/tef-es-137.toml
+++ /dev/null
@@ -1,12 +0,0 @@
-name = "Cinccino"
-kind = "pokemon"
-type = "stage1"
-hp = 110
-element = "[C]"
-attacks = [
- { cost = "[C]", name = "Bofetada Gentil", damage = 30 },
- { cost = "[C][C]", name = "Giro Especial", damage = "70×", effect = "Este ataque hace 70 puntos de daño por cada carta de Energía Especial unida a este Pokémon." },
-]
-weakness = "[F]×2"
-resistance = ""
-retreat = "[C]"
diff --git a/content/ptcg/cards/tef-es-161.toml b/content/ptcg/cards/tef-es-161.toml
deleted file mode 100644
index 85ae2eb..0000000
--- a/content/ptcg/cards/tef-es-161.toml
+++ /dev/null
@@ -1,4 +0,0 @@
-name = "Energía Neblina"
-kind = "energy"
-type = "special"
-effect = "Mientras esta carta esté unida a un Pokémon, proporciona 1 Energía [C]. Se evitan todos los efectos de los ataques usados por los Pokémon de tu rival e infligidos al Pokémon al que esté unida esta carta. (No se eliminan los efectos ya existentes. El daño no es un efecto)."
diff --git a/content/ptcg/cards/scr-es-128.toml b/content/ptcg/cards/terapagos-ex-es.toml
similarity index 100%
rename from content/ptcg/cards/scr-es-128.toml
rename to content/ptcg/cards/terapagos-ex-es.toml
diff --git a/content/ptcg/cards/twm-es-025.toml b/content/ptcg/cards/twm-es-025.toml
deleted file mode 100644
index a1eb11a..0000000
--- a/content/ptcg/cards/twm-es-025.toml
+++ /dev/null
@@ -1,14 +0,0 @@
-name = "Ogerpon Máscara Turquesa ex"
-kind = "pokemon"
-type = "basic"
-hp = 210
-element = "[G]"
-tera = true
-ability = { name = "Danza Turquesa", effect = "Una vez durante tu turno, puedes unir 1 carta de Energía [G] Básica de tu mano a este Pokémon. Si has unido Energía a un Pokémon de esta manera, roba 1 carta." }
-attacks = [
- { cost = "[G][G][G]", name = "Lluvia de Hojas", damage = "30+", effect = "Este ataque hace 30 puntos de daño más por cada Energía unida a ambos Pokémon Activos." },
-]
-rulebox = "ex"
-weakness = "[R]×2"
-resistance = ""
-retreat = "[C]"
diff --git a/content/ptcg/cards/twm-es-064.toml b/content/ptcg/cards/twm-es-064.toml
deleted file mode 100644
index 32ed4b1..0000000
--- a/content/ptcg/cards/twm-es-064.toml
+++ /dev/null
@@ -1,14 +0,0 @@
-name = "Ogerpon Máscara Fuente ex"
-kind = "pokemon"
-type = "basic"
-hp = 210
-element = "[W]"
-tera = true
-attacks = [
- { cost = "[C]", name = "Sollozar", damage = 20, effect = "Durante el próximo turno de tu rival, el Pokémon Defensor no puede retirarse." },
- { cost = "[W][C][C]", name = "Bomba Torrencial", damage = 20, effect = "Puedes poner 3 Energías unidas a este Pokémon en tu baraja y barajar todas las cartas. Si lo haces, este ataque también hace 120 puntos de daño a uno de los Pokémon en Banca de tu rival. (No apliques Debilidad y Resistencia a los Pokémon en Banca).." },
-]
-rulebox = "ex"
-weakness = "[L]×2"
-resistance = ""
-retreat = "[C]"
diff --git a/content/ptcg/cards/twm-es-095.toml b/content/ptcg/cards/twm-es-095.toml
deleted file mode 100644
index 68da07e..0000000
--- a/content/ptcg/cards/twm-es-095.toml
+++ /dev/null
@@ -1,12 +0,0 @@
-name = "Munkidori"
-kind = "pokemon"
-type = "basic"
-hp = 110
-element = "[P]"
-ability = { name = "Adrenalina Mental", effect = "Una vez durante tu turno, si este Pokémon tiene alguna Energía [D] unida, puedes mover hasta 3 contadores de daño de uno de tus Pokémon a uno de los Pokémon de tu rival." }
-attacks = [
- { cost = "[P][C]", name = "Fusión Mental", damage = 60, effect = "El Pokémon Activo de tu rival pasa a estar Confundido.." },
-]
-weakness = "[D]×2"
-resistance = "[F]-30"
-retreat = "[C]"
diff --git a/content/ptcg/cards/twm-es-130.toml b/content/ptcg/cards/twm-es-130.toml
deleted file mode 100644
index aa0b449..0000000
--- a/content/ptcg/cards/twm-es-130.toml
+++ /dev/null
@@ -1,14 +0,0 @@
-name = "Dragapult ex"
-kind = "pokemon"
-type = "stage2"
-hp = 320
-element = "[N]"
-tera = true
-attacks = [
- { cost = "[C]", name = "Turbocabezazo", damage = 70 },
- { cost = "[R][P]", name = "Picado Fantasma", damage = 200, effect = "Pon 6 contadores de daño en los Pokémon en Banca de tu rival de la manera que desees." },
-]
-rulebox = "ex"
-weakness = ""
-resistance = ""
-retreat = "[C]"
diff --git a/content/ptcg/cards/twm-es-134.toml b/content/ptcg/cards/twm-es-134.toml
deleted file mode 100644
index b6565d8..0000000
--- a/content/ptcg/cards/twm-es-134.toml
+++ /dev/null
@@ -1,13 +0,0 @@
-name = "Blissey ex"
-kind = "pokemon"
-type = "stage1"
-hp = 300
-element = "[C]"
-ability = { name = "Cambio Feliz", effect = "Una vez durante tu turno, puedes mover 1 Energía Básica de uno de tus Pokémon a otro de tus Pokémon." }
-attacks = [
- { cost = "[C][C][C]", name = "Retribución", damage = 180, effect = "Puedes robar cartas hasta que tengas 6 cartas en tu mano." },
-]
-rulebox = "ex"
-weakness = "[F]×2"
-resistance = ""
-retreat = "[C][C][C][C]"
diff --git a/content/ptcg/cards/twm-es-141.toml b/content/ptcg/cards/twm-es-141.toml
deleted file mode 100644
index e5d30d4..0000000
--- a/content/ptcg/cards/twm-es-141.toml
+++ /dev/null
@@ -1,13 +0,0 @@
-name = "Ursaluna Luna Carmesí ex"
-kind = "pokemon"
-type = "basic"
-hp = 260
-element = "[C]"
-ability = { name = "Habilidad Demostrada", effect = "El ataque Luna Roja usado por este Pokémon cuesta [C] menos por cada carta de Premio que haya cogido tu rival." }
-attacks = [
- { cost = "[C][C][C][C][C]", name = "Luna Roja", damage = 240, effect = "Durante tu próximo turno, este Pokémon no puede atacar." },
-]
-rulebox = "ex"
-weakness = "[F]×2"
-resistance = ""
-retreat = "[C][C][C]"
diff --git a/content/ptcg/cards/twm-es-145.toml b/content/ptcg/cards/twm-es-145.toml
deleted file mode 100644
index faf3d8b..0000000
--- a/content/ptcg/cards/twm-es-145.toml
+++ /dev/null
@@ -1,4 +0,0 @@
-name = "Corin"
-kind = "trainer"
-type = "supporter"
-effect = "Si sales en primer lugar, puedes usar esta carta durante tu primer turno. Descarta las cartas de tu mano y roba 5 cartas."
diff --git a/content/ptcg/cards/twm-es-153.toml b/content/ptcg/cards/twm-es-153.toml
deleted file mode 100644
index b1ecad9..0000000
--- a/content/ptcg/cards/twm-es-153.toml
+++ /dev/null
@@ -1,4 +0,0 @@
-name = "Torre de Interferencia"
-kind = "trainer"
-type = "stadium"
-effect = "Las Herramientas Pokémon unidas a cada Pokémon (tanto tuyos como de tu rival) no tienen ningún efecto."
diff --git a/content/ptcg/cards/twm-es-155.toml b/content/ptcg/cards/twm-es-155.toml
deleted file mode 100644
index 6a02b25..0000000
--- a/content/ptcg/cards/twm-es-155.toml
+++ /dev/null
@@ -1,4 +0,0 @@
-name = "Ayuda de Nereida"
-kind = "trainer"
-type = "supporter"
-effect = "Pon, en cualquier combinación, hasta 3 cartas de Energía Básica y Pokémon que no tengan un recuadro de regla de tu pila de descartes en tu mano (Pokémon ex, Pokémon V, etc. tienen recuadros de regla)."
diff --git a/content/ptcg/cards/twm-es-167.toml b/content/ptcg/cards/twm-es-167.toml
deleted file mode 100644
index a96db4a..0000000
--- a/content/ptcg/cards/twm-es-167.toml
+++ /dev/null
@@ -1,5 +0,0 @@
-name = "Energía Legado"
-kind = "energy"
-type = "special"
-effect = "Mientras esta carta esté unida a un Pokémon, proporciona cualquier tipo de Energía, pero proporciona solo una energía a la vez. Si el Pokémon al que está unida esta carta queda Fuera de Combate por el daño de un ataque de los Pokémon de tu rival, ese jugador coge 1 carta de Premio menos. Este efecto de tu Energía Legado no puede aplicarse más de una vez por partida."
-acespec = true
diff --git a/content/template.md b/content/template.md
index 22cf522..a90a7e3 100644
--- a/content/template.md
+++ b/content/template.md
@@ -15,4 +15,4 @@ Probando escribir matemáticas: $P(cara) = \frac{1}{2}$
Probando insertar una carta:
-{{ ptcg_card(id="scr-es-128") }}
+{{ ptcg_card(id="terapagos-ex-es", display=true) }}
diff --git a/static/ptcg/asr-es-050.png b/static/ptcg/asr-es-050.png
deleted file mode 100644
index 35847fa..0000000
Binary files a/static/ptcg/asr-es-050.png and /dev/null differ
diff --git a/static/ptcg/asr-es-050.webp b/static/ptcg/asr-es-050.webp
deleted file mode 100644
index 31938c3..0000000
Binary files a/static/ptcg/asr-es-050.webp and /dev/null differ
diff --git a/static/ptcg/asr-es-134.png b/static/ptcg/asr-es-134.png
deleted file mode 100644
index e992b7e..0000000
Binary files a/static/ptcg/asr-es-134.png and /dev/null differ
diff --git a/static/ptcg/asr-es-134.webp b/static/ptcg/asr-es-134.webp
deleted file mode 100644
index ea3dba3..0000000
Binary files a/static/ptcg/asr-es-134.webp and /dev/null differ
diff --git a/static/ptcg/asr-es-155.png b/static/ptcg/asr-es-155.png
deleted file mode 100644
index 9df861e..0000000
Binary files a/static/ptcg/asr-es-155.png and /dev/null differ
diff --git a/static/ptcg/asr-es-155.webp b/static/ptcg/asr-es-155.webp
deleted file mode 100644
index 57869dc..0000000
Binary files a/static/ptcg/asr-es-155.webp and /dev/null differ
diff --git a/static/ptcg/brs-es-040.png b/static/ptcg/brs-es-040.png
deleted file mode 100644
index 2d2ae64..0000000
Binary files a/static/ptcg/brs-es-040.png and /dev/null differ
diff --git a/static/ptcg/brs-es-040.webp b/static/ptcg/brs-es-040.webp
deleted file mode 100644
index d871d95..0000000
Binary files a/static/ptcg/brs-es-040.webp and /dev/null differ
diff --git a/static/ptcg/brs-es-041.png b/static/ptcg/brs-es-041.png
deleted file mode 100644
index bbce49f..0000000
Binary files a/static/ptcg/brs-es-041.png and /dev/null differ
diff --git a/static/ptcg/brs-es-041.webp b/static/ptcg/brs-es-041.webp
deleted file mode 100644
index 143e2d7..0000000
Binary files a/static/ptcg/brs-es-041.webp and /dev/null differ
diff --git a/static/ptcg/brs-es-048.png b/static/ptcg/brs-es-048.png
deleted file mode 100644
index 4d1084e..0000000
Binary files a/static/ptcg/brs-es-048.png and /dev/null differ
diff --git a/static/ptcg/brs-es-048.webp b/static/ptcg/brs-es-048.webp
deleted file mode 100644
index 4285250..0000000
Binary files a/static/ptcg/brs-es-048.webp and /dev/null differ
diff --git a/static/ptcg/brs-es-124.png b/static/ptcg/brs-es-124.png
deleted file mode 100644
index 932b39d..0000000
Binary files a/static/ptcg/brs-es-124.png and /dev/null differ
diff --git a/static/ptcg/brs-es-124.webp b/static/ptcg/brs-es-124.webp
deleted file mode 100644
index 168fc7d..0000000
Binary files a/static/ptcg/brs-es-124.webp and /dev/null differ
diff --git a/static/ptcg/brs-es-137.png b/static/ptcg/brs-es-137.png
deleted file mode 100644
index 6d701d3..0000000
Binary files a/static/ptcg/brs-es-137.png and /dev/null differ
diff --git a/static/ptcg/brs-es-137.webp b/static/ptcg/brs-es-137.webp
deleted file mode 100644
index df38e17..0000000
Binary files a/static/ptcg/brs-es-137.webp and /dev/null differ
diff --git a/static/ptcg/brs-es-151.png b/static/ptcg/brs-es-151.png
deleted file mode 100644
index bb94342..0000000
Binary files a/static/ptcg/brs-es-151.png and /dev/null differ
diff --git a/static/ptcg/brs-es-151.webp b/static/ptcg/brs-es-151.webp
deleted file mode 100644
index 31cd4d7..0000000
Binary files a/static/ptcg/brs-es-151.webp and /dev/null differ
diff --git a/static/ptcg/crz-es-020.png b/static/ptcg/crz-es-020.png
deleted file mode 100644
index 9bb7f6b..0000000
Binary files a/static/ptcg/crz-es-020.png and /dev/null differ
diff --git a/static/ptcg/crz-es-020.webp b/static/ptcg/crz-es-020.webp
deleted file mode 100644
index 82d4a43..0000000
Binary files a/static/ptcg/crz-es-020.webp and /dev/null differ
diff --git a/static/ptcg/lor-es-058.png b/static/ptcg/lor-es-058.png
deleted file mode 100644
index 801c9b6..0000000
Binary files a/static/ptcg/lor-es-058.png and /dev/null differ
diff --git a/static/ptcg/lor-es-058.webp b/static/ptcg/lor-es-058.webp
deleted file mode 100644
index 900f5a9..0000000
Binary files a/static/ptcg/lor-es-058.webp and /dev/null differ
diff --git a/static/ptcg/lor-es-167.png b/static/ptcg/lor-es-167.png
deleted file mode 100644
index 85a788b..0000000
Binary files a/static/ptcg/lor-es-167.png and /dev/null differ
diff --git a/static/ptcg/lor-es-167.webp b/static/ptcg/lor-es-167.webp
deleted file mode 100644
index 85b56ad..0000000
Binary files a/static/ptcg/lor-es-167.webp and /dev/null differ
diff --git a/static/ptcg/lor-es-171.png b/static/ptcg/lor-es-171.png
deleted file mode 100644
index 4c651d6..0000000
Binary files a/static/ptcg/lor-es-171.png and /dev/null differ
diff --git a/static/ptcg/lor-es-171.webp b/static/ptcg/lor-es-171.webp
deleted file mode 100644
index f4abcb2..0000000
Binary files a/static/ptcg/lor-es-171.webp and /dev/null differ
diff --git a/static/ptcg/obf-es-125.png b/static/ptcg/obf-es-125.png
deleted file mode 100644
index 78395a8..0000000
Binary files a/static/ptcg/obf-es-125.png and /dev/null differ
diff --git a/static/ptcg/obf-es-125.webp b/static/ptcg/obf-es-125.webp
deleted file mode 100644
index 520cd12..0000000
Binary files a/static/ptcg/obf-es-125.webp and /dev/null differ
diff --git a/static/ptcg/obf-es-164.png b/static/ptcg/obf-es-164.png
deleted file mode 100644
index b890d59..0000000
Binary files a/static/ptcg/obf-es-164.png and /dev/null differ
diff --git a/static/ptcg/obf-es-164.webp b/static/ptcg/obf-es-164.webp
deleted file mode 100644
index 5a00c50..0000000
Binary files a/static/ptcg/obf-es-164.webp and /dev/null differ
diff --git a/static/ptcg/paf-es-015.png b/static/ptcg/paf-es-015.png
deleted file mode 100644
index 67246ee..0000000
Binary files a/static/ptcg/paf-es-015.png and /dev/null differ
diff --git a/static/ptcg/paf-es-015.webp b/static/ptcg/paf-es-015.webp
deleted file mode 100644
index 3606a2b..0000000
Binary files a/static/ptcg/paf-es-015.webp and /dev/null differ
diff --git a/static/ptcg/paf-es-081.png b/static/ptcg/paf-es-081.png
deleted file mode 100644
index 2c4c3fd..0000000
Binary files a/static/ptcg/paf-es-081.png and /dev/null differ
diff --git a/static/ptcg/paf-es-081.webp b/static/ptcg/paf-es-081.webp
deleted file mode 100644
index eb6bf0d..0000000
Binary files a/static/ptcg/paf-es-081.webp and /dev/null differ
diff --git a/static/ptcg/pal-es-169.png b/static/ptcg/pal-es-169.png
deleted file mode 100644
index aa0d8fa..0000000
Binary files a/static/ptcg/pal-es-169.png and /dev/null differ
diff --git a/static/ptcg/pal-es-169.webp b/static/ptcg/pal-es-169.webp
deleted file mode 100644
index 198a99e..0000000
Binary files a/static/ptcg/pal-es-169.webp and /dev/null differ
diff --git a/static/ptcg/pal-es-172.png b/static/ptcg/pal-es-172.png
deleted file mode 100644
index d791c02..0000000
Binary files a/static/ptcg/pal-es-172.png and /dev/null differ
diff --git a/static/ptcg/pal-es-172.webp b/static/ptcg/pal-es-172.webp
deleted file mode 100644
index cb0e6dc..0000000
Binary files a/static/ptcg/pal-es-172.webp and /dev/null differ
diff --git a/static/ptcg/pal-es-173.png b/static/ptcg/pal-es-173.png
deleted file mode 100644
index df13979..0000000
Binary files a/static/ptcg/pal-es-173.png and /dev/null differ
diff --git a/static/ptcg/pal-es-173.webp b/static/ptcg/pal-es-173.webp
deleted file mode 100644
index 1bd95ca..0000000
Binary files a/static/ptcg/pal-es-173.webp and /dev/null differ
diff --git a/static/ptcg/pal-es-182.png b/static/ptcg/pal-es-182.png
deleted file mode 100644
index 55ad5a3..0000000
Binary files a/static/ptcg/pal-es-182.png and /dev/null differ
diff --git a/static/ptcg/pal-es-182.webp b/static/ptcg/pal-es-182.webp
deleted file mode 100644
index 03062e9..0000000
Binary files a/static/ptcg/pal-es-182.webp and /dev/null differ
diff --git a/static/ptcg/pal-es-183.png b/static/ptcg/pal-es-183.png
deleted file mode 100644
index 43fd362..0000000
Binary files a/static/ptcg/pal-es-183.png and /dev/null differ
diff --git a/static/ptcg/pal-es-183.webp b/static/ptcg/pal-es-183.webp
deleted file mode 100644
index bc649f8..0000000
Binary files a/static/ptcg/pal-es-183.webp and /dev/null differ
diff --git a/static/ptcg/pal-es-185.png b/static/ptcg/pal-es-185.png
deleted file mode 100644
index 58bea7c..0000000
Binary files a/static/ptcg/pal-es-185.png and /dev/null differ
diff --git a/static/ptcg/pal-es-185.webp b/static/ptcg/pal-es-185.webp
deleted file mode 100644
index bc0aac1..0000000
Binary files a/static/ptcg/pal-es-185.webp and /dev/null differ
diff --git a/static/ptcg/pal-es-190.png b/static/ptcg/pal-es-190.png
deleted file mode 100644
index 47de9b5..0000000
Binary files a/static/ptcg/pal-es-190.png and /dev/null differ
diff --git a/static/ptcg/pal-es-190.webp b/static/ptcg/pal-es-190.webp
deleted file mode 100644
index 3c390dd..0000000
Binary files a/static/ptcg/pal-es-190.webp and /dev/null differ
diff --git a/static/ptcg/pal-es-192.png b/static/ptcg/pal-es-192.png
deleted file mode 100644
index 94395db..0000000
Binary files a/static/ptcg/pal-es-192.png and /dev/null differ
diff --git a/static/ptcg/pal-es-192.webp b/static/ptcg/pal-es-192.webp
deleted file mode 100644
index 398dfba..0000000
Binary files a/static/ptcg/pal-es-192.webp and /dev/null differ
diff --git a/static/ptcg/par-es-038.png b/static/ptcg/par-es-038.png
deleted file mode 100644
index 94013ee..0000000
Binary files a/static/ptcg/par-es-038.png and /dev/null differ
diff --git a/static/ptcg/par-es-038.webp b/static/ptcg/par-es-038.webp
deleted file mode 100644
index 724428e..0000000
Binary files a/static/ptcg/par-es-038.webp and /dev/null differ
diff --git a/static/ptcg/par-es-056.png b/static/ptcg/par-es-056.png
deleted file mode 100644
index dc5ceb8..0000000
Binary files a/static/ptcg/par-es-056.png and /dev/null differ
diff --git a/static/ptcg/par-es-056.webp b/static/ptcg/par-es-056.webp
deleted file mode 100644
index b24c1b6..0000000
Binary files a/static/ptcg/par-es-056.webp and /dev/null differ
diff --git a/static/ptcg/par-es-070.png b/static/ptcg/par-es-070.png
deleted file mode 100644
index 2d71e25..0000000
Binary files a/static/ptcg/par-es-070.png and /dev/null differ
diff --git a/static/ptcg/par-es-070.webp b/static/ptcg/par-es-070.webp
deleted file mode 100644
index 693b53a..0000000
Binary files a/static/ptcg/par-es-070.webp and /dev/null differ
diff --git a/static/ptcg/par-es-107.png b/static/ptcg/par-es-107.png
deleted file mode 100644
index 1eae922..0000000
Binary files a/static/ptcg/par-es-107.png and /dev/null differ
diff --git a/static/ptcg/par-es-107.webp b/static/ptcg/par-es-107.webp
deleted file mode 100644
index 9fe36d1..0000000
Binary files a/static/ptcg/par-es-107.webp and /dev/null differ
diff --git a/static/ptcg/par-es-160.png b/static/ptcg/par-es-160.png
deleted file mode 100644
index d2c77f2..0000000
Binary files a/static/ptcg/par-es-160.png and /dev/null differ
diff --git a/static/ptcg/par-es-160.webp b/static/ptcg/par-es-160.webp
deleted file mode 100644
index 9944e02..0000000
Binary files a/static/ptcg/par-es-160.webp and /dev/null differ
diff --git a/static/ptcg/scr-es-045.png b/static/ptcg/scr-es-045.png
deleted file mode 100644
index bd4bd29..0000000
Binary files a/static/ptcg/scr-es-045.png and /dev/null differ
diff --git a/static/ptcg/scr-es-045.webp b/static/ptcg/scr-es-045.webp
deleted file mode 100644
index 1842055..0000000
Binary files a/static/ptcg/scr-es-045.webp and /dev/null differ
diff --git a/static/ptcg/scr-es-051.png b/static/ptcg/scr-es-051.png
deleted file mode 100644
index 4686e34..0000000
Binary files a/static/ptcg/scr-es-051.png and /dev/null differ
diff --git a/static/ptcg/scr-es-051.webp b/static/ptcg/scr-es-051.webp
deleted file mode 100644
index 1dd1622..0000000
Binary files a/static/ptcg/scr-es-051.webp and /dev/null differ
diff --git a/static/ptcg/scr-es-060.png b/static/ptcg/scr-es-060.png
deleted file mode 100644
index 805050d..0000000
Binary files a/static/ptcg/scr-es-060.png and /dev/null differ
diff --git a/static/ptcg/scr-es-060.webp b/static/ptcg/scr-es-060.webp
deleted file mode 100644
index b4f97ad..0000000
Binary files a/static/ptcg/scr-es-060.webp and /dev/null differ
diff --git a/static/ptcg/scr-es-063.png b/static/ptcg/scr-es-063.png
deleted file mode 100644
index 696eab6..0000000
Binary files a/static/ptcg/scr-es-063.png and /dev/null differ
diff --git a/static/ptcg/scr-es-063.webp b/static/ptcg/scr-es-063.webp
deleted file mode 100644
index d0f1283..0000000
Binary files a/static/ptcg/scr-es-063.webp and /dev/null differ
diff --git a/static/ptcg/scr-es-086.png b/static/ptcg/scr-es-086.png
deleted file mode 100644
index 0a9b06d..0000000
Binary files a/static/ptcg/scr-es-086.png and /dev/null differ
diff --git a/static/ptcg/scr-es-086.webp b/static/ptcg/scr-es-086.webp
deleted file mode 100644
index f4c738b..0000000
Binary files a/static/ptcg/scr-es-086.webp and /dev/null differ
diff --git a/static/ptcg/scr-es-087.png b/static/ptcg/scr-es-087.png
deleted file mode 100644
index 6585e47..0000000
Binary files a/static/ptcg/scr-es-087.png and /dev/null differ
diff --git a/static/ptcg/scr-es-087.webp b/static/ptcg/scr-es-087.webp
deleted file mode 100644
index 7d7104a..0000000
Binary files a/static/ptcg/scr-es-087.webp and /dev/null differ
diff --git a/static/ptcg/scr-es-115.png b/static/ptcg/scr-es-115.png
deleted file mode 100644
index aaa422c..0000000
Binary files a/static/ptcg/scr-es-115.png and /dev/null differ
diff --git a/static/ptcg/scr-es-115.webp b/static/ptcg/scr-es-115.webp
deleted file mode 100644
index ada00ed..0000000
Binary files a/static/ptcg/scr-es-115.webp and /dev/null differ
diff --git a/static/ptcg/scr-es-118.png b/static/ptcg/scr-es-118.png
deleted file mode 100644
index 18ff190..0000000
Binary files a/static/ptcg/scr-es-118.png and /dev/null differ
diff --git a/static/ptcg/scr-es-118.webp b/static/ptcg/scr-es-118.webp
deleted file mode 100644
index 37c1667..0000000
Binary files a/static/ptcg/scr-es-118.webp and /dev/null differ
diff --git a/static/ptcg/scr-es-120.png b/static/ptcg/scr-es-120.png
deleted file mode 100644
index 386df91..0000000
Binary files a/static/ptcg/scr-es-120.png and /dev/null differ
diff --git a/static/ptcg/scr-es-120.webp b/static/ptcg/scr-es-120.webp
deleted file mode 100644
index e37464f..0000000
Binary files a/static/ptcg/scr-es-120.webp and /dev/null differ
diff --git a/static/ptcg/scr-es-128.png b/static/ptcg/scr-es-128.png
deleted file mode 100644
index db80f9b..0000000
Binary files a/static/ptcg/scr-es-128.png and /dev/null differ
diff --git a/static/ptcg/scr-es-128.webp b/static/ptcg/scr-es-128.webp
deleted file mode 100644
index 4517249..0000000
Binary files a/static/ptcg/scr-es-128.webp and /dev/null differ
diff --git a/static/ptcg/scr-es-138.png b/static/ptcg/scr-es-138.png
deleted file mode 100644
index 06393e0..0000000
Binary files a/static/ptcg/scr-es-138.png and /dev/null differ
diff --git a/static/ptcg/scr-es-138.webp b/static/ptcg/scr-es-138.webp
deleted file mode 100644
index 1561926..0000000
Binary files a/static/ptcg/scr-es-138.webp and /dev/null differ
diff --git a/static/ptcg/scr-es-139.png b/static/ptcg/scr-es-139.png
deleted file mode 100644
index ad96c69..0000000
Binary files a/static/ptcg/scr-es-139.png and /dev/null differ
diff --git a/static/ptcg/scr-es-139.webp b/static/ptcg/scr-es-139.webp
deleted file mode 100644
index 31d63f6..0000000
Binary files a/static/ptcg/scr-es-139.webp and /dev/null differ
diff --git a/static/ptcg/scr-es-141.png b/static/ptcg/scr-es-141.png
deleted file mode 100644
index 1bd8c90..0000000
Binary files a/static/ptcg/scr-es-141.png and /dev/null differ
diff --git a/static/ptcg/scr-es-141.webp b/static/ptcg/scr-es-141.webp
deleted file mode 100644
index 3ea4626..0000000
Binary files a/static/ptcg/scr-es-141.webp and /dev/null differ
diff --git a/static/ptcg/sfa-es-020.png b/static/ptcg/sfa-es-020.png
deleted file mode 100644
index 3771401..0000000
Binary files a/static/ptcg/sfa-es-020.png and /dev/null differ
diff --git a/static/ptcg/sfa-es-020.webp b/static/ptcg/sfa-es-020.webp
deleted file mode 100644
index 2c59176..0000000
Binary files a/static/ptcg/sfa-es-020.webp and /dev/null differ
diff --git a/static/ptcg/sfa-es-038.png b/static/ptcg/sfa-es-038.png
deleted file mode 100644
index 532f4d1..0000000
Binary files a/static/ptcg/sfa-es-038.png and /dev/null differ
diff --git a/static/ptcg/sfa-es-038.webp b/static/ptcg/sfa-es-038.webp
deleted file mode 100644
index e6c59c1..0000000
Binary files a/static/ptcg/sfa-es-038.webp and /dev/null differ
diff --git a/static/ptcg/sfa-es-040.png b/static/ptcg/sfa-es-040.png
deleted file mode 100644
index 49175a1..0000000
Binary files a/static/ptcg/sfa-es-040.png and /dev/null differ
diff --git a/static/ptcg/sfa-es-040.webp b/static/ptcg/sfa-es-040.webp
deleted file mode 100644
index c86a077..0000000
Binary files a/static/ptcg/sfa-es-040.webp and /dev/null differ
diff --git a/static/ptcg/sfa-es-061.png b/static/ptcg/sfa-es-061.png
deleted file mode 100644
index 951f5f8..0000000
Binary files a/static/ptcg/sfa-es-061.png and /dev/null differ
diff --git a/static/ptcg/sfa-es-061.webp b/static/ptcg/sfa-es-061.webp
deleted file mode 100644
index 9dce52e..0000000
Binary files a/static/ptcg/sfa-es-061.webp and /dev/null differ
diff --git a/static/ptcg/sit-es-138.png b/static/ptcg/sit-es-138.png
deleted file mode 100644
index b09b827..0000000
Binary files a/static/ptcg/sit-es-138.png and /dev/null differ
diff --git a/static/ptcg/sit-es-138.webp b/static/ptcg/sit-es-138.webp
deleted file mode 100644
index 5d3bc7d..0000000
Binary files a/static/ptcg/sit-es-138.webp and /dev/null differ
diff --git a/static/ptcg/sit-es-139.png b/static/ptcg/sit-es-139.png
deleted file mode 100644
index 1b7bc6e..0000000
Binary files a/static/ptcg/sit-es-139.png and /dev/null differ
diff --git a/static/ptcg/sit-es-139.webp b/static/ptcg/sit-es-139.webp
deleted file mode 100644
index 5fc1b61..0000000
Binary files a/static/ptcg/sit-es-139.webp and /dev/null differ
diff --git a/static/ptcg/sit-es-147.png b/static/ptcg/sit-es-147.png
deleted file mode 100644
index 11c08e4..0000000
Binary files a/static/ptcg/sit-es-147.png and /dev/null differ
diff --git a/static/ptcg/sit-es-147.webp b/static/ptcg/sit-es-147.webp
deleted file mode 100644
index e3b2e68..0000000
Binary files a/static/ptcg/sit-es-147.webp and /dev/null differ
diff --git a/static/ptcg/sit-es-153.png b/static/ptcg/sit-es-153.png
deleted file mode 100644
index 4929895..0000000
Binary files a/static/ptcg/sit-es-153.png and /dev/null differ
diff --git a/static/ptcg/sit-es-153.webp b/static/ptcg/sit-es-153.webp
deleted file mode 100644
index 50a5578..0000000
Binary files a/static/ptcg/sit-es-153.webp and /dev/null differ
diff --git a/static/ptcg/sit-es-164.png b/static/ptcg/sit-es-164.png
deleted file mode 100644
index a2b86b2..0000000
Binary files a/static/ptcg/sit-es-164.png and /dev/null differ
diff --git a/static/ptcg/sit-es-164.webp b/static/ptcg/sit-es-164.webp
deleted file mode 100644
index 66d7553..0000000
Binary files a/static/ptcg/sit-es-164.webp and /dev/null differ
diff --git a/static/ptcg/sit-es-169.png b/static/ptcg/sit-es-169.png
deleted file mode 100644
index 7fb09a6..0000000
Binary files a/static/ptcg/sit-es-169.png and /dev/null differ
diff --git a/static/ptcg/sit-es-169.webp b/static/ptcg/sit-es-169.webp
deleted file mode 100644
index 2044c6b..0000000
Binary files a/static/ptcg/sit-es-169.webp and /dev/null differ
diff --git a/static/ptcg/sve-es-011.png b/static/ptcg/sve-es-011.png
deleted file mode 100644
index 244bcd4..0000000
Binary files a/static/ptcg/sve-es-011.png and /dev/null differ
diff --git a/static/ptcg/sve-es-011.webp b/static/ptcg/sve-es-011.webp
deleted file mode 100644
index 26e6e5c..0000000
Binary files a/static/ptcg/sve-es-011.webp and /dev/null differ
diff --git a/static/ptcg/sve-es-012.png b/static/ptcg/sve-es-012.png
deleted file mode 100644
index fe8899d..0000000
Binary files a/static/ptcg/sve-es-012.png and /dev/null differ
diff --git a/static/ptcg/sve-es-012.webp b/static/ptcg/sve-es-012.webp
deleted file mode 100644
index 39346ad..0000000
Binary files a/static/ptcg/sve-es-012.webp and /dev/null differ
diff --git a/static/ptcg/sve-es-013.png b/static/ptcg/sve-es-013.png
deleted file mode 100644
index d7460cf..0000000
Binary files a/static/ptcg/sve-es-013.png and /dev/null differ
diff --git a/static/ptcg/sve-es-013.webp b/static/ptcg/sve-es-013.webp
deleted file mode 100644
index a942927..0000000
Binary files a/static/ptcg/sve-es-013.webp and /dev/null differ
diff --git a/static/ptcg/svi-es-151.png b/static/ptcg/svi-es-151.png
deleted file mode 100644
index 44e67ea..0000000
Binary files a/static/ptcg/svi-es-151.png and /dev/null differ
diff --git a/static/ptcg/svi-es-151.webp b/static/ptcg/svi-es-151.webp
deleted file mode 100644
index 3be4be8..0000000
Binary files a/static/ptcg/svi-es-151.webp and /dev/null differ
diff --git a/static/ptcg/svi-es-173.png b/static/ptcg/svi-es-173.png
deleted file mode 100644
index aa6e27c..0000000
Binary files a/static/ptcg/svi-es-173.png and /dev/null differ
diff --git a/static/ptcg/svi-es-173.webp b/static/ptcg/svi-es-173.webp
deleted file mode 100644
index 648490b..0000000
Binary files a/static/ptcg/svi-es-173.webp and /dev/null differ
diff --git a/static/ptcg/svi-es-175.png b/static/ptcg/svi-es-175.png
deleted file mode 100644
index 380b209..0000000
Binary files a/static/ptcg/svi-es-175.png and /dev/null differ
diff --git a/static/ptcg/svi-es-175.webp b/static/ptcg/svi-es-175.webp
deleted file mode 100644
index b1e3c07..0000000
Binary files a/static/ptcg/svi-es-175.webp and /dev/null differ
diff --git a/static/ptcg/svi-es-178.png b/static/ptcg/svi-es-178.png
deleted file mode 100644
index 46eee2c..0000000
Binary files a/static/ptcg/svi-es-178.png and /dev/null differ
diff --git a/static/ptcg/svi-es-178.webp b/static/ptcg/svi-es-178.webp
deleted file mode 100644
index 7a697a7..0000000
Binary files a/static/ptcg/svi-es-178.webp and /dev/null differ
diff --git a/static/ptcg/svi-es-181.png b/static/ptcg/svi-es-181.png
deleted file mode 100644
index fb19f12..0000000
Binary files a/static/ptcg/svi-es-181.png and /dev/null differ
diff --git a/static/ptcg/svi-es-181.webp b/static/ptcg/svi-es-181.webp
deleted file mode 100644
index b9e92f8..0000000
Binary files a/static/ptcg/svi-es-181.webp and /dev/null differ
diff --git a/static/ptcg/svi-es-183.png b/static/ptcg/svi-es-183.png
deleted file mode 100644
index f7f0c5a..0000000
Binary files a/static/ptcg/svi-es-183.png and /dev/null differ
diff --git a/static/ptcg/svi-es-183.webp b/static/ptcg/svi-es-183.webp
deleted file mode 100644
index ff49aa7..0000000
Binary files a/static/ptcg/svi-es-183.webp and /dev/null differ
diff --git a/static/ptcg/svi-es-189.png b/static/ptcg/svi-es-189.png
deleted file mode 100644
index 7a17721..0000000
Binary files a/static/ptcg/svi-es-189.png and /dev/null differ
diff --git a/static/ptcg/svi-es-189.webp b/static/ptcg/svi-es-189.webp
deleted file mode 100644
index e48fcb9..0000000
Binary files a/static/ptcg/svi-es-189.webp and /dev/null differ
diff --git a/static/ptcg/svi-es-196.png b/static/ptcg/svi-es-196.png
deleted file mode 100644
index 7baf40e..0000000
Binary files a/static/ptcg/svi-es-196.png and /dev/null differ
diff --git a/static/ptcg/svi-es-196.webp b/static/ptcg/svi-es-196.webp
deleted file mode 100644
index 95112a9..0000000
Binary files a/static/ptcg/svi-es-196.webp and /dev/null differ
diff --git a/static/ptcg/svp-es-134.png b/static/ptcg/svp-es-134.png
deleted file mode 100644
index 7b3e486..0000000
Binary files a/static/ptcg/svp-es-134.png and /dev/null differ
diff --git a/static/ptcg/svp-es-134.webp b/static/ptcg/svp-es-134.webp
deleted file mode 100644
index 5e844d1..0000000
Binary files a/static/ptcg/svp-es-134.webp and /dev/null differ
diff --git a/static/ptcg/svp-es-135.png b/static/ptcg/svp-es-135.png
deleted file mode 100644
index eb63431..0000000
Binary files a/static/ptcg/svp-es-135.png and /dev/null differ
diff --git a/static/ptcg/svp-es-135.webp b/static/ptcg/svp-es-135.webp
deleted file mode 100644
index ebf164b..0000000
Binary files a/static/ptcg/svp-es-135.webp and /dev/null differ
diff --git a/static/ptcg/svp-es-136.png b/static/ptcg/svp-es-136.png
deleted file mode 100644
index de03430..0000000
Binary files a/static/ptcg/svp-es-136.png and /dev/null differ
diff --git a/static/ptcg/svp-es-136.webp b/static/ptcg/svp-es-136.webp
deleted file mode 100644
index ade5fb7..0000000
Binary files a/static/ptcg/svp-es-136.webp and /dev/null differ
diff --git a/static/ptcg/tef-es-098.png b/static/ptcg/tef-es-098.png
deleted file mode 100644
index 6016066..0000000
Binary files a/static/ptcg/tef-es-098.png and /dev/null differ
diff --git a/static/ptcg/tef-es-098.webp b/static/ptcg/tef-es-098.webp
deleted file mode 100644
index b62c7ad..0000000
Binary files a/static/ptcg/tef-es-098.webp and /dev/null differ
diff --git a/static/ptcg/tef-es-123.png b/static/ptcg/tef-es-123.png
deleted file mode 100644
index e46f267..0000000
Binary files a/static/ptcg/tef-es-123.png and /dev/null differ
diff --git a/static/ptcg/tef-es-123.webp b/static/ptcg/tef-es-123.webp
deleted file mode 100644
index 4480b94..0000000
Binary files a/static/ptcg/tef-es-123.webp and /dev/null differ
diff --git a/static/ptcg/tef-es-136.png b/static/ptcg/tef-es-136.png
deleted file mode 100644
index 6254a28..0000000
Binary files a/static/ptcg/tef-es-136.png and /dev/null differ
diff --git a/static/ptcg/tef-es-136.webp b/static/ptcg/tef-es-136.webp
deleted file mode 100644
index c7900a2..0000000
Binary files a/static/ptcg/tef-es-136.webp and /dev/null differ
diff --git a/static/ptcg/tef-es-137.png b/static/ptcg/tef-es-137.png
deleted file mode 100644
index 91b3c87..0000000
Binary files a/static/ptcg/tef-es-137.png and /dev/null differ
diff --git a/static/ptcg/tef-es-137.webp b/static/ptcg/tef-es-137.webp
deleted file mode 100644
index 79f87df..0000000
Binary files a/static/ptcg/tef-es-137.webp and /dev/null differ
diff --git a/static/ptcg/tef-es-161.png b/static/ptcg/tef-es-161.png
deleted file mode 100644
index ce24d8a..0000000
Binary files a/static/ptcg/tef-es-161.png and /dev/null differ
diff --git a/static/ptcg/tef-es-161.webp b/static/ptcg/tef-es-161.webp
deleted file mode 100644
index f8570ee..0000000
Binary files a/static/ptcg/tef-es-161.webp and /dev/null differ
diff --git a/static/ptcg/terapagos-ex-es.png b/static/ptcg/terapagos-ex-es.png
new file mode 100644
index 0000000..a4b66b4
Binary files /dev/null and b/static/ptcg/terapagos-ex-es.png differ
diff --git a/static/ptcg/terapagos-ex-es.webp b/static/ptcg/terapagos-ex-es.webp
new file mode 100644
index 0000000..1fa62ca
Binary files /dev/null and b/static/ptcg/terapagos-ex-es.webp differ
diff --git a/static/ptcg/twm-es-025.png b/static/ptcg/twm-es-025.png
deleted file mode 100644
index 71e4c26..0000000
Binary files a/static/ptcg/twm-es-025.png and /dev/null differ
diff --git a/static/ptcg/twm-es-025.webp b/static/ptcg/twm-es-025.webp
deleted file mode 100644
index c7a7c5a..0000000
Binary files a/static/ptcg/twm-es-025.webp and /dev/null differ
diff --git a/static/ptcg/twm-es-064.png b/static/ptcg/twm-es-064.png
deleted file mode 100644
index 94cc6f2..0000000
Binary files a/static/ptcg/twm-es-064.png and /dev/null differ
diff --git a/static/ptcg/twm-es-064.webp b/static/ptcg/twm-es-064.webp
deleted file mode 100644
index df3485f..0000000
Binary files a/static/ptcg/twm-es-064.webp and /dev/null differ
diff --git a/static/ptcg/twm-es-095.png b/static/ptcg/twm-es-095.png
deleted file mode 100644
index 89ab199..0000000
Binary files a/static/ptcg/twm-es-095.png and /dev/null differ
diff --git a/static/ptcg/twm-es-095.webp b/static/ptcg/twm-es-095.webp
deleted file mode 100644
index 919450f..0000000
Binary files a/static/ptcg/twm-es-095.webp and /dev/null differ
diff --git a/static/ptcg/twm-es-130.png b/static/ptcg/twm-es-130.png
deleted file mode 100644
index 62fd3ba..0000000
Binary files a/static/ptcg/twm-es-130.png and /dev/null differ
diff --git a/static/ptcg/twm-es-130.webp b/static/ptcg/twm-es-130.webp
deleted file mode 100644
index 7d9d96a..0000000
Binary files a/static/ptcg/twm-es-130.webp and /dev/null differ
diff --git a/static/ptcg/twm-es-134.png b/static/ptcg/twm-es-134.png
deleted file mode 100644
index f4f9f1f..0000000
Binary files a/static/ptcg/twm-es-134.png and /dev/null differ
diff --git a/static/ptcg/twm-es-134.webp b/static/ptcg/twm-es-134.webp
deleted file mode 100644
index ff4c442..0000000
Binary files a/static/ptcg/twm-es-134.webp and /dev/null differ
diff --git a/static/ptcg/twm-es-141.png b/static/ptcg/twm-es-141.png
deleted file mode 100644
index 6f34351..0000000
Binary files a/static/ptcg/twm-es-141.png and /dev/null differ
diff --git a/static/ptcg/twm-es-141.webp b/static/ptcg/twm-es-141.webp
deleted file mode 100644
index 9e4ca1f..0000000
Binary files a/static/ptcg/twm-es-141.webp and /dev/null differ
diff --git a/static/ptcg/twm-es-145.png b/static/ptcg/twm-es-145.png
deleted file mode 100644
index d3c2db7..0000000
Binary files a/static/ptcg/twm-es-145.png and /dev/null differ
diff --git a/static/ptcg/twm-es-145.webp b/static/ptcg/twm-es-145.webp
deleted file mode 100644
index 575616d..0000000
Binary files a/static/ptcg/twm-es-145.webp and /dev/null differ
diff --git a/static/ptcg/twm-es-153.png b/static/ptcg/twm-es-153.png
deleted file mode 100644
index bf06b9b..0000000
Binary files a/static/ptcg/twm-es-153.png and /dev/null differ
diff --git a/static/ptcg/twm-es-153.webp b/static/ptcg/twm-es-153.webp
deleted file mode 100644
index 2d23c83..0000000
Binary files a/static/ptcg/twm-es-153.webp and /dev/null differ
diff --git a/static/ptcg/twm-es-155.png b/static/ptcg/twm-es-155.png
deleted file mode 100644
index 8e18fdd..0000000
Binary files a/static/ptcg/twm-es-155.png and /dev/null differ
diff --git a/static/ptcg/twm-es-155.webp b/static/ptcg/twm-es-155.webp
deleted file mode 100644
index a6d389e..0000000
Binary files a/static/ptcg/twm-es-155.webp and /dev/null differ
diff --git a/static/ptcg/twm-es-165.png b/static/ptcg/twm-es-165.png
deleted file mode 100644
index 65815a3..0000000
Binary files a/static/ptcg/twm-es-165.png and /dev/null differ
diff --git a/static/ptcg/twm-es-165.webp b/static/ptcg/twm-es-165.webp
deleted file mode 100644
index aec97ac..0000000
Binary files a/static/ptcg/twm-es-165.webp and /dev/null differ
diff --git a/static/ptcg/twm-es-167.png b/static/ptcg/twm-es-167.png
deleted file mode 100644
index 03197cc..0000000
Binary files a/static/ptcg/twm-es-167.png and /dev/null differ
diff --git a/static/ptcg/twm-es-167.webp b/static/ptcg/twm-es-167.webp
deleted file mode 100644
index e6e8569..0000000
Binary files a/static/ptcg/twm-es-167.webp and /dev/null differ
diff --git a/themes/lucky/sass/main.scss b/themes/lucky/sass/main.scss
index 5342ee4..6a8a3a2 100644
--- a/themes/lucky/sass/main.scss
+++ b/themes/lucky/sass/main.scss
@@ -33,6 +33,7 @@ body {
font-size: 18px;
text-rendering: optimizeLegibility;
font-feature-settings: "kern" 1;
+ hyphen: auto;
color: $text-color;
position: relative;
background: $bg;
diff --git a/themes/lucky/templates/macros/ptcg.html b/themes/lucky/templates/macros/ptcg.html
new file mode 100644
index 0000000..8aa9b4b
--- /dev/null
+++ b/themes/lucky/templates/macros/ptcg.html
@@ -0,0 +1,150 @@
+{% macro card_pic(id)%}
+
+
+ {{ trans(key="ptcg-acespec", lang=lang) }} + {{ trans(key="ptcg-acespec-text", lang=lang) }} +
+{% endmacro acespec %} + +{% macro ancient()%} ++ {{ trans(key="ptcg-ancient", lang=lang) }} +
+{% endmacro ancient %} + +{% macro future()%} ++ {{ trans(key="ptcg-future", lang=lang) }} +
+{% endmacro future %} + +{% macro attack(attack)%} +
+ {{ trans(key="ptcg-ability", lang=lang) }}:
+ {{ ability.name }}
+
+ {{ ability.effect }}
+
{{ trans(key="ptcg-pokemon", lang=lang)}} > {{ trans(key="ptcg-"~card.type, lang=lang) }}
++ {{ card.name }} + {{ card.hp }} {{ card.element }} +
+ {% if card.tera %} ++ {{ trans(key="ptcg-tera", lang=lang) }} + {{ trans(key="ptcg-tera-text", lang=lang) }} +
+ {% endif %} + {% if card.ancient %} + {{ self::ancient() }} + {% endif %} + {% if card.future %} + {{ self::future() }} + {% endif %} + {% if card.ability %} + {{ self::ability(ability=card.ability) }} + {% endif %} + {% for attack in card.attacks %} + {{ self::attack(attack=attack) }} + {% endfor %} + {% if card.vstar %} + {{ self::vstar(vstar=card.vstar) }} + {% endif %} ++ {{ trans(key="ptcg-weakness", lang=lang) }} {{ card.weakness }} + {{ trans(key="ptcg-resistance", lang=lang) }} {{ card.resistance }} + {{ trans(key="ptcg-retreat", lang=lang) }} {{ card.retreat }} +
+ {% if card.rulebox %} ++ {{ trans(key="ptcg-"~card.rulebox~"-rule", lang=lang) }} + {{ trans(key="ptcg-"~card.rulebox~"-rule-text", lang=lang) }} +
+ {% endif %} +{% endmacro pokemon_card_info %} + +{% macro trainer_card_info(card)%} +{{ trans(key="ptcg-trainer", lang=lang) }} > {{ trans(key="ptcg-"~card.type, lang=lang) }}
+{{ card.name }}
+ {% if card.acespec %} + {{ self::acespec() }} + {% endif %} + {% if card.tagteam %} ++ {{ trans(key="ptcg-tagteam", lang=lang) }} +
+ {% endif %} + {% if card.ancient %} + {{ self::ancient() }} + {% endif %} + {% if card.future %} + {{ self::future() }} + {% endif %} + {% if card.effect is string%} +{{ card.effect }}
+ {% else%} + {% for line in card.effect %} +{{ line }}
+ {% endfor %} + {% endif %} + {% if card.attack %} + {{ self::attack(attack=card.attack) }} + {% endif %} + {% if card.vstar %} + {{ self::vstar(vstar=card.vstar) }} + {% endif %} +{{ trans(key="ptcg-"~card.type~"-rule", lang=lang) }}
+{% endmacro trainer_card_info %} + +{% macro energy_card_info(card)%} +{{ trans(key="ptcg-energy", lang=lang) }} {{ trans(key="ptcg-energy-"~card.type, lang=lang) }}
+{{ card.name }}
+ {% if card.acespec %} + {{ self::acespec() }} + {% endif %} + {% if card.effect %} + {% if card.effect is string%} +{{ card.effect }}
+ {% else%} + {% for line in card.effect %} +{{ line }}
+ {% endfor %} + {% endif %} + {% endif %} +{% endmacro energy_card_info %} diff --git a/themes/lucky/templates/shortcodes/ptcg_card.html b/themes/lucky/templates/shortcodes/ptcg_card.html index eb79595..5cf0843 100644 --- a/themes/lucky/templates/shortcodes/ptcg_card.html +++ b/themes/lucky/templates/shortcodes/ptcg_card.html @@ -1,103 +1,19 @@ -{% set card = load_data(path="content/ptcg/cards/" ~ id ~ ".toml") %} - +{%- import "macros/ptcg.html" as ptcg -%} {% if nth == 1 and config.mode == "serve" %} {% endif %} - -{{ trans(key="ptcg-pokemon", lang=lang)}} > {{ trans(key="ptcg-"~card.type, lang=lang) }}
-- {{ card.name }} - {{ card.hp }} {{ card.element }} -
- {% if card.tera %} -- {{ trans(key="ptcg-tera", lang=lang) }} - {{ trans(key="ptcg-tera-text", lang=lang) }} -
- {% endif %} - {% if card.ability %} -
- {{ trans(key="ptcg-ability", lang=lang) }}:
- {{ card.ability.name }}
-
- {{ card.ability.effect }}
-
- {{ trans(key="ptcg-ability", lang=lang) }}:
- {{ card.vstar.ability.name }}
-
- {{ card.vstar.ability.effect }}
-
- {{ trans(key="ptcg-"~card.rulebox~"-rule", lang=lang) }} - {{ trans(key="ptcg-"~card.rulebox~"-rule-text", lang=lang) }} -
- {% endif %} - {% elif card.kind == "trainer" %} -{{ trans(key="ptcg-trainer", lang=lang) }} > {{ trans(key="ptcg-"~card.type, lang=lang) }}
-{{ card.name }}
- {% if card.acespec %} -- {{ trans(key="ptcg-acespec", lang=lang) }} - {{ trans(key="ptcg-acespec-text", lang=lang) }} -
- {% endif %} -{{ card.effect }}
-{{ trans(key="ptcg-"~card.type~"-rule", lang=lang) }}
- {% elif card.kind == "energy" %} -{{ trans(key="ptcg-energy", lang=lang) }} {{ trans(key="ptcg-energy-"~card_data.type, lang=lang) }}
-{{ card.name }}
- {% if card_data.acespec %} -- {{ trans(key="ptcg-acespec", lang=lang) }} - {{ trans(key="ptcg-acespec-text", lang=lang) }} -
- {% endif %} - {% if card.effect %} -{{ card.effect }}
- {% endif %} - {% endif %} +{%- set card = load_data(path="@/ptcg/cards/" ~ id ~ ".toml") -%} +{% if not display %}{{ trans(key="ptcg-pokemon", lang=lang)}} > {{ trans(key="ptcg-"~card_data.type, lang=lang) }}
-- {{ card_data.name }} - {{ card_data.hp }} {{ card_data.element }} -
- {% if card_data.tera %} -- {{ trans(key="ptcg-tera", lang=lang) }} - {{ trans(key="ptcg-tera-text", lang=lang) }} -
- {% endif %} - {% if card_data.ability %} -
- {{ trans(key="ptcg-ability", lang=lang) }}:
- {{ card_data.ability.name }}
-
- {{ card_data.ability.effect }}
-
- {{ trans(key="ptcg-ability", lang=lang) }}:
- {{ card_data.vstar.ability.name }}
-
- {{ card_data.vstar.ability.effect }}
-
- {{ trans(key="ptcg-"~card_data.rulebox~"-rule", lang=lang) }} - {{ trans(key="ptcg-"~card_data.rulebox~"-rule-text", lang=lang) }} -
- {% endif %} + {{ ptcg::card_pic(id=card_it.id) }} + {{ ptcg::pokemon_card_info(card=card) }}{{ trans(key="ptcg-trainer", lang=lang) }} > {{ trans(key="ptcg-"~card_data.type, lang=lang) }}
-{{ card_data.name }}
- {% if card_data.acespec %} -- {{ trans(key="ptcg-acespec", lang=lang) }} - {{ trans(key="ptcg-acespec-text", lang=lang) }} -
- {% endif %} -{{ card_data.effect }}
-{{ trans(key="ptcg-"~card_data.type~"-rule", lang=lang) }}
+ {{ ptcg::card_pic(id=card_it.id) }} + {{ ptcg::trainer_card_info(card=card) }}{{ trans(key="ptcg-energy", lang=lang) }} {{ trans(key="ptcg-energy-"~card_data.type, lang=lang) }}
-{{ card_data.name }}
- {% if card_data.acespec %} -- {{ trans(key="ptcg-acespec", lang=lang) }} - {{ trans(key="ptcg-acespec-text", lang=lang) }} -
- {% endif %} - {% if card_data.effect %} -{{ card_data.effect }}
- {% endif %} + {{ ptcg::card_pic(id=card_it.id) }} + {{ ptcg::energy_card_info(card=card) }}