Skip to content

Commit

Permalink
feat(recipes): ✏️[Biome Cobblestone][Biome Stone] add new obtainable …
Browse files Browse the repository at this point in the history
…recipes

There is no actual progression usage yet. But now you can use it as decoration.
  • Loading branch information
Krutoy242 committed May 27, 2024
1 parent 2664463 commit bc541b4
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions scripts/mods/randomthings.zs
Original file line number Diff line number Diff line change
Expand Up @@ -541,6 +541,15 @@ scripts.mods.forestry.ThermionicFabricator.addCast(<randomthings:biomeglass> * 8
'': <ore:ingotPlatinum>, // Platinum Ingot
}).shaped(), <fluid:glass> * 4000);

// Defined by decaying of corals
for i in 0 .. 5 {
val stone = <randomthings:biomestone>.definition.makeStack(i);
recipes.remove(stone);
if (i==0) continue;
mods.chisel.Carving.addVariation('biome_stone', stone);
}
furnace.addRecipe(<randomthings:biomestone:1>, <randomthings:biomestone>, 0.5);

// Cheaper to use as ingredient
craft.remake(<darkutils:monolith>, ['pretty',
'S ▲ S',
Expand Down

0 comments on commit bc541b4

Please sign in to comment.