From 1acb54a06118dbb8abc415bfdc429505d767d450 Mon Sep 17 00:00:00 2001 From: Merith Date: Sat, 29 Mar 2025 18:06:42 -0700 Subject: [PATCH] begin recipie patches: Replace all Elevator Parts with Reinforced Iron plates --- .gitignore | 1 + .../Buildables/Recipe_DS_AtomicCrafter.json | 31 +++++++++++++ .../Recipe_DS_CentralStorageAdapter.json | 31 +++++++++++++ .../Buildables/Recipe_DS_CraftingAdapter.json | 30 ++++++++++++ .../Buildables/Recipe_DS_CraftingServer.json | 31 +++++++++++++ .../Recipe_DS_CraftingTerminal.json | 31 +++++++++++++ .../Recipe_DS_DoubleNetworkPlug.json | 27 +++++++++++ .../Buildables/Recipe_DS_DriveTerminal.json | 31 +++++++++++++ .../Recipe_DS_FactoryConnectionAdapter.json | 31 +++++++++++++ .../Recipe_DS_FluidConnectionAdapter.json | 31 +++++++++++++ .../Buildables/Recipe_DS_NetworkCable.json | 19 ++++++++ .../Recipe_DS_NetworkDistributor.json | 31 +++++++++++++ .../Buildables/Recipe_DS_NetworkPlug.json | 27 +++++++++++ .../Buildables/Recipe_DS_NetworkPole.json | 27 +++++++++++ .../Recipe_DS_NetworkPowerAdapater.json | 31 +++++++++++++ .../Buildables/Recipe_DS_ResourceAdapter.json | 27 +++++++++++ .../Buildables/Recipe_DS_ServerRack.json | 31 +++++++++++++ .../Buildables/Recipe_DS_Server_1U.json | 31 +++++++++++++ .../Buildables/Recipe_DS_Server_1UF.json | 31 +++++++++++++ .../Buildables/Recipe_DS_Server_2U.json | 31 +++++++++++++ .../Buildables/Recipe_DS_Server_2UF.json | 31 +++++++++++++ .../Buildables/Recipe_DS_Server_2UG.json | 31 +++++++++++++ .../Recipe_DS_StorageConnectionAdapter.json | 27 +++++++++++ .../Buildables/Recipe_DS_StorageTerminal.json | 31 +++++++++++++ .../Recipe_DS_TrainCargoAdapter.json | 27 +++++++++++ .../Recipe_DS_UniversalAdapter.json | 31 +++++++++++++ .../Buildables/Recipe_DS_UplinkSatellite.json | 31 +++++++++++++ .../Recipe_DS_WirelessAccessPoint.json | 27 +++++++++++ .../Buildables/Recipe_DS_WirelessTower.json | 31 +++++++++++++ .../Recipe_DS_Drive_10K_Fluid.json | Bin 0 -> 1678 bytes .../Recipe_DS_Drive_120K_Fluid.json | Bin 0 -> 1988 bytes .../Recipe_DS_Drive_120K_Gas.json | Bin 0 -> 1964 bytes .../RecipePatches/Recipe_DS_Drive_16K.json | 39 ++++++++++++++++ .../RecipePatches/Recipe_DS_Drive_1K.json | 31 +++++++++++++ .../Recipe_DS_Drive_20K_Fluid.json | Bin 0 -> 1720 bytes .../Recipe_DS_Drive_240K_Fluid.json | Bin 0 -> 2120 bytes .../Recipe_DS_Drive_240K_Gas.json | Bin 0 -> 2096 bytes .../RecipePatches/Recipe_DS_Drive_256.json | 31 +++++++++++++ .../RecipePatches/Recipe_DS_Drive_2K.json | 31 +++++++++++++ .../RecipePatches/Recipe_DS_Drive_32K.json | 39 ++++++++++++++++ .../Recipe_DS_Drive_40K_Fluid.json | Bin 0 -> 1718 bytes .../Recipe_DS_Drive_40K_Gas.json | Bin 0 -> 1698 bytes .../RecipePatches/Recipe_DS_Drive_4K.json | 31 +++++++++++++ .../RecipePatches/Recipe_DS_Drive_512.json | 31 +++++++++++++ .../Recipe_DS_Drive_60K_Fluid.json | Bin 0 -> 1718 bytes .../Recipe_DS_Drive_60K_Gas.json | Bin 0 -> 1694 bytes .../RecipePatches/Recipe_DS_Drive_64K.json | 43 ++++++++++++++++++ .../RecipePatches/Recipe_DS_Drive_8K.json | 35 ++++++++++++++ .../RecipePatches/Recipe_DS_Multitool.json | 35 ++++++++++++++ .../Recipe_DS_NetworkCable_Item.json | 31 +++++++++++++ .../Recipe_DS_WirelessExtender.json | 35 ++++++++++++++ .../Recipe_DS_WirelessTablet.json | 35 ++++++++++++++ DigitalStorage Recipie Tweaks.uplugin | 30 ++++++++++++ 53 files changed, 1305 insertions(+) create mode 100644 .gitignore create mode 100644 ContentLib/RecipePatches/Buildables/Recipe_DS_AtomicCrafter.json create mode 100644 ContentLib/RecipePatches/Buildables/Recipe_DS_CentralStorageAdapter.json create mode 100644 ContentLib/RecipePatches/Buildables/Recipe_DS_CraftingAdapter.json create mode 100644 ContentLib/RecipePatches/Buildables/Recipe_DS_CraftingServer.json create mode 100644 ContentLib/RecipePatches/Buildables/Recipe_DS_CraftingTerminal.json create mode 100644 ContentLib/RecipePatches/Buildables/Recipe_DS_DoubleNetworkPlug.json create mode 100644 ContentLib/RecipePatches/Buildables/Recipe_DS_DriveTerminal.json create mode 100644 ContentLib/RecipePatches/Buildables/Recipe_DS_FactoryConnectionAdapter.json create mode 100644 ContentLib/RecipePatches/Buildables/Recipe_DS_FluidConnectionAdapter.json create mode 100644 ContentLib/RecipePatches/Buildables/Recipe_DS_NetworkCable.json create mode 100644 ContentLib/RecipePatches/Buildables/Recipe_DS_NetworkDistributor.json create mode 100644 ContentLib/RecipePatches/Buildables/Recipe_DS_NetworkPlug.json create mode 100644 ContentLib/RecipePatches/Buildables/Recipe_DS_NetworkPole.json create mode 100644 ContentLib/RecipePatches/Buildables/Recipe_DS_NetworkPowerAdapater.json create mode 100644 ContentLib/RecipePatches/Buildables/Recipe_DS_ResourceAdapter.json create mode 100644 ContentLib/RecipePatches/Buildables/Recipe_DS_ServerRack.json create mode 100644 ContentLib/RecipePatches/Buildables/Recipe_DS_Server_1U.json create mode 100644 ContentLib/RecipePatches/Buildables/Recipe_DS_Server_1UF.json create mode 100644 ContentLib/RecipePatches/Buildables/Recipe_DS_Server_2U.json create mode 100644 ContentLib/RecipePatches/Buildables/Recipe_DS_Server_2UF.json create mode 100644 ContentLib/RecipePatches/Buildables/Recipe_DS_Server_2UG.json create mode 100644 ContentLib/RecipePatches/Buildables/Recipe_DS_StorageConnectionAdapter.json create mode 100644 ContentLib/RecipePatches/Buildables/Recipe_DS_StorageTerminal.json create mode 100644 ContentLib/RecipePatches/Buildables/Recipe_DS_TrainCargoAdapter.json create mode 100644 ContentLib/RecipePatches/Buildables/Recipe_DS_UniversalAdapter.json create mode 100644 ContentLib/RecipePatches/Buildables/Recipe_DS_UplinkSatellite.json create mode 100644 ContentLib/RecipePatches/Buildables/Recipe_DS_WirelessAccessPoint.json create mode 100644 ContentLib/RecipePatches/Buildables/Recipe_DS_WirelessTower.json create mode 100644 ContentLib/RecipePatches/Recipe_DS_Drive_10K_Fluid.json create mode 100644 ContentLib/RecipePatches/Recipe_DS_Drive_120K_Fluid.json create mode 100644 ContentLib/RecipePatches/Recipe_DS_Drive_120K_Gas.json create mode 100644 ContentLib/RecipePatches/Recipe_DS_Drive_16K.json create mode 100644 ContentLib/RecipePatches/Recipe_DS_Drive_1K.json create mode 100644 ContentLib/RecipePatches/Recipe_DS_Drive_20K_Fluid.json create mode 100644 ContentLib/RecipePatches/Recipe_DS_Drive_240K_Fluid.json create mode 100644 ContentLib/RecipePatches/Recipe_DS_Drive_240K_Gas.json create mode 100644 ContentLib/RecipePatches/Recipe_DS_Drive_256.json create mode 100644 ContentLib/RecipePatches/Recipe_DS_Drive_2K.json create mode 100644 ContentLib/RecipePatches/Recipe_DS_Drive_32K.json create mode 100644 ContentLib/RecipePatches/Recipe_DS_Drive_40K_Fluid.json create mode 100644 ContentLib/RecipePatches/Recipe_DS_Drive_40K_Gas.json create mode 100644 ContentLib/RecipePatches/Recipe_DS_Drive_4K.json create mode 100644 ContentLib/RecipePatches/Recipe_DS_Drive_512.json create mode 100644 ContentLib/RecipePatches/Recipe_DS_Drive_60K_Fluid.json create mode 100644 ContentLib/RecipePatches/Recipe_DS_Drive_60K_Gas.json create mode 100644 ContentLib/RecipePatches/Recipe_DS_Drive_64K.json create mode 100644 ContentLib/RecipePatches/Recipe_DS_Drive_8K.json create mode 100644 ContentLib/RecipePatches/Recipe_DS_Multitool.json create mode 100644 ContentLib/RecipePatches/Recipe_DS_NetworkCable_Item.json create mode 100644 ContentLib/RecipePatches/Recipe_DS_WirelessExtender.json create mode 100644 ContentLib/RecipePatches/Recipe_DS_WirelessTablet.json create mode 100644 DigitalStorage Recipie Tweaks.uplugin diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fe01ce6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +ContentLib/Recipes \ No newline at end of file diff --git a/ContentLib/RecipePatches/Buildables/Recipe_DS_AtomicCrafter.json b/ContentLib/RecipePatches/Buildables/Recipe_DS_AtomicCrafter.json new file mode 100644 index 0000000..26efd23 --- /dev/null +++ b/ContentLib/RecipePatches/Buildables/Recipe_DS_AtomicCrafter.json @@ -0,0 +1,31 @@ +//DigitalStorage/Buildables/AtomicCrafter/Recipe_DS_AtomicCrafter.Recipe_DS_AtomicCrafter_C +{ +"$schema": "https://raw.githubusercontent.com/budak7273/ContentLib_Documentation/refs/heads/main/JsonSchemas/CL_Recipe.json", +"Name": "Atomic Crafter", +"Ingredients": [ +{ + "Item": "Desc_TimeCrystal", + "Amount": 15 + }, +{ + "Item": "Desc_SAMFluctuator", + "Amount": 50 + }, +{ + "Item": "Desc_DarkMatter", + "Amount": 10 + }, +{ + "Item": "Desc_FicsiteMesh", + "Amount": 50 + } +], +"Products": [ +{ + "Item": "Desc_DS_AtomicCrafter", + "Amount": 1 + }], +"UnlockedBy": ["Schem_DS_T9_1_C"], +"ClearIngredients": true, +"ClearProducts": true +} \ No newline at end of file diff --git a/ContentLib/RecipePatches/Buildables/Recipe_DS_CentralStorageAdapter.json b/ContentLib/RecipePatches/Buildables/Recipe_DS_CentralStorageAdapter.json new file mode 100644 index 0000000..824cc88 --- /dev/null +++ b/ContentLib/RecipePatches/Buildables/Recipe_DS_CentralStorageAdapter.json @@ -0,0 +1,31 @@ +//DigitalStorage/Buildables/CentralStorageAdapter/Recipe_DS_CentralStorageAdapter.Recipe_DS_CentralStorageAdapter_C +{ +"$schema": "https://raw.githubusercontent.com/budak7273/ContentLib_Documentation/refs/heads/main/JsonSchemas/CL_Recipe.json", +"Name": "Depot Uploader Adapter", +"Ingredients": [ +{ + "Item": "Desc_SteelPlate", + "Amount": 5 + }, +{ + "Item": "Desc_Cable", + "Amount": 10 + }, +{ + "Item": "Desc_SAMFluctuator", + "Amount": 10 + }, +{ + "Item": "Desc_CopperSheet", + "Amount": 10 + } +], +"Products": [ +{ + "Item": "Desc_DS_CentralStorageAdapter", + "Amount": 1 + }], +"UnlockedBy": ["Schematic_DS_Mam_Adapters_Depot_C"], +"ClearIngredients": true, +"ClearProducts": true +} \ No newline at end of file diff --git a/ContentLib/RecipePatches/Buildables/Recipe_DS_CraftingAdapter.json b/ContentLib/RecipePatches/Buildables/Recipe_DS_CraftingAdapter.json new file mode 100644 index 0000000..42e80a8 --- /dev/null +++ b/ContentLib/RecipePatches/Buildables/Recipe_DS_CraftingAdapter.json @@ -0,0 +1,30 @@ +//DigitalStorage/Buildables/CraftingAdapter/Recipe_DS_CraftingAdapter.Recipe_DS_CraftingAdapter_C +{ + "$schema": "https://raw.githubusercontent.com/budak7273/ContentLib_Documentation/refs/heads/main/JsonSchemas/CL_Recipe.json", + "Name": "Crafting Connection Adapter", + "Ingredients": [ + { + "Item": "Desc_SteelPlateReinforced", + "Amount": 10 + }, + { + "Item": "Desc_ModularFrameHeavy", + "Amount": 10 + }, + { + "Item": "Desc_IronPlateReinforced", + "Amount": 15 + } + ], + "Products": [ + { + "Item": "Desc_DS_CraftingAdapter", + "Amount": 1 + } + ], + "UnlockedBy": [ + "Schematic_DS_Mam_Adapters_Crafting_C" + ], + "ClearIngredients": true, + "ClearProducts": true +} \ No newline at end of file diff --git a/ContentLib/RecipePatches/Buildables/Recipe_DS_CraftingServer.json b/ContentLib/RecipePatches/Buildables/Recipe_DS_CraftingServer.json new file mode 100644 index 0000000..b4eb220 --- /dev/null +++ b/ContentLib/RecipePatches/Buildables/Recipe_DS_CraftingServer.json @@ -0,0 +1,31 @@ +//DigitalStorage/Buildables/CraftingServer/Recipe_DS_CraftingServer.Recipe_DS_CraftingServer_C +{ +"$schema": "https://raw.githubusercontent.com/budak7273/ContentLib_Documentation/refs/heads/main/JsonSchemas/CL_Recipe.json", +"Name": "Crafting Server", +"Ingredients": [ +{ + "Item": "Desc_ModularFrameHeavy", + "Amount": 15 + }, +{ + "Item": "Desc_CircuitBoardHighSpeed", + "Amount": 30 + }, +{ + "Item": "Desc_IronPlateReinforced", + "Amount": 15 + }, +{ + "Item": "Desc_Computer", + "Amount": 30 + } +], +"Products": [ +{ + "Item": "Desc_DS_CraftingServer", + "Amount": 1 + }], +"UnlockedBy": ["Schem_DS_T6_1_C"], +"ClearIngredients": true, +"ClearProducts": true +} \ No newline at end of file diff --git a/ContentLib/RecipePatches/Buildables/Recipe_DS_CraftingTerminal.json b/ContentLib/RecipePatches/Buildables/Recipe_DS_CraftingTerminal.json new file mode 100644 index 0000000..5b13294 --- /dev/null +++ b/ContentLib/RecipePatches/Buildables/Recipe_DS_CraftingTerminal.json @@ -0,0 +1,31 @@ +//DigitalStorage/Buildables/Terminals/Crafting/Recipe_DS_CraftingTerminal.Recipe_DS_CraftingTerminal_C +{ +"$schema": "https://raw.githubusercontent.com/budak7273/ContentLib_Documentation/refs/heads/main/JsonSchemas/CL_Recipe.json", +"Name": "Crafting Terminal", +"Ingredients": [ +{ + "Item": "Desc_DS_NetworkCable_Item", + "Amount": 150 + }, +{ + "Item": "Desc_SteelPlateReinforced", + "Amount": 40 + }, +{ + "Item": "Desc_IronPlateReinforced", + "Amount": 30 + }, +{ + "Item": "Desc_ModularFrameHeavy", + "Amount": 10 + } +], +"Products": [ +{ + "Item": "Desc_DS_CraftingTerminal", + "Amount": 1 + }], +"UnlockedBy": ["Schem_DS_T6_1_C"], +"ClearIngredients": true, +"ClearProducts": true +} \ No newline at end of file diff --git a/ContentLib/RecipePatches/Buildables/Recipe_DS_DoubleNetworkPlug.json b/ContentLib/RecipePatches/Buildables/Recipe_DS_DoubleNetworkPlug.json new file mode 100644 index 0000000..c3578e5 --- /dev/null +++ b/ContentLib/RecipePatches/Buildables/Recipe_DS_DoubleNetworkPlug.json @@ -0,0 +1,27 @@ +//DigitalStorage/Buildables/NetworkPlug/Recipe_DS_DoubleNetworkPlug.Recipe_DS_DoubleNetworkPlug_C +{ +"$schema": "https://raw.githubusercontent.com/budak7273/ContentLib_Documentation/refs/heads/main/JsonSchemas/CL_Recipe.json", +"Name": "Double Network Wall Outlet", +"Ingredients": [ +{ + "Item": "Desc_IronPlateReinforced", + "Amount": 5 + }, +{ + "Item": "Desc_IronScrew", + "Amount": 10 + }, +{ + "Item": "Desc_IronPlateReinforced", + "Amount": 1 + } +], +"Products": [ +{ + "Item": "Desc_DS_DoubleNetworkPlug", + "Amount": 1 + }], +"UnlockedBy": ["Schem_DS_T5_1_C"], +"ClearIngredients": true, +"ClearProducts": true +} \ No newline at end of file diff --git a/ContentLib/RecipePatches/Buildables/Recipe_DS_DriveTerminal.json b/ContentLib/RecipePatches/Buildables/Recipe_DS_DriveTerminal.json new file mode 100644 index 0000000..1d316a5 --- /dev/null +++ b/ContentLib/RecipePatches/Buildables/Recipe_DS_DriveTerminal.json @@ -0,0 +1,31 @@ +//DigitalStorage/Buildables/Terminals/Drive/Recipe_DS_DriveTerminal.Recipe_DS_DriveTerminal_C +{ +"$schema": "https://raw.githubusercontent.com/budak7273/ContentLib_Documentation/refs/heads/main/JsonSchemas/CL_Recipe.json", +"Name": "Drive Terminal", +"Ingredients": [ +{ + "Item": "Desc_DS_NetworkCable_Item", + "Amount": 20 + }, +{ + "Item": "Desc_IronPlateReinforced", + "Amount": 20 + }, +{ + "Item": "Desc_IronScrew", + "Amount": 10 + }, +{ + "Item": "Desc_ModularFrame", + "Amount": 8 + } +], +"Products": [ +{ + "Item": "Desc_DS_DriveTerminal", + "Amount": 1 + }], +"UnlockedBy": ["Schem_DS_T3_1_C"], +"ClearIngredients": true, +"ClearProducts": true +} \ No newline at end of file diff --git a/ContentLib/RecipePatches/Buildables/Recipe_DS_FactoryConnectionAdapter.json b/ContentLib/RecipePatches/Buildables/Recipe_DS_FactoryConnectionAdapter.json new file mode 100644 index 0000000..a22e350 --- /dev/null +++ b/ContentLib/RecipePatches/Buildables/Recipe_DS_FactoryConnectionAdapter.json @@ -0,0 +1,31 @@ +//DigitalStorage/Buildables/FactoryModule/Recipe_DS_FactoryConnectionAdapter.Recipe_DS_FactoryConnectionAdapter_C +{ +"$schema": "https://raw.githubusercontent.com/budak7273/ContentLib_Documentation/refs/heads/main/JsonSchemas/CL_Recipe.json", +"Name": "Factory Connection Adapter", +"Ingredients": [ +{ + "Item": "Desc_SteelPlate", + "Amount": 5 + }, +{ + "Item": "Desc_Cable", + "Amount": 10 + }, +{ + "Item": "Desc_IronScrew", + "Amount": 10 + }, +{ + "Item": "Desc_CopperSheet", + "Amount": 10 + } +], +"Products": [ +{ + "Item": "Desc_DS_FactoryConnectionAdapter", + "Amount": 1 + }], +"UnlockedBy": ["Schematic_DS_Mam_Adapters_Factory_C"], +"ClearIngredients": true, +"ClearProducts": true +} \ No newline at end of file diff --git a/ContentLib/RecipePatches/Buildables/Recipe_DS_FluidConnectionAdapter.json b/ContentLib/RecipePatches/Buildables/Recipe_DS_FluidConnectionAdapter.json new file mode 100644 index 0000000..b16f231 --- /dev/null +++ b/ContentLib/RecipePatches/Buildables/Recipe_DS_FluidConnectionAdapter.json @@ -0,0 +1,31 @@ +//DigitalStorage/Buildables/ContainerModules/Normal/Recipe_DS_FluidConnectionAdapter.Recipe_DS_FluidConnectionAdapter_C +{ +"$schema": "https://raw.githubusercontent.com/budak7273/ContentLib_Documentation/refs/heads/main/JsonSchemas/CL_Recipe.json", +"Name": "Pipe Connection Adapter", +"Ingredients": [ +{ + "Item": "Desc_SteelPlate", + "Amount": 10 + }, +{ + "Item": "Desc_Wire", + "Amount": 50 + }, +{ + "Item": "Desc_CopperSheet", + "Amount": 30 + }, +{ + "Item": "Desc_DS_NetworkCable_Item", + "Amount": 10 + } +], +"Products": [ +{ + "Item": "Desc_DS_FluidConnectionAdapter", + "Amount": 1 + }], +"UnlockedBy": ["Schematic_DS_Mam_Adapters_Pipe_C"], +"ClearIngredients": true, +"ClearProducts": true +} \ No newline at end of file diff --git a/ContentLib/RecipePatches/Buildables/Recipe_DS_NetworkCable.json b/ContentLib/RecipePatches/Buildables/Recipe_DS_NetworkCable.json new file mode 100644 index 0000000..e1ab9c5 --- /dev/null +++ b/ContentLib/RecipePatches/Buildables/Recipe_DS_NetworkCable.json @@ -0,0 +1,19 @@ +//DigitalStorage/Buildables/NetworkCable/Recipe_DS_NetworkCable.Recipe_DS_NetworkCable_C +{ +"$schema": "https://raw.githubusercontent.com/budak7273/ContentLib_Documentation/refs/heads/main/JsonSchemas/CL_Recipe.json", +"Name": "Network Cable", +"Ingredients": [ +{ + "Item": "Desc_DS_NetworkCable_Item", + "Amount": 1 + } +], +"Products": [ +{ + "Item": "Desc_DS_NetworkCable", + "Amount": 1 + }], +"UnlockedBy": ["Schem_DS_T3_1_C"], +"ClearIngredients": true, +"ClearProducts": true +} \ No newline at end of file diff --git a/ContentLib/RecipePatches/Buildables/Recipe_DS_NetworkDistributor.json b/ContentLib/RecipePatches/Buildables/Recipe_DS_NetworkDistributor.json new file mode 100644 index 0000000..6a20f4a --- /dev/null +++ b/ContentLib/RecipePatches/Buildables/Recipe_DS_NetworkDistributor.json @@ -0,0 +1,31 @@ +//DigitalStorage/Buildables/NetworkDistributor/Recipe_DS_NetworkDistributor.Recipe_DS_NetworkDistributor_C +{ +"$schema": "https://raw.githubusercontent.com/budak7273/ContentLib_Documentation/refs/heads/main/JsonSchemas/CL_Recipe.json", +"Name": "Network Distributor", +"Ingredients": [ +{ + "Item": "Desc_SteelPlate", + "Amount": 25 + }, +{ + "Item": "Desc_ModularFrame", + "Amount": 20 + }, +{ + "Item": "Desc_SpaceElevatorPart", + "Amount": 10 + }, +{ + "Item": "Desc_Cable", + "Amount": 50 + } +], +"Products": [ +{ + "Item": "Desc_DS_NetworkDistributor", + "Amount": 1 + }], +"UnlockedBy": ["Schem_DS_T3_1_C"], +"ClearIngredients": true, +"ClearProducts": true +} \ No newline at end of file diff --git a/ContentLib/RecipePatches/Buildables/Recipe_DS_NetworkPlug.json b/ContentLib/RecipePatches/Buildables/Recipe_DS_NetworkPlug.json new file mode 100644 index 0000000..849be2f --- /dev/null +++ b/ContentLib/RecipePatches/Buildables/Recipe_DS_NetworkPlug.json @@ -0,0 +1,27 @@ +//DigitalStorage/Buildables/NetworkPlug/Recipe_DS_NetworkPlug.Recipe_DS_NetworkPlug_C +{ +"$schema": "https://raw.githubusercontent.com/budak7273/ContentLib_Documentation/refs/heads/main/JsonSchemas/CL_Recipe.json", +"Name": "Network Wall Outlet", +"Ingredients": [ +{ + "Item": "Desc_IronPlateReinforced", + "Amount": 5 + }, +{ + "Item": "Desc_IronScrew", + "Amount": 10 + }, +{ + "Item": "Desc_SpaceElevatorPart", + "Amount": 1 + } +], +"Products": [ +{ + "Item": "Desc_DS_NetworkPlug", + "Amount": 1 + }], +"UnlockedBy": ["Schem_DS_T5_1_C"], +"ClearIngredients": true, +"ClearProducts": true +} \ No newline at end of file diff --git a/ContentLib/RecipePatches/Buildables/Recipe_DS_NetworkPole.json b/ContentLib/RecipePatches/Buildables/Recipe_DS_NetworkPole.json new file mode 100644 index 0000000..3869dd2 --- /dev/null +++ b/ContentLib/RecipePatches/Buildables/Recipe_DS_NetworkPole.json @@ -0,0 +1,27 @@ +//DigitalStorage/Buildables/NetworkPole/Recipe_DS_NetworkPole.Recipe_DS_NetworkPole_C +{ +"$schema": "https://raw.githubusercontent.com/budak7273/ContentLib_Documentation/refs/heads/main/JsonSchemas/CL_Recipe.json", +"Name": "Network Pole", +"Ingredients": [ +{ + "Item": "Desc_IronPlateReinforced", + "Amount": 5 + }, +{ + "Item": "Desc_ModularFrame", + "Amount": 1 + }, +{ + "Item": "Desc_SpaceElevatorPart", + "Amount": 1 + } +], +"Products": [ +{ + "Item": "Desc_DS_NetworkPole", + "Amount": 1 + }], +"UnlockedBy": ["Schem_DS_T3_1_C"], +"ClearIngredients": true, +"ClearProducts": true +} \ No newline at end of file diff --git a/ContentLib/RecipePatches/Buildables/Recipe_DS_NetworkPowerAdapater.json b/ContentLib/RecipePatches/Buildables/Recipe_DS_NetworkPowerAdapater.json new file mode 100644 index 0000000..5b50de0 --- /dev/null +++ b/ContentLib/RecipePatches/Buildables/Recipe_DS_NetworkPowerAdapater.json @@ -0,0 +1,31 @@ +//DigitalStorage/Buildables/NetworkPowerAdapter/Recipe_DS_NetworkPowerAdapater.Recipe_DS_NetworkPowerAdapater_C +{ +"$schema": "https://raw.githubusercontent.com/budak7273/ContentLib_Documentation/refs/heads/main/JsonSchemas/CL_Recipe.json", +"Name": "Network Power Adapter", +"Ingredients": [ +{ + "Item": "Desc_Rotor", + "Amount": 20 + }, +{ + "Item": "Desc_Cable", + "Amount": 80 + }, +{ + "Item": "Desc_DS_NetworkCable_Item", + "Amount": 30 + }, +{ + "Item": "Desc_ModularFrame", + "Amount": 6 + } +], +"Products": [ +{ + "Item": "Desc_DS_NetworkPowerAdapter", + "Amount": 1 + }], +"UnlockedBy": ["Schem_DS_T3_1_C"], +"ClearIngredients": true, +"ClearProducts": true +} \ No newline at end of file diff --git a/ContentLib/RecipePatches/Buildables/Recipe_DS_ResourceAdapter.json b/ContentLib/RecipePatches/Buildables/Recipe_DS_ResourceAdapter.json new file mode 100644 index 0000000..0d88847 --- /dev/null +++ b/ContentLib/RecipePatches/Buildables/Recipe_DS_ResourceAdapter.json @@ -0,0 +1,27 @@ +//DigitalStorage/Buildables/ResourceAdapter/Recipe_DS_ResourceAdapter.Recipe_DS_ResourceAdapter_C +{ +"$schema": "https://raw.githubusercontent.com/budak7273/ContentLib_Documentation/refs/heads/main/JsonSchemas/CL_Recipe.json", +"Name": "Resource Adapter", +"Ingredients": [ +{ + "Item": "Desc_IronPlateReinforced", + "Amount": 15 + }, +{ + "Item": "Desc_ModularFrame", + "Amount": 20 + }, +{ + "Item": "Desc_DS_NetworkCable_Item", + "Amount": 5 + } +], +"Products": [ +{ + "Item": "Desc_DS_ResourceAdapter", + "Amount": 1 + }], +"UnlockedBy": ["Schematic_DS_Mam_Adapters_Resource_C"], +"ClearIngredients": true, +"ClearProducts": true +} \ No newline at end of file diff --git a/ContentLib/RecipePatches/Buildables/Recipe_DS_ServerRack.json b/ContentLib/RecipePatches/Buildables/Recipe_DS_ServerRack.json new file mode 100644 index 0000000..2c85ea6 --- /dev/null +++ b/ContentLib/RecipePatches/Buildables/Recipe_DS_ServerRack.json @@ -0,0 +1,31 @@ +//DigitalStorage/Buildables/ServerRack/Recipe_DS_ServerRack.Recipe_DS_ServerRack_C +{ +"$schema": "https://raw.githubusercontent.com/budak7273/ContentLib_Documentation/refs/heads/main/JsonSchemas/CL_Recipe.json", +"Name": "Server Rack", +"Ingredients": [ +{ + "Item": "Desc_Cable", + "Amount": 50 + }, +{ + "Item": "Desc_IronPlateReinforced", + "Amount": 40 + }, +{ + "Item": "Desc_IronScrew", + "Amount": 100 + }, +{ + "Item": "Desc_ModularFrame", + "Amount": 10 + } +], +"Products": [ +{ + "Item": "Desc_DS_ServerRack", + "Amount": 1 + }], +"UnlockedBy": ["Schem_DS_T3_1_C"], +"ClearIngredients": true, +"ClearProducts": true +} \ No newline at end of file diff --git a/ContentLib/RecipePatches/Buildables/Recipe_DS_Server_1U.json b/ContentLib/RecipePatches/Buildables/Recipe_DS_Server_1U.json new file mode 100644 index 0000000..4cebd7c --- /dev/null +++ b/ContentLib/RecipePatches/Buildables/Recipe_DS_Server_1U.json @@ -0,0 +1,31 @@ +//DigitalStorage/Buildables/Server/1U/Recipe_DS_Server_1U.Recipe_DS_Server_1U_C +{ +"$schema": "https://raw.githubusercontent.com/budak7273/ContentLib_Documentation/refs/heads/main/JsonSchemas/CL_Recipe.json", +"Name": "Server 1U (Item)", +"Ingredients": [ +{ + "Item": "Desc_IronPlateReinforced", + "Amount": 20 + }, +{ + "Item": "Desc_DS_NetworkCable_Item", + "Amount": 20 + }, +{ + "Item": "Desc_IronScrew", + "Amount": 100 + }, +{ + "Item": "Desc_ModularFrame", + "Amount": 10 + } +], +"Products": [ +{ + "Item": "Desc_DS_Server_1U", + "Amount": 1 + }], +"UnlockedBy": ["Schem_DS_T3_2_C"], +"ClearIngredients": true, +"ClearProducts": true +} \ No newline at end of file diff --git a/ContentLib/RecipePatches/Buildables/Recipe_DS_Server_1UF.json b/ContentLib/RecipePatches/Buildables/Recipe_DS_Server_1UF.json new file mode 100644 index 0000000..56fe58a --- /dev/null +++ b/ContentLib/RecipePatches/Buildables/Recipe_DS_Server_1UF.json @@ -0,0 +1,31 @@ +//DigitalStorage/Buildables/Server/1UF/Recipe_DS_Server_1UF.Recipe_DS_Server_1UF_C +{ +"$schema": "https://raw.githubusercontent.com/budak7273/ContentLib_Documentation/refs/heads/main/JsonSchemas/CL_Recipe.json", +"Name": "Server 1U (Fluid)", +"Ingredients": [ +{ + "Item": "Desc_CopperSheet", + "Amount": 50 + }, +{ + "Item": "Desc_DS_NetworkCable_Item", + "Amount": 30 + }, +{ + "Item": "Desc_IronScrew", + "Amount": 100 + }, +{ + "Item": "Desc_ModularFrame", + "Amount": 30 + } +], +"Products": [ +{ + "Item": "Desc_DS_Server_1UF", + "Amount": 1 + }], +"UnlockedBy": ["Schem_DS_T4_1_C"], +"ClearIngredients": true, +"ClearProducts": true +} \ No newline at end of file diff --git a/ContentLib/RecipePatches/Buildables/Recipe_DS_Server_2U.json b/ContentLib/RecipePatches/Buildables/Recipe_DS_Server_2U.json new file mode 100644 index 0000000..e016a38 --- /dev/null +++ b/ContentLib/RecipePatches/Buildables/Recipe_DS_Server_2U.json @@ -0,0 +1,31 @@ +//DigitalStorage/Buildables/Server/2U/Recipe_DS_Server_2U.Recipe_DS_Server_2U_C +{ +"$schema": "https://raw.githubusercontent.com/budak7273/ContentLib_Documentation/refs/heads/main/JsonSchemas/CL_Recipe.json", +"Name": "Server 2U (Item)", +"Ingredients": [ +{ + "Item": "Desc_Computer", + "Amount": 5 + }, +{ + "Item": "Desc_ModularFrameHeavy", + "Amount": 10 + }, +{ + "Item": "Desc_SteelPlate", + "Amount": 50 + }, +{ + "Item": "Desc_DS_NetworkCable_Item", + "Amount": 25 + } +], +"Products": [ +{ + "Item": "Desc_DS_Server_2U", + "Amount": 1 + }], +"UnlockedBy": ["Schem_DS_T5_1_C"], +"ClearIngredients": true, +"ClearProducts": true +} \ No newline at end of file diff --git a/ContentLib/RecipePatches/Buildables/Recipe_DS_Server_2UF.json b/ContentLib/RecipePatches/Buildables/Recipe_DS_Server_2UF.json new file mode 100644 index 0000000..54e75c1 --- /dev/null +++ b/ContentLib/RecipePatches/Buildables/Recipe_DS_Server_2UF.json @@ -0,0 +1,31 @@ +//DigitalStorage/Buildables/Server/2UF/Recipe_DS_Server_2UF.Recipe_DS_Server_2UF_C +{ +"$schema": "https://raw.githubusercontent.com/budak7273/ContentLib_Documentation/refs/heads/main/JsonSchemas/CL_Recipe.json", +"Name": "Server 2U (Fluid)", +"Ingredients": [ +{ + "Item": "Desc_Computer", + "Amount": 5 + }, +{ + "Item": "Desc_ModularFrameHeavy", + "Amount": 10 + }, +{ + "Item": "Desc_CopperSheet", + "Amount": 150 + }, +{ + "Item": "Desc_DS_NetworkCable_Item", + "Amount": 50 + } +], +"Products": [ +{ + "Item": "Desc_DS_Server_2UF", + "Amount": 1 + }], +"UnlockedBy": ["Schem_DS_T5_1_C"], +"ClearIngredients": true, +"ClearProducts": true +} \ No newline at end of file diff --git a/ContentLib/RecipePatches/Buildables/Recipe_DS_Server_2UG.json b/ContentLib/RecipePatches/Buildables/Recipe_DS_Server_2UG.json new file mode 100644 index 0000000..85f0bb6 --- /dev/null +++ b/ContentLib/RecipePatches/Buildables/Recipe_DS_Server_2UG.json @@ -0,0 +1,31 @@ +//DigitalStorage/Buildables/Server/2UG/Recipe_DS_Server_2UG.Recipe_DS_Server_2UG_C +{ +"$schema": "https://raw.githubusercontent.com/budak7273/ContentLib_Documentation/refs/heads/main/JsonSchemas/CL_Recipe.json", +"Name": "Server 2U (Gas)", +"Ingredients": [ +{ + "Item": "Desc_Computer", + "Amount": 5 + }, +{ + "Item": "Desc_ModularFrameHeavy", + "Amount": 5 + }, +{ + "Item": "Desc_GasTank", + "Amount": 5 + }, +{ + "Item": "Desc_DS_NetworkCable_Item", + "Amount": 50 + } +], +"Products": [ +{ + "Item": "Desc_DS_Server_2UG", + "Amount": 1 + }], +"UnlockedBy": ["Schem_DS_T6_1_C"], +"ClearIngredients": true, +"ClearProducts": true +} \ No newline at end of file diff --git a/ContentLib/RecipePatches/Buildables/Recipe_DS_StorageConnectionAdapter.json b/ContentLib/RecipePatches/Buildables/Recipe_DS_StorageConnectionAdapter.json new file mode 100644 index 0000000..93c3b85 --- /dev/null +++ b/ContentLib/RecipePatches/Buildables/Recipe_DS_StorageConnectionAdapter.json @@ -0,0 +1,27 @@ +//DigitalStorage/Buildables/ContainerModules/Normal/Recipe_DS_StorageConnectionAdapter.Recipe_DS_StorageConnectionAdapter_C +{ +"$schema": "https://raw.githubusercontent.com/budak7273/ContentLib_Documentation/refs/heads/main/JsonSchemas/CL_Recipe.json", +"Name": "Storage Connection Adapter", +"Ingredients": [ +{ + "Item": "Desc_SteelPipe", + "Amount": 10 + }, +{ + "Item": "Desc_Wire", + "Amount": 100 + }, +{ + "Item": "Desc_DS_NetworkCable_Item", + "Amount": 10 + } +], +"Products": [ +{ + "Item": "Desc_DS_StorageConnectionAdapter", + "Amount": 1 + }], +"UnlockedBy": ["Schematic_DS_Mam_Adapters_Storage_C"], +"ClearIngredients": true, +"ClearProducts": true +} \ No newline at end of file diff --git a/ContentLib/RecipePatches/Buildables/Recipe_DS_StorageTerminal.json b/ContentLib/RecipePatches/Buildables/Recipe_DS_StorageTerminal.json new file mode 100644 index 0000000..e77740b --- /dev/null +++ b/ContentLib/RecipePatches/Buildables/Recipe_DS_StorageTerminal.json @@ -0,0 +1,31 @@ +//DigitalStorage/Buildables/Terminals/Storage/Recipe_DS_StorageTerminal.Recipe_DS_StorageTerminal_C +{ +"$schema": "https://raw.githubusercontent.com/budak7273/ContentLib_Documentation/refs/heads/main/JsonSchemas/CL_Recipe.json", +"Name": "Storage Terminal", +"Ingredients": [ +{ + "Item": "Desc_DS_NetworkCable_Item", + "Amount": 20 + }, +{ + "Item": "Desc_IronPlateReinforced", + "Amount": 20 + }, +{ + "Item": "Desc_IronScrew", + "Amount": 10 + }, +{ + "Item": "Desc_ModularFrame", + "Amount": 8 + } +], +"Products": [ +{ + "Item": "Desc_DS_StorageTerminal", + "Amount": 1 + }], +"UnlockedBy": ["Schem_DS_T3_1_C"], +"ClearIngredients": true, +"ClearProducts": true +} \ No newline at end of file diff --git a/ContentLib/RecipePatches/Buildables/Recipe_DS_TrainCargoAdapter.json b/ContentLib/RecipePatches/Buildables/Recipe_DS_TrainCargoAdapter.json new file mode 100644 index 0000000..5348589 --- /dev/null +++ b/ContentLib/RecipePatches/Buildables/Recipe_DS_TrainCargoAdapter.json @@ -0,0 +1,27 @@ +//DigitalStorage/Buildables/TrainCargoAdapter/Recipe_DS_TrainCargoAdapter.Recipe_DS_TrainCargoAdapter_C +{ +"$schema": "https://raw.githubusercontent.com/budak7273/ContentLib_Documentation/refs/heads/main/JsonSchemas/CL_Recipe.json", +"Name": "Train Cargo Adapter", +"Ingredients": [ +{ + "Item": "Desc_SteelPlate", + "Amount": 30 + }, +{ + "Item": "Desc_ModularFrameHeavy", + "Amount": 4 + }, +{ + "Item": "Desc_DS_NetworkCable_Item", + "Amount": 20 + } +], +"Products": [ +{ + "Item": "Desc_DS_TrainCargoAdapter", + "Amount": 1 + }], +"UnlockedBy": ["Schematic_DS_Mam_Adapters_Train_C"], +"ClearIngredients": true, +"ClearProducts": true +} \ No newline at end of file diff --git a/ContentLib/RecipePatches/Buildables/Recipe_DS_UniversalAdapter.json b/ContentLib/RecipePatches/Buildables/Recipe_DS_UniversalAdapter.json new file mode 100644 index 0000000..92b21a5 --- /dev/null +++ b/ContentLib/RecipePatches/Buildables/Recipe_DS_UniversalAdapter.json @@ -0,0 +1,31 @@ +//DigitalStorage/Buildables/Adapters/UniversalAdapter/Recipe_DS_UniversalAdapter.Recipe_DS_UniversalAdapter_C +{ +"$schema": "https://raw.githubusercontent.com/budak7273/ContentLib_Documentation/refs/heads/main/JsonSchemas/CL_Recipe.json", +"Name": "Universal Adapter", +"Ingredients": [ +{ + "Item": "Desc_ModularFrame", + "Amount": 8 + }, +{ + "Item": "Desc_SteelPlate", + "Amount": 5 + }, +{ + "Item": "Desc_DS_NetworkCable_Item", + "Amount": 10 + }, +{ + "Item": "Desc_SpaceElevatorPart", + "Amount": 4 + } +], +"Products": [ +{ + "Item": "Desc_DS_UniversalAdapter", + "Amount": 1 + }], +"UnlockedBy": ["Schematic_DS_Mam_Adapters_Universal_C"], +"ClearIngredients": true, +"ClearProducts": true +} \ No newline at end of file diff --git a/ContentLib/RecipePatches/Buildables/Recipe_DS_UplinkSatellite.json b/ContentLib/RecipePatches/Buildables/Recipe_DS_UplinkSatellite.json new file mode 100644 index 0000000..bedf299 --- /dev/null +++ b/ContentLib/RecipePatches/Buildables/Recipe_DS_UplinkSatellite.json @@ -0,0 +1,31 @@ +//DigitalStorage/Buildables/UplinkSatellite/Recipe_DS_UplinkSatellite.Recipe_DS_UplinkSatellite_C +{ +"$schema": "https://raw.githubusercontent.com/budak7273/ContentLib_Documentation/refs/heads/main/JsonSchemas/CL_Recipe.json", +"Name": "Wireless Ground Antenna", +"Ingredients": [ +{ + "Item": "Desc_Computer", + "Amount": 5 + }, +{ + "Item": "Desc_DS_NetworkCable_Item", + "Amount": 20 + }, +{ + "Item": "Desc_ModularFrameLightweight", + "Amount": 2 + }, +{ + "Item": "Desc_ModularFrameHeavy", + "Amount": 10 + } +], +"Products": [ +{ + "Item": "Desc_DS_UplinkSatellite", + "Amount": 1 + }], +"UnlockedBy": ["Schem_DS_T7_1_C"], +"ClearIngredients": true, +"ClearProducts": true +} \ No newline at end of file diff --git a/ContentLib/RecipePatches/Buildables/Recipe_DS_WirelessAccessPoint.json b/ContentLib/RecipePatches/Buildables/Recipe_DS_WirelessAccessPoint.json new file mode 100644 index 0000000..1574847 --- /dev/null +++ b/ContentLib/RecipePatches/Buildables/Recipe_DS_WirelessAccessPoint.json @@ -0,0 +1,27 @@ +//DigitalStorage/Buildables/WirelessAccessPoint/Recipe_DS_WirelessAccessPoint.Recipe_DS_WirelessAccessPoint_C +{ +"$schema": "https://raw.githubusercontent.com/budak7273/ContentLib_Documentation/refs/heads/main/JsonSchemas/CL_Recipe.json", +"Name": "Wireless Access Point", +"Ingredients": [ +{ + "Item": "Desc_IronPlateReinforced", + "Amount": 5 + }, +{ + "Item": "Desc_IronScrew", + "Amount": 10 + }, +{ + "Item": "Desc_CircuitBoardHighSpeed", + "Amount": 1 + } +], +"Products": [ +{ + "Item": "Desc_DS_WirelessAccessPoint", + "Amount": 1 + }], +"UnlockedBy": ["Schem_DS_T6_2_C"], +"ClearIngredients": true, +"ClearProducts": true +} \ No newline at end of file diff --git a/ContentLib/RecipePatches/Buildables/Recipe_DS_WirelessTower.json b/ContentLib/RecipePatches/Buildables/Recipe_DS_WirelessTower.json new file mode 100644 index 0000000..b2ed0c5 --- /dev/null +++ b/ContentLib/RecipePatches/Buildables/Recipe_DS_WirelessTower.json @@ -0,0 +1,31 @@ +//DigitalStorage/Buildables/WirelessTower/Recipe_DS_WirelessTower.Recipe_DS_WirelessTower_C +{ +"$schema": "https://raw.githubusercontent.com/budak7273/ContentLib_Documentation/refs/heads/main/JsonSchemas/CL_Recipe.json", +"Name": "Wireless Tower", +"Ingredients": [ +{ + "Item": "Desc_ComputerSuper", + "Amount": 10 + }, +{ + "Item": "Desc_DS_NetworkCable_Item", + "Amount": 100 + }, +{ + "Item": "Desc_AluminumPlate", + "Amount": 10 + }, +{ + "Item": "Desc_ModularFrameLightweight", + "Amount": 8 + } +], +"Products": [ +{ + "Item": "Desc_DS_WirelessTower", + "Amount": 1 + }], +"UnlockedBy": ["Schem_DS_T7_1_C"], +"ClearIngredients": true, +"ClearProducts": true +} \ No newline at end of file diff --git a/ContentLib/RecipePatches/Recipe_DS_Drive_10K_Fluid.json b/ContentLib/RecipePatches/Recipe_DS_Drive_10K_Fluid.json new file mode 100644 index 0000000000000000000000000000000000000000..a829bd1ebd39d9dc00923acafd1e87d573d8330f GIT binary patch literal 1678 zcmbtUU5nE|6g|&^{~-h)6eQi~E`o2nk%j73i&bA1DcvMZtIc*vS{IT1RsKKqoI9B& zK`LFOWG0#3k8{qwcYgmGV1QRxqTsW^3@c2yuTk;6K+b>PbFF!@X+N>mdwIJlTHnYr-Op!=1P}25KWq*0h)7c`n6o7Q5HAsM zU69d+NNRqIuejYJYB(>5{fbXbFEL!>n%23kk$so+kwr$ouXurHe4g_x>DgY8?Uk`y z(`!ovF2;<}mS(BUIp)kXFpM)s)Vr`QnQwsC{8s)+hlMN>TrjdK;q{5|rLhh1v|<02 zag^2bmg+&LRskM&^bV|6C4S-wJ$#HIvloUlBPPe7ZX#ZGvtr)x7#67Nw l)k8S{HSrt%za?^C`PQr318v9ew{N>bUEn9g+iRNc@CN`v2POaj literal 0 HcmV?d00001 diff --git a/ContentLib/RecipePatches/Recipe_DS_Drive_120K_Fluid.json b/ContentLib/RecipePatches/Recipe_DS_Drive_120K_Fluid.json new file mode 100644 index 0000000000000000000000000000000000000000..d43c94b589d1fff8ff0a80e3dc2e8c955d3840da GIT binary patch literal 1988 zcmchYZEMp|7>1wEg8v~DKPX6Q6&?D`WfZEb4vT&nQo5vTtIaA&JP0?UB8%^kQzmAT>o};#RNMNKUQM51qH0YE3P&yLQK}+}g8y;EipG-xL-- zdtm|V5?))-)#*?EZo*TPBdhXWHol|rqk)Ze44&ZrUPq>RZvd1t! zb4)jA6(A^W%&@j{lJY#ab3FAO#u*m%F03p3_3agB`Jc2{NFuUhEGr*ALZN-CWPA3o zV*ds^^6Ggj@57*g1t3y%7}#OK=B%K zr|c(qDWlM}_$Q91x5A;i*?>YhUy!43cvrG&Mw57bY)hK+^-d{y z%6^EA6?xWl+~rC0X3Rtx@I6AliQ`*0VKav&p)w-ysX`V+H=|yBhmZK;C#)=ZT)VuL zyvA4&VlJcGJpEd1FM-G{AD#!cgc4%{(a;EqJr$UE=O#k%RwI zJ{^HAY-C+~Y>(_!X_J8X3}OU&=+gy4z#gOY z%qd)AwT6NBF~-~6Ar*OI=S1o_j$=IPUR>wI>)1=46@OS$Aw+D)cvcNUcG~u_#J22V zss1&76gB8p#-m!5BD-H^Ix4G_**ALtK6vO8d+J!GF!KD1(%)$<(-D5duVsCgudEhV zy^?IL`BT>$q2eKO@TI+FFHoUQQysjPu8SSnb;;D%yJ@wX#Q<+9{ubmXw;q?zQ;&D5 zdP)?Zfu_e_dF=fa5B19u7OM4>+FTJ`ouWFHnBYF1DIzz9NV2zB;eI_tdd%u5d=`TGcx`Gah-$ zet?fTHBRaNZILu%227DI-(&Dq4&S&*nmaZrT@k}i-7zJzIlU52b)PR`n#x1qwJn<0 zHNcA$i@7F|*44&iQ{6j|3or>BrS4#Zle+p`(p0O?xT0r{SD5emFF4x#8~m*HJ$NC< z%*+LmPKbHQo}*3^uz;_6HO$WNR{u`bTxfE?tZwK;)?HU bn1?!4R`pJ)PQ`9~)jP^VI7I=kF21%OQ>ZI* literal 0 HcmV?d00001 diff --git a/ContentLib/RecipePatches/Recipe_DS_Drive_16K.json b/ContentLib/RecipePatches/Recipe_DS_Drive_16K.json new file mode 100644 index 0000000..36f054c --- /dev/null +++ b/ContentLib/RecipePatches/Recipe_DS_Drive_16K.json @@ -0,0 +1,39 @@ +//DigitalStorage/Resources/Drives/16K/Recipe_DS_Drive_16K.Recipe_DS_Drive_16K_C +{ +"$schema": "https://raw.githubusercontent.com/budak7273/ContentLib_Documentation/refs/heads/main/JsonSchemas/CL_Recipe.json", +"Name": "DS Drive (16K)", +"Ingredients": [ +{ + "Item": "Desc_DS_Drive_8K", + "Amount": 1 + }, +{ + "Item": "Desc_AluminumCasing", + "Amount": 20 + }, +{ + "Item": "Desc_IronPlateReinforced", + "Amount": 40 + }, +{ + "Item": "Desc_Computer", + "Amount": 30 + } +], +"Products": [ +{ + "Item": "Desc_DS_Drive_16K", + "Amount": 1 + } +], +"ManufacturingDuration": 45.0, +"ProducedIn": ["Build_ManufacturerMk1_C"], +"OverrideCategory": "IC_DS_C", +"ManufacturingMenuPriority": 0.0, +"UnlockedBy": ["Schematic_DS_Mam_Drives_16K_C"], +"VariablePowerConsumptionConstant": 0.0, +"VariablePowerConsumptionFactor": 1.0, +"ClearIngredients": true, +"ClearProducts": true, +"ClearBuilders": true +} \ No newline at end of file diff --git a/ContentLib/RecipePatches/Recipe_DS_Drive_1K.json b/ContentLib/RecipePatches/Recipe_DS_Drive_1K.json new file mode 100644 index 0000000..7f3ca08 --- /dev/null +++ b/ContentLib/RecipePatches/Recipe_DS_Drive_1K.json @@ -0,0 +1,31 @@ +//DigitalStorage/Resources/Drives/1K/Recipe_DS_Drive_1K.Recipe_DS_Drive_1K_C +{ +"$schema": "https://raw.githubusercontent.com/budak7273/ContentLib_Documentation/refs/heads/main/JsonSchemas/CL_Recipe.json", +"Name": "DS Drive (1K)", +"Ingredients": [ +{ + "Item": "Desc_DS_Drive_512", + "Amount": 1 + }, +{ + "Item": "Desc_IronPlateReinforced", + "Amount": 10 + } +], +"Products": [ +{ + "Item": "Desc_DS_Drive_1K", + "Amount": 1 + } +], +"ManufacturingDuration": 45.0, +"ProducedIn": ["Build_AssemblerMk1_C"], +"OverrideCategory": "IC_DS_C", +"ManufacturingMenuPriority": 0.0, +"UnlockedBy": ["Schematic_DS_Mam_Drives_1K_C"], +"VariablePowerConsumptionConstant": 0.0, +"VariablePowerConsumptionFactor": 1.0, +"ClearIngredients": true, +"ClearProducts": true, +"ClearBuilders": true +} \ No newline at end of file diff --git a/ContentLib/RecipePatches/Recipe_DS_Drive_20K_Fluid.json b/ContentLib/RecipePatches/Recipe_DS_Drive_20K_Fluid.json new file mode 100644 index 0000000000000000000000000000000000000000..ef63c5899213e5eb218fca8248cd32f67375e6ea GIT binary patch literal 1720 zcmb_cU5nE|6g|&^{~-h)6r>-1u;ANnq)^>zvFOVprJJN_wb@G3x`^zr+W)7Xb7!VW zv=tVmG?SU!k8{qwcYglpqKlVUqTqjv8CIBZU1P)d0y)3F25w#B)E@z_-@Y_4~R6yf;mg#kMRN# zp9?bD5=q6q_=?*#I-c`_*f067=p}}0T+uqWXUFy>ePof*?=w!w@dQtKmb7fo$@bD% zuIaTS0vBV(XiKwH<{Wco>KeuwBkEmPm(172EAEwl(qJKr1m}#bN(6m6_~dP4JofD0 zFpjbY-cmhk)GETmhTf6Ys>CfG(IdndGJ9b-Gh%WKDj)Hpp>@Q_;TL0Qij|Gb>Y4Ol z<@?ql&B}-DA)eM4r{topQ#Bl;zU7Z_9kW|ilic)_?sJ~I-p-iG zDbbGlCl>X&I!|b{e%vcKwmcb;r_AzywR6+;Z`!rdj;O^IvCg>)uclm@6zm(l*WK%C z@C?s6IlY5ybM~|P$5~!*J!6a|_14XBN-Z>FC8uP?b%PP7sn0J7Eo=SW+P$(d92xBr zU#-Hb^vy?C&n5f*QiRaK#~F0U!d+K!H}Lo3?_597T6Qz9$(R|hO&fQ&R76|y<_b4RIMq#E&qW*gU1JUyOO=-% pVa}QrPOMtO`M0}a%kMiP4^^nW4$s4J`?_b;BVm4my}I`XzW|Y;4xs=5 literal 0 HcmV?d00001 diff --git a/ContentLib/RecipePatches/Recipe_DS_Drive_240K_Fluid.json b/ContentLib/RecipePatches/Recipe_DS_Drive_240K_Fluid.json new file mode 100644 index 0000000000000000000000000000000000000000..0d0b80fb631acf8532fd45ebaf33a1a0b05ffa05 GIT binary patch literal 2120 zcmcgtZEMp|7(Jf_|3e6VP>|F*=fH0+vrygKwCI;1B}-#kZC1&PLu9|o|L1njliVf& zJ31W_a+7=WyqxpA_*h8 zxSwH)r+9`Zc+=>`JpD$gDK#dxI=xnMidH``Z@1N&BE)^%!%tg%JRsf}bNbE5!p94E zT<7Ff5>3IqSc~BWf`<8=49<8L)Dq7X&MBSP8rVLgjwEK(`-(j>-NO#g!k+9Q8J`)` z6}2iNsBJ{FwlGO~PVkwY28J=BMZF8_g8l}0&At3jIxHj+;*ge=4;P^TUm95-j~n)H zX-8fiZ$;kgWX!|EPQ<+?V;O$o5p|rEG5x28bVgJ)hoZ50+KIMD+wSr)wwPrd->RMX zkNF?cvnr*Vf9Ky>)YHdH@=^UMBQ>j`A@Fe7;H@*?*V>F_L`E@jsp1nH@h+H&ZGG?j zlka!r5g8NJ#<4|b!TwqDwC=lYaqQk9j#osax=-o^RVz4}t`DHnQvT365s?X6hb z6=PkJXPvpbsU0_E{(tQpFi$!A|8F9;dtJlvUl~~PLMj1&uJ~- z?K-v_?}Twz2fLX2*ryHEnPzmq2E|14Ze|srS?YJPcx+QXH!P9}4M##$`bVf*>ghV> z7dPc)!J*pBN_}@uRKl&vsI^>M>~s4-$t7iCMqb?Z*K()y)t!@?vhBQ)_snp)|4w1^ zrmdeo+mDo&WW*W1q^A@5yx=n@J5A(*cr*S(+$?ve`g69^sgM1(Hb=Cjj!{JF=ni{% m4h@-b-ZZ02ey@n!<)PK;)=Ar!o8{ZeQ5;+!J9+i|C9VNY1V8)$ literal 0 HcmV?d00001 diff --git a/ContentLib/RecipePatches/Recipe_DS_Drive_240K_Gas.json b/ContentLib/RecipePatches/Recipe_DS_Drive_240K_Gas.json new file mode 100644 index 0000000000000000000000000000000000000000..a92248317ea0d5e09c0bb32f164731c40f65e3fc GIT binary patch literal 2096 zcmcgtZEMp|7(Jf_|3e6VP>|L-=fH0+bECSsY0)o3N|wg7+N_c^8zTEv{y+7c=jJwv z*wN{bkelS@c{%5KyFY*Q(Z?QU$apUiV~!D@3lx0Mkn-u^Fc!q%M zlw6iXQSw_%#p)8hn(dUF&Uly961N4;DV^Hdv+tZbl9*8MGj_;u2V2~WIX2@yH`Wo_@Y73qL>{S{(p@yc6%RV&FK zb3UMFRfo^H_wB9e8R9v4sMeGT$7W#O16v8OpO+rkn?i5G7OJ-nG-&_CW z`we--#zZx7Y>}C*1?OVk0f{0Y_8NO~DhXFI^F7=#pq34HH^_*rs`5SR@e{j+Cf$7N}C(L>=;v zpXjpSQLSgCo;xQh;npO}gT?R&~gGUnW#)6)rkUh-Lxou+U}ygAPeKfnF1PRM35b+O;n=00tyTNDu&-9abM lks%Y#>t^$k|0^Q*d1$oSb<*_Ydikbu6bIkKUS9ovg}7#$2sTTJ3oJP(ZvfaQSiUT3@c3dTw}xc0y)3F@#hqw4c}-yn@{nwQt8V-OXo;1ov?d-)xQXfJjp;n6o7Q7|#)L zU69e1NGk5dSKMyU@thaLe#L)9FEL!>n%23k9ov`mkwr$oPk4qt|4(?9v}`ZP_R3hU z>9r#Q7h}d~OS4qw9CK#s8patT>Rniu%-6+B?v;PiU?GbH7mTb*1bsUA=xt*>_UvCX zjcQax(aD#F8t-jUU+#CJTRM~E?G_QG&x#N-%MKH_CV>xhxVFUHUmD;t^BGwH#~ z_pL*kl@HlNJUwHak&C)c)o_eXEPsSskJeSa?R6ZHKb)PGH zX}H2oS8+G+x8m>|mir`zj(h_Yn81$t`NOw1zXtt4TVv*8c<^O9v=gv%a zSDK)Lgv{*joO|y%_hasEyXfLI<|z1IV}b=n+?QDKxj@d-4_qsL+3;Ix&$3t%|J}cx z5?f)6L-g?0TckYy#`7_;BU^(-z>VSTIu_y2@na--hzGc~HO3>xPBCMwl00I(Ld11O z6>Bo6_%4mobA^uAIis2j{wrEZ)e@IP=eBn2y`+s08STE}C7$vBoZpfb_KYeoOx==J z8!~V{CiFHpq$1~-GE&z#PUun3;yP!%F5d86@kb36LL@k&XJtR+rh_jY8{?^0|BikX zHRx8hqeguqJob5xtUe`v;tA2gzR$>oam>iav9G+h^G2Q{dJVrAealwah^ih*_g4Fa zy|rPCY#TlJ(;nl9I@D#Vgi~{1@gv-LwyxrBtKCfcRHeKQ8CUhlEtksql;2%1{|guO z-sf%ph886w@02nAPv+d5gqpSW@5@@7>3~_dB+n^#an(F48wI;X&vnnb>>uI<=cRYA z(wtRP=Q!j!_hb5)Gt(J+;D~w9WR;wa1@{#OoS_4rBt+J^dv7<$%6MeNCB9CD)#r!z zu5L@Voh1*UcXulq(3`ZXI+{bRYXpzImadOPE{I9VQM!(|IO%FmrDnSBaYZkUSGd`9 z2cG&{@OQ1Bh!$?*b24PaE6a_$Q7W=6d0&NlBYf4JTu(%s`QQ3Hp)XZl`3Mu%tZ-u0 h63>0N!kXtBG7nX#t?r+N-T1m^)FWYb0$$yFgI^LG3PS(@ literal 0 HcmV?d00001 diff --git a/ContentLib/RecipePatches/Recipe_DS_Drive_4K.json b/ContentLib/RecipePatches/Recipe_DS_Drive_4K.json new file mode 100644 index 0000000..67bbb30 --- /dev/null +++ b/ContentLib/RecipePatches/Recipe_DS_Drive_4K.json @@ -0,0 +1,31 @@ +//DigitalStorage/Resources/Drives/4K/Recipe_DS_Drive_4K.Recipe_DS_Drive_4K_C +{ +"$schema": "https://raw.githubusercontent.com/budak7273/ContentLib_Documentation/refs/heads/main/JsonSchemas/CL_Recipe.json", +"Name": "DS Drive (4K)", +"Ingredients": [ +{ + "Item": "Desc_DS_Drive_2K", + "Amount": 1 + }, +{ + "Item": "Desc_IronPlateReinforced", + "Amount": 4 + } +], +"Products": [ +{ + "Item": "Desc_DS_Drive_4K", + "Amount": 1 + } +], +"ManufacturingDuration": 45.0, +"ProducedIn": ["Build_AssemblerMk1_C"], +"OverrideCategory": "IC_DS_C", +"ManufacturingMenuPriority": 0.0, +"UnlockedBy": ["Schematic_DS_Mam_Drives_4K_C"], +"VariablePowerConsumptionConstant": 0.0, +"VariablePowerConsumptionFactor": 1.0, +"ClearIngredients": true, +"ClearProducts": true, +"ClearBuilders": true +} \ No newline at end of file diff --git a/ContentLib/RecipePatches/Recipe_DS_Drive_512.json b/ContentLib/RecipePatches/Recipe_DS_Drive_512.json new file mode 100644 index 0000000..dbaaf9e --- /dev/null +++ b/ContentLib/RecipePatches/Recipe_DS_Drive_512.json @@ -0,0 +1,31 @@ +//DigitalStorage/Resources/Drives/512/Recipe_DS_Drive_512.Recipe_DS_Drive_512_C +{ +"$schema": "https://raw.githubusercontent.com/budak7273/ContentLib_Documentation/refs/heads/main/JsonSchemas/CL_Recipe.json", +"Name": "DS Drive (512)", +"Ingredients": [ +{ + "Item": "Desc_DS_Drive_256", + "Amount": 1 + }, +{ + "Item": "Desc_IronPlateReinforced", + "Amount": 10 + } +], +"Products": [ +{ + "Item": "Desc_DS_Drive_512", + "Amount": 1 + } +], +"ManufacturingDuration": 45.0, +"ProducedIn": ["Build_AssemblerMk1_C"], +"OverrideCategory": "IC_DS_C", +"ManufacturingMenuPriority": 0.0, +"UnlockedBy": ["Schematic_DS_Mam_Drives_512_C"], +"VariablePowerConsumptionConstant": 0.0, +"VariablePowerConsumptionFactor": 1.0, +"ClearIngredients": true, +"ClearProducts": true, +"ClearBuilders": true +} \ No newline at end of file diff --git a/ContentLib/RecipePatches/Recipe_DS_Drive_60K_Fluid.json b/ContentLib/RecipePatches/Recipe_DS_Drive_60K_Fluid.json new file mode 100644 index 0000000000000000000000000000000000000000..36e1430ebd55147b33f287bddf32e9a8064a05ef GIT binary patch literal 1718 zcmb_cU5nE|6g|&^{~-h)6r}BHRq$;$QmAgVSoCF)(oNE|+H9q1T}1X*`Tx{&?#wia zw!)&6PBN4Gan8B-&d(oRbnya96#Q>7!wM5V*VypAK+dmkxmG;c@hr7>d2DF^#qS36 z+Hs#@il^w|mG??{_L(+Q+D~i^UcqjP+P7nwZs#*ag1fkbZ??v`N2Dnh%vlnDjOU2B zF34z0Bo+7KD{j~5c+LxAzvRE7ml&>bMeE$wj_phO$ReZPCp^O={vY!!Y1y8W?WM6? z(`!crF2;<}mS(BUIp)mNHHNvJ(c8v&=-Iz! z9Ayo>rFzt;RfPKuy(6ntiSKwoj}T+X?1kaXh{-Xie8h`}))6CzUyPwCRyH!LXVQa} z?^}m7D<86lczVV-B^Py_s^J)&SpEn%9<8f-+v_-zAz4Y=F}qbY$xTn`KIggX?Tne6 z678seV(IU(sQ*6f^&4B3jJQ+g_`k}z+4?u-+Gs~q;)+=3dnhO4 z6V6TVAlsbXtnP7^7kr*E#*%95UO1%|ny`{Hvf^`t5ohUyUlLl@`n|DRWn(xp+9keL zh1KY*kFJhO_T8ljp?{Av8ZnxHKb)PGH zX}H2oS8+G+x8m?*L`3jXp(wQ-ClEI%PN*u>uj2n&X7=u4 z8zmJW6y?tL&F;?5?%wT97hSx<90mVtOt8R+`w}ZY7sz?~fosJt8-7deSr#kezx%fn zVk?aC96h}C7Aeoa@qA3|$kt#HaAP>Tjz#!${1^%D;~sw48sh5k+EJrE5gvM-Bdbq|pLj%cu ztt&#cL*(E~dyFIIpbk?NTqXw=JHoYR>Z;wg+RviTjHKz1{j6H#rla(p^1JKfjFFrQ zZLfE6QQv*uYB#hf8F{CS@qblwv-Iz(wV4j6!UcIwxr?i2S!xvQ6g}7d>eN5PGtNqH zXQnwjSY6|gXWWnJV@{;$~J_Zq(d7s3g4 literal 0 HcmV?d00001 diff --git a/ContentLib/RecipePatches/Recipe_DS_Drive_64K.json b/ContentLib/RecipePatches/Recipe_DS_Drive_64K.json new file mode 100644 index 0000000..5d1638d --- /dev/null +++ b/ContentLib/RecipePatches/Recipe_DS_Drive_64K.json @@ -0,0 +1,43 @@ +//DigitalStorage/Resources/Drives/64K/Recipe_DS_Drive_64K.Recipe_DS_Drive_64K_C +{ +"$schema": "https://raw.githubusercontent.com/budak7273/ContentLib_Documentation/refs/heads/main/JsonSchemas/CL_Recipe.json", +"Name": "DS Drive (64K)", +"Ingredients": [ +{ + "Item": "Desc_DS_Drive_32K", + "Amount": 1 + }, +{ + "Item": "Desc_FicsiteMesh", + "Amount": 3 + }, +{ + "Item": "Desc_QuantumOscillator", + "Amount": 5 + }, +{ + "Item": "Desc_QuantumEnergy", + "Amount": 10000 + } +], +"Products": [ +{ + "Item": "Desc_DS_Drive_64K", + "Amount": 1 + }, +{ + "Item": "Desc_DarkEnergy", + "Amount": 5000 + } +], +"ManufacturingDuration": 60.0, +"ProducedIn": ["Build_QuantumEncoder_C"], +"OverrideCategory": "IC_DS_C", +"ManufacturingMenuPriority": 0.0, +"UnlockedBy": ["Schematic_DS_Mam_Drives_64K_C"], +"VariablePowerConsumptionConstant": 0.0, +"VariablePowerConsumptionFactor": 1.0, +"ClearIngredients": true, +"ClearProducts": true, +"ClearBuilders": true +} \ No newline at end of file diff --git a/ContentLib/RecipePatches/Recipe_DS_Drive_8K.json b/ContentLib/RecipePatches/Recipe_DS_Drive_8K.json new file mode 100644 index 0000000..a4eecff --- /dev/null +++ b/ContentLib/RecipePatches/Recipe_DS_Drive_8K.json @@ -0,0 +1,35 @@ +//DigitalStorage/Resources/Drives/8K/Recipe_DS_Drive_8K.Recipe_DS_Drive_8K_C +{ +"$schema": "https://raw.githubusercontent.com/budak7273/ContentLib_Documentation/refs/heads/main/JsonSchemas/CL_Recipe.json", +"Name": "DS Drive (8K)", +"Ingredients": [ +{ + "Item": "Desc_DS_Drive_4K", + "Amount": 1 + }, +{ + "Item": "Desc_IronPlateReinforced", + "Amount": 20 + }, +{ + "Item": "Desc_Computer", + "Amount": 10 + } +], +"Products": [ +{ + "Item": "Desc_DS_Drive_8K", + "Amount": 1 + } +], +"ManufacturingDuration": 45.0, +"ProducedIn": ["Build_ManufacturerMk1_C"], +"OverrideCategory": "IC_DS_C", +"ManufacturingMenuPriority": 0.0, +"UnlockedBy": ["Schematic_DS_Mam_Drives_8K_C"], +"VariablePowerConsumptionConstant": 0.0, +"VariablePowerConsumptionFactor": 1.0, +"ClearIngredients": true, +"ClearProducts": true, +"ClearBuilders": true +} \ No newline at end of file diff --git a/ContentLib/RecipePatches/Recipe_DS_Multitool.json b/ContentLib/RecipePatches/Recipe_DS_Multitool.json new file mode 100644 index 0000000..74c83ec --- /dev/null +++ b/ContentLib/RecipePatches/Recipe_DS_Multitool.json @@ -0,0 +1,35 @@ +//DigitalStorage/Equipment/Multitool/Recipe_DS_Multitool.Recipe_DS_Multitool_C +{ +"$schema": "https://raw.githubusercontent.com/budak7273/ContentLib_Documentation/refs/heads/main/JsonSchemas/CL_Recipe.json", +"Name": "Multitool", +"Ingredients": [ +{ + "Item": "Desc_Cable", + "Amount": 5 + }, +{ + "Item": "Desc_DS_NetworkCable_Item", + "Amount": 4 + }, +{ + "Item": "Desc_IronPlateReinforced", + "Amount": 2 + } +], +"Products": [ +{ + "Item": "Desc_DS_Multitool", + "Amount": 1 + } +], +"ManufacturingDuration": 1.0, +"ProducedIn": ["Build_ManufacturerMk1_C"], +"OverrideCategory": "", +"ManufacturingMenuPriority": 0.0, +"UnlockedBy": ["Schematic_DS_Mam_Adapters_Universal_C"], +"VariablePowerConsumptionConstant": 0.0, +"VariablePowerConsumptionFactor": 1.0, +"ClearIngredients": true, +"ClearProducts": true, +"ClearBuilders": false +} \ No newline at end of file diff --git a/ContentLib/RecipePatches/Recipe_DS_NetworkCable_Item.json b/ContentLib/RecipePatches/Recipe_DS_NetworkCable_Item.json new file mode 100644 index 0000000..07d0fd8 --- /dev/null +++ b/ContentLib/RecipePatches/Recipe_DS_NetworkCable_Item.json @@ -0,0 +1,31 @@ +//DigitalStorage/Resources/NetworkCable/Recipe_DS_NetworkCable_Item.Recipe_DS_NetworkCable_Item_C +{ +"$schema": "https://raw.githubusercontent.com/budak7273/ContentLib_Documentation/refs/heads/main/JsonSchemas/CL_Recipe.json", +"Name": "Network Cable", +"Ingredients": [ +{ + "Item": "Desc_HighSpeedWire", + "Amount": 5 + }, +{ + "Item": "Desc_Cable", + "Amount": 2 + } +], +"Products": [ +{ + "Item": "Desc_DS_NetworkCable_Item", + "Amount": 2 + } +], +"ManufacturingDuration": 5.0, +"ProducedIn": ["Build_AssemblerMk1_C"], +"OverrideCategory": "IC_DS_C", +"ManufacturingMenuPriority": 0.0, +"UnlockedBy": ["Schem_DS_T3_1_C"], +"VariablePowerConsumptionConstant": 0.0, +"VariablePowerConsumptionFactor": 1.0, +"ClearIngredients": true, +"ClearProducts": true, +"ClearBuilders": false +} \ No newline at end of file diff --git a/ContentLib/RecipePatches/Recipe_DS_WirelessExtender.json b/ContentLib/RecipePatches/Recipe_DS_WirelessExtender.json new file mode 100644 index 0000000..9066efa --- /dev/null +++ b/ContentLib/RecipePatches/Recipe_DS_WirelessExtender.json @@ -0,0 +1,35 @@ +//DigitalStorage/Resources/WifiExtender/Recipe_DS_WirelessExtender.Recipe_DS_WirelessExtender_C +{ +"$schema": "https://raw.githubusercontent.com/budak7273/ContentLib_Documentation/refs/heads/main/JsonSchemas/CL_Recipe.json", +"Name": "Wireless Range Extender", +"Ingredients": [ +{ + "Item": "Desc_IronPlateReinforced", + "Amount": 5 + }, +{ + "Item": "Desc_SAMFluctuator", + "Amount": 1 + }, +{ + "Item": "Desc_CircuitBoard", + "Amount": 1 + } +], +"Products": [ +{ + "Item": "Desc_DS_WirelessExtender", + "Amount": 1 + } +], +"ManufacturingDuration": 1.0, +"ProducedIn": ["Build_ManufacturerMk1_C"], +"OverrideCategory": "IC_DS_C", +"ManufacturingMenuPriority": 0.0, +"UnlockedBy": ["Schem_DS_T6_2_C"], +"VariablePowerConsumptionConstant": 0.0, +"VariablePowerConsumptionFactor": 1.0, +"ClearIngredients": true, +"ClearProducts": true, +"ClearBuilders": false +} \ No newline at end of file diff --git a/ContentLib/RecipePatches/Recipe_DS_WirelessTablet.json b/ContentLib/RecipePatches/Recipe_DS_WirelessTablet.json new file mode 100644 index 0000000..4ec4eb2 --- /dev/null +++ b/ContentLib/RecipePatches/Recipe_DS_WirelessTablet.json @@ -0,0 +1,35 @@ +//DigitalStorage/Equipment/WirelessTablet/Recipe_DS_WirelessTablet.Recipe_DS_WirelessTablet_C +{ +"$schema": "https://raw.githubusercontent.com/budak7273/ContentLib_Documentation/refs/heads/main/JsonSchemas/CL_Recipe.json", +"Name": "Wireless Tablet", +"Ingredients": [ +{ + "Item": "Desc_DS_WirelessExtender", + "Amount": 2 + }, +{ + "Item": "Desc_HighSpeedWire", + "Amount": 30 + }, +{ + "Item": "Desc_CircuitBoard", + "Amount": 20 + } +], +"Products": [ +{ + "Item": "Desc_DS_WirelessTablet", + "Amount": 1 + } +], +"ManufacturingDuration": 1.0, +"ProducedIn": ["Build_ManufacturerMk1_C"], +"OverrideCategory": "", +"ManufacturingMenuPriority": 0.0, +"UnlockedBy": ["Schem_DS_T6_2_C"], +"VariablePowerConsumptionConstant": 0.0, +"VariablePowerConsumptionFactor": 1.0, +"ClearIngredients": true, +"ClearProducts": true, +"ClearBuilders": false +} \ No newline at end of file diff --git a/DigitalStorage Recipie Tweaks.uplugin b/DigitalStorage Recipie Tweaks.uplugin new file mode 100644 index 0000000..857d9fe --- /dev/null +++ b/DigitalStorage Recipie Tweaks.uplugin @@ -0,0 +1,30 @@ +{ + "FileVersion": 3, + "Version": 1, + "VersionName": "1.0.0", + "SemVersion": "1.0.0", + "FriendlyName": "DigitalStorage Recipie Tweaks", + "Description": "Put the description of what your mod changes here", + "Category": "Modding", + "CreatedBy": "YourName", + "CreatedByURL": "", + "DocsURL": "", + "MarketplaceURL": "", + "SupportURL": "", + "CanContainContent": true, + "IsBetaVersion": false, + "IsExperimentalVersion": false, + "Installed": false, + "Plugins": [ + { + "Name": "SML", + "Enabled": true, + "SemVersion": "^3.8.0" + }, + { + "Name": "ContentLib", + "Enabled": true, + "SemVersion": "^1.5.0" + } + ] +} \ No newline at end of file