diff --git a/original/data/items/materials/materials/carbon.json b/original/data/items/materials/materials/carbon.json new file mode 100644 index 0000000..f9917cb --- /dev/null +++ b/original/data/items/materials/materials/carbon.json @@ -0,0 +1,16 @@ +{ + "materials": { + "id": "original:carbon", + "texture": "original/assets/textures/materials/material/carbon.png", + "displayName": "items.materials.original.materials.carbon", + "description": "items.materials.original.materials.carbon.desc", + "meta": { + "storeCategory": "original:materials", + "storePrice": 50, + "storeSellValue": 10, + "storeShowWeight": 10, + "storeFeaturedDiscountPercentage": 0, + "storeFeaturedShowWeight": 10 + } + } +} \ No newline at end of file diff --git a/original/data/items/materials/materials/molybdenum_powder.json b/original/data/items/materials/materials/molybdenum_powder.json new file mode 100644 index 0000000..ebe436d --- /dev/null +++ b/original/data/items/materials/materials/molybdenum_powder.json @@ -0,0 +1,16 @@ +{ + "materials": { + "id": "original:molybdenum_powder", + "texture": "original/assets/textures/materials/material/molybdenum_powder.png", + "displayName": "items.materials.original.materials.molybdenum_powder", + "description": "items.materials.original.materials.molybdenum_powder.desc", + "meta": { + "storeCategory": "original:materials", + "storePrice": 50, + "storeSellValue": 10, + "storeShowWeight": 10, + "storeFeaturedDiscountPercentage": 0, + "storeFeaturedShowWeight": 10 + } + } +} \ No newline at end of file diff --git a/original/data/recipes/alloying/alloy_steel.json b/original/data/recipes/alloying/alloy_steel.json new file mode 100644 index 0000000..0082195 --- /dev/null +++ b/original/data/recipes/alloying/alloy_steel.json @@ -0,0 +1,23 @@ +{ + "recipe": { + "inputs": [ + { + "original:ingot_iron": 3 + }, + { + "original:carbon": 1 + } + ], + "output": { + "original:alloy_steel": 1 + }, + "time_seconds": 5, + "requires": { + "smelting": 1 + } + }, + "craft": { + "type": "original:alloying", + "id": "original:alloy_steel" + } +} \ No newline at end of file diff --git a/original/data/recipes/alloying/aluminum_2.json b/original/data/recipes/alloying/aluminum_2.json new file mode 100644 index 0000000..27722ac --- /dev/null +++ b/original/data/recipes/alloying/aluminum_2.json @@ -0,0 +1,23 @@ +{ + "recipe": { + "inputs": [ + { + "original:ingot_aluminum": 2 + }, + { + "original:ingot_copper": 1 + } + ], + "output": { + "original:aluminum_2": 1 + }, + "time_seconds": 5, + "requires": { + "smelting": 0 + } + }, + "craft": { + "type": "original:alloying", + "id": "original:aluminum_2" + } +} \ No newline at end of file diff --git a/original/data/recipes/alloying/aluminum_7.json b/original/data/recipes/alloying/aluminum_7.json new file mode 100644 index 0000000..7f0fa26 --- /dev/null +++ b/original/data/recipes/alloying/aluminum_7.json @@ -0,0 +1,29 @@ +{ + "recipe": { + "inputs": [ + { + "original:ingot_aluminum": 2 + }, + { + "original:ingot_zinc": 1 + }, + { + "original:ingot_magnesium": 1 + }, + { + "original:ingot_copper": 1 + } + ], + "output": { + "original:aluminum_7": 1 + }, + "time_seconds": 5, + "requires": { + "smelting": 3 + } + }, + "craft": { + "type": "original:alloying", + "id": "original:aluminum_7" + } +} \ No newline at end of file diff --git a/original/data/recipes/alloying/aluminum_lithium.json b/original/data/recipes/alloying/aluminum_lithium.json new file mode 100644 index 0000000..69a082e --- /dev/null +++ b/original/data/recipes/alloying/aluminum_lithium.json @@ -0,0 +1,29 @@ +{ + "recipe": { + "inputs": [ + { + "original:ingot_aluminum": 2 + }, + { + "original:ingot_magnesium": 1 + }, + { + "original:ingot_copper": 1 + }, + { + "original:ingot_lithium": 1 + } + ], + "output": { + "original:aluminum_lithium": 1 + }, + "time_seconds": 5, + "requires": { + "smelting": 3 + } + }, + "craft": { + "type": "original:alloying", + "id": "original:aluminum_lithium" + } +} \ No newline at end of file diff --git a/original/data/recipes/alloying/inconel.json b/original/data/recipes/alloying/inconel.json new file mode 100644 index 0000000..8234d1b --- /dev/null +++ b/original/data/recipes/alloying/inconel.json @@ -0,0 +1,50 @@ +{ + "recipe": { + "inputs": [ + { + "original:ingot_nickel": 2 + }, + { + "original:ingot_chromium": 1 + }, + { + "original:ingot_iron": 1 + }, + { + "original:ore_niobium": 1 + }, + { + "original:molybdenum_powder": 1 + }, + { + "original:ore_titanium": 1 + }, + { + "original:ingot_aluminum": 1 + }, + { + "original:ingot_cobalt": 1 + }, + { + "original:carbon": 1 + }, + { + "original:ingot_manganese": 1 + }, + { + "original:ore_silicon": 1 + } + ], + "output": { + "original:inconel": 1 + }, + "time_seconds": 5, + "requires": { + "smelting": 3 + } + }, + "craft": { + "type": "original:alloying", + "id": "original:inconel" + } +} \ No newline at end of file diff --git a/original/data/recipes/alloying/stain_steel_2.json b/original/data/recipes/alloying/stain_steel_2.json new file mode 100644 index 0000000..2f247d6 --- /dev/null +++ b/original/data/recipes/alloying/stain_steel_2.json @@ -0,0 +1,29 @@ +{ + "recipe": { + "inputs": [ + { + "original:alloy_steel": 2 + }, + { + "original:ingot_chromium": 1 + }, + { + "original:ingot_nickel": 1 + }, + { + "original:carbon": 1 + } + ], + "output": { + "original:stain_steel_2": 1 + }, + "time_seconds": 5, + "requires": { + "smelting": 3 + } + }, + "craft": { + "type": "original:alloying", + "id": "original:stain_steel_2" + } +} \ No newline at end of file diff --git a/original/data/recipes/alloying/stain_steel_3.json b/original/data/recipes/alloying/stain_steel_3.json new file mode 100644 index 0000000..22c7562 --- /dev/null +++ b/original/data/recipes/alloying/stain_steel_3.json @@ -0,0 +1,29 @@ +{ + "recipe": { + "inputs": [ + { + "original:alloy_steel": 2 + }, + { + "original:ingot_chromium": 1 + }, + { + "original:ingot_nickel": 1 + }, + { + "original:carbon": 1 + } + ], + "output": { + "original:stain_steel_3": 1 + }, + "time_seconds": 5, + "requires": { + "smelting": 3 + } + }, + "craft": { + "type": "original:alloying", + "id": "original:stain_steel_3" + } +} \ No newline at end of file diff --git a/original/data/recipes/alloying/stellite.json b/original/data/recipes/alloying/stellite.json new file mode 100644 index 0000000..f998067 --- /dev/null +++ b/original/data/recipes/alloying/stellite.json @@ -0,0 +1,29 @@ +{ + "recipe": { + "inputs": [ + { + "original:ingot_cobalt": 2 + }, + { + "original:ingot_chromium": 1 + }, + { + "original:ingot_tungsten": 1 + }, + { + "original:carbon": 1 + } + ], + "output": { + "original:stellite": 1 + }, + "time_seconds": 5, + "requires": { + "smelting": 3 + } + }, + "craft": { + "type": "original:alloying", + "id": "original:stellite" + } +} \ No newline at end of file diff --git a/original/data/recipes/alloying/titanium_tanb.json b/original/data/recipes/alloying/titanium_tanb.json new file mode 100644 index 0000000..67c1630 --- /dev/null +++ b/original/data/recipes/alloying/titanium_tanb.json @@ -0,0 +1,26 @@ +{ + "recipe": { + "inputs": [ + { + "original:ingot_titanium": 2 + }, + { + "original:ingot_aluminum": 1 + }, + { + "original:ingot_vanadium": 1 + } + ], + "output": { + "original:titanium_tanb": 1 + }, + "time_seconds": 5, + "requires": { + "smelting": 3 + } + }, + "craft": { + "type": "original:alloying", + "id": "original:titanium_tanb" + } +} \ No newline at end of file diff --git a/original/data/recipes/alloying/titanium_tav.json b/original/data/recipes/alloying/titanium_tav.json new file mode 100644 index 0000000..a48c695 --- /dev/null +++ b/original/data/recipes/alloying/titanium_tav.json @@ -0,0 +1,26 @@ +{ + "recipe": { + "inputs": [ + { + "original:ingot_titanium": 2 + }, + { + "original:ingot_aluminum": 1 + }, + { + "original:ingot_vanadium": 1 + } + ], + "output": { + "original:titanium_tav": 1 + }, + "time_seconds": 5, + "requires": { + "smelting": 3 + } + }, + "craft": { + "type": "original:alloying", + "id": "original:titanium_tav" + } +} \ No newline at end of file diff --git a/original/data/recipes/processing/carbon.json b/original/data/recipes/processing/carbon.json new file mode 100644 index 0000000..ef9972b --- /dev/null +++ b/original/data/recipes/processing/carbon.json @@ -0,0 +1,20 @@ +{ + "recipe": { + "inputs": [ + { + "original:ore_coal": 2 + } + ], + "output": { + "original:carbon": 1 + }, + "time_seconds": 5, + "requires": { + "manufacturing": 0 + } + }, + "craft": { + "type": "processing", + "id": "original:carbon" + } +} \ No newline at end of file