Fixes and features (#987)

* - Fixed hide duping recipes.
- Added quest book and field guide instances for fishing nets.
- Fixed rebar support recipe crash.
- Fixed red steel flask dupe.
- Fixed red alloy recipe inconsistency.

* - Fixed blue steel backpack block lang

* - Added max vessel fluid warning to small vessels.

* - Moved red steel flask recipe

* - Fixed fishing nets event function

* Update queststfc_tips.snbt

Signed-off-by: Redeix <59435925+Redeix@users.noreply.github.com>

* Update en_us.json

Signed-off-by: Redeix <59435925+Redeix@users.noreply.github.com>

* - Added item to summon armor stands with arms

* - Added recipes to empty vessels and molds

* - Added recipes for extracting/ forming magma blocks.

* - Added recipes for extracting/ forming magma blocks.

* - Nerfed steel support recipe output.

---------

Signed-off-by: Redeix <59435925+Redeix@users.noreply.github.com>
This commit is contained in:
Redeix 2025-05-12 06:29:10 -05:00 committed by GitHub
parent 3b9c6e32a6
commit cf54f584b4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 148 additions and 55 deletions

View file

@ -273,4 +273,20 @@ function registerTFGMoldRecipes(event) {
.duration(120)
.EUt(GTValues.VA[GTValues.LV])
})
//craft mold to scrub nbt
const molds = Ingredient.of('#tfc:fired_molds').itemIds;
molds.forEach(mold => {
event.shapeless(Item.of(mold), [mold])
.id(`tfg:shapeless/mold_cleaning/${mold.replace(":", "/")}`);
});
//craft vessel to scrub nbt
const vessels = Ingredient.of('#tfc:fired_vessels').itemIds;
vessels.forEach(vessel => {
event.shapeless(Item.of(vessel), [vessel])
.id(`tfg:shapeless/vessel_cleaning/${vessel.replace(":", "/")}`);
});
}