Jump to content

[Mod Request] Add recipe for the heat cube


Recommended Posts

I was looking through stuff in sandbox mode and found an item called a heat cube.

Was hoping a crafting table recipe could be added, if possible multiple recipes for different materials such as igneous rock, ceramic, copper/aluminum, thermium etc

image.png

 

 

 Turns out the "Customize Recipe" Mod let's me do this easily

In the spoiler is the JSON stuffing for heat cubes made of; Igneous rock, Granite, Ceramic, Diamond, the three starting metals (copper, aluminum, cobalt), and Thermium. The recipe will take 1,000kg of the selected material and give a 1,000kg heatcube made of that material.

Spoiler

    {
      "Id": "CraftingTable_I_IgneousRock_O_HeatCube",
      "Building": "CraftingTable",
      "Inputs": [
        {
          "material": "IgneousRock",
          "amount": 1000.0,
          "inheritElement": true
        }
      ],
      "Outputs": [
        {
          "material": "Heatcube",
          "amount": 1.0
        }
      ],
      "Time": 5.0,
      "HEP": 0,
      "Description": "A heatcube, a big chunk of mass to hold heat."
    },
    {
      "Id": "CraftingTable_I_Granite_O_HeatCube",
      "Building": "CraftingTable",
      "Inputs": [
        {
          "material": "Granite",
          "amount": 1000.0,
          "inheritElement": true
        }
      ],
      "Outputs": [
        {
          "material": "Heatcube",
          "amount": 1.0
        }
      ],
      "Time": 5.0,
      "HEP": 0,
      "Description": "A heatcube, a big chunk of mass to hold heat."
    },
    {
      "Id": "CraftingTable_I_Diamond_O_HeatCube",
      "Building": "CraftingTable",
      "Inputs": [
        {
          "material": "Diamond",
          "amount": 1000.0,
          "inheritElement": true
        }
      ],
      "Outputs": [
        {
          "material": "Heatcube",
          "amount": 1.0
        }
      ],
      "Time": 5.0,
      "HEP": 0,
      "Description": "A heatcube, a big chunk of mass to hold heat."
    },
    {
      "Id": "CraftingTable_I_Ceramic_O_HeatCube",
      "Building": "CraftingTable",
      "Inputs": [
        {
          "material": "Ceramic",
          "amount": 1000.0,
          "inheritElement": true
        }
      ],
      "Outputs": [
        {
          "material": "Heatcube",
          "amount": 1.0
        }
      ],
      "Time": 5.0,
      "HEP": 0,
      "Description": "A heatcube, a big chunk of mass to hold heat."
    },
    {
      "Id": "CraftingTable_I_Copper_O_HeatCube",
      "Building": "CraftingTable",
      "Inputs": [
        {
          "material": "Copper",
          "amount": 1000.0,
          "inheritElement": true
        }
      ],
      "Outputs": [
        {
          "material": "Heatcube",
          "amount": 1.0
        }
      ],
      "Time": 5.0,
      "HEP": 0,
      "Description": "A heatcube, a big chunk of mass to hold heat."
    },
    {
      "Id": "CraftingTable_I_Aluminum_O_HeatCube",
      "Building": "CraftingTable",
      "Inputs": [
        {
          "material": "Aluminum",
          "amount": 1000.0,
          "inheritElement": true
        }
      ],
      "Outputs": [
        {
          "material": "Heatcube",
          "amount": 1.0
        }
      ],
      "Time": 5.0,
      "HEP": 0,
      "Description": "A heatcube, a big chunk of mass to hold heat."
    },
    {
      "Id": "CraftingTable_I_Cobalt_O_HeatCube",
      "Building": "CraftingTable",
      "Inputs": [
        {
          "material": "Cobalt",
          "amount": 1000.0,
          "inheritElement": true
        }
      ],
      "Outputs": [
        {
          "material": "Heatcube",
          "amount": 1.0
        }
      ],
      "Time": 5.0,
      "HEP": 0,
      "Description": "A heatcube, a big chunk of mass to hold heat."
    },
    {
      "Id": "CraftingTable_I_Thermium_O_HeatCube",
      "Building": "CraftingTable",
      "Inputs": [
        {
          "material": "Thermium",
          "amount": 1000.0,
          "inheritElement": true
        }
      ],
      "Outputs": [
        {
          "material": "Heatcube",
          "amount": 1.0
        }
      ],
      "Time": 5.0,
      "HEP": 0,
      "Description": "A heatcube, a big chunk of mass to hold heat."
    },

 

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

Please be aware that the content of this thread may be outdated and no longer applicable.

×
  • Create New...