Skip to content

Commit

Permalink
Deletion of legacy orestone recipes
Browse files Browse the repository at this point in the history
Also re-add experience block placeholder so dev clients can join the dev server without manually registering this block.
  • Loading branch information
Laskyyy committed Jan 31, 2024
1 parent d86d40a commit b0f9025
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 40 deletions.
40 changes: 0 additions & 40 deletions kubejs/server_scripts/create.js
Original file line number Diff line number Diff line change
Expand Up @@ -1370,27 +1370,6 @@ function sequencedAssemblyRecipes(event) {
)
.transitionalItem("ad_astra:iron_plate")
.loops(3);

event.recipes
.createSequencedAssembly(
["create:crimsite"],
"minecraft:cobbled_deepslate",
[
event.recipes.createFilling("minecraft:cobbled_deepslate", [
"minecraft:cobbled_deepslate",
{
fluid: "minecraft:lava",
amount: 3000,
},
]),
event.recipes.createDeploying("minecraft:cobbled_deepslate", [
"minecraft:cobbled_deepslate",
"minecraft:flint",
]),
]
)
.transitionalItem("minecraft:cobbled_deepslate")
.loops(3);
}

function fillingRecipes(event) {
Expand Down Expand Up @@ -2095,16 +2074,6 @@ function mixingRecipes(event) {
heat: "",
time: 30,
},
{
output: "create:ochrum",
input: [
"compressor:compressed_sand",
"minecraft:cobbled_deepslate",
{ fluid: "minecraft:lava", amount: 4500 },
],
heat: "",
time: 1500,
},
{
output: [{ fluid: "kubejs:liquid_xp_nuggies", amount: 81000 }],
input: ["kubejs:experience_block"],
Expand Down Expand Up @@ -2676,15 +2645,6 @@ function compactingRecipes(event) {
{ fluid: "minecraft:lava", amount: FULL_BUCKET_AMMOUNT / 10 },
],
},
{
output: "create:limestone",
inputs: [
"2x minecraft:pointed_dripstone",
"2x ad_astra:moon_sand",
"2x minecraft:flint",
{ fluid: "minecraft:lava", amount: FULL_BUCKET_AMMOUNT / 10 },
],
},
{
output: "minecraft:lapis_lazuli",
inputs: [
Expand Down
7 changes: 7 additions & 0 deletions kubejs/startup_scripts/startup.js
Original file line number Diff line number Diff line change
Expand Up @@ -473,6 +473,13 @@ onEvent("block.registry", (event) => {
.tagBlock("minecraft:mineable/pickaxe")
.material("stone");

event
.create("createastral:experience_block", "basic")
.hardness(4)
.displayName("Ignore this block whilst it's a placeholder")
.tagBlock("minecraft:mineable/pickaxe")
.material("stone");

event
.create("createastral:compressed_experience_block")
.tagBlock("minecraft:mineable/pickaxe")
Expand Down

0 comments on commit b0f9025

Please sign in to comment.