Skip to content

Commit

Permalink
Add smelting/blasting recipes for Sulfur Ore.
Browse files Browse the repository at this point in the history
* Update deps, add 1.20.6
- Add smelting/blasting recipes for Sulfur Ore
  • Loading branch information
gniftygnome committed May 10, 2024
1 parent 46d1359 commit e479c98
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,22 @@ public void generate(RecipeExporter exporter) {
.criterion("has_sulfurs", InventoryChangedCriterion.Conditions.items(getItemTagPredicate(CinderscapesItemTags.SULFURS)))
.offerTo(exporter);

offerReversibleCompactingRecipes(exporter, RecipeCategory.MISC, CinderscapesItems.SULFUR, RecipeCategory.BUILDING_BLOCKS, CinderscapesBlocks.SULFUR_BLOCK);
offerReversibleCompactingRecipes(exporter,
RecipeCategory.MISC, CinderscapesItems.SULFUR,
RecipeCategory.BUILDING_BLOCKS,
CinderscapesBlocks.SULFUR_BLOCK);

offerBlasting(exporter,
List.of(CinderscapesItems.SULFUR_ORE),
RecipeCategory.MISC,
CinderscapesItems.SULFUR,
0.1f, 100, "blasting");

offerSmelting(exporter,
List.of(CinderscapesItems.SULFUR_ORE),
RecipeCategory.MISC,
CinderscapesItems.SULFUR,
0.1f, 200, "smelting");


// quartz recipes
Expand Down
16 changes: 8 additions & 8 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,21 @@ loader_version=0.15.10
fabric_version=0.97.6+1.20.5

# Terraform modules
terraform_biome_remapper_api_version=10.0.0-beta.1
terraform_shapes_api_version=10.0.0-beta.1
terraform_surfaces_api_version=10.0.0-beta.1
terraform_wood_api_version=10.0.0-beta.1
terraform_biome_remapper_api_version=10.0.0
terraform_shapes_api_version=10.0.0
terraform_surfaces_api_version=10.0.0
terraform_wood_api_version=10.0.0

# Biolith for worldgen module and testing
biolith_version=2.1.0-alpha.4

# TerraBlender for worldgen module and testing
terrablender_version=1.20.4-3.3.0.12
terrablender_version=1.20.6-3.5.0.3

# Other Things
clothconfig_version=14.0.126
modmenu_version=10.0.0-beta.1
vistas_version=2.5.2
vistas_version=2.6.1

# Project Metadata
project_name=Cinderscapes
Expand All @@ -37,14 +37,14 @@ default_release_type=stable
# CurseForge Metadata
curseforge_slug=cinderscapes
curseforge_id=391429
curseforge_game_versions=1.20.5, Fabric, Quilt
curseforge_game_versions=1.20.5, 1.20.6, Fabric, Quilt
curseforge_required_dependencies=fabric-api
curseforge_optional_dependencies=

# Modrinth Metadata
modrinth_slug=cinderscapes
modrinth_id=QC4wcUXZ
modrinth_game_versions=1.20.5
modrinth_game_versions=1.20.5, 1.20.6
modrinth_mod_loaders=fabric, quilt
#modrinth_embedded_dependencies=biolith

Expand Down

0 comments on commit e479c98

Please sign in to comment.