From 886d0cb2154ba909cc10d7232a0616ad0bcd99c1 Mon Sep 17 00:00:00 2001 From: Swagi-REDACTED <111149273+Swagi-REDACTED@users.noreply.github.com> Date: Wed, 6 May 2026 19:20:15 -0400 Subject: [PATCH 1/7] Add Ore Generation Guide item to ingots documentation --- docs/items/ingots/ingots.mdx | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/items/ingots/ingots.mdx b/docs/items/ingots/ingots.mdx index 2e4f3156..c75d1522 100644 --- a/docs/items/ingots/ingots.mdx +++ b/docs/items/ingots/ingots.mdx @@ -30,6 +30,7 @@ Ingots are made from either ore or dust, generally smelt in a furnace. - - - +- From 0aa32d30d78498ba6f694eda866fcb3b8db3352f Mon Sep 17 00:00:00 2001 From: Swagi-REDACTED <111149273+Swagi-REDACTED@users.noreply.github.com> Date: Wed, 6 May 2026 19:20:48 -0400 Subject: [PATCH 2/7] Fix slug case for ore generation guide item --- docs/items/ingots/ingots.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/items/ingots/ingots.mdx b/docs/items/ingots/ingots.mdx index c75d1522..a4ce8adf 100644 --- a/docs/items/ingots/ingots.mdx +++ b/docs/items/ingots/ingots.mdx @@ -30,7 +30,7 @@ Ingots are made from either ore or dust, generally smelt in a furnace. - - - -- +- From a81aa162ff346f52b140de368d97f208282fcf93 Mon Sep 17 00:00:00 2001 From: Swagi-REDACTED <111149273+Swagi-REDACTED@users.noreply.github.com> Date: Wed, 6 May 2026 19:26:06 -0400 Subject: [PATCH 3/7] Create ore generation guide for TechReborn Added a comprehensive guide on ore generation for TechReborn, detailing ore types, dimensions, mining levels, and additional world generation features. --- docs/items/ingots/ore_generation_guide.mdx | 49 ++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 docs/items/ingots/ore_generation_guide.mdx diff --git a/docs/items/ingots/ore_generation_guide.mdx b/docs/items/ingots/ore_generation_guide.mdx new file mode 100644 index 00000000..ef6fc135 --- /dev/null +++ b/docs/items/ingots/ore_generation_guide.mdx @@ -0,0 +1,49 @@ +# TechReborn Ore Generation Guide (v26.1) + +| Ore | Dimension | Min Y | Max Y | Veins/Chunk | Vein Size | Drops Raw Metal? | +|---|---|---|---|---|---|---| +| Bauxite | Overworld | -64 | 20 | 12 | 6 | No (Drops Dust/Block) | +| Lead | Overworld | -24 | 40 | 16 | 6 | Yes (Raw Lead) | +| Silver | Overworld | -24 | 60 | 16 | 6 | Yes (Raw Silver) | +| Galena | Overworld | -39 | 40 | 12 | 8 | No (Drops Dust/Block) | +| Tin | Overworld | 25 | 80 | 16 | 8 | Yes (Raw Tin) | +| Uranium | Overworld | -64 | 32 | 4 | 4 | Yes (Raw Uranium) | +| Iridium | Overworld | -64 | 0 | 4 | 3 | Yes (Raw Iridium) | +| Ruby | Overworld | 20 | 120 | 8 | 6 | No (Drops Gem) | +| Sapphire | Overworld | 20 | 120 | 7 | 6 | No (Drops Gem) | +| Cinnabar | Nether | 0 | 128 | 5 | 6 | No (Drops Dust) | +| Pyrite | Nether | 0 | 128 | 6 | 6 | No (Drops Dust) | +| Sphalerite | Nether | 0 | 128 | 4 | 6 | No (Drops Dust) | +| Peridot | The End | 0 | 360 | 6 | 6 | No (Drops Gem) | +| Sheldonite | The End | 0 | 360 | 4 | 6 | No (Drops Platinum) | +| Sodalite | The End | 0 | 360 | 4 | 6 | No (Drops Dust) | +| Tungsten | The End | 0 | 360 | 3 | 6 | Yes (Raw Tungsten) | + +## Best & Worst Mining Locations + +### 1. Overworld +* **Best Mining Level (Deep):** Y = -24 to 0. This is the "sweet spot" where Lead, Silver, Galena, Bauxite, Uranium, and Iridium all overlap. +* **Best Mining Level (Surface):** Y = 25 to 40. Here you will find Tin, Ruby, Sapphire, and Silver. +* **Worst Level:** Above Y = 120 or Below Y = -64. No TechReborn ores generate here. +* **Biomes:** There is no "best" biome for ores; they generate in all Overworld biomes equally. + +### 2. The Nether +* **Best Mining Level:** Anywhere (Y = 0 to 128). Ores are spread evenly throughout the Netherrack. +* **Worst Level:** Above the Nether ceiling (Y > 128). + +### 3. The End +* **Best Mining Level:** Anywhere on the islands. Ores generate from the bottom to the very top (Y = 360). +* **Worst Level:** The void (obviously). + +## Ores that Output Raw Metals +The following ores drop Raw Metal items (which can be Fortune-mined): +* Tin +* Lead +* Silver +* Uranium +* Iridium +* Tungsten (The End) + +## Additional World Gen Features +* **Rubber Trees:** These generate only in Forest, Taiga, and Swamp biomes. +* **Oil Lakes:** These can generate in any Overworld biome but are relatively rare (1 in 20 chunks). From 925e50150b9466e5d7cfc78102a21c859598e3bb Mon Sep 17 00:00:00 2001 From: Swagi-REDACTED <111149273+Swagi-REDACTED@users.noreply.github.com> Date: Wed, 6 May 2026 19:52:05 -0400 Subject: [PATCH 4/7] Update ingots.mdx to remove obsolete entry Removed obsolete McItem entry and added a link to the Ore Generation Guide. --- docs/items/ingots/ingots.mdx | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/docs/items/ingots/ingots.mdx b/docs/items/ingots/ingots.mdx index a4ce8adf..178898b9 100644 --- a/docs/items/ingots/ingots.mdx +++ b/docs/items/ingots/ingots.mdx @@ -30,7 +30,4 @@ Ingots are made from either ore or dust, generally smelt in a furnace. - - - -- - - - +- [**Ore Generation Guide**](/docs/world/ores/ore-generation-guide) From 6ced0e66e484658b3dec2bf8ba3327a4f649f1c1 Mon Sep 17 00:00:00 2001 From: Swagi-REDACTED <111149273+Swagi-REDACTED@users.noreply.github.com> Date: Wed, 6 May 2026 19:52:26 -0400 Subject: [PATCH 5/7] Delete docs/items/ingots/ore_generation_guide.mdx --- docs/items/ingots/ore_generation_guide.mdx | 49 ---------------------- 1 file changed, 49 deletions(-) delete mode 100644 docs/items/ingots/ore_generation_guide.mdx diff --git a/docs/items/ingots/ore_generation_guide.mdx b/docs/items/ingots/ore_generation_guide.mdx deleted file mode 100644 index ef6fc135..00000000 --- a/docs/items/ingots/ore_generation_guide.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# TechReborn Ore Generation Guide (v26.1) - -| Ore | Dimension | Min Y | Max Y | Veins/Chunk | Vein Size | Drops Raw Metal? | -|---|---|---|---|---|---|---| -| Bauxite | Overworld | -64 | 20 | 12 | 6 | No (Drops Dust/Block) | -| Lead | Overworld | -24 | 40 | 16 | 6 | Yes (Raw Lead) | -| Silver | Overworld | -24 | 60 | 16 | 6 | Yes (Raw Silver) | -| Galena | Overworld | -39 | 40 | 12 | 8 | No (Drops Dust/Block) | -| Tin | Overworld | 25 | 80 | 16 | 8 | Yes (Raw Tin) | -| Uranium | Overworld | -64 | 32 | 4 | 4 | Yes (Raw Uranium) | -| Iridium | Overworld | -64 | 0 | 4 | 3 | Yes (Raw Iridium) | -| Ruby | Overworld | 20 | 120 | 8 | 6 | No (Drops Gem) | -| Sapphire | Overworld | 20 | 120 | 7 | 6 | No (Drops Gem) | -| Cinnabar | Nether | 0 | 128 | 5 | 6 | No (Drops Dust) | -| Pyrite | Nether | 0 | 128 | 6 | 6 | No (Drops Dust) | -| Sphalerite | Nether | 0 | 128 | 4 | 6 | No (Drops Dust) | -| Peridot | The End | 0 | 360 | 6 | 6 | No (Drops Gem) | -| Sheldonite | The End | 0 | 360 | 4 | 6 | No (Drops Platinum) | -| Sodalite | The End | 0 | 360 | 4 | 6 | No (Drops Dust) | -| Tungsten | The End | 0 | 360 | 3 | 6 | Yes (Raw Tungsten) | - -## Best & Worst Mining Locations - -### 1. Overworld -* **Best Mining Level (Deep):** Y = -24 to 0. This is the "sweet spot" where Lead, Silver, Galena, Bauxite, Uranium, and Iridium all overlap. -* **Best Mining Level (Surface):** Y = 25 to 40. Here you will find Tin, Ruby, Sapphire, and Silver. -* **Worst Level:** Above Y = 120 or Below Y = -64. No TechReborn ores generate here. -* **Biomes:** There is no "best" biome for ores; they generate in all Overworld biomes equally. - -### 2. The Nether -* **Best Mining Level:** Anywhere (Y = 0 to 128). Ores are spread evenly throughout the Netherrack. -* **Worst Level:** Above the Nether ceiling (Y > 128). - -### 3. The End -* **Best Mining Level:** Anywhere on the islands. Ores generate from the bottom to the very top (Y = 360). -* **Worst Level:** The void (obviously). - -## Ores that Output Raw Metals -The following ores drop Raw Metal items (which can be Fortune-mined): -* Tin -* Lead -* Silver -* Uranium -* Iridium -* Tungsten (The End) - -## Additional World Gen Features -* **Rubber Trees:** These generate only in Forest, Taiga, and Swamp biomes. -* **Oil Lakes:** These can generate in any Overworld biome but are relatively rare (1 in 20 chunks). From 33c4c22fcaeafaa102a872cc7e16e2c179584257 Mon Sep 17 00:00:00 2001 From: Swagi-REDACTED <111149273+Swagi-REDACTED@users.noreply.github.com> Date: Wed, 6 May 2026 19:53:10 -0400 Subject: [PATCH 6/7] Create ore generation guide documentation Added a comprehensive guide on ore generation, including details on dimensions, mining levels, and ore characteristics. --- docs/world/ores/ore-generation-guide.mdx | 50 ++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 docs/world/ores/ore-generation-guide.mdx diff --git a/docs/world/ores/ore-generation-guide.mdx b/docs/world/ores/ore-generation-guide.mdx new file mode 100644 index 00000000..9eabe145 --- /dev/null +++ b/docs/world/ores/ore-generation-guide.mdx @@ -0,0 +1,50 @@ +--- +title: Ore Generation Guide +sidebar_position: 5 +--- + +# TechReborn Ore Generation Guide (v26.1) + +| Ore | Dimension | Min Y | Max Y | Veins/Chunk | Vein Size | Drops Raw Metal? | +|---|---|---|---|---|---|---| +| Bauxite | Overworld | -64 | 20 | 12 | 6 | No (Drops Dust/Block) | +| Lead | Overworld | -24 | 40 | 16 | 6 | Yes (Raw Lead) | +| Silver | Overworld | -24 | 60 | 16 | 6 | Yes (Raw Silver) | +| Galena | Overworld | -39 | 40 | 12 | 8 | No (Drops Dust/Block) | +| Tin | Overworld | 25 | 80 | 16 | 8 | Yes (Raw Tin) | +| Uranium | Overworld | -64 | 32 | 4 | 4 | Yes (Raw Uranium) | +| Iridium | Overworld | -64 | 0 | 4 | 3 | Yes (Raw Iridium) | +| Ruby | Overworld | 20 | 120 | 8 | 6 | No (Drops Gem) | +| Sapphire | Overworld | 20 | 120 | 7 | 6 | No (Drops Gem) | +| Cinnabar | Nether | 0 | 128 | 5 | 6 | No (Drops Dust) | +| Pyrite | Nether | 0 | 128 | 6 | 6 | No (Drops Dust) | +| Sphalerite | Nether | 0 | 128 | 4 | 6 | No (Drops Dust) | +| Peridot | The End | 0 | 360 | 6 | 6 | No (Drops Gem) | +| Sheldonite | The End | 0 | 360 | 4 | 6 | No (Drops Platinum) | +| Sodalite | The End | 0 | 360 | 4 | 6 | No (Drops Dust) | +| Tungsten | The End | 0 | 360 | 3 | 6 | Yes (Raw Tungsten) | + +## Best & Worst Mining Locations + +### 1. Overworld +* **Best Mining Level (Deep):** Y = -24 to 0. This is the "sweet spot" where Lead, Silver, Galena, Bauxite, Uranium, and Iridium all overlap. +* **Best Mining Level (Surface):** Y = 25 to 40. Here you will find Tin, Ruby, Sapphire, and Silver. +* **Worst Level:** Above Y = 120 or Below Y = -64. No TechReborn ores generate here. +* **Biomes:** There is no "best" biome for ores; they generate in all Overworld biomes equally. + +### 2. The Nether +* **Best Mining Level:** Anywhere (Y = 0 to 128). Ores are spread evenly throughout the Netherrack. +* **Worst Level:** No worst level unless mods expand the nether past (y = 0 to -128). + +### 3. The End +* **Best Mining Level:** Anywhere on the islands. Ores generate from the bottom to the very top (Y = 360). +* **Worst Level:** The void (obviously). + +## Ores that Output Raw Metals +The following ores drop Raw Metal items (which can be Fortune-mined): +* Tin +* Lead +* Silver +* Uranium +* Iridium +* Tungsten (The End) From a2b39fc4d68b6eff53f65e01e002a74d6e3e76f3 Mon Sep 17 00:00:00 2001 From: Swagi-REDACTED <111149273+Swagi-REDACTED@users.noreply.github.com> Date: Wed, 6 May 2026 19:53:27 -0400 Subject: [PATCH 7/7] Add tip for Ore Generation Guide in ores.mdx Added a tip section linking to the Ore Generation Guide. --- docs/world/ores/ores.mdx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/world/ores/ores.mdx b/docs/world/ores/ores.mdx index 25973e70..2472ec2a 100644 --- a/docs/world/ores/ores.mdx +++ b/docs/world/ores/ores.mdx @@ -7,6 +7,10 @@ sidebar_position: 2 Tech Reborn adds several ores in all three dimensions. You can see these ores either in a newly created world or in a newly explored chunks. +:::tip[Detailed Guide] +Looking for specific Y-levels and mining tips? Check out our [**Ore Generation Guide**](ore-generation-guide). +::: + ## The Overworld | Ore | Found on |