Create

Create

86M Downloads

Additional Recipes for stone conversion

draxius opened this issue ยท 0 comments

commented

Describe the Suggestion

There are a number of decorative and other blocks that it seems intuitive to include in the "Compacting" recipes for Create. Similar to how Andesite, Diorite, and Granite all of compacting recipes, there are a number of additional recipes that I think would add value to the "Create" experience without being balance issues.

I have them in two broad categories: additional recipes for Vanilla blocks, and additional ones for Create-added blocks.

Here are the blocks I'd like to see recipes added for (with some additional notes as to why):
Vanilla Blocks

  • Calcite, specifically because this is a necessary part of the Diorite recipe, so self-sufficient "Cobbleworks" are no longer possible without it
  • Deepslate
  • Magma Block (both to feed into the Obsidian recipe and just to have it)
  • Netherrack
  • Tuff

Create Blocks

  • Limestone
  • All 4 "metallic" blocks (Asurine, Crimsite, Ochrum, Veridium)

Having these blocks would mean that nearly every naturally occurring "stone" block (or derivative) would now be craftable after a certain point of progression. Given how prior versionf of Create have operated, this feels to me more like filling in the gaps than anything game-breaking, but what do I know?

Screenshots and Videos

No response

Additional Context

I've included the CraftTweaker recipes I'm playing around with. The one that will probably stand out as "weird" is using eggs for Calcite. I chose that both to be a little non-standard, and because Calcite in nature is just Calcium Carbonate, which is almost entirely what eggshells are made of.

I'm not particularly married to any of these recipes and won't be offended if the core suggestion is take but these recipes are all thrown out.

// Compact Vanilla stones missing from Create tree
<recipetype:create:compacting>.addRecipe("calcite_from_egg", <constant:create:heat_condition:none>, 
	[<item:minecraft:calcite>],
	[<item:minecraft:egg>, <item:minecraft:stone>],
	[<fluid:minecraft:lava> * 100], 200);

<recipetype:create:compacting>.addRecipe("deepslate_from_charcoal", <constant:create:heat_condition:none>, 
	[<item:minecraft:deepslate>],
	[<item:minecraft:charcoal> * 2, <item:minecraft:blackstone>],
	[<fluid:minecraft:lava> * 100], 200);
	
<recipetype:create:compacting>.addRecipe("tuff_from_charcoal", <constant:create:heat_condition:none>, 
	[<item:minecraft:tuff>],
	[<item:minecraft:charcoal> * 2, <item:minecraft:deepslate>],
	[<fluid:minecraft:lava> * 100], 200);

<recipetype:create:compacting>.addRecipe("netherrack_from_nether_wart_block", <constant:create:heat_condition:none>, 
	[<item:minecraft:netherrack>],
	[<item:minecraft:nether_wart_block>, <item:minecraft:cobblestone>],
	[<fluid:minecraft:lava> * 100], 200);

// Alternate method to obtain Magma Blocks

<recipetype:create:compacting>.addRecipe("magma_block_from_slime", <constant:create:heat_condition:heated>, 
	[<item:minecraft:magma_block>],
	[<item:minecraft:slime_ball> * 2, <item:minecraft:netherrack>],
	[<fluid:minecraft:lava> * 200], 200);

// Making Limestone

<recipetype:create:compacting>.addRecipe("limestone_from_charcoal", <constant:create:heat_condition:none>, 
	[<item:create:limestone>],
	[<item:minecraft:charcoal> * 2, <item:minecraft:calcite>],
	[<fluid:minecraft:lava> * 100], 200);

// Recycle ignots back into raw decorative blocks (at a loss)

<recipetype:create:compacting>.addRecipe("asurine_from_zinc_ignot", <constant:create:heat_condition:none>, 
	[<item:create:asurine>],
	[<item:create:zinc_ingot>, <item:minecraft:andesite>],
	[<fluid:minecraft:lava> * 100], 200);

<recipetype:create:compacting>.addRecipe("crimsite_from_iron_ingot", <constant:create:heat_condition:none>, 
	[<item:create:crimsite>],
	[<item:minecraft:iron_ingot>, <item:minecraft:netherrack>],
	[<fluid:minecraft:lava> * 100], 200);

<recipetype:create:compacting>.addRecipe("ochrum_from_gold_ingot", <constant:create:heat_condition:none>, 
	[<item:create:ochrum>],
	[<item:minecraft:gold_ingot>, <item:create:limestone>],
	[<fluid:minecraft:lava> * 100], 200);

<recipetype:create:compacting>.addRecipe("veridium_from_copper_ingot", <constant:create:heat_condition:none>, 
	[<item:create:veridium>],
	[<item:minecraft:copper_ingot>, <item:minecraft:blackstone>],
	[<fluid:minecraft:lava> * 100], 200);