glowstone and lamp balancing (#2581)

* glowstone and lamp balancing

* moved glowstone thingies

* fix evil glowstone recipes

* make tungsten thingy have a liquid form

* evil bronze recipes

* fixed ratios (I'm a little special ok)

* fixed ratios electric boogalo

* deleted weird red alloy recipe + fixed abs temps

* fixed ratios electrocution boogalo

---------

Co-authored-by: Redeix <brayden.j.m.ford@gmail.com>
This commit is contained in:
The Compendium System / The Atlassian Collective 2026-01-02 05:45:16 +01:00 committed by GitHub
parent 7dba518797
commit 5b60f268cf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 62 additions and 19 deletions

View file

@ -131,7 +131,7 @@ const registerCreatedecoRecipes = (event) => {
// Loop through each lamp type and color to create the recipes
lampTypes.forEach(lampType => {
lampColors.forEach(lampColor => {
let output = `createdeco:${lampColor}_${lampType}_lamp`; // Define the output item ID
let output = `2x createdeco:${lampColor}_${lampType}_lamp`; // Define the output item ID
lampRecipe(output, lampType, lampColor); // Call the lampRecipe function for each combination
});
});