Satisfactory ModdingSM
Satisfactory Modding2mo ago
23 replies
Raxells

Trouble to modify recipes

Hello, im trying to modifying the recipe of the space elevator wirh contentlib and nothing changed, here is my code :
//Game/FactoryGame/Recipes/Buildings/TowTruck/Recipe_SpaceElevator.Recipe_SpaceElevator_C
{
"$schema": "https://raw.githubusercontent.com/budak7273/ContentLib_Documentation/main/JsonSchemas/CL_Recipe.json",
"Name": "Ascenseur orbital",
"Ingredients": [
{
      "Item": "Desc_BronzeFrame",
      "Amount": 150
 },
{
      "Item": "Desc_ModularFrame",
      "Amount": 200
 },
{
      "Item": "Desc_Rotor",
      "Amount": 200
 },
{
      "Item": "Desc_CopperBusbars",
      "Amount": 200
 },
{
      "Item": "Desc_Desc_SpaceElevatorPart_1",
      "Amount": 200
 }, 
{
      "Item": "Desc_CopperSheet",
      "Amount": 400
 },
{
      "Item": "Desc_TinnedSheet",
      "Amount": 400
 },
{
      "Item": "Desc_IronSheet",
      "Amount": 400
 },
{
      "Item": "Desc_TinPlates",
      "Amount": 400
 },
{
      "Item": "Desc_ZincPlates",
      "Amount": 400
 },
{
      "Item": "Desc_BronzePlates",
      "Amount": 400
 },
{
      "Item": "Desc_Cement",
      "Amount": 1000
 },
{
      "Item": "Desc_IronPlateReinforced",
      "Amount": 200
 },
{
      "Item": "Desc_Wire",
      "Amount": 500
 },
{
      "Item": "Desc_IronWire",
      "Amount": 500
 },
{
      "Item": "Desc_IronScrew",
      "Amount": 1000
 }
],
"Products": [
{
      "Item": "Desc_SpaceElevator",
      "Amount": 1
 }],
"UnlockedBy": ["Schematic_Tutorial5_C"],
"ClearIngredients": true,
"ClearProducts": true
}
Was this page helpful?