diff --git a/.circleci/config.yml b/.circleci/config.yml index ca5ef735..6155c9dd 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -2,13 +2,13 @@ version: 2 jobs: build: docker: - - image: circleci/node:16.13 + - image: cimg/node:16.13 working_directory: ~/repo steps: - checkout - - run: sudo apt install -y rsync + - run: sudo apt update && sudo apt install -y rsync - restore_cache: keys: @@ -22,14 +22,14 @@ jobs: - node_modules key: v1-dependencies-{{ checksum "package.json" }} - - run: yarn build + - run: yarn buildCI - - deploy: + - run: command: | - if [ "${CIRCLE_BRANCH}" == "dev" ] + if [ "${CIRCLE_BRANCH}" == "master" ] then rsync -e "ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null" -arvc www/* $DEPLOY_USER@$DEPLOY_SERVER:$DEPLOY_PATH/www - elif [ "${CIRCLE_BRANCH}" == "_dev" ] + elif [ "${CIRCLE_BRANCH}" == "dev" ] then rsync -e "ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null" -arvc www/* $DEPLOY_USER@$DEPLOY_SERVER:$DEPLOY_PATH_TEST/www fi diff --git a/LICENSE b/LICENSE index f2d5057e..ea627ae4 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,10 @@ +This repository contains copyrighted material owned by Coffee Stain Studios (www/assets/images/items folder). +Permission to use, copy, modify, and distribute this material is granted only for the original repository. +Any forks or derivative works are not permitted to use the copyrighted material without explicit permission from the copyright owner. + MIT License -Copyright (c) 2019 greeny, LancelotP +Copyright (c) 2019 greeny Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/bin/generateImages.ts b/bin/generateImages.ts index b8b2ffb4..a9d93e1e 100644 --- a/bin/generateImages.ts +++ b/bin/generateImages.ts @@ -13,6 +13,9 @@ function processImage(file: string, slug: string) { if (!fs.existsSync(file)) { file = file.replace('_512', '_256'); } + if (!fs.existsSync(file)) { + file = file.replace('_64', '_256'); + } if (!fs.existsSync(file)) { console.error('Invalid mapping for ' + slug + ', file not found: ' + file); } else { diff --git a/bin/parseDocs.ts b/bin/parseDocs.ts index 40aa6178..7e52f65e 100644 --- a/bin/parseDocs.ts +++ b/bin/parseDocs.ts @@ -43,6 +43,9 @@ for (const definitions of docs) { case 'Class\'/Script/FactoryGame.FGItemDescAmmoTypeProjectile\'': case 'Class\'/Script/FactoryGame.FGItemDescAmmoTypeColorCartridge\'': case 'Class\'/Script/FactoryGame.FGItemDescAmmoTypeInstantHit\'': + case 'Class\'/Script/FactoryGame.FGAmmoTypeProjectile\'': + case 'Class\'/Script/FactoryGame.FGAmmoTypeSpreadshot\'': + case 'Class\'/Script/FactoryGame.FGAmmoTypeInstantHit\'': for (const item of parseItemDescriptors(definitions.Classes)) { json.items[item.className] = item; } @@ -295,7 +298,7 @@ for (const key in json.recipes) { for (const ingredient of recipe.ingredients) { if (!json.items[ingredient.item]) { - throw new Error('Invalid item ' + ingredient.item); + throw new Error('Invalid item ' + ingredient.item + ' (' + key + ')'); } if (json.items[ingredient.item].liquid) { ingredient.amount /= 1000; diff --git a/bin/parseDocs/itemDescriptor.ts b/bin/parseDocs/itemDescriptor.ts index 278e3ae3..4e99b2c8 100644 --- a/bin/parseDocs/itemDescriptor.ts +++ b/bin/parseDocs/itemDescriptor.ts @@ -42,6 +42,9 @@ export default function parseItemDescriptors(items: { 'Desc_Snowman_C', 'Desc_WreathDecor_C', 'Desc_XmassTree_C', + 'Desc_Fireworks_Projectile_01_C', + 'Desc_Fireworks_Projectile_02_C', + 'Desc_Fireworks_Projectile_03_C', ]; if (ignored.indexOf(item.ClassName) !== -1) { diff --git a/bin/parseDocs/schematic.ts b/bin/parseDocs/schematic.ts index fda1f2a3..7bb539f6 100644 --- a/bin/parseDocs/schematic.ts +++ b/bin/parseDocs/schematic.ts @@ -50,6 +50,10 @@ export default function parseSchematics(schematics: { continue; } + if (schematic.mDisplayName.match('Discontinued')) { + continue; + } + const requiredSchematics: string[] = []; const unlockData: ISchematicUnlockSchema = { inventorySlots: 0, diff --git a/data/data.json b/data/data.json index f19ac278..3da8c0a8 100644 --- a/data/data.json +++ b/data/data.json @@ -1,35415 +1,46398 @@ { - "recipes": { - "Recipe_AILimiter_C": { - "slug": "ai-limiter", - "name": "AI Limiter", - "className": "Recipe_AILimiter_C", - "alternate": false, - "time": 12, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_CopperSheet_C", - "amount": 5 - }, - { - "item": "Desc_HighSpeedWire_C", - "amount": 20 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": true, - "inWorkshop": false, - "products": [ - { - "item": "Desc_CircuitBoardHighSpeed_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_AssemblerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_AdheredIronPlate_C": { - "slug": "alternate-adhered-iron-plate", - "name": "Alternate: Adhered Iron Plate", - "className": "Recipe_Alternate_AdheredIronPlate_C", - "alternate": true, - "time": 16, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronPlate_C", - "amount": 3 - }, - { - "item": "Desc_Rubber_C", - "amount": 1 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_IronPlateReinforced_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_AssemblerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_AlcladCasing_C": { - "slug": "alternate-alclad-casing", - "name": "Alternate: Alclad Casing", - "className": "Recipe_Alternate_AlcladCasing_C", - "alternate": true, - "time": 8, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_AluminumIngot_C", - "amount": 20 - }, - { - "item": "Desc_CopperIngot_C", - "amount": 10 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_AluminumCasing_C", - "amount": 15 - } - ], - "producedIn": [ - "Desc_AssemblerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_AutomatedMiner_C": { - "slug": "alternate-automated-miner", - "name": "Alternate: Automated Miner", - "className": "Recipe_Alternate_AutomatedMiner_C", - "alternate": true, - "time": 60, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Motor_C", - "amount": 1 - }, - { - "item": "Desc_SteelPipe_C", - "amount": 4 - }, - { - "item": "Desc_IronRod_C", - "amount": 4 - }, - { - "item": "Desc_IronPlate_C", - "amount": 2 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "BP_ItemDescriptorPortableMiner_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_ManufacturerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_Beacon_1_C": { - "slug": "alternate-crystal-beacon", - "name": "Alternate: Crystal Beacon", - "className": "Recipe_Alternate_Beacon_1_C", - "alternate": true, - "time": 120, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_SteelPlate_C", - "amount": 4 - }, - { - "item": "Desc_SteelPipe_C", - "amount": 16 - }, - { - "item": "Desc_CrystalOscillator_C", - "amount": 1 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "BP_EquipmentDescriptorBeacon_C", - "amount": 20 - } - ], - "producedIn": [ - "Desc_ManufacturerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_BoltedFrame_C": { - "slug": "alternate-bolted-frame", - "name": "Alternate: Bolted Frame", - "className": "Recipe_Alternate_BoltedFrame_C", - "alternate": true, - "time": 24, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronPlateReinforced_C", - "amount": 3 - }, - { - "item": "Desc_IronScrew_C", - "amount": 56 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_ModularFrame_C", - "amount": 2 - } - ], - "producedIn": [ - "Desc_AssemblerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_Cable_1_C": { - "slug": "alternate-insulated-cable", - "name": "Alternate: Insulated Cable", - "className": "Recipe_Alternate_Cable_1_C", - "alternate": true, - "time": 12, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Wire_C", - "amount": 9 - }, - { - "item": "Desc_Rubber_C", - "amount": 6 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Cable_C", - "amount": 20 - } - ], - "producedIn": [ - "Desc_AssemblerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_Cable_2_C": { - "slug": "alternate-quickwire-cable", - "name": "Alternate: Quickwire Cable", - "className": "Recipe_Alternate_Cable_2_C", - "alternate": true, - "time": 24, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_HighSpeedWire_C", - "amount": 3 - }, - { - "item": "Desc_Rubber_C", - "amount": 2 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Cable_C", - "amount": 11 - } - ], - "producedIn": [ - "Desc_AssemblerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_CircuitBoard_1_C": { - "slug": "alternate-silicon-circuit-board", - "name": "Alternate: Silicon Circuit Board", - "className": "Recipe_Alternate_CircuitBoard_1_C", - "alternate": true, - "time": 24, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_CopperSheet_C", - "amount": 11 - }, - { - "item": "Desc_Silica_C", - "amount": 11 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_CircuitBoard_C", - "amount": 5 - } - ], - "producedIn": [ - "Desc_AssemblerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_CircuitBoard_2_C": { - "slug": "alternate-caterium-circuit-board", - "name": "Alternate: Caterium Circuit Board", - "className": "Recipe_Alternate_CircuitBoard_2_C", - "alternate": true, - "time": 48, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Plastic_C", - "amount": 10 - }, - { - "item": "Desc_HighSpeedWire_C", - "amount": 30 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_CircuitBoard_C", - "amount": 7 - } - ], - "producedIn": [ - "Desc_AssemblerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_ClassicBattery_C": { - "slug": "alternate-classic-battery", - "name": "Alternate: Classic Battery", - "className": "Recipe_Alternate_ClassicBattery_C", - "alternate": true, - "time": 8, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Sulfur_C", - "amount": 6 - }, - { - "item": "Desc_AluminumPlate_C", - "amount": 7 - }, - { - "item": "Desc_Plastic_C", - "amount": 8 - }, - { - "item": "Desc_Wire_C", - "amount": 12 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Battery_C", - "amount": 4 - } - ], - "producedIn": [ - "Desc_ManufacturerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_Coal_1_C": { - "slug": "alternate-charcoal", - "name": "Alternate: Charcoal", - "className": "Recipe_Alternate_Coal_1_C", - "alternate": true, - "time": 4, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Wood_C", - "amount": 1 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Coal_C", - "amount": 10 - } - ], - "producedIn": [ - "Desc_ConstructorMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_Coal_2_C": { - "slug": "alternate-biocoal", - "name": "Alternate: Biocoal", - "className": "Recipe_Alternate_Coal_2_C", - "alternate": true, - "time": 8, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_GenericBiomass_C", - "amount": 5 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Coal_C", - "amount": 6 - } - ], - "producedIn": [ - "Desc_ConstructorMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_CoatedCable_C": { - "slug": "alternate-coated-cable", - "name": "Alternate: Coated Cable", - "className": "Recipe_Alternate_CoatedCable_C", - "alternate": true, - "time": 8, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Wire_C", - "amount": 5 - }, - { - "item": "Desc_HeavyOilResidue_C", - "amount": 2 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Cable_C", - "amount": 9 - } - ], - "producedIn": [ - "Desc_OilRefinery_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_CoatedIronCanister_C": { - "slug": "alternate-coated-iron-canister", - "name": "Alternate: Coated Iron Canister", - "className": "Recipe_Alternate_CoatedIronCanister_C", - "alternate": true, - "time": 4, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronPlate_C", - "amount": 2 - }, - { - "item": "Desc_CopperSheet_C", - "amount": 1 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_FluidCanister_C", - "amount": 4 - } - ], - "producedIn": [ - "Desc_AssemblerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_CoatedIronPlate_C": { - "slug": "alternate-coated-iron-plate", - "name": "Alternate: Coated Iron Plate", - "className": "Recipe_Alternate_CoatedIronPlate_C", - "alternate": true, - "time": 12, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronIngot_C", - "amount": 10 - }, - { - "item": "Desc_Plastic_C", - "amount": 2 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_IronPlate_C", - "amount": 15 - } - ], - "producedIn": [ - "Desc_AssemblerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_CokeSteelIngot_C": { - "slug": "alternate-coke-steel-ingot", - "name": "Alternate: Coke Steel Ingot", - "className": "Recipe_Alternate_CokeSteelIngot_C", - "alternate": true, - "time": 12, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_OreIron_C", - "amount": 15 - }, - { - "item": "Desc_PetroleumCoke_C", - "amount": 15 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_SteelIngot_C", - "amount": 20 - } - ], - "producedIn": [ - "Desc_FoundryMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_Computer_1_C": { - "slug": "alternate-caterium-computer", - "name": "Alternate: Caterium Computer", - "className": "Recipe_Alternate_Computer_1_C", - "alternate": true, - "time": 16, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_CircuitBoard_C", - "amount": 7 - }, - { - "item": "Desc_HighSpeedWire_C", - "amount": 28 - }, - { - "item": "Desc_Rubber_C", - "amount": 12 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Computer_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_ManufacturerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_Computer_2_C": { - "slug": "alternate-crystal-computer", - "name": "Alternate: Crystal Computer", - "className": "Recipe_Alternate_Computer_2_C", - "alternate": true, - "time": 64, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_CircuitBoard_C", - "amount": 8 - }, - { - "item": "Desc_CrystalOscillator_C", - "amount": 3 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Computer_C", - "amount": 3 - } - ], - "producedIn": [ - "Desc_AssemblerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_Concrete_C": { - "slug": "alternate-fine-concrete", - "name": "Alternate: Fine Concrete", - "className": "Recipe_Alternate_Concrete_C", - "alternate": true, - "time": 24, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Silica_C", - "amount": 3 - }, - { - "item": "Desc_Stone_C", - "amount": 12 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Cement_C", - "amount": 10 - } - ], - "producedIn": [ - "Desc_AssemblerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_CoolingDevice_C": { - "slug": "alternate-cooling-device", - "name": "Alternate: Cooling Device", - "className": "Recipe_Alternate_CoolingDevice_C", - "alternate": true, - "time": 32, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_AluminumPlateReinforced_C", - "amount": 5 - }, - { - "item": "Desc_Motor_C", - "amount": 1 - }, - { - "item": "Desc_NitrogenGas_C", - "amount": 24 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_CoolingSystem_C", - "amount": 2 - } - ], - "producedIn": [ - "Desc_Blender_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_CopperAlloyIngot_C": { - "slug": "alternate-copper-alloy-ingot", - "name": "Alternate: Copper Alloy Ingot", - "className": "Recipe_Alternate_CopperAlloyIngot_C", - "alternate": true, - "time": 12, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_OreCopper_C", - "amount": 10 - }, - { - "item": "Desc_OreIron_C", - "amount": 5 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_CopperIngot_C", - "amount": 20 - } - ], - "producedIn": [ - "Desc_FoundryMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_CopperRotor_C": { - "slug": "alternate-copper-rotor", - "name": "Alternate: Copper Rotor", - "className": "Recipe_Alternate_CopperRotor_C", - "alternate": true, - "time": 16, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_CopperSheet_C", - "amount": 6 - }, - { - "item": "Desc_IronScrew_C", - "amount": 52 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Rotor_C", - "amount": 3 - } - ], - "producedIn": [ - "Desc_AssemblerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_CrystalOscillator_C": { - "slug": "alternate-insulated-crystal-oscillator", - "name": "Alternate: Insulated Crystal Oscillator", - "className": "Recipe_Alternate_CrystalOscillator_C", - "alternate": true, - "time": 32, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_QuartzCrystal_C", - "amount": 10 - }, - { - "item": "Desc_Rubber_C", - "amount": 7 - }, - { - "item": "Desc_CircuitBoardHighSpeed_C", - "amount": 1 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_CrystalOscillator_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_ManufacturerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_DilutedFuel_C": { - "slug": "alternate-diluted-fuel", - "name": "Alternate: Diluted Fuel", - "className": "Recipe_Alternate_DilutedFuel_C", - "alternate": true, - "time": 6, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_HeavyOilResidue_C", - "amount": 5 - }, - { - "item": "Desc_Water_C", - "amount": 10 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_LiquidFuel_C", - "amount": 10 - } - ], - "producedIn": [ - "Desc_Blender_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_DilutedPackagedFuel_C": { - "slug": "alternate-diluted-packaged-fuel", - "name": "Alternate: Diluted Packaged Fuel", - "className": "Recipe_Alternate_DilutedPackagedFuel_C", - "alternate": true, - "time": 2, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_HeavyOilResidue_C", - "amount": 1 - }, - { - "item": "Desc_PackagedWater_C", - "amount": 2 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Fuel_C", - "amount": 2 - } - ], - "producedIn": [ - "Desc_OilRefinery_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_ElectricMotor_C": { - "slug": "alternate-electric-motor", - "name": "Alternate: Electric Motor", - "className": "Recipe_Alternate_ElectricMotor_C", - "alternate": true, - "time": 16, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_ElectromagneticControlRod_C", - "amount": 1 - }, - { - "item": "Desc_Rotor_C", - "amount": 2 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Motor_C", - "amount": 2 - } - ], - "producedIn": [ - "Desc_AssemblerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_ElectroAluminumScrap_C": { - "slug": "alternate-electrode---aluminum-scrap", - "name": "Alternate: Electrode - Aluminum Scrap", - "className": "Recipe_Alternate_ElectroAluminumScrap_C", - "alternate": true, - "time": 4, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_AluminaSolution_C", - "amount": 12 - }, - { - "item": "Desc_PetroleumCoke_C", - "amount": 4 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_AluminumScrap_C", - "amount": 20 - }, - { - "item": "Desc_Water_C", - "amount": 7 - } - ], - "producedIn": [ - "Desc_OilRefinery_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_ElectrodeCircuitBoard_C": { - "slug": "alternate-electrode-circuit-board", - "name": "Alternate: Electrode Circuit Board", - "className": "Recipe_Alternate_ElectrodeCircuitBoard_C", - "alternate": true, - "time": 12, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Rubber_C", - "amount": 6 - }, - { - "item": "Desc_PetroleumCoke_C", - "amount": 9 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_CircuitBoard_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_AssemblerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_ElectromagneticControlRod_1_C": { - "slug": "alternate-electromagnetic-connection-rod", - "name": "Alternate: Electromagnetic Connection Rod", - "className": "Recipe_Alternate_ElectromagneticControlRod_1_C", - "alternate": true, - "time": 15, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Stator_C", - "amount": 2 - }, - { - "item": "Desc_HighSpeedConnector_C", - "amount": 1 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_ElectromagneticControlRod_C", - "amount": 2 - } - ], - "producedIn": [ - "Desc_AssemblerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_EncasedIndustrialBeam_C": { - "slug": "alternate-encased-industrial-pipe", - "name": "Alternate: Encased Industrial Pipe", - "className": "Recipe_Alternate_EncasedIndustrialBeam_C", - "alternate": true, - "time": 15, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_SteelPipe_C", - "amount": 7 - }, - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_SteelPlateReinforced_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_AssemblerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_EnrichedCoal_C": { - "slug": "alternate-compacted-coal", - "name": "Alternate: Compacted Coal", - "className": "Recipe_Alternate_EnrichedCoal_C", - "alternate": true, - "time": 12, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Coal_C", - "amount": 5 - }, - { - "item": "Desc_Sulfur_C", - "amount": 5 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_CompactedCoal_C", - "amount": 5 - } - ], - "producedIn": [ - "Desc_AssemblerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_FertileUranium_C": { - "slug": "alternate-fertile-uranium", - "name": "Alternate: Fertile Uranium", - "className": "Recipe_Alternate_FertileUranium_C", - "alternate": true, - "time": 12, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_OreUranium_C", - "amount": 5 - }, - { - "item": "Desc_NuclearWaste_C", - "amount": 5 - }, - { - "item": "Desc_NitricAcid_C", - "amount": 3 - }, - { - "item": "Desc_SulfuricAcid_C", - "amount": 5 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_NonFissibleUranium_C", - "amount": 20 - }, - { - "item": "Desc_Water_C", - "amount": 8 - } - ], - "producedIn": [ - "Desc_Blender_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_FlexibleFramework_C": { - "slug": "alternate-flexible-framework", - "name": "Alternate: Flexible Framework", - "className": "Recipe_Alternate_FlexibleFramework_C", - "alternate": true, - "time": 16, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_ModularFrame_C", - "amount": 1 - }, - { - "item": "Desc_SteelPlate_C", - "amount": 6 - }, - { - "item": "Desc_Rubber_C", - "amount": 8 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_SpaceElevatorPart_2_C", - "amount": 2 - } - ], - "producedIn": [ - "Desc_ManufacturerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_FusedWire_C": { - "slug": "alternate-fused-wire", - "name": "Alternate: Fused Wire", - "className": "Recipe_Alternate_FusedWire_C", - "alternate": true, - "time": 20, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_CopperIngot_C", - "amount": 4 - }, - { - "item": "Desc_GoldIngot_C", - "amount": 1 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wire_C", - "amount": 30 - } - ], - "producedIn": [ - "Desc_AssemblerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_Gunpowder_1_C": { - "slug": "alternate-fine-black-powder", - "name": "Alternate: Fine Black Powder", - "className": "Recipe_Alternate_Gunpowder_1_C", - "alternate": true, - "time": 16, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Sulfur_C", - "amount": 2 - }, - { - "item": "Desc_CompactedCoal_C", - "amount": 1 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Gunpowder_C", - "amount": 4 - } - ], - "producedIn": [ - "Desc_AssemblerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_HeatFusedFrame_C": { - "slug": "alternate-heat-fused-frame", - "name": "Alternate: Heat-Fused Frame", - "className": "Recipe_Alternate_HeatFusedFrame_C", - "alternate": true, - "time": 20, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_ModularFrameHeavy_C", - "amount": 1 - }, - { - "item": "Desc_AluminumIngot_C", - "amount": 50 - }, - { - "item": "Desc_NitricAcid_C", - "amount": 8 - }, - { - "item": "Desc_LiquidFuel_C", - "amount": 10 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_ModularFrameFused_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_Blender_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_HeatSink_1_C": { - "slug": "alternate-heat-exchanger", - "name": "Alternate: Heat Exchanger", - "className": "Recipe_Alternate_HeatSink_1_C", - "alternate": true, - "time": 6, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_AluminumCasing_C", - "amount": 3 - }, - { - "item": "Desc_Rubber_C", - "amount": 3 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_AluminumPlateReinforced_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_AssemblerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_HeavyFlexibleFrame_C": { - "slug": "alternate-heavy-flexible-frame", - "name": "Alternate: Heavy Flexible Frame", - "className": "Recipe_Alternate_HeavyFlexibleFrame_C", - "alternate": true, - "time": 16, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_ModularFrame_C", - "amount": 5 - }, - { - "item": "Desc_SteelPlateReinforced_C", - "amount": 3 - }, - { - "item": "Desc_Rubber_C", - "amount": 20 - }, - { - "item": "Desc_IronScrew_C", - "amount": 104 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_ModularFrameHeavy_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_ManufacturerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_HeavyOilResidue_C": { - "slug": "alternate-heavy-oil-residue", - "name": "Alternate: Heavy Oil Residue", - "className": "Recipe_Alternate_HeavyOilResidue_C", - "alternate": true, - "time": 6, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_LiquidOil_C", - "amount": 3 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_HeavyOilResidue_C", - "amount": 4 - }, - { - "item": "Desc_PolymerResin_C", - "amount": 2 - } - ], - "producedIn": [ - "Desc_OilRefinery_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_HighSpeedConnector_C": { - "slug": "alternate-silicon-high-speed-connector", - "name": "Alternate: Silicon High-Speed Connector", - "className": "Recipe_Alternate_HighSpeedConnector_C", - "alternate": true, - "time": 40, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_HighSpeedWire_C", - "amount": 60 - }, - { - "item": "Desc_Silica_C", - "amount": 25 - }, - { - "item": "Desc_CircuitBoard_C", - "amount": 2 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_HighSpeedConnector_C", - "amount": 2 - } - ], - "producedIn": [ - "Desc_ManufacturerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_HighSpeedWiring_C": { - "slug": "alternate-automated-speed-wiring", - "name": "Alternate: Automated Speed Wiring", - "className": "Recipe_Alternate_HighSpeedWiring_C", - "alternate": true, - "time": 32, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Stator_C", - "amount": 2 - }, - { - "item": "Desc_Wire_C", - "amount": 40 - }, - { - "item": "Desc_HighSpeedConnector_C", - "amount": 1 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_SpaceElevatorPart_3_C", - "amount": 4 - } - ], - "producedIn": [ - "Desc_ManufacturerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_IngotIron_C": { - "slug": "alternate-iron-alloy-ingot", - "name": "Alternate: Iron Alloy Ingot", - "className": "Recipe_Alternate_IngotIron_C", - "alternate": true, - "time": 6, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_OreIron_C", - "amount": 2 - }, - { - "item": "Desc_OreCopper_C", - "amount": 2 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_IronIngot_C", - "amount": 5 - } - ], - "producedIn": [ - "Desc_FoundryMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_IngotSteel_1_C": { - "slug": "alternate-solid-steel-ingot", - "name": "Alternate: Solid Steel Ingot", - "className": "Recipe_Alternate_IngotSteel_1_C", - "alternate": true, - "time": 3, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronIngot_C", - "amount": 2 - }, - { - "item": "Desc_Coal_C", - "amount": 2 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_SteelIngot_C", - "amount": 3 - } - ], - "producedIn": [ - "Desc_FoundryMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_IngotSteel_2_C": { - "slug": "alternate-compacted-steel-ingot", - "name": "Alternate: Compacted Steel Ingot", - "className": "Recipe_Alternate_IngotSteel_2_C", - "alternate": true, - "time": 16, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_OreIron_C", - "amount": 6 - }, - { - "item": "Desc_CompactedCoal_C", - "amount": 3 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_SteelIngot_C", - "amount": 10 - } - ], - "producedIn": [ - "Desc_FoundryMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_InstantPlutoniumCell_C": { - "slug": "alternate-instant-plutonium-cell", - "name": "Alternate: Instant Plutonium Cell", - "className": "Recipe_Alternate_InstantPlutoniumCell_C", - "alternate": true, - "time": 120, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_NonFissibleUranium_C", - "amount": 150 - }, - { - "item": "Desc_AluminumCasing_C", - "amount": 20 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_PlutoniumCell_C", - "amount": 20 - } - ], - "producedIn": [ - "Desc_HadronCollider_C" - ], - "isVariablePower": true, - "minPower": 250, - "maxPower": 750 - }, - "Recipe_Alternate_InstantScrap_C": { - "slug": "alternate-instant-scrap", - "name": "Alternate: Instant Scrap", - "className": "Recipe_Alternate_InstantScrap_C", - "alternate": true, - "time": 6, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_OreBauxite_C", - "amount": 15 - }, - { - "item": "Desc_Coal_C", - "amount": 10 - }, - { - "item": "Desc_SulfuricAcid_C", - "amount": 5 - }, - { - "item": "Desc_Water_C", - "amount": 6 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_AluminumScrap_C", - "amount": 30 - }, - { - "item": "Desc_Water_C", - "amount": 5 - } - ], - "producedIn": [ - "Desc_Blender_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_ModularFrameHeavy_C": { - "slug": "alternate-heavy-encased-frame", - "name": "Alternate: Heavy Encased Frame", - "className": "Recipe_Alternate_ModularFrameHeavy_C", - "alternate": true, - "time": 64, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_ModularFrame_C", - "amount": 8 - }, - { - "item": "Desc_SteelPlateReinforced_C", - "amount": 10 - }, - { - "item": "Desc_SteelPipe_C", - "amount": 36 - }, - { - "item": "Desc_Cement_C", - "amount": 22 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_ModularFrameHeavy_C", - "amount": 3 - } - ], - "producedIn": [ - "Desc_ManufacturerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_ModularFrame_C": { - "slug": "alternate-steeled-frame", - "name": "Alternate: Steeled Frame", - "className": "Recipe_Alternate_ModularFrame_C", - "alternate": true, - "time": 60, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronPlateReinforced_C", - "amount": 2 - }, - { - "item": "Desc_SteelPipe_C", - "amount": 10 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_ModularFrame_C", - "amount": 3 - } - ], - "producedIn": [ - "Desc_AssemblerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_Motor_1_C": { - "slug": "alternate-rigour-motor", - "name": "Alternate: Rigour Motor", - "className": "Recipe_Alternate_Motor_1_C", - "alternate": true, - "time": 48, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Rotor_C", - "amount": 3 - }, - { - "item": "Desc_Stator_C", - "amount": 3 - }, - { - "item": "Desc_CrystalOscillator_C", - "amount": 1 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Motor_C", - "amount": 6 - } - ], - "producedIn": [ - "Desc_ManufacturerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_Nobelisk_1_C": { - "slug": "alternate-seismic-nobelisk", - "name": "Alternate: Seismic Nobelisk", - "className": "Recipe_Alternate_Nobelisk_1_C", - "alternate": true, - "time": 40, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Gunpowder_C", - "amount": 8 - }, - { - "item": "Desc_SteelPipe_C", - "amount": 8 - }, - { - "item": "Desc_CrystalOscillator_C", - "amount": 1 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_NobeliskExplosive_C", - "amount": 4 - } - ], - "producedIn": [ - "Desc_ManufacturerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_NuclearFuelRod_1_C": { - "slug": "alternate-uranium-fuel-unit", - "name": "Alternate: Uranium Fuel Unit", - "className": "Recipe_Alternate_NuclearFuelRod_1_C", - "alternate": true, - "time": 300, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_UraniumCell_C", - "amount": 100 - }, - { - "item": "Desc_ElectromagneticControlRod_C", - "amount": 10 - }, - { - "item": "Desc_CrystalOscillator_C", - "amount": 3 - }, - { - "item": "BP_EquipmentDescriptorBeacon_C", - "amount": 6 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_NuclearFuelRod_C", - "amount": 3 - } - ], - "producedIn": [ - "Desc_ManufacturerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_OCSupercomputer_C": { - "slug": "alternate-oc-supercomputer", - "name": "Alternate: OC Supercomputer", - "className": "Recipe_Alternate_OCSupercomputer_C", - "alternate": true, - "time": 20, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_ModularFrameLightweight_C", - "amount": 3 - }, - { - "item": "Desc_CoolingSystem_C", - "amount": 3 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_ComputerSuper_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_AssemblerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_PlasticSmartPlating_C": { - "slug": "alternate-plastic-smart-plating", - "name": "Alternate: Plastic Smart Plating", - "className": "Recipe_Alternate_PlasticSmartPlating_C", - "alternate": true, - "time": 24, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronPlateReinforced_C", - "amount": 1 - }, - { - "item": "Desc_Rotor_C", - "amount": 1 - }, - { - "item": "Desc_Plastic_C", - "amount": 3 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_SpaceElevatorPart_1_C", - "amount": 2 - } - ], - "producedIn": [ - "Desc_ManufacturerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_Plastic_1_C": { - "slug": "alternate-recycled-plastic", - "name": "Alternate: Recycled Plastic", - "className": "Recipe_Alternate_Plastic_1_C", - "alternate": true, - "time": 12, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Rubber_C", - "amount": 6 - }, - { - "item": "Desc_LiquidFuel_C", - "amount": 6 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Plastic_C", - "amount": 12 - } - ], - "producedIn": [ - "Desc_OilRefinery_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_PlutoniumFuelUnit_C": { - "slug": "alternate-plutonium-fuel-unit", - "name": "Alternate: Plutonium Fuel Unit", - "className": "Recipe_Alternate_PlutoniumFuelUnit_C", - "alternate": true, - "time": 120, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_PlutoniumCell_C", - "amount": 20 - }, - { - "item": "Desc_PressureConversionCube_C", - "amount": 1 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_PlutoniumFuelRod_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_AssemblerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_PolyesterFabric_C": { - "slug": "alternate-polyester-fabric", - "name": "Alternate: Polyester Fabric", - "className": "Recipe_Alternate_PolyesterFabric_C", - "alternate": true, - "time": 12, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_PolymerResin_C", - "amount": 16 - }, - { - "item": "Desc_Water_C", - "amount": 10 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Fabric_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_OilRefinery_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_PolymerResin_C": { - "slug": "alternate-polymer-resin", - "name": "Alternate: Polymer Resin", - "className": "Recipe_Alternate_PolymerResin_C", - "alternate": true, - "time": 6, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_LiquidOil_C", - "amount": 6 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_PolymerResin_C", - "amount": 13 - }, - { - "item": "Desc_HeavyOilResidue_C", - "amount": 2 - } - ], - "producedIn": [ - "Desc_OilRefinery_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_PureCateriumIngot_C": { - "slug": "alternate-pure-caterium-ingot", - "name": "Alternate: Pure Caterium Ingot", - "className": "Recipe_Alternate_PureCateriumIngot_C", - "alternate": true, - "time": 5, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_OreGold_C", - "amount": 2 - }, - { - "item": "Desc_Water_C", - "amount": 2 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_GoldIngot_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_OilRefinery_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_PureCopperIngot_C": { - "slug": "alternate-pure-copper-ingot", - "name": "Alternate: Pure Copper Ingot", - "className": "Recipe_Alternate_PureCopperIngot_C", - "alternate": true, - "time": 24, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_OreCopper_C", - "amount": 6 - }, - { - "item": "Desc_Water_C", - "amount": 4 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_CopperIngot_C", - "amount": 15 - } - ], - "producedIn": [ - "Desc_OilRefinery_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_PureIronIngot_C": { - "slug": "alternate-pure-iron-ingot", - "name": "Alternate: Pure Iron Ingot", - "className": "Recipe_Alternate_PureIronIngot_C", - "alternate": true, - "time": 12, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_OreIron_C", - "amount": 7 - }, - { - "item": "Desc_Water_C", - "amount": 4 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_IronIngot_C", - "amount": 13 - } - ], - "producedIn": [ - "Desc_OilRefinery_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_PureQuartzCrystal_C": { - "slug": "alternate-pure-quartz-crystal", - "name": "Alternate: Pure Quartz Crystal", - "className": "Recipe_Alternate_PureQuartzCrystal_C", - "alternate": true, - "time": 8, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_RawQuartz_C", - "amount": 9 - }, - { - "item": "Desc_Water_C", - "amount": 5 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_QuartzCrystal_C", - "amount": 7 - } - ], - "producedIn": [ - "Desc_OilRefinery_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_Quickwire_C": { - "slug": "alternate-fused-quickwire", - "name": "Alternate: Fused Quickwire", - "className": "Recipe_Alternate_Quickwire_C", - "alternate": true, - "time": 8, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_GoldIngot_C", - "amount": 1 - }, - { - "item": "Desc_CopperIngot_C", - "amount": 5 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_HighSpeedWire_C", - "amount": 12 - } - ], - "producedIn": [ - "Desc_AssemblerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_RadioControlSystem_C": { - "slug": "alternate-radio-control-system", - "name": "Alternate: Radio Control System", - "className": "Recipe_Alternate_RadioControlSystem_C", - "alternate": true, - "time": 40, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_CrystalOscillator_C", - "amount": 1 - }, - { - "item": "Desc_CircuitBoard_C", - "amount": 10 - }, - { - "item": "Desc_AluminumCasing_C", - "amount": 60 - }, - { - "item": "Desc_Rubber_C", - "amount": 30 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_ModularFrameLightweight_C", - "amount": 3 - } - ], - "producedIn": [ - "Desc_ManufacturerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_RadioControlUnit_1_C": { - "slug": "alternate-radio-connection-unit", - "name": "Alternate: Radio Connection Unit", - "className": "Recipe_Alternate_RadioControlUnit_1_C", - "alternate": true, - "time": 16, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_AluminumPlateReinforced_C", - "amount": 4 - }, - { - "item": "Desc_HighSpeedConnector_C", - "amount": 2 - }, - { - "item": "Desc_QuartzCrystal_C", - "amount": 12 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_ModularFrameLightweight_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_ManufacturerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_RecycledRubber_C": { - "slug": "alternate-recycled-rubber", - "name": "Alternate: Recycled Rubber", - "className": "Recipe_Alternate_RecycledRubber_C", - "alternate": true, - "time": 12, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Plastic_C", - "amount": 6 - }, - { - "item": "Desc_LiquidFuel_C", - "amount": 6 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Rubber_C", - "amount": 12 - } - ], - "producedIn": [ - "Desc_OilRefinery_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_ReinforcedIronPlate_1_C": { - "slug": "alternate-bolted-iron-plate", - "name": "Alternate: Bolted Iron Plate", - "className": "Recipe_Alternate_ReinforcedIronPlate_1_C", - "alternate": true, - "time": 12, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronPlate_C", - "amount": 18 - }, - { - "item": "Desc_IronScrew_C", - "amount": 50 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_IronPlateReinforced_C", - "amount": 3 - } - ], - "producedIn": [ - "Desc_AssemblerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_ReinforcedIronPlate_2_C": { - "slug": "alternate-stitched-iron-plate", - "name": "Alternate: Stitched Iron Plate", - "className": "Recipe_Alternate_ReinforcedIronPlate_2_C", - "alternate": true, - "time": 32, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronPlate_C", - "amount": 10 - }, - { - "item": "Desc_Wire_C", - "amount": 20 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_IronPlateReinforced_C", - "amount": 3 - } - ], - "producedIn": [ - "Desc_AssemblerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_Rotor_C": { - "slug": "alternate-steel-rotor", - "name": "Alternate: Steel Rotor", - "className": "Recipe_Alternate_Rotor_C", - "alternate": true, - "time": 12, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_SteelPipe_C", - "amount": 2 - }, - { - "item": "Desc_Wire_C", - "amount": 6 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Rotor_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_AssemblerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_RubberConcrete_C": { - "slug": "alternate-rubber-concrete", - "name": "Alternate: Rubber Concrete", - "className": "Recipe_Alternate_RubberConcrete_C", - "alternate": true, - "time": 12, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Stone_C", - "amount": 10 - }, - { - "item": "Desc_Rubber_C", - "amount": 2 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Cement_C", - "amount": 9 - } - ], - "producedIn": [ - "Desc_AssemblerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_Screw_2_C": { - "slug": "alternate-steel-screw", - "name": "Alternate: Steel Screw", - "className": "Recipe_Alternate_Screw_2_C", - "alternate": true, - "time": 12, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_SteelPlate_C", - "amount": 1 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_IronScrew_C", - "amount": 52 - } - ], - "producedIn": [ - "Desc_ConstructorMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_Screw_C": { - "slug": "alternate-cast-screw", - "name": "Alternate: Cast Screw", - "className": "Recipe_Alternate_Screw_C", - "alternate": true, - "time": 24, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronIngot_C", - "amount": 5 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_IronScrew_C", - "amount": 20 - } - ], - "producedIn": [ - "Desc_ConstructorMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_Silica_C": { - "slug": "alternate-cheap-silica", - "name": "Alternate: Cheap Silica", - "className": "Recipe_Alternate_Silica_C", - "alternate": true, - "time": 16, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_RawQuartz_C", - "amount": 3 - }, - { - "item": "Desc_Stone_C", - "amount": 5 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Silica_C", - "amount": 7 - } - ], - "producedIn": [ - "Desc_AssemblerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_SloppyAlumina_C": { - "slug": "alternate-sloppy-alumina", - "name": "Alternate: Sloppy Alumina", - "className": "Recipe_Alternate_SloppyAlumina_C", - "alternate": true, - "time": 3, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_OreBauxite_C", - "amount": 10 - }, - { - "item": "Desc_Water_C", - "amount": 10 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_AluminaSolution_C", - "amount": 12 - } - ], - "producedIn": [ - "Desc_OilRefinery_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_Stator_C": { - "slug": "alternate-quickwire-stator", - "name": "Alternate: Quickwire Stator", - "className": "Recipe_Alternate_Stator_C", - "alternate": true, - "time": 15, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_SteelPipe_C", - "amount": 4 - }, - { - "item": "Desc_HighSpeedWire_C", - "amount": 15 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Stator_C", - "amount": 2 - } - ], - "producedIn": [ - "Desc_AssemblerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_SteamedCopperSheet_C": { - "slug": "alternate-steamed-copper-sheet", - "name": "Alternate: Steamed Copper Sheet", - "className": "Recipe_Alternate_SteamedCopperSheet_C", - "alternate": true, - "time": 8, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_CopperIngot_C", - "amount": 3 - }, - { - "item": "Desc_Water_C", - "amount": 3 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_CopperSheet_C", - "amount": 3 - } - ], - "producedIn": [ - "Desc_OilRefinery_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_SteelCanister_C": { - "slug": "alternate-steel-canister", - "name": "Alternate: Steel Canister", - "className": "Recipe_Alternate_SteelCanister_C", - "alternate": true, - "time": 3, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_SteelIngot_C", - "amount": 3 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_FluidCanister_C", - "amount": 2 - } - ], - "producedIn": [ - "Desc_ConstructorMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_SteelCoatedPlate_C": { - "slug": "alternate-steel-coated-plate", - "name": "Alternate: Steel Coated Plate", - "className": "Recipe_Alternate_SteelCoatedPlate_C", - "alternate": true, - "time": 24, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_SteelIngot_C", - "amount": 3 - }, - { - "item": "Desc_Plastic_C", - "amount": 2 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_IronPlate_C", - "amount": 18 - } - ], - "producedIn": [ - "Desc_AssemblerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_SteelRod_C": { - "slug": "alternate-steel-rod", - "name": "Alternate: Steel Rod", - "className": "Recipe_Alternate_SteelRod_C", - "alternate": true, - "time": 5, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_SteelIngot_C", - "amount": 1 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_IronRod_C", - "amount": 4 - } - ], - "producedIn": [ - "Desc_ConstructorMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_SuperStateComputer_C": { - "slug": "alternate-super-state-computer", - "name": "Alternate: Super-State Computer", - "className": "Recipe_Alternate_SuperStateComputer_C", - "alternate": true, - "time": 50, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Computer_C", - "amount": 3 - }, - { - "item": "Desc_ElectromagneticControlRod_C", - "amount": 2 - }, - { - "item": "Desc_Battery_C", - "amount": 20 - }, - { - "item": "Desc_Wire_C", - "amount": 45 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_ComputerSuper_C", - "amount": 2 - } - ], - "producedIn": [ - "Desc_ManufacturerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_TurboBlendFuel_C": { - "slug": "alternate-turbo-blend-fuel", - "name": "Alternate: Turbo Blend Fuel", - "className": "Recipe_Alternate_TurboBlendFuel_C", - "alternate": true, - "time": 8, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_LiquidFuel_C", - "amount": 2 - }, - { - "item": "Desc_HeavyOilResidue_C", - "amount": 4 - }, - { - "item": "Desc_Sulfur_C", - "amount": 3 - }, - { - "item": "Desc_PetroleumCoke_C", - "amount": 3 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_LiquidTurboFuel_C", - "amount": 6 - } - ], - "producedIn": [ - "Desc_Blender_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_TurboHeavyFuel_C": { - "slug": "alternate-turbo-heavy-fuel", - "name": "Alternate: Turbo Heavy Fuel", - "className": "Recipe_Alternate_TurboHeavyFuel_C", - "alternate": true, - "time": 8, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_HeavyOilResidue_C", - "amount": 5 - }, - { - "item": "Desc_CompactedCoal_C", - "amount": 4 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_LiquidTurboFuel_C", - "amount": 4 - } - ], - "producedIn": [ - "Desc_OilRefinery_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_TurboMotor_1_C": { - "slug": "alternate-turbo-electric-motor", - "name": "Alternate: Turbo Electric Motor", - "className": "Recipe_Alternate_TurboMotor_1_C", - "alternate": true, - "time": 64, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Motor_C", - "amount": 7 - }, - { - "item": "Desc_ModularFrameLightweight_C", - "amount": 9 - }, - { - "item": "Desc_ElectromagneticControlRod_C", - "amount": 5 - }, - { - "item": "Desc_Rotor_C", - "amount": 7 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_MotorLightweight_C", - "amount": 3 - } - ], - "producedIn": [ - "Desc_ManufacturerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_TurboPressureMotor_C": { - "slug": "alternate-turbo-pressure-motor", - "name": "Alternate: Turbo Pressure Motor", - "className": "Recipe_Alternate_TurboPressureMotor_C", - "alternate": true, - "time": 32, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Motor_C", - "amount": 4 - }, - { - "item": "Desc_PressureConversionCube_C", - "amount": 1 - }, - { - "item": "Desc_PackagedNitrogenGas_C", - "amount": 24 - }, - { - "item": "Desc_Stator_C", - "amount": 8 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_MotorLightweight_C", - "amount": 2 - } - ], - "producedIn": [ - "Desc_ManufacturerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_Turbofuel_C": { - "slug": "turbofuel", - "name": "Turbofuel", - "className": "Recipe_Alternate_Turbofuel_C", - "alternate": true, - "time": 16, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_LiquidFuel_C", - "amount": 6 - }, - { - "item": "Desc_CompactedCoal_C", - "amount": 4 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_LiquidTurboFuel_C", - "amount": 5 - } - ], - "producedIn": [ - "Desc_OilRefinery_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_UraniumCell_1_C": { - "slug": "alternate-infused-uranium-cell", - "name": "Alternate: Infused Uranium Cell", - "className": "Recipe_Alternate_UraniumCell_1_C", - "alternate": true, - "time": 12, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_OreUranium_C", - "amount": 5 - }, - { - "item": "Desc_Silica_C", - "amount": 3 - }, - { - "item": "Desc_Sulfur_C", - "amount": 5 - }, - { - "item": "Desc_HighSpeedWire_C", - "amount": 15 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_UraniumCell_C", - "amount": 4 - } - ], - "producedIn": [ - "Desc_ManufacturerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_WetConcrete_C": { - "slug": "alternate-wet-concrete", - "name": "Alternate: Wet Concrete", - "className": "Recipe_Alternate_WetConcrete_C", - "alternate": true, - "time": 3, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Stone_C", - "amount": 6 - }, - { - "item": "Desc_Water_C", - "amount": 5 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Cement_C", - "amount": 4 - } - ], - "producedIn": [ - "Desc_OilRefinery_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_Wire_1_C": { - "slug": "alternate-iron-wire", - "name": "Alternate: Iron Wire", - "className": "Recipe_Alternate_Wire_1_C", - "alternate": true, - "time": 24, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronIngot_C", - "amount": 5 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wire_C", - "amount": 9 - } - ], - "producedIn": [ - "Desc_ConstructorMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Alternate_Wire_2_C": { - "slug": "alternate-caterium-wire", - "name": "Alternate: Caterium Wire", - "className": "Recipe_Alternate_Wire_2_C", - "alternate": true, - "time": 4, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_GoldIngot_C", - "amount": 1 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wire_C", - "amount": 8 - } - ], - "producedIn": [ - "Desc_ConstructorMk1_C" - ], - "isVariablePower": false - }, - "Recipe_AluminaSolution_C": { - "slug": "alumina-solution", - "name": "Alumina Solution", - "className": "Recipe_AluminaSolution_C", - "alternate": false, - "time": 6, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_OreBauxite_C", - "amount": 12 - }, - { - "item": "Desc_Water_C", - "amount": 18 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_AluminaSolution_C", - "amount": 12 - }, - { - "item": "Desc_Silica_C", - "amount": 5 - } - ], - "producedIn": [ - "Desc_OilRefinery_C" - ], - "isVariablePower": false - }, - "Recipe_AluminumCasing_C": { - "slug": "aluminum-casing", - "name": "Aluminum Casing", - "className": "Recipe_AluminumCasing_C", - "alternate": false, - "time": 2, - "manualTimeMultiplier": 2, - "ingredients": [ - { - "item": "Desc_AluminumIngot_C", - "amount": 3 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": true, - "inWorkshop": false, - "products": [ - { - "item": "Desc_AluminumCasing_C", - "amount": 2 - } - ], - "producedIn": [ - "Desc_ConstructorMk1_C" - ], - "isVariablePower": false - }, - "Recipe_AluminumScrap_C": { - "slug": "aluminum-scrap", - "name": "Aluminum Scrap", - "className": "Recipe_AluminumScrap_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_AluminaSolution_C", - "amount": 4 - }, - { - "item": "Desc_Coal_C", - "amount": 2 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_AluminumScrap_C", - "amount": 6 - }, - { - "item": "Desc_Water_C", - "amount": 2 - } - ], - "producedIn": [ - "Desc_OilRefinery_C" - ], - "isVariablePower": false - }, - "Recipe_AluminumSheet_C": { - "slug": "alclad-aluminum-sheet", - "name": "Alclad Aluminum Sheet", - "className": "Recipe_AluminumSheet_C", - "alternate": false, - "time": 6, - "manualTimeMultiplier": 2, - "ingredients": [ - { - "item": "Desc_AluminumIngot_C", - "amount": 3 - }, - { - "item": "Desc_CopperIngot_C", - "amount": 1 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": true, - "inWorkshop": false, - "products": [ - { - "item": "Desc_AluminumPlate_C", - "amount": 3 - } - ], - "producedIn": [ - "Desc_AssemblerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_AssemblerMk1_C": { - "slug": "assembler", - "name": "Assembler", - "className": "Recipe_AssemblerMk1_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronPlateReinforced_C", - "amount": 8 - }, - { - "item": "Desc_Rotor_C", - "amount": 4 - }, - { - "item": "Desc_Cable_C", - "amount": 10 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_AssemblerMk1_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Battery_C": { - "slug": "battery", - "name": "Battery", - "className": "Recipe_Battery_C", - "alternate": false, - "time": 3, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_SulfuricAcid_C", - "amount": 2.5 - }, - { - "item": "Desc_AluminaSolution_C", - "amount": 2 - }, - { - "item": "Desc_AluminumCasing_C", - "amount": 1 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Battery_C", - "amount": 1 - }, - { - "item": "Desc_Water_C", - "amount": 1.5 - } - ], - "producedIn": [ - "Desc_Blender_C" - ], - "isVariablePower": false - }, - "Recipe_Beacon_C": { - "slug": "beacon", - "name": "Beacon", - "className": "Recipe_Beacon_C", - "alternate": false, - "time": 8, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronPlate_C", - "amount": 3 - }, - { - "item": "Desc_IronRod_C", - "amount": 1 - }, - { - "item": "Desc_Wire_C", - "amount": 15 - }, - { - "item": "Desc_Cable_C", - "amount": 2 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": true, - "products": [ - { - "item": "BP_EquipmentDescriptorBeacon_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_ManufacturerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Beam_C": { - "slug": "metal-beam", - "name": "Metal Beam", - "className": "Recipe_Beam_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_SteelPlate_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Beam_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Beam_Connector_C": { - "slug": "beam-connector", - "name": "Beam Connector", - "className": "Recipe_Beam_Connector_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Beam_Connector_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Beam_Connector_Double_C": { - "slug": "beam-connector-double", - "name": "Beam Connector Double", - "className": "Recipe_Beam_Connector_Double_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Beam_Connector_Double_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Beam_Painted_C": { - "slug": "painted-beam", - "name": "Painted Beam", - "className": "Recipe_Beam_Painted_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_SteelPlate_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Beam_Painted_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Beam_Support_C": { - "slug": "beam-support", - "name": "Beam Support", - "className": "Recipe_Beam_Support_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Beam_Support_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Biofuel_C": { - "slug": "solid-biofuel", - "name": "Solid Biofuel", - "className": "Recipe_Biofuel_C", - "alternate": false, - "time": 4, - "manualTimeMultiplier": 5, - "ingredients": [ - { - "item": "Desc_GenericBiomass_C", - "amount": 8 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": true, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Biofuel_C", - "amount": 4 - } - ], - "producedIn": [ - "Desc_ConstructorMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Biomass_AlienCarapace_C": { - "slug": "biomass-(alien-carapace)", - "name": "Biomass (Alien Carapace)", - "className": "Recipe_Biomass_AlienCarapace_C", - "alternate": false, - "time": 4, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_HogParts_C", - "amount": 1 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": true, - "inWorkshop": false, - "products": [ - { - "item": "Desc_GenericBiomass_C", - "amount": 100 - } - ], - "producedIn": [ - "Desc_ConstructorMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Biomass_AlienOrgans_C": { - "slug": "biomass-(alien-organs)", - "name": "Biomass (Alien Organs)", - "className": "Recipe_Biomass_AlienOrgans_C", - "alternate": false, - "time": 8, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_SpitterParts_C", - "amount": 1 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": true, - "inWorkshop": false, - "products": [ - { - "item": "Desc_GenericBiomass_C", - "amount": 200 - } - ], - "producedIn": [ - "Desc_ConstructorMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Biomass_Leaves_C": { - "slug": "biomass-(leaves)", - "name": "Biomass (Leaves)", - "className": "Recipe_Biomass_Leaves_C", - "alternate": false, - "time": 5, - "manualTimeMultiplier": 0.4, - "ingredients": [ - { - "item": "Desc_Leaves_C", - "amount": 10 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": true, - "inWorkshop": false, - "products": [ - { - "item": "Desc_GenericBiomass_C", - "amount": 5 - } - ], - "producedIn": [ - "Desc_ConstructorMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Biomass_Mycelia_C": { - "slug": "biomass-(mycelia)", - "name": "Biomass (Mycelia)", - "className": "Recipe_Biomass_Mycelia_C", - "alternate": false, - "time": 4, - "manualTimeMultiplier": 0.5, - "ingredients": [ - { - "item": "Desc_Mycelia_C", - "amount": 10 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": true, - "inWorkshop": false, - "products": [ - { - "item": "Desc_GenericBiomass_C", - "amount": 10 - } - ], - "producedIn": [ - "Desc_ConstructorMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Biomass_Wood_C": { - "slug": "biomass-(wood)", - "name": "Biomass (Wood)", - "className": "Recipe_Biomass_Wood_C", - "alternate": false, - "time": 4, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Wood_C", - "amount": 4 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": true, - "inWorkshop": false, - "products": [ - { - "item": "Desc_GenericBiomass_C", - "amount": 20 - } - ], - "producedIn": [ - "Desc_ConstructorMk1_C" - ], - "isVariablePower": false - }, - "Recipe_BladeRunners_C": { - "slug": "blade-runners", - "name": "Blade Runners", - "className": "Recipe_BladeRunners_C", - "alternate": false, - "time": 80, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_HighSpeedWire_C", - "amount": 50 - }, - { - "item": "Desc_ModularFrame_C", - "amount": 3 - }, - { - "item": "Desc_Rotor_C", - "amount": 3 - } - ], - "forBuilding": false, - "inMachine": false, - "inHand": false, - "inWorkshop": true, - "products": [ - { - "item": "BP_EquipmentDescriptorJumpingStilts_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Blender_C": { - "slug": "blender", - "name": "Blender", - "className": "Recipe_Blender_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Motor_C", - "amount": 20 - }, - { - "item": "Desc_ModularFrameHeavy_C", - "amount": 10 - }, - { - "item": "Desc_AluminumCasing_C", - "amount": 50 - }, - { - "item": "Desc_ModularFrameLightweight_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Blender_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Cable_C": { - "slug": "cable", - "name": "Cable", - "className": "Recipe_Cable_C", - "alternate": false, - "time": 2, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Wire_C", - "amount": 2 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": true, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Cable_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_ConstructorMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Cartridge_C": { - "slug": "rifle-cartridge", - "name": "Rifle Cartridge", - "className": "Recipe_Cartridge_C", - "alternate": false, - "time": 20, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "BP_EquipmentDescriptorBeacon_C", - "amount": 1 - }, - { - "item": "Desc_SteelPipe_C", - "amount": 10 - }, - { - "item": "Desc_Gunpowder_C", - "amount": 10 - }, - { - "item": "Desc_Rubber_C", - "amount": 10 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": true, - "inWorkshop": true, - "products": [ - { - "item": "Desc_CartridgeStandard_C", - "amount": 5 - } - ], - "producedIn": [ - "Desc_ManufacturerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Catwalk_Cross_C": { - "slug": "catwalk-crossing", - "name": "Catwalk Crossing", - "className": "Recipe_Catwalk_Cross_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronRod_C", - "amount": 2 - }, - { - "item": "Desc_IronPlate_C", - "amount": 1 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_CatwalkCross_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Catwalk_Ramp_C": { - "slug": "catwalk-ramp", - "name": "Catwalk Ramp", - "className": "Recipe_Catwalk_Ramp_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronRod_C", - "amount": 2 - }, - { - "item": "Desc_IronPlate_C", - "amount": 1 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_CatwalkRamp_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Catwalk_Stairs_C": { - "slug": "catwalk-stairs", - "name": "Catwalk Stairs", - "className": "Recipe_Catwalk_Stairs_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronRod_C", - "amount": 2 - }, - { - "item": "Desc_IronPlate_C", - "amount": 1 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_CatwalkStairs_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Catwalk_Straight_C": { - "slug": "catwalk-straight", - "name": "Catwalk Straight", - "className": "Recipe_Catwalk_Straight_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronRod_C", - "amount": 2 - }, - { - "item": "Desc_IronPlate_C", - "amount": 1 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_CatwalkStraight_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Catwalk_T_C": { - "slug": "catwalk-t-crossing", - "name": "Catwalk T-Crossing", - "className": "Recipe_Catwalk_T_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronRod_C", - "amount": 2 - }, - { - "item": "Desc_IronPlate_C", - "amount": 1 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_CatwalkT_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Catwalk_Turn_C": { - "slug": "catwalk-corner", - "name": "Catwalk Corner", - "className": "Recipe_Catwalk_Turn_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronRod_C", - "amount": 2 - }, - { - "item": "Desc_IronPlate_C", - "amount": 1 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_CatwalkTurn_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_CeilingLight_C": { - "slug": "ceiling-light", - "name": "Ceiling Light", - "className": "Recipe_CeilingLight_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_HighSpeedWire_C", - "amount": 50 - }, - { - "item": "Desc_Wire_C", - "amount": 16 - }, - { - "item": "Desc_SteelPlate_C", - "amount": 6 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_CeilingLight_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Chainsaw_C": { - "slug": "chainsaw", - "name": "Chainsaw", - "className": "Recipe_Chainsaw_C", - "alternate": false, - "time": 60, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronPlateReinforced_C", - "amount": 5 - }, - { - "item": "Desc_IronRod_C", - "amount": 25 - }, - { - "item": "Desc_IronScrew_C", - "amount": 160 - }, - { - "item": "Desc_Cable_C", - "amount": 15 - } - ], - "forBuilding": false, - "inMachine": false, - "inHand": false, - "inWorkshop": true, - "products": [ - { - "item": "Desc_Chainsaw_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_CircuitBoard_C": { - "slug": "circuit-board", - "name": "Circuit Board", - "className": "Recipe_CircuitBoard_C", - "alternate": false, - "time": 8, - "manualTimeMultiplier": 1.5, - "ingredients": [ - { - "item": "Desc_CopperSheet_C", - "amount": 2 - }, - { - "item": "Desc_Plastic_C", - "amount": 4 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": true, - "inWorkshop": false, - "products": [ - { - "item": "Desc_CircuitBoard_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_AssemblerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_ColorCartridge_C": { - "slug": "color-cartridge", - "name": "Color Cartridge", - "className": "Recipe_ColorCartridge_C", - "alternate": false, - "time": 8, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_FlowerPetals_C", - "amount": 5 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": true, - "inWorkshop": true, - "products": [ - { - "item": "Desc_ColorCartridge_C", - "amount": 10 - } - ], - "producedIn": [ - "Desc_ConstructorMk1_C" - ], - "isVariablePower": false - }, - "Recipe_ComputerSuper_C": { - "slug": "supercomputer", - "name": "Supercomputer", - "className": "Recipe_ComputerSuper_C", - "alternate": false, - "time": 32, - "manualTimeMultiplier": 1.5, - "ingredients": [ - { - "item": "Desc_Computer_C", - "amount": 2 - }, - { - "item": "Desc_CircuitBoardHighSpeed_C", - "amount": 2 - }, - { - "item": "Desc_HighSpeedConnector_C", - "amount": 3 - }, - { - "item": "Desc_Plastic_C", - "amount": 28 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": true, - "inWorkshop": false, - "products": [ - { - "item": "Desc_ComputerSuper_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_ManufacturerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Computer_C": { - "slug": "computer", - "name": "Computer", - "className": "Recipe_Computer_C", - "alternate": false, - "time": 24, - "manualTimeMultiplier": 1.5, - "ingredients": [ - { - "item": "Desc_CircuitBoard_C", - "amount": 10 - }, - { - "item": "Desc_Cable_C", - "amount": 9 - }, - { - "item": "Desc_Plastic_C", - "amount": 18 - }, - { - "item": "Desc_IronScrew_C", - "amount": 52 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": true, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Computer_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_ManufacturerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Concrete_Barrier_01_C": { - "slug": "road-barrier", - "name": "Road Barrier", - "className": "Recipe_Concrete_Barrier_01_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Concrete_Barrier_01_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Concrete_C": { - "slug": "concrete", - "name": "Concrete", - "className": "Recipe_Concrete_C", - "alternate": false, - "time": 4, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Stone_C", - "amount": 3 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": true, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Cement_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_ConstructorMk1_C" - ], - "isVariablePower": false - }, - "Recipe_ConstructorMk1_C": { - "slug": "constructor", - "name": "Constructor", - "className": "Recipe_ConstructorMk1_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronPlateReinforced_C", - "amount": 2 - }, - { - "item": "Desc_Cable_C", - "amount": 8 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_ConstructorMk1_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_ConveyorAttachmentMerger_C": { - "slug": "conveyor-merger", - "name": "Conveyor Merger", - "className": "Recipe_ConveyorAttachmentMerger_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronPlate_C", - "amount": 2 - }, - { - "item": "Desc_IronRod_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_ConveyorAttachmentMerger_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_ConveyorAttachmentSplitterProgrammable_C": { - "slug": "programmable-splitter", - "name": "Programmable Splitter", - "className": "Recipe_ConveyorAttachmentSplitterProgrammable_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_ModularFrameHeavy_C", - "amount": 1 - }, - { - "item": "Desc_Motor_C", - "amount": 1 - }, - { - "item": "Desc_ComputerSuper_C", - "amount": 1 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_ConveyorAttachmentSplitterProgrammable_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_ConveyorAttachmentSplitterSmart_C": { - "slug": "smart-splitter", - "name": "Smart Splitter", - "className": "Recipe_ConveyorAttachmentSplitterSmart_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronPlateReinforced_C", - "amount": 2 - }, - { - "item": "Desc_Rotor_C", - "amount": 2 - }, - { - "item": "Desc_CircuitBoardHighSpeed_C", - "amount": 1 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_ConveyorAttachmentSplitterSmart_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_ConveyorAttachmentSplitter_C": { - "slug": "conveyor-splitter", - "name": "Conveyor Splitter", - "className": "Recipe_ConveyorAttachmentSplitter_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronPlate_C", - "amount": 2 - }, - { - "item": "Desc_Cable_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_ConveyorAttachmentSplitter_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_ConveyorBeltMk1_C": { - "slug": "conveyor-belt-mk-1", - "name": "Conveyor Belt Mk.1", - "className": "Recipe_ConveyorBeltMk1_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronPlate_C", - "amount": 1 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_ConveyorBeltMk1_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_ConveyorBeltMk2_C": { - "slug": "conveyor-belt-mk-2", - "name": "Conveyor Belt Mk.2", - "className": "Recipe_ConveyorBeltMk2_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronPlateReinforced_C", - "amount": 1 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_ConveyorBeltMk2_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_ConveyorBeltMk3_C": { - "slug": "conveyor-belt-mk-3", - "name": "Conveyor Belt Mk.3", - "className": "Recipe_ConveyorBeltMk3_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_SteelPlate_C", - "amount": 1 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_ConveyorBeltMk3_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_ConveyorBeltMk4_C": { - "slug": "conveyor-belt-mk-4", - "name": "Conveyor Belt Mk.4", - "className": "Recipe_ConveyorBeltMk4_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_SteelPlateReinforced_C", - "amount": 1 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_ConveyorBeltMk4_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_ConveyorBeltMk5_C": { - "slug": "conveyor-belt-mk-5", - "name": "Conveyor Belt Mk.5", - "className": "Recipe_ConveyorBeltMk5_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_AluminumPlate_C", - "amount": 1 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_ConveyorBeltMk5_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_ConveyorLiftMk1_C": { - "slug": "conveyor-lift-mk-1", - "name": "Conveyor Lift Mk.1", - "className": "Recipe_ConveyorLiftMk1_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronPlate_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_ConveyorLiftMk1_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_ConveyorLiftMk2_C": { - "slug": "conveyor-lift-mk-2", - "name": "Conveyor Lift Mk.2", - "className": "Recipe_ConveyorLiftMk2_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronPlateReinforced_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_ConveyorLiftMk2_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_ConveyorLiftMk3_C": { - "slug": "conveyor-lift-mk-3", - "name": "Conveyor Lift Mk.3", - "className": "Recipe_ConveyorLiftMk3_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_SteelPlate_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_ConveyorLiftMk3_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_ConveyorLiftMk4_C": { - "slug": "conveyor-lift-mk-4", - "name": "Conveyor Lift Mk.4", - "className": "Recipe_ConveyorLiftMk4_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_SteelPlateReinforced_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_ConveyorLiftMk4_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_ConveyorLiftMk5_C": { - "slug": "conveyor-lift-mk-5", - "name": "Conveyor Lift Mk.5", - "className": "Recipe_ConveyorLiftMk5_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_AluminumPlate_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_ConveyorLiftMk5_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_ConveyorPoleStackable_C": { - "slug": "stackable-conveyor-pole", - "name": "Stackable Conveyor Pole", - "className": "Recipe_ConveyorPoleStackable_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronRod_C", - "amount": 2 - }, - { - "item": "Desc_IronPlate_C", - "amount": 2 - }, - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_ConveyorPoleStackable_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_ConveyorPoleWall_C": { - "slug": "conveyor-wall-mount", - "name": "Conveyor Wall Mount", - "className": "Recipe_ConveyorPoleWall_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronRod_C", - "amount": 2 - }, - { - "item": "Desc_IronPlate_C", - "amount": 2 - }, - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_ConveyorPoleWall_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_ConveyorPole_C": { - "slug": "conveyor-pole", - "name": "Conveyor Pole", - "className": "Recipe_ConveyorPole_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronRod_C", - "amount": 1 - }, - { - "item": "Desc_IronPlate_C", - "amount": 1 - }, - { - "item": "Desc_Cement_C", - "amount": 1 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_ConveyorPole_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_CoolingSystem_C": { - "slug": "cooling-system", - "name": "Cooling System", - "className": "Recipe_CoolingSystem_C", - "alternate": false, - "time": 10, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_AluminumPlateReinforced_C", - "amount": 2 - }, - { - "item": "Desc_Rubber_C", - "amount": 2 - }, - { - "item": "Desc_Water_C", - "amount": 5 - }, - { - "item": "Desc_NitrogenGas_C", - "amount": 25 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_CoolingSystem_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_Blender_C" - ], - "isVariablePower": false - }, - "Recipe_CopperDust_C": { - "slug": "copper-powder", - "name": "Copper Powder", - "className": "Recipe_CopperDust_C", - "alternate": false, - "time": 6, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_CopperIngot_C", - "amount": 30 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": true, - "inWorkshop": false, - "products": [ - { - "item": "Desc_CopperDust_C", - "amount": 5 - } - ], - "producedIn": [ - "Desc_ConstructorMk1_C" - ], - "isVariablePower": false - }, - "Recipe_CopperSheet_C": { - "slug": "copper-sheet", - "name": "Copper Sheet", - "className": "Recipe_CopperSheet_C", - "alternate": false, - "time": 6, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_CopperIngot_C", - "amount": 2 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": true, - "inWorkshop": false, - "products": [ - { - "item": "Desc_CopperSheet_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_ConstructorMk1_C" - ], - "isVariablePower": false - }, - "Recipe_CrystalOscillator_C": { - "slug": "crystal-oscillator", - "name": "Crystal Oscillator", - "className": "Recipe_CrystalOscillator_C", - "alternate": false, - "time": 120, - "manualTimeMultiplier": 0.3, - "ingredients": [ - { - "item": "Desc_QuartzCrystal_C", - "amount": 36 - }, - { - "item": "Desc_Cable_C", - "amount": 28 - }, - { - "item": "Desc_IronPlateReinforced_C", - "amount": 5 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": true, - "inWorkshop": false, - "products": [ - { - "item": "Desc_CrystalOscillator_C", - "amount": 2 - } - ], - "producedIn": [ - "Desc_ManufacturerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_DroneStation_C": { - "slug": "drone-port", - "name": "Drone Port", - "className": "Recipe_DroneStation_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_ModularFrameHeavy_C", - "amount": 20 - }, - { - "item": "Desc_HighSpeedConnector_C", - "amount": 20 - }, - { - "item": "Desc_AluminumPlate_C", - "amount": 50 - }, - { - "item": "Desc_AluminumCasing_C", - "amount": 50 - }, - { - "item": "Desc_ModularFrameLightweight_C", - "amount": 10 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_DroneStation_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_DroneTransport_C": { - "slug": "drone", - "name": "Drone", - "className": "Recipe_DroneTransport_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Motor_C", - "amount": 4 - }, - { - "item": "Desc_AluminumPlate_C", - "amount": 10 - }, - { - "item": "Desc_ModularFrameLightweight_C", - "amount": 1 - }, - { - "item": "Desc_CircuitBoardHighSpeed_C", - "amount": 2 - }, - { - "item": "BP_ItemDescriptorPortableMiner_C", - "amount": 1 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_DroneTransport_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_ElectromagneticControlRod_C": { - "slug": "electromagnetic-control-rod", - "name": "Electromagnetic Control Rod", - "className": "Recipe_ElectromagneticControlRod_C", - "alternate": false, - "time": 30, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Stator_C", - "amount": 3 - }, - { - "item": "Desc_CircuitBoardHighSpeed_C", - "amount": 2 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": true, - "inWorkshop": false, - "products": [ - { - "item": "Desc_ElectromagneticControlRod_C", - "amount": 2 - } - ], - "producedIn": [ - "Desc_AssemblerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_EncasedIndustrialBeam_C": { - "slug": "encased-industrial-beam", - "name": "Encased Industrial Beam", - "className": "Recipe_EncasedIndustrialBeam_C", - "alternate": false, - "time": 10, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_SteelPlate_C", - "amount": 4 - }, - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": true, - "inWorkshop": false, - "products": [ - { - "item": "Desc_SteelPlateReinforced_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_AssemblerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Fabric_C": { - "slug": "fabric", - "name": "Fabric", - "className": "Recipe_Fabric_C", - "alternate": false, - "time": 4, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Mycelia_C", - "amount": 1 - }, - { - "item": "Desc_GenericBiomass_C", - "amount": 5 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": true, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Fabric_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_AssemblerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_FactoryCart_C": { - "slug": "factory-cart", - "name": "Factory Cart™", - "className": "Recipe_FactoryCart_C", - "alternate": false, - "time": 20, - "manualTimeMultiplier": 2, - "ingredients": [ - { - "item": "Desc_IronPlateReinforced_C", - "amount": 4 - }, - { - "item": "Desc_IronRod_C", - "amount": 4 - }, - { - "item": "Desc_Rotor_C", - "amount": 2 - } - ], - "forBuilding": false, - "inMachine": false, - "inHand": false, - "inWorkshop": true, - "products": [ - { - "item": "Desc_GolfCart_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Fence_01_C": { - "slug": "industrial-railing", - "name": "Industrial Railing", - "className": "Recipe_Fence_01_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronRod_C", - "amount": 4 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Fence_01_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_FilterGasMask_C": { - "slug": "gas-filter", - "name": "Gas Filter", - "className": "Recipe_FilterGasMask_C", - "alternate": false, - "time": 8, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Coal_C", - "amount": 5 - }, - { - "item": "Desc_Rubber_C", - "amount": 2 - }, - { - "item": "Desc_Fabric_C", - "amount": 2 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": true, - "inWorkshop": true, - "products": [ - { - "item": "Desc_Filter_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_ManufacturerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_FilterHazmat_C": { - "slug": "iodine-infused-filter", - "name": "Iodine Infused Filter", - "className": "Recipe_FilterHazmat_C", - "alternate": false, - "time": 16, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Filter_C", - "amount": 1 - }, - { - "item": "Desc_HighSpeedWire_C", - "amount": 8 - }, - { - "item": "Desc_AluminumCasing_C", - "amount": 1 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": true, - "inWorkshop": true, - "products": [ - { - "item": "Desc_HazmatFilter_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_ManufacturerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Flat_Frame_01_C": { - "slug": "frame-floor", - "name": "Frame Floor", - "className": "Recipe_Flat_Frame_01_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_SteelPlate_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Flat_Frame_01_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_FloodlightPole_C": { - "slug": "flood-light-tower", - "name": "Flood Light Tower", - "className": "Recipe_FloodlightPole_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_HighSpeedWire_C", - "amount": 25 - }, - { - "item": "Desc_CopperSheet_C", - "amount": 4 - }, - { - "item": "Desc_SteelPlateReinforced_C", - "amount": 8 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_FloodlightPole_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_FloodlightWall_C": { - "slug": "wall-mounted-flood-light", - "name": "Wall Mounted Flood Light", - "className": "Recipe_FloodlightWall_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_HighSpeedWire_C", - "amount": 25 - }, - { - "item": "Desc_CopperSheet_C", - "amount": 4 - }, - { - "item": "Desc_SteelPlateReinforced_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_FloodlightWall_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_FluidCanister_C": { - "slug": "empty-canister", - "name": "Empty Canister", - "className": "Recipe_FluidCanister_C", - "alternate": false, - "time": 4, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Plastic_C", - "amount": 2 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": true, - "inWorkshop": false, - "products": [ - { - "item": "Desc_FluidCanister_C", - "amount": 4 - } - ], - "producedIn": [ - "Desc_ConstructorMk1_C" - ], - "isVariablePower": false - }, - "Recipe_FoundationGlass_01_C": { - "slug": "glass-frame-foundation", - "name": "Glass Frame Foundation", - "className": "Recipe_FoundationGlass_01_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_SteelPlate_C", - "amount": 2 - }, - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_FoundationGlass_01_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_FoundationPassthrough_Hypertube_C": { - "slug": "hypertube-floor-hole", - "name": "Hypertube Floor Hole", - "className": "Recipe_FoundationPassthrough_Hypertube_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronRod_C", - "amount": 2 - }, - { - "item": "Desc_IronPlate_C", - "amount": 2 - }, - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_FoundationPassthrough_Hypertube_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_FoundationPassthrough_Lift_C": { - "slug": "conveyor-lift-floor-hole", - "name": "Conveyor Lift Floor Hole", - "className": "Recipe_FoundationPassthrough_Lift_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronRod_C", - "amount": 2 - }, - { - "item": "Desc_IronPlate_C", - "amount": 2 - }, - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_FoundationPassthrough_Lift_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_FoundationPassthrough_Pipe_C": { - "slug": "pipeline-floor-hole", - "name": "Pipeline Floor Hole", - "className": "Recipe_FoundationPassthrough_Pipe_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronRod_C", - "amount": 2 - }, - { - "item": "Desc_IronPlate_C", - "amount": 2 - }, - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_FoundationPassthrough_Pipe_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Foundation_8x1_01_C": { - "slug": "foundation-1m", - "name": "Foundation 1m", - "className": "Recipe_Foundation_8x1_01_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Foundation_8x1_01_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Foundation_8x2_01_C": { - "slug": "foundation-2m", - "name": "Foundation 2m", - "className": "Recipe_Foundation_8x2_01_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Foundation_8x2_01_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Foundation_8x4_01_C": { - "slug": "foundation-4m", - "name": "Foundation 4m", - "className": "Recipe_Foundation_8x4_01_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Foundation_8x4_01_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Foundation_Asphalt_8x1_C": { - "slug": "foundation-1m", - "name": "Foundation 1m", - "className": "Recipe_Foundation_Asphalt_8x1_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Foundation_Asphalt_8x1_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Foundation_Asphalt_8x2_C": { - "slug": "foundation-2m", - "name": "Foundation 2m", - "className": "Recipe_Foundation_Asphalt_8x2_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Foundation_Asphalt_8x2_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Foundation_Asphalt_8x4_C": { - "slug": "foundation-4m", - "name": "Foundation 4m", - "className": "Recipe_Foundation_Asphalt_8x4_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Foundation_Asphalt_8x4_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Foundation_ConcretePolished_8x1_C": { - "slug": "foundation-1m", - "name": "Foundation 1m", - "className": "Recipe_Foundation_ConcretePolished_8x1_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Foundation_ConcretePolished_8x1_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Foundation_ConcretePolished_8x2_C": { - "slug": "foundation-2m", - "name": "Foundation 2m", - "className": "Recipe_Foundation_ConcretePolished_8x2_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Foundation_ConcretePolished_8x2_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Foundation_ConcretePolished_8x4_C": { - "slug": "foundation-4m", - "name": "Foundation 4m", - "className": "Recipe_Foundation_ConcretePolished_8x4_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Foundation_ConcretePolished_8x4_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Foundation_Concrete_8x1_C": { - "slug": "foundation-1m", - "name": "Foundation 1m", - "className": "Recipe_Foundation_Concrete_8x1_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Foundation_Concrete_8x1_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Foundation_Concrete_8x2_C": { - "slug": "foundation-2m", - "name": "Foundation 2m", - "className": "Recipe_Foundation_Concrete_8x2_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Foundation_Concrete_8x2_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Foundation_Concrete_8x4_C": { - "slug": "foundation-4m", - "name": "Foundation 4m", - "className": "Recipe_Foundation_Concrete_8x4_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Foundation_Concrete_8x4_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Foundation_Frame_01_C": { - "slug": "frame-foundation", - "name": "Frame Foundation", - "className": "Recipe_Foundation_Frame_01_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_SteelPlate_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Foundation_Frame_01_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Foundation_Metal_8x1_C": { - "slug": "foundation-1m", - "name": "Foundation 1m", - "className": "Recipe_Foundation_Metal_8x1_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Foundation_Metal_8x1_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Foundation_Metal_8x2_C": { - "slug": "foundation-2m", - "name": "Foundation 2m", - "className": "Recipe_Foundation_Metal_8x2_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Foundation_Metal_8x2_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Foundation_Metal_8x4_C": { - "slug": "foundation-4m", - "name": "Foundation 4m", - "className": "Recipe_Foundation_Metal_8x4_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Foundation_Metal_8x4_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_FrackingExtractor_C": { - "slug": "resource-well-extractor", - "name": "Resource Well Extractor", - "className": "Recipe_FrackingExtractor_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_SteelPlate_C", - "amount": 10 - }, - { - "item": "Desc_Plastic_C", - "amount": 10 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_FrackingExtractor_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_FrackingSmasher_C": { - "slug": "resource-well-pressurizer", - "name": "Resource Well Pressurizer", - "className": "Recipe_FrackingSmasher_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Wire_C", - "amount": 200 - }, - { - "item": "Desc_Rubber_C", - "amount": 50 - }, - { - "item": "Desc_SteelPlateReinforced_C", - "amount": 50 - }, - { - "item": "Desc_Motor_C", - "amount": 50 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_FrackingSmasher_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Fuel_C": { - "slug": "packaged-fuel", - "name": "Packaged Fuel", - "className": "Recipe_Fuel_C", - "alternate": false, - "time": 3, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_LiquidFuel_C", - "amount": 2 - }, - { - "item": "Desc_FluidCanister_C", - "amount": 2 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Fuel_C", - "amount": 2 - } - ], - "producedIn": [ - "Desc_Packager_C" - ], - "isVariablePower": false - }, - "Recipe_FusedModularFrame_C": { - "slug": "fused-modular-frame", - "name": "Fused Modular Frame", - "className": "Recipe_FusedModularFrame_C", - "alternate": false, - "time": 40, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_ModularFrameHeavy_C", - "amount": 1 - }, - { - "item": "Desc_AluminumCasing_C", - "amount": 50 - }, - { - "item": "Desc_NitrogenGas_C", - "amount": 25 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_ModularFrameFused_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_Blender_C" - ], - "isVariablePower": false - }, - "Recipe_GasTank_C": { - "slug": "empty-fluid-tank", - "name": "Empty Fluid Tank", - "className": "Recipe_GasTank_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_AluminumIngot_C", - "amount": 1 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": true, - "inWorkshop": false, - "products": [ - { - "item": "Desc_GasTank_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_ConstructorMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Gasmask_C": { - "slug": "gas-mask", - "name": "Gas Mask", - "className": "Recipe_Gasmask_C", - "alternate": false, - "time": 80, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Rubber_C", - "amount": 100 - }, - { - "item": "Desc_Plastic_C", - "amount": 100 - }, - { - "item": "Desc_Fabric_C", - "amount": 100 - } - ], - "forBuilding": false, - "inMachine": false, - "inHand": false, - "inWorkshop": true, - "products": [ - { - "item": "BP_EquipmentDescriptorGasmask_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Gate_Automated_8x4_C": { - "slug": "automated-gate", - "name": "Automated Gate", - "className": "Recipe_Gate_Automated_8x4_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronPlate_C", - "amount": 6 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Gate_Automated_8x4_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_GeneratorBiomass_C": { - "slug": "biomass-burner", - "name": "Biomass Burner", - "className": "Recipe_GeneratorBiomass_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronPlate_C", - "amount": 15 - }, - { - "item": "Desc_IronRod_C", - "amount": 15 - }, - { - "item": "Desc_Wire_C", - "amount": 25 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_GeneratorBiomass_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_GeneratorCoal_C": { - "slug": "coal-generator", - "name": "Coal Generator", - "className": "Recipe_GeneratorCoal_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronPlateReinforced_C", - "amount": 20 - }, - { - "item": "Desc_Rotor_C", - "amount": 10 - }, - { - "item": "Desc_Cable_C", - "amount": 30 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_GeneratorCoal_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_GeneratorFuel_C": { - "slug": "fuel-generator", - "name": "Fuel Generator", - "className": "Recipe_GeneratorFuel_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Computer_C", - "amount": 5 - }, - { - "item": "Desc_ModularFrameHeavy_C", - "amount": 10 - }, - { - "item": "Desc_Motor_C", - "amount": 15 - }, - { - "item": "Desc_Rubber_C", - "amount": 50 - }, - { - "item": "Desc_HighSpeedWire_C", - "amount": 50 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_GeneratorFuel_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_GeneratorGeoThermal_C": { - "slug": "geothermal-generator", - "name": "Geothermal Generator", - "className": "Recipe_GeneratorGeoThermal_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_ComputerSuper_C", - "amount": 8 - }, - { - "item": "Desc_ModularFrameHeavy_C", - "amount": 16 - }, - { - "item": "Desc_HighSpeedConnector_C", - "amount": 16 - }, - { - "item": "Desc_CopperSheet_C", - "amount": 40 - }, - { - "item": "Desc_Rubber_C", - "amount": 80 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_GeneratorGeoThermal_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_GeneratorNuclear_C": { - "slug": "nuclear-power-plant", - "name": "Nuclear Power Plant", - "className": "Recipe_GeneratorNuclear_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 250 - }, - { - "item": "Desc_ModularFrameHeavy_C", - "amount": 25 - }, - { - "item": "Desc_ComputerSuper_C", - "amount": 5 - }, - { - "item": "Desc_Cable_C", - "amount": 100 - }, - { - "item": "Desc_AluminumPlate_C", - "amount": 100 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_GeneratorNuclear_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_GoldenCart_C": { - "slug": "golden-factory-cart", - "name": "Golden Factory Cart™", - "className": "Recipe_GoldenCart_C", - "alternate": false, - "time": 20, - "manualTimeMultiplier": 2, - "ingredients": [ - { - "item": "Desc_GoldIngot_C", - "amount": 15 - }, - { - "item": "Desc_IronRod_C", - "amount": 4 - }, - { - "item": "Desc_Rotor_C", - "amount": 2 - } - ], - "forBuilding": false, - "inMachine": false, - "inHand": false, - "inWorkshop": true, - "products": [ - { - "item": "Desc_GolfCartGold_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Gunpowder_C": { - "slug": "black-powder", - "name": "Black Powder", - "className": "Recipe_Gunpowder_C", - "alternate": false, - "time": 8, - "manualTimeMultiplier": 0.5, - "ingredients": [ - { - "item": "Desc_Coal_C", - "amount": 1 - }, - { - "item": "Desc_Sulfur_C", - "amount": 2 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": true, - "inWorkshop": true, - "products": [ - { - "item": "Desc_Gunpowder_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_AssemblerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_HadronCollider_C": { - "slug": "particle-accelerator", - "name": "Particle Accelerator", - "className": "Recipe_HadronCollider_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_ModularFrameLightweight_C", - "amount": 25 - }, - { - "item": "Desc_ElectromagneticControlRod_C", - "amount": 100 - }, - { - "item": "Desc_ComputerSuper_C", - "amount": 10 - }, - { - "item": "Desc_CoolingSystem_C", - "amount": 50 - }, - { - "item": "Desc_ModularFrameFused_C", - "amount": 20 - }, - { - "item": "Desc_MotorLightweight_C", - "amount": 10 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_HadronCollider_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_HazmatSuit_C": { - "slug": "hazmat-suit", - "name": "Hazmat Suit", - "className": "Recipe_HazmatSuit_C", - "alternate": false, - "time": 120, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Rubber_C", - "amount": 50 - }, - { - "item": "Desc_Plastic_C", - "amount": 50 - }, - { - "item": "Desc_AluminumPlate_C", - "amount": 50 - }, - { - "item": "Desc_Fabric_C", - "amount": 50 - } - ], - "forBuilding": false, - "inMachine": false, - "inHand": false, - "inWorkshop": true, - "products": [ - { - "item": "BP_EquipmentDescriptorHazmatSuit_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_HeatSink_C": { - "slug": "heat-sink", - "name": "Heat Sink", - "className": "Recipe_HeatSink_C", - "alternate": false, - "time": 8, - "manualTimeMultiplier": 1.5, - "ingredients": [ - { - "item": "Desc_AluminumPlate_C", - "amount": 5 - }, - { - "item": "Desc_CopperSheet_C", - "amount": 3 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": true, - "inWorkshop": false, - "products": [ - { - "item": "Desc_AluminumPlateReinforced_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_AssemblerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_HighSpeedConnector_C": { - "slug": "high-speed-connector", - "name": "High-Speed Connector", - "className": "Recipe_HighSpeedConnector_C", - "alternate": false, - "time": 16, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_HighSpeedWire_C", - "amount": 56 - }, - { - "item": "Desc_Cable_C", - "amount": 10 - }, - { - "item": "Desc_CircuitBoard_C", - "amount": 1 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": true, - "inWorkshop": false, - "products": [ - { - "item": "Desc_HighSpeedConnector_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_ManufacturerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Hoverpack_C": { - "slug": "hover-pack", - "name": "Hover Pack", - "className": "Recipe_Hoverpack_C", - "alternate": false, - "time": 120, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Motor_C", - "amount": 8 - }, - { - "item": "Desc_ModularFrameHeavy_C", - "amount": 4 - }, - { - "item": "Desc_Computer_C", - "amount": 8 - }, - { - "item": "Desc_AluminumPlate_C", - "amount": 40 - } - ], - "forBuilding": false, - "inMachine": false, - "inHand": false, - "inWorkshop": true, - "products": [ - { - "item": "BP_EquipmentDescriptorHoverPack_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_HyperPoleStackable_C": { - "slug": "stackable-hypertube-support", - "name": "Stackable Hypertube Support", - "className": "Recipe_HyperPoleStackable_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronPlate_C", - "amount": 4 - }, - { - "item": "Desc_IronRod_C", - "amount": 2 - }, - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_HyperPoleStackable_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_HyperTubeWallHole_C": { - "slug": "hypertube-wall-hole", - "name": "Hypertube Wall Hole", - "className": "Recipe_HyperTubeWallHole_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronPlate_C", - "amount": 2 - }, - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_HyperTubeWallHole_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_HyperTubeWallSupport_C": { - "slug": "hypertube-wall-support", - "name": "Hypertube Wall Support", - "className": "Recipe_HyperTubeWallSupport_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronPlate_C", - "amount": 2 - }, - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_HyperTubeWallSupport_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_IndustrialTank_C": { - "slug": "industrial-fluid-buffer", - "name": "Industrial Fluid Buffer", - "className": "Recipe_IndustrialTank_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Plastic_C", - "amount": 30 - }, - { - "item": "Desc_ModularFrameHeavy_C", - "amount": 3 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_IndustrialTank_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_IngotAluminum_C": { - "slug": "aluminum-ingot", - "name": "Aluminum Ingot", - "className": "Recipe_IngotAluminum_C", - "alternate": false, - "time": 4, - "manualTimeMultiplier": 3, - "ingredients": [ - { - "item": "Desc_AluminumScrap_C", - "amount": 6 - }, - { - "item": "Desc_Silica_C", - "amount": 5 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": true, - "inWorkshop": false, - "products": [ - { - "item": "Desc_AluminumIngot_C", - "amount": 4 - } - ], - "producedIn": [ - "Desc_FoundryMk1_C" - ], - "isVariablePower": false - }, - "Recipe_IngotCaterium_C": { - "slug": "caterium-ingot", - "name": "Caterium Ingot", - "className": "Recipe_IngotCaterium_C", - "alternate": false, - "time": 4, - "manualTimeMultiplier": 2, - "ingredients": [ - { - "item": "Desc_OreGold_C", - "amount": 3 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": true, - "inWorkshop": false, - "products": [ - { - "item": "Desc_GoldIngot_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_SmelterMk1_C" - ], - "isVariablePower": false - }, - "Recipe_IngotCopper_C": { - "slug": "copper-ingot", - "name": "Copper Ingot", - "className": "Recipe_IngotCopper_C", - "alternate": false, - "time": 2, - "manualTimeMultiplier": 3, - "ingredients": [ - { - "item": "Desc_OreCopper_C", - "amount": 1 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": true, - "inWorkshop": false, - "products": [ - { - "item": "Desc_CopperIngot_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_SmelterMk1_C" - ], - "isVariablePower": false - }, - "Recipe_IngotIron_C": { - "slug": "iron-ingot", - "name": "Iron Ingot", - "className": "Recipe_IngotIron_C", - "alternate": false, - "time": 2, - "manualTimeMultiplier": 3, - "ingredients": [ - { - "item": "Desc_OreIron_C", - "amount": 1 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": true, - "inWorkshop": false, - "products": [ - { - "item": "Desc_IronIngot_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_SmelterMk1_C" - ], - "isVariablePower": false - }, - "Recipe_IngotSteel_C": { - "slug": "steel-ingot", - "name": "Steel Ingot", - "className": "Recipe_IngotSteel_C", - "alternate": false, - "time": 4, - "manualTimeMultiplier": 3, - "ingredients": [ - { - "item": "Desc_OreIron_C", - "amount": 3 - }, - { - "item": "Desc_Coal_C", - "amount": 3 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": true, - "inWorkshop": false, - "products": [ - { - "item": "Desc_SteelIngot_C", - "amount": 3 - } - ], - "producedIn": [ - "Desc_FoundryMk1_C" - ], - "isVariablePower": false - }, - "Recipe_InvertedRamp_Asphalt_8x1_C": { - "slug": "inv-ramp-1m", - "name": "Inv. Ramp 1m", - "className": "Recipe_InvertedRamp_Asphalt_8x1_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_InvertedRamp_Asphalt_8x1_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_InvertedRamp_Asphalt_8x2_C": { - "slug": "inv-ramp-2m", - "name": "Inv. Ramp 2m", - "className": "Recipe_InvertedRamp_Asphalt_8x2_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_InvertedRamp_Asphalt_8x2_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_InvertedRamp_Asphalt_8x4_C": { - "slug": "inv-ramp-4m", - "name": "Inv. Ramp 4m", - "className": "Recipe_InvertedRamp_Asphalt_8x4_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_InvertedRamp_Asphalt_8x4_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_InvertedRamp_Concrete_8x1_C": { - "slug": "inv-ramp-1m", - "name": "Inv. Ramp 1m", - "className": "Recipe_InvertedRamp_Concrete_8x1_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_InvertedRamp_Concrete_8x1_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_InvertedRamp_Concrete_8x2_C": { - "slug": "inv-ramp-2m", - "name": "Inv. Ramp 2m", - "className": "Recipe_InvertedRamp_Concrete_8x2_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_InvertedRamp_Concrete_8x2_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_InvertedRamp_Concrete_8x4_C": { - "slug": "inv-ramp-4m", - "name": "Inv. Ramp 4m", - "className": "Recipe_InvertedRamp_Concrete_8x4_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_InvertedRamp_Concrete_8x4_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_InvertedRamp_DCorner_Asphalt_8x1_C": { - "slug": "inv-down-corner-1m", - "name": "Inv. Down Corner 1m", - "className": "Recipe_InvertedRamp_DCorner_Asphalt_8x1_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_InvertedRamp_DCorner_Asphalt_8x1_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_InvertedRamp_DCorner_Asphalt_8x2_C": { - "slug": "inv-down-corner-2m", - "name": "Inv. Down Corner 2m", - "className": "Recipe_InvertedRamp_DCorner_Asphalt_8x2_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_InvertedRamp_DCorner_Asphalt_8x2_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_InvertedRamp_DCorner_Asphalt_8x4_C": { - "slug": "inv-down-corner-4m", - "name": "Inv. Down Corner 4m", - "className": "Recipe_InvertedRamp_DCorner_Asphalt_8x4_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_InvertedRamp_DCorner_Asphalt_8x4_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_InvertedRamp_DCorner_Concrete_8x1_C": { - "slug": "inv-down-corner-1m", - "name": "Inv. Down Corner 1m", - "className": "Recipe_InvertedRamp_DCorner_Concrete_8x1_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_InvertedRamp_DCorner_Concrete_8x1_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_InvertedRamp_DCorner_Concrete_8x2_C": { - "slug": "inv-down-corner-2m", - "name": "Inv. Down Corner 2m", - "className": "Recipe_InvertedRamp_DCorner_Concrete_8x2_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_InvertedRamp_DCorner_Concrete_8x2_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_InvertedRamp_DCorner_Concrete_8x4_C": { - "slug": "inv-down-corner-4m", - "name": "Inv. Down Corner 4m", - "className": "Recipe_InvertedRamp_DCorner_Concrete_8x4_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_InvertedRamp_DCorner_Concrete_8x4_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_InvertedRamp_DCorner_Metal_8x1_C": { - "slug": "inv-down-corner-1m", - "name": "Inv. Down Corner 1m", - "className": "Recipe_InvertedRamp_DCorner_Metal_8x1_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_InvertedRamp_DCorner_Metal_8x1_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_InvertedRamp_DCorner_Metal_8x2_C": { - "slug": "inv-down-corner-2m", - "name": "Inv. Down Corner 2m", - "className": "Recipe_InvertedRamp_DCorner_Metal_8x2_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_InvertedRamp_DCorner_Metal_8x2_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_InvertedRamp_DCorner_Metal_8x4_C": { - "slug": "inv-down-corner-4m", - "name": "Inv. Down Corner 4m", - "className": "Recipe_InvertedRamp_DCorner_Metal_8x4_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_InvertedRamp_DCorner_Metal_8x4_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_InvertedRamp_DCorner_Polished_8x1_C": { - "slug": "inv-down-corner-1m", - "name": "Inv. Down Corner 1m", - "className": "Recipe_InvertedRamp_DCorner_Polished_8x1_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_InvertedRamp_DCorner_Polished_8x1_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_InvertedRamp_DCorner_Polished_8x2_C": { - "slug": "inv-down-corner-2m", - "name": "Inv. Down Corner 2m", - "className": "Recipe_InvertedRamp_DCorner_Polished_8x2_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_InvertedRamp_DCorner_Polished_8x2_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_InvertedRamp_DCorner_Polished_8x4_C": { - "slug": "inv-down-corner-4m", - "name": "Inv. Down Corner 4m", - "className": "Recipe_InvertedRamp_DCorner_Polished_8x4_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_InvertedRamp_DCorner_Polished_8x4_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_InvertedRamp_Metal_8x1_C": { - "slug": "inv-ramp-1m", - "name": "Inv. Ramp 1m", - "className": "Recipe_InvertedRamp_Metal_8x1_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_InvertedRamp_Metal_8x1_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_InvertedRamp_Metal_8x2_C": { - "slug": "inv-ramp-2m", - "name": "Inv. Ramp 2m", - "className": "Recipe_InvertedRamp_Metal_8x2_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_InvertedRamp_Metal_8x2_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_InvertedRamp_Metal_8x4_C": { - "slug": "inv-ramp-4m", - "name": "Inv. Ramp 4m", - "className": "Recipe_InvertedRamp_Metal_8x4_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_InvertedRamp_Metal_8x4_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_InvertedRamp_Polished_8x1_C": { - "slug": "inv-ramp-1m", - "name": "Inv. Ramp 1m", - "className": "Recipe_InvertedRamp_Polished_8x1_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_InvertedRamp_Polished_8x1_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_InvertedRamp_Polished_8x2_C": { - "slug": "inv-ramp-2m", - "name": "Inv. Ramp 2m", - "className": "Recipe_InvertedRamp_Polished_8x2_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_InvertedRamp_Polished_8x2_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_InvertedRamp_Polished_8x4_C": { - "slug": "inv-ramp-4m", - "name": "Inv. Ramp 4m", - "className": "Recipe_InvertedRamp_Polished_8x4_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_InvertedRamp_Polished_8x4_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_InvertedRamp_UCorner_Asphalt_8x1_C": { - "slug": "inv-up-corner-1m", - "name": "Inv. Up Corner 1m", - "className": "Recipe_InvertedRamp_UCorner_Asphalt_8x1_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_InvertedRamp_UCorner_Asphalt_8x1_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_InvertedRamp_UCorner_Asphalt_8x2_C": { - "slug": "inv-up-corner-2m", - "name": "Inv. Up Corner 2m", - "className": "Recipe_InvertedRamp_UCorner_Asphalt_8x2_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_InvertedRamp_UCorner_Asphalt_8x2_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_InvertedRamp_UCorner_Asphalt_8x4_C": { - "slug": "inv-up-corner-4m", - "name": "Inv. Up Corner 4m", - "className": "Recipe_InvertedRamp_UCorner_Asphalt_8x4_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_InvertedRamp_UCorner_Asphalt_8x4_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_InvertedRamp_UCorner_Concrete_8x1_C": { - "slug": "inv-up-corner-1m", - "name": "Inv. Up Corner 1m", - "className": "Recipe_InvertedRamp_UCorner_Concrete_8x1_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_InvertedRamp_UCorner_Concrete_8x1_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_InvertedRamp_UCorner_Concrete_8x2_C": { - "slug": "inv-up-corner-2m", - "name": "Inv. Up Corner 2m", - "className": "Recipe_InvertedRamp_UCorner_Concrete_8x2_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_InvertedRamp_UCorner_Concrete_8x2_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_InvertedRamp_UCorner_Concrete_8x4_C": { - "slug": "inv-up-corner-4m", - "name": "Inv. Up Corner 4m", - "className": "Recipe_InvertedRamp_UCorner_Concrete_8x4_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_InvertedRamp_UCorner_Concrete_8x4_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_InvertedRamp_UCorner_Metal_8x1_C": { - "slug": "inv-up-corner-1m", - "name": "Inv. Up Corner 1m", - "className": "Recipe_InvertedRamp_UCorner_Metal_8x1_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_InvertedRamp_UCorner_Metal_8x1_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_InvertedRamp_UCorner_Metal_8x2_C": { - "slug": "inv-up-corner-2m", - "name": "Inv. Up Corner 2m", - "className": "Recipe_InvertedRamp_UCorner_Metal_8x2_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_InvertedRamp_UCorner_Metal_8x2_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_InvertedRamp_UCorner_Metal_8x4_C": { - "slug": "inv-up-corner-4m", - "name": "Inv. Up Corner 4m", - "className": "Recipe_InvertedRamp_UCorner_Metal_8x4_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_InvertedRamp_UCorner_Metal_8x4_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_InvertedRamp_UCorner_Polished_8x1_C": { - "slug": "inv-up-corner-1m", - "name": "Inv. Up Corner 1m", - "className": "Recipe_InvertedRamp_UCorner_Polished_8x1_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_InvertedRamp_UCorner_Polished_8x1_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_InvertedRamp_UCorner_Polished_8x2_C": { - "slug": "inv-up-corner-2m", - "name": "Inv. Up Corner 2m", - "className": "Recipe_InvertedRamp_UCorner_Polished_8x2_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_InvertedRamp_UCorner_Polished_8x2_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_InvertedRamp_UCorner_Polished_8x4_C": { - "slug": "inv-up-corner-4m", - "name": "Inv. Up Corner 4m", - "className": "Recipe_InvertedRamp_UCorner_Polished_8x4_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_InvertedRamp_UCorner_Polished_8x4_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_IronPlateReinforced_C": { - "slug": "reinforced-iron-plate", - "name": "Reinforced Iron Plate", - "className": "Recipe_IronPlateReinforced_C", - "alternate": false, - "time": 12, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronPlate_C", - "amount": 6 - }, - { - "item": "Desc_IronScrew_C", - "amount": 12 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": true, - "inWorkshop": false, - "products": [ - { - "item": "Desc_IronPlateReinforced_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_AssemblerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_IronPlate_C": { - "slug": "iron-plate", - "name": "Iron Plate", - "className": "Recipe_IronPlate_C", - "alternate": false, - "time": 6, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronIngot_C", - "amount": 3 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": true, - "inWorkshop": false, - "products": [ - { - "item": "Desc_IronPlate_C", - "amount": 2 - } - ], - "producedIn": [ - "Desc_ConstructorMk1_C" - ], - "isVariablePower": false - }, - "Recipe_IronRod_C": { - "slug": "iron-rod", - "name": "Iron Rod", - "className": "Recipe_IronRod_C", - "alternate": false, - "time": 4, - "manualTimeMultiplier": 0.5, - "ingredients": [ - { - "item": "Desc_IronIngot_C", - "amount": 1 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": true, - "inWorkshop": false, - "products": [ - { - "item": "Desc_IronRod_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_ConstructorMk1_C" - ], - "isVariablePower": false - }, - "Recipe_JetPack_C": { - "slug": "jetpack", - "name": "Jetpack", - "className": "Recipe_JetPack_C", - "alternate": false, - "time": 120, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Plastic_C", - "amount": 50 - }, - { - "item": "Desc_Rubber_C", - "amount": 50 - }, - { - "item": "Desc_CircuitBoard_C", - "amount": 15 - }, - { - "item": "Desc_Motor_C", - "amount": 5 - } - ], - "forBuilding": false, - "inMachine": false, - "inHand": false, - "inWorkshop": true, - "products": [ - { - "item": "BP_EquipmentDescriptorJetPack_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_JumpPadAdjustable_C": { - "slug": "jump-pad", - "name": "Jump Pad", - "className": "Recipe_JumpPadAdjustable_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Rotor_C", - "amount": 2 - }, - { - "item": "Desc_IronPlate_C", - "amount": 15 - }, - { - "item": "Desc_Cable_C", - "amount": 10 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_JumpPadAdjustable_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Ladder_C": { - "slug": "ladder", - "name": "Ladder", - "className": "Recipe_Ladder_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronRod_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Ladder_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_LightsControlPanel_C": { - "slug": "lights-control-panel", - "name": "Lights Control Panel", - "className": "Recipe_LightsControlPanel_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cable_C", - "amount": 10 - }, - { - "item": "Desc_IronPlateReinforced_C", - "amount": 5 - }, - { - "item": "Desc_CircuitBoardHighSpeed_C", - "amount": 3 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_LightsControlPanel_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_LiquidBiofuel_C": { - "slug": "liquid-biofuel", - "name": "Liquid Biofuel", - "className": "Recipe_LiquidBiofuel_C", - "alternate": false, - "time": 4, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Biofuel_C", - "amount": 6 - }, - { - "item": "Desc_Water_C", - "amount": 3 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_LiquidBiofuel_C", - "amount": 4 - } - ], - "producedIn": [ - "Desc_OilRefinery_C" - ], - "isVariablePower": false - }, - "Recipe_LiquidFuel_C": { - "slug": "fuel", - "name": "Fuel", - "className": "Recipe_LiquidFuel_C", - "alternate": false, - "time": 6, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_LiquidOil_C", - "amount": 6 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_LiquidFuel_C", - "amount": 4 - }, - { - "item": "Desc_PolymerResin_C", - "amount": 3 - } - ], - "producedIn": [ - "Desc_OilRefinery_C" - ], - "isVariablePower": false - }, - "Recipe_LookoutTower_C": { - "slug": "lookout-tower", - "name": "Lookout Tower", - "className": "Recipe_LookoutTower_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronPlate_C", - "amount": 5 - }, - { - "item": "Desc_IronRod_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_LookoutTower_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Mam_C": { - "slug": "mam", - "name": "MAM", - "className": "Recipe_Mam_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronPlateReinforced_C", - "amount": 5 - }, - { - "item": "Desc_Cable_C", - "amount": 15 - }, - { - "item": "Desc_Wire_C", - "amount": 45 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Mam_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_ManufacturerMk1_C": { - "slug": "manufacturer", - "name": "Manufacturer", - "className": "Recipe_ManufacturerMk1_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Motor_C", - "amount": 5 - }, - { - "item": "Desc_ModularFrameHeavy_C", - "amount": 10 - }, - { - "item": "Desc_Cable_C", - "amount": 50 - }, - { - "item": "Desc_Plastic_C", - "amount": 50 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_ManufacturerMk1_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_MedicinalInhalerAlienOrgans_C": { - "slug": "medicinal-inhaler-alien-organs", - "name": "Medicinal Inhaler: Alien Organs", - "className": "Recipe_MedicinalInhalerAlienOrgans_C", - "alternate": false, - "time": 20, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_SpitterParts_C", - "amount": 3 - }, - { - "item": "Desc_Mycelia_C", - "amount": 5 - } - ], - "forBuilding": false, - "inMachine": false, - "inHand": false, - "inWorkshop": true, - "products": [ - { - "item": "Desc_Medkit_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_MedicinalInhaler_C": { - "slug": "nutritional-inhaler", - "name": "Nutritional Inhaler", - "className": "Recipe_MedicinalInhaler_C", - "alternate": false, - "time": 20, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Shroom_C", - "amount": 1 - }, - { - "item": "Desc_Berry_C", - "amount": 2 - }, - { - "item": "Desc_Nut_C", - "amount": 3 - }, - { - "item": "Desc_Mycelia_C", - "amount": 5 - } - ], - "forBuilding": false, - "inMachine": false, - "inHand": false, - "inWorkshop": true, - "products": [ - { - "item": "Desc_Medkit_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_MinerMk1_C": { - "slug": "miner-mk-1", - "name": "Miner Mk.1", - "className": "Recipe_MinerMk1_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "BP_ItemDescriptorPortableMiner_C", - "amount": 1 - }, - { - "item": "Desc_IronPlate_C", - "amount": 10 - }, - { - "item": "Desc_Cement_C", - "amount": 10 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_MinerMk1_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_MinerMk2_C": { - "slug": "miner-mk-2", - "name": "Miner Mk.2", - "className": "Recipe_MinerMk2_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "BP_ItemDescriptorPortableMiner_C", - "amount": 2 - }, - { - "item": "Desc_SteelPlateReinforced_C", - "amount": 10 - }, - { - "item": "Desc_SteelPipe_C", - "amount": 20 - }, - { - "item": "Desc_ModularFrame_C", - "amount": 10 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_MinerMk2_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_MinerMk3_C": { - "slug": "miner-mk-3", - "name": "Miner Mk.3", - "className": "Recipe_MinerMk3_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "BP_ItemDescriptorPortableMiner_C", - "amount": 3 - }, - { - "item": "Desc_SteelPipe_C", - "amount": 50 - }, - { - "item": "Desc_ComputerSuper_C", - "amount": 5 - }, - { - "item": "Desc_ModularFrameFused_C", - "amount": 10 - }, - { - "item": "Desc_MotorLightweight_C", - "amount": 3 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_MinerMk3_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_ModularFrameHeavy_C": { - "slug": "heavy-modular-frame", - "name": "Heavy Modular Frame", - "className": "Recipe_ModularFrameHeavy_C", - "alternate": false, - "time": 30, - "manualTimeMultiplier": 0.6, - "ingredients": [ - { - "item": "Desc_ModularFrame_C", - "amount": 5 - }, - { - "item": "Desc_SteelPipe_C", - "amount": 15 - }, - { - "item": "Desc_SteelPlateReinforced_C", - "amount": 5 - }, - { - "item": "Desc_IronScrew_C", - "amount": 100 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": true, - "inWorkshop": false, - "products": [ - { - "item": "Desc_ModularFrameHeavy_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_ManufacturerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_ModularFrame_C": { - "slug": "modular-frame", - "name": "Modular Frame", - "className": "Recipe_ModularFrame_C", - "alternate": false, - "time": 60, - "manualTimeMultiplier": 0.5, - "ingredients": [ - { - "item": "Desc_IronPlateReinforced_C", - "amount": 3 - }, - { - "item": "Desc_IronRod_C", - "amount": 12 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": true, - "inWorkshop": false, - "products": [ - { - "item": "Desc_ModularFrame_C", - "amount": 2 - } - ], - "producedIn": [ - "Desc_AssemblerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_MotorTurbo_C": { - "slug": "turbo-motor", - "name": "Turbo Motor", - "className": "Recipe_MotorTurbo_C", - "alternate": false, - "time": 32, - "manualTimeMultiplier": 2, - "ingredients": [ - { - "item": "Desc_CoolingSystem_C", - "amount": 4 - }, - { - "item": "Desc_ModularFrameLightweight_C", - "amount": 2 - }, - { - "item": "Desc_Motor_C", - "amount": 4 - }, - { - "item": "Desc_Rubber_C", - "amount": 24 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": true, - "inWorkshop": false, - "products": [ - { - "item": "Desc_MotorLightweight_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_ManufacturerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Motor_C": { - "slug": "motor", - "name": "Motor", - "className": "Recipe_Motor_C", - "alternate": false, - "time": 12, - "manualTimeMultiplier": 2, - "ingredients": [ - { - "item": "Desc_Rotor_C", - "amount": 2 - }, - { - "item": "Desc_Stator_C", - "amount": 2 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": true, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Motor_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_AssemblerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_NitricAcid_C": { - "slug": "nitric-acid", - "name": "Nitric Acid", - "className": "Recipe_NitricAcid_C", - "alternate": false, - "time": 6, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_NitrogenGas_C", - "amount": 12 - }, - { - "item": "Desc_Water_C", - "amount": 3 - }, - { - "item": "Desc_IronPlate_C", - "amount": 1 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_NitricAcid_C", - "amount": 3 - } - ], - "producedIn": [ - "Desc_Blender_C" - ], - "isVariablePower": false - }, - "Recipe_NobeliskDetonator_C": { - "slug": "nobelisk-detonator", - "name": "Nobelisk Detonator", - "className": "Recipe_NobeliskDetonator_C", - "alternate": false, - "time": 80, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "BP_EquipmentDescriptorObjectScanner_C", - "amount": 5 - }, - { - "item": "Desc_SteelPlateReinforced_C", - "amount": 5 - }, - { - "item": "Desc_Cable_C", - "amount": 50 - } - ], - "forBuilding": false, - "inMachine": false, - "inHand": false, - "inWorkshop": true, - "products": [ - { - "item": "BP_EquipmentDescriptorNobeliskDetonator_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Nobelisk_C": { - "slug": "nobelisk", - "name": "Nobelisk", - "className": "Recipe_Nobelisk_C", - "alternate": false, - "time": 20, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Gunpowder_C", - "amount": 5 - }, - { - "item": "Desc_SteelPipe_C", - "amount": 10 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": true, - "products": [ - { - "item": "Desc_NobeliskExplosive_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_AssemblerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_NonFissileUranium_C": { - "slug": "non-fissile-uranium", - "name": "Non-fissile Uranium", - "className": "Recipe_NonFissileUranium_C", - "alternate": false, - "time": 24, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_NuclearWaste_C", - "amount": 15 - }, - { - "item": "Desc_Silica_C", - "amount": 10 - }, - { - "item": "Desc_NitricAcid_C", - "amount": 6 - }, - { - "item": "Desc_SulfuricAcid_C", - "amount": 6 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_NonFissibleUranium_C", - "amount": 20 - }, - { - "item": "Desc_Water_C", - "amount": 6 - } - ], - "producedIn": [ - "Desc_Blender_C" - ], - "isVariablePower": false - }, - "Recipe_NuclearFuelRod_C": { - "slug": "uranium-fuel-rod", - "name": "Uranium Fuel Rod", - "className": "Recipe_NuclearFuelRod_C", - "alternate": false, - "time": 150, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_UraniumCell_C", - "amount": 50 - }, - { - "item": "Desc_SteelPlateReinforced_C", - "amount": 3 - }, - { - "item": "Desc_ElectromagneticControlRod_C", - "amount": 5 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_NuclearFuelRod_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_ManufacturerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_NutritionalInhaler_C": { - "slug": "medicinal-inhaler", - "name": "Medicinal Inhaler", - "className": "Recipe_NutritionalInhaler_C", - "alternate": false, - "time": 20, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Shroom_C", - "amount": 1 - }, - { - "item": "Desc_Berry_C", - "amount": 3 - }, - { - "item": "Desc_Nut_C", - "amount": 7 - } - ], - "forBuilding": false, - "inMachine": false, - "inHand": false, - "inWorkshop": true, - "products": [ - { - "item": "Desc_Medkit_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_ObjectScanner_C": { - "slug": "object-scanner", - "name": "Object Scanner", - "className": "Recipe_ObjectScanner_C", - "alternate": false, - "time": 40, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronPlateReinforced_C", - "amount": 4 - }, - { - "item": "BP_EquipmentDescriptorBeacon_C", - "amount": 3 - }, - { - "item": "Desc_IronScrew_C", - "amount": 50 - } - ], - "forBuilding": false, - "inMachine": false, - "inHand": false, - "inWorkshop": true, - "products": [ - { - "item": "BP_EquipmentDescriptorObjectScanner_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_OilPump_C": { - "slug": "oil-extractor", - "name": "Oil Extractor", - "className": "Recipe_OilPump_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Motor_C", - "amount": 15 - }, - { - "item": "Desc_SteelPlateReinforced_C", - "amount": 20 - }, - { - "item": "Desc_Cable_C", - "amount": 60 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_OilPump_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_OilRefinery_C": { - "slug": "refinery", - "name": "Refinery", - "className": "Recipe_OilRefinery_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Motor_C", - "amount": 10 - }, - { - "item": "Desc_SteelPlateReinforced_C", - "amount": 10 - }, - { - "item": "Desc_SteelPipe_C", - "amount": 30 - }, - { - "item": "Desc_CopperSheet_C", - "amount": 20 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_OilRefinery_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_PackagedAlumina_C": { - "slug": "packaged-alumina-solution", - "name": "Packaged Alumina Solution", - "className": "Recipe_PackagedAlumina_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_AluminaSolution_C", - "amount": 2 - }, - { - "item": "Desc_FluidCanister_C", - "amount": 2 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_PackagedAlumina_C", - "amount": 2 - } - ], - "producedIn": [ - "Desc_Packager_C" - ], - "isVariablePower": false - }, - "Recipe_PackagedBiofuel_C": { - "slug": "packaged-liquid-biofuel", - "name": "Packaged Liquid Biofuel", - "className": "Recipe_PackagedBiofuel_C", - "alternate": false, - "time": 3, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_LiquidBiofuel_C", - "amount": 2 - }, - { - "item": "Desc_FluidCanister_C", - "amount": 2 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_PackagedBiofuel_C", - "amount": 2 - } - ], - "producedIn": [ - "Desc_Packager_C" - ], - "isVariablePower": false - }, - "Recipe_PackagedCrudeOil_C": { - "slug": "packaged-oil", - "name": "Packaged Oil", - "className": "Recipe_PackagedCrudeOil_C", - "alternate": false, - "time": 4, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_LiquidOil_C", - "amount": 2 - }, - { - "item": "Desc_FluidCanister_C", - "amount": 2 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_PackagedOil_C", - "amount": 2 - } - ], - "producedIn": [ - "Desc_Packager_C" - ], - "isVariablePower": false - }, - "Recipe_PackagedNitricAcid_C": { - "slug": "packaged-nitric-acid", - "name": "Packaged Nitric Acid", - "className": "Recipe_PackagedNitricAcid_C", - "alternate": false, - "time": 2, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_NitricAcid_C", - "amount": 1 - }, - { - "item": "Desc_GasTank_C", - "amount": 1 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_PackagedNitricAcid_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_Packager_C" - ], - "isVariablePower": false - }, - "Recipe_PackagedNitrogen_C": { - "slug": "packaged-nitrogen-gas", - "name": "Packaged Nitrogen Gas", - "className": "Recipe_PackagedNitrogen_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_NitrogenGas_C", - "amount": 4 - }, - { - "item": "Desc_GasTank_C", - "amount": 1 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_PackagedNitrogenGas_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_Packager_C" - ], - "isVariablePower": false - }, - "Recipe_PackagedOilResidue_C": { - "slug": "packaged-heavy-oil-residue", - "name": "Packaged Heavy Oil Residue", - "className": "Recipe_PackagedOilResidue_C", - "alternate": false, - "time": 4, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_HeavyOilResidue_C", - "amount": 2 - }, - { - "item": "Desc_FluidCanister_C", - "amount": 2 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_PackagedOilResidue_C", - "amount": 2 - } - ], - "producedIn": [ - "Desc_Packager_C" - ], - "isVariablePower": false - }, - "Recipe_PackagedSulfuricAcid_C": { - "slug": "packaged-sulfuric-acid", - "name": "Packaged Sulfuric Acid", - "className": "Recipe_PackagedSulfuricAcid_C", - "alternate": false, - "time": 3, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_SulfuricAcid_C", - "amount": 2 - }, - { - "item": "Desc_FluidCanister_C", - "amount": 2 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_PackagedSulfuricAcid_C", - "amount": 2 - } - ], - "producedIn": [ - "Desc_Packager_C" - ], - "isVariablePower": false - }, - "Recipe_PackagedTurboFuel_C": { - "slug": "packaged-turbofuel", - "name": "Packaged Turbofuel", - "className": "Recipe_PackagedTurboFuel_C", - "alternate": false, - "time": 6, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_LiquidTurboFuel_C", - "amount": 2 - }, - { - "item": "Desc_FluidCanister_C", - "amount": 2 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_TurboFuel_C", - "amount": 2 - } - ], - "producedIn": [ - "Desc_Packager_C" - ], - "isVariablePower": false - }, - "Recipe_PackagedWater_C": { - "slug": "packaged-water", - "name": "Packaged Water", - "className": "Recipe_PackagedWater_C", - "alternate": false, - "time": 2, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Water_C", - "amount": 2 - }, - { - "item": "Desc_FluidCanister_C", - "amount": 2 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_PackagedWater_C", - "amount": 2 - } - ], - "producedIn": [ - "Desc_Packager_C" - ], - "isVariablePower": false - }, - "Recipe_Packager_C": { - "slug": "packager", - "name": "Packager", - "className": "Recipe_Packager_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_SteelPlate_C", - "amount": 20 - }, - { - "item": "Desc_Rubber_C", - "amount": 10 - }, - { - "item": "Desc_Plastic_C", - "amount": 10 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Packager_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Parachute_C": { - "slug": "parachute", - "name": "Parachute", - "className": "Recipe_Parachute_C", - "alternate": false, - "time": 40, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Fabric_C", - "amount": 10 - }, - { - "item": "Desc_Cable_C", - "amount": 5 - } - ], - "forBuilding": false, - "inMachine": false, - "inHand": false, - "inWorkshop": true, - "products": [ - { - "item": "Desc_Parachute_C", - "amount": 5 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_PetroleumCoke_C": { - "slug": "petroleum-coke", - "name": "Petroleum Coke", - "className": "Recipe_PetroleumCoke_C", - "alternate": false, - "time": 6, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_HeavyOilResidue_C", - "amount": 4 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_PetroleumCoke_C", - "amount": 12 - } - ], - "producedIn": [ - "Desc_OilRefinery_C" - ], - "isVariablePower": false - }, - "Recipe_PillarBase_C": { - "slug": "big-pillar-support", - "name": "Big Pillar Support", - "className": "Recipe_PillarBase_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_PillarBase_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_PillarBase_Small_C": { - "slug": "small-pillar-support", - "name": "Small Pillar Support", - "className": "Recipe_PillarBase_Small_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 3 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_PillarBase_Small_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_PillarMiddle_C": { - "slug": "big-metal-pillar", - "name": "Big Metal Pillar", - "className": "Recipe_PillarMiddle_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronPlate_C", - "amount": 2 - }, - { - "item": "Desc_Cement_C", - "amount": 3 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_PillarMiddle_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_PillarMiddle_Concrete_C": { - "slug": "big-concrete-pillar", - "name": "Big Concrete Pillar", - "className": "Recipe_PillarMiddle_Concrete_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_PillarMiddle_Concrete_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_PillarMiddle_Frame_C": { - "slug": "big-frame-pillar", - "name": "Big Frame Pillar", - "className": "Recipe_PillarMiddle_Frame_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_SteelPlate_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_PillarMiddle_Frame_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Pillar_Small_Concrete_C": { - "slug": "small-concrete-pillar", - "name": "Small Concrete Pillar", - "className": "Recipe_Pillar_Small_Concrete_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 3 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Pillar_Small_Concrete_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Pillar_Small_Frame_C": { - "slug": "small-frame-pillar", - "name": "Small Frame Pillar", - "className": "Recipe_Pillar_Small_Frame_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_SteelPlate_C", - "amount": 3 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Pillar_Small_Frame_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Pillar_Small_Metal_C": { - "slug": "small-metal-pillar", - "name": "Small Metal Pillar", - "className": "Recipe_Pillar_Small_Metal_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronPlate_C", - "amount": 1 - }, - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Pillar_Small_Metal_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_PipeHyperStart_C": { - "slug": "hypertube-entrance", - "name": "Hypertube Entrance", - "className": "Recipe_PipeHyperStart_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_SteelPlateReinforced_C", - "amount": 4 - }, - { - "item": "Desc_Rotor_C", - "amount": 4 - }, - { - "item": "Desc_SteelPipe_C", - "amount": 10 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_PipeHyperStart_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_PipeHyperSupport_C": { - "slug": "hypertube-support", - "name": "Hypertube Support", - "className": "Recipe_PipeHyperSupport_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronPlate_C", - "amount": 2 - }, - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_PipeHyperSupport_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_PipeHyper_C": { - "slug": "hypertube", - "name": "Hypertube", - "className": "Recipe_PipeHyper_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_CopperSheet_C", - "amount": 1 - }, - { - "item": "Desc_SteelPipe_C", - "amount": 1 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_PipeHyper_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_PipeStorageTank_C": { - "slug": "fluid-buffer", - "name": "Fluid Buffer", - "className": "Recipe_PipeStorageTank_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_CopperSheet_C", - "amount": 10 - }, - { - "item": "Desc_ModularFrame_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_PipeStorageTank_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_PipeSupportStackable_C": { - "slug": "stackable-pipeline-support", - "name": "Stackable Pipeline Support", - "className": "Recipe_PipeSupportStackable_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronPlate_C", - "amount": 4 - }, - { - "item": "Desc_IronRod_C", - "amount": 2 - }, - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_PipeSupportStackable_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_PipeSupportWallHole_C": { - "slug": "pipeline-wall-hole", - "name": "Pipeline Wall Hole", - "className": "Recipe_PipeSupportWallHole_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronRod_C", - "amount": 2 - }, - { - "item": "Desc_IronPlate_C", - "amount": 1 - }, - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_PipelineSupportWallHole_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_PipeSupportWall_C": { - "slug": "pipeline-wall-support", - "name": "Pipeline Wall Support", - "className": "Recipe_PipeSupportWall_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronRod_C", - "amount": 2 - }, - { - "item": "Desc_IronPlate_C", - "amount": 1 - }, - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_PipelineSupportWall_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_PipeSupport_C": { - "slug": "pipeline-support", - "name": "Pipeline Support", - "className": "Recipe_PipeSupport_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronPlate_C", - "amount": 2 - }, - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_PipelineSupport_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_PipelineJunction_Cross_C": { - "slug": "pipeline-junction-cross", - "name": "Pipeline Junction Cross", - "className": "Recipe_PipelineJunction_Cross_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_CopperSheet_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_PipelineJunction_Cross_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_PipelineMK2_C": { - "slug": "pipeline-mk-2", - "name": "Pipeline Mk.2", - "className": "Recipe_PipelineMK2_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_CopperSheet_C", - "amount": 2 - }, - { - "item": "Desc_Plastic_C", - "amount": 1 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_PipelineMK2_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_PipelinePumpMK2_C": { - "slug": "pipeline-pump-mk-2", - "name": "Pipeline Pump Mk.2", - "className": "Recipe_PipelinePumpMK2_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Motor_C", - "amount": 2 - }, - { - "item": "Desc_SteelPlateReinforced_C", - "amount": 4 - }, - { - "item": "Desc_Plastic_C", - "amount": 8 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_PipelinePumpMk2_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_PipelinePump_C": { - "slug": "pipeline-pump-mk-1", - "name": "Pipeline Pump Mk.1", - "className": "Recipe_PipelinePump_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_CopperSheet_C", - "amount": 2 - }, - { - "item": "Desc_Rotor_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_PipelinePump_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Pipeline_C": { - "slug": "pipeline-mk-1", - "name": "Pipeline Mk.1", - "className": "Recipe_Pipeline_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_CopperSheet_C", - "amount": 1 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Pipeline_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Plastic_C": { - "slug": "plastic", - "name": "Plastic", - "className": "Recipe_Plastic_C", - "alternate": false, - "time": 6, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_LiquidOil_C", - "amount": 3 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Plastic_C", - "amount": 2 - }, - { - "item": "Desc_HeavyOilResidue_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_OilRefinery_C" - ], - "isVariablePower": false - }, - "Recipe_PlutoniumCell_C": { - "slug": "encased-plutonium-cell", - "name": "Encased Plutonium Cell", - "className": "Recipe_PlutoniumCell_C", - "alternate": false, - "time": 12, - "manualTimeMultiplier": 0.5, - "ingredients": [ - { - "item": "Desc_PlutoniumPellet_C", - "amount": 2 - }, - { - "item": "Desc_Cement_C", - "amount": 4 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": true, - "inWorkshop": false, - "products": [ - { - "item": "Desc_PlutoniumCell_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_AssemblerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_PlutoniumFuelRod_C": { - "slug": "plutonium-fuel-rod", - "name": "Plutonium Fuel Rod", - "className": "Recipe_PlutoniumFuelRod_C", - "alternate": false, - "time": 240, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_PlutoniumCell_C", - "amount": 30 - }, - { - "item": "Desc_SteelPlate_C", - "amount": 18 - }, - { - "item": "Desc_ElectromagneticControlRod_C", - "amount": 6 - }, - { - "item": "Desc_AluminumPlateReinforced_C", - "amount": 10 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_PlutoniumFuelRod_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_ManufacturerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Plutonium_C": { - "slug": "plutonium-pellet", - "name": "Plutonium Pellet", - "className": "Recipe_Plutonium_C", - "alternate": false, - "time": 60, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_NonFissibleUranium_C", - "amount": 100 - }, - { - "item": "Desc_NuclearWaste_C", - "amount": 25 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_PlutoniumPellet_C", - "amount": 30 - } - ], - "producedIn": [ - "Desc_HadronCollider_C" - ], - "isVariablePower": true, - "minPower": 250, - "maxPower": 750 - }, - "Recipe_PortableMiner_C": { - "slug": "portable-miner", - "name": "Portable Miner", - "className": "Recipe_PortableMiner_C", - "alternate": false, - "time": 40, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronPlate_C", - "amount": 2 - }, - { - "item": "Desc_IronRod_C", - "amount": 4 - } - ], - "forBuilding": false, - "inMachine": false, - "inHand": false, - "inWorkshop": true, - "products": [ - { - "item": "BP_ItemDescriptorPortableMiner_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_PowerCrystalShard_1_C": { - "slug": "power-shard-(1)", - "name": "Power Shard (1)", - "className": "Recipe_PowerCrystalShard_1_C", - "alternate": false, - "time": 8, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Crystal_C", - "amount": 1 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": true, - "inWorkshop": false, - "products": [ - { - "item": "Desc_CrystalShard_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_ConstructorMk1_C" - ], - "isVariablePower": false - }, - "Recipe_PowerCrystalShard_2_C": { - "slug": "power-shard-(2)", - "name": "Power Shard (2)", - "className": "Recipe_PowerCrystalShard_2_C", - "alternate": false, - "time": 12, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Crystal_mk2_C", - "amount": 1 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": true, - "inWorkshop": false, - "products": [ - { - "item": "Desc_CrystalShard_C", - "amount": 2 - } - ], - "producedIn": [ - "Desc_ConstructorMk1_C" - ], - "isVariablePower": false - }, - "Recipe_PowerCrystalShard_3_C": { - "slug": "power-shard-(5)", - "name": "Power Shard (5)", - "className": "Recipe_PowerCrystalShard_3_C", - "alternate": false, - "time": 24, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Crystal_mk3_C", - "amount": 1 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": true, - "inWorkshop": false, - "products": [ - { - "item": "Desc_CrystalShard_C", - "amount": 5 - } - ], - "producedIn": [ - "Desc_ConstructorMk1_C" - ], - "isVariablePower": false - }, - "Recipe_PowerLine_C": { - "slug": "power-line", - "name": "Power Line", - "className": "Recipe_PowerLine_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cable_C", - "amount": 1 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_PowerLine_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_PowerPoleMk1_C": { - "slug": "power-pole-mk-1", - "name": "Power Pole Mk.1", - "className": "Recipe_PowerPoleMk1_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Wire_C", - "amount": 3 - }, - { - "item": "Desc_IronRod_C", - "amount": 1 - }, - { - "item": "Desc_Cement_C", - "amount": 1 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_PowerPoleMk1_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_PowerPoleMk2_C": { - "slug": "power-pole-mk-2", - "name": "Power Pole Mk.2", - "className": "Recipe_PowerPoleMk2_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_HighSpeedWire_C", - "amount": 6 - }, - { - "item": "Desc_IronRod_C", - "amount": 2 - }, - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_PowerPoleMk2_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_PowerPoleMk3_C": { - "slug": "power-pole-mk-3", - "name": "Power Pole Mk.3", - "className": "Recipe_PowerPoleMk3_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_HighSpeedConnector_C", - "amount": 2 - }, - { - "item": "Desc_SteelPipe_C", - "amount": 2 - }, - { - "item": "Desc_Rubber_C", - "amount": 3 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_PowerPoleMk3_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_PowerPoleWallDoubleMk2_C": { - "slug": "double-wall-outlet-mk-2", - "name": "Double Wall Outlet Mk.2", - "className": "Recipe_PowerPoleWallDoubleMk2_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_HighSpeedWire_C", - "amount": 16 - }, - { - "item": "Desc_IronRod_C", - "amount": 4 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_PowerPoleWallDoubleMk2_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_PowerPoleWallDoubleMk3_C": { - "slug": "double-wall-outlet-mk-3", - "name": "Double Wall Outlet Mk.3", - "className": "Recipe_PowerPoleWallDoubleMk3_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_HighSpeedConnector_C", - "amount": 6 - }, - { - "item": "Desc_SteelPipe_C", - "amount": 6 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_PowerPoleWallDoubleMk3_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_PowerPoleWallDouble_C": { - "slug": "double-wall-outlet-mk-1", - "name": "Double Wall Outlet Mk.1", - "className": "Recipe_PowerPoleWallDouble_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Wire_C", - "amount": 8 - }, - { - "item": "Desc_IronRod_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_PowerPoleWallDouble_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_PowerPoleWallMk2_C": { - "slug": "wall-outlet-mk-2", - "name": "Wall Outlet Mk.2", - "className": "Recipe_PowerPoleWallMk2_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_HighSpeedWire_C", - "amount": 8 - }, - { - "item": "Desc_IronRod_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_PowerPoleWallMk2_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_PowerPoleWallMk3_C": { - "slug": "wall-outlet-mk-3", - "name": "Wall Outlet Mk.3", - "className": "Recipe_PowerPoleWallMk3_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_HighSpeedConnector_C", - "amount": 3 - }, - { - "item": "Desc_SteelPipe_C", - "amount": 3 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_PowerPoleWallMk3_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_PowerPoleWall_C": { - "slug": "wall-outlet-mk-1", - "name": "Wall Outlet Mk.1", - "className": "Recipe_PowerPoleWall_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Wire_C", - "amount": 4 - }, - { - "item": "Desc_IronRod_C", - "amount": 1 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_PowerPoleWall_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_PowerStorageMk1_C": { - "slug": "power-storage", - "name": "Power Storage", - "className": "Recipe_PowerStorageMk1_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Wire_C", - "amount": 100 - }, - { - "item": "Desc_ModularFrame_C", - "amount": 10 - }, - { - "item": "Desc_Stator_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_PowerStorageMk1_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_PowerSwitch_C": { - "slug": "power-switch", - "name": "Power Switch", - "className": "Recipe_PowerSwitch_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_HighSpeedWire_C", - "amount": 20 - }, - { - "item": "Desc_SteelPlate_C", - "amount": 4 - }, - { - "item": "Desc_CircuitBoardHighSpeed_C", - "amount": 1 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_PowerSwitch_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_PressureConversionCube_C": { - "slug": "pressure-conversion-cube", - "name": "Pressure Conversion Cube", - "className": "Recipe_PressureConversionCube_C", - "alternate": false, - "time": 60, - "manualTimeMultiplier": 2, - "ingredients": [ - { - "item": "Desc_ModularFrameFused_C", - "amount": 1 - }, - { - "item": "Desc_ModularFrameLightweight_C", - "amount": 2 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": true, - "inWorkshop": false, - "products": [ - { - "item": "Desc_PressureConversionCube_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_AssemblerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_PureAluminumIngot_C": { - "slug": "alternate-pure-aluminum-ingot", - "name": "Alternate: Pure Aluminum Ingot", - "className": "Recipe_PureAluminumIngot_C", - "alternate": true, - "time": 2, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_AluminumScrap_C", - "amount": 2 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_AluminumIngot_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_SmelterMk1_C" - ], - "isVariablePower": false - }, - "Recipe_QuarterPipeCorner_01_C": { - "slug": "inner-corner-quarter-pipe", - "name": "Inner Corner Quarter Pipe", - "className": "Recipe_QuarterPipeCorner_01_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - }, - { - "item": "Desc_IronPlate_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_QuarterPipeCorner_01_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_QuarterPipeCorner_02_C": { - "slug": "inverted-inner-corner-quarter-pipe", - "name": "Inverted Inner Corner Quarter Pipe", - "className": "Recipe_QuarterPipeCorner_02_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - }, - { - "item": "Desc_IronPlate_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_QuarterPipeCorner_02_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_QuarterPipeCorner_03_C": { - "slug": "outer-corner-quarter-pipe", - "name": "Outer Corner Quarter Pipe", - "className": "Recipe_QuarterPipeCorner_03_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - }, - { - "item": "Desc_IronPlate_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_QuarterPipeCorner_03_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_QuarterPipeCorner_04_C": { - "slug": "inverted-outer-corner-quarter-pipe", - "name": "Inverted Outer Corner Quarter Pipe", - "className": "Recipe_QuarterPipeCorner_04_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - }, - { - "item": "Desc_IronPlate_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_QuarterPipeCorner_04_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_QuarterPipe_02_C": { - "slug": "inverted-quarter-pipe", - "name": "Inverted Quarter Pipe", - "className": "Recipe_QuarterPipe_02_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - }, - { - "item": "Desc_IronPlate_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_QuarterPipe_02_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_QuarterPipe_C": { - "slug": "quarter-pipe", - "name": "Quarter Pipe", - "className": "Recipe_QuarterPipe_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - }, - { - "item": "Desc_IronPlate_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_QuarterPipe_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_QuartzCrystal_C": { - "slug": "quartz-crystal", - "name": "Quartz Crystal", - "className": "Recipe_QuartzCrystal_C", - "alternate": false, - "time": 8, - "manualTimeMultiplier": 2, - "ingredients": [ - { - "item": "Desc_RawQuartz_C", - "amount": 5 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": true, - "inWorkshop": false, - "products": [ - { - "item": "Desc_QuartzCrystal_C", - "amount": 3 - } - ], - "producedIn": [ - "Desc_ConstructorMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Quickwire_C": { - "slug": "quickwire", - "name": "Quickwire", - "className": "Recipe_Quickwire_C", - "alternate": false, - "time": 5, - "manualTimeMultiplier": 2, - "ingredients": [ - { - "item": "Desc_GoldIngot_C", - "amount": 1 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": true, - "inWorkshop": false, - "products": [ - { - "item": "Desc_HighSpeedWire_C", - "amount": 5 - } - ], - "producedIn": [ - "Desc_ConstructorMk1_C" - ], - "isVariablePower": false - }, - "Recipe_RadarTower_C": { - "slug": "radar-tower", - "name": "Radar Tower", - "className": "Recipe_RadarTower_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_ModularFrameHeavy_C", - "amount": 30 - }, - { - "item": "Desc_CrystalOscillator_C", - "amount": 30 - }, - { - "item": "BP_EquipmentDescriptorBeacon_C", - "amount": 20 - }, - { - "item": "Desc_Cable_C", - "amount": 100 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_RadarTower_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_RadioControlUnit_C": { - "slug": "radio-control-unit", - "name": "Radio Control Unit", - "className": "Recipe_RadioControlUnit_C", - "alternate": false, - "time": 48, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_AluminumCasing_C", - "amount": 32 - }, - { - "item": "Desc_CrystalOscillator_C", - "amount": 1 - }, - { - "item": "Desc_Computer_C", - "amount": 1 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": true, - "inWorkshop": false, - "products": [ - { - "item": "Desc_ModularFrameLightweight_C", - "amount": 2 - } - ], - "producedIn": [ - "Desc_ManufacturerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Railing_01_C": { - "slug": "modern-railing", - "name": "Modern Railing", - "className": "Recipe_Railing_01_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronRod_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Railing_01_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_RailroadBlockSignal_C": { - "slug": "block-signal", - "name": "Block Signal", - "className": "Recipe_RailroadBlockSignal_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_SteelPipe_C", - "amount": 2 - }, - { - "item": "Desc_CopperSheet_C", - "amount": 1 - }, - { - "item": "Desc_CircuitBoard_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_RailroadBlockSignal_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_RailroadPathSignal_C": { - "slug": "path-signal", - "name": "Path Signal", - "className": "Recipe_RailroadPathSignal_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_SteelPipe_C", - "amount": 2 - }, - { - "item": "Desc_CopperSheet_C", - "amount": 1 - }, - { - "item": "Desc_Computer_C", - "amount": 1 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_RailroadPathSignal_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_RailroadTrack_C": { - "slug": "railway", - "name": "Railway", - "className": "Recipe_RailroadTrack_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_SteelPipe_C", - "amount": 1 - }, - { - "item": "Desc_SteelPlate_C", - "amount": 1 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_RailroadTrack_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_RampDouble_8x1_C": { - "slug": "double-ramp-2m", - "name": "Double Ramp 2m", - "className": "Recipe_RampDouble_8x1_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_RampDouble_8x1_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_RampDouble_Asphalt_8x1_C": { - "slug": "double-ramp-2m", - "name": "Double Ramp 2m", - "className": "Recipe_RampDouble_Asphalt_8x1_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_RampDouble_Asphalt_8x1_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_RampDouble_Asphalt_8x2_C": { - "slug": "double-ramp-4m", - "name": "Double Ramp 4m", - "className": "Recipe_RampDouble_Asphalt_8x2_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_RampDouble_Asphalt_8x2_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_RampDouble_Asphalt_8x4_C": { - "slug": "double-ramp-8m", - "name": "Double Ramp 8m", - "className": "Recipe_RampDouble_Asphalt_8x4_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_RampDouble_Asphalt_8x4_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_RampDouble_C": { - "slug": "double-ramp-4m", - "name": "Double Ramp 4m", - "className": "Recipe_RampDouble_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_RampDouble_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_RampDouble_Concrete_8x1_C": { - "slug": "double-ramp-2m", - "name": "Double Ramp 2m", - "className": "Recipe_RampDouble_Concrete_8x1_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_RampDouble_Concrete_8x1_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_RampDouble_Concrete_8x2_C": { - "slug": "double-ramp-4m", - "name": "Double Ramp 4m", - "className": "Recipe_RampDouble_Concrete_8x2_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_RampDouble_Concrete_8x2_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_RampDouble_Concrete_8x4_C": { - "slug": "double-ramp-8m", - "name": "Double Ramp 8m", - "className": "Recipe_RampDouble_Concrete_8x4_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_RampDouble_Concrete_8x4_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_RampDouble_Metal_8x1_C": { - "slug": "double-ramp-2m", - "name": "Double Ramp 2m", - "className": "Recipe_RampDouble_Metal_8x1_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_RampDouble_Metal_8x1_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_RampDouble_Metal_8x2_C": { - "slug": "double-ramp-4m", - "name": "Double Ramp 4m", - "className": "Recipe_RampDouble_Metal_8x2_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_RampDouble_Metal_8x2_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_RampDouble_Metal_8x4_C": { - "slug": "double-ramp-8m", - "name": "Double Ramp 8m", - "className": "Recipe_RampDouble_Metal_8x4_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_RampDouble_Metal_8x4_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_RampDouble_Polished_8x1_C": { - "slug": "double-ramp-2m", - "name": "Double Ramp 2m", - "className": "Recipe_RampDouble_Polished_8x1_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_RampDouble_Polished_8x1_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_RampDouble_Polished_8x2_C": { - "slug": "double-ramp-4m", - "name": "Double Ramp 4m", - "className": "Recipe_RampDouble_Polished_8x2_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_RampDouble_Polished_8x2_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_RampDouble_Polished_8x4_C": { - "slug": "double-ramp-8m", - "name": "Double Ramp 8m", - "className": "Recipe_RampDouble_Polished_8x4_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_RampDouble_Polished_8x4_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_RampInverted_8x1_C": { - "slug": "inv-ramp-1m", - "name": "Inv. Ramp 1m", - "className": "Recipe_RampInverted_8x1_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_RampInverted_8x1_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_RampInverted_8x1_Corner_01_C": { - "slug": "inv-up-corner-1m", - "name": "Inv. Up Corner 1m", - "className": "Recipe_RampInverted_8x1_Corner_01_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_RampInverted_8x1_Corner_01_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_RampInverted_8x1_Corner_02_C": { - "slug": "inv-down-corner-1m", - "name": "Inv. Down Corner 1m", - "className": "Recipe_RampInverted_8x1_Corner_02_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_RampInverted_8x1_Corner_02_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_RampInverted_8x2_01_C": { - "slug": "inv-ramp-2m", - "name": "Inv. Ramp 2m", - "className": "Recipe_RampInverted_8x2_01_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_RampInverted_8x2_01_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_RampInverted_8x2_Corner_01_C": { - "slug": "inv-up-corner-2m", - "name": "Inv. Up Corner 2m", - "className": "Recipe_RampInverted_8x2_Corner_01_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_RampInverted_8x2_Corner_01_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_RampInverted_8x2_Corner_02_C": { - "slug": "inv-down-corner-2m", - "name": "Inv. Down Corner 2m", - "className": "Recipe_RampInverted_8x2_Corner_02_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_RampInverted_8x2_Corner_02_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_RampInverted_8x4_Corner_01_C": { - "slug": "inv-up-corner-4m", - "name": "Inv. Up Corner 4m", - "className": "Recipe_RampInverted_8x4_Corner_01_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_RampInverted_8x4_Corner_01_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_RampInverted_8x4_Corner_02_C": { - "slug": "inv-down-corner-4m", - "name": "Inv. Down Corner 4m", - "className": "Recipe_RampInverted_8x4_Corner_02_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_RampInverted_8x4_Corner_02_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Ramp_8x1_01_C": { - "slug": "ramp-1m", - "name": "Ramp 1m", - "className": "Recipe_Ramp_8x1_01_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Ramp_8x1_01_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Ramp_8x2_01_C": { - "slug": "ramp-2m", - "name": "Ramp 2m", - "className": "Recipe_Ramp_8x2_01_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Ramp_8x2_01_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Ramp_8x4_01_C": { - "slug": "ramp-4m", - "name": "Ramp 4m", - "className": "Recipe_Ramp_8x4_01_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Ramp_8x4_01_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Ramp_8x4_Inverted_01_C": { - "slug": "inv-ramp-4m", - "name": "Inv. Ramp 4m", - "className": "Recipe_Ramp_8x4_Inverted_01_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Ramp_8x4_Inverted_01_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Ramp_8x8x8_C": { - "slug": "double-ramp-8m", - "name": "Double Ramp 8m", - "className": "Recipe_Ramp_8x8x8_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Ramp_8x8x8_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Ramp_Asphalt_8x1_C": { - "slug": "ramp-1m", - "name": "Ramp 1m", - "className": "Recipe_Ramp_Asphalt_8x1_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Ramp_Asphalt_8x1_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Ramp_Asphalt_8x2_C": { - "slug": "ramp-2m", - "name": "Ramp 2m", - "className": "Recipe_Ramp_Asphalt_8x2_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Ramp_Asphalt_8x2_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Ramp_Asphalt_8x4_C": { - "slug": "ramp-4m", - "name": "Ramp 4m", - "className": "Recipe_Ramp_Asphalt_8x4_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Ramp_Asphalt_8x4_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Ramp_Concrete_8x1_C": { - "slug": "ramp-1m", - "name": "Ramp 1m", - "className": "Recipe_Ramp_Concrete_8x1_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Ramp_Concrete_8x1_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Ramp_Concrete_8x2_C": { - "slug": "ramp-2m", - "name": "Ramp 2m", - "className": "Recipe_Ramp_Concrete_8x2_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Ramp_Concrete_8x2_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Ramp_Concrete_8x4_C": { - "slug": "ramp-4m", - "name": "Ramp 4m", - "className": "Recipe_Ramp_Concrete_8x4_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Ramp_Concrete_8x4_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Ramp_Diagonal_8x1_01_C": { - "slug": "down-corner-ramp-1m", - "name": "Down Corner Ramp 1m", - "className": "Recipe_Ramp_Diagonal_8x1_01_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Ramp_Diagonal_8x1_01_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Ramp_Diagonal_8x1_02_C": { - "slug": "up-corner-ramp-1m", - "name": "Up Corner Ramp 1m", - "className": "Recipe_Ramp_Diagonal_8x1_02_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Ramp_Diagonal_8x1_02_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Ramp_Diagonal_8x2_01_C": { - "slug": "down-corner-ramp-2m", - "name": "Down Corner Ramp 2m", - "className": "Recipe_Ramp_Diagonal_8x2_01_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Ramp_Diagonal_8x2_01_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Ramp_Diagonal_8x2_02_C": { - "slug": "up-corner-ramp-2m", - "name": "Up Corner Ramp 2m", - "className": "Recipe_Ramp_Diagonal_8x2_02_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Ramp_Diagonal_8x2_02_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Ramp_Diagonal_8x4_01_C": { - "slug": "down-corner-ramp-4m", - "name": "Down Corner Ramp 4m", - "className": "Recipe_Ramp_Diagonal_8x4_01_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Ramp_Diagonal_8x4_01_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Ramp_Diagonal_8x4_02_C": { - "slug": "up-corner-ramp-4m", - "name": "Up Corner Ramp 4m", - "className": "Recipe_Ramp_Diagonal_8x4_02_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Ramp_Diagonal_8x4_02_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Ramp_DownCorner_Asphalt_8x1_C": { - "slug": "down-corner-ramp-1m", - "name": "Down Corner Ramp 1m", - "className": "Recipe_Ramp_DownCorner_Asphalt_8x1_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Ramp_DownCorner_Asphalt_8x1_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Ramp_DownCorner_Asphalt_8x2_C": { - "slug": "down-corner-ramp-2m", - "name": "Down Corner Ramp 2m", - "className": "Recipe_Ramp_DownCorner_Asphalt_8x2_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Ramp_DownCorner_Asphalt_8x2_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Ramp_DownCorner_Asphalt_8x4_C": { - "slug": "down-corner-ramp-4m", - "name": "Down Corner Ramp 4m", - "className": "Recipe_Ramp_DownCorner_Asphalt_8x4_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Ramp_DownCorner_Asphalt_8x4_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Ramp_DownCorner_Concrete_8x1_C": { - "slug": "down-corner-ramp-1m", - "name": "Down Corner Ramp 1m", - "className": "Recipe_Ramp_DownCorner_Concrete_8x1_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Ramp_DownCorner_Concrete_8x1_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Ramp_DownCorner_Concrete_8x2_C": { - "slug": "down-corner-ramp-2m", - "name": "Down Corner Ramp 2m", - "className": "Recipe_Ramp_DownCorner_Concrete_8x2_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Ramp_DownCorner_Concrete_8x2_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Ramp_DownCorner_Concrete_8x4_C": { - "slug": "down-corner-ramp-4m", - "name": "Down Corner Ramp 4m", - "className": "Recipe_Ramp_DownCorner_Concrete_8x4_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Ramp_DownCorner_Concrete_8x4_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Ramp_DownCorner_Metal_8x1_C": { - "slug": "down-corner-ramp-1m", - "name": "Down Corner Ramp 1m", - "className": "Recipe_Ramp_DownCorner_Metal_8x1_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Ramp_DownCorner_Metal_8x1_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Ramp_DownCorner_Metal_8x2_C": { - "slug": "down-corner-ramp-2m", - "name": "Down Corner Ramp 2m", - "className": "Recipe_Ramp_DownCorner_Metal_8x2_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Ramp_DownCorner_Metal_8x2_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Ramp_DownCorner_Metal_8x4_C": { - "slug": "down-corner-ramp-4m", - "name": "Down Corner Ramp 4m", - "className": "Recipe_Ramp_DownCorner_Metal_8x4_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Ramp_DownCorner_Metal_8x4_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Ramp_DownCorner_Polished_8x1_C": { - "slug": "down-corner-ramp-1m", - "name": "Down Corner Ramp 1m", - "className": "Recipe_Ramp_DownCorner_Polished_8x1_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Ramp_DownCorner_Polished_8x1_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Ramp_DownCorner_Polished_8x2_C": { - "slug": "down-corner-ramp-2m", - "name": "Down Corner Ramp 2m", - "className": "Recipe_Ramp_DownCorner_Polished_8x2_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Ramp_DownCorner_Polished_8x2_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Ramp_DownCorner_Polished_8x4_C": { - "slug": "down-corner-ramp-4m", - "name": "Down Corner Ramp 4m", - "className": "Recipe_Ramp_DownCorner_Polished_8x4_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Ramp_DownCorner_Polished_8x4_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Ramp_Frame_01_C": { - "slug": "frame-ramp", - "name": "Frame Ramp", - "className": "Recipe_Ramp_Frame_01_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_SteelPlate_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Ramp_Frame_01_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Ramp_Frame_Inverted_01_C": { - "slug": "inverted-frame-ramp", - "name": "Inverted Frame Ramp", - "className": "Recipe_Ramp_Frame_Inverted_01_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_SteelPlate_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Ramp_Frame_Inverted_01_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Ramp_Metal_8x1_C": { - "slug": "ramp-1m", - "name": "Ramp 1m", - "className": "Recipe_Ramp_Metal_8x1_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Ramp_Metal_8x1_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Ramp_Metal_8x2_C": { - "slug": "ramp-2m", - "name": "Ramp 2m", - "className": "Recipe_Ramp_Metal_8x2_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Ramp_Metal_8x2_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Ramp_Metal_8x4_C": { - "slug": "ramp-4m", - "name": "Ramp 4m", - "className": "Recipe_Ramp_Metal_8x4_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Ramp_Metal_8x4_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Ramp_Polished_8x1_C": { - "slug": "ramp-1m", - "name": "Ramp 1m", - "className": "Recipe_Ramp_Polished_8x1_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Ramp_Polished_8x1_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Ramp_Polished_8x2_C": { - "slug": "ramp-2m", - "name": "Ramp 2m", - "className": "Recipe_Ramp_Polished_8x2_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Ramp_Polished_8x2_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Ramp_Polished_8x4_C": { - "slug": "ramp-4m", - "name": "Ramp 4m", - "className": "Recipe_Ramp_Polished_8x4_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Ramp_Polished_8x4_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Ramp_UpCorner_Asphalt_8x1_C": { - "slug": "up-corner-ramp-1m", - "name": "Up Corner Ramp 1m", - "className": "Recipe_Ramp_UpCorner_Asphalt_8x1_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Ramp_UpCorner_Asphalt_8x1_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Ramp_UpCorner_Asphalt_8x2_C": { - "slug": "up-corner-ramp-2m", - "name": "Up Corner Ramp 2m", - "className": "Recipe_Ramp_UpCorner_Asphalt_8x2_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Ramp_UpCorner_Asphalt_8x2_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Ramp_UpCorner_Asphalt_8x4_C": { - "slug": "up-corner-ramp-4m", - "name": "Up Corner Ramp 4m", - "className": "Recipe_Ramp_UpCorner_Asphalt_8x4_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Ramp_UpCorner_Asphalt_8x4_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Ramp_UpCorner_Concrete_8x1_C": { - "slug": "up-corner-ramp-1m", - "name": "Up Corner Ramp 1m", - "className": "Recipe_Ramp_UpCorner_Concrete_8x1_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Ramp_UpCorner_Concrete_8x1_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Ramp_UpCorner_Concrete_8x2_C": { - "slug": "up-corner-ramp-2m", - "name": "Up Corner Ramp 2m", - "className": "Recipe_Ramp_UpCorner_Concrete_8x2_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Ramp_UpCorner_Concrete_8x2_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Ramp_UpCorner_Concrete_8x4_C": { - "slug": "up-corner-ramp-4m", - "name": "Up Corner Ramp 4m", - "className": "Recipe_Ramp_UpCorner_Concrete_8x4_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Ramp_UpCorner_Concrete_8x4_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Ramp_UpCorner_Metal_8x1_C": { - "slug": "up-corner-ramp-1m", - "name": "Up Corner Ramp 1m", - "className": "Recipe_Ramp_UpCorner_Metal_8x1_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Ramp_UpCorner_Metal_8x1_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Ramp_UpCorner_Metal_8x2_C": { - "slug": "up-corner-ramp-2m", - "name": "Up Corner Ramp 2m", - "className": "Recipe_Ramp_UpCorner_Metal_8x2_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Ramp_UpCorner_Metal_8x2_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Ramp_UpCorner_Metal_8x4_C": { - "slug": "up-corner-ramp-4m", - "name": "Up Corner Ramp 4m", - "className": "Recipe_Ramp_UpCorner_Metal_8x4_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Ramp_UpCorner_Metal_8x4_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Ramp_UpCorner_Polished_8x1_C": { - "slug": "up-corner-ramp-1m", - "name": "Up Corner Ramp 1m", - "className": "Recipe_Ramp_UpCorner_Polished_8x1_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Ramp_UpCorner_Polished_8x1_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Ramp_UpCorner_Polished_8x2_C": { - "slug": "up-corner-ramp-2m", - "name": "Up Corner Ramp 2m", - "className": "Recipe_Ramp_UpCorner_Polished_8x2_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Ramp_UpCorner_Polished_8x2_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Ramp_UpCorner_Polished_8x4_C": { - "slug": "up-corner-ramp-4m", - "name": "Up Corner Ramp 4m", - "className": "Recipe_Ramp_UpCorner_Polished_8x4_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Ramp_UpCorner_Polished_8x4_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_RebarGun_C": { - "slug": "rebar-gun", - "name": "Rebar Gun", - "className": "Recipe_RebarGun_C", - "alternate": false, - "time": 100, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronPlateReinforced_C", - "amount": 6 - }, - { - "item": "Desc_IronRod_C", - "amount": 16 - }, - { - "item": "Desc_IronScrew_C", - "amount": 100 - } - ], - "forBuilding": false, - "inMachine": false, - "inHand": false, - "inWorkshop": true, - "products": [ - { - "item": "Desc_RebarGunProjectile_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_ResidualFuel_C": { - "slug": "residual-fuel", - "name": "Residual Fuel", - "className": "Recipe_ResidualFuel_C", - "alternate": false, - "time": 6, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_HeavyOilResidue_C", - "amount": 6 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_LiquidFuel_C", - "amount": 4 - } - ], - "producedIn": [ - "Desc_OilRefinery_C" - ], - "isVariablePower": false - }, - "Recipe_ResidualPlastic_C": { - "slug": "residual-plastic", - "name": "Residual Plastic", - "className": "Recipe_ResidualPlastic_C", - "alternate": false, - "time": 6, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_PolymerResin_C", - "amount": 6 - }, - { - "item": "Desc_Water_C", - "amount": 2 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Plastic_C", - "amount": 2 - } - ], - "producedIn": [ - "Desc_OilRefinery_C" - ], - "isVariablePower": false - }, - "Recipe_ResidualRubber_C": { - "slug": "residual-rubber", - "name": "Residual Rubber", - "className": "Recipe_ResidualRubber_C", - "alternate": false, - "time": 6, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_PolymerResin_C", - "amount": 4 - }, - { - "item": "Desc_Water_C", - "amount": 4 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Rubber_C", - "amount": 2 - } - ], - "producedIn": [ - "Desc_OilRefinery_C" - ], - "isVariablePower": false - }, - "Recipe_ResourceSinkShop_C": { - "slug": "awesome-shop", - "name": "AWESOME Shop", - "className": "Recipe_ResourceSinkShop_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronScrew_C", - "amount": 200 - }, - { - "item": "Desc_IronPlate_C", - "amount": 10 - }, - { - "item": "Desc_Cable_C", - "amount": 10 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_ResourceSinkShop_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_ResourceSink_C": { - "slug": "awesome-sink", - "name": "AWESOME Sink", - "className": "Recipe_ResourceSink_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronPlateReinforced_C", - "amount": 15 - }, - { - "item": "Desc_Cable_C", - "amount": 30 - }, - { - "item": "Desc_Cement_C", - "amount": 45 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_ResourceSink_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Roof_A_01_C": { - "slug": "metal-roof-flat", - "name": "Metal Roof Flat", - "className": "Recipe_Roof_A_01_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 3 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Roof_A_01_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Roof_A_02_C": { - "slug": "metal-roof-1m", - "name": "Metal Roof 1m", - "className": "Recipe_Roof_A_02_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 3 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Roof_A_02_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Roof_A_03_C": { - "slug": "metal-roof-2m", - "name": "Metal Roof 2m", - "className": "Recipe_Roof_A_03_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 3 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Roof_A_03_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Roof_A_04_C": { - "slug": "metal-roof-4m", - "name": "Metal Roof 4m", - "className": "Recipe_Roof_A_04_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 3 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Roof_A_04_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Roof_Orange_01_C": { - "slug": "ficsit-roof-flat", - "name": "FICSIT Roof Flat", - "className": "Recipe_Roof_Orange_01_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 3 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Roof_Orange_01_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Roof_Orange_02_C": { - "slug": "ficsit-roof-1m", - "name": "FICSIT Roof 1m", - "className": "Recipe_Roof_Orange_02_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 3 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Roof_Orange_02_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Roof_Orange_03_C": { - "slug": "ficsit-roof-2m", - "name": "FICSIT Roof 2m", - "className": "Recipe_Roof_Orange_03_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 3 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Roof_Orange_03_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Roof_Orange_04_C": { - "slug": "ficsit-roof-4m", - "name": "FICSIT Roof 4m", - "className": "Recipe_Roof_Orange_04_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 3 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Roof_Orange_04_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Roof_Tar_01_C": { - "slug": "tar-roof-flat", - "name": "Tar Roof Flat", - "className": "Recipe_Roof_Tar_01_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 3 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Roof_Tar_01_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Roof_Tar_02_C": { - "slug": "tar-roof-1m", - "name": "Tar Roof 1m", - "className": "Recipe_Roof_Tar_02_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 3 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Roof_Tar_02_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Roof_Tar_03_C": { - "slug": "tar-roof-2m", - "name": "Tar Roof 2m", - "className": "Recipe_Roof_Tar_03_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 3 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Roof_Tar_03_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Roof_Tar_04_C": { - "slug": "tar-roof-4m", - "name": "Tar Roof 4m", - "className": "Recipe_Roof_Tar_04_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 3 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Roof_Tar_04_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Roof_Window_01_C": { - "slug": "glass-roof-flat", - "name": "Glass Roof Flat", - "className": "Recipe_Roof_Window_01_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 3 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Roof_Window_01_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Roof_Window_02_C": { - "slug": "glass-roof-1m", - "name": "Glass Roof 1m", - "className": "Recipe_Roof_Window_02_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 3 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Roof_Window_02_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Roof_Window_03_C": { - "slug": "glass-roof-2m", - "name": "Glass Roof 2m", - "className": "Recipe_Roof_Window_03_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 3 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Roof_Window_03_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Roof_Window_04_C": { - "slug": "glass-roof-4m", - "name": "Glass Roof 4m", - "className": "Recipe_Roof_Window_04_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 3 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Roof_Window_04_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Rotor_C": { - "slug": "rotor", - "name": "Rotor", - "className": "Recipe_Rotor_C", - "alternate": false, - "time": 15, - "manualTimeMultiplier": 0.8, - "ingredients": [ - { - "item": "Desc_IronRod_C", - "amount": 5 - }, - { - "item": "Desc_IronScrew_C", - "amount": 25 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": true, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Rotor_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_AssemblerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Rubber_C": { - "slug": "rubber", - "name": "Rubber", - "className": "Recipe_Rubber_C", - "alternate": false, - "time": 6, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_LiquidOil_C", - "amount": 3 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Rubber_C", - "amount": 2 - }, - { - "item": "Desc_HeavyOilResidue_C", - "amount": 2 - } - ], - "producedIn": [ - "Desc_OilRefinery_C" - ], - "isVariablePower": false - }, - "Recipe_Screw_C": { - "slug": "screw", - "name": "Screw", - "className": "Recipe_Screw_C", - "alternate": false, - "time": 6, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronRod_C", - "amount": 1 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": true, - "inWorkshop": false, - "products": [ - { - "item": "Desc_IronScrew_C", - "amount": 4 - } - ], - "producedIn": [ - "Desc_ConstructorMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Silica_C": { - "slug": "silica", - "name": "Silica", - "className": "Recipe_Silica_C", - "alternate": false, - "time": 8, - "manualTimeMultiplier": 2, - "ingredients": [ - { - "item": "Desc_RawQuartz_C", - "amount": 3 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": true, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Silica_C", - "amount": 5 - } - ], - "producedIn": [ - "Desc_ConstructorMk1_C" - ], - "isVariablePower": false - }, - "Recipe_SmelterBasicMk1_C": { - "slug": "smelter", - "name": "Smelter", - "className": "Recipe_SmelterBasicMk1_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronRod_C", - "amount": 5 - }, - { - "item": "Desc_Wire_C", - "amount": 8 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_SmelterMk1_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_SmelterMk1_C": { - "slug": "foundry", - "name": "Foundry", - "className": "Recipe_SmelterMk1_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_ModularFrame_C", - "amount": 10 - }, - { - "item": "Desc_Rotor_C", - "amount": 10 - }, - { - "item": "Desc_Cement_C", - "amount": 20 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_FoundryMk1_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_SpaceElevatorPart_1_C": { - "slug": "smart-plating", - "name": "Smart Plating", - "className": "Recipe_SpaceElevatorPart_1_C", - "alternate": false, - "time": 30, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronPlateReinforced_C", - "amount": 1 - }, - { - "item": "Desc_Rotor_C", - "amount": 1 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_SpaceElevatorPart_1_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_AssemblerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_SpaceElevatorPart_2_C": { - "slug": "versatile-framework", - "name": "Versatile Framework", - "className": "Recipe_SpaceElevatorPart_2_C", - "alternate": false, - "time": 24, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_ModularFrame_C", - "amount": 1 - }, - { - "item": "Desc_SteelPlate_C", - "amount": 12 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_SpaceElevatorPart_2_C", - "amount": 2 - } - ], - "producedIn": [ - "Desc_AssemblerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_SpaceElevatorPart_3_C": { - "slug": "automated-wiring", - "name": "Automated Wiring", - "className": "Recipe_SpaceElevatorPart_3_C", - "alternate": false, - "time": 24, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Stator_C", - "amount": 1 - }, - { - "item": "Desc_Cable_C", - "amount": 20 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_SpaceElevatorPart_3_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_AssemblerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_SpaceElevatorPart_4_C": { - "slug": "modular-engine", - "name": "Modular Engine", - "className": "Recipe_SpaceElevatorPart_4_C", - "alternate": false, - "time": 60, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Motor_C", - "amount": 2 - }, - { - "item": "Desc_Rubber_C", - "amount": 15 - }, - { - "item": "Desc_SpaceElevatorPart_1_C", - "amount": 2 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_SpaceElevatorPart_4_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_ManufacturerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_SpaceElevatorPart_5_C": { - "slug": "adaptive-control-unit", - "name": "Adaptive Control Unit", - "className": "Recipe_SpaceElevatorPart_5_C", - "alternate": false, - "time": 120, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_SpaceElevatorPart_3_C", - "amount": 15 - }, - { - "item": "Desc_CircuitBoard_C", - "amount": 10 - }, - { - "item": "Desc_ModularFrameHeavy_C", - "amount": 2 - }, - { - "item": "Desc_Computer_C", - "amount": 2 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_SpaceElevatorPart_5_C", - "amount": 2 - } - ], - "producedIn": [ - "Desc_ManufacturerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_SpaceElevatorPart_6_C": { - "slug": "magnetic-field-generator", - "name": "Magnetic Field Generator", - "className": "Recipe_SpaceElevatorPart_6_C", - "alternate": false, - "time": 120, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_SpaceElevatorPart_2_C", - "amount": 5 - }, - { - "item": "Desc_ElectromagneticControlRod_C", - "amount": 2 - }, - { - "item": "Desc_Battery_C", - "amount": 10 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_SpaceElevatorPart_6_C", - "amount": 2 - } - ], - "producedIn": [ - "Desc_ManufacturerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_SpaceElevatorPart_7_C": { - "slug": "assembly-director-system", - "name": "Assembly Director System", - "className": "Recipe_SpaceElevatorPart_7_C", - "alternate": false, - "time": 80, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_SpaceElevatorPart_5_C", - "amount": 2 - }, - { - "item": "Desc_ComputerSuper_C", - "amount": 1 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_SpaceElevatorPart_7_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_AssemblerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_SpaceElevatorPart_8_C": { - "slug": "thermal-propulsion-rocket", - "name": "Thermal Propulsion Rocket", - "className": "Recipe_SpaceElevatorPart_8_C", - "alternate": false, - "time": 120, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_SpaceElevatorPart_4_C", - "amount": 5 - }, - { - "item": "Desc_MotorLightweight_C", - "amount": 2 - }, - { - "item": "Desc_CoolingSystem_C", - "amount": 6 - }, - { - "item": "Desc_ModularFrameFused_C", - "amount": 2 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_SpaceElevatorPart_8_C", - "amount": 2 - } - ], - "producedIn": [ - "Desc_ManufacturerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_SpaceElevatorPart_9_C": { - "slug": "nuclear-pasta", - "name": "Nuclear Pasta", - "className": "Recipe_SpaceElevatorPart_9_C", - "alternate": false, - "time": 120, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_CopperDust_C", - "amount": 200 - }, - { - "item": "Desc_PressureConversionCube_C", - "amount": 1 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_SpaceElevatorPart_9_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_HadronCollider_C" - ], - "isVariablePower": true, - "minPower": 500, - "maxPower": 1500 - }, - "Recipe_SpaceElevator_C": { - "slug": "space-elevator", - "name": "Space Elevator", - "className": "Recipe_SpaceElevator_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 500 - }, - { - "item": "Desc_IronPlate_C", - "amount": 250 - }, - { - "item": "Desc_IronRod_C", - "amount": 400 - }, - { - "item": "Desc_Wire_C", - "amount": 1500 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_SpaceElevator_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_SpaceRifleMk1_C": { - "slug": "rifle", - "name": "Rifle", - "className": "Recipe_SpaceRifleMk1_C", - "alternate": false, - "time": 120, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_SteelPipe_C", - "amount": 25 - }, - { - "item": "Desc_ModularFrameHeavy_C", - "amount": 3 - }, - { - "item": "Desc_CircuitBoard_C", - "amount": 20 - }, - { - "item": "Desc_IronScrew_C", - "amount": 250 - } - ], - "forBuilding": false, - "inMachine": false, - "inHand": false, - "inWorkshop": true, - "products": [ - { - "item": "BP_EquipmentDescriptorRifle_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_SpikedRebar_C": { - "slug": "spiked-rebar", - "name": "Spiked Rebar", - "className": "Recipe_SpikedRebar_C", - "alternate": false, - "time": 4, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronRod_C", - "amount": 1 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": true, - "inWorkshop": true, - "products": [ - { - "item": "Desc_SpikedRebar_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_ConstructorMk1_C" - ], - "isVariablePower": false - }, - "Recipe_Stairs_Left_01_C": { - "slug": "stairs-left", - "name": "Stairs Left", - "className": "Recipe_Stairs_Left_01_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 3 - }, - { - "item": "Desc_IronPlate_C", - "amount": 3 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Stairs_Left_01_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Stairs_Right_01_C": { - "slug": "stairs-right", - "name": "Stairs Right", - "className": "Recipe_Stairs_Right_01_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 3 - }, - { - "item": "Desc_IronPlate_C", - "amount": 3 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Stairs_Right_01_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_StandaloneWidgetSign_Huge_C": { - "slug": "large-billboard", - "name": "Large Billboard", - "className": "Recipe_StandaloneWidgetSign_Huge_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_SteelPlateReinforced_C", - "amount": 12 - }, - { - "item": "Desc_CopperSheet_C", - "amount": 20 - }, - { - "item": "Desc_CrystalOscillator_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_StandaloneWidgetSign_Huge_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_StandaloneWidgetSign_Large_C": { - "slug": "small-billboard", - "name": "Small Billboard", - "className": "Recipe_StandaloneWidgetSign_Large_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_SteelPlateReinforced_C", - "amount": 3 - }, - { - "item": "Desc_CopperSheet_C", - "amount": 4 - }, - { - "item": "Desc_CrystalOscillator_C", - "amount": 1 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_StandaloneWidgetSign_Large_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_StandaloneWidgetSign_Medium_C": { - "slug": "display-sign", - "name": "Display Sign", - "className": "Recipe_StandaloneWidgetSign_Medium_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronPlateReinforced_C", - "amount": 2 - }, - { - "item": "Desc_QuartzCrystal_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_StandaloneWidgetSign_Medium_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_StandaloneWidgetSign_Portrait_C": { - "slug": "portrait-sign", - "name": "Portrait Sign", - "className": "Recipe_StandaloneWidgetSign_Portrait_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronPlateReinforced_C", - "amount": 4 - }, - { - "item": "Desc_QuartzCrystal_C", - "amount": 10 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_StandaloneWidgetSign_Portrait_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_StandaloneWidgetSign_SmallVeryWide_C": { - "slug": "label-sign-4m", - "name": "Label Sign 4m", - "className": "Recipe_StandaloneWidgetSign_SmallVeryWide_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronPlate_C", - "amount": 4 - }, - { - "item": "Desc_QuartzCrystal_C", - "amount": 4 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_StandaloneWidgetSign_SmallVeryWide_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_StandaloneWidgetSign_SmallWide_C": { - "slug": "label-sign-3m", - "name": "Label Sign 3m", - "className": "Recipe_StandaloneWidgetSign_SmallWide_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronPlate_C", - "amount": 3 - }, - { - "item": "Desc_QuartzCrystal_C", - "amount": 3 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_StandaloneWidgetSign_SmallWide_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_StandaloneWidgetSign_Small_C": { - "slug": "label-sign-2m", - "name": "Label Sign 2m", - "className": "Recipe_StandaloneWidgetSign_Small_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronPlate_C", - "amount": 2 - }, - { - "item": "Desc_QuartzCrystal_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_StandaloneWidgetSign_Small_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_StandaloneWidgetSign_Square_C": { - "slug": "square-sign-2m", - "name": "Square Sign 2m", - "className": "Recipe_StandaloneWidgetSign_Square_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronPlateReinforced_C", - "amount": 3 - }, - { - "item": "Desc_QuartzCrystal_C", - "amount": 10 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_StandaloneWidgetSign_Square_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_StandaloneWidgetSign_Square_Small_C": { - "slug": "square-sign-1m", - "name": "Square Sign 1m", - "className": "Recipe_StandaloneWidgetSign_Square_Small_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronPlateReinforced_C", - "amount": 1 - }, - { - "item": "Desc_QuartzCrystal_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_StandaloneWidgetSign_Square_Small_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_StandaloneWidgetSign_Square_Tiny_C": { - "slug": "square-sign-0-5m", - "name": "Square Sign 0.5m", - "className": "Recipe_StandaloneWidgetSign_Square_Tiny_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronPlate_C", - "amount": 1 - }, - { - "item": "Desc_QuartzCrystal_C", - "amount": 1 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_StandaloneWidgetSign_Square_Tiny_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Stator_C": { - "slug": "stator", - "name": "Stator", - "className": "Recipe_Stator_C", - "alternate": false, - "time": 12, - "manualTimeMultiplier": 1.5, - "ingredients": [ - { - "item": "Desc_SteelPipe_C", - "amount": 3 - }, - { - "item": "Desc_Wire_C", - "amount": 8 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": true, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Stator_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_AssemblerMk1_C" - ], - "isVariablePower": false - }, - "Recipe_SteelBeam_C": { - "slug": "steel-beam", - "name": "Steel Beam", - "className": "Recipe_SteelBeam_C", - "alternate": false, - "time": 4, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_SteelIngot_C", - "amount": 4 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": true, - "inWorkshop": false, - "products": [ - { - "item": "Desc_SteelPlate_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_ConstructorMk1_C" - ], - "isVariablePower": false - }, - "Recipe_SteelPipe_C": { - "slug": "steel-pipe", - "name": "Steel Pipe", - "className": "Recipe_SteelPipe_C", - "alternate": false, - "time": 6, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_SteelIngot_C", - "amount": 3 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": true, - "inWorkshop": false, - "products": [ - { - "item": "Desc_SteelPipe_C", - "amount": 2 - } - ], - "producedIn": [ - "Desc_ConstructorMk1_C" - ], - "isVariablePower": false - }, - "Recipe_SteelWall_8x1_C": { - "slug": "basic-wall-1m", - "name": "Basic Wall 1m", - "className": "Recipe_SteelWall_8x1_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_SteelWall_8x1_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_SteelWall_8x4_Gate_01_C": { - "slug": "gate-hole-wall", - "name": "Gate Hole Wall", - "className": "Recipe_SteelWall_8x4_Gate_01_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_SteelWall_8x4_Gate_01_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_SteelWall_8x4_Window_01_C": { - "slug": "single-window", - "name": "Single Window", - "className": "Recipe_SteelWall_8x4_Window_01_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Silica_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_SteelWall_8x4_Window_01_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_SteelWall_8x4_Window_02_C": { - "slug": "reinforced-window", - "name": "Reinforced Window", - "className": "Recipe_SteelWall_8x4_Window_02_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Silica_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_SteelWall_8x4_Window_02_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_SteelWall_8x4_Window_03_C": { - "slug": "frame-window", - "name": "Frame Window", - "className": "Recipe_SteelWall_8x4_Window_03_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Silica_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_SteelWall_8x4_Window_03_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_SteelWall_8x4_Window_04_C": { - "slug": "panel-window", - "name": "Panel Window", - "className": "Recipe_SteelWall_8x4_Window_04_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Silica_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_SteelWall_8x4_Window_04_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_SteelWall_FlipTris_8x1_C": { - "slug": "inv-ramp-wall-1m", - "name": "Inv. Ramp Wall 1m", - "className": "Recipe_SteelWall_FlipTris_8x1_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_SteelWall_FlipTris_8x1_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_SteelWall_FlipTris_8x2_C": { - "slug": "inv-ramp-wall-2m", - "name": "Inv. Ramp Wall 2m", - "className": "Recipe_SteelWall_FlipTris_8x2_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_SteelWall_FlipTris_8x2_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_SteelWall_FlipTris_8x4_C": { - "slug": "inv-ramp-wall-4m", - "name": "Inv. Ramp Wall 4m", - "className": "Recipe_SteelWall_FlipTris_8x4_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_SteelWall_FlipTris_8x4_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_SteelWall_FlipTris_8x8_C": { - "slug": "inv-ramp-wall-8m", - "name": "Inv. Ramp Wall 8m", - "className": "Recipe_SteelWall_FlipTris_8x8_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_SteelWall_FlipTris_8x8_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_SteelWall_Tris_8x1_C": { - "slug": "ramp-wall-1m", - "name": "Ramp Wall 1m", - "className": "Recipe_SteelWall_Tris_8x1_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_SteelWall_Tris_8x1_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_SteelWall_Tris_8x2_C": { - "slug": "ramp-wall-2m", - "name": "Ramp Wall 2m", - "className": "Recipe_SteelWall_Tris_8x2_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_SteelWall_Tris_8x2_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_SteelWall_Tris_8x4_C": { - "slug": "ramp-wall-4m", - "name": "Ramp Wall 4m", - "className": "Recipe_SteelWall_Tris_8x4_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_SteelWall_Tris_8x4_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_SteelWall_Tris_8x8_C": { - "slug": "ramp-wall-8m", - "name": "Ramp Wall 8m", - "className": "Recipe_SteelWall_Tris_8x8_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_SteelWall_Tris_8x8_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_StorageContainerMk1_C": { - "slug": "storage-container", - "name": "Storage Container", - "className": "Recipe_StorageContainerMk1_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronPlate_C", - "amount": 10 - }, - { - "item": "Desc_IronRod_C", - "amount": 10 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_StorageContainerMk1_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_StorageContainerMk2_C": { - "slug": "industrial-storage-container", - "name": "Industrial Storage Container", - "className": "Recipe_StorageContainerMk2_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_SteelPlate_C", - "amount": 20 - }, - { - "item": "Desc_SteelPipe_C", - "amount": 20 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_StorageContainerMk2_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_StorageHazard_C": { - "slug": "hazard-storage-box", - "name": "Hazard Storage Box", - "className": "Recipe_StorageHazard_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronPlate_C", - "amount": 6 - }, - { - "item": "Desc_IronRod_C", - "amount": 6 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_StorageHazard_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_StorageMedkit_C": { - "slug": "medical-storage-box", - "name": "Medical Storage Box", - "className": "Recipe_StorageMedkit_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronPlate_C", - "amount": 6 - }, - { - "item": "Desc_IronRod_C", - "amount": 6 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_StorageMedkit_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_StoragePlayer_C": { - "slug": "personal-storage-box", - "name": "Personal Storage Box", - "className": "Recipe_StoragePlayer_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronPlate_C", - "amount": 6 - }, - { - "item": "Desc_IronRod_C", - "amount": 6 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_StoragePlayer_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_StreetLight_C": { - "slug": "street-light", - "name": "Street Light", - "className": "Recipe_StreetLight_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_HighSpeedWire_C", - "amount": 10 - }, - { - "item": "Desc_Wire_C", - "amount": 4 - }, - { - "item": "Desc_IronRod_C", - "amount": 4 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_StreetLight_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_SulfuricAcid_C": { - "slug": "sulfuric-acid", - "name": "Sulfuric Acid", - "className": "Recipe_SulfuricAcid_C", - "alternate": false, - "time": 6, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Sulfur_C", - "amount": 5 - }, - { - "item": "Desc_Water_C", - "amount": 5 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_SulfuricAcid_C", - "amount": 5 - } - ], - "producedIn": [ - "Desc_OilRefinery_C" - ], - "isVariablePower": false - }, - "Recipe_TradingPost_C": { - "slug": "the-hub", - "name": "The HUB", - "className": "Recipe_TradingPost_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_HUBParts_C", - "amount": 1 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_TradingPost_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_TrainDockingStationLiquid_C": { - "slug": "fluid-freight-platform", - "name": "Fluid Freight Platform", - "className": "Recipe_TrainDockingStationLiquid_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_ModularFrameHeavy_C", - "amount": 6 - }, - { - "item": "Desc_Computer_C", - "amount": 2 - }, - { - "item": "Desc_Cement_C", - "amount": 50 - }, - { - "item": "Desc_Cable_C", - "amount": 25 - }, - { - "item": "Desc_Motor_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_TrainDockingStationLiquid_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_TrainDockingStation_C": { - "slug": "freight-platform", - "name": "Freight Platform", - "className": "Recipe_TrainDockingStation_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_ModularFrameHeavy_C", - "amount": 6 - }, - { - "item": "Desc_Computer_C", - "amount": 2 - }, - { - "item": "Desc_Cement_C", - "amount": 50 - }, - { - "item": "Desc_Cable_C", - "amount": 25 - }, - { - "item": "Desc_Motor_C", - "amount": 5 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_TrainDockingStation_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_TrainPlatformEmpty_02_C": { - "slug": "empty-platform-with-catwalk", - "name": "Empty Platform With Catwalk", - "className": "Recipe_TrainPlatformEmpty_02_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_ModularFrameHeavy_C", - "amount": 6 - }, - { - "item": "Desc_Cement_C", - "amount": 50 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_TrainPlatformEmpty_02_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_TrainPlatformEmpty_C": { - "slug": "empty-platform", - "name": "Empty Platform", - "className": "Recipe_TrainPlatformEmpty_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_ModularFrameHeavy_C", - "amount": 6 - }, - { - "item": "Desc_Cement_C", - "amount": 50 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_TrainPlatformEmpty_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_TrainStation_C": { - "slug": "train-station", - "name": "Train Station", - "className": "Recipe_TrainStation_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_ModularFrameHeavy_C", - "amount": 4 - }, - { - "item": "Desc_Computer_C", - "amount": 8 - }, - { - "item": "Desc_Cement_C", - "amount": 50 - }, - { - "item": "Desc_Cable_C", - "amount": 25 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_TrainStation_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_TruckStation_C": { - "slug": "truck-station", - "name": "Truck Station", - "className": "Recipe_TruckStation_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_ModularFrame_C", - "amount": 15 - }, - { - "item": "Desc_Rotor_C", - "amount": 20 - }, - { - "item": "Desc_Cable_C", - "amount": 50 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_TruckStation_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_UJellyLandingPad_C": { - "slug": "u-jelly-landing-pad", - "name": "U-Jelly Landing Pad", - "className": "Recipe_UJellyLandingPad_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Rotor_C", - "amount": 2 - }, - { - "item": "Desc_Cable_C", - "amount": 20 - }, - { - "item": "Desc_GenericBiomass_C", - "amount": 200 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_LandingPad_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_UnpackageAlumina_C": { - "slug": "unpackage-alumina-solution", - "name": "Unpackage Alumina Solution", - "className": "Recipe_UnpackageAlumina_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_PackagedAlumina_C", - "amount": 2 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_AluminaSolution_C", - "amount": 2 - }, - { - "item": "Desc_FluidCanister_C", - "amount": 2 - } - ], - "producedIn": [ - "Desc_Packager_C" - ], - "isVariablePower": false - }, - "Recipe_UnpackageBioFuel_C": { - "slug": "unpackage-liquid-biofuel", - "name": "Unpackage Liquid Biofuel", - "className": "Recipe_UnpackageBioFuel_C", - "alternate": false, - "time": 2, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_PackagedBiofuel_C", - "amount": 2 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_LiquidBiofuel_C", - "amount": 2 - }, - { - "item": "Desc_FluidCanister_C", - "amount": 2 - } - ], - "producedIn": [ - "Desc_Packager_C" - ], - "isVariablePower": false - }, - "Recipe_UnpackageFuel_C": { - "slug": "unpackage-fuel", - "name": "Unpackage Fuel", - "className": "Recipe_UnpackageFuel_C", - "alternate": false, - "time": 2, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Fuel_C", - "amount": 2 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_LiquidFuel_C", - "amount": 2 - }, - { - "item": "Desc_FluidCanister_C", - "amount": 2 - } - ], - "producedIn": [ - "Desc_Packager_C" - ], - "isVariablePower": false - }, - "Recipe_UnpackageNitricAcid_C": { - "slug": "unpackage-nitric-acid", - "name": "Unpackage Nitric Acid", - "className": "Recipe_UnpackageNitricAcid_C", - "alternate": false, - "time": 3, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_PackagedNitricAcid_C", - "amount": 1 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_NitricAcid_C", - "amount": 1 - }, - { - "item": "Desc_GasTank_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_Packager_C" - ], - "isVariablePower": false - }, - "Recipe_UnpackageNitrogen_C": { - "slug": "unpackage-nitrogen-gas", - "name": "Unpackage Nitrogen Gas", - "className": "Recipe_UnpackageNitrogen_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_PackagedNitrogenGas_C", - "amount": 1 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_NitrogenGas_C", - "amount": 4 - }, - { - "item": "Desc_GasTank_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_Packager_C" - ], - "isVariablePower": false - }, - "Recipe_UnpackageOilResidue_C": { - "slug": "unpackage-heavy-oil-residue", - "name": "Unpackage Heavy Oil Residue", - "className": "Recipe_UnpackageOilResidue_C", - "alternate": false, - "time": 6, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_PackagedOilResidue_C", - "amount": 2 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_HeavyOilResidue_C", - "amount": 2 - }, - { - "item": "Desc_FluidCanister_C", - "amount": 2 - } - ], - "producedIn": [ - "Desc_Packager_C" - ], - "isVariablePower": false - }, - "Recipe_UnpackageOil_C": { - "slug": "unpackage-oil", - "name": "Unpackage Oil", - "className": "Recipe_UnpackageOil_C", - "alternate": false, - "time": 2, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_PackagedOil_C", - "amount": 2 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_LiquidOil_C", - "amount": 2 - }, - { - "item": "Desc_FluidCanister_C", - "amount": 2 - } - ], - "producedIn": [ - "Desc_Packager_C" - ], - "isVariablePower": false - }, - "Recipe_UnpackageSulfuricAcid_C": { - "slug": "unpackage-sulfuric-acid", - "name": "Unpackage Sulfuric Acid", - "className": "Recipe_UnpackageSulfuricAcid_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_PackagedSulfuricAcid_C", - "amount": 1 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_SulfuricAcid_C", - "amount": 1 - }, - { - "item": "Desc_FluidCanister_C", - "amount": 1 - } - ], - "producedIn": [ - "Desc_Packager_C" - ], - "isVariablePower": false - }, - "Recipe_UnpackageTurboFuel_C": { - "slug": "unpackage-turbofuel", - "name": "Unpackage Turbofuel", - "className": "Recipe_UnpackageTurboFuel_C", - "alternate": false, - "time": 6, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_TurboFuel_C", - "amount": 2 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_LiquidTurboFuel_C", - "amount": 2 - }, - { - "item": "Desc_FluidCanister_C", - "amount": 2 - } - ], - "producedIn": [ - "Desc_Packager_C" - ], - "isVariablePower": false - }, - "Recipe_UnpackageWater_C": { - "slug": "unpackage-water", - "name": "Unpackage Water", - "className": "Recipe_UnpackageWater_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_PackagedWater_C", - "amount": 2 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Water_C", - "amount": 2 - }, - { - "item": "Desc_FluidCanister_C", - "amount": 2 - } - ], - "producedIn": [ - "Desc_Packager_C" - ], - "isVariablePower": false - }, - "Recipe_UraniumCell_C": { - "slug": "encased-uranium-cell", - "name": "Encased Uranium Cell", - "className": "Recipe_UraniumCell_C", - "alternate": false, - "time": 12, - "manualTimeMultiplier": 0.5, - "ingredients": [ - { - "item": "Desc_OreUranium_C", - "amount": 10 - }, - { - "item": "Desc_Cement_C", - "amount": 3 - }, - { - "item": "Desc_SulfuricAcid_C", - "amount": 8 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_UraniumCell_C", - "amount": 5 - }, - { - "item": "Desc_SulfuricAcid_C", - "amount": 2 - } - ], - "producedIn": [ - "Desc_Blender_C" - ], - "isVariablePower": false - }, - "Recipe_Valve_C": { - "slug": "valve", - "name": "Valve", - "className": "Recipe_Valve_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Rubber_C", - "amount": 4 - }, - { - "item": "Desc_SteelPlate_C", - "amount": 4 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Valve_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Walkway_Cross_C": { - "slug": "walkway-crossing", - "name": "Walkway Crossing", - "className": "Recipe_Walkway_Cross_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronRod_C", - "amount": 2 - }, - { - "item": "Desc_IronPlate_C", - "amount": 1 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_WalkwayCross_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Walkway_Ramp_C": { - "slug": "walkway-ramp", - "name": "Walkway Ramp", - "className": "Recipe_Walkway_Ramp_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronRod_C", - "amount": 2 - }, - { - "item": "Desc_IronPlate_C", - "amount": 1 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_WalkwayRamp_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Walkway_Straight_C": { - "slug": "walkway-straight", - "name": "Walkway Straight", - "className": "Recipe_Walkway_Straight_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronRod_C", - "amount": 2 - }, - { - "item": "Desc_IronPlate_C", - "amount": 1 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_WalkwayStraight_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Walkway_T_C": { - "slug": "walkway-t-crossing", - "name": "Walkway T-Crossing", - "className": "Recipe_Walkway_T_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronRod_C", - "amount": 2 - }, - { - "item": "Desc_IronPlate_C", - "amount": 1 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_WalkwayT_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Walkway_Turn_C": { - "slug": "walkway-turn", - "name": "Walkway Turn", - "className": "Recipe_Walkway_Turn_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronRod_C", - "amount": 2 - }, - { - "item": "Desc_IronPlate_C", - "amount": 1 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_WalkwayTurn_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_WallSet_Steel_Angular_8x4_C": { - "slug": "tilted-wall-4m", - "name": "Tilted Wall 4m", - "className": "Recipe_WallSet_Steel_Angular_8x4_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_WallSet_Steel_Angular_8x4_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_WallSet_Steel_Angular_8x8_C": { - "slug": "tilted-wall-8m", - "name": "Tilted Wall 8m", - "className": "Recipe_WallSet_Steel_Angular_8x8_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_WallSet_Steel_Angular_8x8_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_8x4_01_C": { - "slug": "basic-wall-4m", - "name": "Basic Wall 4m", - "className": "Recipe_Wall_8x4_01_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_8x4_01_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_8x4_02_C": { - "slug": "basic-wall-4m", - "name": "Basic Wall 4m", - "className": "Recipe_Wall_8x4_02_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_8x4_02_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_Concrete_8x1_C": { - "slug": "basic-wall-1m", - "name": "Basic Wall 1m", - "className": "Recipe_Wall_Concrete_8x1_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_Concrete_8x1_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_Concrete_8x4_C": { - "slug": "basic-wall-4m", - "name": "Basic Wall 4m", - "className": "Recipe_Wall_Concrete_8x4_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_Concrete_8x4_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_Concrete_8x4_ConveyorHole_01_C": { - "slug": "conveyor-wall-x1", - "name": "Conveyor Wall x1", - "className": "Recipe_Wall_Concrete_8x4_ConveyorHole_01_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_Concrete_8x4_ConveyorHole_01_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_Concrete_8x4_ConveyorHole_02_C": { - "slug": "conveyor-wall-x2", - "name": "Conveyor Wall x2", - "className": "Recipe_Wall_Concrete_8x4_ConveyorHole_02_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_Concrete_8x4_ConveyorHole_02_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_Concrete_8x4_ConveyorHole_03_C": { - "slug": "conveyor-wall-x3", - "name": "Conveyor Wall x3", - "className": "Recipe_Wall_Concrete_8x4_ConveyorHole_03_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_Concrete_8x4_ConveyorHole_03_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_Concrete_8x4_Corner_01_C": { - "slug": "tilted-corner-wall-4m", - "name": "Tilted Corner Wall 4m", - "className": "Recipe_Wall_Concrete_8x4_Corner_01_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_Concrete_8x4_Corner_01_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_Concrete_8x4_Window_01_C": { - "slug": "single-window", - "name": "Single Window", - "className": "Recipe_Wall_Concrete_8x4_Window_01_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Silica_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_Concrete_8x4_Window_01_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_Concrete_8x4_Window_02_C": { - "slug": "frame-window", - "name": "Frame Window", - "className": "Recipe_Wall_Concrete_8x4_Window_02_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Silica_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_Concrete_8x4_Window_02_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_Concrete_8x4_Window_03_C": { - "slug": "panel-window", - "name": "Panel Window", - "className": "Recipe_Wall_Concrete_8x4_Window_03_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Silica_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_Concrete_8x4_Window_03_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_Concrete_8x4_Window_04_C": { - "slug": "reinforced-window", - "name": "Reinforced Window", - "className": "Recipe_Wall_Concrete_8x4_Window_04_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Silica_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_Concrete_8x4_Window_04_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_Concrete_8x8_Corner_01_C": { - "slug": "tilted-corner-wall-8m", - "name": "Tilted Corner Wall 8m", - "className": "Recipe_Wall_Concrete_8x8_Corner_01_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_Concrete_8x8_Corner_01_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_Concrete_Angular_8x4_C": { - "slug": "tilted-wall-4m", - "name": "Tilted Wall 4m", - "className": "Recipe_Wall_Concrete_Angular_8x4_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_Concrete_Angular_8x4_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_Concrete_Angular_8x8_C": { - "slug": "tilted-wall-8m", - "name": "Tilted Wall 8m", - "className": "Recipe_Wall_Concrete_Angular_8x8_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_Concrete_Angular_8x8_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_Concrete_CDoor_8x4_C": { - "slug": "center-door-wall", - "name": "Center Door Wall", - "className": "Recipe_Wall_Concrete_CDoor_8x4_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_Concrete_CDoor_8x4_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_Concrete_FlipTris_8x1_C": { - "slug": "inv-ramp-wall-1m", - "name": "Inv. Ramp Wall 1m", - "className": "Recipe_Wall_Concrete_FlipTris_8x1_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_Concrete_8x1_FlipTris_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_Concrete_FlipTris_8x2_C": { - "slug": "inv-ramp-wall-2m", - "name": "Inv. Ramp Wall 2m", - "className": "Recipe_Wall_Concrete_FlipTris_8x2_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_Concrete_8x2_FlipTris_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_Concrete_FlipTris_8x4_C": { - "slug": "inv-ramp-wall-4m", - "name": "Inv. Ramp Wall 4m", - "className": "Recipe_Wall_Concrete_FlipTris_8x4_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_Concrete_8x4_FlipTris_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_Concrete_FlipTris_8x8_C": { - "slug": "inv-ramp-wall-8m", - "name": "Inv. Ramp Wall 8m", - "className": "Recipe_Wall_Concrete_FlipTris_8x8_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_Concrete_8x8_FlipTris_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_Concrete_Gate_8x4_C": { - "slug": "gate-hole-wall", - "name": "Gate Hole Wall", - "className": "Recipe_Wall_Concrete_Gate_8x4_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_Concrete_Gate_8x4_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_Concrete_SDoor_8x4_C": { - "slug": "side-door-wall", - "name": "Side Door Wall", - "className": "Recipe_Wall_Concrete_SDoor_8x4_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_Concrete_SDoor_8x4_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_Concrete_Tris_8x1_C": { - "slug": "ramp-wall-1m", - "name": "Ramp Wall 1m", - "className": "Recipe_Wall_Concrete_Tris_8x1_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_Concrete_8x1_Tris_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_Concrete_Tris_8x2_C": { - "slug": "ramp-wall-2m", - "name": "Ramp Wall 2m", - "className": "Recipe_Wall_Concrete_Tris_8x2_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_Concrete_8x2_Tris_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_Concrete_Tris_8x4_C": { - "slug": "ramp-wall-4m", - "name": "Ramp Wall 4m", - "className": "Recipe_Wall_Concrete_Tris_8x4_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_Concrete_8x4_Tris_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_Concrete_Tris_8x8_C": { - "slug": "ramp-wall-8m", - "name": "Ramp Wall 8m", - "className": "Recipe_Wall_Concrete_Tris_8x8_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_Concrete_8x8_Tris_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_Conveyor_8x4_01_C": { - "slug": "conveyor-wall-x3", - "name": "Conveyor Wall x3", - "className": "Recipe_Wall_Conveyor_8x4_01_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_Conveyor_8x4_01_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_Conveyor_8x4_01_Steel_C": { - "slug": "conveyor-wall-x3", - "name": "Conveyor Wall x3", - "className": "Recipe_Wall_Conveyor_8x4_01_Steel_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_Conveyor_8x4_01_Steel_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_Conveyor_8x4_02_C": { - "slug": "conveyor-wall-x2", - "name": "Conveyor Wall x2", - "className": "Recipe_Wall_Conveyor_8x4_02_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_Conveyor_8x4_02_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_Conveyor_8x4_02_Steel_C": { - "slug": "conveyor-wall-x2", - "name": "Conveyor Wall x2", - "className": "Recipe_Wall_Conveyor_8x4_02_Steel_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_Conveyor_8x4_02_Steel_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_Conveyor_8x4_03_C": { - "slug": "conveyor-wall-x1", - "name": "Conveyor Wall x1", - "className": "Recipe_Wall_Conveyor_8x4_03_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_Conveyor_8x4_03_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_Conveyor_8x4_03_Steel_C": { - "slug": "conveyor-wall-x1", - "name": "Conveyor Wall x1", - "className": "Recipe_Wall_Conveyor_8x4_03_Steel_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_Conveyor_8x4_03_Steel_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_Conveyor_8x4_04_C": { - "slug": "wall-conveyor-perpendicular", - "name": "Wall Conveyor Perpendicular", - "className": "Recipe_Wall_Conveyor_8x4_04_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronPlate_C", - "amount": 3 - }, - { - "item": "Desc_Cement_C", - "amount": 3 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_Conveyor_8x4_04_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_Conveyor_8x4_04_Steel_C": { - "slug": "wall-conveyor-perpendicular", - "name": "Wall Conveyor Perpendicular", - "className": "Recipe_Wall_Conveyor_8x4_04_Steel_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronPlate_C", - "amount": 3 - }, - { - "item": "Desc_Cement_C", - "amount": 3 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_Conveyor_8x4_04_Steel_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_Door_8x4_01_C": { - "slug": "center-door-wall", - "name": "Center Door Wall", - "className": "Recipe_Wall_Door_8x4_01_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_Door_8x4_01_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_Door_8x4_01_Steel_C": { - "slug": "center-door-wall", - "name": "Center Door Wall", - "className": "Recipe_Wall_Door_8x4_01_Steel_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_Door_8x4_01_Steel_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_Door_8x4_03_C": { - "slug": "side-door-wall", - "name": "Side Door Wall", - "className": "Recipe_Wall_Door_8x4_03_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_Door_8x4_03_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_Door_8x4_03_Steel_C": { - "slug": "side-door-wall", - "name": "Side Door Wall", - "className": "Recipe_Wall_Door_8x4_03_Steel_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_Door_8x4_03_Steel_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_Frame_01_C": { - "slug": "frame-wall", - "name": "Frame Wall", - "className": "Recipe_Wall_Frame_01_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_SteelPlate_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_Frame_01_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_Gate_8x4_01_C": { - "slug": "gate-hole-wall", - "name": "Gate Hole Wall", - "className": "Recipe_Wall_Gate_8x4_01_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_Gate_8x4_01_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_Orange_8x1_C": { - "slug": "basic-wall-1m", - "name": "Basic Wall 1m", - "className": "Recipe_Wall_Orange_8x1_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_Orange_8x1_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_Orange_8x4_Corner_01_C": { - "slug": "tilted-corner-wall-4m", - "name": "Tilted Corner Wall 4m", - "className": "Recipe_Wall_Orange_8x4_Corner_01_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_Orange_8x4_Corner_01_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_Orange_8x8_Corner_01_C": { - "slug": "tilted-corner-wall-8m", - "name": "Tilted Corner Wall 8m", - "className": "Recipe_Wall_Orange_8x8_Corner_01_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_Orange_8x8_Corner_01_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_Orange_Angular_8x4_C": { - "slug": "tilted-wall-4m", - "name": "Tilted Wall 4m", - "className": "Recipe_Wall_Orange_Angular_8x4_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_Orange_Angular_8x4_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_Orange_Angular_8x8_C": { - "slug": "tilted-wall-8m", - "name": "Tilted Wall 8m", - "className": "Recipe_Wall_Orange_Angular_8x8_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_Orange_Angular_8x8_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_Orange_FlipTris_8x1_C": { - "slug": "inv-ramp-wall-1m", - "name": "Inv. Ramp Wall 1m", - "className": "Recipe_Wall_Orange_FlipTris_8x1_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_Orange_8x1_FlipTris_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_Orange_FlipTris_8x2_C": { - "slug": "inv-ramp-wall-2m", - "name": "Inv. Ramp Wall 2m", - "className": "Recipe_Wall_Orange_FlipTris_8x2_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_Orange_8x2_FlipTris_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_Orange_FlipTris_8x4_C": { - "slug": "inv-ramp-wall-4m", - "name": "Inv. Ramp Wall 4m", - "className": "Recipe_Wall_Orange_FlipTris_8x4_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_Orange_8x4_FlipTris_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_Orange_FlipTris_8x8_C": { - "slug": "inv-ramp-wall-8m", - "name": "Inv. Ramp Wall 8m", - "className": "Recipe_Wall_Orange_FlipTris_8x8_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_Orange_8x8_FlipTris_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_Orange_Tris_8x1_C": { - "slug": "ramp-wall-1m", - "name": "Ramp Wall 1m", - "className": "Recipe_Wall_Orange_Tris_8x1_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_Orange_8x1_Tris_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_Orange_Tris_8x2_C": { - "slug": "ramp-wall-2m", - "name": "Ramp Wall 2m", - "className": "Recipe_Wall_Orange_Tris_8x2_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_Orange_8x2_Tris_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_Orange_Tris_8x4_C": { - "slug": "ramp-wall-4m", - "name": "Ramp Wall 4m", - "className": "Recipe_Wall_Orange_Tris_8x4_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_Orange_8x4_Tris_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_Orange_Tris_8x8_C": { - "slug": "ramp-wall-8m", - "name": "Ramp Wall 8m", - "className": "Recipe_Wall_Orange_Tris_8x8_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_Orange_8x8_Tris_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_Steel_8x4_Corner_01_C": { - "slug": "tilted-corner-wall-4m", - "name": "Tilted Corner Wall 4m", - "className": "Recipe_Wall_Steel_8x4_Corner_01_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_Steel_8x4_Corner_01_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_Steel_8x8_Corner_01_C": { - "slug": "tilted-corner-wall-8m", - "name": "Tilted Corner Wall 8m", - "className": "Recipe_Wall_Steel_8x8_Corner_01_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Cement_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_Steel_8x8_Corner_01_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_Window_8x4_01_C": { - "slug": "single-window", - "name": "Single Window", - "className": "Recipe_Wall_Window_8x4_01_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Silica_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_Window_8x4_01_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_Window_8x4_02_C": { - "slug": "frame-window", - "name": "Frame Window", - "className": "Recipe_Wall_Window_8x4_02_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Silica_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_Window_8x4_02_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_Window_8x4_03_C": { - "slug": "panel-window", - "name": "Panel Window", - "className": "Recipe_Wall_Window_8x4_03_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Silica_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_Window_8x4_03_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_Window_8x4_04_C": { - "slug": "reinforced-window", - "name": "Reinforced Window", - "className": "Recipe_Wall_Window_8x4_04_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Silica_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_Window_8x4_04_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_Window_Thin_8x4_01_C": { - "slug": "full-frame-window", - "name": "Full Frame Window", - "className": "Recipe_Wall_Window_Thin_8x4_01_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Silica_C", - "amount": 2 - }, - { - "item": "Desc_SteelPlate_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_Window_Thin_8x4_01_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wall_Window_Thin_8x4_02_C": { - "slug": "hex-frame-window", - "name": "Hex Frame Window", - "className": "Recipe_Wall_Window_Thin_8x4_02_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_Silica_C", - "amount": 2 - }, - { - "item": "Desc_SteelPlate_C", - "amount": 2 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wall_Window_Thin_8x4_02_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_WaterPump_C": { - "slug": "water-extractor", - "name": "Water Extractor", - "className": "Recipe_WaterPump_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_CopperSheet_C", - "amount": 20 - }, - { - "item": "Desc_IronPlateReinforced_C", - "amount": 10 - }, - { - "item": "Desc_Rotor_C", - "amount": 10 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_WaterPump_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Wire_C": { - "slug": "wire", - "name": "Wire", - "className": "Recipe_Wire_C", - "alternate": false, - "time": 4, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_CopperIngot_C", - "amount": 1 - } - ], - "forBuilding": false, - "inMachine": true, - "inHand": true, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Wire_C", - "amount": 2 - } - ], - "producedIn": [ - "Desc_ConstructorMk1_C" - ], - "isVariablePower": false - }, - "Recipe_WorkBench_C": { - "slug": "craft-bench", - "name": "Craft Bench", - "className": "Recipe_WorkBench_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronPlate_C", - "amount": 3 - }, - { - "item": "Desc_IronRod_C", - "amount": 3 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_WorkBench_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_Workshop_C": { - "slug": "equipment-workshop", - "name": "Equipment Workshop", - "className": "Recipe_Workshop_C", - "alternate": false, - "time": 1, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronPlate_C", - "amount": 6 - }, - { - "item": "Desc_IronRod_C", - "amount": 4 - } - ], - "forBuilding": true, - "inMachine": false, - "inHand": false, - "inWorkshop": false, - "products": [ - { - "item": "Desc_Workshop_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_XenoBasher_C": { - "slug": "xeno-basher", - "name": "Xeno-Basher", - "className": "Recipe_XenoBasher_C", - "alternate": false, - "time": 80, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_ModularFrame_C", - "amount": 5 - }, - { - "item": "BP_EquipmentDescriptorShockShank_C", - "amount": 2 - }, - { - "item": "Desc_Cable_C", - "amount": 25 - }, - { - "item": "Desc_Wire_C", - "amount": 500 - } - ], - "forBuilding": false, - "inMachine": false, - "inHand": false, - "inWorkshop": true, - "products": [ - { - "item": "BP_EquipmentDescriptorStunSpear_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_XenoZapper_C": { - "slug": "xeno-zapper", - "name": "Xeno-Zapper", - "className": "Recipe_XenoZapper_C", - "alternate": false, - "time": 40, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "Desc_IronRod_C", - "amount": 10 - }, - { - "item": "Desc_IronPlateReinforced_C", - "amount": 2 - }, - { - "item": "Desc_Cable_C", - "amount": 15 - }, - { - "item": "Desc_Wire_C", - "amount": 50 - } - ], - "forBuilding": false, - "inMachine": false, - "inHand": false, - "inWorkshop": true, - "products": [ - { - "item": "BP_EquipmentDescriptorShockShank_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - }, - "Recipe_ZipLine_C": { - "slug": "zipline", - "name": "Zipline", - "className": "Recipe_ZipLine_C", - "alternate": false, - "time": 40, - "manualTimeMultiplier": 1, - "ingredients": [ - { - "item": "BP_EquipmentDescriptorShockShank_C", - "amount": 1 - }, - { - "item": "Desc_HighSpeedWire_C", - "amount": 30 - }, - { - "item": "Desc_IronRod_C", - "amount": 3 - }, - { - "item": "Desc_Cable_C", - "amount": 10 - } - ], - "forBuilding": false, - "inMachine": false, - "inHand": false, - "inWorkshop": true, - "products": [ - { - "item": "BP_EqDescZipLine_C", - "amount": 1 - } - ], - "producedIn": [], - "isVariablePower": false - } - }, - "items": { - "BP_EqDescZipLine_C": { - "slug": "zipline", - "className": "BP_EqDescZipLine_C", - "name": "Zipline", - "sinkPoints": 5284, - "description": "Slot: Hand\n\nProvides faster traversal in factories by allowing Pioneers to zip along Power lines.\nActivate the Zipline and aim at a nearby Power Line to connect to it.", - "stackSize": 1, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "BP_EquipmentDescriptorBeacon_C": { - "slug": "beacon", - "className": "BP_EquipmentDescriptorBeacon_C", - "name": "Beacon", - "sinkPoints": 320, - "description": "Slot: Hands\nConsumable\n\nUsed to mark areas of interest. Displayed on your compass with the color and name you set for it.", - "stackSize": 100, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "BP_EquipmentDescriptorGasmask_C": { - "slug": "gas-mask", - "className": "BP_EquipmentDescriptorGasmask_C", - "name": "Gas Mask", - "sinkPoints": 55000, - "description": "Slot: Body\n\nAllows you to breathe normally in poison gas. Consumes Gas Filters from your inventory when you are in poison gas.", - "stackSize": 1, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "BP_EquipmentDescriptorHazmatSuit_C": { - "slug": "hazmat-suit", - "className": "BP_EquipmentDescriptorHazmatSuit_C", - "name": "Hazmat Suit", - "sinkPoints": 54100, - "description": "Slot: Body\n\nShields you from the adverse effects of radiation. \nConsumes Iodine Infused Filters from your inventory when you are in radioactive areas.", - "stackSize": 1, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "BP_EquipmentDescriptorHoverPack_C": { - "slug": "hover-pack", - "className": "BP_EquipmentDescriptorHoverPack_C", - "name": "Hover Pack", - "sinkPoints": 413920, - "description": "Slot: Body\nPower consumption: 100 MW\n\nAllows for vertical movement and hovering in mid-air to improve building efficiency and factory traversal. Wirelessly connects to nearby power connections, such as Power Poles and Buildings, for power consumption.\n\nSlow-fall: Hold ascend input after losing connection mid-air.\nDisable Hoverpack: Double tap descend input while hovering.", - "stackSize": 1, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "BP_EquipmentDescriptorJetPack_C": { - "slug": "jetpack", - "className": "BP_EquipmentDescriptorJetPack_C", - "name": "Jetpack", - "sinkPoints": 49580, - "description": "Slot: Body\n\nAllows you to move more freely in the air. Consumes Fuel when used and refills with Fuel from your inventory when you're on the ground.", - "stackSize": 1, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "BP_EquipmentDescriptorJumpingStilts_C": { - "slug": "blade-runners", - "className": "BP_EquipmentDescriptorJumpingStilts_C", - "name": "Blade Runners", - "sinkPoints": 4988, - "description": "Slot: Body\n\nAn exoskeleton for your lower legs that assists movement, allowing you to sprint faster and jump higher.\nAlso dampens the impact of landing.", - "stackSize": 1, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "BP_EquipmentDescriptorNobeliskDetonator_C": { - "slug": "nobelisk-detonator", - "className": "BP_EquipmentDescriptorNobeliskDetonator_C", - "name": "Nobelisk Detonator", - "sinkPoints": 39520, - "description": "Slot: Hands\nAmmo: Nobelisk\n\nUsed to blow up cracked boulders, rocks and invasive vegetation.", - "stackSize": 1, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "BP_EquipmentDescriptorObjectScanner_C": { - "slug": "object-scanner", - "className": "BP_EquipmentDescriptorObjectScanner_C", - "name": "Object Scanner", - "sinkPoints": 3080, - "description": "Slot: Hands\n\nScans the area for a set item. Beeps at a rate proportional to proximity and direction.", - "stackSize": 1, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "BP_EquipmentDescriptorRifle_C": { - "slug": "rifle", - "className": "BP_EquipmentDescriptorRifle_C", - "name": "Rifle", - "sinkPoints": 99160, - "description": "Slot: Hands\nAmmo: Rifle Cartridges\n\nRapid-firing weapon for self-defense.", - "stackSize": 1, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "BP_EquipmentDescriptorShockShank_C": { - "slug": "xeno-zapper", - "className": "BP_EquipmentDescriptorShockShank_C", - "name": "Xeno-Zapper", - "sinkPoints": 1880, - "description": "Slot: Hands\n\nStandard issue electroshock self defense weapon for melee range.", - "stackSize": 1, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "BP_EquipmentDescriptorStunSpear_C": { - "slug": "xeno-basher", - "className": "BP_EquipmentDescriptorStunSpear_C", - "name": "Xeno-Basher", - "sinkPoints": 18800, - "description": "Slot: Hands\n\nHeavy electroshock self defense weapon for melee range.", - "stackSize": 1, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "BP_ItemDescriptorPortableMiner_C": { - "slug": "portable-miner", - "className": "BP_ItemDescriptorPortableMiner_C", - "name": "Portable Miner", - "sinkPoints": 56, - "description": "Slot: Hands\n\nCan be set up on a resource node to automatically extract the resource. Very limited storage space.", - "stackSize": 1, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_AluminaSolution_C": { - "slug": "alumina-solution", - "className": "Desc_AluminaSolution_C", - "name": "Alumina Solution", - "sinkPoints": 20, - "description": "Dissolved Alumina, extracted from Bauxite. Can be further refined into Aluminum Scrap for Aluminum Ingot production.", - "stackSize": 50000, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": true, - "fluidColor": { - "r": 193, - "g": 193, - "b": 193, - "a": 255 - } - }, - "Desc_AluminumCasing_C": { - "slug": "aluminum-casing", - "className": "Desc_AluminumCasing_C", - "name": "Aluminum Casing", - "sinkPoints": 393, - "description": "A versatile container cast from Aluminum Ingots.", - "stackSize": 200, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_AluminumIngot_C": { - "slug": "aluminum-ingot", - "className": "Desc_AluminumIngot_C", - "name": "Aluminum Ingot", - "sinkPoints": 131, - "description": "Aluminum Ingots are made from Aluminum Scrap, which is refined from Alumina Solution.\nUsed to produce specialized aluminum-based parts.", - "stackSize": 100, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_AluminumPlateReinforced_C": { - "slug": "heat-sink", - "className": "Desc_AluminumPlateReinforced_C", - "name": "Heat Sink", - "sinkPoints": 2804, - "description": "Used to dissipate heat faster.", - "stackSize": 100, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_AluminumPlate_C": { - "slug": "alclad-aluminum-sheet", - "className": "Desc_AluminumPlate_C", - "name": "Alclad Aluminum Sheet", - "sinkPoints": 266, - "description": "Thin, lightweight, and highly durable sheets that are mainly used for products that require high heat conduction or a high specific strength.", - "stackSize": 200, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_AluminumScrap_C": { - "slug": "aluminum-scrap", - "className": "Desc_AluminumScrap_C", - "name": "Aluminum Scrap", - "sinkPoints": 27, - "description": "Aluminum Scrap is pure aluminum refined from Alumina. Can be smelted down to Aluminum Ingots for industrial usage.", - "stackSize": 500, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_Battery_C": { - "slug": "battery", - "className": "Desc_Battery_C", - "name": "Battery", - "sinkPoints": 465, - "description": "Primarily used as fuel for Drones and Vehicles.", - "stackSize": 200, - "energyValue": 6000, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_Berry_C": { - "slug": "paleberry", - "className": "Desc_Berry_C", - "name": "Paleberry", - "sinkPoints": 0, - "description": "Slot: Hands\nConsumable\n\nCan be eaten to restore one health segment.", - "stackSize": 50, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_Biofuel_C": { - "slug": "solid-biofuel", - "className": "Desc_Biofuel_C", - "name": "Solid Biofuel", - "sinkPoints": 48, - "description": "The most energy-efficient form of solid biomass. Can be used as fuel for the Chainsaw.", - "stackSize": 200, - "energyValue": 450, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_Cable_C": { - "slug": "cable", - "className": "Desc_Cable_C", - "name": "Cable", - "sinkPoints": 24, - "description": "Used for crafting.\nPrimarily used to build power lines.", - "stackSize": 200, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_CartridgeStandard_C": { - "slug": "rifle-cartridge", - "className": "Desc_CartridgeStandard_C", - "name": "Rifle Cartridge", - "sinkPoints": 664, - "description": "Ammo for the Rifle.", - "stackSize": 100, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_Cement_C": { - "slug": "concrete", - "className": "Desc_Cement_C", - "name": "Concrete", - "sinkPoints": 12, - "description": "Used for building.\nGood for stable foundations.", - "stackSize": 500, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_Chainsaw_C": { - "slug": "chainsaw", - "className": "Desc_Chainsaw_C", - "name": "Chainsaw", - "sinkPoints": 2760, - "description": "Slot: Hands\nFuel: Biofuel\n\nUsed to clear an area of flora that is too difficult to remove by hand.", - "stackSize": 1, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_CircuitBoardHighSpeed_C": { - "slug": "ai-limiter", - "className": "Desc_CircuitBoardHighSpeed_C", - "name": "AI Limiter", - "sinkPoints": 920, - "description": "AI Limiters are super advanced electronics that are used to control AIs and keep them from evolving in malicious ways.", - "stackSize": 100, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_CircuitBoard_C": { - "slug": "circuit-board", - "className": "Desc_CircuitBoard_C", - "name": "Circuit Board", - "sinkPoints": 696, - "description": "Circuit Boards are advanced electronics that are used in a plethora of different ways.", - "stackSize": 200, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_Coal_C": { - "slug": "coal", - "className": "Desc_Coal_C", - "name": "Coal", - "sinkPoints": 3, - "description": "Mainly used as fuel for vehicles & coal generators and for steel production.", - "stackSize": 100, - "energyValue": 300, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_ColorCartridge_C": { - "slug": "color-cartridge", - "className": "Desc_ColorCartridge_C", - "name": "Color Cartridge", - "sinkPoints": 10, - "description": "Used for applying Patterns to structures with the Customizer.\n\n(Patterns can be purchased in the AWESOME Shop.)", - "stackSize": 200, - "energyValue": 900, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_CompactedCoal_C": { - "slug": "compacted-coal", - "className": "Desc_CompactedCoal_C", - "name": "Compacted Coal", - "sinkPoints": 28, - "description": "A much more efficient alternative for Coal. Used as fuel for vehicles & coal generators.", - "stackSize": 100, - "energyValue": 630, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_ComputerSuper_C": { - "slug": "supercomputer", - "className": "Desc_ComputerSuper_C", - "name": "Supercomputer", - "sinkPoints": 99576, - "description": "The supercomputer is the next-gen version of the computer.", - "stackSize": 50, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_Computer_C": { - "slug": "computer", - "className": "Desc_Computer_C", - "name": "Computer", - "sinkPoints": 17260, - "description": "A Computer is a complex logic machine that is used to control advanced behaviour in machines.", - "stackSize": 50, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_CoolingSystem_C": { - "slug": "cooling-system", - "className": "Desc_CoolingSystem_C", - "name": "Cooling System", - "sinkPoints": 12006, - "description": "Used to keep temperatures of advanced parts and buildings from exceeding to inefficient levels.", - "stackSize": 100, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_CopperDust_C": { - "slug": "copper-powder", - "className": "Desc_CopperDust_C", - "name": "Copper Powder", - "sinkPoints": 72, - "description": "Ground down Copper Ingots.\nThe high natural density of Copper, combined with the granularity of the powder, make this part fit for producing Nuclear Pasta in the Particle Accelerator.", - "stackSize": 500, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_CopperIngot_C": { - "slug": "copper-ingot", - "className": "Desc_CopperIngot_C", - "name": "Copper Ingot", - "sinkPoints": 6, - "description": "Used for crafting.\nCrafted into the most basic parts.", - "stackSize": 100, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_CopperSheet_C": { - "slug": "copper-sheet", - "className": "Desc_CopperSheet_C", - "name": "Copper Sheet", - "sinkPoints": 24, - "description": "Used for crafting.\nPrimarily used for pipelines due to its high corrosion resistance.", - "stackSize": 200, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_CrystalOscillator_C": { - "slug": "crystal-oscillator", - "className": "Desc_CrystalOscillator_C", - "name": "Crystal Oscillator", - "sinkPoints": 3072, - "description": "A crystal oscillator is an electronic oscillator circuit that uses the mechanical resonance of a vibrating crystal to create an electrical signal with a precise frequency.", - "stackSize": 100, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_CrystalShard_C": { - "slug": "power-shard", - "className": "Desc_CrystalShard_C", - "name": "Power Shard", - "sinkPoints": 0, - "description": "Mucus from the power slugs compressed into a solid crystal-like shard. \nIt radiates a strange power.", - "stackSize": 100, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_Crystal_C": { - "slug": "blue-power-slug", - "className": "Desc_Crystal_C", - "name": "Blue Power Slug", - "sinkPoints": 0, - "description": "A strange slug radiating a weak strange power.", - "stackSize": 50, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_Crystal_mk2_C": { - "slug": "yellow-power-slug", - "className": "Desc_Crystal_mk2_C", - "name": "Yellow Power Slug", - "sinkPoints": 0, - "description": "A strange slug radiating a strange power.", - "stackSize": 50, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_Crystal_mk3_C": { - "slug": "purple-power-slug", - "className": "Desc_Crystal_mk3_C", - "name": "Purple Power Slug", - "sinkPoints": 0, - "description": "A strange slug radiating a powerful strange power.", - "stackSize": 50, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_ElectromagneticControlRod_C": { - "slug": "electromagnetic-control-rod", - "className": "Desc_ElectromagneticControlRod_C", - "name": "Electromagnetic Control Rod", - "sinkPoints": 2560, - "description": "Control Rods regulate power output via electromagnetism.", - "stackSize": 100, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_Fabric_C": { - "slug": "fabric", - "className": "Desc_Fabric_C", - "name": "Fabric", - "sinkPoints": 140, - "description": "Used for equipment crafting.\nFlexible but durable fabric.", - "stackSize": 100, - "energyValue": 15, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_Filter_C": { - "slug": "gas-filter", - "className": "Desc_Filter_C", - "name": "Gas Filter", - "sinkPoints": 830, - "description": "Used in gas masks to filter out pollutants in the air.", - "stackSize": 50, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_FlowerPetals_C": { - "slug": "flower-petals", - "className": "Desc_FlowerPetals_C", - "name": "Flower Petals", - "sinkPoints": 10, - "description": "Used for crafting.\nColorful native flower petals.", - "stackSize": 500, - "energyValue": 100, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_FluidCanister_C": { - "slug": "empty-canister", - "className": "Desc_FluidCanister_C", - "name": "Empty Canister", - "sinkPoints": 60, - "description": "Used to package fluids for transportation.", - "stackSize": 100, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_Fuel_C": { - "slug": "packaged-fuel", - "className": "Desc_Fuel_C", - "name": "Packaged Fuel", - "sinkPoints": 270, - "description": "Fuel, packaged for alternative transport. Can be used as fuel for Vehicles or the Jetpack.", - "stackSize": 100, - "energyValue": 750, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 235, - "g": 125, - "b": 21, - "a": 255 - } - }, - "Desc_GasTank_C": { - "slug": "empty-fluid-tank", - "className": "Desc_GasTank_C", - "name": "Empty Fluid Tank", - "sinkPoints": 225, - "description": "Used to package gases and volatile liquids for transportation.", - "stackSize": 100, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_GenericBiomass_C": { - "slug": "biomass", - "className": "Desc_GenericBiomass_C", - "name": "Biomass", - "sinkPoints": 12, - "description": "Primarily used as fuel.\nBiomass burners and vehicles can use it for power.\nBiomass is much more energy-efficient than raw biological matter.", - "stackSize": 200, - "energyValue": 180, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_GoldIngot_C": { - "slug": "caterium-ingot", - "className": "Desc_GoldIngot_C", - "name": "Caterium Ingot", - "sinkPoints": 42, - "description": "Caterium Ingots are smelted from Caterium Ore. Caterium Ingots are mostly used for advanced electronics.", - "stackSize": 100, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_GolfCartGold_C": { - "slug": "golden-factory-cart", - "className": "Desc_GolfCartGold_C", - "name": "Golden Factory Cart™", - "sinkPoints": null, - "description": "The one and only Golden FICSIT Factory Cart™\n\nYou have now officially ascended. \nGo forth now, Master of Spaghetti, God of the Factory, Sinker of Cups, Employee of the Planet... travel in STYLE!", - "stackSize": 1, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_GolfCart_C": { - "slug": "factory-cart", - "className": "Desc_GolfCart_C", - "name": "Factory Cart™", - "sinkPoints": 1552, - "description": "The one and only FICSIT Factory Cart™\nNow with special - FICSIT Foundation only - Grip Wheels, for an even smoother and faster factory floor experience!", - "stackSize": 1, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_Gunpowder_C": { - "slug": "black-powder", - "className": "Desc_Gunpowder_C", - "name": "Black Powder", - "sinkPoints": 50, - "description": "An explosive powder that is commonly used in explosives and cartridges.", - "stackSize": 100, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_HUBParts_C": { - "slug": "hub-parts", - "className": "Desc_HUBParts_C", - "name": "HUB Parts", - "sinkPoints": 0, - "description": "The parts required to build the basic structure of the HUB.", - "stackSize": 1, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_HazmatFilter_C": { - "slug": "iodine-infused-filter", - "className": "Desc_HazmatFilter_C", - "name": "Iodine Infused Filter", - "sinkPoints": 2718, - "description": "Used in hazmat suits to filter out radioactive particles in the air.", - "stackSize": 50, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_HeavyOilResidue_C": { - "slug": "heavy-oil-residue", - "className": "Desc_HeavyOilResidue_C", - "name": "Heavy Oil Residue", - "sinkPoints": 30, - "description": "A by-product of Plastic and Rubber production. Can be further refined into Fuel and Petroleum Coke.", - "stackSize": 50000, - "energyValue": 0.4, - "radioactiveDecay": 0, - "liquid": true, - "fluidColor": { - "r": 109, - "g": 45, - "b": 120, - "a": 255 - } - }, - "Desc_HighSpeedConnector_C": { - "slug": "high-speed-connector", - "className": "Desc_HighSpeedConnector_C", - "name": "High-Speed Connector", - "sinkPoints": 3776, - "description": "The high-speed connector connects several cables and wires in a very efficient way. Uses a standard pattern so its applications are many and varied.", - "stackSize": 100, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_HighSpeedWire_C": { - "slug": "quickwire", - "className": "Desc_HighSpeedWire_C", - "name": "Quickwire", - "sinkPoints": 17, - "description": "Caterium's high conductivity and resistance to corrosion makes it ideal for small, advanced electronics.", - "stackSize": 500, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_HogParts_C": { - "slug": "alien-carapace", - "className": "Desc_HogParts_C", - "name": "Alien Carapace", - "sinkPoints": 0, - "description": "Thick and sturdy natural armor plates from alien creatures.", - "stackSize": 50, - "energyValue": 250, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_IronIngot_C": { - "slug": "iron-ingot", - "className": "Desc_IronIngot_C", - "name": "Iron Ingot", - "sinkPoints": 2, - "description": "Used for crafting.\nCrafted into the most basic parts.", - "stackSize": 100, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_IronPlateReinforced_C": { - "slug": "reinforced-iron-plate", - "className": "Desc_IronPlateReinforced_C", - "name": "Reinforced Iron Plate", - "sinkPoints": 120, - "description": "Used for crafting.\nA sturdier and more durable Iron Plate.", - "stackSize": 100, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_IronPlate_C": { - "slug": "iron-plate", - "className": "Desc_IronPlate_C", - "name": "Iron Plate", - "sinkPoints": 6, - "description": "Used for crafting.\nOne of the most basic parts.", - "stackSize": 200, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_IronRod_C": { - "slug": "iron-rod", - "className": "Desc_IronRod_C", - "name": "Iron Rod", - "sinkPoints": 4, - "description": "Used for crafting.\nOne of the most basic parts.", - "stackSize": 200, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_IronScrew_C": { - "slug": "screw", - "className": "Desc_IronScrew_C", - "name": "Screw", - "sinkPoints": 2, - "description": "Used for crafting.\nOne of the most basic parts.", - "stackSize": 500, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_Leaves_C": { - "slug": "leaves", - "className": "Desc_Leaves_C", - "name": "Leaves", - "sinkPoints": 3, - "description": "Primarily used as fuel.\nBiomass Burners and vehicles can use it for power.", - "stackSize": 500, - "energyValue": 15, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_LiquidBiofuel_C": { - "slug": "liquid-biofuel", - "className": "Desc_LiquidBiofuel_C", - "name": "Liquid Biofuel", - "sinkPoints": 261, - "description": "Liquid Biofuel can be used to generate power or packaged to be used as fuel for Vehicles.", - "stackSize": 50000, - "energyValue": 0.75, - "radioactiveDecay": 0, - "liquid": true, - "fluidColor": { - "r": 59, - "g": 83, - "b": 44, - "a": 255 - } - }, - "Desc_LiquidFuel_C": { - "slug": "fuel", - "className": "Desc_LiquidFuel_C", - "name": "Fuel", - "sinkPoints": 75, - "description": "Fuel can be used to generate power or packaged to be used as fuel for Vehicles or the Jetpack.", - "stackSize": 50000, - "energyValue": 0.75, - "radioactiveDecay": 0, - "liquid": true, - "fluidColor": { - "r": 235, - "g": 125, - "b": 21, - "a": 255 - } - }, - "Desc_LiquidOil_C": { - "slug": "crude-oil", - "className": "Desc_LiquidOil_C", - "name": "Crude Oil", - "sinkPoints": 30, - "description": "Crude Oil is refined into all kinds of Oil-based resources, like Fuel and Plastic.", - "stackSize": 50000, - "energyValue": 0.32, - "radioactiveDecay": 0, - "liquid": true, - "fluidColor": { - "r": 25, - "g": 0, - "b": 25, - "a": 255 - } - }, - "Desc_LiquidTurboFuel_C": { - "slug": "turbofuel", - "className": "Desc_LiquidTurboFuel_C", - "name": "Turbofuel", - "sinkPoints": 225, - "description": "A more efficient alternative to Fuel. Can be used to generate power or packaged to be used as fuel for Vehicles.", - "stackSize": 50000, - "energyValue": 2, - "radioactiveDecay": 0, - "liquid": true, - "fluidColor": { - "r": 212, - "g": 41, - "b": 46, - "a": 255 - } - }, - "Desc_Medkit_C": { - "slug": "medicinal-inhaler", - "className": "Desc_Medkit_C", - "name": "Medicinal Inhaler", - "sinkPoints": 67, - "description": "Slot: Hands\nConsumable\n\nCan be inhaled to fully restore health.", - "stackSize": 50, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_ModularFrameFused_C": { - "slug": "fused-modular-frame", - "className": "Desc_ModularFrameFused_C", - "name": "Fused Modular Frame", - "sinkPoints": 62840, - "description": "A corrosion resistant, nitride hardened, highly robust, yet lightweight modular frame.", - "stackSize": 50, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_ModularFrameHeavy_C": { - "slug": "heavy-modular-frame", - "className": "Desc_ModularFrameHeavy_C", - "name": "Heavy Modular Frame", - "sinkPoints": 11520, - "description": "A more robust multi-purpose frame.", - "stackSize": 50, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_ModularFrameLightweight_C": { - "slug": "radio-control-unit", - "className": "Desc_ModularFrameLightweight_C", - "name": "Radio Control Unit", - "sinkPoints": 32908, - "description": "Enhances and directs radio signals.", - "stackSize": 50, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_ModularFrame_C": { - "slug": "modular-frame", - "className": "Desc_ModularFrame_C", - "name": "Modular Frame", - "sinkPoints": 408, - "description": "Used for crafting.\nMulti-purpose building block.", - "stackSize": 50, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_MotorLightweight_C": { - "slug": "turbo-motor", - "className": "Desc_MotorLightweight_C", - "name": "Turbo Motor", - "sinkPoints": 242720, - "description": "The Turbo Motor is a more complex, and more powerful, version of the regular Motor.", - "stackSize": 50, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_Motor_C": { - "slug": "motor", - "className": "Desc_Motor_C", - "name": "Motor", - "sinkPoints": 1520, - "description": "The Motor creates a mechanical force that is used to move things from machines to vehicles.", - "stackSize": 50, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_Mycelia_C": { - "slug": "mycelia", - "className": "Desc_Mycelia_C", - "name": "Mycelia", - "sinkPoints": 10, - "description": "Used for crafting.\nBiomass Burners and vehicles can use it for power.", - "stackSize": 200, - "energyValue": 20, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_NitricAcid_C": { - "slug": "nitric-acid", - "className": "Desc_NitricAcid_C", - "name": "Nitric Acid", - "sinkPoints": 94, - "description": "Produced by reaction of Nitrogen Gas with Water. Its high corrosiveness and oxidizing properties make it an excellent choice for refinement and fuel production processes.", - "stackSize": 50000, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": true, - "fluidColor": { - "r": 217, - "g": 217, - "b": 162, - "a": 255 - } - }, - "Desc_NitrogenGas_C": { - "slug": "nitrogen-gas", - "className": "Desc_NitrogenGas_C", - "name": "Nitrogen Gas", - "sinkPoints": 10, - "description": "Nitrogen can be used in a variety of ways, such as metallurgy, cooling, and Nitric Acid production. On Massage-2(AB)b, it can be extracted from underground gas wells.", - "stackSize": 50000, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": true, - "fluidColor": { - "r": 89, - "g": 89, - "b": 89, - "a": 255 - } - }, - "Desc_NobeliskExplosive_C": { - "slug": "nobelisk", - "className": "Desc_NobeliskExplosive_C", - "name": "Nobelisk", - "sinkPoints": 980, - "description": "Can be used with the Nobelisk Detonator to blow up cracked boulders, vegetation or other vulnerable targets.", - "stackSize": 50, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_NonFissibleUranium_C": { - "slug": "non-fissile-uranium", - "className": "Desc_NonFissibleUranium_C", - "name": "Non-fissile Uranium", - "sinkPoints": 0, - "description": "The isotope Uranium-238 is non-fissile, meaning it cannot be used for nuclear fission. It can, however, be conversed into fissile Plutonium in the Particle Accelerator.\n\nCaution: Mildly Radioactive.", - "stackSize": 500, - "energyValue": 0, - "radioactiveDecay": 0.75, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_NuclearFuelRod_C": { - "slug": "uranium-fuel-rod", - "className": "Desc_NuclearFuelRod_C", - "name": "Uranium Fuel Rod", - "sinkPoints": 44092, - "description": "Used as fuel for the Nuclear Power Plant.\n\nCaution: Produces radioactive Uranium Waste when consumed.\nCaution: Moderately Radioactive.", - "stackSize": 50, - "energyValue": 750000, - "radioactiveDecay": 50, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_NuclearWaste_C": { - "slug": "uranium-waste", - "className": "Desc_NuclearWaste_C", - "name": "Uranium Waste", - "sinkPoints": 0, - "description": "The by-product of consuming Uranium Fuel Rods in the Nuclear Power Plant.\nNon-fissible Uranium can be extracted. Handle with caution.\n\nCaution: HIGHLY Radioactive.", - "stackSize": 500, - "energyValue": 0, - "radioactiveDecay": 10, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_Nut_C": { - "slug": "beryl-nut", - "className": "Desc_Nut_C", - "name": "Beryl Nut", - "sinkPoints": 0, - "description": "Slot: Hands\nConsumable\n\nCan be eaten to restore half a health segment.", - "stackSize": 100, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_OreBauxite_C": { - "slug": "bauxite", - "className": "Desc_OreBauxite_C", - "name": "Bauxite", - "sinkPoints": 8, - "description": "Bauxite is used to produce Alumina, which can be further refined into the Aluminum Scrap required to produce Aluminum Ingots.", - "stackSize": 100, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_OreCopper_C": { - "slug": "copper-ore", - "className": "Desc_OreCopper_C", - "name": "Copper Ore", - "sinkPoints": 3, - "description": "Used for crafting.\nBasic resource mainly used for electricity.", - "stackSize": 100, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_OreGold_C": { - "slug": "caterium-ore", - "className": "Desc_OreGold_C", - "name": "Caterium Ore", - "sinkPoints": 7, - "description": "Caterium Ore is smelted into Caterium Ingots. Caterium Ingots are mostly used for advanced electronics.", - "stackSize": 100, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_OreIron_C": { - "slug": "iron-ore", - "className": "Desc_OreIron_C", - "name": "Iron Ore", - "sinkPoints": 1, - "description": "Used for crafting.\nThe most essential basic resource.", - "stackSize": 100, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_OreUranium_C": { - "slug": "uranium", - "className": "Desc_OreUranium_C", - "name": "Uranium", - "sinkPoints": 35, - "description": "Uranium is a radioactive element. \nUsed to produce Encased Uranium Cells for Uranium Fuel Rods.\n\nCaution: Moderately Radioactive.", - "stackSize": 100, - "energyValue": 0, - "radioactiveDecay": 15, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_PackagedAlumina_C": { - "slug": "packaged-alumina-solution", - "className": "Desc_PackagedAlumina_C", - "name": "Packaged Alumina Solution", - "sinkPoints": 160, - "description": "Alumina Solution, packaged for alternative transport.", - "stackSize": 100, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 58, - "g": 83, - "b": 42, - "a": 255 - } - }, - "Desc_PackagedBiofuel_C": { - "slug": "packaged-liquid-biofuel", - "className": "Desc_PackagedBiofuel_C", - "name": "Packaged Liquid Biofuel", - "sinkPoints": 370, - "description": "Liquid Biofuel, packaged for alternative transport. Can be used as fuel for Vehicles.", - "stackSize": 100, - "energyValue": 750, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 58, - "g": 83, - "b": 42, - "a": 255 - } - }, - "Desc_PackagedNitricAcid_C": { - "slug": "packaged-nitric-acid", - "className": "Desc_PackagedNitricAcid_C", - "name": "Packaged Nitric Acid", - "sinkPoints": 412, - "description": "Nitric Acid, packaged for alternative transport.", - "stackSize": 100, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 58, - "g": 83, - "b": 42, - "a": 255 - } - }, - "Desc_PackagedNitrogenGas_C": { - "slug": "packaged-nitrogen-gas", - "className": "Desc_PackagedNitrogenGas_C", - "name": "Packaged Nitrogen Gas", - "sinkPoints": 312, - "description": "Nitrogen Gas, packaged for alternative transport.", - "stackSize": 100, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 58, - "g": 83, - "b": 42, - "a": 255 - } - }, - "Desc_PackagedOilResidue_C": { - "slug": "packaged-heavy-oil-residue", - "className": "Desc_PackagedOilResidue_C", - "name": "Packaged Heavy Oil Residue", - "sinkPoints": 180, - "description": "Heavy Oil Residue, packaged for alternative transport. Can be used as fuel for Vehicles.", - "stackSize": 100, - "energyValue": 400, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 109, - "g": 45, - "b": 120, - "a": 255 - } - }, - "Desc_PackagedOil_C": { - "slug": "packaged-oil", - "className": "Desc_PackagedOil_C", - "name": "Packaged Oil", - "sinkPoints": 180, - "description": "Crude Oil, packaged for alternative transport. Can be used as fuel for Vehicles.", - "stackSize": 100, - "energyValue": 320, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_PackagedSulfuricAcid_C": { - "slug": "packaged-sulfuric-acid", - "className": "Desc_PackagedSulfuricAcid_C", - "name": "Packaged Sulfuric Acid", - "sinkPoints": 152, - "description": "Sulfuric Acid, packaged for alternative transport.", - "stackSize": 100, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 58, - "g": 83, - "b": 42, - "a": 255 - } - }, - "Desc_PackagedWater_C": { - "slug": "packaged-water", - "className": "Desc_PackagedWater_C", - "name": "Packaged Water", - "sinkPoints": 130, - "description": "Water, packaged for alternative transport.", - "stackSize": 100, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 122, - "g": 176, - "b": 212, - "a": 255 - } - }, - "Desc_Parachute_C": { - "slug": "parachute", - "className": "Desc_Parachute_C", - "name": "Parachute", - "sinkPoints": 608, - "description": "Slot: Body\nConsumable\n\nSlows down your fall when activated in mid-air.", - "stackSize": 50, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_PetroleumCoke_C": { - "slug": "petroleum-coke", - "className": "Desc_PetroleumCoke_C", - "name": "Petroleum Coke", - "sinkPoints": 20, - "description": "Used for crafting.\nA carbon-rich material distilled from Heavy Oil Residue. \nUsed as a less efficient coal replacement or for aluminum refinement.", - "stackSize": 200, - "energyValue": 180, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_Plastic_C": { - "slug": "plastic", - "className": "Desc_Plastic_C", - "name": "Plastic", - "sinkPoints": 75, - "description": "A versatile and easy to manufacture material that can be used for a lot of things.", - "stackSize": 200, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_PlutoniumCell_C": { - "slug": "encased-plutonium-cell", - "className": "Desc_PlutoniumCell_C", - "name": "Encased Plutonium Cell", - "sinkPoints": 0, - "description": "Plutonium Cells are concrete encased Plutonium Pellets.\nUsed to produce Plutonium Fuel Rods for Nuclear Power production.\n\nCaution: Moderately Radioactive.", - "stackSize": 200, - "energyValue": 0, - "radioactiveDecay": 120, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_PlutoniumFuelRod_C": { - "slug": "plutonium-fuel-rod", - "className": "Desc_PlutoniumFuelRod_C", - "name": "Plutonium Fuel Rod", - "sinkPoints": 153184, - "description": "Used as fuel for the Nuclear Power Plant.\n\nCaution: Produces radioactive Plutonium Waste when consumed.\nCaution: HIGHLY Radioactive.", - "stackSize": 50, - "energyValue": 1500000, - "radioactiveDecay": 250, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_PlutoniumPellet_C": { - "slug": "plutonium-pellet", - "className": "Desc_PlutoniumPellet_C", - "name": "Plutonium Pellet", - "sinkPoints": 0, - "description": "Produced in the Particle Accelerator through conversion of Non-fissile Uranium.\nUsed to produce Encased Plutonium Cells for Plutonium Fuel Rods.\n\nPower Usage: 250-750 MW (500 MW average).\nCaution: Moderately Radioactive.", - "stackSize": 100, - "energyValue": 0, - "radioactiveDecay": 20, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_PlutoniumWaste_C": { - "slug": "plutonium-waste", - "className": "Desc_PlutoniumWaste_C", - "name": "Plutonium Waste", - "sinkPoints": 0, - "description": "The by-product of consuming Plutonium Fuel Rods in the Nuclear Power Plant.\nNeeds to be stored in a safe location. Handle with caution.\n\nCaution: EXTREMELY Radioactive.", - "stackSize": 500, - "energyValue": 0, - "radioactiveDecay": 200, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_PolymerResin_C": { - "slug": "polymer-resin", - "className": "Desc_PolymerResin_C", - "name": "Polymer Resin", - "sinkPoints": 12, - "description": "Used for crafting.\nA by-product of oil refinement into fuel. Commonly used to manufacture plastics.", - "stackSize": 200, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_PressureConversionCube_C": { - "slug": "pressure-conversion-cube", - "className": "Desc_PressureConversionCube_C", - "name": "Pressure Conversion Cube", - "sinkPoints": 257312, - "description": "Converts outgoing force into internal pressure. Required to contain unstable, high-energy matter.", - "stackSize": 50, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_QuartzCrystal_C": { - "slug": "quartz-crystal", - "className": "Desc_QuartzCrystal_C", - "name": "Quartz Crystal", - "sinkPoints": 50, - "description": "Derived from Raw Quartz. Used in the production of advanced radar technology and high-quality display screens.", - "stackSize": 100, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_RawQuartz_C": { - "slug": "raw-quartz", - "className": "Desc_RawQuartz_C", - "name": "Raw Quartz", - "sinkPoints": 15, - "description": "Raw Quartz can be processed into Quartz Crystals and Silica, which both offer a variety of applications.", - "stackSize": 100, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_RebarGunProjectile_C": { - "slug": "rebar-gun", - "className": "Desc_RebarGunProjectile_C", - "name": "Rebar Gun", - "sinkPoints": 1968, - "description": "Slot: Hands\nAmmo: Spiked Rebar\n\nImprovised ranged weapon for self defense. Has to be reloaded after each use.", - "stackSize": 1, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_ResourceSinkCoupon_C": { - "className": "Desc_ResourceSinkCoupon_C", - "description": "A special FICSIT bonus program Coupon, obtained through the AWESOME Sink. Can be redeemed in the AWESOME Shop for bonus milestones and rewards", - "energyValue": 0, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - }, - "liquid": false, - "name": "FICSIT Coupon", - "radioactiveDecay": 0, - "sinkPoints": 1, - "slug": "ficsit-coupon", - "stackSize": 500 - }, - "Desc_Rotor_C": { - "slug": "rotor", - "className": "Desc_Rotor_C", - "name": "Rotor", - "sinkPoints": 140, - "description": "Used for crafting.\nThe moving parts of a motor.", - "stackSize": 100, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_Rubber_C": { - "slug": "rubber", - "className": "Desc_Rubber_C", - "name": "Rubber", - "sinkPoints": 60, - "description": "Rubber is a material that is very flexible and has a lot of friction.", - "stackSize": 200, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_Shroom_C": { - "slug": "bacon-agaric", - "className": "Desc_Shroom_C", - "name": "Bacon Agaric", - "sinkPoints": 0, - "description": "Slot: Hands\nConsumable\n\nCan be eaten to restore two health segments.", - "stackSize": 50, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_Silica_C": { - "slug": "silica", - "className": "Desc_Silica_C", - "name": "Silica", - "sinkPoints": 20, - "description": "Derived from Raw Quartz. Commonly used to create glass structures, advanced refinement processes, and alternative production of electronics.", - "stackSize": 200, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_SpaceElevatorPart_1_C": { - "slug": "smart-plating", - "className": "Desc_SpaceElevatorPart_1_C", - "name": "Smart Plating", - "sinkPoints": 520, - "description": "Project Part #1. Ship with the Space Elevator to complete phases of Project Assembly.", - "stackSize": 50, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_SpaceElevatorPart_2_C": { - "slug": "versatile-framework", - "className": "Desc_SpaceElevatorPart_2_C", - "name": "Versatile Framework", - "sinkPoints": 1176, - "description": "Project Part #2. Ship with the Space Elevator to complete phases of Project Assembly.", - "stackSize": 50, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_SpaceElevatorPart_3_C": { - "slug": "automated-wiring", - "className": "Desc_SpaceElevatorPart_3_C", - "name": "Automated Wiring", - "sinkPoints": 1440, - "description": "Project Part #3. Ship with the Space Elevator to complete phases of Project Assembly.", - "stackSize": 50, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_SpaceElevatorPart_4_C": { - "slug": "modular-engine", - "className": "Desc_SpaceElevatorPart_4_C", - "name": "Modular Engine", - "sinkPoints": 9960, - "description": "Project Part #4. Ship with the Space Elevator to complete phases of Project Assembly.", - "stackSize": 50, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_SpaceElevatorPart_5_C": { - "slug": "adaptive-control-unit", - "className": "Desc_SpaceElevatorPart_5_C", - "name": "Adaptive Control Unit", - "sinkPoints": 86120, - "description": "Project Part #5. Ship with the Space Elevator to complete phases of Project Assembly.", - "stackSize": 50, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_SpaceElevatorPart_6_C": { - "slug": "magnetic-field-generator", - "className": "Desc_SpaceElevatorPart_6_C", - "name": "Magnetic Field Generator", - "sinkPoints": 15650, - "description": "Project Part #7. Ship with the Space Elevator to complete phases of Project Assembly.\n\nThese modular generators use superconducting magnets and vast amounts of electricity to produce an easily expandible and powerful magnetic field.", - "stackSize": 50, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_SpaceElevatorPart_7_C": { - "slug": "assembly-director-system", - "className": "Desc_SpaceElevatorPart_7_C", - "name": "Assembly Director System", - "sinkPoints": 543632, - "description": "Project Part #6. Ship with the Space Elevator to complete phases of Project Assembly.\n\nThis extremely fast and precise computing system is specifically designed to direct the Project Assembly: Assembly Phase.", - "stackSize": 50, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_SpaceElevatorPart_8_C": { - "slug": "thermal-propulsion-rocket", - "className": "Desc_SpaceElevatorPart_8_C", - "name": "Thermal Propulsion Rocket", - "sinkPoints": 732956, - "description": "Project Part #8. Ship with the Space Elevator to complete phases of Project Assembly.\n\nUses extreme heat to produce the high pressure plasma required to get Project Assembly into motion.", - "stackSize": 50, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_SpaceElevatorPart_9_C": { - "slug": "nuclear-pasta", - "className": "Desc_SpaceElevatorPart_9_C", - "name": "Nuclear Pasta", - "sinkPoints": 543424, - "description": "Project Part #9. Ship with the Space Elevator to complete phases of Project Assembly.\nPower Usage: 500-1500 MW (1000 MW average).\n\nNuclear Pasta is extremely dense degenerate matter, formed when extreme pressure forces protons and electrons together into neutrons. It is theorized to exist naturally within the crust of neutron stars.", - "stackSize": 50, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_SpikedRebar_C": { - "slug": "spiked-rebar", - "className": "Desc_SpikedRebar_C", - "name": "Spiked Rebar", - "sinkPoints": 8, - "description": "Ammo for the Rebar Gun.", - "stackSize": 50, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_SpitterParts_C": { - "slug": "alien-organs", - "className": "Desc_SpitterParts_C", - "name": "Alien Organs", - "sinkPoints": 0, - "description": "Organs from alien creatures.", - "stackSize": 50, - "energyValue": 250, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_Stator_C": { - "slug": "stator", - "className": "Desc_Stator_C", - "name": "Stator", - "sinkPoints": 240, - "description": "Used for crafting.\nThe static parts of a motor.", - "stackSize": 100, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_SteelIngot_C": { - "slug": "steel-ingot", - "className": "Desc_SteelIngot_C", - "name": "Steel Ingot", - "sinkPoints": 8, - "description": "Steel Ingots are made from Iron Ore that's been smelted with Coal. They are made into several parts used in building construction.", - "stackSize": 100, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_SteelPipe_C": { - "slug": "steel-pipe", - "className": "Desc_SteelPipe_C", - "name": "Steel Pipe", - "sinkPoints": 24, - "description": "Steel Pipes are used most often when constructing a little more advanced buildings.", - "stackSize": 200, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_SteelPlateReinforced_C": { - "slug": "encased-industrial-beam", - "className": "Desc_SteelPlateReinforced_C", - "name": "Encased Industrial Beam", - "sinkPoints": 632, - "description": "Encased Industrial Beams utilizes the compressive strength of concrete and tensile strength of steel simultaneously.\nMostly used as a stable basis for constructing buildings.", - "stackSize": 100, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_SteelPlate_C": { - "slug": "steel-beam", - "className": "Desc_SteelPlate_C", - "name": "Steel Beam", - "sinkPoints": 64, - "description": "Steel Beams are used most often when constructing a little more advanced buildings.", - "stackSize": 200, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_Stone_C": { - "slug": "limestone", - "className": "Desc_Stone_C", - "name": "Limestone", - "sinkPoints": 2, - "description": "Used for crafting.\nBasic resource mainly used for stable foundations.", - "stackSize": 100, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_Sulfur_C": { - "slug": "sulfur", - "className": "Desc_Sulfur_C", - "name": "Sulfur", - "sinkPoints": 11, - "description": "Sulfur is primarily used for Black Powder.", - "stackSize": 100, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_SulfuricAcid_C": { - "slug": "sulfuric-acid", - "className": "Desc_SulfuricAcid_C", - "name": "Sulfuric Acid", - "sinkPoints": 16, - "description": "A mineral acid produced by combining Sulfur and Water in a complex reaction. Primarily used in refinement processes and Battery production.", - "stackSize": 50000, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": true, - "fluidColor": { - "r": 255, - "g": 255, - "b": 0, - "a": 255 - } - }, - "Desc_TurboFuel_C": { - "slug": "packaged-turbofuel", - "className": "Desc_TurboFuel_C", - "name": "Packaged Turbofuel", - "sinkPoints": 570, - "description": "Turbofuel, packaged for alternative transport. Can be used as fuel for Vehicles.", - "stackSize": 100, - "energyValue": 2000, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 212, - "g": 41, - "b": 46, - "a": 255 - } - }, - "Desc_UraniumCell_C": { - "slug": "encased-uranium-cell", - "className": "Desc_UraniumCell_C", - "name": "Encased Uranium Cell", - "sinkPoints": 147, - "description": "Uranium Cells are produced from Uranium Ore. \nUsed to produce Uranium Fuel Rods for Nuclear Power production.\n\nCaution: Mildly Radioactive.", - "stackSize": 200, - "energyValue": 0, - "radioactiveDecay": 0.5, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_Water_C": { - "slug": "water", - "className": "Desc_Water_C", - "name": "Water", - "sinkPoints": 5, - "description": "It's water.", - "stackSize": 50000, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": true, - "fluidColor": { - "r": 122, - "g": 176, - "b": 212, - "a": 255 - } - }, - "Desc_Wire_C": { - "slug": "wire", - "className": "Desc_Wire_C", - "name": "Wire", - "sinkPoints": 6, - "description": "Used for crafting.\nOne of the most basic parts.", - "stackSize": 500, - "energyValue": 0, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - }, - "Desc_Wood_C": { - "slug": "wood", - "className": "Desc_Wood_C", - "name": "Wood", - "sinkPoints": 30, - "description": "Primarily used as fuel.\nBiomass Burners and vehicles can use it for power.", - "stackSize": 200, - "energyValue": 100, - "radioactiveDecay": 0, - "liquid": false, - "fluidColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - } - } - }, - "schematics": { - "Research_ACarapace_0_C": { - "className": "Research_ACarapace_0_C", - "name": "Alien Carapace", - "slug": "alien-carapace-1", - "tier": 3, - "cost": [ - { - "item": "Desc_HogParts_C", - "amount": 1 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 3, - "alternate": false, - "mam": false - }, - "Research_ACarapace_1_C": { - "className": "Research_ACarapace_1_C", - "name": "Structural Analysis", - "slug": "structural-analysis", - "tier": 3, - "cost": [ - { - "item": "Desc_HogParts_C", - "amount": 10 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Biomass_AlienCarapace_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 3, - "alternate": false, - "mam": false - }, - "Research_ACarapace_2_1_C": { - "className": "Research_ACarapace_2_1_C", - "name": "Spiked Rebars", - "slug": "spiked-rebars", - "tier": 3, - "cost": [ - { - "item": "Desc_Rotor_C", - "amount": 25 - }, - { - "item": "Desc_IronRod_C", - "amount": 200 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_SpikedRebar_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 3, - "alternate": false, - "mam": false - }, - "Research_ACarapace_2_C": { - "className": "Research_ACarapace_2_C", - "name": "Rebar Gun", - "slug": "rebar-gun-1", - "tier": 3, - "cost": [ - { - "item": "Desc_IronPlateReinforced_C", - "amount": 50 - }, - { - "item": "Desc_Rotor_C", - "amount": 25 - }, - { - "item": "Desc_IronScrew_C", - "amount": 500 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_RebarGun_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 300, - "alternate": false, - "mam": false - }, - "Research_ACarapace_3_C": { - "className": "Research_ACarapace_3_C", - "name": "Expanded Toolbelt", - "slug": "expanded-toolbelt", - "tier": 3, - "cost": [ - { - "item": "Desc_HogParts_C", - "amount": 5 - }, - { - "item": "Desc_Wire_C", - "amount": 1000 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 300, - "alternate": false, - "mam": false - }, - "Research_AOrganisms_1_C": { - "className": "Research_AOrganisms_1_C", - "name": "Object Scanner Improvements", - "slug": "object-scanner-improvements", - "tier": 3, - "cost": [ - { - "item": "Desc_CrystalOscillator_C", - "amount": 5 - }, - { - "item": "Desc_Stator_C", - "amount": 10 - }, - { - "item": "BP_EquipmentDescriptorObjectScanner_C", - "amount": 1 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 3, - "alternate": false, - "mam": false - }, - "Research_AOrganisms_2_C": { - "className": "Research_AOrganisms_2_C", - "name": "Hostile Organism Detection", - "slug": "hostile-organism-detection", - "tier": 3, - "cost": [ - { - "item": "Desc_SpitterParts_C", - "amount": 5 - }, - { - "item": "Desc_HogParts_C", - "amount": 5 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 3, - "alternate": false, - "mam": false - }, - "Research_AOrgans_0_C": { - "className": "Research_AOrgans_0_C", - "name": "Alien Organs", - "slug": "alien-organs-1", - "tier": 3, - "cost": [ - { - "item": "Desc_SpitterParts_C", - "amount": 1 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 3, - "alternate": false, - "mam": false - }, - "Research_AOrgans_1_C": { - "className": "Research_AOrgans_1_C", - "name": "Organic Properties", - "slug": "organic-properties", - "tier": 3, - "cost": [ - { - "item": "Desc_SpitterParts_C", - "amount": 3 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Biomass_AlienOrgans_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 3, - "alternate": false, - "mam": false - }, - "Research_AOrgans_2_C": { - "className": "Research_AOrgans_2_C", - "name": "Medicinal Inhaler", - "slug": "medicinal-inhaler-spitterparts", - "tier": 3, - "cost": [ - { - "item": "Desc_SpitterParts_C", - "amount": 5 - }, - { - "item": "Desc_Mycelia_C", - "amount": 10 - }, - { - "item": "Desc_ModularFrame_C", - "amount": 100 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_MedicinalInhalerAlienOrgans_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 300, - "alternate": false, - "mam": false - }, - "Research_AOrgans_3_C": { - "className": "Research_AOrgans_3_C", - "name": "Inflated Pocket Dimension", - "slug": "inflated-pocket-dimension-spitterparts", - "tier": 3, - "cost": [ - { - "item": "Desc_SpitterParts_C", - "amount": 5 - }, - { - "item": "Desc_Wire_C", - "amount": 2000 - } - ], - "unlock": { - "inventorySlots": 6, - "recipes": [], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 300, - "alternate": false, - "mam": false - }, - "Research_Caterium_0_C": { - "className": "Research_Caterium_0_C", - "name": "Caterium", - "slug": "caterium", - "tier": 3, - "cost": [ - { - "item": "Desc_OreGold_C", - "amount": 10 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [ - "Desc_OreGold_C" - ], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 3, - "alternate": false, - "mam": false - }, - "Research_Caterium_1_C": { - "className": "Research_Caterium_1_C", - "name": "Caterium Ingots", - "slug": "caterium-ingots", - "tier": 3, - "cost": [ - { - "item": "Desc_OreGold_C", - "amount": 50 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_IngotCaterium_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 3, - "alternate": false, - "mam": false - }, - "Research_Caterium_2_1_C": { - "className": "Research_Caterium_2_1_C", - "name": "Zipline", - "slug": "zipline-1", - "tier": 3, - "cost": [ - { - "item": "Desc_HighSpeedWire_C", - "amount": 100 - }, - { - "item": "Desc_Cable_C", - "amount": 50 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_ZipLine_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 300, - "alternate": false, - "mam": false - }, - "Research_Caterium_2_C": { - "className": "Research_Caterium_2_C", - "name": "Quickwire", - "slug": "quickwire-1", - "tier": 3, - "cost": [ - { - "item": "Desc_GoldIngot_C", - "amount": 50 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Quickwire_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 3, - "alternate": false, - "mam": false - }, - "Research_Caterium_3_1_C": { - "className": "Research_Caterium_3_1_C", - "name": "Inflated Pocket Dimension", - "slug": "inflated-pocket-dimension-goldingot", - "tier": 3, - "cost": [ - { - "item": "Desc_GoldIngot_C", - "amount": 10 - }, - { - "item": "Desc_Wire_C", - "amount": 500 - }, - { - "item": "Desc_IronPlateReinforced_C", - "amount": 50 - } - ], - "unlock": { - "inventorySlots": 6, - "recipes": [], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 120, - "alternate": false, - "mam": false - }, - "Research_Caterium_3_C": { - "className": "Research_Caterium_3_C", - "name": "Caterium Electronics", - "slug": "caterium-electronics", - "tier": 3, - "cost": [ - { - "item": "Desc_HighSpeedWire_C", - "amount": 100 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 3, - "alternate": false, - "mam": false - }, - "Research_Caterium_4_1_1_C": { - "className": "Research_Caterium_4_1_1_C", - "name": "Smart Splitter", - "slug": "smart-splitter-1", - "tier": 3, - "cost": [ - { - "item": "Desc_CircuitBoardHighSpeed_C", - "amount": 10 - }, - { - "item": "Desc_IronPlateReinforced_C", - "amount": 50 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_ConveyorAttachmentSplitterSmart_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 300, - "alternate": false, - "mam": false - }, - "Research_Caterium_4_1_2_C": { - "className": "Research_Caterium_4_1_2_C", - "name": "Power Switch", - "slug": "power-switch-1", - "tier": 3, - "cost": [ - { - "item": "Desc_SteelPlate_C", - "amount": 100 - }, - { - "item": "Desc_CircuitBoardHighSpeed_C", - "amount": 50 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_PowerSwitch_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 300, - "alternate": false, - "mam": false - }, - "Research_Caterium_4_1_C": { - "className": "Research_Caterium_4_1_C", - "name": "AI Limiter", - "slug": "ai-limiter-1", - "tier": 3, - "cost": [ - { - "item": "Desc_HighSpeedWire_C", - "amount": 200 - }, - { - "item": "Desc_CopperSheet_C", - "amount": 50 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_AILimiter_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 3, - "alternate": false, - "mam": false - }, - "Research_Caterium_4_2_C": { - "className": "Research_Caterium_4_2_C", - "name": "Power Poles Mk.2", - "slug": "power-poles-mk-2", - "tier": 3, - "cost": [ - { - "item": "Desc_HighSpeedWire_C", - "amount": 300 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_PowerPoleMk2_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 300, - "alternate": false, - "mam": false - }, - "Research_Caterium_4_3_C": { - "className": "Research_Caterium_4_3_C", - "name": "Blade Runners", - "slug": "blade-runners-1", - "tier": 3, - "cost": [ - { - "item": "Desc_HighSpeedWire_C", - "amount": 100 - }, - { - "item": "Desc_ModularFrame_C", - "amount": 10 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_BladeRunners_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 300, - "alternate": false, - "mam": false - }, - "Research_Caterium_5_C": { - "className": "Research_Caterium_5_C", - "name": "High-Speed Connector", - "slug": "high-speed-connector-1", - "tier": 3, - "cost": [ - { - "item": "Desc_HighSpeedWire_C", - "amount": 500 - }, - { - "item": "Desc_Plastic_C", - "amount": 50 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_HighSpeedConnector_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 3, - "alternate": false, - "mam": false - }, - "Research_Caterium_6_1_C": { - "className": "Research_Caterium_6_1_C", - "name": "Supercomputer", - "slug": "supercomputer-1", - "tier": 3, - "cost": [ - { - "item": "Desc_CircuitBoardHighSpeed_C", - "amount": 50 - }, - { - "item": "Desc_HighSpeedConnector_C", - "amount": 50 - }, - { - "item": "Desc_Computer_C", - "amount": 50 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_ComputerSuper_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 3, - "alternate": false, - "mam": false - }, - "Research_Caterium_6_2_C": { - "className": "Research_Caterium_6_2_C", - "name": "Power Poles Mk.3", - "slug": "power-poles-mk-3", - "tier": 3, - "cost": [ - { - "item": "Desc_HighSpeedConnector_C", - "amount": 100 - }, - { - "item": "Desc_SteelPipe_C", - "amount": 200 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_PowerPoleMk3_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 360, - "alternate": false, - "mam": false - }, - "Research_Caterium_6_3_C": { - "className": "Research_Caterium_6_3_C", - "name": "Inflated Pocket Dimension", - "slug": "inflated-pocket-dimension-highspeedconnector", - "tier": 3, - "cost": [ - { - "item": "Desc_HighSpeedConnector_C", - "amount": 50 - }, - { - "item": "Desc_Motor_C", - "amount": 50 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 180, - "alternate": false, - "mam": false - }, - "Research_Caterium_7_1_C": { - "className": "Research_Caterium_7_1_C", - "name": "Programmable Splitter", - "slug": "programmable-splitter-1", - "tier": 3, - "cost": [ - { - "item": "Desc_ComputerSuper_C", - "amount": 50 - }, - { - "item": "Desc_ModularFrameHeavy_C", - "amount": 50 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_ConveyorAttachmentSplitterProgrammable_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 480, - "alternate": false, - "mam": false - }, - "Research_Caterium_7_2_C": { - "className": "Research_Caterium_7_2_C", - "name": "Geothermal Generator", - "slug": "geothermal-generator-1", - "tier": 3, - "cost": [ - { - "item": "Desc_ComputerSuper_C", - "amount": 50 - }, - { - "item": "Desc_ModularFrameHeavy_C", - "amount": 50 - }, - { - "item": "Desc_Rubber_C", - "amount": 300 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_GeneratorGeoThermal_C" - ], - "scannerResources": [ - "Desc_Geyser_C" - ], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 480, - "alternate": false, - "mam": false - }, - "Research_FlowerPetals_1_C": { - "className": "Research_FlowerPetals_1_C", - "name": "Flower Petals", - "slug": "flower-petals-1", - "tier": 3, - "cost": [ - { - "item": "Desc_FlowerPetals_C", - "amount": 10 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 3, - "alternate": false, - "mam": false - }, - "Research_FlowerPetals_3_C": { - "className": "Research_FlowerPetals_3_C", - "name": "Color Cartridges", - "slug": "color-cartridges", - "tier": 3, - "cost": [ - { - "item": "Desc_FlowerPetals_C", - "amount": 100 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_ColorCartridge_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 3, - "alternate": false, - "mam": false - }, - "Research_HardDrive_0_C": { - "className": "Research_HardDrive_0_C", - "name": "Hard Drive", - "slug": "hard-drive", - "tier": 0, - "cost": [ - { - "item": "Desc_HardDrive_C", - "amount": 1 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_HardDrive", - "time": 600, - "alternate": false, - "mam": false - }, - "Research_Mycelia_1_C": { - "className": "Research_Mycelia_1_C", - "name": "Mycelia", - "slug": "mycelia-1", - "tier": 3, - "cost": [ - { - "item": "Desc_Mycelia_C", - "amount": 5 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Biomass_Mycelia_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 3, - "alternate": false, - "mam": false - }, - "Research_Mycelia_2_C": { - "className": "Research_Mycelia_2_C", - "name": "Fabric", - "slug": "fabric-1", - "tier": 3, - "cost": [ - { - "item": "Desc_Mycelia_C", - "amount": 25 - }, - { - "item": "Desc_GenericBiomass_C", - "amount": 100 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Fabric_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 3, - "alternate": false, - "mam": false - }, - "Research_Mycelia_3_C": { - "className": "Research_Mycelia_3_C", - "name": "Parachute", - "slug": "parachute-1", - "tier": 3, - "cost": [ - { - "item": "Desc_Fabric_C", - "amount": 10 - }, - { - "item": "Desc_Cable_C", - "amount": 50 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Parachute_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 3, - "alternate": false, - "mam": false - }, - "Research_Mycelia_4_C": { - "className": "Research_Mycelia_4_C", - "name": "Medical Properties", - "slug": "medical-properties", - "tier": 3, - "cost": [ - { - "item": "Desc_Shroom_C", - "amount": 1 - }, - { - "item": "Desc_Berry_C", - "amount": 2 - }, - { - "item": "Desc_Nut_C", - "amount": 3 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 3, - "alternate": false, - "mam": false - }, - "Research_Mycelia_5_C": { - "className": "Research_Mycelia_5_C", - "name": "Medicinal Inhaler", - "slug": "medicinal-inhaler-mycelia", - "tier": 3, - "cost": [ - { - "item": "Desc_Mycelia_C", - "amount": 10 - }, - { - "item": "Desc_IronPlateReinforced_C", - "amount": 25 - }, - { - "item": "Desc_Rotor_C", - "amount": 25 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_MedicinalInhaler_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 3, - "alternate": false, - "mam": false - }, - "Research_Nutrients_0_C": { - "className": "Research_Nutrients_0_C", - "name": "Paleberry", - "slug": "paleberry-1", - "tier": 3, - "cost": [ - { - "item": "Desc_Berry_C", - "amount": 2 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 3, - "alternate": false, - "mam": false - }, - "Research_Nutrients_1_C": { - "className": "Research_Nutrients_1_C", - "name": "Beryl Nut", - "slug": "beryl-nut-1", - "tier": 3, - "cost": [ - { - "item": "Desc_Nut_C", - "amount": 5 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 3, - "alternate": false, - "mam": false - }, - "Research_Nutrients_2_C": { - "className": "Research_Nutrients_2_C", - "name": "Bacon Agaric", - "slug": "bacon-agaric-1", - "tier": 3, - "cost": [ - { - "item": "Desc_Shroom_C", - "amount": 1 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 3, - "alternate": false, - "mam": false - }, - "Research_Nutrients_3_C": { - "className": "Research_Nutrients_3_C", - "name": "Nutritional Mixture", - "slug": "nutritional-mixture", - "tier": 3, - "cost": [ - { - "item": "Desc_Stator_C", - "amount": 25 - }, - { - "item": "Desc_SteelPipe_C", - "amount": 100 - }, - { - "item": "Desc_Wire_C", - "amount": 500 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 3, - "alternate": false, - "mam": false - }, - "Research_Nutrients_4_C": { - "className": "Research_Nutrients_4_C", - "name": "Nutritional Inhaler", - "slug": "nutritional-inhaler", - "tier": 3, - "cost": [ - { - "item": "Desc_Shroom_C", - "amount": 2 - }, - { - "item": "Desc_Berry_C", - "amount": 4 - }, - { - "item": "Desc_Nut_C", - "amount": 10 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_NutritionalInhaler_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 3, - "alternate": false, - "mam": false - }, - "Research_PowerSlugs_1_C": { - "className": "Research_PowerSlugs_1_C", - "name": "Blue Power Slugs", - "slug": "blue-power-slugs", - "tier": 3, - "cost": [ - { - "item": "Desc_Crystal_C", - "amount": 1 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_PowerCrystalShard_1_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 3, - "alternate": false, - "mam": false - }, - "Research_PowerSlugs_2_C": { - "className": "Research_PowerSlugs_2_C", - "name": "Overclock Production", - "slug": "overclock-production", - "tier": 3, - "cost": [ - { - "item": "Desc_IronRod_C", - "amount": 50 - }, - { - "item": "Desc_IronPlate_C", - "amount": 50 - }, - { - "item": "Desc_Wire_C", - "amount": 50 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 300, - "alternate": false, - "mam": false - }, - "Research_PowerSlugs_3_C": { - "className": "Research_PowerSlugs_3_C", - "name": "Slug Scanning", - "slug": "slug-scanning", - "tier": 3, - "cost": [ - { - "item": "Desc_IronRod_C", - "amount": 50 - }, - { - "item": "Desc_Wire_C", - "amount": 100 - }, - { - "item": "Desc_Cable_C", - "amount": 50 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 120, - "alternate": false, - "mam": false - }, - "Research_PowerSlugs_4_C": { - "className": "Research_PowerSlugs_4_C", - "name": "Yellow Power Shards", - "slug": "yellow-power-shards", - "tier": 3, - "cost": [ - { - "item": "Desc_Crystal_mk2_C", - "amount": 1 - }, - { - "item": "Desc_IronPlateReinforced_C", - "amount": 25 - }, - { - "item": "Desc_Cable_C", - "amount": 100 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_PowerCrystalShard_2_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 3, - "alternate": false, - "mam": false - }, - "Research_PowerSlugs_5_C": { - "className": "Research_PowerSlugs_5_C", - "name": "Purple Power Shards", - "slug": "purple-power-shards", - "tier": 3, - "cost": [ - { - "item": "Desc_Crystal_mk3_C", - "amount": 1 - }, - { - "item": "Desc_ModularFrame_C", - "amount": 25 - }, - { - "item": "Desc_Cable_C", - "amount": 200 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_PowerCrystalShard_3_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 3, - "alternate": false, - "mam": false - }, - "Research_Quartz_0_C": { - "className": "Research_Quartz_0_C", - "name": "Quartz", - "slug": "quartz", - "tier": 3, - "cost": [ - { - "item": "Desc_RawQuartz_C", - "amount": 10 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [ - "Desc_RawQuartz_C" - ], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 3, - "alternate": false, - "mam": false - }, - "Research_Quartz_1_1_C": { - "className": "Research_Quartz_1_1_C", - "name": "Quartz Crystals", - "slug": "quartz-crystals", - "tier": 3, - "cost": [ - { - "item": "Desc_RawQuartz_C", - "amount": 20 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_QuartzCrystal_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 3, - "alternate": false, - "mam": false - }, - "Research_Quartz_1_2_C": { - "className": "Research_Quartz_1_2_C", - "name": "Silica", - "slug": "silica-1", - "tier": 3, - "cost": [ - { - "item": "Desc_RawQuartz_C", - "amount": 20 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Silica_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 3, - "alternate": false, - "mam": false - }, - "Research_Quartz_2_C": { - "className": "Research_Quartz_2_C", - "name": "Crystal Oscillator", - "slug": "crystal-oscillator-1", - "tier": 3, - "cost": [ - { - "item": "Desc_QuartzCrystal_C", - "amount": 100 - }, - { - "item": "Desc_IronPlateReinforced_C", - "amount": 50 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_CrystalOscillator_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 3, - "alternate": false, - "mam": false - }, - "Research_Quartz_3_1_C": { - "className": "Research_Quartz_3_1_C", - "name": "The Explorer", - "slug": "the-explorer", - "tier": 3, - "cost": [ - { - "item": "Desc_CrystalOscillator_C", - "amount": 10 - }, - { - "item": "Desc_ModularFrame_C", - "amount": 100 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Explorer_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 300, - "alternate": false, - "mam": false - }, - "Research_Quartz_3_2_C": { - "className": "Research_Quartz_3_2_C", - "name": "Frequency Mapping", - "slug": "frequency-mapping", - "tier": 3, - "cost": [ - { - "item": "Desc_CrystalOscillator_C", - "amount": 10 - }, - { - "item": "BP_EquipmentDescriptorBeacon_C", - "amount": 10 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 300, - "alternate": false, - "mam": false - }, - "Research_Quartz_3_3_C": { - "className": "Research_Quartz_3_3_C", - "name": "Radio Control Unit", - "slug": "radio-control-unit-1", - "tier": 3, - "cost": [ - { - "item": "Desc_CrystalOscillator_C", - "amount": 100 - }, - { - "item": "Desc_AluminumPlate_C", - "amount": 200 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_RadioControlUnit_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 3, - "alternate": false, - "mam": false - }, - "Research_Quartz_3_C": { - "className": "Research_Quartz_3_C", - "name": "Signal Technologies", - "slug": "signal-technologies", - "tier": 3, - "cost": [ - { - "item": "Desc_CrystalOscillator_C", - "amount": 5 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 3, - "alternate": false, - "mam": false - }, - "Research_Quartz_4_1_C": { - "className": "Research_Quartz_4_1_C", - "name": "Radio Signal Scanning", - "slug": "radio-signal-scanning", - "tier": 3, - "cost": [ - { - "item": "Desc_CrystalOscillator_C", - "amount": 50 - }, - { - "item": "Desc_Motor_C", - "amount": 100 - }, - { - "item": "BP_EquipmentDescriptorBeacon_C", - "amount": 10 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 300, - "alternate": false, - "mam": false - }, - "Research_Quartz_4_C": { - "className": "Research_Quartz_4_C", - "name": "Radar Technology", - "slug": "radar-technology", - "tier": 3, - "cost": [ - { - "item": "Desc_CrystalOscillator_C", - "amount": 100 - }, - { - "item": "Desc_ModularFrameHeavy_C", - "amount": 50 - }, - { - "item": "BP_EquipmentDescriptorBeacon_C", - "amount": 15 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_RadarTower_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 3, - "alternate": false, - "mam": false - }, - "Research_Sulfur_0_C": { - "className": "Research_Sulfur_0_C", - "name": "Sulfur", - "slug": "sulfur-1", - "tier": 3, - "cost": [ - { - "item": "Desc_Sulfur_C", - "amount": 10 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [ - "Desc_Sulfur_C" - ], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 3, - "alternate": false, - "mam": false - }, - "Research_Sulfur_1_C": { - "className": "Research_Sulfur_1_C", - "name": "Black Powder", - "slug": "black-powder-1", - "tier": 3, - "cost": [ - { - "item": "Desc_Sulfur_C", - "amount": 50 - }, - { - "item": "Desc_Coal_C", - "amount": 25 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Gunpowder_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 3, - "alternate": false, - "mam": false - }, - "Research_Sulfur_2_C": { - "className": "Research_Sulfur_2_C", - "name": "Volatile Applications", - "slug": "volatile-applications", - "tier": 3, - "cost": [ - { - "item": "Desc_Gunpowder_C", - "amount": 50 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 3, - "alternate": false, - "mam": false - }, - "Research_Sulfur_3_1_C": { - "className": "Research_Sulfur_3_1_C", - "name": "Nobelisk Detonator", - "slug": "nobelisk-detonator-1", - "tier": 3, - "cost": [ - { - "item": "Desc_SteelPlateReinforced_C", - "amount": 10 - }, - { - "item": "Desc_Cable_C", - "amount": 100 - }, - { - "item": "BP_EquipmentDescriptorObjectScanner_C", - "amount": 5 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_NobeliskDetonator_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 180, - "alternate": false, - "mam": false - }, - "Research_Sulfur_3_2_1_C": { - "className": "Research_Sulfur_3_2_1_C", - "name": "Nobelisk Explosives", - "slug": "nobelisk-explosives", - "tier": 3, - "cost": [ - { - "item": "Desc_Gunpowder_C", - "amount": 100 - }, - { - "item": "Desc_SteelPipe_C", - "amount": 100 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Nobelisk_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 3, - "alternate": false, - "mam": false - }, - "Research_Sulfur_3_2_C": { - "className": "Research_Sulfur_3_2_C", - "name": "Prototype Explosives", - "slug": "prototype-explosives", - "tier": 3, - "cost": [ - { - "item": "Desc_Gunpowder_C", - "amount": 50 - }, - { - "item": "Desc_SteelPipe_C", - "amount": 50 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 180, - "alternate": false, - "mam": false - }, - "Research_Sulfur_3_C": { - "className": "Research_Sulfur_3_C", - "name": "Detonator Prototype", - "slug": "detonator-prototype", - "tier": 3, - "cost": [ - { - "item": "Desc_SteelPlate_C", - "amount": 10 - }, - { - "item": "Desc_Cable_C", - "amount": 50 - }, - { - "item": "BP_EquipmentDescriptorObjectScanner_C", - "amount": 5 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 180, - "alternate": false, - "mam": false - }, - "Research_Sulfur_4_1_C": { - "className": "Research_Sulfur_4_1_C", - "name": "The Rifle", - "slug": "the-rifle", - "tier": 3, - "cost": [ - { - "item": "Desc_SteelPipe_C", - "amount": 100 - }, - { - "item": "Desc_CircuitBoard_C", - "amount": 100 - }, - { - "item": "Desc_ModularFrameHeavy_C", - "amount": 5 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_SpaceRifleMk1_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 180, - "alternate": false, - "mam": false - }, - "Research_Sulfur_4_2_1_C": { - "className": "Research_Sulfur_4_2_1_C", - "name": "Rifle Cartridges", - "slug": "rifle-cartridges", - "tier": 3, - "cost": [ - { - "item": "Desc_Gunpowder_C", - "amount": 200 - }, - { - "item": "Desc_SteelPipe_C", - "amount": 200 - }, - { - "item": "Desc_Rubber_C", - "amount": 200 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Cartridge_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 3, - "alternate": false, - "mam": false - }, - "Research_Sulfur_4_2_C": { - "className": "Research_Sulfur_4_2_C", - "name": "Prototype Cartridges", - "slug": "prototype-cartridges", - "tier": 3, - "cost": [ - { - "item": "Desc_Gunpowder_C", - "amount": 100 - }, - { - "item": "Desc_SteelPipe_C", - "amount": 100 - }, - { - "item": "BP_EquipmentDescriptorBeacon_C", - "amount": 5 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 180, - "alternate": false, - "mam": false - }, - "Research_Sulfur_4_C": { - "className": "Research_Sulfur_4_C", - "name": "Rifle Prototype", - "slug": "rifle-prototype", - "tier": 3, - "cost": [ - { - "item": "Desc_SteelPipe_C", - "amount": 50 - }, - { - "item": "Desc_CircuitBoard_C", - "amount": 50 - }, - { - "item": "Desc_IronScrew_C", - "amount": 250 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 180, - "alternate": false, - "mam": false - }, - "Research_Sulfur_5_C": { - "className": "Research_Sulfur_5_C", - "name": "Expanded Toolbelt", - "slug": "expanded-toolbelt-1", - "tier": 3, - "cost": [ - { - "item": "Desc_Gunpowder_C", - "amount": 100 - }, - { - "item": "Desc_SteelPlateReinforced_C", - "amount": 50 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 180, - "alternate": false, - "mam": false - }, - "Research_Sulfur_6_C": { - "className": "Research_Sulfur_6_C", - "name": "Inflated Pocket Dimension", - "slug": "inflated-pocket-dimension-gunpowder", - "tier": 3, - "cost": [ - { - "item": "Desc_Gunpowder_C", - "amount": 50 - }, - { - "item": "Desc_SteelPlate_C", - "amount": 100 - } - ], - "unlock": { - "inventorySlots": 6, - "recipes": [], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 180, - "alternate": false, - "mam": false - }, - "Research_XMas_3-2_C": { - "className": "Research_XMas_3-2_C", - "name": "It's snowing!", - "slug": "it's-snowing!", - "tier": 3, - "cost": [ - { - "item": "Desc_XmasBallCluster_C", - "amount": 10 - }, - { - "item": "Desc_Snow_C", - "amount": 100 - }, - { - "item": "Desc_XmasBranch_C", - "amount": 500 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_SnowDispenser_C", - "Recipe_XmasWreath_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_MAM", - "time": 3, - "alternate": false, - "mam": false - }, - "ResourceSink_AILimiter_C": { - "className": "ResourceSink_AILimiter_C", - "name": "AI Limiter", - "slug": "get-ai-limiter", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 3 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [ - { - "item": "Desc_CircuitBoardHighSpeed_C", - "amount": 100 - } - ] - }, - "requiredSchematics": [ - "Research_Caterium_4_1_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_AdvancedAmmoPack_C": { - "className": "ResourceSink_AdvancedAmmoPack_C", - "name": "Advanced Ammo Pack", - "slug": "get-advanced-ammo-pack", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 1 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [ - { - "item": "Desc_CartridgeStandard_C", - "amount": 25 - } - ] - }, - "requiredSchematics": [ - "Research_Sulfur_4_2_1_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_AlcladSheet_C": { - "className": "ResourceSink_AlcladSheet_C", - "name": "Aluminum Alclad Sheet", - "slug": "get-aluminum-alclad-sheet", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 2 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [ - { - "item": "Desc_AluminumPlate_C", - "amount": 100 - } - ] - }, - "requiredSchematics": [ - "Schematic_7-1_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_AmmoPack_C": { - "className": "ResourceSink_AmmoPack_C", - "name": "Ammo Pack", - "slug": "get-ammo-pack", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 1 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [ - { - "item": "Desc_SpikedRebar_C", - "amount": 25 - } - ] - }, - "requiredSchematics": [ - "Research_ACarapace_2_1_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_Arrows_FoundationPatterns_C": { - "className": "ResourceSink_Arrows_FoundationPatterns_C", - "name": "Arrow Patterns", - "slug": "arrow-patterns", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 1 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Pattern_ArrowStraight_C", - "Recipe_Pattern_ArrowLeft_C", - "Recipe_Pattern_ArrowRight_C", - "Recipe_Pattern_ArrowBack_C", - "Recipe_Pattern_NO_ArrowStraight_C", - "Recipe_Pattern_NO_ArrowLeft_C", - "Recipe_Pattern_NO_ArrowRight_C", - "Recipe_Pattern_Remover_Arrows_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_Battery_C": { - "className": "ResourceSink_Battery_C", - "name": "Battery", - "slug": "get-battery", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 5 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [ - { - "item": "Desc_Battery_C", - "amount": 100 - } - ] - }, - "requiredSchematics": [ - "Schematic_7-2_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_Beacons_C": { - "className": "ResourceSink_Beacons_C", - "name": "Beacons", - "slug": "get-beacons", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 1 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [ - { - "item": "BP_EquipmentDescriptorBeacon_C", - "amount": 10 - } - ] - }, - "requiredSchematics": [ - "Schematic_1-3_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_BeamSet_C": { - "className": "ResourceSink_BeamSet_C", - "name": "Structural Beam Pack", - "slug": "structural-beam-pack", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 4 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Beam_C", - "Recipe_Beam_Painted_C", - "Recipe_Beam_Support_C", - "Recipe_Beam_Connector_C", - "Recipe_Beam_Connector_Double_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_3-4_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_BillboardSigns_C": { - "className": "ResourceSink_BillboardSigns_C", - "name": "Billboard Set", - "slug": "billboard-set", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 10 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_StandaloneWidgetSign_Large_C", - "Recipe_StandaloneWidgetSign_Huge_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Research_Quartz_1_1_C", - "Schematic_4-1_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_Biofuel_C": { - "className": "ResourceSink_Biofuel_C", - "name": "Biofuel", - "slug": "get-biofuel", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 2 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [ - { - "item": "Desc_Biofuel_C", - "amount": 200 - } - ] - }, - "requiredSchematics": [ - "Schematic_2-2_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_Biomass_C": { - "className": "ResourceSink_Biomass_C", - "name": "Biomass", - "slug": "get-biomass", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 1 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [ - { - "item": "Desc_GenericBiomass_C", - "amount": 200 - } - ] - }, - "requiredSchematics": [], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_BlackPowder_C": { - "className": "ResourceSink_BlackPowder_C", - "name": "Black Powder", - "slug": "get-black-powder", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 3 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [ - { - "item": "Desc_Gunpowder_C", - "amount": 100 - } - ] - }, - "requiredSchematics": [ - "Research_Sulfur_1_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_Cable_C": { - "className": "ResourceSink_Cable_C", - "name": "Cable", - "slug": "get-cable", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 2 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [ - { - "item": "Desc_Cable_C", - "amount": 100 - } - ] - }, - "requiredSchematics": [], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_Catwalks_C": { - "className": "ResourceSink_Catwalks_C", - "name": "Modern Catwalks", - "slug": "modern-catwalks", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 5 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Catwalk_Straight_C", - "Recipe_Catwalk_Cross_C", - "Recipe_Catwalk_T_C", - "Recipe_Catwalk_Turn_C", - "Recipe_Catwalk_Ramp_C", - "Recipe_Catwalk_Stairs_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_CeilingLight_C": { - "className": "ResourceSink_CeilingLight_C", - "name": "Indoor Lighting", - "slug": "indoor-lighting", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 3 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_CeilingLight_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Research_Caterium_2_C", - "Schematic_3-4_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_CircuitBoard_C": { - "className": "ResourceSink_CircuitBoard_C", - "name": "Circuit Board", - "slug": "get-circuit-board", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 3 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [ - { - "item": "Desc_CircuitBoard_C", - "amount": 200 - } - ] - }, - "requiredSchematics": [ - "Schematic_5-1_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_CoffeeCup_C": { - "className": "ResourceSink_CoffeeCup_C", - "name": "FICSIT™ Coffee Cup", - "slug": "get-ficsit-coffee-cup", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 1 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [ - { - "item": "BP_EquipmentDescriptorCup_C", - "amount": 1 - } - ] - }, - "requiredSchematics": [], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_ColoredAmmoPack_C": { - "className": "ResourceSink_ColoredAmmoPack_C", - "name": "Color Ammo Pack", - "slug": "get-color-ammo-pack", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 1 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [ - { - "item": "Desc_ColorCartridge_C", - "amount": 50 - } - ] - }, - "requiredSchematics": [ - "Research_FlowerPetals_3_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_Computer_C": { - "className": "ResourceSink_Computer_C", - "name": "Computer", - "slug": "get-computer", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 6 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [ - { - "item": "Desc_Computer_C", - "amount": 50 - } - ] - }, - "requiredSchematics": [ - "Schematic_5-2_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_ConcretePillarSet_C": { - "className": "ResourceSink_ConcretePillarSet_C", - "name": "Concrete Pillar Set", - "slug": "concrete-pillar-set", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 2 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_PillarMiddle_Concrete_C", - "Recipe_PillarBase_C", - "Recipe_Pillar_Small_Concrete_C", - "Recipe_PillarBase_Small_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_Concrete_C": { - "className": "ResourceSink_Concrete_C", - "name": "Concrete", - "slug": "get-concrete", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 1 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [ - { - "item": "Desc_Cement_C", - "amount": 100 - } - ] - }, - "requiredSchematics": [], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_ConveryWalls_Normal_C": { - "className": "ResourceSink_ConveryWalls_Normal_C", - "name": "Conveyor Walls", - "slug": "conveyor-walls", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 5 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Wall_Conveyor_8x4_01_C", - "Recipe_Wall_Conveyor_8x4_02_C", - "Recipe_Wall_Conveyor_8x4_03_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_ConveyorLiftHole_C": { - "className": "ResourceSink_ConveyorLiftHole_C", - "name": "Conveyor Lift Floor Hole", - "slug": "conveyor-lift-floor-hole-1", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 1 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_FoundationPassthrough_Lift_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_ConveyorWallMount_C": { - "className": "ResourceSink_ConveyorWallMount_C", - "name": "Conveyor Wall Mount", - "slug": "conveyor-wall-mount-1", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 2 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_ConveyorPoleWall_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_CopperSheet_C": { - "className": "ResourceSink_CopperSheet_C", - "name": "Copper Sheet", - "slug": "get-copper-sheet", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 1 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [ - { - "item": "Desc_CopperSheet_C", - "amount": 100 - } - ] - }, - "requiredSchematics": [ - "Schematic_2-1_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_CrystalOscillator_C": { - "className": "ResourceSink_CrystalOscillator_C", - "name": "Crystal Oscillator", - "slug": "get-crystal-oscillator", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 4 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [ - { - "item": "Desc_CrystalOscillator_C", - "amount": 100 - } - ] - }, - "requiredSchematics": [ - "Research_Quartz_2_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_CurvedFoundationPack_C": { - "className": "ResourceSink_CurvedFoundationPack_C", - "name": "Quarter Pipes Pack", - "slug": "quarter-pipes-pack", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 7 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_QuarterPipe_C", - "Recipe_QuarterPipe_02_C", - "Recipe_QuarterPipeCorner_01_C", - "Recipe_QuarterPipeCorner_02_C", - "Recipe_QuarterPipeCorner_03_C", - "Recipe_QuarterPipeCorner_04_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_Customizer_Asphalt_FoundationMaterial_C": { - "className": "ResourceSink_Customizer_Asphalt_FoundationMaterial_C", - "name": "Asphalt Foundation Material", - "slug": "asphalt-foundation-material", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 4 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Material_Foundation_Asphalt_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_1-1_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_Customizer_ConcreteWallMaterial_C": { - "className": "ResourceSink_Customizer_ConcreteWallMaterial_C", - "name": "Concrete Wall Material", - "slug": "concrete-wall-material", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 3 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Material_Wall_Concrete_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_1-1_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_Customizer_Concrete_FoundationMaterial_C": { - "className": "ResourceSink_Customizer_Concrete_FoundationMaterial_C", - "name": "Concrete Foundation Material", - "slug": "concrete-foundation-material", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 3 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Material_Foundation_Concrete_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_1-1_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_Customizer_GlassRoofMaterial_C": { - "className": "ResourceSink_Customizer_GlassRoofMaterial_C", - "name": "Glass Roof Material", - "slug": "glass-roof-material", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 5 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Material_Roof_Glass_C", - "Recipe_Roof_Window_01_C", - "Recipe_Roof_Window_02_C", - "Recipe_Roof_Window_03_C", - "Recipe_Roof_Window_04_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "ResourceSink_Roofs_Basic_C", - "Research_Quartz_1_2_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_Customizer_GripMetal_FoundationMaterial_C": { - "className": "ResourceSink_Customizer_GripMetal_FoundationMaterial_C", - "name": "Grip Metal Foundation Material", - "slug": "grip-metal-foundation-material", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 5 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Material_Foundation_GripMetal_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_3-4_C", - "Schematic_1-1_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_Customizer_PolishedConcrete_FoundationMaterial_C": { - "className": "ResourceSink_Customizer_PolishedConcrete_FoundationMaterial_C", - "name": "Coated Concrete Foundation Material", - "slug": "coated-concrete-foundation-material", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 6 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Material_Foundation_PolishedConcrete_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_5-1_C", - "Schematic_1-1_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_Customizer_SteelRoofMaterial_C": { - "className": "ResourceSink_Customizer_SteelRoofMaterial_C", - "name": "Steel Roof Material", - "slug": "steel-roof-material", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 3 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Material_Roof_Metal_C", - "Recipe_Roof_A_01_C", - "Recipe_Roof_A_02_C", - "Recipe_Roof_A_03_C", - "Recipe_Roof_A_04_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "ResourceSink_Roofs_Basic_C", - "Schematic_3-4_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_Customizer_SteelWallMaterial_C": { - "className": "ResourceSink_Customizer_SteelWallMaterial_C", - "name": "Steel Wall Material", - "slug": "steel-wall-material", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 5 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Material_Wall_Steel_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_3-4_C", - "Schematic_1-1_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_Customizer_TarRoofMaterial_C": { - "className": "ResourceSink_Customizer_TarRoofMaterial_C", - "name": "Tar Roof Material", - "slug": "tar-roof-material", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 2 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Material_Roof_Tar_C", - "Recipe_Roof_Tar_01_C", - "Recipe_Roof_Tar_02_C", - "Recipe_Roof_Tar_03_C", - "Recipe_Roof_Tar_04_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "ResourceSink_Roofs_Basic_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_CyberWagon_C": { - "className": "ResourceSink_CyberWagon_C", - "name": "Cyber Wagon", - "slug": "cyber-wagon-1", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 20 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_CyberWagon_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "ResourceSink_CyberWagon_Unlock_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_DiagonalRamps_C": { - "className": "ResourceSink_DiagonalRamps_C", - "name": "Corner Ramp Pack", - "slug": "corner-ramp-pack", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 5 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Ramp_Diagonal_8x1_02_C", - "Recipe_Ramp_Diagonal_8x2_02_C", - "Recipe_Ramp_Diagonal_8x4_02_C", - "Recipe_Ramp_Diagonal_8x1_01_C", - "Recipe_Ramp_Diagonal_8x2_01_C", - "Recipe_Ramp_Diagonal_8x4_01_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_Diagonal_Down_Wallset_C": { - "className": "ResourceSink_Diagonal_Down_Wallset_C", - "name": "Inverted Ramp Wall Bundle", - "slug": "inverted-ramp-wall-bundle", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 2 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Wall_Orange_FlipTris_8x1_C", - "Recipe_Wall_Orange_FlipTris_8x2_C", - "Recipe_Wall_Orange_FlipTris_8x4_C", - "Recipe_Wall_Orange_FlipTris_8x8_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_Diagonal_Up_WallSet_C": { - "className": "ResourceSink_Diagonal_Up_WallSet_C", - "name": "Ramp Wall Bundle", - "slug": "ramp-wall-bundle", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 4 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Wall_Orange_Tris_8x1_C", - "Recipe_Wall_Orange_Tris_8x2_C", - "Recipe_Wall_Orange_Tris_8x4_C", - "Recipe_Wall_Orange_Tris_8x8_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_DisplaySigns_C": { - "className": "ResourceSink_DisplaySigns_C", - "name": "Display Sign Bundle", - "slug": "display-sign-bundle", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 5 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_StandaloneWidgetSign_Medium_C", - "Recipe_StandaloneWidgetSign_Portrait_C", - "Recipe_StandaloneWidgetSign_Square_Small_C", - "Recipe_StandaloneWidgetSign_Square_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Research_Quartz_1_1_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_DoorWalls_Normal_C": { - "className": "ResourceSink_DoorWalls_Normal_C", - "name": "Door Walls", - "slug": "door-walls", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 2 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Wall_Door_8x4_01_C", - "Recipe_Wall_Door_8x4_03_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_DotLines_FoundationPatterns_C": { - "className": "ResourceSink_DotLines_FoundationPatterns_C", - "name": "Dotted Line Patterns", - "slug": "dotted-line-patterns", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 4 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Pattern_DottedCentre_C", - "Recipe_Pattern_DottedCentreCorner_C", - "Recipe_Pattern_DottedSplit_C", - "Recipe_Pattern_DottedCross_C", - "Recipe_Pattern_DottedSide_C", - "Recipe_Pattern_DottedSideCorner_C", - "Recipe_Pattern_DottedDouble_C", - "Recipe_Pattern_Remover_Lines_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_EmptyCanister_C": { - "className": "ResourceSink_EmptyCanister_C", - "name": "Empty Canister", - "slug": "get-empty-canister", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 2 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [ - { - "item": "Desc_FluidCanister_C", - "amount": 100 - } - ] - }, - "requiredSchematics": [ - "Schematic_5-1_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_EncasedIndustrialBeam_C": { - "className": "ResourceSink_EncasedIndustrialBeam_C", - "name": "Encased Industrial Beam", - "slug": "get-encased-industrial-beam", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 3 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [ - { - "item": "Desc_SteelPlateReinforced_C", - "amount": 100 - } - ] - }, - "requiredSchematics": [ - "Schematic_4-1_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_Explosives_C": { - "className": "ResourceSink_Explosives_C", - "name": "Explosives", - "slug": "get-explosives", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 1 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [ - { - "item": "Desc_NobeliskExplosive_C", - "amount": 10 - } - ] - }, - "requiredSchematics": [ - "Research_Sulfur_3_2_1_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_Fabric_C": { - "className": "ResourceSink_Fabric_C", - "name": "Fabric", - "slug": "get-fabric", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 3 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [ - { - "item": "Desc_Fabric_C", - "amount": 100 - } - ] - }, - "requiredSchematics": [ - "Research_Mycelia_2_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_FactoryBarrier_C": { - "className": "ResourceSink_FactoryBarrier_C", - "name": "Road Barrier", - "slug": "road-barrier", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 1 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Concrete_Barrier_01_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_FactoryCart_C": { - "className": "ResourceSink_FactoryCart_C", - "name": "FICSIT Factory Cart™", - "slug": "ficsit-factory-cart", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 10 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_FactoryCart_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_FactoryFence_C": { - "className": "ResourceSink_FactoryFence_C", - "name": "Modern Railing", - "slug": "modern-railing-1", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 1 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Railing_01_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_FactoryRailing_C": { - "className": "ResourceSink_FactoryRailing_C", - "name": "Industrial Railing", - "slug": "industrial-railing-1", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 1 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Fence_01_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_FoudationPillar_C": { - "className": "ResourceSink_FoudationPillar_C", - "name": "Metal Pillar Set", - "slug": "metal-pillar-set", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 2 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_PillarMiddle_C", - "Recipe_PillarBase_C", - "Recipe_Pillar_Small_Metal_C", - "Recipe_PillarBase_Small_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_FoundationExpansionPack_C": { - "className": "ResourceSink_FoundationExpansionPack_C", - "name": "Double Ramp Pack", - "slug": "double-ramp-pack", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 3 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_RampDouble_8x1_C", - "Recipe_RampDouble_C", - "Recipe_Ramp_8x8x8_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_FramePillarSet_C": { - "className": "ResourceSink_FramePillarSet_C", - "name": "Frame Pillar Set", - "slug": "frame-pillar-set", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 2 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_PillarMiddle_Frame_C", - "Recipe_PillarBase_C", - "Recipe_Pillar_Small_Frame_C", - "Recipe_PillarBase_Small_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_3-4_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_FrameWindows_C": { - "className": "ResourceSink_FrameWindows_C", - "name": "Steel-framed Windows", - "slug": "steel-framed-windows", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 3 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Wall_Window_Thin_8x4_01_C", - "Recipe_Wall_Window_Thin_8x4_02_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Research_Quartz_1_2_C", - "Schematic_3-4_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_FrameworkFoundations_C": { - "className": "ResourceSink_FrameworkFoundations_C", - "name": "Structural Frame Set", - "slug": "structural-frame-set", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 10 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Flat_Frame_01_C", - "Recipe_FoundationGlass_01_C", - "Recipe_Foundation_Frame_01_C", - "Recipe_Wall_Frame_01_C", - "Recipe_Ramp_Frame_01_C", - "Recipe_Ramp_Frame_Inverted_01_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_3-4_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_FullLines_FoundationPatterns_C": { - "className": "ResourceSink_FullLines_FoundationPatterns_C", - "name": "Solid Line Patterns", - "slug": "solid-line-patterns", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 5 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Pattern_LineCentre_C", - "Recipe_Pattern_LineCentreCorner_C", - "Recipe_Pattern_LineSplit_C", - "Recipe_Pattern_LineCross_C", - "Recipe_Pattern_LineSide_C", - "Recipe_Pattern_LineSideCorner_C", - "Recipe_Pattern_LineDouble_C", - "Recipe_Pattern_Remover_Lines_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_GasFilters_C": { - "className": "ResourceSink_GasFilters_C", - "name": "Gas Filters", - "slug": "get-gas-filters", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 1 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [ - { - "item": "Desc_Filter_C", - "amount": 25 - } - ] - }, - "requiredSchematics": [ - "Schematic_6-4_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_GateWalls_C": { - "className": "ResourceSink_GateWalls_C", - "name": "Gates", - "slug": "gates", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 3 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Wall_Gate_8x4_01_C", - "Recipe_Gate_Automated_8x4_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_GoldenCart_C": { - "className": "ResourceSink_GoldenCart_C", - "name": "Golden FICSIT Factory Cart™", - "slug": "golden-ficsit-factory-cart", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 50 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_GoldenCart_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "ResourceSink_GoldenCart_Unlock_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_GoldenCup_C": { - "className": "ResourceSink_GoldenCup_C", - "name": "'Employee of the Planet' Cup", - "slug": "get-'employee-of-the-planet'-cup", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 1 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [ - { - "item": "BP_EquipmentDescriptorCupGold_C", - "amount": 1 - } - ] - }, - "requiredSchematics": [], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_HazardBoxSkin_C": { - "className": "ResourceSink_HazardBoxSkin_C", - "name": "Hazard Box - Personal Storage Skin", - "slug": "hazard-box---personal-storage-skin", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 1 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_StorageHazard_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_HealthPack_C": { - "className": "ResourceSink_HealthPack_C", - "name": "Health Pack", - "slug": "get-health-pack", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 1 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [ - { - "item": "Desc_Medkit_C", - "amount": 5 - } - ] - }, - "requiredSchematics": [ - "Research_AOrgans_2_C", - "Research_Nutrients_4_C", - "Research_Mycelia_5_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_HeatSink_C": { - "className": "ResourceSink_HeatSink_C", - "name": "Heat Sink", - "slug": "get-heat-sink", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 3 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [ - { - "item": "Desc_AluminumPlateReinforced_C", - "amount": 100 - } - ] - }, - "requiredSchematics": [ - "Schematic_7-2_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_HeavyModularFrame_C": { - "className": "ResourceSink_HeavyModularFrame_C", - "name": "Heavy Modular Frame", - "slug": "get-heavy-modular-frame", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 6 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [ - { - "item": "Desc_ModularFrameHeavy_C", - "amount": 50 - } - ] - }, - "requiredSchematics": [ - "Schematic_5-2_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_HighSpeedConnector_C": { - "className": "ResourceSink_HighSpeedConnector_C", - "name": "High-Speed Connector", - "slug": "get-high-speed-connector", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 4 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [ - { - "item": "Desc_HighSpeedConnector_C", - "amount": 100 - } - ] - }, - "requiredSchematics": [ - "Research_Caterium_5_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_HyperTubeFloorHole_C": { - "className": "ResourceSink_HyperTubeFloorHole_C", - "name": "Hypertube Floor Hole", - "slug": "hypertube-floor-hole-1", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 1 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_FoundationPassthrough_Hypertube_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_HyperTubeWallAttachements_C": { - "className": "ResourceSink_HyperTubeWallAttachements_C", - "name": "Hypertube Wall Attachments", - "slug": "hypertube-wall-attachments", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 2 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_HyperTubeWallSupport_C", - "Recipe_HyperTubeWallHole_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_IconsFactory_FoundationPatterns_C": { - "className": "ResourceSink_IconsFactory_FoundationPatterns_C", - "name": "Factory Icon Patterns", - "slug": "factory-icon-patterns", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 3 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Pattern_Icon_Factory_C", - "Recipe_Pattern_Icon_Power_C", - "Recipe_Pattern_Icon_Storage_C", - "Recipe_Pattern_Icon_Nuclear_C", - "Recipe_Pattern_Icon_Liquid_C", - "Recipe_Pattern_Icon_StopCross_C", - "Recipe_Pattern_Icon_Pioneer_C", - "Recipe_Pattern_NO_Pioneer_C", - "Recipe_Pattern_Remover_Icons_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_IconsTransport_FoundationPatterns_C": { - "className": "ResourceSink_IconsTransport_FoundationPatterns_C", - "name": "Transportation Icon Patterns", - "slug": "transportation-icon-patterns", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 3 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Pattern_Icon_Tractor_C", - "Recipe_Pattern_Icon_Truck_C", - "Recipe_Pattern_Icon_Explorer_C", - "Recipe_Pattern_Icon_Cart_C", - "Recipe_Pattern_NO_Cart_C", - "Recipe_Pattern_Icon_Parking_C", - "Recipe_Pattern_NO_Parking_C", - "Recipe_Pattern_FullZebra_C", - "Recipe_Pattern_Remover_Icons_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_InvertedCornerRamps_C": { - "className": "ResourceSink_InvertedCornerRamps_C", - "name": "Inverted Corner Ramp Pack", - "slug": "inverted-corner-ramp-pack", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 5 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_RampInverted_8x1_Corner_01_C", - "Recipe_RampInverted_8x2_Corner_01_C", - "Recipe_RampInverted_8x4_Corner_01_C", - "Recipe_RampInverted_8x1_Corner_02_C", - "Recipe_RampInverted_8x2_Corner_02_C", - "Recipe_RampInverted_8x4_Corner_02_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_InvertedRampPack_C": { - "className": "ResourceSink_InvertedRampPack_C", - "name": "Inverted Ramp Pack", - "slug": "inverted-ramp-pack", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 3 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_RampInverted_8x1_C", - "Recipe_RampInverted_8x2_01_C", - "Recipe_Ramp_8x4_Inverted_01_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_LabelSigns_C": { - "className": "ResourceSink_LabelSigns_C", - "name": "Label Sign Bundle", - "slug": "label-sign-bundle", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 2 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_StandaloneWidgetSign_Small_C", - "Recipe_StandaloneWidgetSign_SmallWide_C", - "Recipe_StandaloneWidgetSign_SmallVeryWide_C", - "Recipe_StandaloneWidgetSign_Square_Tiny_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Research_Quartz_1_1_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_Ladders_C": { - "className": "ResourceSink_Ladders_C", - "name": "Factory Ladder", - "slug": "factory-ladder", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 3 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Ladder_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_LightControlPanel_C": { - "className": "ResourceSink_LightControlPanel_C", - "name": "Lights Control Panel", - "slug": "lights-control-panel-1", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 2 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_LightsControlPanel_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Research_Caterium_2_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_LightTower_C": { - "className": "ResourceSink_LightTower_C", - "name": "Flood Lights", - "slug": "flood-lights", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 5 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_FloodlightPole_C", - "Recipe_FloodlightWall_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Research_Caterium_2_C", - "Schematic_4-1_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_MedicalBoxSkin_C": { - "className": "ResourceSink_MedicalBoxSkin_C", - "name": "Medical Box - Personal Storage Skin", - "slug": "medical-box---personal-storage-skin", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 1 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_StorageMedkit_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_ModularFrame_C": { - "className": "ResourceSink_ModularFrame_C", - "name": "Modular Frame", - "slug": "get-modular-frame", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 4 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [ - { - "item": "Desc_ModularFrame_C", - "amount": 50 - } - ] - }, - "requiredSchematics": [ - "Schematic_2-1_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_Motor_C": { - "className": "ResourceSink_Motor_C", - "name": "Motor", - "slug": "get-motor", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 5 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [ - { - "item": "Desc_Motor_C", - "amount": 50 - } - ] - }, - "requiredSchematics": [ - "Schematic_4-1_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_Number_FoundationPatterns_C": { - "className": "ResourceSink_Number_FoundationPatterns_C", - "name": "Number Patterns", - "slug": "number-patterns", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 2 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Pattern_Number0_C", - "Recipe_Pattern_Number1_C", - "Recipe_Pattern_Number2_C", - "Recipe_Pattern_Number3_C", - "Recipe_Pattern_Number4_C", - "Recipe_Pattern_Number5_C", - "Recipe_Pattern_Number6_C", - "Recipe_Pattern_Number7_C", - "Recipe_Pattern_Number8_C", - "Recipe_Pattern_Number9_C", - "Recipe_Pattern_Remover_Numbers_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_PackagedBiofuel_C": { - "className": "ResourceSink_PackagedBiofuel_C", - "name": "Packaged Liquid Biofuel", - "slug": "get-packaged-liquid-biofuel", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 3 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [ - { - "item": "Desc_PackagedBiofuel_C", - "amount": 100 - } - ] - }, - "requiredSchematics": [ - "Schematic_5-4_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_PackagedFuel_C": { - "className": "ResourceSink_PackagedFuel_C", - "name": "Packaged Fuel", - "slug": "get-packaged-fuel", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 3 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [ - { - "item": "Desc_Fuel_C", - "amount": 100 - } - ] - }, - "requiredSchematics": [ - "Schematic_5-4_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_Parachutes_C": { - "className": "ResourceSink_Parachutes_C", - "name": "Parachutes", - "slug": "get-parachutes", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 1 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [ - { - "item": "Desc_Parachute_C", - "amount": 10 - } - ] - }, - "requiredSchematics": [ - "Research_Mycelia_3_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_Pathways_FoundationPatterns_C": { - "className": "ResourceSink_Pathways_FoundationPatterns_C", - "name": "Pathway Patterns", - "slug": "pathway-patterns", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 6 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Pattern_PathStraight_C", - "Recipe_Pattern_PathCorner_C", - "Recipe_Pattern_PathSplit_C", - "Recipe_Pattern_PathCross_C", - "Recipe_Pattern_PathPioneer_C", - "Recipe_Pattern_PathCart_C", - "Recipe_Pattern_PathZebra_C", - "Recipe_Pattern_Remover_Paths_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_PetroleumCoke_C": { - "className": "ResourceSink_PetroleumCoke_C", - "name": "Petroleum Coke", - "slug": "get-petroleum-coke", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 1 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [ - { - "item": "Desc_PetroleumCoke_C", - "amount": 200 - } - ] - }, - "requiredSchematics": [ - "Schematic_5-1_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_PipelineFloorHole_C": { - "className": "ResourceSink_PipelineFloorHole_C", - "name": "Pipeline Floor Hole", - "slug": "pipeline-floor-hole-1", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 1 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_FoundationPassthrough_Pipe_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_3-1_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_PipelineWallAttachments_C": { - "className": "ResourceSink_PipelineWallAttachments_C", - "name": "Pipeline Wall Attachments", - "slug": "pipeline-wall-attachments", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 2 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_PipeSupportWall_C", - "Recipe_PipeSupportWallHole_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_Plastic_C": { - "className": "ResourceSink_Plastic_C", - "name": "Plastic", - "slug": "get-plastic", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 1 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [ - { - "item": "Desc_Plastic_C", - "amount": 100 - } - ] - }, - "requiredSchematics": [ - "Schematic_5-1_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_Plate_C": { - "className": "ResourceSink_Plate_C", - "name": "Iron Plate", - "slug": "get-iron-plate", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 1 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [ - { - "item": "Desc_IronPlate_C", - "amount": 100 - } - ] - }, - "requiredSchematics": [], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_PolymerResin_C": { - "className": "ResourceSink_PolymerResin_C", - "name": "Polymer Resin", - "slug": "get-polymer-resin", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 1 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [ - { - "item": "Desc_PolymerResin_C", - "amount": 200 - } - ] - }, - "requiredSchematics": [ - "Schematic_5-1_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_Quickwire_C": { - "className": "ResourceSink_Quickwire_C", - "name": "Quickwire", - "slug": "get-quickwire", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 1 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [ - { - "item": "Desc_HighSpeedWire_C", - "amount": 500 - } - ] - }, - "requiredSchematics": [ - "Research_Caterium_2_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_RadiationFilters_C": { - "className": "ResourceSink_RadiationFilters_C", - "name": "Radiation Filters", - "slug": "get-radiation-filters", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 1 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [ - { - "item": "Desc_HazmatFilter_C", - "amount": 10 - } - ] - }, - "requiredSchematics": [ - "Schematic_7-3_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_RadioControlUnit_C": { - "className": "ResourceSink_RadioControlUnit_C", - "name": "Radio Control Unit", - "slug": "get-radio-control-unit", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 7 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [ - { - "item": "Desc_ModularFrameLightweight_C", - "amount": 50 - } - ] - }, - "requiredSchematics": [ - "Research_Quartz_3_3_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_ReinforcedIronPlate_C": { - "className": "ResourceSink_ReinforcedIronPlate_C", - "name": "Reinforced Iron Plate", - "slug": "get-reinforced-iron-plate", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 3 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [ - { - "item": "Desc_IronPlateReinforced_C", - "amount": 100 - } - ] - }, - "requiredSchematics": [], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_Rod_C": { - "className": "ResourceSink_Rod_C", - "name": "Iron Rod", - "slug": "get-iron-rod", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 1 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [ - { - "item": "Desc_IronRod_C", - "amount": 100 - } - ] - }, - "requiredSchematics": [], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_Roofs_Basic_C": { - "className": "ResourceSink_Roofs_Basic_C", - "name": "FICSIT Roofs", - "slug": "ficsit-roofs", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 6 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Roof_Orange_01_C", - "Recipe_Roof_Orange_02_C", - "Recipe_Roof_Orange_03_C", - "Recipe_Roof_Orange_04_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_Rotor_C": { - "className": "ResourceSink_Rotor_C", - "name": "Rotor", - "slug": "get-rotor", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 3 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [ - { - "item": "Desc_Rotor_C", - "amount": 100 - } - ] - }, - "requiredSchematics": [ - "Schematic_2-1_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_Rubber_C": { - "className": "ResourceSink_Rubber_C", - "name": "Rubber", - "slug": "get-rubber", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 1 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [ - { - "item": "Desc_Rubber_C", - "amount": 100 - } - ] - }, - "requiredSchematics": [ - "Schematic_5-1_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_Screw_C": { - "className": "ResourceSink_Screw_C", - "name": "Screw", - "slug": "get-screw", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 2 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [ - { - "item": "Desc_IronScrew_C", - "amount": 500 - } - ] - }, - "requiredSchematics": [], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_Silica_C": { - "className": "ResourceSink_Silica_C", - "name": "Silica", - "slug": "get-silica", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 1 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [ - { - "item": "Desc_Silica_C", - "amount": 100 - } - ] - }, - "requiredSchematics": [ - "Research_Quartz_1_2_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_Stairs_C": { - "className": "ResourceSink_Stairs_C", - "name": "Stairs", - "slug": "stairs", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 2 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Stairs_Left_01_C", - "Recipe_Stairs_Right_01_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_Stator_C": { - "className": "ResourceSink_Stator_C", - "name": "Stator", - "slug": "get-stator", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 3 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [ - { - "item": "Desc_Stator_C", - "amount": 100 - } - ] - }, - "requiredSchematics": [ - "Schematic_4-1_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_StatueBronzePioneer_C": { - "className": "ResourceSink_StatueBronzePioneer_C", - "name": "Adequate Pioneering", - "slug": "get-adequate-pioneering", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 25 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [ - { - "item": "Desc_CharacterRunStatue_C", - "amount": 1 - } - ] - }, - "requiredSchematics": [], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_StatueGoldPioneer_C": { - "className": "ResourceSink_StatueGoldPioneer_C", - "name": "Satisfactory Pioneering", - "slug": "get-satisfactory-pioneering", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 150 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [ - { - "item": "Desc_CharacterSpin_Statue_C", - "amount": 1 - } - ] - }, - "requiredSchematics": [], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_StatueGoldenNut_C": { - "className": "ResourceSink_StatueGoldenNut_C", - "name": "Golden Nut", - "slug": "get-golden-nut", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 1000 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [ - { - "item": "Desc_GoldenNut_Statue_C", - "amount": 1 - } - ] - }, - "requiredSchematics": [], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_StatueLizardDoggo_C": { - "className": "ResourceSink_StatueLizardDoggo_C", - "name": "Lizard Doggo", - "slug": "get-lizard-doggo", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 100 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [ - { - "item": "Desc_DoggoStatue_C", - "amount": 1 - } - ] - }, - "requiredSchematics": [], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_StatueSilverPioneer_C": { - "className": "ResourceSink_StatueSilverPioneer_C", - "name": "Pretty Good Pioneering", - "slug": "get-pretty-good-pioneering", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 50 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [ - { - "item": "Desc_CharacterClap_Statue_C", - "amount": 1 - } - ] - }, - "requiredSchematics": [], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_StatueSpaceGiraffe_C": { - "className": "ResourceSink_StatueSpaceGiraffe_C", - "name": "Confusing Creature", - "slug": "get-confusing-creature", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 200 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [ - { - "item": "Desc_SpaceGiraffeStatue_C", - "amount": 1 - } - ] - }, - "requiredSchematics": [], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_Statue_Hoggo_C": { - "className": "ResourceSink_Statue_Hoggo_C", - "name": "Silver Hog", - "slug": "get-silver-hog", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 50 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [ - { - "item": "Desc_Hog_Statue_C", - "amount": 1 - } - ] - }, - "requiredSchematics": [], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_SteelBeam_C": { - "className": "ResourceSink_SteelBeam_C", - "name": "Steel Beam", - "slug": "get-steel-beam", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 1 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [ - { - "item": "Desc_SteelPlate_C", - "amount": 100 - } - ] - }, - "requiredSchematics": [ - "Schematic_3-4_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_SteelPipe_C": { - "className": "ResourceSink_SteelPipe_C", - "name": "Steel Pipe", - "slug": "get-steel-pipe", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 1 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [ - { - "item": "Desc_SteelPipe_C", - "amount": 100 - } - ] - }, - "requiredSchematics": [ - "Schematic_3-4_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_StreetLight_C": { - "className": "ResourceSink_StreetLight_C", - "name": "Street Light", - "slug": "street-light-1", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 1 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_StreetLight_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Research_Caterium_2_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_SuperComputer_C": { - "className": "ResourceSink_SuperComputer_C", - "name": "Supercomputer", - "slug": "get-supercomputer", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 8 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [ - { - "item": "Desc_ComputerSuper_C", - "amount": 50 - } - ] - }, - "requiredSchematics": [ - "Research_Caterium_6_1_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_Tilted_Walls_C": { - "className": "ResourceSink_Tilted_Walls_C", - "name": "Tilted Walls", - "slug": "tilted-walls", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 5 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Wall_Orange_Angular_8x4_C", - "Recipe_Wall_Orange_Angular_8x8_C", - "Recipe_Wall_Orange_8x4_Corner_01_C", - "Recipe_Wall_Orange_8x8_Corner_01_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_TurboMotor_C": { - "className": "ResourceSink_TurboMotor_C", - "name": "Turbo Motor", - "slug": "get-turbo-motor", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 8 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [ - { - "item": "Desc_MotorLightweight_C", - "amount": 50 - } - ] - }, - "requiredSchematics": [ - "Schematic_7-2_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_Walkways_C": { - "className": "ResourceSink_Walkways_C", - "name": "Industrial Walkways", - "slug": "industrial-walkways", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 5 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Walkway_Straight_C", - "Recipe_Walkway_Cross_C", - "Recipe_Walkway_T_C", - "Recipe_Walkway_Turn_C", - "Recipe_Walkway_Ramp_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_WallPowerPolesMK2_C": { - "className": "ResourceSink_WallPowerPolesMK2_C", - "name": "Wall Power Outlets Mk.2", - "slug": "wall-power-outlets-mk-2", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 4 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_PowerPoleWallMk2_C", - "Recipe_PowerPoleWallDoubleMk2_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Research_Caterium_4_2_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_WallPowerPolesMK3_C": { - "className": "ResourceSink_WallPowerPolesMK3_C", - "name": "Wall Power Outlets Mk.3", - "slug": "wall-power-outlets-mk-3", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 5 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_PowerPoleWallMk3_C", - "Recipe_PowerPoleWallDoubleMk3_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Research_Caterium_6_2_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_WallPowerPoles_C": { - "className": "ResourceSink_WallPowerPoles_C", - "name": "Wall Power Outlets Mk.1", - "slug": "wall-power-outlets-mk-1", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 3 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_PowerPoleWall_C", - "Recipe_PowerPoleWallDouble_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_WindowedWalls_C": { - "className": "ResourceSink_WindowedWalls_C", - "name": "Windowed Walls", - "slug": "windowed-walls", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 6 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Wall_Window_8x4_01_C", - "Recipe_Wall_Window_8x4_02_C", - "Recipe_Wall_Window_8x4_03_C", - "Recipe_Wall_Window_8x4_04_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Research_Quartz_1_2_C" - ], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_Wire_C": { - "className": "ResourceSink_Wire_C", - "name": "Wire", - "slug": "get-wire", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 1 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [], - "scannerResources": [], - "giveItems": [ - { - "item": "Desc_Wire_C", - "amount": 500 - } - ] - }, - "requiredSchematics": [], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "ResourceSink_Zones_FoundationPatterns_C": { - "className": "ResourceSink_Zones_FoundationPatterns_C", - "name": "Factory Zone Patterns", - "slug": "factory-zone-patterns", - "tier": 1, - "cost": [ - { - "item": "Desc_ResourceSinkCoupon_C", - "amount": 2 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Pattern_ZoneFull_C", - "Recipe_Pattern_ZoneHalf_C", - "Recipe_Pattern_ZoneQuarter_C", - "Recipe_Pattern_ZoneLine_C", - "Recipe_Pattern_Remover_Zones_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_ResourceSink", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_1-1_C": { - "className": "Schematic_1-1_C", - "name": "Base Building", - "slug": "base-building", - "tier": 1, - "cost": [ - { - "item": "Desc_Cement_C", - "amount": 200 - }, - { - "item": "Desc_IronPlate_C", - "amount": 100 - }, - { - "item": "Desc_IronRod_C", - "amount": 100 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_LookoutTower_C", - "Recipe_Foundation_8x1_01_C", - "Recipe_Foundation_8x2_01_C", - "Recipe_Foundation_8x4_01_C", - "Recipe_Ramp_8x1_01_C", - "Recipe_Ramp_8x2_01_C", - "Recipe_Ramp_8x4_01_C", - "Recipe_Wall_8x4_01_C", - "Recipe_Wall_Orange_8x1_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_Milestone", - "time": 120, - "alternate": false, - "mam": false - }, - "Schematic_1-2_C": { - "className": "Schematic_1-2_C", - "name": "Logistics", - "slug": "logistics", - "tier": 1, - "cost": [ - { - "item": "Desc_IronPlate_C", - "amount": 150 - }, - { - "item": "Desc_IronRod_C", - "amount": 150 - }, - { - "item": "Desc_Wire_C", - "amount": 300 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_ConveyorAttachmentSplitter_C", - "Recipe_ConveyorAttachmentMerger_C", - "Recipe_ConveyorLiftMk1_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_Milestone", - "time": 240, - "alternate": false, - "mam": false - }, - "Schematic_1-3_C": { - "className": "Schematic_1-3_C", - "name": "Field Research", - "slug": "field-research", - "tier": 1, - "cost": [ - { - "item": "Desc_Wire_C", - "amount": 300 - }, - { - "item": "Desc_IronScrew_C", - "amount": 300 - }, - { - "item": "Desc_IronPlate_C", - "amount": 100 - } - ], - "unlock": { - "inventorySlots": 3, - "recipes": [ - "Recipe_Mam_C", - "Recipe_ObjectScanner_C", - "Recipe_Beacon_C", - "Recipe_StoragePlayer_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_Milestone", - "time": 180, - "alternate": false, - "mam": false - }, - "Schematic_2-1_C": { - "className": "Schematic_2-1_C", - "name": "Part Assembly", - "slug": "part-assembly", - "tier": 2, - "cost": [ - { - "item": "Desc_Cable_C", - "amount": 200 - }, - { - "item": "Desc_IronRod_C", - "amount": 200 - }, - { - "item": "Desc_IronScrew_C", - "amount": 500 - }, - { - "item": "Desc_IronPlate_C", - "amount": 300 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_AssemblerMk1_C", - "Recipe_CopperSheet_C", - "Recipe_Rotor_C", - "Recipe_ModularFrame_C", - "Recipe_SpaceElevatorPart_1_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_Milestone", - "time": 360, - "alternate": false, - "mam": false - }, - "Schematic_2-2_C": { - "className": "Schematic_2-2_C", - "name": "Obstacle Clearing", - "slug": "obstacle-clearing", - "tier": 2, - "cost": [ - { - "item": "Desc_IronScrew_C", - "amount": 500 - }, - { - "item": "Desc_Cable_C", - "amount": 100 - }, - { - "item": "Desc_Cement_C", - "amount": 100 - } - ], - "unlock": { - "inventorySlots": 3, - "recipes": [ - "Recipe_Chainsaw_C", - "Recipe_Biofuel_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_Milestone", - "time": 180, - "alternate": false, - "mam": false - }, - "Schematic_2-3_C": { - "className": "Schematic_2-3_C", - "name": "Jump Pads", - "slug": "jump-pads", - "tier": 2, - "cost": [ - { - "item": "Desc_Rotor_C", - "amount": 50 - }, - { - "item": "Desc_IronPlate_C", - "amount": 300 - }, - { - "item": "Desc_Cable_C", - "amount": 150 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_JumpPadAdjustable_C", - "Recipe_UJellyLandingPad_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_Milestone", - "time": 240, - "alternate": false, - "mam": false - }, - "Schematic_2-5_C": { - "className": "Schematic_2-5_C", - "name": "Resource Sink Bonus Program", - "slug": "resource-sink-bonus-program", - "tier": 2, - "cost": [ - { - "item": "Desc_Cement_C", - "amount": 400 - }, - { - "item": "Desc_Wire_C", - "amount": 500 - }, - { - "item": "Desc_IronRod_C", - "amount": 200 - }, - { - "item": "Desc_IronPlate_C", - "amount": 200 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_ResourceSink_C", - "Recipe_ResourceSinkShop_C", - "Recipe_ColorCartridge_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_Milestone", - "time": 300, - "alternate": false, - "mam": false - }, - "Schematic_3-1_C": { - "className": "Schematic_3-1_C", - "name": "Coal Power", - "slug": "coal-power", - "tier": 3, - "cost": [ - { - "item": "Desc_IronPlateReinforced_C", - "amount": 150 - }, - { - "item": "Desc_Rotor_C", - "amount": 50 - }, - { - "item": "Desc_Cable_C", - "amount": 300 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_GeneratorCoal_C", - "Recipe_WaterPump_C", - "Recipe_Pipeline_C", - "Recipe_PipeSupport_C", - "Recipe_PipelineJunction_Cross_C", - "Recipe_PipelinePump_C", - "Recipe_PipeStorageTank_C" - ], - "scannerResources": [ - "Desc_Coal_C" - ], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_Milestone", - "time": 480, - "alternate": false, - "mam": false - }, - "Schematic_3-2_C": { - "className": "Schematic_3-2_C", - "name": "Logistics Mk.2", - "slug": "logistics-mk-2", - "tier": 2, - "cost": [ - { - "item": "Desc_IronPlateReinforced_C", - "amount": 50 - }, - { - "item": "Desc_Cement_C", - "amount": 200 - }, - { - "item": "Desc_IronRod_C", - "amount": 300 - }, - { - "item": "Desc_IronPlate_C", - "amount": 300 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_ConveyorBeltMk2_C", - "Recipe_ConveyorPoleStackable_C", - "Recipe_ConveyorLiftMk2_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_Milestone", - "time": 360, - "alternate": false, - "mam": false - }, - "Schematic_3-3_C": { - "className": "Schematic_3-3_C", - "name": "Vehicular Transport", - "slug": "vehicular-transport", - "tier": 3, - "cost": [ - { - "item": "Desc_ModularFrame_C", - "amount": 25 - }, - { - "item": "Desc_Rotor_C", - "amount": 100 - }, - { - "item": "Desc_Cable_C", - "amount": 200 - }, - { - "item": "Desc_IronRod_C", - "amount": 400 - } - ], - "unlock": { - "inventorySlots": 3, - "recipes": [ - "Recipe_Tractor_C", - "Recipe_TruckStation_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_Milestone", - "time": 240, - "alternate": false, - "mam": false - }, - "Schematic_3-4_C": { - "className": "Schematic_3-4_C", - "name": "Basic Steel Production", - "slug": "basic-steel-production", - "tier": 3, - "cost": [ - { - "item": "Desc_ModularFrame_C", - "amount": 50 - }, - { - "item": "Desc_Rotor_C", - "amount": 150 - }, - { - "item": "Desc_Cement_C", - "amount": 300 - }, - { - "item": "Desc_Wire_C", - "amount": 1000 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_SmelterMk1_C", - "Recipe_IngotSteel_C", - "Recipe_SteelBeam_C", - "Recipe_SteelPipe_C", - "Recipe_SpaceElevatorPart_2_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_Milestone", - "time": 480, - "alternate": false, - "mam": false - }, - "Schematic_4-1_C": { - "className": "Schematic_4-1_C", - "name": "Advanced Steel Production", - "slug": "advanced-steel-production", - "tier": 4, - "cost": [ - { - "item": "Desc_SteelPipe_C", - "amount": 200 - }, - { - "item": "Desc_Rotor_C", - "amount": 200 - }, - { - "item": "Desc_Wire_C", - "amount": 1500 - }, - { - "item": "Desc_Cement_C", - "amount": 300 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_MinerMk2_C", - "Recipe_EncasedIndustrialBeam_C", - "Recipe_Stator_C", - "Recipe_Motor_C", - "Recipe_SpaceElevatorPart_3_C", - "Recipe_ModularFrameHeavy_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_Milestone", - "time": 600, - "alternate": false, - "mam": false - }, - "Schematic_4-2_C": { - "className": "Schematic_4-2_C", - "name": "Improved Melee Combat", - "slug": "improved-melee-combat", - "tier": 4, - "cost": [ - { - "item": "Desc_Rotor_C", - "amount": 25 - }, - { - "item": "Desc_IronPlateReinforced_C", - "amount": 50 - }, - { - "item": "Desc_Wire_C", - "amount": 1500 - }, - { - "item": "Desc_Cable_C", - "amount": 200 - } - ], - "unlock": { - "inventorySlots": 3, - "recipes": [ - "Recipe_XenoBasher_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_Milestone", - "time": 180, - "alternate": false, - "mam": false - }, - "Schematic_4-4_C": { - "className": "Schematic_4-4_C", - "name": "Hypertubes", - "slug": "hypertubes", - "tier": 4, - "cost": [ - { - "item": "Desc_CopperSheet_C", - "amount": 300 - }, - { - "item": "Desc_SteelPipe_C", - "amount": 300 - }, - { - "item": "Desc_SteelPlateReinforced_C", - "amount": 50 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_PipeHyperStart_C", - "Recipe_PipeHyper_C", - "Recipe_PipeHyperSupport_C", - "Recipe_HyperPoleStackable_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_Milestone", - "time": 600, - "alternate": false, - "mam": false - }, - "Schematic_5-1_C": { - "className": "Schematic_5-1_C", - "name": "Oil Processing", - "slug": "oil-processing", - "tier": 5, - "cost": [ - { - "item": "Desc_Motor_C", - "amount": 50 - }, - { - "item": "Desc_SteelPlateReinforced_C", - "amount": 100 - }, - { - "item": "Desc_SteelPipe_C", - "amount": 500 - }, - { - "item": "Desc_CopperSheet_C", - "amount": 500 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_OilPump_C", - "Recipe_OilRefinery_C", - "Recipe_Valve_C", - "Recipe_Plastic_C", - "Recipe_Rubber_C", - "Recipe_LiquidFuel_C", - "Recipe_PetroleumCoke_C", - "Recipe_CircuitBoard_C" - ], - "scannerResources": [ - "Desc_LiquidOil_C" - ], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_Milestone", - "time": 720, - "alternate": false, - "mam": false - }, - "Schematic_5-2_C": { - "className": "Schematic_5-2_C", - "name": "Industrial Manufacturing", - "slug": "industrial-manufacturing", - "tier": 5, - "cost": [ - { - "item": "Desc_Motor_C", - "amount": 100 - }, - { - "item": "Desc_Plastic_C", - "amount": 200 - }, - { - "item": "Desc_Rubber_C", - "amount": 200 - }, - { - "item": "Desc_Cable_C", - "amount": 1000 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_ManufacturerMk1_C", - "Recipe_Truck_C", - "Recipe_Computer_C", - "Recipe_SpaceElevatorPart_4_C", - "Recipe_SpaceElevatorPart_5_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_Milestone", - "time": 720, - "alternate": false, - "mam": false - }, - "Schematic_5-3_C": { - "className": "Schematic_5-3_C", - "name": "Logistics Mk.3", - "slug": "logistics-mk-3", - "tier": 4, - "cost": [ - { - "item": "Desc_SteelPlate_C", - "amount": 200 - }, - { - "item": "Desc_SteelPipe_C", - "amount": 100 - }, - { - "item": "Desc_Cement_C", - "amount": 500 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_PowerStorageMk1_C", - "Recipe_StorageContainerMk2_C", - "Recipe_ConveyorBeltMk3_C", - "Recipe_ConveyorLiftMk3_C", - "Recipe_PipeSupportStackable_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_Milestone", - "time": 300, - "alternate": false, - "mam": false - }, - "Schematic_5-4_C": { - "className": "Schematic_5-4_C", - "name": "Alternative Fluid Transport", - "slug": "alternative-fluid-transport", - "tier": 5, - "cost": [ - { - "item": "Desc_ModularFrameHeavy_C", - "amount": 25 - }, - { - "item": "Desc_Motor_C", - "amount": 100 - }, - { - "item": "Desc_Plastic_C", - "amount": 200 - }, - { - "item": "Desc_Wire_C", - "amount": 3000 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Packager_C", - "Recipe_FluidCanister_C", - "Recipe_PackagedWater_C", - "Recipe_PackagedCrudeOil_C", - "Recipe_Fuel_C", - "Recipe_PackagedOilResidue_C", - "Recipe_PackagedBiofuel_C", - "Recipe_LiquidBiofuel_C", - "Recipe_IndustrialTank_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_Milestone", - "time": 480, - "alternate": false, - "mam": false - }, - "Schematic_6-1_C": { - "className": "Schematic_6-1_C", - "name": "Expanded Power Infrastructure", - "slug": "expanded-power-infrastructure", - "tier": 6, - "cost": [ - { - "item": "Desc_ModularFrameHeavy_C", - "amount": 50 - }, - { - "item": "Desc_Computer_C", - "amount": 100 - }, - { - "item": "Desc_SteelPlateReinforced_C", - "amount": 200 - }, - { - "item": "Desc_Rubber_C", - "amount": 400 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_GeneratorFuel_C", - "Recipe_ConveyorBeltMk4_C", - "Recipe_ConveyorLiftMk4_C" - ], - "scannerResources": [ - "Desc_OreGold_C" - ], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_Milestone", - "time": 900, - "alternate": false, - "mam": false - }, - "Schematic_6-2_C": { - "className": "Schematic_6-2_C", - "name": "Jetpack", - "slug": "jetpack-1", - "tier": 6, - "cost": [ - { - "item": "Desc_Motor_C", - "amount": 50 - }, - { - "item": "Desc_Plastic_C", - "amount": 100 - }, - { - "item": "Desc_Rubber_C", - "amount": 100 - }, - { - "item": "Desc_Fuel_C", - "amount": 50 - } - ], - "unlock": { - "inventorySlots": 3, - "recipes": [ - "Recipe_JetPack_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_Milestone", - "time": 300, - "alternate": false, - "mam": false - }, - "Schematic_6-3_C": { - "className": "Schematic_6-3_C", - "name": "Monorail Train Technology", - "slug": "monorail-train-technology", - "tier": 6, - "cost": [ - { - "item": "Desc_Computer_C", - "amount": 50 - }, - { - "item": "Desc_ModularFrameHeavy_C", - "amount": 100 - }, - { - "item": "Desc_SteelPlate_C", - "amount": 500 - }, - { - "item": "Desc_SteelPipe_C", - "amount": 600 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Locomotive_C", - "Recipe_FreightWagon_C", - "Recipe_RailroadTrack_C", - "Recipe_TrainStation_C", - "Recipe_TrainDockingStation_C", - "Recipe_TrainDockingStationLiquid_C", - "Recipe_TrainPlatformEmpty_C", - "Recipe_TrainPlatformEmpty_02_C", - "Recipe_RailroadBlockSignal_C", - "Recipe_RailroadPathSignal_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_Milestone", - "time": 900, - "alternate": false, - "mam": false - }, - "Schematic_6-4_C": { - "className": "Schematic_6-4_C", - "name": "Gas Mask", - "slug": "gas-mask-1", - "tier": 5, - "cost": [ - { - "item": "Desc_Rubber_C", - "amount": 200 - }, - { - "item": "Desc_Plastic_C", - "amount": 100 - }, - { - "item": "Desc_Fabric_C", - "amount": 50 - } - ], - "unlock": { - "inventorySlots": 3, - "recipes": [ - "Recipe_Gasmask_C", - "Recipe_FilterGasMask_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_Milestone", - "time": 300, - "alternate": false, - "mam": false - }, - "Schematic_6-5_C": { - "className": "Schematic_6-5_C", - "name": "Pipeline Engineering Mk.2", - "slug": "pipeline-engineering-mk-2", - "tier": 6, - "cost": [ - { - "item": "Desc_CopperSheet_C", - "amount": 1000 - }, - { - "item": "Desc_Plastic_C", - "amount": 400 - }, - { - "item": "Desc_Rubber_C", - "amount": 400 - }, - { - "item": "Desc_ModularFrameHeavy_C", - "amount": 50 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_PipelineMK2_C", - "Recipe_PipelinePumpMK2_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_Milestone", - "time": 600, - "alternate": false, - "mam": false - }, - "Schematic_7-1_C": { - "className": "Schematic_7-1_C", - "name": "Bauxite Refinement", - "slug": "bauxite-refinement", - "tier": 7, - "cost": [ - { - "item": "Desc_Computer_C", - "amount": 50 - }, - { - "item": "Desc_ModularFrameHeavy_C", - "amount": 100 - }, - { - "item": "Desc_Motor_C", - "amount": 200 - }, - { - "item": "Desc_Rubber_C", - "amount": 500 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_AluminaSolution_C", - "Recipe_PackagedAlumina_C", - "Recipe_AluminumScrap_C", - "Recipe_IngotAluminum_C", - "Recipe_AluminumSheet_C", - "Recipe_AluminumCasing_C", - "Recipe_RadioControlUnit_C", - "Recipe_Blender_C" - ], - "scannerResources": [ - "Desc_OreBauxite_C", - "Desc_RawQuartz_C" - ], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_Milestone", - "time": 600, - "alternate": false, - "mam": false - }, - "Schematic_7-2_C": { - "className": "Schematic_7-2_C", - "name": "Logistics Mk.5", - "slug": "logistics-mk-5", - "tier": 7, - "cost": [ - { - "item": "Desc_AluminumPlate_C", - "amount": 100 - }, - { - "item": "Desc_SteelPlateReinforced_C", - "amount": 200 - }, - { - "item": "Desc_IronPlateReinforced_C", - "amount": 300 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_ConveyorBeltMk5_C", - "Recipe_ConveyorLiftMk5_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_Milestone", - "time": 60, - "alternate": false, - "mam": false - }, - "Schematic_7-3_C": { - "className": "Schematic_7-3_C", - "name": "Hazmat Suit", - "slug": "hazmat-suit-1", - "tier": 7, - "cost": [ - { - "item": "Desc_AluminumCasing_C", - "amount": 50 - }, - { - "item": "Desc_HighSpeedWire_C", - "amount": 500 - }, - { - "item": "Desc_Filter_C", - "amount": 50 - } - ], - "unlock": { - "inventorySlots": 3, - "recipes": [ - "Recipe_HazmatSuit_C", - "Recipe_FilterHazmat_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_Milestone", - "time": 300, - "alternate": false, - "mam": false - }, - "Schematic_7-4_C": { - "className": "Schematic_7-4_C", - "name": "Aeronautical Engineering", - "slug": "aeronautical-engineering", - "tier": 7, - "cost": [ - { - "item": "Desc_ModularFrameLightweight_C", - "amount": 50 - }, - { - "item": "Desc_AluminumPlate_C", - "amount": 100 - }, - { - "item": "Desc_AluminumCasing_C", - "amount": 200 - }, - { - "item": "Desc_Motor_C", - "amount": 300 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_SulfuricAcid_C", - "Recipe_PackagedSulfuricAcid_C", - "Recipe_Battery_C", - "Recipe_ComputerSuper_C", - "Recipe_DroneTransport_C", - "Recipe_DroneStation_C", - "Recipe_SpaceElevatorPart_7_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_Milestone", - "time": 900, - "alternate": false, - "mam": false - }, - "Schematic_8-1_C": { - "className": "Schematic_8-1_C", - "name": "Nuclear Power", - "slug": "nuclear-power", - "tier": 8, - "cost": [ - { - "item": "Desc_ComputerSuper_C", - "amount": 50 - }, - { - "item": "Desc_ModularFrameHeavy_C", - "amount": 200 - }, - { - "item": "Desc_Cable_C", - "amount": 1000 - }, - { - "item": "Desc_Cement_C", - "amount": 2000 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_UraniumCell_C", - "Recipe_ElectromagneticControlRod_C", - "Recipe_NuclearFuelRod_C", - "Recipe_GeneratorNuclear_C", - "Recipe_SpaceElevatorPart_6_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_Milestone", - "time": 900, - "alternate": false, - "mam": false - }, - "Schematic_8-2_C": { - "className": "Schematic_8-2_C", - "name": "Advanced Aluminum Production", - "slug": "advanced-aluminum-production", - "tier": 8, - "cost": [ - { - "item": "Desc_ModularFrameLightweight_C", - "amount": 50 - }, - { - "item": "Desc_AluminumCasing_C", - "amount": 100 - }, - { - "item": "Desc_AluminumPlate_C", - "amount": 200 - }, - { - "item": "Desc_Wire_C", - "amount": 3000 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_FrackingSmasher_C", - "Recipe_FrackingExtractor_C", - "Recipe_GasTank_C", - "Recipe_PackagedNitrogen_C", - "Recipe_HeatSink_C", - "Recipe_CoolingSystem_C", - "Recipe_FusedModularFrame_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_Milestone", - "time": 900, - "alternate": false, - "mam": false - }, - "Schematic_8-3_C": { - "className": "Schematic_8-3_C", - "name": "Hover Pack", - "slug": "hover-pack-1", - "tier": 7, - "cost": [ - { - "item": "Desc_Motor_C", - "amount": 200 - }, - { - "item": "Desc_ModularFrameHeavy_C", - "amount": 100 - }, - { - "item": "Desc_Computer_C", - "amount": 100 - }, - { - "item": "Desc_AluminumPlate_C", - "amount": 200 - } - ], - "unlock": { - "inventorySlots": 3, - "recipes": [ - "Recipe_Hoverpack_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_Milestone", - "time": 300, - "alternate": false, - "mam": false - }, - "Schematic_8-4_C": { - "className": "Schematic_8-4_C", - "name": "Leading-edge Production", - "slug": "leading-edge-production", - "tier": 8, - "cost": [ - { - "item": "Desc_ModularFrameFused_C", - "amount": 50 - }, - { - "item": "Desc_ComputerSuper_C", - "amount": 100 - }, - { - "item": "Desc_SteelPipe_C", - "amount": 1000 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_MotorTurbo_C", - "Recipe_MinerMk3_C", - "Recipe_SpaceElevatorPart_8_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_Milestone", - "time": 300, - "alternate": false, - "mam": false - }, - "Schematic_8-5_C": { - "className": "Schematic_8-5_C", - "name": "Particle Enrichment", - "slug": "particle-enrichment", - "tier": 8, - "cost": [ - { - "item": "Desc_ElectromagneticControlRod_C", - "amount": 400 - }, - { - "item": "Desc_CoolingSystem_C", - "amount": 400 - }, - { - "item": "Desc_ModularFrameFused_C", - "amount": 200 - }, - { - "item": "Desc_MotorLightweight_C", - "amount": 100 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_NitricAcid_C", - "Recipe_PackagedNitricAcid_C", - "Recipe_NonFissileUranium_C", - "Recipe_Plutonium_C", - "Recipe_PlutoniumCell_C", - "Recipe_PlutoniumFuelRod_C", - "Recipe_HadronCollider_C", - "Recipe_CopperDust_C", - "Recipe_PressureConversionCube_C", - "Recipe_SpaceElevatorPart_9_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_Milestone", - "time": 1200, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_AdheredIronPlate_C": { - "className": "Schematic_Alternate_AdheredIronPlate_C", - "name": "Alternate: Adhered Iron Plate", - "slug": "alternate-adhered-iron-plate", - "tier": 0, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_AdheredIronPlate_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_5-1_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_AlcladCasing_C": { - "className": "Schematic_Alternate_AlcladCasing_C", - "name": "Alternate: Alclad Casing", - "slug": "alternate-alclad-casing", - "tier": 0, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_AlcladCasing_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_7-1_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_AutomatedMiner_C": { - "className": "Schematic_Alternate_AutomatedMiner_C", - "name": "Alternate: Automated Miner", - "slug": "alternate-automated-miner", - "tier": 0, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_AutomatedMiner_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_5-2_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_Beacon1_C": { - "className": "Schematic_Alternate_Beacon1_C", - "name": "Alternate: Crystal Beacon", - "slug": "alternate-crystal-beacon", - "tier": 4, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_Beacon_1_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_3-4_C", - "Research_Quartz_1_1_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_BoltedFrame_C": { - "className": "Schematic_Alternate_BoltedFrame_C", - "name": "Alternate: Bolted Frame", - "slug": "alternate-bolted-frame", - "tier": 0, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_BoltedFrame_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_2-1_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_Cable1_C": { - "className": "Schematic_Alternate_Cable1_C", - "name": "Alternate: Insulated Cable", - "slug": "alternate-insulated-cable", - "tier": 5, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_Cable_1_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_5-1_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_Cable2_C": { - "className": "Schematic_Alternate_Cable2_C", - "name": "Alternate: Quickwire Cable", - "slug": "alternate-quickwire-cable", - "tier": 5, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_Cable_2_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_5-1_C", - "Research_Caterium_1_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_CircuitBoard1_C": { - "className": "Schematic_Alternate_CircuitBoard1_C", - "name": "Alternate: Silicon Circuit Board", - "slug": "alternate-silicon-circuit-board", - "tier": 5, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_CircuitBoard_1_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_5-1_C", - "Research_Quartz_0_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_CircuitBoard2_C": { - "className": "Schematic_Alternate_CircuitBoard2_C", - "name": "Alternate: Caterium Circuit Board", - "slug": "alternate-caterium-circuit-board", - "tier": 5, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_CircuitBoard_2_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_5-1_C", - "Research_Caterium_1_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_ClassicBattery_C": { - "className": "Schematic_Alternate_ClassicBattery_C", - "name": "Alternate: Classic Battery", - "slug": "alternate-classic-battery", - "tier": 0, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_ClassicBattery_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_7-4_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_Coal1_C": { - "className": "Schematic_Alternate_Coal1_C", - "name": "Alternate: Charcoal", - "slug": "alternate-charcoal", - "tier": 3, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_Coal_1_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_3-1_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_Coal2_C": { - "className": "Schematic_Alternate_Coal2_C", - "name": "Alternate: Biocoal", - "slug": "alternate-biocoal", - "tier": 3, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_Coal_2_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_3-1_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_CoatedCable_C": { - "className": "Schematic_Alternate_CoatedCable_C", - "name": "Alternate: Coated Cable", - "slug": "alternate-coated-cable", - "tier": 0, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_CoatedCable_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_5-1_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_CoatedIronCanister_C": { - "className": "Schematic_Alternate_CoatedIronCanister_C", - "name": "Alternate: Coated Iron Canister", - "slug": "alternate-coated-iron-canister", - "tier": 0, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_CoatedIronCanister_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_5-4_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_CoatedIronPlate_C": { - "className": "Schematic_Alternate_CoatedIronPlate_C", - "name": "Alternate: Coated Iron Plate", - "slug": "alternate-coated-iron-plate", - "tier": 0, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_CoatedIronPlate_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_5-1_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_CokeSteelIngot_C": { - "className": "Schematic_Alternate_CokeSteelIngot_C", - "name": "Alternate: Coke Steel Ingot", - "slug": "alternate-coke-steel-ingot", - "tier": 0, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_CokeSteelIngot_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_5-1_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_Computer1_C": { - "className": "Schematic_Alternate_Computer1_C", - "name": "Alternate: Caterium Computer", - "slug": "alternate-caterium-computer", - "tier": 5, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_Computer_1_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_5-2_C", - "Research_Caterium_1_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_Computer2_C": { - "className": "Schematic_Alternate_Computer2_C", - "name": "Alternate: Crystal Computer", - "slug": "alternate-crystal-computer", - "tier": 5, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_Computer_2_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_5-2_C", - "Research_Quartz_1_1_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_Concrete_C": { - "className": "Schematic_Alternate_Concrete_C", - "name": "Alternate: Fine Concrete", - "slug": "alternate-fine-concrete", - "tier": 4, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_Concrete_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Research_Quartz_0_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_CoolingDevice_C": { - "className": "Schematic_Alternate_CoolingDevice_C", - "name": "Alternate: Cooling Device", - "slug": "alternate-cooling-device", - "tier": 0, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_CoolingDevice_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_8-2_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_CopperAlloyIngot_C": { - "className": "Schematic_Alternate_CopperAlloyIngot_C", - "name": "Alternate: Copper Alloy Ingot", - "slug": "alternate-copper-alloy-ingot", - "tier": 0, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_CopperAlloyIngot_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_CopperRotor_C": { - "className": "Schematic_Alternate_CopperRotor_C", - "name": "Alternate: Copper Rotor", - "slug": "alternate-copper-rotor", - "tier": 0, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_CopperRotor_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_2-1_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_CrystalOscillator_C": { - "className": "Schematic_Alternate_CrystalOscillator_C", - "name": "Alternate: Insulated Crystal Oscillator", - "slug": "alternate-insulated-crystal-oscillator", - "tier": 5, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_CrystalOscillator_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Research_Quartz_2_C", - "Research_Caterium_3_C", - "Schematic_5-1_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_DilutedFuel_C": { - "className": "Schematic_Alternate_DilutedFuel_C", - "name": "Alternate: Diluted Fuel", - "slug": "alternate-diluted-fuel", - "tier": 0, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_DilutedFuel_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_7-1_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_DilutedPackagedFuel_C": { - "className": "Schematic_Alternate_DilutedPackagedFuel_C", - "name": "Alternate: Diluted Packaged Fuel", - "slug": "alternate-diluted-packaged-fuel", - "tier": 0, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_DilutedPackagedFuel_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_5-1_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_ElectricMotor_C": { - "className": "Schematic_Alternate_ElectricMotor_C", - "name": "Alternate: Electric Motor", - "slug": "alternate-electric-motor", - "tier": 0, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_ElectricMotor_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_7-4_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_ElectroAluminumScrap_C": { - "className": "Schematic_Alternate_ElectroAluminumScrap_C", - "name": "Alternate: Electrode - Aluminum Scrap", - "slug": "alternate-electrode---aluminum-scrap", - "tier": 0, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_ElectroAluminumScrap_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_7-1_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_ElectrodeCircuitBoard_C": { - "className": "Schematic_Alternate_ElectrodeCircuitBoard_C", - "name": "Alternate: Electrode Circuit Board", - "slug": "alternate-electrode-circuit-board", - "tier": 0, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_ElectrodeCircuitBoard_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_5-1_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_ElectromagneticControlRod1_C": { - "className": "Schematic_Alternate_ElectromagneticControlRod1_C", - "name": "Alternate: Electromagnetic Connection Rod", - "slug": "alternate-electromagnetic-connection-rod", - "tier": 7, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_ElectromagneticControlRod_1_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_8-1_C", - "Research_Caterium_4_1_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_EnrichedCoal_C": { - "className": "Schematic_Alternate_EnrichedCoal_C", - "name": "Alternate: Compacted Coal", - "slug": "alternate-compacted-coal", - "tier": 4, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_EnrichedCoal_C", - "Recipe_Alternate_Coal_1_C", - "Recipe_Alternate_Coal_2_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_3-1_C", - "Research_Sulfur_0_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_FertileUranium_C": { - "className": "Schematic_Alternate_FertileUranium_C", - "name": "Alternate: Fertile Uranium", - "slug": "alternate-fertile-uranium", - "tier": 0, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_FertileUranium_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_8-5_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_FlexibleFramework_C": { - "className": "Schematic_Alternate_FlexibleFramework_C", - "name": "Alternate: Flexible Framework ", - "slug": "alternate-flexible-framework-", - "tier": 0, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_FlexibleFramework_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_5-1_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_FusedWire_C": { - "className": "Schematic_Alternate_FusedWire_C", - "name": "Alternate: Fused Wire", - "slug": "alternate-fused-wire", - "tier": 0, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_FusedWire_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Research_Caterium_0_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_Gunpowder1_C": { - "className": "Schematic_Alternate_Gunpowder1_C", - "name": "Alternate: Fine Black Powder", - "slug": "alternate-fine-black-powder", - "tier": 4, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_Gunpowder_1_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_Alternate_EnrichedCoal_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_HeatFusedFrame_C": { - "className": "Schematic_Alternate_HeatFusedFrame_C", - "name": "Alternate: Heat-Fused Frame", - "slug": "alternate-heat-fused-frame", - "tier": 0, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_HeatFusedFrame_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_8-5_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_HeatSink1_C": { - "className": "Schematic_Alternate_HeatSink1_C", - "name": "Alternate: Heat Exchanger", - "slug": "alternate-heat-exchanger", - "tier": 7, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_HeatSink_1_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_8-2_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_HeavyFlexibleFrame_C": { - "className": "Schematic_Alternate_HeavyFlexibleFrame_C", - "name": "Alternate: Heavy Flexible Frame", - "slug": "alternate-heavy-flexible-frame", - "tier": 0, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_HeavyFlexibleFrame_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_5-2_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_HeavyModularFrame_C": { - "className": "Schematic_Alternate_HeavyModularFrame_C", - "name": "Alternate: Heavy Encased Frame", - "slug": "alternate-heavy-encased-frame", - "tier": 4, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_ModularFrameHeavy_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_5-2_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_HeavyOilResidue_C": { - "className": "Schematic_Alternate_HeavyOilResidue_C", - "name": "Alternate: Heavy Oil Residue", - "slug": "alternate-heavy-oil-residue", - "tier": 0, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_HeavyOilResidue_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_5-1_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_HighSpeedConnector_C": { - "className": "Schematic_Alternate_HighSpeedConnector_C", - "name": "Alternate: Silicon High-Speed Connector", - "slug": "alternate-silicon-high-speed-connector", - "tier": 5, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_HighSpeedConnector_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Research_Caterium_5_C", - "Schematic_5-1_C", - "Research_Quartz_0_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_HighSpeedWiring_C": { - "className": "Schematic_Alternate_HighSpeedWiring_C", - "name": "Alternate: Automated Speed Wiring", - "slug": "alternate-automated-speed-wiring", - "tier": 0, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_HighSpeedWiring_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_4-1_C", - "Research_Caterium_4_1_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_IngotIron_C": { - "className": "Schematic_Alternate_IngotIron_C", - "name": "Alternate: Iron Alloy Ingot", - "slug": "alternate-iron-alloy-ingot", - "tier": 1, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_IngotIron_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_IngotSteel1_C": { - "className": "Schematic_Alternate_IngotSteel1_C", - "name": "Alternate: Solid Steel Ingot", - "slug": "alternate-solid-steel-ingot", - "tier": 4, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_IngotSteel_1_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_3-4_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_IngotSteel2_C": { - "className": "Schematic_Alternate_IngotSteel2_C", - "name": "Alternate: Compacted Steel Ingot", - "slug": "alternate-compacted-steel-ingot", - "tier": 4, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_IngotSteel_2_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_Alternate_EnrichedCoal_C", - "Schematic_3-4_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_InstantPlutoniumCell_C": { - "className": "Schematic_Alternate_InstantPlutoniumCell_C", - "name": "Alternate: Instant Plutonium Cell", - "slug": "alternate-instant-plutonium-cell", - "tier": 0, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_InstantPlutoniumCell_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_8-5_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_InstantScrap_C": { - "className": "Schematic_Alternate_InstantScrap_C", - "name": "Alternate: Instant Scrap", - "slug": "alternate-instant-scrap", - "tier": 0, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_InstantScrap_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_7-1_C", - "Schematic_7-4_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_InventorySlots1_C": { - "className": "Schematic_Alternate_InventorySlots1_C", - "name": "Inflated Pocket Dimension", - "slug": "inflated-pocket-dimension", - "tier": 2, - "cost": [], - "unlock": { - "inventorySlots": 6, - "recipes": [], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_InventorySlots2_C": { - "className": "Schematic_Alternate_InventorySlots2_C", - "name": "Inflated Pocket Dimension", - "slug": "inflated-pocket-dimension-1", - "tier": 5, - "cost": [], - "unlock": { - "inventorySlots": 6, - "recipes": [], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_5-2_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_ModularFrame_C": { - "className": "Schematic_Alternate_ModularFrame_C", - "name": "Alternate: Steeled Frame", - "slug": "alternate-steeled-frame", - "tier": 4, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_ModularFrame_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_3-4_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_Motor1_C": { - "className": "Schematic_Alternate_Motor1_C", - "name": "Alternate: Rigour Motor", - "slug": "alternate-rigour-motor", - "tier": 4, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_Motor_1_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_4-1_C", - "Research_Quartz_1_1_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_Nobelisk1_C": { - "className": "Schematic_Alternate_Nobelisk1_C", - "name": "Alternate: Seismic Nobelisk", - "slug": "alternate-seismic-nobelisk", - "tier": 4, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_Nobelisk_1_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Research_Sulfur_3_2_1_C", - "Research_Quartz_1_1_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_NuclearFuelRod1_C": { - "className": "Schematic_Alternate_NuclearFuelRod1_C", - "name": "Alternate: Uranium Fuel Unit", - "slug": "alternate-uranium-fuel-unit", - "tier": 7, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_NuclearFuelRod_1_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_8-1_C", - "Research_Quartz_1_1_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_OCSupercomputer_C": { - "className": "Schematic_Alternate_OCSupercomputer_C", - "name": "Alternate: OC Supercomputer", - "slug": "alternate-oc-supercomputer", - "tier": 0, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_OCSupercomputer_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_7-4_C", - "Schematic_8-2_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_Plastic1_C": { - "className": "Schematic_Alternate_Plastic1_C", - "name": "Alternate: Recycled Plastic", - "slug": "alternate-recycled-plastic", - "tier": 5, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_Plastic_1_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_5-1_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_PlasticSmartPlating_C": { - "className": "Schematic_Alternate_PlasticSmartPlating_C", - "name": "Alternate: Plastic Smart Plating", - "slug": "alternate-plastic-smart-plating", - "tier": 0, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_PlasticSmartPlating_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_5-1_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_PlutoniumFuelUnit_C": { - "className": "Schematic_Alternate_PlutoniumFuelUnit_C", - "name": "Alternate: Plutonium Fuel Unit", - "slug": "alternate-plutonium-fuel-unit", - "tier": 0, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_PlutoniumFuelUnit_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_8-5_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_PolyesterFabric_C": { - "className": "Schematic_Alternate_PolyesterFabric_C", - "name": "Alternate: Polyester Fabric", - "slug": "alternate-polyester-fabric", - "tier": 0, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_PolyesterFabric_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Research_Mycelia_2_C", - "Schematic_5-1_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_PolymerResin_C": { - "className": "Schematic_Alternate_PolymerResin_C", - "name": "Alternate: Polymer Resin", - "slug": "alternate-polymer-resin", - "tier": 0, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_PolymerResin_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_5-1_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_PureAluminumIngot_C": { - "className": "Schematic_Alternate_PureAluminumIngot_C", - "name": "Alternate: Pure Aluminum Ingot", - "slug": "alternate-pure-aluminum-ingot", - "tier": 0, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_PureAluminumIngot_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_7-1_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_PureCateriumIngot_C": { - "className": "Schematic_Alternate_PureCateriumIngot_C", - "name": "Alternate: Pure Caterium Ingot", - "slug": "alternate-pure-caterium-ingot", - "tier": 0, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_PureCateriumIngot_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Research_Caterium_0_C", - "Schematic_3-1_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_PureCopperIngot_C": { - "className": "Schematic_Alternate_PureCopperIngot_C", - "name": "Alternate: Pure Copper Ingot", - "slug": "alternate-pure-copper-ingot", - "tier": 0, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_PureCopperIngot_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_3-1_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_PureIronIngot_C": { - "className": "Schematic_Alternate_PureIronIngot_C", - "name": "Alternate: Pure Iron Ingot", - "slug": "alternate-pure-iron-ingot", - "tier": 0, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_PureIronIngot_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_3-1_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_PureQuartzCrystal_C": { - "className": "Schematic_Alternate_PureQuartzCrystal_C", - "name": "Alternate: Pure Quartz Crystal ", - "slug": "alternate-pure-quartz-crystal-", - "tier": 0, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_PureQuartzCrystal_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Research_Quartz_1_1_C", - "Schematic_3-1_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_Quickwire_C": { - "className": "Schematic_Alternate_Quickwire_C", - "name": "Alternate: Fused Quickwire", - "slug": "alternate-fused-quickwire", - "tier": 3, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_Quickwire_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Research_Caterium_1_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_RadioControlSystem_C": { - "className": "Schematic_Alternate_RadioControlSystem_C", - "name": "Alternate: Radio Control System", - "slug": "alternate-radio-control-system", - "tier": 0, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_RadioControlSystem_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_7-1_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_RadioControlUnit1_C": { - "className": "Schematic_Alternate_RadioControlUnit1_C", - "name": "Alternate: Radio Connection Unit", - "slug": "alternate-radio-connection-unit", - "tier": 7, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_RadioControlUnit_1_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_8-2_C", - "Research_Caterium_4_1_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_RecycledRubber_C": { - "className": "Schematic_Alternate_RecycledRubber_C", - "name": "Alternate: Recycled Rubber", - "slug": "alternate-recycled-rubber", - "tier": 0, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_RecycledRubber_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_5-1_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_ReinforcedIronPlate1_C": { - "className": "Schematic_Alternate_ReinforcedIronPlate1_C", - "name": "Alternate: Bolted Iron Plate", - "slug": "alternate-bolted-iron-plate", - "tier": 2, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_ReinforcedIronPlate_1_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_ReinforcedIronPlate2_C": { - "className": "Schematic_Alternate_ReinforcedIronPlate2_C", - "name": "Alternate: Stitched Iron Plate", - "slug": "alternate-stitched-iron-plate", - "tier": 2, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_ReinforcedIronPlate_2_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_ReinforcedSteelPlate_C": { - "className": "Schematic_Alternate_ReinforcedSteelPlate_C", - "name": "Alternate: Encased Industrial Pipe", - "slug": "alternate-encased-industrial-pipe", - "tier": 4, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_EncasedIndustrialBeam_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_4-1_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_Rotor_C": { - "className": "Schematic_Alternate_Rotor_C", - "name": "Alternate: Steel Rotor", - "slug": "alternate-steel-rotor", - "tier": 4, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_Rotor_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_3-4_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_RubberConcrete_C": { - "className": "Schematic_Alternate_RubberConcrete_C", - "name": "Alternate: Rubber Concrete", - "slug": "alternate-rubber-concrete", - "tier": 0, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_RubberConcrete_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_5-1_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_Screw2_C": { - "className": "Schematic_Alternate_Screw2_C", - "name": "Alternate: Steel Screw", - "slug": "alternate-steel-screw", - "tier": 4, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_Screw_2_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_3-4_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_Screw_C": { - "className": "Schematic_Alternate_Screw_C", - "name": "Alternate: Cast Screw", - "slug": "alternate-cast-screw", - "tier": 1, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_Screw_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_Silica_C": { - "className": "Schematic_Alternate_Silica_C", - "name": "Alternate: Cheap Silica", - "slug": "alternate-cheap-silica", - "tier": 4, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_Silica_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Research_Quartz_1_2_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_SloppyAlumina_C": { - "className": "Schematic_Alternate_SloppyAlumina_C", - "name": "Alternate: Sloppy Alumina", - "slug": "alternate-sloppy-alumina", - "tier": 0, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_SloppyAlumina_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_7-1_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_Stator_C": { - "className": "Schematic_Alternate_Stator_C", - "name": "Alternate: Quickwire Stator", - "slug": "alternate-quickwire-stator", - "tier": 4, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_Stator_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_4-1_C", - "Research_Caterium_1_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_SteamedCopperSheet_C": { - "className": "Schematic_Alternate_SteamedCopperSheet_C", - "name": "Alternate: Steamed Copper Sheet ", - "slug": "alternate-steamed-copper-sheet-", - "tier": 0, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_SteamedCopperSheet_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_3-1_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_SteelCanister_C": { - "className": "Schematic_Alternate_SteelCanister_C", - "name": "Alternate: Steel Canister", - "slug": "alternate-steel-canister", - "tier": 0, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_SteelCanister_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_5-4_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_SteelCoatedPlate_C": { - "className": "Schematic_Alternate_SteelCoatedPlate_C", - "name": "Alternate: Steel Coated Plate", - "slug": "alternate-steel-coated-plate", - "tier": 0, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_SteelCoatedPlate_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_5-1_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_SteelRod_C": { - "className": "Schematic_Alternate_SteelRod_C", - "name": "Alternate: Steel Rod", - "slug": "alternate-steel-rod", - "tier": 0, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_SteelRod_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_3-4_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_SuperStateComputer_C": { - "className": "Schematic_Alternate_SuperStateComputer_C", - "name": "Alternate: Super-State Computer", - "slug": "alternate-super-state-computer", - "tier": 0, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_SuperStateComputer_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_8-1_C", - "Schematic_7-4_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_TurboBlendFuel_C": { - "className": "Schematic_Alternate_TurboBlendFuel_C", - "name": "Alternate: Turbo Blend Fuel", - "slug": "alternate-turbo-blend-fuel", - "tier": 0, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_TurboBlendFuel_C", - "Recipe_PackagedTurboFuel_C", - "Recipe_UnpackageTurboFuel_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_7-1_C", - "Research_Sulfur_0_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_TurboFuel_C": { - "className": "Schematic_Alternate_TurboFuel_C", - "name": "Alternate: Turbofuel", - "slug": "alternate-turbofuel", - "tier": 6, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_Turbofuel_C", - "Recipe_PackagedTurboFuel_C", - "Recipe_UnpackageTurboFuel_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_5-1_C", - "Schematic_Alternate_EnrichedCoal_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_TurboHeavyFuel_C": { - "className": "Schematic_Alternate_TurboHeavyFuel_C", - "name": "Alternate: Turbo Heavy Fuel", - "slug": "alternate-turbo-heavy-fuel", - "tier": 0, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_TurboHeavyFuel_C", - "Recipe_PackagedTurboFuel_C", - "Recipe_UnpackageTurboFuel_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_5-1_C", - "Schematic_Alternate_EnrichedCoal_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_TurboMotor1_C": { - "className": "Schematic_Alternate_TurboMotor1_C", - "name": "Alternate: Turbo Electric Motor", - "slug": "alternate-turbo-electric-motor", - "tier": 7, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_TurboMotor_1_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_8-4_C", - "Schematic_8-1_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_TurboPressureMotor_C": { - "className": "Schematic_Alternate_TurboPressureMotor_C", - "name": "Alternate: Turbo Pressure Motor", - "slug": "alternate-turbo-pressure-motor", - "tier": 0, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_TurboPressureMotor_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_8-5_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_UraniumCell1_C": { - "className": "Schematic_Alternate_UraniumCell1_C", - "name": "Alternate: Infused Uranium Cell", - "slug": "alternate-infused-uranium-cell", - "tier": 7, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_UraniumCell_1_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_8-1_C", - "Research_Caterium_1_C", - "Research_Quartz_0_C", - "Research_Sulfur_0_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_WetConcrete_C": { - "className": "Schematic_Alternate_WetConcrete_C", - "name": "Alternate: Wet Concrete", - "slug": "alternate-wet-concrete", - "tier": 0, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_WetConcrete_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_3-1_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_Wire1_C": { - "className": "Schematic_Alternate_Wire1_C", - "name": "Alternate: Iron Wire", - "slug": "alternate-iron-wire", - "tier": 1, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_Wire_1_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Alternate_Wire2_C": { - "className": "Schematic_Alternate_Wire2_C", - "name": "Alternate: Caterium Wire", - "slug": "alternate-caterium-wire", - "tier": 3, - "cost": [], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_Alternate_Wire_2_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Research_Caterium_0_C" - ], - "type": "EST_Alternate", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Tutorial1_5_C": { - "className": "Schematic_Tutorial1_5_C", - "name": "HUB Upgrade 2", - "slug": "hub-upgrade-2", - "tier": 0, - "cost": [ - { - "item": "Desc_IronRod_C", - "amount": 20 - }, - { - "item": "Desc_IronPlate_C", - "amount": 10 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_SmelterBasicMk1_C", - "Recipe_PowerLine_C", - "Recipe_IngotCopper_C", - "Recipe_Wire_C", - "Recipe_Cable_C" - ], - "scannerResources": [ - "Desc_OreCopper_C" - ], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_Tutorial1_C" - ], - "type": "EST_Tutorial", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Tutorial1_C": { - "className": "Schematic_Tutorial1_C", - "name": "HUB Upgrade 1", - "slug": "hub-upgrade-1", - "tier": 0, - "cost": [ - { - "item": "Desc_IronRod_C", - "amount": 10 - } - ], - "unlock": { - "inventorySlots": 3, - "recipes": [ - "Recipe_Workshop_C", - "Recipe_PortableMiner_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [], - "type": "EST_Tutorial", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Tutorial2_C": { - "className": "Schematic_Tutorial2_C", - "name": "HUB Upgrade 3", - "slug": "hub-upgrade-3", - "tier": 0, - "cost": [ - { - "item": "Desc_IronPlate_C", - "amount": 20 - }, - { - "item": "Desc_IronRod_C", - "amount": 20 - }, - { - "item": "Desc_Wire_C", - "amount": 20 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_ConstructorMk1_C", - "Recipe_PowerPoleMk1_C", - "Recipe_Concrete_C", - "Recipe_Screw_C", - "Recipe_IronPlateReinforced_C" - ], - "scannerResources": [ - "Desc_Stone_C" - ], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_Tutorial1_5_C" - ], - "type": "EST_Tutorial", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Tutorial3_C": { - "className": "Schematic_Tutorial3_C", - "name": "HUB Upgrade 4", - "slug": "hub-upgrade-4", - "tier": 0, - "cost": [ - { - "item": "Desc_IronPlate_C", - "amount": 75 - }, - { - "item": "Desc_Cable_C", - "amount": 20 - }, - { - "item": "Desc_Cement_C", - "amount": 10 - } - ], - "unlock": { - "inventorySlots": 3, - "recipes": [ - "Recipe_ConveyorPole_C", - "Recipe_ConveyorBeltMk1_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_Tutorial2_C" - ], - "type": "EST_Tutorial", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Tutorial4_C": { - "className": "Schematic_Tutorial4_C", - "name": "HUB Upgrade 5", - "slug": "hub-upgrade-5", - "tier": 0, - "cost": [ - { - "item": "Desc_IronRod_C", - "amount": 75 - }, - { - "item": "Desc_Cable_C", - "amount": 50 - }, - { - "item": "Desc_Cement_C", - "amount": 20 - } - ], - "unlock": { - "inventorySlots": 3, - "recipes": [ - "Recipe_MinerMk1_C", - "Recipe_StorageContainerMk1_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_Tutorial3_C" - ], - "type": "EST_Tutorial", - "time": 0, - "alternate": false, - "mam": false - }, - "Schematic_Tutorial5_C": { - "className": "Schematic_Tutorial5_C", - "name": "HUB Upgrade 6", - "slug": "hub-upgrade-6", - "tier": 0, - "cost": [ - { - "item": "Desc_IronRod_C", - "amount": 100 - }, - { - "item": "Desc_IronPlate_C", - "amount": 100 - }, - { - "item": "Desc_Wire_C", - "amount": 100 - }, - { - "item": "Desc_Cement_C", - "amount": 50 - } - ], - "unlock": { - "inventorySlots": 0, - "recipes": [ - "Recipe_SpaceElevator_C", - "Recipe_GeneratorBiomass_C", - "Recipe_Biomass_Wood_C", - "Recipe_Biomass_Leaves_C" - ], - "scannerResources": [], - "giveItems": [] - }, - "requiredSchematics": [ - "Schematic_Tutorial4_C" - ], - "type": "EST_Tutorial", - "time": 0, - "alternate": false, - "mam": false - } - }, - "generators": { - "Build_GeneratorBiomass_C": { - "className": "Build_GeneratorBiomass_C", - "fuel": [ - "Desc_Biofuel_C", - "Desc_PackagedBiofuel_C", - "Desc_FlowerPetals_C", - "Desc_GenericBiomass_C", - "Desc_Leaves_C", - "Desc_Wood_C", - "Desc_LiquidBiofuel_C", - "Desc_PackagedAlumina_C", - "Desc_Fabric_C", - "Desc_Mycelia_C", - "Desc_PackagedSulfuricAcid_C", - "Desc_PackagedNitrogenGas_C", - "Desc_PackagedNitricAcid_C", - "Desc_HogParts_C", - "Desc_SpitterParts_C" - ], - "powerProduction": 30, - "powerProductionExponent": 1.3, - "waterToPowerRatio": 0 - }, - "Build_GeneratorCoal_C": { - "className": "Build_GeneratorCoal_C", - "fuel": [ - "Desc_Coal_C", - "Desc_CompactedCoal_C", - "Desc_PetroleumCoke_C" - ], - "powerProduction": 75, - "powerProductionExponent": 1.3, - "waterToPowerRatio": 10 - }, - "Build_GeneratorFuel_C": { - "className": "Build_GeneratorFuel_C", - "fuel": [ - "Desc_LiquidFuel_C", - "Desc_LiquidTurboFuel_C", - "Desc_LiquidBiofuel_C" - ], - "powerProduction": 150, - "powerProductionExponent": 1.3, - "waterToPowerRatio": 0 - }, - "Build_GeneratorGeoThermal_C": { - "className": "Build_GeneratorGeoThermal_C", - "fuel": [], - "powerProduction": 0, - "powerProductionExponent": 1.3, - "waterToPowerRatio": 0 - }, - "Build_GeneratorNuclear_C": { - "className": "Build_GeneratorNuclear_C", - "fuel": [ - "Desc_NuclearFuelRod_C", - "Desc_PlutoniumFuelRod_C" - ], - "powerProduction": 2500, - "powerProductionExponent": 1.321928, - "waterToPowerRatio": 2 - } - }, - "resources": { - "Desc_Coal_C": { - "item": "Desc_Coal_C", - "pingColor": { - "r": 12, - "g": 12, - "b": 12, - "a": 1 - }, - "speed": 1 - }, - "Desc_LiquidOil_C": { - "item": "Desc_LiquidOil_C", - "pingColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 1 - }, - "speed": 1 - }, - "Desc_NitrogenGas_C": { - "item": "Desc_NitrogenGas_C", - "pingColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 1 - }, - "speed": 1 - }, - "Desc_OreBauxite_C": { - "item": "Desc_OreBauxite_C", - "pingColor": { - "r": 255, - "g": 0, - "b": 0, - "a": 1 - }, - "speed": 1 - }, - "Desc_OreCopper_C": { - "item": "Desc_OreCopper_C", - "pingColor": { - "r": 12, - "g": 127, - "b": 38, - "a": 1 - }, - "speed": 1 - }, - "Desc_OreGold_C": { - "item": "Desc_OreGold_C", - "pingColor": { - "r": 255, - "g": 158, - "b": 0, - "a": 1 - }, - "speed": 1 - }, - "Desc_OreIron_C": { - "item": "Desc_OreIron_C", - "pingColor": { - "r": 117, - "g": 74, - "b": 61, - "a": 1 - }, - "speed": 1 - }, - "Desc_OreUranium_C": { - "item": "Desc_OreUranium_C", - "pingColor": { - "r": 0, - "g": 255, - "b": 10, - "a": 1 - }, - "speed": 1 - }, - "Desc_RawQuartz_C": { - "item": "Desc_RawQuartz_C", - "pingColor": { - "r": 250, - "g": 255, - "b": 195, - "a": 1 - }, - "speed": 1 - }, - "Desc_Stone_C": { - "item": "Desc_Stone_C", - "pingColor": { - "r": 61, - "g": 81, - "b": 105, - "a": 1 - }, - "speed": 1 - }, - "Desc_Sulfur_C": { - "item": "Desc_Sulfur_C", - "pingColor": { - "r": 255, - "g": 243, - "b": 66, - "a": 1 - }, - "speed": 1 - }, - "Desc_Water_C": { - "item": "Desc_Water_C", - "pingColor": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 - }, - "speed": 1 - } - }, - "miners": { - "Build_MinerMk1_C": { - "className": "Build_MinerMk1_C", - "allowedResources": [ - "Desc_Coal_C", - "Desc_OreBauxite_C", - "Desc_OreCopper_C", - "Desc_OreGold_C", - "Desc_OreIron_C", - "Desc_OreUranium_C", - "Desc_RawQuartz_C", - "Desc_Stone_C", - "Desc_Sulfur_C" - ], - "itemsPerCycle": 1, - "extractCycleTime": 1, - "allowLiquids": false, - "allowSolids": true - }, - "Build_MinerMk2_C": { - "className": "Build_MinerMk2_C", - "allowedResources": [ - "Desc_Coal_C", - "Desc_OreBauxite_C", - "Desc_OreCopper_C", - "Desc_OreGold_C", - "Desc_OreIron_C", - "Desc_OreUranium_C", - "Desc_RawQuartz_C", - "Desc_Stone_C", - "Desc_Sulfur_C" - ], - "itemsPerCycle": 1, - "extractCycleTime": 0.5, - "allowLiquids": false, - "allowSolids": true - }, - "Build_MinerMk3_C": { - "className": "Build_MinerMk3_C", - "allowedResources": [ - "Desc_Coal_C", - "Desc_OreBauxite_C", - "Desc_OreCopper_C", - "Desc_OreGold_C", - "Desc_OreIron_C", - "Desc_OreUranium_C", - "Desc_RawQuartz_C", - "Desc_Stone_C", - "Desc_Sulfur_C" - ], - "itemsPerCycle": 1, - "extractCycleTime": 0.25, - "allowLiquids": false, - "allowSolids": true - }, - "Build_OilPump_C": { - "className": "Build_OilPump_C", - "allowedResources": [ - "Desc_LiquidOil_C" - ], - "itemsPerCycle": 2000, - "extractCycleTime": 1, - "allowLiquids": true, - "allowSolids": false - } - }, - "buildings": { - "Desc_AssemblerMk1_C": { - "slug": "assembler", - "name": "Assembler", - "description": "Crafts two parts into another part.\n\nCan be automated by feeding parts into it with a conveyor belt connected to the input. The produced parts can be automatically extracted by connecting a conveyor belt to the output.", - "categories": [ - "SC_Manufacturers_C" - ], - "buildMenuPriority": 2, - "className": "Desc_AssemblerMk1_C", - "metadata": { - "powerConsumption": 15, - "powerConsumptionExponent": 1.6, - "manufacturingSpeed": 1 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_Beam_C": { - "slug": "metal-beam", - "name": "Metal Beam", - "description": "Snaps to other Beams and various other structural buildings.\nBeams support multiple build modes for different use cases.", - "categories": [ - "SC_Beams_C" - ], - "buildMenuPriority": 2, - "className": "Desc_Beam_C", - "metadata": { - "maxLength": 4000 - }, - "size": { - "width": 1, - "length": 1, - "height": 0 - } - }, - "Desc_Beam_Connector_C": { - "slug": "beam-connector", - "name": "Beam Connector", - "description": "Can be connected to Beams to hide seams and generally make connections look more appealing.", - "categories": [ - "SC_Beams_C" - ], - "buildMenuPriority": 5, - "className": "Desc_Beam_Connector_C", - "metadata": {}, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_Beam_Connector_Double_C": { - "slug": "beam-connector-double", - "name": "Beam Connector Double", - "description": "Can be connected to Beams to hide seams and generally make connections look more appealing.", - "categories": [ - "SC_Beams_C" - ], - "buildMenuPriority": 5, - "className": "Desc_Beam_Connector_Double_C", - "metadata": {}, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_Beam_Painted_C": { - "slug": "painted-beam", - "name": "Painted Beam", - "description": "Snaps to other Beams and various other structural buildings.\nBeams support multiple build modes for different use cases.", - "categories": [ - "SC_Beams_C" - ], - "buildMenuPriority": 4, - "className": "Desc_Beam_Painted_C", - "metadata": { - "maxLength": 4000 - }, - "size": { - "width": 1, - "length": 1, - "height": 0 - } - }, - "Desc_Beam_Support_C": { - "slug": "beam-support", - "name": "Beam Support", - "description": "Snaps to Beams and various other structural buildings.\nUsed to aesthetically connect beams to surfaces.", - "categories": [ - "SC_Beams_C" - ], - "buildMenuPriority": 6, - "className": "Desc_Beam_Support_C", - "metadata": {}, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_Blender_C": { - "slug": "blender", - "name": "Blender", - "description": "The Blender is capable of blending fluids and combining them with solid parts in various processes.\nHead Lift: 10 meters.\n(Allows fluids to be transported 10 meters upwards).\n\nContains both Conveyor Belt and Pipe inputs and outputs.", - "categories": [ - "SC_Manufacturers_C" - ], - "buildMenuPriority": 13, - "className": "Desc_Blender_C", - "metadata": { - "powerConsumption": 75, - "powerConsumptionExponent": 1.6, - "manufacturingSpeed": 1 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_CatwalkCross_C": { - "slug": "catwalk-crossing", - "name": "Catwalk Crossing", - "description": "Snaps to foundations and other walkways.\nSpecifically made for humans to walk on.", - "categories": [ - "SC_Catwalks_C" - ], - "buildMenuPriority": 102, - "className": "Desc_CatwalkCross_C", - "metadata": {}, - "size": { - "width": 4, - "length": 4, - "height": 0 - } - }, - "Desc_CatwalkRamp_C": { - "slug": "catwalk-ramp", - "name": "Catwalk Ramp", - "description": "Snaps to foundations and other walkways.\nSpecifically made for humans to walk on.", - "categories": [ - "SC_Catwalks_C" - ], - "buildMenuPriority": 102, - "className": "Desc_CatwalkRamp_C", - "metadata": {}, - "size": { - "width": 4, - "length": 4, - "height": 0 - } - }, - "Desc_CatwalkStairs_C": { - "slug": "catwalk-stairs", - "name": "Catwalk Stairs", - "description": "Snaps to foundations and other walkways.\nSpecifically made for humans to walk on.", - "categories": [ - "SC_Catwalks_C" - ], - "buildMenuPriority": 102, - "className": "Desc_CatwalkStairs_C", - "metadata": {}, - "size": { - "width": 4, - "length": 4, - "height": 0 - } - }, - "Desc_CatwalkStraight_C": { - "slug": "catwalk-straight", - "name": "Catwalk Straight", - "description": "Snaps to foundations and other walkways.\nSpecifically made for humans to walk on.", - "categories": [ - "SC_Catwalks_C" - ], - "buildMenuPriority": 99, - "className": "Desc_CatwalkStraight_C", - "metadata": {}, - "size": { - "width": 4, - "length": 4, - "height": 0 - } - }, - "Desc_CatwalkT_C": { - "slug": "catwalk-t-crossing", - "name": "Catwalk T-Crossing", - "description": "Snaps to foundations and other walkways.\nSpecifically made for humans to walk on.", - "categories": [ - "SC_Catwalks_C" - ], - "buildMenuPriority": 101, - "className": "Desc_CatwalkT_C", - "metadata": {}, - "size": { - "width": 4, - "length": 4, - "height": 0 - } - }, - "Desc_CatwalkTurn_C": { - "slug": "catwalk-corner", - "name": "Catwalk Corner", - "description": "Snaps to foundations and other walkways.\nSpecifically made for humans to walk on.", - "categories": [ - "SC_Catwalks_C" - ], - "buildMenuPriority": 100, - "className": "Desc_CatwalkTurn_C", - "metadata": {}, - "size": { - "width": 4, - "length": 4, - "height": 0 - } - }, - "Desc_CeilingLight_C": { - "slug": "ceiling-light", - "name": "Ceiling Light", - "description": "Can be placed on ceilings to light up indoor factory spaces.\n\nLight color and intensity can be modified.\nAllows up to two Power Line connections.", - "categories": [ - "SC_Lights_C" - ], - "buildMenuPriority": 2, - "className": "Desc_CeilingLight_C", - "metadata": { - "powerConsumption": 2 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_Concrete_Barrier_01_C": { - "slug": "road-barrier-concrete", - "name": "Road Barrier", - "description": "A concrete Barrier, used to create a safer working environment.", - "categories": [ - "SC_Attach_C" - ], - "buildMenuPriority": 1, - "className": "Desc_Concrete_Barrier_01_C", - "metadata": {}, - "size": { - "width": 4, - "length": 0, - "height": 1 - } - }, - "Desc_ConstructorMk1_C": { - "slug": "constructor", - "name": "Constructor", - "description": "Crafts one part into another part.\n\nCan be automated by feeding parts into it with a conveyor belt connected to the input. The produced parts can be automatically extracted by connecting a conveyor belt to the output.", - "categories": [ - "SC_Manufacturers_C" - ], - "buildMenuPriority": 1, - "className": "Desc_ConstructorMk1_C", - "metadata": { - "powerConsumption": 4, - "powerConsumptionExponent": 1.6, - "manufacturingSpeed": 1 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_ConveyorAttachmentMerger_C": { - "slug": "conveyor-merger", - "name": "Conveyor Merger", - "description": "Merges up to three conveyor belts into one.", - "categories": [ - "SC_ConveyorAttachments_C" - ], - "buildMenuPriority": 1, - "className": "Desc_ConveyorAttachmentMerger_C", - "metadata": { - "powerConsumption": 0, - "powerConsumptionExponent": 1.6 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_ConveyorAttachmentSplitterProgrammable_C": { - "slug": "programmable-splitter", - "name": "Programmable Splitter", - "description": "Splits conveyor belts in three. \nYou can set rules for each output to decide exactly where each part should go.", - "categories": [ - "SC_ConveyorAttachments_C" - ], - "buildMenuPriority": 4, - "className": "Desc_ConveyorAttachmentSplitterProgrammable_C", - "metadata": { - "powerConsumption": 0, - "powerConsumptionExponent": 1.6 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_ConveyorAttachmentSplitterSmart_C": { - "slug": "smart-splitter", - "name": "Smart Splitter", - "description": "Splits conveyor belts in three.\nYou can set a rule for each output to decide exactly what part should go there.", - "categories": [ - "SC_ConveyorAttachments_C" - ], - "buildMenuPriority": 3, - "className": "Desc_ConveyorAttachmentSplitterSmart_C", - "metadata": { - "powerConsumption": 0, - "powerConsumptionExponent": 1.6 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_ConveyorAttachmentSplitter_C": { - "slug": "conveyor-splitter", - "name": "Conveyor Splitter", - "description": "Splits conveyor belts in three. \nUseful to move parts and resources from oversaturated conveyor belts.", - "categories": [ - "SC_ConveyorAttachments_C" - ], - "buildMenuPriority": 2, - "className": "Desc_ConveyorAttachmentSplitter_C", - "metadata": { - "powerConsumption": 0, - "powerConsumptionExponent": 1.6 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_ConveyorBeltMk1_C": { - "slug": "conveyor-belt-mk-1", - "name": "Conveyor Belt Mk.1", - "description": "Transports up to 60 resources per minute. Used to move resources between buildings.", - "categories": [ - "SC_ConveyorBelts_C" - ], - "buildMenuPriority": 31, - "className": "Desc_ConveyorBeltMk1_C", - "metadata": { - "beltSpeed": 60, - "firstPieceCostMultiplier": 1, - "lengthPerCost": 200, - "maxLength": 4900 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_ConveyorBeltMk2_C": { - "slug": "conveyor-belt-mk-2", - "name": "Conveyor Belt Mk.2", - "description": "Transports up to 120 resources per minute. Used to move resources between buildings.", - "categories": [ - "SC_ConveyorBelts_C" - ], - "buildMenuPriority": 32, - "className": "Desc_ConveyorBeltMk2_C", - "metadata": { - "beltSpeed": 120, - "firstPieceCostMultiplier": 1, - "lengthPerCost": 200, - "maxLength": 4900 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_ConveyorBeltMk3_C": { - "slug": "conveyor-belt-mk-3", - "name": "Conveyor Belt Mk.3", - "description": "Transports up to 270 resources per minute. Used to move resources between buildings.", - "categories": [ - "SC_ConveyorBelts_C" - ], - "buildMenuPriority": 33, - "className": "Desc_ConveyorBeltMk3_C", - "metadata": { - "beltSpeed": 270, - "firstPieceCostMultiplier": 1, - "lengthPerCost": 200, - "maxLength": 4900 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_ConveyorBeltMk4_C": { - "slug": "conveyor-belt-mk-4", - "name": "Conveyor Belt Mk.4", - "description": "Transports up to 480 resources per minute. Used to move resources between buildings.", - "categories": [ - "SC_ConveyorBelts_C" - ], - "buildMenuPriority": 34, - "className": "Desc_ConveyorBeltMk4_C", - "metadata": { - "beltSpeed": 480, - "firstPieceCostMultiplier": 1, - "lengthPerCost": 200, - "maxLength": 4900 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_ConveyorBeltMk5_C": { - "slug": "conveyor-belt-mk-5", - "name": "Conveyor Belt Mk.5", - "description": "Transports up to 780 resources per minute. Used to move resources between buildings.", - "categories": [ - "SC_ConveyorBelts_C" - ], - "buildMenuPriority": 35, - "className": "Desc_ConveyorBeltMk5_C", - "metadata": { - "beltSpeed": 780, - "firstPieceCostMultiplier": 1, - "lengthPerCost": 200, - "maxLength": 4900 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_ConveyorLiftMk1_C": { - "slug": "conveyor-lift-mk-1", - "name": "Conveyor Lift Mk.1", - "description": "Transports up to 60 resources per minute. Used to move resources between floors.", - "categories": [ - "SC_ConveyLift_C" - ], - "buildMenuPriority": 1, - "className": "Desc_ConveyorLiftMk1_C", - "metadata": { - "beltSpeed": 60, - "firstPieceCostMultiplier": 1, - "lengthPerCost": 200, - "maxLength": 4900 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_ConveyorLiftMk2_C": { - "slug": "conveyor-lift-mk-2", - "name": "Conveyor Lift Mk.2", - "description": "Transports up to 120 resources per minute. Used to move resources between floors.", - "categories": [ - "SC_ConveyLift_C" - ], - "buildMenuPriority": 2, - "className": "Desc_ConveyorLiftMk2_C", - "metadata": { - "beltSpeed": 120, - "firstPieceCostMultiplier": 1, - "lengthPerCost": 200, - "maxLength": 4900 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_ConveyorLiftMk3_C": { - "slug": "conveyor-lift-mk-3", - "name": "Conveyor Lift Mk.3", - "description": "Transports up to 270 resources per minute. Used to move resources between floors.", - "categories": [ - "SC_ConveyLift_C" - ], - "buildMenuPriority": 3, - "className": "Desc_ConveyorLiftMk3_C", - "metadata": { - "beltSpeed": 270, - "firstPieceCostMultiplier": 1, - "lengthPerCost": 200, - "maxLength": 4900 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_ConveyorLiftMk4_C": { - "slug": "conveyor-lift-mk-4", - "name": "Conveyor Lift Mk.4", - "description": "Transports up to 480 resources per minute. Used to move resources between floors.", - "categories": [ - "SC_ConveyLift_C" - ], - "buildMenuPriority": 4, - "className": "Desc_ConveyorLiftMk4_C", - "metadata": { - "beltSpeed": 480, - "firstPieceCostMultiplier": 1, - "lengthPerCost": 200, - "maxLength": 4900 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_ConveyorLiftMk5_C": { - "slug": "conveyor-lift-mk-5", - "name": "Conveyor Lift Mk.5", - "description": "Transports up to 780 resources per minute. Used to move resources between floors.", - "categories": [ - "SC_ConveyLift_C" - ], - "buildMenuPriority": 5, - "className": "Desc_ConveyorLiftMk5_C", - "metadata": { - "beltSpeed": 780, - "firstPieceCostMultiplier": 1, - "lengthPerCost": 200, - "maxLength": 4900 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_ConveyorPoleStackable_C": { - "slug": "stackable-conveyor-pole", - "name": "Stackable Conveyor Pole", - "description": "Support for conveyor belts. Can be stacked on other stackable supports.", - "categories": [], - "buildMenuPriority": 0, - "className": "Desc_ConveyorPoleStackable_C", - "metadata": {}, - "size": { - "width": 0, - "length": 0, - "height": 1 - } - }, - "Desc_ConveyorPoleWall_C": { - "slug": "conveyor-wall-mount", - "name": "Conveyor Wall Mount", - "description": "Can be attached to walls and is used as a connection for conveyor belts.\nUseful to route conveyor belts in a more controlled manner and over long distances.", - "categories": [ - "SC_ConverPole_C" - ], - "buildMenuPriority": 31, - "className": "Desc_ConveyorPoleWall_C", - "metadata": {}, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_ConveyorPole_C": { - "slug": "conveyor-pole", - "name": "Conveyor Pole", - "description": "Can be used as a connection for conveyor belts. The height of the pole can be adjusted.\nUseful to route conveyor belts in a more controlled manner and over long distances.", - "categories": [], - "buildMenuPriority": 0, - "className": "Desc_ConveyorPole_C", - "metadata": {}, - "size": { - "width": 0, - "length": 0, - "height": 1 - } - }, - "Desc_CyberWagon_C": { - "slug": "cyber-wagon", - "name": "Cyber Wagon", - "description": "Absolutely indestructible.\nNeeds no further introduction.", - "categories": [], - "buildMenuPriority": 0, - "className": "Desc_CyberWagon_C", - "metadata": {}, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_DroneStation_C": { - "slug": "drone-port", - "name": "Drone Port", - "description": "Drone Ports can have one other Port assigned as their transport destination.\nEach Drone Port can contain a single Drone, which transports available input back and forth between its home and destination Ports.\n\nThe Drone Port interface provides delivery details and allows management of Port connections.", - "categories": [ - "SC_Vehicles_C" - ], - "buildMenuPriority": 5, - "className": "Desc_DroneStation_C", - "metadata": { - "powerConsumption": 100, - "powerConsumptionExponent": 1.6 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_DroneTransport_C": { - "slug": "drone", - "name": "Drone", - "description": "", - "categories": [], - "buildMenuPriority": 0, - "className": "Desc_DroneTransport_C", - "metadata": {}, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_Explorer_C": { - "slug": "explorer", - "name": "Explorer", - "description": "24 slot inventory. Has a built in craft bench. Fast and nimble exploration vehicle. Tuned for really rough terrain and can climb almost vertical surfaces.", - "categories": [], - "buildMenuPriority": 0, - "className": "Desc_Explorer_C", - "metadata": {}, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_Fence_01_C": { - "slug": "industrial-railing", - "name": "Industrial Railing", - "description": "Railings can be built on Foundations to create a safer working environment.", - "categories": [ - "SC_Attach_C" - ], - "buildMenuPriority": 2, - "className": "Desc_Fence_01_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 1 - } - }, - "Desc_Flat_Frame_01_C": { - "slug": "frame-floor", - "name": "Frame Floor", - "description": "Snaps to other structural buildings.\nFrames provide a more open factory aesthetic.\n\nSize: 8m x 0.5m", - "categories": [ - "SC_Frames_C" - ], - "buildMenuPriority": 1, - "className": "Desc_Flat_Frame_01_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 0.4 - } - }, - "Desc_FloodlightPole_C": { - "slug": "flood-light-tower", - "name": "Flood Light Tower", - "description": "A tall light tower, specifically designed for illuminating large or outdoor spaces.\n\nLight color and intensity can be modified.\nAllows up to two Power Line connections.", - "categories": [ - "SC_Lights_C" - ], - "buildMenuPriority": 3, - "className": "Desc_FloodlightPole_C", - "metadata": { - "powerConsumption": 6 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_FloodlightWall_C": { - "slug": "wall-mounted-flood-light", - "name": "Wall Mounted Flood Light", - "description": "Can be attached to Walls and Foundations to illuminate large spaces.\n\nLight color and intensity can be modified.\nAllows up to two Power Line connections.", - "categories": [ - "SC_Lights_C" - ], - "buildMenuPriority": 4, - "className": "Desc_FloodlightWall_C", - "metadata": { - "powerConsumption": 6 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_FoundationGlass_01_C": { - "slug": "glass-frame-foundation", - "name": "Glass Frame Foundation", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", - "categories": [ - "SC_Frames_C" - ], - "buildMenuPriority": 4, - "className": "Desc_FoundationGlass_01_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 1 - } - }, - "Desc_FoundationPassthrough_Hypertube_C": { - "slug": "hypertube-floor-hole", - "name": "Hypertube Floor Hole", - "description": "Can be attached to Foundations, allowing Hypertubes to pass through them.", - "categories": [ - "SC_HyperTubes_C" - ], - "buildMenuPriority": 8, - "className": "Desc_FoundationPassthrough_Hypertube_C", - "metadata": {}, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_FoundationPassthrough_Lift_C": { - "slug": "conveyor-lift-floor-hole", - "name": "Conveyor Lift Floor Hole", - "description": "Can be attached to Foundations, allowing Conveyor Lifts to pass through them.", - "categories": [ - "SC_ConverPole_C" - ], - "buildMenuPriority": 8, - "className": "Desc_FoundationPassthrough_Lift_C", - "metadata": {}, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_FoundationPassthrough_Pipe_C": { - "slug": "pipeline-floor-hole", - "name": "Pipeline Floor Hole", - "description": "Can be attached to Foundations, allowing Pipelines to pass through them.", - "categories": [ - "SC_PipeSupport_C" - ], - "buildMenuPriority": 8, - "className": "Desc_FoundationPassthrough_Pipe_C", - "metadata": {}, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_Foundation_8x1_01_C": { - "slug": "foundation-1m", - "name": "Foundation 1m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", - "categories": [ - "SC_Floors_C" - ], - "buildMenuPriority": 1, - "className": "Desc_Foundation_8x1_01_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 1 - } - }, - "Desc_Foundation_8x2_01_C": { - "slug": "foundation-2m", - "name": "Foundation 2m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", - "categories": [ - "SC_Floors_C" - ], - "buildMenuPriority": 2, - "className": "Desc_Foundation_8x2_01_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 2 - } - }, - "Desc_Foundation_8x4_01_C": { - "slug": "foundation-4m", - "name": "Foundation 4m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", - "categories": [ - "SC_Floors_C" - ], - "buildMenuPriority": 3, - "className": "Desc_Foundation_8x4_01_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 4 - } - }, - "Desc_Foundation_Asphalt_8x1_C": { - "slug": "foundation-1m-asphalt", - "name": "Foundation 1m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", - "categories": [ - "SC_Floors_C" - ], - "buildMenuPriority": 1, - "className": "Desc_Foundation_Asphalt_8x1_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 1 - } - }, - "Desc_Foundation_Asphalt_8x2_C": { - "slug": "foundation-2m-asphalt", - "name": "Foundation 2m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", - "categories": [ - "SC_Floors_C" - ], - "buildMenuPriority": 2, - "className": "Desc_Foundation_Asphalt_8x2_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 2 - } - }, - "Desc_Foundation_Asphalt_8x4_C": { - "slug": "foundation-4m-asphalt", - "name": "Foundation 4m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", - "categories": [ - "SC_Floors_C" - ], - "buildMenuPriority": 3, - "className": "Desc_Foundation_Asphalt_8x4_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 4 - } - }, - "Desc_Foundation_ConcretePolished_8x1_C": { - "slug": "foundation-1m-polished", - "name": "Foundation 1m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", - "categories": [ - "SC_Floors_C" - ], - "buildMenuPriority": 0, - "className": "Desc_Foundation_ConcretePolished_8x1_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 1 - } - }, - "Desc_Foundation_ConcretePolished_8x2_2_C": { - "slug": "foundation-2m-polished", - "name": "Foundation 2m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", - "categories": [], - "buildMenuPriority": 0, - "className": "Desc_Foundation_ConcretePolished_8x2_2_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 2 - } - }, - "Desc_Foundation_ConcretePolished_8x4_C": { - "slug": "foundation-4m-polished", - "name": "Foundation 4m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", - "categories": [], - "buildMenuPriority": 0, - "className": "Desc_Foundation_ConcretePolished_8x4_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 4 - } - }, - "Desc_Foundation_Concrete_8x1_C": { - "slug": "foundation-1m-concrete", - "name": "Foundation 1m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", - "categories": [ - "SC_Floors_C" - ], - "buildMenuPriority": 1, - "className": "Desc_Foundation_Concrete_8x1_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 1 - } - }, - "Desc_Foundation_Concrete_8x2_C": { - "slug": "foundation-2m-concrete", - "name": "Foundation 2m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", - "categories": [ - "SC_Floors_C" - ], - "buildMenuPriority": 2, - "className": "Desc_Foundation_Concrete_8x2_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 2 - } - }, - "Desc_Foundation_Concrete_8x4_C": { - "slug": "foundation-4m-concrete", - "name": "Foundation 4m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", - "categories": [ - "SC_Floors_C" - ], - "buildMenuPriority": 3, - "className": "Desc_Foundation_Concrete_8x4_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 4 - } - }, - "Desc_Foundation_Frame_01_C": { - "slug": "frame-foundation", - "name": "Frame Foundation", - "description": "Snaps to other structural buildings.\nFrames provide a more open factory aesthetic.\n\nSize: 8m x 4m", - "categories": [ - "SC_Frames_C" - ], - "buildMenuPriority": 2, - "className": "Desc_Foundation_Frame_01_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 4 - } - }, - "Desc_Foundation_Metal_8x1_C": { - "slug": "foundation-1m-metal", - "name": "Foundation 1m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", - "categories": [ - "SC_Floors_C" - ], - "buildMenuPriority": 1, - "className": "Desc_Foundation_Metal_8x1_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 1 - } - }, - "Desc_Foundation_Metal_8x2_C": { - "slug": "foundation-2m-metal", - "name": "Foundation 2m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", - "categories": [ - "SC_Floors_C" - ], - "buildMenuPriority": 2, - "className": "Desc_Foundation_Metal_8x2_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 2 - } - }, - "Desc_Foundation_Metal_8x4_C": { - "slug": "foundation-4m-metal", - "name": "Foundation 4m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", - "categories": [ - "SC_Floors_C" - ], - "buildMenuPriority": 3, - "className": "Desc_Foundation_Metal_8x4_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 4 - } - }, - "Desc_FoundryMk1_C": { - "slug": "foundry", - "name": "Foundry", - "description": "Smelts two resources into alloy ingots.\n\nCan be automated by feeding ore into it with a conveyor belt connected to the inputs. The produced ingots can be automatically extracted by connecting a conveyor belt to the output.", - "categories": [ - "SC_Smelters_C" - ], - "buildMenuPriority": 8, - "className": "Desc_FoundryMk1_C", - "metadata": { - "powerConsumption": 16, - "powerConsumptionExponent": 1.6, - "manufacturingSpeed": 1 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_FrackingExtractor_C": { - "slug": "resource-well-extractor", - "name": "Resource Well Extractor", - "description": "Normal extraction rate: 60m³ fluid per minute.\nHead Lift: 10 meters.\n(Allows fluids to be transported 10 meters upwards.)\n\nCan be placed on the activated sub-nodes of a Resource Well to collect the pressurized resources. Does not require Power.", - "categories": [ - "SC_OilProduction_C" - ], - "buildMenuPriority": 4, - "className": "Desc_FrackingExtractor_C", - "metadata": { - "powerConsumption": 0, - "powerConsumptionExponent": 1.6 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_FrackingSmasher_C": { - "slug": "resource-well-pressurizer", - "name": "Resource Well Pressurizer", - "description": "Can be placed on a Resource Well to activate it by pressurizing the underground resource.\nOnce activated, Resource Well Extractors can be placed on the surrounding sub-nodes to extract the resource.\nRequires Power. Overclocking increases the output potential of the entire Resource Well.", - "categories": [ - "SC_OilProduction_C" - ], - "buildMenuPriority": 3, - "className": "Desc_FrackingSmasher_C", - "metadata": { - "powerConsumption": 150, - "powerConsumptionExponent": 1.6 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_FreightWagon_C": { - "slug": "freight-car", - "name": "Freight Car", - "description": "The Freight Car is used to transport large quantity of resources from one place to another. Resources are loaded or unloaded at Freight Platforms.\nMust be build on Railway.", - "categories": [], - "buildMenuPriority": 0, - "className": "Desc_FreightWagon_C", - "metadata": {}, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_Gate_Automated_8x4_C": { - "slug": "automated-gate", - "name": "Automated Gate", - "description": "Automatically opens when living beings or vehicles approach it.\nGate settings can be configured.\nSnaps to foundations and other walls.\n\nSize: 8m x 4m", - "categories": [ - "SC_Doors_C" - ], - "buildMenuPriority": 3, - "className": "Desc_Gate_Automated_8x4_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 4 - } - }, - "Desc_GeneratorBiomass_C": { - "slug": "biomass-burner", - "name": "Biomass Burner", - "description": "Burns various forms of biomass to generate electricity for the power grid.\nHas no input and must therefore be fed biomass manually.\n\nResource consumption will automatically be lowered to meet power demands.", - "categories": [ - "SC_Generators_C" - ], - "buildMenuPriority": 1, - "className": "Desc_GeneratorBiomass_C", - "metadata": { - "powerConsumption": 0, - "powerConsumptionExponent": 1.6 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_GeneratorCoal_C": { - "slug": "coal-generator", - "name": "Coal Generator", - "description": "Burns Coal to boil Water, the produced steam rotates turbines to generate electricity for the power grid.\nHas a Conveyor Belt and Pipe input, so both the Coal and Water supply can be automated.\n\nCaution: Always generates at the set clock speed. Shuts down if fuel requirements are not met.", - "categories": [ - "SC_Generators_C" - ], - "buildMenuPriority": 3, - "className": "Desc_GeneratorCoal_C", - "metadata": { - "powerConsumption": 0, - "powerConsumptionExponent": 1.6 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_GeneratorFuel_C": { - "slug": "fuel-generator", - "name": "Fuel Generator", - "description": "Consumes Fuel to generate electricity for the power grid.\nHas a Pipe input so the Fuel supply can be automated.\n\nCaution: Always generates at the set clock speed. Shuts down if fuel requirements are not met.", - "categories": [ - "SC_Generators_C" - ], - "buildMenuPriority": 6, - "className": "Desc_GeneratorFuel_C", - "metadata": { - "powerConsumption": 0, - "powerConsumptionExponent": 1.6 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_GeneratorGeoThermal_C": { - "slug": "geothermal-generator", - "name": "Geothermal Generator", - "description": "Has to be built on a Geyser. Generates power.\n\nCaution: Power production fluctuates.\n\nPower Production:\nImpure 50-150 MW (100 MW average)\nNormal 100-300 MW (200 MW average)\nPure 200-600 MW (400 MW average)", - "categories": [ - "SC_Generators_C" - ], - "buildMenuPriority": 7, - "className": "Desc_GeneratorGeoThermal_C", - "metadata": { - "powerConsumption": 0, - "powerConsumptionExponent": 1.6 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_GeneratorNuclear_C": { - "slug": "nuclear-power-plant", - "name": "Nuclear Power Plant", - "description": "Consumes Nuclear Fuel Rods and Water to produce electricity for the power grid.\n\nProduces Nuclear Waste, which is extracted from the conveyor belt output.\n\nCaution: Always generates at the set clock speed. Shuts down if fuel requirements are not met.", - "categories": [ - "SC_Generators_C" - ], - "buildMenuPriority": 8, - "className": "Desc_GeneratorNuclear_C", - "metadata": { - "powerConsumption": 0, - "powerConsumptionExponent": 1.6 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_HadronCollider_C": { - "slug": "particle-accelerator", - "name": "Particle Accelerator", - "description": "The FICSIT Particle Accelerator uses electromagnetic fields to propel particles to very high speeds and energies. The specific design allows for a variety of processes, such as matter generation and conversion.\n\nWarning: Power usage is extremely high, unstable, and varies per recipe.", - "categories": [ - "SC_Manufacturers_C" - ], - "buildMenuPriority": 21, - "className": "Desc_HadronCollider_C", - "metadata": { - "powerConsumption": 875, - "powerConsumptionExponent": 1.6, - "isVariablePower": true, - "minPowerConsumption": 250, - "maxPowerConsumption": 1500, - "manufacturingSpeed": 1 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_HyperPoleStackable_C": { - "slug": "stackable-hypertube-support", - "name": "Stackable Hypertube Support", - "description": "Support for Hypertubes. Can be stacked on other stackable supports.", - "categories": [], - "buildMenuPriority": 0, - "className": "Desc_HyperPoleStackable_C", - "metadata": {}, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_HyperTubeWallHole_C": { - "slug": "hypertube-wall-hole", - "name": "Hypertube Wall Hole", - "description": "Can be attached to walls to allow Hypertubes to pass through them.", - "categories": [ - "SC_HyperTubes_C" - ], - "buildMenuPriority": 6, - "className": "Desc_HyperTubeWallHole_C", - "metadata": {}, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_HyperTubeWallSupport_C": { - "slug": "hypertube-wall-support", - "name": "Hypertube Wall Support", - "description": "Can be attached to walls. \nSupports for Hypertubes to allow for longer distances.", - "categories": [ - "SC_HyperTubes_C" - ], - "buildMenuPriority": 5, - "className": "Desc_HyperTubeWallSupport_C", - "metadata": {}, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_IndustrialTank_C": { - "slug": "industrial-fluid-buffer", - "name": "Industrial Fluid Buffer", - "description": "Can contain up to 2400m³ of fluid.\nHas an input and output for pipes.", - "categories": [ - "SC_Storage_C" - ], - "buildMenuPriority": 65, - "className": "Desc_IndustrialTank_C", - "metadata": { - "powerConsumption": 0, - "powerConsumptionExponent": 1.6, - "storageCapacity": 2400 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_InvertedRamp_Asphalt_8x1_C": { - "slug": "inv-ramp-1m-asphalt", - "name": "Inv. Ramp 1m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", - "categories": [ - "SC_Inverted_C" - ], - "buildMenuPriority": 1, - "className": "Desc_InvertedRamp_Asphalt_8x1_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 1 - } - }, - "Desc_InvertedRamp_Asphalt_8x2_C": { - "slug": "inv-ramp-2m-asphalt", - "name": "Inv. Ramp 2m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", - "categories": [ - "SC_Inverted_C" - ], - "buildMenuPriority": 2, - "className": "Desc_InvertedRamp_Asphalt_8x2_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 2 - } - }, - "Desc_InvertedRamp_Asphalt_8x4_C": { - "slug": "inv-ramp-4m-asphalt", - "name": "Inv. Ramp 4m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", - "categories": [ - "SC_Inverted_C" - ], - "buildMenuPriority": 3, - "className": "Desc_InvertedRamp_Asphalt_8x4_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 4 - } - }, - "Desc_InvertedRamp_Concrete_8x1_C": { - "slug": "inv-ramp-1m-concrete", - "name": "Inv. Ramp 1m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", - "categories": [ - "SC_Inverted_C" - ], - "buildMenuPriority": 1, - "className": "Desc_InvertedRamp_Concrete_8x1_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 1 - } - }, - "Desc_InvertedRamp_Concrete_8x2_C": { - "slug": "inv-ramp-2m-concrete", - "name": "Inv. Ramp 2m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", - "categories": [ - "SC_Inverted_C" - ], - "buildMenuPriority": 2, - "className": "Desc_InvertedRamp_Concrete_8x2_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 2 - } - }, - "Desc_InvertedRamp_Concrete_8x4_C": { - "slug": "inv-ramp-4m-concrete", - "name": "Inv. Ramp 4m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", - "categories": [ - "SC_Inverted_C" - ], - "buildMenuPriority": 3, - "className": "Desc_InvertedRamp_Concrete_8x4_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 4 - } - }, - "Desc_InvertedRamp_DCorner_Asphalt_8x1_C": { - "slug": "inv-down-corner-1m-asphalt", - "name": "Inv. Down Corner 1m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", - "categories": [ - "SC_Inverted_C" - ], - "buildMenuPriority": 7, - "className": "Desc_InvertedRamp_DCorner_Asphalt_8x1_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 1 - } - }, - "Desc_InvertedRamp_DCorner_Asphalt_8x2_C": { - "slug": "inv-down-corner-2m-asphalt", - "name": "Inv. Down Corner 2m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", - "categories": [ - "SC_Inverted_C" - ], - "buildMenuPriority": 8, - "className": "Desc_InvertedRamp_DCorner_Asphalt_8x2_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 2 - } - }, - "Desc_InvertedRamp_DCorner_Asphalt_8x4_C": { - "slug": "inv-down-corner-4m-asphalt", - "name": "Inv. Down Corner 4m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", - "categories": [ - "SC_Inverted_C" - ], - "buildMenuPriority": 9, - "className": "Desc_InvertedRamp_DCorner_Asphalt_8x4_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 4 - } - }, - "Desc_InvertedRamp_DCorner_Concrete_8x1_C": { - "slug": "inv-down-corner-1m-concrete", - "name": "Inv. Down Corner 1m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", - "categories": [ - "SC_Inverted_C" - ], - "buildMenuPriority": 7, - "className": "Desc_InvertedRamp_DCorner_Concrete_8x1_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 1 - } - }, - "Desc_InvertedRamp_DCorner_Concrete_8x2_C": { - "slug": "inv-down-corner-2m-concrete", - "name": "Inv. Down Corner 2m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", - "categories": [ - "SC_Inverted_C" - ], - "buildMenuPriority": 8, - "className": "Desc_InvertedRamp_DCorner_Concrete_8x2_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 2 - } - }, - "Desc_InvertedRamp_DCorner_Concrete_8x4_C": { - "slug": "inv-down-corner-4m-concrete", - "name": "Inv. Down Corner 4m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", - "categories": [ - "SC_Inverted_C" - ], - "buildMenuPriority": 9, - "className": "Desc_InvertedRamp_DCorner_Concrete_8x4_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 4 - } - }, - "Desc_InvertedRamp_DCorner_Metal_8x1_C": { - "slug": "inv-down-corner-1m-metal", - "name": "Inv. Down Corner 1m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", - "categories": [ - "SC_Inverted_C" - ], - "buildMenuPriority": 7, - "className": "Desc_InvertedRamp_DCorner_Metal_8x1_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 1 - } - }, - "Desc_InvertedRamp_DCorner_Metal_8x2_C": { - "slug": "inv-down-corner-2m-metal", - "name": "Inv. Down Corner 2m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", - "categories": [ - "SC_Inverted_C" - ], - "buildMenuPriority": 8, - "className": "Desc_InvertedRamp_DCorner_Metal_8x2_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 2 - } - }, - "Desc_InvertedRamp_DCorner_Metal_8x4_C": { - "slug": "inv-down-corner-4m-metal", - "name": "Inv. Down Corner 4m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", - "categories": [ - "SC_Inverted_C" - ], - "buildMenuPriority": 9, - "className": "Desc_InvertedRamp_DCorner_Metal_8x4_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 4 - } - }, - "Desc_InvertedRamp_DCorner_Polished_8x1_C": { - "slug": "inv-down-corner-1m-polished", - "name": "Inv. Down Corner 1m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", - "categories": [ - "SC_Inverted_C" - ], - "buildMenuPriority": 7, - "className": "Desc_InvertedRamp_DCorner_Polished_8x1_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 1 - } - }, - "Desc_InvertedRamp_DCorner_Polished_8x2_C": { - "slug": "inv-down-corner-2m-polished", - "name": "Inv. Down Corner 2m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", - "categories": [ - "SC_Inverted_C" - ], - "buildMenuPriority": 8, - "className": "Desc_InvertedRamp_DCorner_Polished_8x2_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 2 - } - }, - "Desc_InvertedRamp_DCorner_Polished_8x4_C": { - "slug": "inv-down-corner-4m-polished", - "name": "Inv. Down Corner 4m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", - "categories": [ - "SC_Inverted_C" - ], - "buildMenuPriority": 9, - "className": "Desc_InvertedRamp_DCorner_Polished_8x4_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 4 - } - }, - "Desc_InvertedRamp_Metal_8x1_C": { - "slug": "inv-ramp-1m-metal", - "name": "Inv. Ramp 1m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", - "categories": [ - "SC_Inverted_C" - ], - "buildMenuPriority": 1, - "className": "Desc_InvertedRamp_Metal_8x1_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 1 - } - }, - "Desc_InvertedRamp_Metal_8x2_C": { - "slug": "inv-ramp-2m-metal", - "name": "Inv. Ramp 2m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", - "categories": [ - "SC_Inverted_C" - ], - "buildMenuPriority": 2, - "className": "Desc_InvertedRamp_Metal_8x2_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 2 - } - }, - "Desc_InvertedRamp_Metal_8x4_C": { - "slug": "inv-ramp-4m-metal", - "name": "Inv. Ramp 4m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", - "categories": [ - "SC_Inverted_C" - ], - "buildMenuPriority": 3, - "className": "Desc_InvertedRamp_Metal_8x4_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 4 - } - }, - "Desc_InvertedRamp_Polished_8x1_C": { - "slug": "inv-ramp-1m-polished", - "name": "Inv. Ramp 1m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", - "categories": [ - "SC_Inverted_C" - ], - "buildMenuPriority": 1, - "className": "Desc_InvertedRamp_Polished_8x1_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 1 - } - }, - "Desc_InvertedRamp_Polished_8x2_C": { - "slug": "inv-ramp-2m-polished", - "name": "Inv. Ramp 2m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", - "categories": [ - "SC_Inverted_C" - ], - "buildMenuPriority": 2, - "className": "Desc_InvertedRamp_Polished_8x2_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 2 - } - }, - "Desc_InvertedRamp_Polished_8x4_C": { - "slug": "inv-ramp-4m-polished", - "name": "Inv. Ramp 4m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", - "categories": [ - "SC_Inverted_C" - ], - "buildMenuPriority": 3, - "className": "Desc_InvertedRamp_Polished_8x4_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 4 - } - }, - "Desc_InvertedRamp_UCorner_Asphalt_8x1_C": { - "slug": "inv-up-corner-1m-asphalt", - "name": "Inv. Up Corner 1m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", - "categories": [ - "SC_Inverted_C" - ], - "buildMenuPriority": 4, - "className": "Desc_InvertedRamp_UCorner_Asphalt_8x1_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 1 - } - }, - "Desc_InvertedRamp_UCorner_Asphalt_8x2_C": { - "slug": "inv-up-corner-2m-asphalt", - "name": "Inv. Up Corner 2m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", - "categories": [ - "SC_Inverted_C" - ], - "buildMenuPriority": 5, - "className": "Desc_InvertedRamp_UCorner_Asphalt_8x2_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 2 - } - }, - "Desc_InvertedRamp_UCorner_Asphalt_8x4_C": { - "slug": "inv-up-corner-4m-asphalt", - "name": "Inv. Up Corner 4m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", - "categories": [ - "SC_Inverted_C" - ], - "buildMenuPriority": 6, - "className": "Desc_InvertedRamp_UCorner_Asphalt_8x4_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 4 - } - }, - "Desc_InvertedRamp_UCorner_Concrete_8x1_C": { - "slug": "inv-up-corner-1m-concrete", - "name": "Inv. Up Corner 1m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", - "categories": [ - "SC_Inverted_C" - ], - "buildMenuPriority": 4, - "className": "Desc_InvertedRamp_UCorner_Concrete_8x1_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 1 - } - }, - "Desc_InvertedRamp_UCorner_Concrete_8x2_C": { - "slug": "inv-up-corner-2m-concrete", - "name": "Inv. Up Corner 2m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", - "categories": [ - "SC_Inverted_C" - ], - "buildMenuPriority": 5, - "className": "Desc_InvertedRamp_UCorner_Concrete_8x2_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 2 - } - }, - "Desc_InvertedRamp_UCorner_Concrete_8x4_C": { - "slug": "inv-up-corner-4m-concrete", - "name": "Inv. Up Corner 4m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", - "categories": [ - "SC_Inverted_C" - ], - "buildMenuPriority": 6, - "className": "Desc_InvertedRamp_UCorner_Concrete_8x4_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 4 - } - }, - "Desc_InvertedRamp_UCorner_Metal_8x1_C": { - "slug": "inv-up-corner-1m-metal", - "name": "Inv. Up Corner 1m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", - "categories": [ - "SC_Inverted_C" - ], - "buildMenuPriority": 4, - "className": "Desc_InvertedRamp_UCorner_Metal_8x1_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 1 - } - }, - "Desc_InvertedRamp_UCorner_Metal_8x2_C": { - "slug": "inv-up-corner-2m-metal", - "name": "Inv. Up Corner 2m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", - "categories": [ - "SC_Inverted_C" - ], - "buildMenuPriority": 5, - "className": "Desc_InvertedRamp_UCorner_Metal_8x2_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 2 - } - }, - "Desc_InvertedRamp_UCorner_Metal_8x4_C": { - "slug": "inv-up-corner-4m-metal", - "name": "Inv. Up Corner 4m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", - "categories": [ - "SC_Inverted_C" - ], - "buildMenuPriority": 6, - "className": "Desc_InvertedRamp_UCorner_Metal_8x4_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 4 - } - }, - "Desc_InvertedRamp_UCorner_Polished_8x1_C": { - "slug": "inv-up-corner-1m-polished", - "name": "Inv. Up Corner 1m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", - "categories": [ - "SC_Inverted_C" - ], - "buildMenuPriority": 4, - "className": "Desc_InvertedRamp_UCorner_Polished_8x1_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 1 - } - }, - "Desc_InvertedRamp_UCorner_Polished_8x2_C": { - "slug": "inv-up-corner-2m-polished", - "name": "Inv. Up Corner 2m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", - "categories": [ - "SC_Inverted_C" - ], - "buildMenuPriority": 5, - "className": "Desc_InvertedRamp_UCorner_Polished_8x2_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 2 - } - }, - "Desc_InvertedRamp_UCorner_Polished_8x4_C": { - "slug": "inv-up-corner-4m-polished", - "name": "Inv. Up Corner 4m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", - "categories": [ - "SC_Inverted_C" - ], - "buildMenuPriority": 6, - "className": "Desc_InvertedRamp_UCorner_Polished_8x4_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 4 - } - }, - "Desc_JumpPadAdjustable_C": { - "slug": "jump-pad", - "name": "Jump Pad", - "description": "Used for quick, vertical traversal.\nThe launch angle can be adjusted while building.\nCaution: Be sure to land safely!", - "categories": [ - "SC_JumpPads_C" - ], - "buildMenuPriority": 65, - "className": "Desc_JumpPadAdjustable_C", - "metadata": { - "powerConsumption": 5, - "powerConsumptionExponent": 1.6 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_Ladder_C": { - "slug": "ladder", - "name": "Ladder", - "description": "A ladder with a default height of 2 meters, which can be extended while building. Snaps to walls and foundations.", - "categories": [ - "SC_Attach_C" - ], - "buildMenuPriority": 3, - "className": "Desc_Ladder_C", - "metadata": {}, - "size": { - "width": 0.8, - "length": 0, - "height": 0 - } - }, - "Desc_LandingPad_C": { - "slug": "u-jelly-landing-pad", - "name": "U-Jelly Landing Pad", - "description": "Generates a speed dampening jelly.\nGuarantees a safe landing.", - "categories": [ - "SC_JumpPads_C" - ], - "buildMenuPriority": 66, - "className": "Desc_LandingPad_C", - "metadata": { - "powerConsumption": 5, - "powerConsumptionExponent": 1.6 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_LightsControlPanel_C": { - "slug": "lights-control-panel", - "name": "Lights Control Panel", - "description": "Useful for sectioning and modifying many lights at once.\n\nControls all Lights connected to the Power Grid attached to the 'Light Power Connector'.\n(Other Control Panels and Power Switches interrupt the connection.)", - "categories": [ - "SC_Lights_C" - ], - "buildMenuPriority": 10, - "className": "Desc_LightsControlPanel_C", - "metadata": {}, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_Locomotive_C": { - "slug": "electric-locomotive", - "name": "Electric Locomotive", - "description": "This locomotive is used to move Freight Cars from station to station.\nRequires 25-110MW of Power to drive.\nMust be built on railway.\nNamed 'Leif' by FISCIT pioneers because of its reliability.", - "categories": [], - "buildMenuPriority": 0, - "className": "Desc_Locomotive_C", - "metadata": { - "powerConsumption": null - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_LookoutTower_C": { - "slug": "lookout-tower", - "name": "Lookout Tower", - "description": "Provides a good overview which makes factory construction easier.", - "categories": [ - "SC_Towers_C" - ], - "buildMenuPriority": 0, - "className": "Desc_LookoutTower_C", - "metadata": { - "powerConsumption": 0, - "powerConsumptionExponent": 1.6 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_Mam_C": { - "slug": "mam", - "name": "MAM", - "description": "The Molecular Analysis Machine is used to analyse new and exotic materials found on alien planets.\nR&D will assist Pioneers through the MAM to turn any valuable data into usable research options and new technologies.", - "categories": [ - "SC_Special_C" - ], - "buildMenuPriority": 3, - "className": "Desc_Mam_C", - "metadata": {}, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_ManufacturerMk1_C": { - "slug": "manufacturer", - "name": "Manufacturer", - "description": "Crafts three or four parts into another part.\n\nCan be automated by feeding parts into it with a conveyor belt connected to the input. The produced parts can be automatically extracted by connecting a conveyor belt to the output.", - "categories": [ - "SC_Manufacturers_C" - ], - "buildMenuPriority": 3, - "className": "Desc_ManufacturerMk1_C", - "metadata": { - "powerConsumption": 55, - "powerConsumptionExponent": 1.6, - "manufacturingSpeed": 1 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_MinerMk1_C": { - "slug": "miner-mk-1", - "name": "Miner Mk.1", - "description": "Extracts solid resources from the resource node it is built on. \nThe normal extraction rate is 60 resources per minute. \nThe extraction rate is modified depending on resource node purity. Outputs all extracted resources onto connected conveyor belts.", - "categories": [ - "SC_Miners_C" - ], - "buildMenuPriority": 3, - "className": "Desc_MinerMk1_C", - "metadata": { - "powerConsumption": 5, - "powerConsumptionExponent": 1.6 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_MinerMk2_C": { - "slug": "miner-mk-2", - "name": "Miner Mk.2", - "description": "Extracts solid resources from the resource node it is built on. \nThe normal extraction rate is 120 resources per minute. \nThe extraction rate is modified depending on resource node purity. Outputs all extracted resources onto connected conveyor belts.", - "categories": [ - "SC_Miners_C" - ], - "buildMenuPriority": 4, - "className": "Desc_MinerMk2_C", - "metadata": { - "powerConsumption": 12, - "powerConsumptionExponent": 1.6 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_MinerMk3_C": { - "slug": "miner-mk-3", - "name": "Miner Mk.3", - "description": "Extracts solid resources from the resource node it is built on. \nThe normal extraction rate is 240 resources per minute. \nThe extraction rate is modified depending on resource node purity. Outputs all extracted resources onto connected conveyor belts.", - "categories": [ - "SC_Miners_C" - ], - "buildMenuPriority": 5, - "className": "Desc_MinerMk3_C", - "metadata": { - "powerConsumption": 30, - "powerConsumptionExponent": 1.6 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_OilPump_C": { - "slug": "oil-extractor", - "name": "Oil Extractor", - "description": "Normal extraction rate: 120m³ oil per minute.\nHead Lift: 10 meters.\n(Allows fluids to be transported 10 meters upwards.)\n\nCan be built on an Oil Node to extract Crude Oil. Extraction rates depend on node purity.", - "categories": [ - "SC_OilProduction_C" - ], - "buildMenuPriority": 2, - "className": "Desc_OilPump_C", - "metadata": { - "powerConsumption": 40, - "powerConsumptionExponent": 1.6 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_OilRefinery_C": { - "slug": "refinery", - "name": "Refinery", - "description": "Refines fluid and/or solid parts into other parts.\nHead Lift: 10 meters.\n(Allows fluids to be transported 10 meters upwards.)\n\nContains both a Conveyor Belt and Pipe input and output, to allow for the automation of various recipes.", - "categories": [ - "SC_Manufacturers_C" - ], - "buildMenuPriority": 12, - "className": "Desc_OilRefinery_C", - "metadata": { - "powerConsumption": 30, - "powerConsumptionExponent": 1.6, - "manufacturingSpeed": 1 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_Packager_C": { - "slug": "packager", - "name": "Packager", - "description": "Used for the packaging and unpacking of fluids.\nHead Lift: 10 meters.\n(Allows fluids to be transported 10 meters upwards.)\n\nContains both a Conveyor Belt and Pipe input and output, to allow for the automation of various recipes.", - "categories": [ - "SC_Manufacturers_C" - ], - "buildMenuPriority": 11, - "className": "Desc_Packager_C", - "metadata": { - "powerConsumption": 10, - "powerConsumptionExponent": 1.6, - "manufacturingSpeed": 1 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_PillarBase_C": { - "slug": "big-pillar-support", - "name": "Big Pillar Support", - "description": "The Pillar Support snaps to Pillars and can be placed on, for example, Foundations and Walls.", - "categories": [ - "SC_Pillars_C" - ], - "buildMenuPriority": 0, - "className": "Desc_PillarBase_C", - "metadata": {}, - "size": { - "width": null, - "length": null, - "height": 0 - } - }, - "Desc_PillarBase_Small_C": { - "slug": "small-pillar-support", - "name": "Small Pillar Support", - "description": "The Pillar Support snaps to Pillars and can be placed on, for example, Foundations and Walls.", - "categories": [ - "SC_Pillars_C" - ], - "buildMenuPriority": 10, - "className": "Desc_PillarBase_Small_C", - "metadata": {}, - "size": { - "width": null, - "length": null, - "height": 0 - } - }, - "Desc_PillarMiddle_C": { - "slug": "big-metal-pillar", - "name": "Big Metal Pillar", - "description": "Snaps to other Pillars and can be placed on, for example, Foundations and Walls.\n\nSize: 4m x 4m", - "categories": [ - "SC_Pillars_C" - ], - "buildMenuPriority": 2, - "className": "Desc_PillarMiddle_C", - "metadata": {}, - "size": { - "width": null, - "length": null, - "height": 0 - } - }, - "Desc_PillarMiddle_Concrete_C": { - "slug": "big-concrete-pillar-concrete", - "name": "Big Concrete Pillar", - "description": "Snaps to other Pillars and can be placed on, for example, Foundations and Walls.\n\nSize: 4m x 4m", - "categories": [ - "SC_Pillars_C" - ], - "buildMenuPriority": 3, - "className": "Desc_PillarMiddle_Concrete_C", - "metadata": {}, - "size": { - "width": null, - "length": null, - "height": 0 - } - }, - "Desc_PillarMiddle_Frame_C": { - "slug": "big-frame-pillar", - "name": "Big Frame Pillar", - "description": "Snaps to other Pillars and can be placed on, for example, Foundations and Walls.\n\nSize: 4m x 4m", - "categories": [ - "SC_Pillars_C" - ], - "buildMenuPriority": 4, - "className": "Desc_PillarMiddle_Frame_C", - "metadata": {}, - "size": { - "width": null, - "length": null, - "height": 0 - } - }, - "Desc_PillarTop_C": { - "slug": "pillar-top", - "name": "Pillar Top", - "description": "Pillar Top", - "categories": [ - "SC_Pillars_C" - ], - "buildMenuPriority": 1, - "className": "Desc_PillarTop_C", - "metadata": {}, - "size": { - "width": null, - "length": null, - "height": 0 - } - }, - "Desc_Pillar_Small_Concrete_C": { - "slug": "small-concrete-pillar-concrete", - "name": "Small Concrete Pillar", - "description": "Snaps to other Pillars and can be placed on, for example, Foundations and Walls.\n\nSize: 2m x 4m", - "categories": [ - "SC_Pillars_C" - ], - "buildMenuPriority": 13, - "className": "Desc_Pillar_Small_Concrete_C", - "metadata": {}, - "size": { - "width": null, - "length": null, - "height": 0 - } - }, - "Desc_Pillar_Small_Frame_C": { - "slug": "small-frame-pillar", - "name": "Small Frame Pillar", - "description": "Snaps to other Pillars and can be placed on, for example, Foundations and Walls.\n\nSize: 2m x 4m", - "categories": [ - "SC_Pillars_C" - ], - "buildMenuPriority": 14, - "className": "Desc_Pillar_Small_Frame_C", - "metadata": {}, - "size": { - "width": null, - "length": null, - "height": 0 - } - }, - "Desc_Pillar_Small_Metal_C": { - "slug": "small-metal-pillar-metal", - "name": "Small Metal Pillar", - "description": "Snaps to other Pillars and can be placed on, for example, Foundations and Walls.\n\nSize: 2m x 4m", - "categories": [ - "SC_Pillars_C" - ], - "buildMenuPriority": 12, - "className": "Desc_Pillar_Small_Metal_C", - "metadata": {}, - "size": { - "width": null, - "length": null, - "height": 0 - } - }, - "Desc_PipeHyperStart_C": { - "slug": "hypertube-entrance", - "name": "Hypertube Entrance", - "description": "Used to enter and power a Hypertube.", - "categories": [ - "SC_HyperTubes_C" - ], - "buildMenuPriority": 2, - "className": "Desc_PipeHyperStart_C", - "metadata": { - "powerConsumption": 10, - "powerConsumptionExponent": 1.6 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_PipeHyperSupport_C": { - "slug": "hypertube-support", - "name": "Hypertube Support", - "description": "Supports for Hypertubes to allow for longer distances.", - "categories": [], - "buildMenuPriority": 0, - "className": "Desc_PipeHyperSupport_C", - "metadata": {}, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_PipeHyper_C": { - "slug": "hypertube", - "name": "Hypertube", - "description": "Tubes for transporting FICSIT employees.\nA Hypertube Entrance needs to be attached to power and enter a Hypertube system.", - "categories": [ - "SC_HyperTubes_C" - ], - "buildMenuPriority": 1, - "className": "Desc_PipeHyper_C", - "metadata": {}, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_PipeStorageTank_C": { - "slug": "fluid-buffer", - "name": "Fluid Buffer", - "description": "Can contain up to 400m³ of fluid.\nHas an input and output for pipes.", - "categories": [ - "SC_Storage_C" - ], - "buildMenuPriority": 64, - "className": "Desc_PipeStorageTank_C", - "metadata": { - "powerConsumption": 0, - "powerConsumptionExponent": 1.6, - "storageCapacity": 400 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_PipeSupportStackable_C": { - "slug": "stackable-pipeline-support", - "name": "Stackable Pipeline Support", - "description": "Support for pipelines. Can be stacked on other stackable supports.", - "categories": [], - "buildMenuPriority": 0, - "className": "Desc_PipeSupportStackable_C", - "metadata": {}, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_PipelineJunction_Cross_C": { - "slug": "pipeline-junction-cross", - "name": "Pipeline Junction Cross", - "description": "Can be attached to a pipeline to split it 4-way.", - "categories": [ - "SC_Pipes_C" - ], - "buildMenuPriority": 2, - "className": "Desc_PipelineJunction_Cross_C", - "metadata": { - "powerConsumption": 0, - "powerConsumptionExponent": 1.6 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_PipelineMK2_C": { - "slug": "pipeline-mk-2", - "name": "Pipeline Mk.2", - "description": "Outside indicators show volume, flow rate and direction.\nTransports up to 600m³ of fluid per minute.\nUsed to transport fluids.", - "categories": [ - "SC_Pipes_C" - ], - "buildMenuPriority": 1, - "className": "Desc_PipelineMK2_C", - "metadata": { - "flowLimit": 10 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_PipelinePumpMk2_C": { - "slug": "pipeline-pump-mk-2", - "name": "Pipeline Pump Mk.2", - "description": "Can be attached to a Pipeline to apply Head Lift.\nMaximum Head Lift: 50 meters\n(Allows fluids to be transported 50 meters upwards.)\n\nNOTE: Has an in- and output direction.\nNOTE: Head Lift does not stack, so space between Pumps is recommended.", - "categories": [ - "SC_Pipes_C" - ], - "buildMenuPriority": 4, - "className": "Desc_PipelinePumpMk2_C", - "metadata": { - "powerConsumption": 8, - "powerConsumptionExponent": 1.6, - "maxPressure": 50 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_PipelinePump_C": { - "slug": "pipeline-pump-mk-1", - "name": "Pipeline Pump Mk.1", - "description": "Can be attached to a Pipeline to apply Head Lift.\nMaximum Head Lift: 20 meters\n(Allows fluids to be transported 20 meters upwards.)\n\nNOTE: Has an in- and output direction.\nNOTE: Head Lift does not stack, so space between Pumps is recommended.", - "categories": [ - "SC_Pipes_C" - ], - "buildMenuPriority": 3, - "className": "Desc_PipelinePump_C", - "metadata": { - "powerConsumption": 4, - "powerConsumptionExponent": 1.6, - "maxPressure": 20 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_PipelineSupportWallHole_C": { - "slug": "pipeline-wall-hole", - "name": "Pipeline Wall Hole", - "description": "Can be attached to walls, allowing Pipelines to pass through them.", - "categories": [ - "SC_PipeSupport_C" - ], - "buildMenuPriority": 3, - "className": "Desc_PipelineSupportWallHole_C", - "metadata": {}, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_PipelineSupportWall_C": { - "slug": "pipeline-wall-support", - "name": "Pipeline Wall Support", - "description": "Can be attached to walls.\nUsed to connect Pipelines over longer distances.", - "categories": [ - "SC_PipeSupport_C" - ], - "buildMenuPriority": 2, - "className": "Desc_PipelineSupportWall_C", - "metadata": {}, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_PipelineSupport_C": { - "slug": "pipeline-support", - "name": "Pipeline Support", - "description": "Can be used as a connection for pipelines. The height of the support can be adjusted.\nUseful to route pipelines in a more controlled manner and over long distances.", - "categories": [], - "buildMenuPriority": 0, - "className": "Desc_PipelineSupport_C", - "metadata": {}, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_Pipeline_C": { - "slug": "pipeline-mk-1", - "name": "Pipeline Mk.1", - "description": "Outside indicators show volume, flow rate and direction.\nTransports up to 300m³ of fluid per minute.\nUsed to transport fluids.", - "categories": [ - "SC_Pipes_C" - ], - "buildMenuPriority": 0, - "className": "Desc_Pipeline_C", - "metadata": { - "flowLimit": 5 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_PowerLine_C": { - "slug": "power-line", - "name": "Power Line", - "description": "Used to connect Power Poles, Power Generators and Factory buildings.", - "categories": [ - "SC_PowerPoles_C" - ], - "buildMenuPriority": 0, - "className": "Desc_PowerLine_C", - "metadata": { - "lengthPerCost": 2500, - "firstPieceCostMultiplier": 1, - "maxLength": 10000 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_PowerPoleMk1_C": { - "slug": "power-pole-mk-1", - "name": "Power Pole Mk.1", - "description": "Can handle up to 4 Power Line connections.\n\nConnect Power Poles, Power Generators and factory buildings together with Power Lines to create a power grid. The power grid supplies the connected buildings with power.", - "categories": [ - "SC_PowerPoles_C" - ], - "buildMenuPriority": 1, - "className": "Desc_PowerPoleMk1_C", - "metadata": {}, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_PowerPoleMk2_C": { - "slug": "power-pole-mk-2", - "name": "Power Pole Mk.2", - "description": "Can handle up to 7 Power Line connections.\n\nConnect Power Poles, Power Generators and factory buildings together with Power Lines to create a power grid. The power grid supplies the connected buildings with power.", - "categories": [ - "SC_PowerPoles_C" - ], - "buildMenuPriority": 2, - "className": "Desc_PowerPoleMk2_C", - "metadata": {}, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_PowerPoleMk3_C": { - "slug": "power-pole-mk-3", - "name": "Power Pole Mk.3", - "description": "Can handle up to 10 Power Line connections.\n\nConnect Power Poles, Power Generators and factory buildings together with Power Lines to create a power grid. The power grid supplies the connected buildings with power.", - "categories": [ - "SC_PowerPoles_C" - ], - "buildMenuPriority": 3, - "className": "Desc_PowerPoleMk3_C", - "metadata": {}, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_PowerPoleWallDoubleMk2_C": { - "slug": "double-wall-outlet-mk-2", - "name": "Double Wall Outlet Mk.2", - "description": "Power Pole that attaches to a wall. Has one connector on each side of the wall.\n\nCan handle up to 7 Power Line connections.\n\nConnect Power Poles, Power Generators and factory buildings together with Power Lines to create a power grid. The power grid supplies the connected buildings with power.", - "categories": [ - "SC_WallPoles_C" - ], - "buildMenuPriority": 5, - "className": "Desc_PowerPoleWallDoubleMk2_C", - "metadata": {}, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_PowerPoleWallDoubleMk3_C": { - "slug": "double-wall-outlet-mk-3", - "name": "Double Wall Outlet Mk.3", - "description": "Power Pole that attaches to a wall. Has one connector on each side of the wall.\n\nCan handle up to 10 Power Line connections.\n\nConnect Power Poles, Power Generators and factory buildings together with Power Lines to create a power grid. The power grid supplies the connected buildings with power.", - "categories": [ - "SC_WallPoles_C" - ], - "buildMenuPriority": 6, - "className": "Desc_PowerPoleWallDoubleMk3_C", - "metadata": {}, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_PowerPoleWallDouble_C": { - "slug": "double-wall-outlet-mk-1", - "name": "Double Wall Outlet Mk.1", - "description": "Power Pole that attaches to a wall. Has one connector on each side of the wall.\n\nCan handle up to 4 Power Line connections.\n\nConnect Power Poles, Power Generators and factory buildings together with Power Lines to create a power grid. The power grid supplies the connected buildings with power.", - "categories": [ - "SC_WallPoles_C" - ], - "buildMenuPriority": 4, - "className": "Desc_PowerPoleWallDouble_C", - "metadata": {}, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_PowerPoleWallMk2_C": { - "slug": "wall-outlet-mk-2", - "name": "Wall Outlet Mk.2", - "description": "Power Pole that attaches to a wall.\n\nCan handle up to 7 Power Line connections.\n\nConnect Power Poles, Power Generators and factory buildings together with Power Lines to create a power grid. The power grid supplies the connected buildings with power.", - "categories": [ - "SC_WallPoles_C" - ], - "buildMenuPriority": 2, - "className": "Desc_PowerPoleWallMk2_C", - "metadata": {}, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_PowerPoleWallMk3_C": { - "slug": "wall-outlet-mk-3", - "name": "Wall Outlet Mk.3", - "description": "Power Pole that attaches to a wall.\n\nCan handle up to 10 Power Line connections.\n\nConnect Power Poles, Power Generators and factory buildings together with Power Lines to create a power grid. The power grid supplies the connected buildings with power.", - "categories": [ - "SC_WallPoles_C" - ], - "buildMenuPriority": 3, - "className": "Desc_PowerPoleWallMk3_C", - "metadata": {}, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_PowerPoleWall_C": { - "slug": "wall-outlet-mk-1", - "name": "Wall Outlet Mk.1", - "description": "Power Pole that attaches to a wall.\n\nCan handle up to 4 Power Line connections.\n\nConnect Power Poles, Power Generators and factory buildings together with Power Lines to create a power grid. The power grid supplies the connected buildings with power.", - "categories": [ - "SC_WallPoles_C" - ], - "buildMenuPriority": 1, - "className": "Desc_PowerPoleWall_C", - "metadata": {}, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_PowerStorageMk1_C": { - "slug": "power-storage", - "name": "Power Storage", - "description": "Storage Capacity: 100 MWh (100 MW for 1 hour)\nMax Charge Rate: 100 MW\nMax Discharge Rate: Unlimited \n\nCan be connected to a Power Grid to store excess power production. The stored power can be used later in cases of high consumption.", - "categories": [ - "SC_Generators_C" - ], - "buildMenuPriority": 10, - "className": "Desc_PowerStorageMk1_C", - "metadata": { - "powerConsumption": 0, - "powerConsumptionExponent": 1.6 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_PowerSwitch_C": { - "slug": "power-switch", - "name": "Power Switch", - "description": "Can be switched ON/OFF to enable/disable the connection between two Power Grids.\n\nNote the location of the A and B connection.", - "categories": [ - "SC_PowerPoles_C" - ], - "buildMenuPriority": 4, - "className": "Desc_PowerSwitch_C", - "metadata": {}, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_QuarterPipeCorner_01_C": { - "slug": "inner-corner-quarter-pipe", - "name": "Inner Corner Quarter Pipe", - "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 8m x 4m", - "categories": [ - "SC_QuatPipes_C" - ], - "buildMenuPriority": 72, - "className": "Desc_QuarterPipeCorner_01_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 4 - } - }, - "Desc_QuarterPipeCorner_02_C": { - "slug": "inverted-inner-corner-quarter-pipe", - "name": "Inverted Inner Corner Quarter Pipe", - "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 8m x 4m", - "categories": [ - "SC_QuatPipes_C" - ], - "buildMenuPriority": 72, - "className": "Desc_QuarterPipeCorner_02_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 4 - } - }, - "Desc_QuarterPipeCorner_03_C": { - "slug": "outer-corner-quarter-pipe", - "name": "Outer Corner Quarter Pipe", - "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 8m x 4m", - "categories": [ - "SC_QuatPipes_C" - ], - "buildMenuPriority": 72, - "className": "Desc_QuarterPipeCorner_03_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 4 - } - }, - "Desc_QuarterPipeCorner_04_C": { - "slug": "inverted-outer-corner-quarter-pipe", - "name": "Inverted Outer Corner Quarter Pipe", - "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 8m x 4m", - "categories": [ - "SC_QuatPipes_C" - ], - "buildMenuPriority": 72, - "className": "Desc_QuarterPipeCorner_04_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 4 - } - }, - "Desc_QuarterPipe_02_C": { - "slug": "inverted-quarter-pipe", - "name": "Inverted Quarter Pipe", - "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 8m x 4m", - "categories": [ - "SC_QuatPipes_C" - ], - "buildMenuPriority": 72, - "className": "Desc_QuarterPipe_02_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 4 - } - }, - "Desc_QuarterPipe_C": { - "slug": "quarter-pipe", - "name": "Quarter Pipe", - "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 8m x 4m", - "categories": [ - "SC_QuatPipes_C" - ], - "buildMenuPriority": 72, - "className": "Desc_QuarterPipe_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 4 - } - }, - "Desc_RadarTower_C": { - "slug": "radar-tower", - "name": "Radar Tower", - "description": "Reveals an area around itself on the map. The area is gradually revealed over time up to a maximum.\nPlacing the tower higher up increases the maximum area revealed.", - "categories": [ - "SC_Towers_C" - ], - "buildMenuPriority": 60, - "className": "Desc_RadarTower_C", - "metadata": { - "powerConsumption": 30, - "powerConsumptionExponent": 1.6 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_Railing_01_C": { - "slug": "modern-railing", - "name": "Modern Railing", - "description": "Railings can be built on Foundations to create a safer working environment.\n\nThis particular Railing is 4 meters long and angles automatically when built on Ramps.", - "categories": [ - "SC_Attach_C" - ], - "buildMenuPriority": 1, - "className": "Desc_Railing_01_C", - "metadata": {}, - "size": { - "width": 4, - "length": 0, - "height": 1 - } - }, - "Desc_RailroadBlockSignal_C": { - "slug": "block-signal", - "name": "Block Signal", - "description": "Train Signals are used to direct the movement of Trains to avoid collisions and bottlenecks.\n\nBlock Signals can be placed on Railways to create 'Blocks' between each other. When a Train is occupying such a Block, other Trains will be unable to enter it.\n\nCaution: Signals are directional! Trains are unable to move against this direction, so be sure to set up Signals in both directions for bi-directional Railways.", - "categories": [ - "SC_Trains_C" - ], - "buildMenuPriority": 54, - "className": "Desc_RailroadBlockSignal_C", - "metadata": {}, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_RailroadPathSignal_C": { - "slug": "path-signal", - "name": "Path Signal", - "description": "Train Signals are used to direct the movement of Trains to avoid collisions and bottlenecks.\n\nPath Signals are advanced signals that are especially useful for bi-directional Railways and complex intersections. They function similarly to Block Signals but rather than occupying the entire Block, Trains can reserve a specific path through it and will only enter the Block if their path allows them to fully pass through it.\n\nCaution: Signals are directional! Trains are unable to move against this direction, so be sure to set up Signals in both directions for bi-directional Railways.", - "categories": [ - "SC_Trains_C" - ], - "buildMenuPriority": 54, - "className": "Desc_RailroadPathSignal_C", - "metadata": {}, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_RailroadTrack_C": { - "slug": "railway", - "name": "Railway", - "description": "Used to transport trains in a reliable and fast manner.\nHas a wide turn angle so make sure to plan it out properly.", - "categories": [ - "SC_Trains_C" - ], - "buildMenuPriority": 53, - "className": "Desc_RailroadTrack_C", - "metadata": {}, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_RampDouble_8x1_C": { - "slug": "double-ramp-2m", - "name": "Double Ramp 2m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 10, - "className": "Desc_RampDouble_8x1_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 1 - } - }, - "Desc_RampDouble_Asphalt_8x1_C": { - "slug": "double-ramp-2m-asphalt", - "name": "Double Ramp 2m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 11, - "className": "Desc_RampDouble_Asphalt_8x1_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 1 - } - }, - "Desc_RampDouble_Asphalt_8x2_C": { - "slug": "double-ramp-4m-asphalt", - "name": "Double Ramp 4m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 10, - "className": "Desc_RampDouble_Asphalt_8x2_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 2 - } - }, - "Desc_RampDouble_Asphalt_8x4_C": { - "slug": "double-ramp-8m-asphalt", - "name": "Double Ramp 8m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 12, - "className": "Desc_RampDouble_Asphalt_8x4_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 4 - } - }, - "Desc_RampDouble_C": { - "slug": "double-ramp-4m", - "name": "Double Ramp 4m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 11, - "className": "Desc_RampDouble_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 2 - } - }, - "Desc_RampDouble_Concrete_8x1_C": { - "slug": "double-ramp-2m-concrete", - "name": "Double Ramp 2m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 11, - "className": "Desc_RampDouble_Concrete_8x1_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 1 - } - }, - "Desc_RampDouble_Concrete_8x2_C": { - "slug": "double-ramp-4m-concrete", - "name": "Double Ramp 4m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 10, - "className": "Desc_RampDouble_Concrete_8x2_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 2 - } - }, - "Desc_RampDouble_Concrete_8x4_C": { - "slug": "double-ramp-8m-concrete", - "name": "Double Ramp 8m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 12, - "className": "Desc_RampDouble_Concrete_8x4_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 4 - } - }, - "Desc_RampDouble_Metal_8x1_C": { - "slug": "double-ramp-2m-metal", - "name": "Double Ramp 2m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 11, - "className": "Desc_RampDouble_Metal_8x1_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 1 - } - }, - "Desc_RampDouble_Metal_8x2_C": { - "slug": "double-ramp-4m-metal", - "name": "Double Ramp 4m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 10, - "className": "Desc_RampDouble_Metal_8x2_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 2 - } - }, - "Desc_RampDouble_Metal_8x4_C": { - "slug": "double-ramp-8m-metal", - "name": "Double Ramp 8m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 12, - "className": "Desc_RampDouble_Metal_8x4_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 4 - } - }, - "Desc_RampDouble_Polished_8x1_C": { - "slug": "double-ramp-2m-polished", - "name": "Double Ramp 2m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 11, - "className": "Desc_RampDouble_Polished_8x1_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 1 - } - }, - "Desc_RampDouble_Polished_8x2_C": { - "slug": "double-ramp-4m-polished", - "name": "Double Ramp 4m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 10, - "className": "Desc_RampDouble_Polished_8x2_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 2 - } - }, - "Desc_RampDouble_Polished_8x4_C": { - "slug": "double-ramp-8m-polished", - "name": "Double Ramp 8m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 12, - "className": "Desc_RampDouble_Polished_8x4_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 4 - } - }, - "Desc_RampInverted_8x1_C": { - "slug": "inv-ramp-1m", - "name": "Inv. Ramp 1m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", - "categories": [ - "SC_Inverted_C" - ], - "buildMenuPriority": 1, - "className": "Desc_RampInverted_8x1_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 1 - } - }, - "Desc_RampInverted_8x1_Corner_01_C": { - "slug": "inv-up-corner-1m", - "name": "Inv. Up Corner 1m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", - "categories": [ - "SC_Inverted_C" - ], - "buildMenuPriority": 4, - "className": "Desc_RampInverted_8x1_Corner_01_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 1 - } - }, - "Desc_RampInverted_8x1_Corner_02_C": { - "slug": "inv-down-corner-1m", - "name": "Inv. Down Corner 1m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", - "categories": [ - "SC_Inverted_C" - ], - "buildMenuPriority": 7, - "className": "Desc_RampInverted_8x1_Corner_02_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 1 - } - }, - "Desc_RampInverted_8x2_01_C": { - "slug": "inv-ramp-2m", - "name": "Inv. Ramp 2m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", - "categories": [ - "SC_Inverted_C" - ], - "buildMenuPriority": 2, - "className": "Desc_RampInverted_8x2_01_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 2 - } - }, - "Desc_RampInverted_8x2_Corner_01_C": { - "slug": "inv-up-corner-2m", - "name": "Inv. Up Corner 2m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", - "categories": [ - "SC_Inverted_C" - ], - "buildMenuPriority": 5, - "className": "Desc_RampInverted_8x2_Corner_01_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 2 - } - }, - "Desc_RampInverted_8x2_Corner_02_C": { - "slug": "inv-down-corner-2m", - "name": "Inv. Down Corner 2m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", - "categories": [ - "SC_Inverted_C" - ], - "buildMenuPriority": 8, - "className": "Desc_RampInverted_8x2_Corner_02_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 2 - } - }, - "Desc_RampInverted_8x4_Corner_01_C": { - "slug": "inv-up-corner-4m", - "name": "Inv. Up Corner 4m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", - "categories": [ - "SC_Inverted_C" - ], - "buildMenuPriority": 6, - "className": "Desc_RampInverted_8x4_Corner_01_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 4 - } - }, - "Desc_RampInverted_8x4_Corner_02_C": { - "slug": "inv-down-corner-4m", - "name": "Inv. Down Corner 4m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", - "categories": [ - "SC_Inverted_C" - ], - "buildMenuPriority": 9, - "className": "Desc_RampInverted_8x4_Corner_02_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 4 - } - }, - "Desc_Ramp_8x1_01_C": { - "slug": "ramp-1m", - "name": "Ramp 1m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 1, - "className": "Desc_Ramp_8x1_01_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 1 - } - }, - "Desc_Ramp_8x2_01_C": { - "slug": "ramp-2m", - "name": "Ramp 2m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 2, - "className": "Desc_Ramp_8x2_01_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 2 - } - }, - "Desc_Ramp_8x4_01_C": { - "slug": "ramp-4m", - "name": "Ramp 4m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 3, - "className": "Desc_Ramp_8x4_01_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 4 - } - }, - "Desc_Ramp_8x4_Inverted_01_C": { - "slug": "inv-ramp-4m", - "name": "Inv. Ramp 4m", - "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", - "categories": [ - "SC_Inverted_C" - ], - "buildMenuPriority": 3, - "className": "Desc_Ramp_8x4_Inverted_01_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 4 - } - }, - "Desc_Ramp_8x8x8_C": { - "slug": "double-ramp-8m", - "name": "Double Ramp 8m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 8m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 12, - "className": "Desc_Ramp_8x8x8_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 4 - } - }, - "Desc_Ramp_Asphalt_8x1_C": { - "slug": "ramp-1m-asphalt", - "name": "Ramp 1m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 1, - "className": "Desc_Ramp_Asphalt_8x1_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 1 - } - }, - "Desc_Ramp_Asphalt_8x2_C": { - "slug": "ramp-2m-asphalt", - "name": "Ramp 2m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 2, - "className": "Desc_Ramp_Asphalt_8x2_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 2 - } - }, - "Desc_Ramp_Asphalt_8x4_C": { - "slug": "ramp-4m-asphalt", - "name": "Ramp 4m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 3, - "className": "Desc_Ramp_Asphalt_8x4_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 4 - } - }, - "Desc_Ramp_Concrete_8x1_C": { - "slug": "ramp-1m-concrete", - "name": "Ramp 1m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 1, - "className": "Desc_Ramp_Concrete_8x1_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 1 - } - }, - "Desc_Ramp_Concrete_8x2_C": { - "slug": "ramp-2m-concrete", - "name": "Ramp 2m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 2, - "className": "Desc_Ramp_Concrete_8x2_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 2 - } - }, - "Desc_Ramp_Concrete_8x4_C": { - "slug": "ramp-4m-concrete", - "name": "Ramp 4m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 3, - "className": "Desc_Ramp_Concrete_8x4_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 4 - } - }, - "Desc_Ramp_Diagonal_8x1_01_C": { - "slug": "down-corner-ramp-1m", - "name": "Down Corner Ramp 1m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 7, - "className": "Desc_Ramp_Diagonal_8x1_01_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 1 - } - }, - "Desc_Ramp_Diagonal_8x1_02_C": { - "slug": "up-corner-ramp-1m", - "name": "Up Corner Ramp 1m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 4, - "className": "Desc_Ramp_Diagonal_8x1_02_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 1 - } - }, - "Desc_Ramp_Diagonal_8x2_01_C": { - "slug": "down-corner-ramp-2m", - "name": "Down Corner Ramp 2m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 9, - "className": "Desc_Ramp_Diagonal_8x2_01_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 2 - } - }, - "Desc_Ramp_Diagonal_8x2_02_C": { - "slug": "up-corner-ramp-2m", - "name": "Up Corner Ramp 2m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 5, - "className": "Desc_Ramp_Diagonal_8x2_02_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 2 - } - }, - "Desc_Ramp_Diagonal_8x4_01_C": { - "slug": "down-corner-ramp-4m", - "name": "Down Corner Ramp 4m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 8, - "className": "Desc_Ramp_Diagonal_8x4_01_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 4 - } - }, - "Desc_Ramp_Diagonal_8x4_02_C": { - "slug": "up-corner-ramp-4m", - "name": "Up Corner Ramp 4m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 6, - "className": "Desc_Ramp_Diagonal_8x4_02_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 4 - } - }, - "Desc_Ramp_DownCorner_Asphalt_8x1_C": { - "slug": "down-corner-ramp-1m-asphalt", - "name": "Down Corner Ramp 1m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 7, - "className": "Desc_Ramp_DownCorner_Asphalt_8x1_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 1 - } - }, - "Desc_Ramp_DownCorner_Asphalt_8x2_C": { - "slug": "down-corner-ramp-2m-asphalt", - "name": "Down Corner Ramp 2m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 9, - "className": "Desc_Ramp_DownCorner_Asphalt_8x2_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 2 - } - }, - "Desc_Ramp_DownCorner_Asphalt_8x4_C": { - "slug": "down-corner-ramp-4m-asphalt", - "name": "Down Corner Ramp 4m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 8, - "className": "Desc_Ramp_DownCorner_Asphalt_8x4_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 4 - } - }, - "Desc_Ramp_DownCorner_Concrete_8x1_C": { - "slug": "down-corner-ramp-1m-concrete", - "name": "Down Corner Ramp 1m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 7, - "className": "Desc_Ramp_DownCorner_Concrete_8x1_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 1 - } - }, - "Desc_Ramp_DownCorner_Concrete_8x2_C": { - "slug": "down-corner-ramp-2m-concrete", - "name": "Down Corner Ramp 2m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 9, - "className": "Desc_Ramp_DownCorner_Concrete_8x2_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 2 - } - }, - "Desc_Ramp_DownCorner_Concrete_8x4_C": { - "slug": "down-corner-ramp-4m-concrete", - "name": "Down Corner Ramp 4m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 8, - "className": "Desc_Ramp_DownCorner_Concrete_8x4_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 4 - } - }, - "Desc_Ramp_DownCorner_Metal_8x1_C": { - "slug": "down-corner-ramp-1m-metal", - "name": "Down Corner Ramp 1m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 7, - "className": "Desc_Ramp_DownCorner_Metal_8x1_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 1 - } - }, - "Desc_Ramp_DownCorner_Metal_8x2_C": { - "slug": "down-corner-ramp-2m-metal", - "name": "Down Corner Ramp 2m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 9, - "className": "Desc_Ramp_DownCorner_Metal_8x2_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 2 - } - }, - "Desc_Ramp_DownCorner_Metal_8x4_C": { - "slug": "down-corner-ramp-4m-metal", - "name": "Down Corner Ramp 4m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 8, - "className": "Desc_Ramp_DownCorner_Metal_8x4_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 4 - } - }, - "Desc_Ramp_DownCorner_Polished_8x1_C": { - "slug": "down-corner-ramp-1m-polished", - "name": "Down Corner Ramp 1m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 7, - "className": "Desc_Ramp_DownCorner_Polished_8x1_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 1 - } - }, - "Desc_Ramp_DownCorner_Polished_8x2_C": { - "slug": "down-corner-ramp-2m-polished", - "name": "Down Corner Ramp 2m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 9, - "className": "Desc_Ramp_DownCorner_Polished_8x2_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 2 - } - }, - "Desc_Ramp_DownCorner_Polished_8x4_C": { - "slug": "down-corner-ramp-4m-polished", - "name": "Down Corner Ramp 4m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 8, - "className": "Desc_Ramp_DownCorner_Polished_8x4_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 4 - } - }, - "Desc_Ramp_Frame_01_C": { - "slug": "frame-ramp", - "name": "Frame Ramp", - "description": "Snaps to other structural buildings.\nFrames provide a more open factory aesthetic.\n\nSize: 8m x 4m", - "categories": [ - "SC_Frames_C" - ], - "buildMenuPriority": 4, - "className": "Desc_Ramp_Frame_01_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 4 - } - }, - "Desc_Ramp_Frame_Inverted_01_C": { - "slug": "inverted-frame-ramp", - "name": "Inverted Frame Ramp", - "description": "Snaps to other structural buildings.\nFrames provide a more open factory aesthetic.\n\nSize: 8m x 4m", - "categories": [ - "SC_Frames_C" - ], - "buildMenuPriority": 5, - "className": "Desc_Ramp_Frame_Inverted_01_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 4 - } - }, - "Desc_Ramp_Metal_8x1_C": { - "slug": "ramp-1m-metal", - "name": "Ramp 1m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 1, - "className": "Desc_Ramp_Metal_8x1_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 1 - } - }, - "Desc_Ramp_Metal_8x2_C": { - "slug": "ramp-2m-metal", - "name": "Ramp 2m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 2, - "className": "Desc_Ramp_Metal_8x2_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 2 - } - }, - "Desc_Ramp_Metal_8x4_C": { - "slug": "ramp-4m-metal", - "name": "Ramp 4m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 3, - "className": "Desc_Ramp_Metal_8x4_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 4 - } - }, - "Desc_Ramp_Polished_8x1_C": { - "slug": "ramp-1m-polished", - "name": "Ramp 1m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 1, - "className": "Desc_Ramp_Polished_8x1_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 1 - } - }, - "Desc_Ramp_Polished_8x2_C": { - "slug": "ramp-2m-polished", - "name": "Ramp 2m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 2, - "className": "Desc_Ramp_Polished_8x2_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 2 - } - }, - "Desc_Ramp_Polished_8x4_C": { - "slug": "ramp-4m-polished", - "name": "Ramp 4m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 3, - "className": "Desc_Ramp_Polished_8x4_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 4 - } - }, - "Desc_Ramp_UpCorner_Asphalt_8x1_C": { - "slug": "up-corner-ramp-1m-asphalt", - "name": "Up Corner Ramp 1m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 4, - "className": "Desc_Ramp_UpCorner_Asphalt_8x1_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 1 - } - }, - "Desc_Ramp_UpCorner_Asphalt_8x2_C": { - "slug": "up-corner-ramp-2m-asphalt", - "name": "Up Corner Ramp 2m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 5, - "className": "Desc_Ramp_UpCorner_Asphalt_8x2_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 2 - } - }, - "Desc_Ramp_UpCorner_Asphalt_8x4_C": { - "slug": "up-corner-ramp-4m-asphalt", - "name": "Up Corner Ramp 4m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 6, - "className": "Desc_Ramp_UpCorner_Asphalt_8x4_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 4 - } - }, - "Desc_Ramp_UpCorner_Concrete_8x1_C": { - "slug": "up-corner-ramp-1m-concrete", - "name": "Up Corner Ramp 1m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 4, - "className": "Desc_Ramp_UpCorner_Concrete_8x1_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 1 - } - }, - "Desc_Ramp_UpCorner_Concrete_8x2_C": { - "slug": "up-corner-ramp-2m-concrete", - "name": "Up Corner Ramp 2m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 5, - "className": "Desc_Ramp_UpCorner_Concrete_8x2_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 2 - } - }, - "Desc_Ramp_UpCorner_Concrete_8x4_C": { - "slug": "up-corner-ramp-4m-concrete", - "name": "Up Corner Ramp 4m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 6, - "className": "Desc_Ramp_UpCorner_Concrete_8x4_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 4 - } - }, - "Desc_Ramp_UpCorner_Metal_8x1_C": { - "slug": "up-corner-ramp-1m-metal", - "name": "Up Corner Ramp 1m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 4, - "className": "Desc_Ramp_UpCorner_Metal_8x1_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 1 - } - }, - "Desc_Ramp_UpCorner_Metal_8x2_C": { - "slug": "up-corner-ramp-2m-metal", - "name": "Up Corner Ramp 2m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 5, - "className": "Desc_Ramp_UpCorner_Metal_8x2_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 2 - } - }, - "Desc_Ramp_UpCorner_Metal_8x4_C": { - "slug": "up-corner-ramp-4m-metal", - "name": "Up Corner Ramp 4m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 6, - "className": "Desc_Ramp_UpCorner_Metal_8x4_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 4 - } - }, - "Desc_Ramp_UpCorner_Polished_8x1_C": { - "slug": "up-corner-ramp-1m-polished", - "name": "Up Corner Ramp 1m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 4, - "className": "Desc_Ramp_UpCorner_Polished_8x1_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 1 - } - }, - "Desc_Ramp_UpCorner_Polished_8x2_C": { - "slug": "up-corner-ramp-2m-polished", - "name": "Up Corner Ramp 2m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 5, - "className": "Desc_Ramp_UpCorner_Polished_8x2_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 2 - } - }, - "Desc_Ramp_UpCorner_Polished_8x4_C": { - "slug": "up-corner-ramp-4m-polished", - "name": "Up Corner Ramp 4m", - "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", - "categories": [ - "SC_Ramps_C" - ], - "buildMenuPriority": 6, - "className": "Desc_Ramp_UpCorner_Polished_8x4_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 4 - } - }, - "Desc_ResourceSinkShop_C": { - "slug": "awesome-shop", - "name": "AWESOME Shop", - "description": "Redeem your FICSIT Coupons here! \nFor those employees going the extra kilometer we have set aside special bonus milestones and rewards! Get your Coupons in the AWESOME Sink program now!\n\n*No refunds possible.", - "categories": [ - "SC_Special_C" - ], - "buildMenuPriority": 40, - "className": "Desc_ResourceSinkShop_C", - "metadata": { - "powerConsumption": 0, - "powerConsumptionExponent": 1.6 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_ResourceSink_C": { - "slug": "awesome-sink", - "name": "AWESOME Sink", - "description": "Got excess resources? Fear not, for FICSIT does not waste! The newly developed AWESOME Sink turns any useful part straight into research data, as fast as you can supply it! \nParticipating pioneers will be compensated with Coupons to be spend at the AWESOME Shop.", - "categories": [ - "SC_Special_C" - ], - "buildMenuPriority": 36, - "className": "Desc_ResourceSink_C", - "metadata": { - "powerConsumption": 30, - "powerConsumptionExponent": 1.6 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_Roof_A_01_C": { - "slug": "metal-roof-flat", - "name": "Metal Roof Flat", - "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8m x flat", - "categories": [ - "SC_Roofs_C" - ], - "buildMenuPriority": 4, - "className": "Desc_Roof_A_01_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 0 - } - }, - "Desc_Roof_A_02_C": { - "slug": "metal-roof-1m", - "name": "Metal Roof 1m", - "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8m x 1m", - "categories": [ - "SC_Roofs_C" - ], - "buildMenuPriority": 3, - "className": "Desc_Roof_A_02_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 1 - } - }, - "Desc_Roof_A_03_C": { - "slug": "metal-roof-2m", - "name": "Metal Roof 2m", - "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8m x 2m", - "categories": [ - "SC_Roofs_C" - ], - "buildMenuPriority": 2, - "className": "Desc_Roof_A_03_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 2 - } - }, - "Desc_Roof_A_04_C": { - "slug": "metal-roof-4m", - "name": "Metal Roof 4m", - "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8m x 4m", - "categories": [ - "SC_Roofs_C" - ], - "buildMenuPriority": 1, - "className": "Desc_Roof_A_04_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 4 - } - }, - "Desc_Roof_Orange_01_C": { - "slug": "ficsit-roof-flat", - "name": "FICSIT Roof Flat", - "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8m x flat", - "categories": [ - "SC_Roofs_C" - ], - "buildMenuPriority": 12, - "className": "Desc_Roof_Orange_01_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 0 - } - }, - "Desc_Roof_Orange_02_C": { - "slug": "ficsit-roof-1m", - "name": "FICSIT Roof 1m", - "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8m x 1m", - "categories": [ - "SC_Roofs_C" - ], - "buildMenuPriority": 11, - "className": "Desc_Roof_Orange_02_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 1 - } - }, - "Desc_Roof_Orange_03_C": { - "slug": "ficsit-roof-2m", - "name": "FICSIT Roof 2m", - "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8m x 2m", - "categories": [ - "SC_Roofs_C" - ], - "buildMenuPriority": 10, - "className": "Desc_Roof_Orange_03_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 2 - } - }, - "Desc_Roof_Orange_04_C": { - "slug": "ficsit-roof-4m", - "name": "FICSIT Roof 4m", - "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8m x 4m", - "categories": [ - "SC_Roofs_C" - ], - "buildMenuPriority": 9, - "className": "Desc_Roof_Orange_04_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 4 - } - }, - "Desc_Roof_Tar_01_C": { - "slug": "tar-roof-flat", - "name": "Tar Roof Flat", - "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8m x flat", - "categories": [ - "SC_Roofs_C" - ], - "buildMenuPriority": 8, - "className": "Desc_Roof_Tar_01_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 0 - } - }, - "Desc_Roof_Tar_02_C": { - "slug": "tar-roof-1m", - "name": "Tar Roof 1m", - "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8m x 1m", - "categories": [ - "SC_Roofs_C" - ], - "buildMenuPriority": 7, - "className": "Desc_Roof_Tar_02_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 1 - } - }, - "Desc_Roof_Tar_03_C": { - "slug": "tar-roof-2m", - "name": "Tar Roof 2m", - "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8m x 2m", - "categories": [ - "SC_Roofs_C" - ], - "buildMenuPriority": 6, - "className": "Desc_Roof_Tar_03_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 2 - } - }, - "Desc_Roof_Tar_04_C": { - "slug": "tar-roof-4m", - "name": "Tar Roof 4m", - "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8m x 4m", - "categories": [ - "SC_Roofs_C" - ], - "buildMenuPriority": 5, - "className": "Desc_Roof_Tar_04_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 4 - } - }, - "Desc_Roof_Window_01_C": { - "slug": "glass-roof-flat", - "name": "Glass Roof Flat", - "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8m x flat", - "categories": [ - "SC_Roofs_C" - ], - "buildMenuPriority": 16, - "className": "Desc_Roof_Window_01_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 0 - } - }, - "Desc_Roof_Window_02_C": { - "slug": "glass-roof-1m", - "name": "Glass Roof 1m", - "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8m x 1m", - "categories": [ - "SC_Roofs_C" - ], - "buildMenuPriority": 15, - "className": "Desc_Roof_Window_02_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 1 - } - }, - "Desc_Roof_Window_03_C": { - "slug": "glass-roof-2m", - "name": "Glass Roof 2m", - "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8m x 2m", - "categories": [ - "SC_Roofs_C" - ], - "buildMenuPriority": 14, - "className": "Desc_Roof_Window_03_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 2 - } - }, - "Desc_Roof_Window_04_C": { - "slug": "glass-roof-4m", - "name": "Glass Roof 4m", - "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8m x 4m", - "categories": [ - "SC_Roofs_C" - ], - "buildMenuPriority": 13, - "className": "Desc_Roof_Window_04_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 4 - } - }, - "Desc_SmelterMk1_C": { - "slug": "smelter", - "name": "Smelter", - "description": "Smelts ore into ingots.\n\nCan be automated by feeding ore into it with a conveyor belt connected to the input. The produced ingots can be automatically extracted by connecting a conveyor belt to the output.", - "categories": [ - "SC_Smelters_C" - ], - "buildMenuPriority": 6, - "className": "Desc_SmelterMk1_C", - "metadata": { - "powerConsumption": 4, - "powerConsumptionExponent": 1.6, - "manufacturingSpeed": 1 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_SpaceElevator_C": { - "slug": "space-elevator", - "name": "Space Elevator", - "description": "Requires deliveries of special Project Parts to complete Phases of Project Assembly.\nCompleting Phases in the Space Elevator will unlock new Tiers in the HUB Terminal.", - "categories": [ - "SC_Special_C" - ], - "buildMenuPriority": 35, - "className": "Desc_SpaceElevator_C", - "metadata": { - "powerConsumption": 0, - "powerConsumptionExponent": 1.6 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_Stairs_Left_01_C": { - "slug": "stairs-left", - "name": "Stairs Left", - "description": "Snaps to foundations.\nMakes it easier to get to other floors of your structures.", - "categories": [ - "SC_Attach_C" - ], - "buildMenuPriority": 6, - "className": "Desc_Stairs_Left_01_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 2 - } - }, - "Desc_Stairs_Right_01_C": { - "slug": "stairs-right", - "name": "Stairs Right", - "description": "Snaps to foundations.\nMakes it easier to get to other floors of your structures.", - "categories": [ - "SC_Attach_C" - ], - "buildMenuPriority": 7, - "className": "Desc_Stairs_Right_01_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 2 - } - }, - "Desc_StandaloneWidgetSign_Huge_C": { - "slug": "large-billboard", - "name": "Large Billboard", - "description": "Signs can be customized with different elements, such as icons and text, to improve factory organization.\n\nCan be placed freely, on Walls, or attached to a variety of buildings, such as Storage Containers.\n\nSize: 16m x 8m", - "categories": [ - "SC_Signs_C" - ], - "buildMenuPriority": 45, - "className": "Desc_StandaloneWidgetSign_Huge_C", - "metadata": {}, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_StandaloneWidgetSign_Large_C": { - "slug": "small-billboard", - "name": "Small Billboard", - "description": "Signs can be customized with different elements, such as icons and text, to improve factory organization.\n\nCan be placed freely, on Walls, or attached to a variety of buildings, such as Storage Containers.\n\nSize: 8m x 4m", - "categories": [ - "SC_Signs_C" - ], - "buildMenuPriority": 45, - "className": "Desc_StandaloneWidgetSign_Large_C", - "metadata": {}, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_StandaloneWidgetSign_Medium_C": { - "slug": "display-sign", - "name": "Display Sign", - "description": "Signs can be customized with different elements, such as icons and text, to improve factory organization.\n\nCan be placed freely, on Walls, or attached to a variety of buildings, such as Storage Containers.\n\nSize: 2m x 1m", - "categories": [ - "SC_Signs_C" - ], - "buildMenuPriority": 45, - "className": "Desc_StandaloneWidgetSign_Medium_C", - "metadata": {}, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_StandaloneWidgetSign_Portrait_C": { - "slug": "portrait-sign", - "name": "Portrait Sign", - "description": "Signs can be customized with different elements, such as icons and text, to improve factory organization.\n\nCan be placed freely, on Walls, or attached to a variety of buildings, such as Storage Containers.\n\nSize: 2m x 3m", - "categories": [ - "SC_Signs_C" - ], - "buildMenuPriority": 45, - "className": "Desc_StandaloneWidgetSign_Portrait_C", - "metadata": {}, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_StandaloneWidgetSign_SmallVeryWide_C": { - "slug": "label-sign-4m", - "name": "Label Sign 4m", - "description": "Signs can be customized with different elements, such as icons and text, to improve factory organization.\n\nCan be placed freely, on Walls, or attached to a variety of buildings, such as Storage Containers.\n\nSize: 4m x 0.5m", - "categories": [ - "SC_Signs_C" - ], - "buildMenuPriority": 45, - "className": "Desc_StandaloneWidgetSign_SmallVeryWide_C", - "metadata": {}, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_StandaloneWidgetSign_SmallWide_C": { - "slug": "label-sign-3m", - "name": "Label Sign 3m", - "description": "Signs can be customized with different elements, such as icons and text, to improve factory organization.\n\nCan be placed freely, on Walls, or attached to a variety of buildings, such as Storage Containers.\n\nSize: 3m x 0.5m", - "categories": [ - "SC_Signs_C" - ], - "buildMenuPriority": 45, - "className": "Desc_StandaloneWidgetSign_SmallWide_C", - "metadata": {}, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_StandaloneWidgetSign_Small_C": { - "slug": "label-sign-2m", - "name": "Label Sign 2m", - "description": "Signs can be customized with different elements, such as icons and text, to improve factory organization.\n\nCan be placed freely, on Walls, or attached to a variety of buildings, such as Storage Containers.\n\nSize: 2m x 0.5m", - "categories": [ - "SC_Signs_C" - ], - "buildMenuPriority": 45, - "className": "Desc_StandaloneWidgetSign_Small_C", - "metadata": {}, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_StandaloneWidgetSign_Square_C": { - "slug": "square-sign-2m", - "name": "Square Sign 2m", - "description": "Signs can be customized with different elements, such as icons and text, to improve factory organization.\n\nCan be placed freely, on Walls, or attached to a variety of buildings, such as Storage Containers.\n\nSize: 2m x 2m", - "categories": [ - "SC_Signs_C" - ], - "buildMenuPriority": 45, - "className": "Desc_StandaloneWidgetSign_Square_C", - "metadata": {}, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_StandaloneWidgetSign_Square_Small_C": { - "slug": "square-sign-1m", - "name": "Square Sign 1m", - "description": "Signs can be customized with different elements, such as icons and text, to improve factory organization.\n\nCan be placed freely, on Walls, or attached to a variety of buildings, such as Storage Containers.\n\nSize: 1m x 1m", - "categories": [ - "SC_Signs_C" - ], - "buildMenuPriority": 45, - "className": "Desc_StandaloneWidgetSign_Square_Small_C", - "metadata": {}, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_StandaloneWidgetSign_Square_Tiny_C": { - "slug": "square-sign-0-5m", - "name": "Square Sign 0.5m", - "description": "Signs can be customized with different elements, such as icons and text, to improve factory organization.\n\nCan be placed freely, on Walls, or attached to a variety of buildings, such as Storage Containers.\n\nSize: 0.5m x 0.5m", - "categories": [ - "SC_Signs_C" - ], - "buildMenuPriority": 45, - "className": "Desc_StandaloneWidgetSign_Square_Tiny_C", - "metadata": {}, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_SteelWall_8x1_C": { - "slug": "basic-wall-1m-steel", - "name": "Basic Wall 1m", - "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 1m", - "categories": [ - "SC_Walls_C" - ], - "buildMenuPriority": 4, - "className": "Desc_SteelWall_8x1_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 1 - } - }, - "Desc_SteelWall_8x4_C": { - "slug": "tilted-wall-4m-steel", - "name": "Tilted Wall 4m", - "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 4m", - "categories": [ - "SC_Walls_C" - ], - "buildMenuPriority": 3, - "className": "Desc_SteelWall_8x4_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 4 - } - }, - "Desc_SteelWall_8x4_Gate_01_C": { - "slug": "gate-hole-wall-steel", - "name": "Gate Hole Wall", - "description": "The gate allows Pioneers to pass through the wall.\nSnaps to foundations and other walls.\n\nSize: 8m x 4m", - "categories": [ - "SC_Doors_C" - ], - "buildMenuPriority": 3, - "className": "Desc_SteelWall_8x4_Gate_01_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 4 - } - }, - "Desc_SteelWall_8x4_Window_01_C": { - "slug": "single-window-steel", - "name": "Single Window", - "description": "Snaps to Foundations and other Walls.\nThe windows allow Pioneers to see through the wall.\n\nSize: 8m x 4m", - "categories": [ - "SC_Windows_C" - ], - "buildMenuPriority": 4, - "className": "Desc_SteelWall_8x4_Window_01_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 4 - } - }, - "Desc_SteelWall_8x4_Window_02_C": { - "slug": "reinforced-window-steel", - "name": "Reinforced Window", - "description": "Snaps to Foundations and other Walls.\nThe windows allow Pioneers to see through the wall.\n\nSize: 8m x 4m", - "categories": [ - "SC_Windows_C" - ], - "buildMenuPriority": 4, - "className": "Desc_SteelWall_8x4_Window_02_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 4 - } - }, - "Desc_SteelWall_8x4_Window_03_C": { - "slug": "frame-window-steel", - "name": "Frame Window", - "description": "Snaps to Foundations and other Walls.\nThe windows allow Pioneers to see through the wall.\n\nSize: 8m x 4m", - "categories": [ - "SC_Windows_C" - ], - "buildMenuPriority": 4, - "className": "Desc_SteelWall_8x4_Window_03_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 4 - } - }, - "Desc_SteelWall_8x4_Window_04_C": { - "slug": "panel-window-steel", - "name": "Panel Window", - "description": "Snaps to Foundations and other Walls.\nThe windows allow Pioneers to see through the wall.\n\nSize: 8m x 4m", - "categories": [ - "SC_Windows_C" - ], - "buildMenuPriority": 4, - "className": "Desc_SteelWall_8x4_Window_04_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 4 - } - }, - "Desc_SteelWall_FlipTris_8x1_C": { - "slug": "inv-ramp-wall-1m-steel", - "name": "Inv. Ramp Wall 1m", - "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 1m", - "categories": [ - "SC_UpperDiagonalWalls_C" - ], - "buildMenuPriority": 5, - "className": "Desc_SteelWall_FlipTris_8x1_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 1 - } - }, - "Desc_SteelWall_FlipTris_8x2_C": { - "slug": "inv-ramp-wall-2m-steel", - "name": "Inv. Ramp Wall 2m", - "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 2m", - "categories": [ - "SC_UpperDiagonalWalls_C" - ], - "buildMenuPriority": 6, - "className": "Desc_SteelWall_FlipTris_8x2_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 2 - } - }, - "Desc_SteelWall_FlipTris_8x4_C": { - "slug": "inv-ramp-wall-4m-steel", - "name": "Inv. Ramp Wall 4m", - "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 4m", - "categories": [ - "SC_UpperDiagonalWalls_C" - ], - "buildMenuPriority": 7, - "className": "Desc_SteelWall_FlipTris_8x4_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 4 - } - }, - "Desc_SteelWall_FlipTris_8x8_C": { - "slug": "inv-ramp-wall-8m-steel", - "name": "Inv. Ramp Wall 8m", - "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 8m", - "categories": [ - "SC_UpperDiagonalWalls_C" - ], - "buildMenuPriority": 8, - "className": "Desc_SteelWall_FlipTris_8x8_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 8 - } - }, - "Desc_SteelWall_Tris_8x1_C": { - "slug": "ramp-wall-1m-steel", - "name": "Ramp Wall 1m", - "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 1m", - "categories": [ - "SC_DiagonalWalls_C" - ], - "buildMenuPriority": 5, - "className": "Desc_SteelWall_Tris_8x1_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 1 - } - }, - "Desc_SteelWall_Tris_8x2_C": { - "slug": "ramp-wall-2m-steel", - "name": "Ramp Wall 2m", - "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 2m", - "categories": [ - "SC_DiagonalWalls_C" - ], - "buildMenuPriority": 6, - "className": "Desc_SteelWall_Tris_8x2_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 2 - } - }, - "Desc_SteelWall_Tris_8x4_C": { - "slug": "ramp-wall-4m-steel", - "name": "Ramp Wall 4m", - "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 4m", - "categories": [ - "SC_DiagonalWalls_C" - ], - "buildMenuPriority": 7, - "className": "Desc_SteelWall_Tris_8x4_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 4 - } - }, - "Desc_SteelWall_Tris_8x8_C": { - "slug": "ramp-wall-8m-steel", - "name": "Ramp Wall 8m", - "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 8m", - "categories": [ - "SC_DiagonalWalls_C" - ], - "buildMenuPriority": 8, - "className": "Desc_SteelWall_Tris_8x8_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 8 - } - }, - "Desc_StorageContainerMk1_C": { - "slug": "storage-container", - "name": "Storage Container", - "description": "Contains 24 slots for storing large amounts of items.\nHas an input and output for conveyor belts.", - "categories": [ - "SC_Storage_C" - ], - "buildMenuPriority": 62, - "className": "Desc_StorageContainerMk1_C", - "metadata": { - "powerConsumption": 0, - "powerConsumptionExponent": 1.6, - "inventorySize": 24 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_StorageContainerMk2_C": { - "slug": "industrial-storage-container", - "name": "Industrial Storage Container", - "description": "Contains 48 slots for storing large amounts of items.\nHas two inputs and outputs for conveyor belts.", - "categories": [ - "SC_Storage_C" - ], - "buildMenuPriority": 63, - "className": "Desc_StorageContainerMk2_C", - "metadata": { - "powerConsumption": 0, - "powerConsumptionExponent": 1.6, - "inventorySize": 48 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_StorageHazard_C": { - "slug": "hazard-storage-box", - "name": "Hazard Storage Box", - "description": "Contains 25 slots for storing large amounts of items.", - "categories": [ - "SC_Storage_C" - ], - "buildMenuPriority": 3, - "className": "Desc_StorageHazard_C", - "metadata": { - "powerConsumption": 0, - "powerConsumptionExponent": 1.6, - "inventorySize": 25 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_StorageMedkit_C": { - "slug": "medical-storage-box", - "name": "Medical Storage Box", - "description": "Contains 25 slots for storing large amounts of items.", - "categories": [ - "SC_Storage_C" - ], - "buildMenuPriority": 2, - "className": "Desc_StorageMedkit_C", - "metadata": { - "powerConsumption": 0, - "powerConsumptionExponent": 1.6, - "inventorySize": 25 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_StoragePlayer_C": { - "slug": "personal-storage-box", - "name": "Personal Storage Box", - "description": "Contains 25 slots for storing large amounts of items.", - "categories": [ - "SC_Storage_C" - ], - "buildMenuPriority": 1, - "className": "Desc_StoragePlayer_C", - "metadata": { - "powerConsumption": 0, - "powerConsumptionExponent": 1.6, - "inventorySize": 25 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_StreetLight_C": { - "slug": "street-light", - "name": "Street Light", - "description": "A small Street Light, perfect for lighting up factory pathways and roads.\n\nLight color and intensity can be modified.\nAllows up to two Power Line connections.", - "categories": [ - "SC_Lights_C" - ], - "buildMenuPriority": 1, - "className": "Desc_StreetLight_C", - "metadata": { - "powerConsumption": 1 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_Tractor_C": { - "slug": "tractor", - "name": "Tractor", - "description": "25 slot inventory. Has a built in Craft Bench. Can be automated to pick up and deliver resources at Truck Stations. Nicknamed the Sugarcube by FICSIT pioneers.", - "categories": [], - "buildMenuPriority": 0, - "className": "Desc_Tractor_C", - "metadata": {}, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_TradingPost_C": { - "slug": "the-hub", - "name": "The HUB", - "description": "The heart of your factory. This is where you complete FICSIT milestones to unlock additional blueprints of buildings, vehicles, parts, equipment etc.", - "categories": [ - "SC_Special_C" - ], - "buildMenuPriority": 0, - "className": "Desc_TradingPost_C", - "metadata": { - "powerConsumption": 0, - "powerConsumptionExponent": 1.6 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_TrainDockingStationLiquid_C": { - "slug": "fluid-freight-platform", - "name": "Fluid Freight Platform", - "description": "Freight Cars that stop at the Freight Platform will be loaded or unloaded by the Freight Platform.\nLoading and unloading options can be set inside the building.\nSnaps to other Platforms and Stations.\nNeeds to be connected to a powered Railway to function.", - "categories": [ - "SC_Trains_C" - ], - "buildMenuPriority": 52, - "className": "Desc_TrainDockingStationLiquid_C", - "metadata": { - "powerConsumption": 50, - "powerConsumptionExponent": 1.6 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_TrainDockingStation_C": { - "slug": "freight-platform", - "name": "Freight Platform", - "description": "Freight Cars that stop at the Freight Platform will be loaded or unloaded by the Freight Platform.\nLoading and unloading options can be set inside the building.\nSnaps to other Platforms and Stations.\nNeeds to be connected to a powered Railway to function.", - "categories": [ - "SC_Trains_C" - ], - "buildMenuPriority": 52, - "className": "Desc_TrainDockingStation_C", - "metadata": { - "powerConsumption": 50, - "powerConsumptionExponent": 1.6 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_TrainPlatformEmpty_02_C": { - "slug": "empty-platform-with-catwalk", - "name": "Empty Platform With Catwalk", - "description": "An empty train platform for when you need to create some empty space.", - "categories": [ - "SC_Trains_C" - ], - "buildMenuPriority": 52, - "className": "Desc_TrainPlatformEmpty_02_C", - "metadata": { - "powerConsumption": 0, - "powerConsumptionExponent": 1.6 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_TrainPlatformEmpty_C": { - "slug": "empty-platform", - "name": "Empty Platform", - "description": "An empty train platform for when you need to create some empty space.", - "categories": [ - "SC_Trains_C" - ], - "buildMenuPriority": 52, - "className": "Desc_TrainPlatformEmpty_C", - "metadata": { - "powerConsumption": 0, - "powerConsumptionExponent": 1.6 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_TrainStation_C": { - "slug": "train-station", - "name": "Train Station", - "description": "Locomotives can be set to drive to and stop at the Train Station.\nYou can connect power to the train station to power up the trains on the railway as well as transport the power to other stations.", - "categories": [ - "SC_Trains_C" - ], - "buildMenuPriority": 51, - "className": "Desc_TrainStation_C", - "metadata": { - "powerConsumption": 50, - "powerConsumptionExponent": 1.6 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_TruckStation_C": { - "slug": "truck-station", - "name": "Truck Station", - "description": "Either send or receive resources to vehicles. Has an inventory with 48 slots.\nTransfers up to 120 stacks per minute to/from docked vehicle. \nAlways refuels vehicles if it has access to a matching fuel type.\n", - "categories": [ - "SC_Vehicles_C" - ], - "buildMenuPriority": 0, - "className": "Desc_TruckStation_C", - "metadata": { - "powerConsumption": 20, - "powerConsumptionExponent": 1.6 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_Truck_C": { - "slug": "truck", - "name": "Truck", - "description": "48 slot inventory. Has a built in Craft Bench. Can be automated to pick up and deliver resources at Truck Stations. Nicknamed the Unit by FICSIT pioneers because of its massive frame.", - "categories": [], - "buildMenuPriority": 0, - "className": "Desc_Truck_C", - "metadata": {}, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_Valve_C": { - "slug": "valve", - "name": "Valve", - "description": "Used to limit Pipeline flow rates.\nCan be attached to a Pipeline.\n\nNOTE: Has an in- and output direction.", - "categories": [ - "SC_Pipes_C" - ], - "buildMenuPriority": 5, - "className": "Desc_Valve_C", - "metadata": { - "powerConsumption": 0, - "powerConsumptionExponent": 1.6, - "maxPressure": 0 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_WalkwayCross_C": { - "slug": "walkway-crossing", - "name": "Walkway Crossing", - "description": "Snaps to foundations and other walkways.\nSpecifically made for humans to walk on.", - "categories": [ - "SC_Walkways_C" - ], - "buildMenuPriority": 102, - "className": "Desc_WalkwayCross_C", - "metadata": {}, - "size": { - "width": 4, - "length": 4, - "height": 0 - } - }, - "Desc_WalkwayRamp_C": { - "slug": "walkway-ramp", - "name": "Walkway Ramp", - "description": "Snaps to foundations and other walkways.\nSpecifically made for humans to walk on.", - "categories": [ - "SC_Walkways_C" - ], - "buildMenuPriority": 102, - "className": "Desc_WalkwayRamp_C", - "metadata": {}, - "size": { - "width": 4, - "length": 4, - "height": 0 - } - }, - "Desc_WalkwayStraight_C": { - "slug": "walkway-straight", - "name": "Walkway Straight", - "description": "Snaps to foundations and other walkways.\nSpecifically made for humans to walk on.", - "categories": [ - "SC_Walkways_C" - ], - "buildMenuPriority": 99, - "className": "Desc_WalkwayStraight_C", - "metadata": {}, - "size": { - "width": 4, - "length": 4, - "height": 0 - } - }, - "Desc_WalkwayT_C": { - "slug": "walkway-t-crossing", - "name": "Walkway T-Crossing", - "description": "Snaps to foundations and other walkways.\nSpecifically made for humans to walk on.", - "categories": [ - "SC_Walkways_C" - ], - "buildMenuPriority": 101, - "className": "Desc_WalkwayT_C", - "metadata": {}, - "size": { - "width": 4, - "length": 4, - "height": 0 - } - }, - "Desc_WalkwayTurn_C": { - "slug": "walkway-turn", - "name": "Walkway Turn", - "description": "Snaps to foundations and other walkways.\nSpecifically made for humans to walk on.", - "categories": [ - "SC_Walkways_C" - ], - "buildMenuPriority": 100, - "className": "Desc_WalkwayTurn_C", - "metadata": {}, - "size": { - "width": 4, - "length": 4, - "height": 0 - } - }, - "Desc_WallSet_Steel_Angular_8x4_C": { - "slug": "tilted-wall-4m-steel-1", - "name": "Tilted Wall 4m", - "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 4m", - "categories": [ - "SC_AngularWalls_C" - ], - "buildMenuPriority": 7, - "className": "Desc_WallSet_Steel_Angular_8x4_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 4 - } - }, - "Desc_WallSet_Steel_Angular_8x8_C": { - "slug": "tilted-wall-8m-steel", - "name": "Tilted Wall 8m", - "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 8m", - "categories": [ - "SC_AngularWalls_C" - ], - "buildMenuPriority": 8, - "className": "Desc_WallSet_Steel_Angular_8x8_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 8 - } - }, - "Desc_Wall_8x4_01_C": { - "slug": "basic-wall-4m", - "name": "Basic Wall 4m", - "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 4m", - "categories": [ - "SC_Walls_C" - ], - "buildMenuPriority": 4, - "className": "Desc_Wall_8x4_01_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 4 - } - }, - "Desc_Wall_8x4_02_C": { - "slug": "basic-wall-4m-steel", - "name": "Basic Wall 4m", - "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 4m", - "categories": [ - "SC_Walls_C" - ], - "buildMenuPriority": 85, - "className": "Desc_Wall_8x4_02_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 4 - } - }, - "Desc_Wall_Concrete_8x1_C": { - "slug": "basic-wall-1m-concrete", - "name": "Basic Wall 1m", - "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 1m", - "categories": [ - "SC_Walls_C" - ], - "buildMenuPriority": 6, - "className": "Desc_Wall_Concrete_8x1_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 1 - } - }, - "Desc_Wall_Concrete_8x4_C": { - "slug": "basic-wall-4m-concrete", - "name": "Basic Wall 4m", - "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 4m", - "categories": [ - "SC_Walls_C" - ], - "buildMenuPriority": 5, - "className": "Desc_Wall_Concrete_8x4_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 4 - } - }, - "Desc_Wall_Concrete_8x4_ConveyorHole_01_C": { - "slug": "conveyor-wall-x1-concrete", - "name": "Conveyor Wall x1", - "description": "Has 1 Conveyor Belt connection.\nSnaps to Foundations and other Walls.\n\nSize: 8m x 4m", - "categories": [ - "SC_ConveyorConnections_C" - ], - "buildMenuPriority": 5, - "className": "Desc_Wall_Concrete_8x4_ConveyorHole_01_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 4 - } - }, - "Desc_Wall_Concrete_8x4_ConveyorHole_02_C": { - "slug": "conveyor-wall-x2-concrete", - "name": "Conveyor Wall x2", - "description": "Has 2 Conveyor Belt connections.\nSnaps to Foundations and other Walls.\n\nSize: 8m x 4m", - "categories": [ - "SC_ConveyorConnections_C" - ], - "buildMenuPriority": 5, - "className": "Desc_Wall_Concrete_8x4_ConveyorHole_02_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 4 - } - }, - "Desc_Wall_Concrete_8x4_ConveyorHole_03_C": { - "slug": "conveyor-wall-x3-concrete", - "name": "Conveyor Wall x3", - "description": "Has 3 Conveyor Belt connections.\nSnaps to Foundations and other Walls.\n\nSize: 8m x 4m", - "categories": [ - "SC_ConveyorConnections_C" - ], - "buildMenuPriority": 5, - "className": "Desc_Wall_Concrete_8x4_ConveyorHole_03_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 4 - } - }, - "Desc_Wall_Concrete_8x4_Corner_01_C": { - "slug": "tilted-corner-wall-4m-concrete", - "name": "Tilted Corner Wall 4m", - "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 4m", - "categories": [ - "SC_AngularWalls_C" - ], - "buildMenuPriority": 15, - "className": "Desc_Wall_Concrete_8x4_Corner_01_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 4 - } - }, - "Desc_Wall_Concrete_8x4_Window_01_C": { - "slug": "single-window-concrete", - "name": "Single Window", - "description": "Snaps to Foundations and other Walls.\nThe windows allow Pioneers to see through the wall.\n\nSize: 8m x 4m", - "categories": [ - "SC_Windows_C" - ], - "buildMenuPriority": 5, - "className": "Desc_Wall_Concrete_8x4_Window_01_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 4 - } - }, - "Desc_Wall_Concrete_8x4_Window_02_C": { - "slug": "frame-window-concrete", - "name": "Frame Window", - "description": "Snaps to Foundations and other Walls.\nThe windows allow Pioneers to see through the wall.\n\nSize: 8m x 4m", - "categories": [ - "SC_Windows_C" - ], - "buildMenuPriority": 5, - "className": "Desc_Wall_Concrete_8x4_Window_02_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 4 - } - }, - "Desc_Wall_Concrete_8x4_Window_03_C": { - "slug": "panel-window-concrete", - "name": "Panel Window", - "description": "Snaps to Foundations and other Walls.\nThe windows allow Pioneers to see through the wall.\n\nSize: 8m x 4m", - "categories": [ - "SC_Windows_C" - ], - "buildMenuPriority": 5, - "className": "Desc_Wall_Concrete_8x4_Window_03_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 4 - } - }, - "Desc_Wall_Concrete_8x4_Window_04_C": { - "slug": "reinforced-window-concrete", - "name": "Reinforced Window", - "description": "Snaps to Foundations and other Walls.\nThe windows allow Pioneers to see through the wall.\n\nSize: 8m x 4m", - "categories": [ - "SC_Windows_C" - ], - "buildMenuPriority": 5, - "className": "Desc_Wall_Concrete_8x4_Window_04_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 4 - } - }, - "Desc_Wall_Concrete_8x8_Corner_01_C": { - "slug": "tilted-corner-wall-8m-concrete", - "name": "Tilted Corner Wall 8m", - "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 8m", - "categories": [ - "SC_AngularWalls_C" - ], - "buildMenuPriority": 16, - "className": "Desc_Wall_Concrete_8x8_Corner_01_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 8 - } - }, - "Desc_Wall_Concrete_Angular_8x4_C": { - "slug": "tilted-wall-4m-concrete", - "name": "Tilted Wall 4m", - "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 4m", - "categories": [ - "SC_AngularWalls_C" - ], - "buildMenuPriority": 13, - "className": "Desc_Wall_Concrete_Angular_8x4_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 4 - } - }, - "Desc_Wall_Concrete_Angular_8x8_C": { - "slug": "tilted-wall-8m-concrete", - "name": "Tilted Wall 8m", - "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 8m", - "categories": [ - "SC_AngularWalls_C" - ], - "buildMenuPriority": 14, - "className": "Desc_Wall_Concrete_Angular_8x8_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 8 - } - }, - "Desc_Wall_Concrete_CDoor_8x4_C": { - "slug": "center-door-wall-concrete", - "name": "Center Door Wall", - "description": "The door allows Pioneers to pass through the wall.\nDoor settings can be configured.\nSnaps to Foundations and other Walls.\n\nSize: 8m x 4m", - "categories": [ - "SC_Doors_C" - ], - "buildMenuPriority": 5, - "className": "Desc_Wall_Concrete_CDoor_8x4_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 4 - } - }, - "Desc_Wall_Concrete_FlipTris_8x1_C": { - "slug": "inv-ramp-wall-1m-concrete", - "name": "Inv. Ramp Wall 1m", - "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 1m", - "categories": [], - "buildMenuPriority": 0, - "className": "Desc_Wall_Concrete_FlipTris_8x1_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 1 - } - }, - "Desc_Wall_Concrete_FlipTris_8x2_C": { - "slug": "inv-ramp-wall-2m-concrete", - "name": "Inv. Ramp Wall 2m", - "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 2m", - "categories": [], - "buildMenuPriority": 0, - "className": "Desc_Wall_Concrete_FlipTris_8x2_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 2 - } - }, - "Desc_Wall_Concrete_FlipTris_8x4_C": { - "slug": "inv-ramp-wall-4m-concrete", - "name": "Inv. Ramp Wall 4m", - "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 4m", - "categories": [], - "buildMenuPriority": 0, - "className": "Desc_Wall_Concrete_FlipTris_8x4_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 4 - } - }, - "Desc_Wall_Concrete_FlipTris_8x8_C": { - "slug": "inv-ramp-wall-8m-concrete", - "name": "Inv. Ramp Wall 8m", - "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 8m", - "categories": [], - "buildMenuPriority": 0, - "className": "Desc_Wall_Concrete_FlipTris_8x8_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 8 - } - }, - "Desc_Wall_Concrete_Gate_8x4_C": { - "slug": "gate-hole-wall-concrete", - "name": "Gate Hole Wall", - "description": "The gate allows Pioneers to pass through the wall.\nSnaps to foundations and other walls.\n\nSize: 8m x 4m", - "categories": [ - "SC_Doors_C" - ], - "buildMenuPriority": 5, - "className": "Desc_Wall_Concrete_Gate_8x4_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 4 - } - }, - "Desc_Wall_Concrete_SDoor_8x4_C": { - "slug": "side-door-wall-concrete", - "name": "Side Door Wall", - "description": "The door allows Pioneers to pass through the wall.\nDoor settings can be configured.\nSnaps to Foundations and other Walls.\n\nSize: 8m x 4m", - "categories": [ - "SC_Doors_C" - ], - "buildMenuPriority": 5, - "className": "Desc_Wall_Concrete_SDoor_8x4_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 4 - } - }, - "Desc_Wall_Concrete_Tris_8x1_C": { - "slug": "ramp-wall-1m-concrete", - "name": "Ramp Wall 1m", - "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 1m", - "categories": [], - "buildMenuPriority": 0, - "className": "Desc_Wall_Concrete_Tris_8x1_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 1 - } - }, - "Desc_Wall_Concrete_Tris_8x2_C": { - "slug": "ramp-wall-2m-concrete", - "name": "Ramp Wall 2m", - "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 2m", - "categories": [], - "buildMenuPriority": 0, - "className": "Desc_Wall_Concrete_Tris_8x2_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 2 - } - }, - "Desc_Wall_Concrete_Tris_8x4_C": { - "slug": "ramp-wall-4m-concrete", - "name": "Ramp Wall 4m", - "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 4m", - "categories": [], - "buildMenuPriority": 0, - "className": "Desc_Wall_Concrete_Tris_8x4_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 4 - } - }, - "Desc_Wall_Concrete_Tris_8x8_C": { - "slug": "ramp-wall-8m-concrete", - "name": "Ramp Wall 8m", - "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 8m", - "categories": [], - "buildMenuPriority": 0, - "className": "Desc_Wall_Concrete_Tris_8x8_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 8 - } - }, - "Desc_Wall_Conveyor_8x4_01_C": { - "slug": "conveyor-wall-x3", - "name": "Conveyor Wall x3", - "description": "Has 3 Conveyor Belt connections.\nSnaps to Foundations and other Walls.\n\nSize: 8m x 4m", - "categories": [ - "SC_ConveyorConnections_C" - ], - "buildMenuPriority": 85, - "className": "Desc_Wall_Conveyor_8x4_01_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 4 - } - }, - "Desc_Wall_Conveyor_8x4_01_Steel_C": { - "slug": "conveyor-wall-x3-steel", - "name": "Conveyor Wall x3", - "description": "Has 3 Conveyor Belt connections.\nSnaps to Foundations and other Walls.\n\nSize: 8m x 4m", - "categories": [ - "SC_ConveyorConnections_C" - ], - "buildMenuPriority": 85, - "className": "Desc_Wall_Conveyor_8x4_01_Steel_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 4 - } - }, - "Desc_Wall_Conveyor_8x4_02_C": { - "slug": "conveyor-wall-x2", - "name": "Conveyor Wall x2", - "description": "Has 2 Conveyor Belt connections.\nSnaps to Foundations and other Walls.\n\nSize: 8m x 4m", - "categories": [ - "SC_ConveyorConnections_C" - ], - "buildMenuPriority": 85, - "className": "Desc_Wall_Conveyor_8x4_02_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 4 - } - }, - "Desc_Wall_Conveyor_8x4_02_Steel_C": { - "slug": "conveyor-wall-x2-steel", - "name": "Conveyor Wall x2", - "description": "Has 2 Conveyor Belt connections.\nSnaps to Foundations and other Walls.\n\nSize: 8m x 4m", - "categories": [ - "SC_ConveyorConnections_C" - ], - "buildMenuPriority": 85, - "className": "Desc_Wall_Conveyor_8x4_02_Steel_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 4 - } - }, - "Desc_Wall_Conveyor_8x4_03_C": { - "slug": "conveyor-wall-x1", - "name": "Conveyor Wall x1", - "description": "Has 1 Conveyor Belt connection.\nSnaps to Foundations and other Walls.\n\nSize: 8m x 4m", - "categories": [ - "SC_ConveyorConnections_C" - ], - "buildMenuPriority": 85, - "className": "Desc_Wall_Conveyor_8x4_03_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 4 - } - }, - "Desc_Wall_Conveyor_8x4_03_Steel_C": { - "slug": "conveyor-wall-x1-steel", - "name": "Conveyor Wall x1", - "description": "Has 1 Conveyor Belt connections.\nSnaps to Foundations and other Walls.\n\nSize: 8m x 4m", - "categories": [ - "SC_ConveyorConnections_C" - ], - "buildMenuPriority": 85, - "className": "Desc_Wall_Conveyor_8x4_03_Steel_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 4 - } - }, - "Desc_Wall_Conveyor_8x4_04_C": { - "slug": "wall-conveyor-perpendicular", - "name": "Wall Conveyor Perpendicular", - "description": "Walls connect to other Walls and Floors. Use these to make buildings with several floors.\nHas 1 conveyor belt connection perpendicular to the wall.\nHeight: 4 m", - "categories": [ - "SC_ConveyorConnections_C" - ], - "buildMenuPriority": 85, - "className": "Desc_Wall_Conveyor_8x4_04_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 4 - } - }, - "Desc_Wall_Conveyor_8x4_04_Steel_C": { - "slug": "wall-conveyor-perpendicular-steel", - "name": "Wall Conveyor Perpendicular", - "description": "Walls connect to other Walls and Floors. Use these to make buildings with several floors.\nHas 1 conveyor belt connection perpendicular to the wall.\nHeight: 4 m", - "categories": [ - "SC_ConveyorConnections_C" - ], - "buildMenuPriority": 85, - "className": "Desc_Wall_Conveyor_8x4_04_Steel_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 4 - } - }, - "Desc_Wall_Door_8x4_01_C": { - "slug": "center-door-wall", - "name": "Center Door Wall", - "description": "The door allows Pioneers to pass through the wall.\nDoor settings can be configured.\nSnaps to Foundations and other Walls.\n\nSize: 8m x 4m", - "categories": [ - "SC_Doors_C" - ], - "buildMenuPriority": 2, - "className": "Desc_Wall_Door_8x4_01_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 4 - } - }, - "Desc_Wall_Door_8x4_01_Steel_C": { - "slug": "center-door-wall-steel", - "name": "Center Door Wall", - "description": "The door allows Pioneers to pass through the wall.\nDoor settings can be configured.\nSnaps to Foundations and other Walls.\n\nSize: 8m x 4m", - "categories": [ - "SC_Doors_C" - ], - "buildMenuPriority": 5, - "className": "Desc_Wall_Door_8x4_01_Steel_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 4 - } - }, - "Desc_Wall_Door_8x4_03_C": { - "slug": "side-door-wall", - "name": "Side Door Wall", - "description": "The door allows Pioneers to pass through the wall.\nDoor settings can be configured.\nSnaps to Foundations and other Walls.\n\nSize: 8m x 4m", - "categories": [ - "SC_Doors_C" - ], - "buildMenuPriority": 3, - "className": "Desc_Wall_Door_8x4_03_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 4 - } - }, - "Desc_Wall_Door_8x4_03_Steel_C": { - "slug": "side-door-wall-steel", - "name": "Side Door Wall", - "description": "The door allows Pioneers to pass through the wall.\nDoor settings can be configured.\nSnaps to Foundations and other Walls.\n\nSize: 8m x 4m", - "categories": [ - "SC_Doors_C" - ], - "buildMenuPriority": 6, - "className": "Desc_Wall_Door_8x4_03_Steel_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 4 - } - }, - "Desc_Wall_Frame_01_C": { - "slug": "frame-wall", - "name": "Frame Wall", - "description": "Snaps to other structural buildings.\nFrames provide a more open factory aesthetic.\n\nSize: 8m x 4m", - "categories": [ - "SC_Frames_C" - ], - "buildMenuPriority": 3, - "className": "Desc_Wall_Frame_01_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 4 - } - }, - "Desc_Wall_Gate_8x4_01_C": { - "slug": "gate-hole-wall", - "name": "Gate Hole Wall", - "description": "The gate allows Pioneers to pass through the wall.\nSnaps to foundations and other walls.\n\nSize: 8m x 4m", - "categories": [ - "SC_Doors_C" - ], - "buildMenuPriority": 85, - "className": "Desc_Wall_Gate_8x4_01_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 4 - } - }, - "Desc_Wall_Orange_8x1_C": { - "slug": "basic-wall-1m", - "name": "Basic Wall 1m", - "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 1m", - "categories": [ - "SC_Walls_C" - ], - "buildMenuPriority": 2, - "className": "Desc_Wall_Orange_8x1_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 1 - } - }, - "Desc_Wall_Orange_8x4_Corner_01_C": { - "slug": "tilted-corner-wall-4m", - "name": "Tilted Corner Wall 4m", - "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 4m", - "categories": [ - "SC_AngularWalls_C" - ], - "buildMenuPriority": 5, - "className": "Desc_Wall_Orange_8x4_Corner_01_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 4 - } - }, - "Desc_Wall_Orange_8x8_Corner_01_C": { - "slug": "tilted-corner-wall-8m", - "name": "Tilted Corner Wall 8m", - "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 8m", - "categories": [ - "SC_AngularWalls_C" - ], - "buildMenuPriority": 6, - "className": "Desc_Wall_Orange_8x8_Corner_01_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 8 - } - }, - "Desc_Wall_Orange_Angular_8x4_C": { - "slug": "tilted-wall-4m", - "name": "Tilted Wall 4m", - "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 4m", - "categories": [ - "SC_AngularWalls_C" - ], - "buildMenuPriority": 1, - "className": "Desc_Wall_Orange_Angular_8x4_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 4 - } - }, - "Desc_Wall_Orange_Angular_8x8_C": { - "slug": "tilted-wall-8m", - "name": "Tilted Wall 8m", - "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 8m", - "categories": [ - "SC_AngularWalls_C" - ], - "buildMenuPriority": 2, - "className": "Desc_Wall_Orange_Angular_8x8_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 8 - } - }, - "Desc_Wall_Orange_FlipTris_8x1_C": { - "slug": "inv-ramp-wall-1m", - "name": "Inv. Ramp Wall 1m", - "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 1m", - "categories": [], - "buildMenuPriority": 0, - "className": "Desc_Wall_Orange_FlipTris_8x1_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 1 - } - }, - "Desc_Wall_Orange_FlipTris_8x2_C": { - "slug": "inv-ramp-wall-2m", - "name": "Inv. Ramp Wall 2m", - "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 2m", - "categories": [], - "buildMenuPriority": 0, - "className": "Desc_Wall_Orange_FlipTris_8x2_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 2 - } - }, - "Desc_Wall_Orange_FlipTris_8x4_C": { - "slug": "inv-ramp-wall-4m", - "name": "Inv. Ramp Wall 4m", - "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 4m", - "categories": [], - "buildMenuPriority": 0, - "className": "Desc_Wall_Orange_FlipTris_8x4_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 4 - } - }, - "Desc_Wall_Orange_FlipTris_8x8_C": { - "slug": "inv-ramp-wall-8m", - "name": "Inv. Ramp Wall 8m", - "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 8m", - "categories": [], - "buildMenuPriority": 0, - "className": "Desc_Wall_Orange_FlipTris_8x8_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 8 - } - }, - "Desc_Wall_Orange_Tris_8x1_C": { - "slug": "ramp-wall-1m", - "name": "Ramp Wall 1m", - "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 1m", - "categories": [], - "buildMenuPriority": 0, - "className": "Desc_Wall_Orange_Tris_8x1_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 1 - } - }, - "Desc_Wall_Orange_Tris_8x2_C": { - "slug": "ramp-wall-2m", - "name": "Ramp Wall 2m", - "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 2m", - "categories": [], - "buildMenuPriority": 0, - "className": "Desc_Wall_Orange_Tris_8x2_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 2 - } - }, - "Desc_Wall_Orange_Tris_8x4_C": { - "slug": "ramp-wall-4m", - "name": "Ramp Wall 4m", - "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 4m", - "categories": [], - "buildMenuPriority": 0, - "className": "Desc_Wall_Orange_Tris_8x4_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 4 - } - }, - "Desc_Wall_Orange_Tris_8x8_C": { - "slug": "ramp-wall-8m", - "name": "Ramp Wall 8m", - "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 8m", - "categories": [], - "buildMenuPriority": 0, - "className": "Desc_Wall_Orange_Tris_8x8_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 8 - } - }, - "Desc_Wall_Steel_8x4_Corner_01_C": { - "slug": "tilted-corner-wall-4m-steel", - "name": "Tilted Corner Wall 4m", - "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 4m", - "categories": [ - "SC_AngularWalls_C" - ], - "buildMenuPriority": 15, - "className": "Desc_Wall_Steel_8x4_Corner_01_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 4 - } - }, - "Desc_Wall_Steel_8x8_Corner_01_C": { - "slug": "tilted-corner-wall-8m-steel", - "name": "Tilted Corner Wall 8m", - "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 8m", - "categories": [ - "SC_AngularWalls_C" - ], - "buildMenuPriority": 16, - "className": "Desc_Wall_Steel_8x8_Corner_01_C", - "metadata": {}, - "size": { - "width": 8, - "length": 8, - "height": 8 - } - }, - "Desc_Wall_Window_8x4_01_C": { - "slug": "single-window", - "name": "Single Window", - "description": "Snaps to Foundations and other Walls.\nThe windows allow Pioneers to see through the wall.\n\nSize: 8m x 4m", - "categories": [ - "SC_Windows_C" - ], - "buildMenuPriority": 85, - "className": "Desc_Wall_Window_8x4_01_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 4 - } - }, - "Desc_Wall_Window_8x4_02_C": { - "slug": "frame-window", - "name": "Frame Window", - "description": "Snaps to Foundations and other Walls.\nThe windows allow Pioneers to see through the wall.\n\nSize: 8m x 4m", - "categories": [ - "SC_Windows_C" - ], - "buildMenuPriority": 85, - "className": "Desc_Wall_Window_8x4_02_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 4 - } - }, - "Desc_Wall_Window_8x4_03_C": { - "slug": "panel-window", - "name": "Panel Window", - "description": "Snaps to Foundations and other Walls.\nThe windows allow Pioneers to see through the wall.\n\nSize: 8m x 4m", - "categories": [ - "SC_Windows_C" - ], - "buildMenuPriority": 85, - "className": "Desc_Wall_Window_8x4_03_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 4 - } - }, - "Desc_Wall_Window_8x4_04_C": { - "slug": "reinforced-window", - "name": "Reinforced Window", - "description": "Snaps to Foundations and other Walls.\nThe windows allow Pioneers to see through the wall.\n\nSize: 8m x 4m", - "categories": [ - "SC_Windows_C" - ], - "buildMenuPriority": 85, - "className": "Desc_Wall_Window_8x4_04_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 4 - } - }, - "Desc_Wall_Window_Thin_8x4_01_C": { - "slug": "full-frame-window", - "name": "Full Frame Window", - "description": "Snaps to Foundations and other Walls.\nThe windows allow Pioneers to see through the wall.\n\nSize: 8m x 4m", - "categories": [ - "SC_Windows_C" - ], - "buildMenuPriority": 85, - "className": "Desc_Wall_Window_Thin_8x4_01_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 4 - } - }, - "Desc_Wall_Window_Thin_8x4_02_C": { - "slug": "hex-frame-window", - "name": "Hex Frame Window", - "description": "Snaps to Foundations and other Walls.\nThe windows allow Pioneers to see through the wall.\n\nSize: 8m x 4m", - "categories": [ - "SC_Windows_C" - ], - "buildMenuPriority": 85, - "className": "Desc_Wall_Window_Thin_8x4_02_C", - "metadata": {}, - "size": { - "width": 8, - "length": 0, - "height": 4 - } - }, - "Desc_WaterPump_C": { - "slug": "water-extractor", - "name": "Water Extractor", - "description": "Default extraction rate: 120m³ water per minute.\nHead Lift: 10 meters.\n(Allows fluids to be transported 10 meters upwards.)\n\nExtracts water from the body of water it is built on.\nNote that the water needs to be deep enough and that rivers do not commonly suffice.", - "categories": [ - "SC_OilProduction_C" - ], - "buildMenuPriority": 1, - "className": "Desc_WaterPump_C", - "metadata": { - "powerConsumption": 20, - "powerConsumptionExponent": 1.6 - }, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_WorkBench_C": { - "slug": "craft-bench", - "name": "Craft Bench", - "description": "Allows you to manually craft a large range of different parts. \nThese parts can then be used in construction of different factory buildings, vehicles and equipment.", - "categories": [ - "SC_Workstations_C" - ], - "buildMenuPriority": 1, - "className": "Desc_WorkBench_C", - "metadata": {}, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - }, - "Desc_Workshop_C": { - "slug": "equipment-workshop", - "name": "Equipment Workshop", - "description": "Used to manually craft equipment.", - "categories": [ - "SC_Workstations_C" - ], - "buildMenuPriority": 2, - "className": "Desc_Workshop_C", - "metadata": {}, - "size": { - "width": 0, - "length": 0, - "height": 0 - } - } - } -} + "items": { + "Desc_NuclearWaste_C": { + "slug": "uranium-waste", + "name": "Uranium Waste", + "description": "The by-product of consuming Uranium Fuel Rods in the Nuclear Power Plant.\nNon-fissile Uranium can be extracted. Handle with caution.\n\nCaution: HIGHLY Radioactive.", + "sinkPoints": 0, + "className": "Desc_NuclearWaste_C", + "stackSize": 500, + "energyValue": 0.0, + "radioactiveDecay": 10.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_PlutoniumWaste_C": { + "slug": "plutonium-waste", + "name": "Plutonium Waste", + "description": "The by-product of consuming Plutonium Fuel Rods in the Nuclear Power Plant.\nNeeds to be stored in a safe location. Handle with caution.\n\nCaution: EXTREMELY Radioactive.", + "sinkPoints": 0, + "className": "Desc_PlutoniumWaste_C", + "stackSize": 500, + "energyValue": 0.0, + "radioactiveDecay": 200.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_Battery_C": { + "slug": "battery", + "name": "Battery", + "description": "Primarily used as fuel for Drones and Vehicles.", + "sinkPoints": 465, + "className": "Desc_Battery_C", + "stackSize": 200, + "energyValue": 6000.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_AluminumIngot_C": { + "slug": "aluminum-ingot", + "name": "Aluminum Ingot", + "description": "Aluminum Ingots are made from Aluminum Scrap, which is refined from Alumina Solution.\nUsed to produce specialized aluminum-based parts.", + "sinkPoints": 131, + "className": "Desc_AluminumIngot_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_ColorCartridge_C": { + "slug": "color-cartridge", + "name": "Color Cartridge", + "description": "Used for applying Patterns to structures with the Customizer.\n\n(Patterns can be purchased in the AWESOME Shop.)", + "sinkPoints": 10, + "className": "Desc_ColorCartridge_C", + "stackSize": 200, + "energyValue": 900.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_Cable_C": { + "slug": "cable", + "name": "Cable", + "description": "Used for crafting.\nPrimarily used to build power lines.", + "sinkPoints": 24, + "className": "Desc_Cable_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_Cement_C": { + "slug": "concrete", + "name": "Concrete", + "description": "Used for building.\nGood for stable foundations.", + "sinkPoints": 12, + "className": "Desc_Cement_C", + "stackSize": 500, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_ModularFrame_C": { + "slug": "modular-frame", + "name": "Modular Frame", + "description": "Used for crafting.\nMulti-purpose building block.", + "sinkPoints": 408, + "className": "Desc_ModularFrame_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_SteelPlate_C": { + "slug": "steel-beam", + "name": "Steel Beam", + "description": "Steel Beams are used most often when constructing a little more advanced buildings.", + "sinkPoints": 64, + "className": "Desc_SteelPlate_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_NonFissibleUranium_C": { + "slug": "non-fissile-uranium", + "name": "Non-fissile Uranium", + "description": "The isotope Uranium-238 is non-fissile, meaning it cannot be used for nuclear fission. It can, however, be converted into fissile Plutonium in the Particle Accelerator.\n\nCaution: Mildly Radioactive.", + "sinkPoints": 0, + "className": "Desc_NonFissibleUranium_C", + "stackSize": 500, + "energyValue": 0.0, + "radioactiveDecay": 0.75, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_PlutoniumPellet_C": { + "slug": "plutonium-pellet", + "name": "Plutonium Pellet", + "description": "Produced in the Particle Accelerator through conversion of Non-fissile Uranium.\nUsed to produce Encased Plutonium Cells for Plutonium Fuel Rods.\n\nPower Usage: 250-750 MW (500 MW average).\nCaution: Moderately Radioactive.", + "sinkPoints": 0, + "className": "Desc_PlutoniumPellet_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 20.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_PlutoniumCell_C": { + "slug": "encased-plutonium-cell", + "name": "Encased Plutonium Cell", + "description": "Plutonium Cells are concrete encased Plutonium Pellets.\nUsed to produce Plutonium Fuel Rods for Nuclear Power production.\n\nCaution: Moderately Radioactive.", + "sinkPoints": 0, + "className": "Desc_PlutoniumCell_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 120.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_Silica_C": { + "slug": "silica", + "name": "Silica", + "description": "Derived from Raw Quartz. Commonly used to create glass structures, advanced refinement processes, and alternative production of electronics.", + "sinkPoints": 20, + "className": "Desc_Silica_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_IronPlate_C": { + "slug": "iron-plate", + "name": "Iron Plate", + "description": "Used for crafting.\nOne of the most basic parts.", + "sinkPoints": 6, + "className": "Desc_IronPlate_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_CrystalShard_C": { + "slug": "power-shard", + "name": "Power Shard", + "description": "Mucus from the power slugs compressed into a solid crystal-like shard. \nIt radiates a strange power.", + "sinkPoints": 0, + "className": "Desc_CrystalShard_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_IronRod_C": { + "slug": "iron-rod", + "name": "Iron Rod", + "description": "Used for crafting.\nOne of the most basic parts.", + "sinkPoints": 4, + "className": "Desc_IronRod_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_Wire_C": { + "slug": "wire", + "name": "Wire", + "description": "Used for crafting.\nOne of the most basic parts.", + "sinkPoints": 6, + "className": "Desc_Wire_C", + "stackSize": 500, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_HUBParts_C": { + "slug": "hub-parts", + "name": "HUB Parts", + "description": "The parts required to build the basic structure of the HUB.", + "sinkPoints": 0, + "className": "Desc_HUBParts_C", + "stackSize": 1, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_IronIngot_C": { + "slug": "iron-ingot", + "name": "Iron Ingot", + "description": "Used for crafting.\nCrafted into the most basic parts.", + "sinkPoints": 2, + "className": "Desc_IronIngot_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_IronPlateReinforced_C": { + "slug": "reinforced-iron-plate", + "name": "Reinforced Iron Plate", + "description": "Used for crafting.\nA sturdier and more durable Iron Plate.", + "sinkPoints": 120, + "className": "Desc_IronPlateReinforced_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_Rotor_C": { + "slug": "rotor", + "name": "Rotor", + "description": "Used for crafting.\nThe moving parts of a motor.", + "sinkPoints": 140, + "className": "Desc_Rotor_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_CopperSheet_C": { + "slug": "copper-sheet", + "name": "Copper Sheet", + "description": "Used for crafting.\nPrimarily used for pipelines due to its high corrosion resistance.", + "sinkPoints": 24, + "className": "Desc_CopperSheet_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_IronScrew_C": { + "slug": "screw", + "name": "Screw", + "description": "Used for crafting.\nOne of the most basic parts.", + "sinkPoints": 2, + "className": "Desc_IronScrew_C", + "stackSize": 500, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_CompactedCoal_C": { + "slug": "compacted-coal", + "name": "Compacted Coal", + "description": "A much more efficient alternative to Coal. Used as fuel for vehicles and coal generators.", + "sinkPoints": 28, + "className": "Desc_CompactedCoal_C", + "stackSize": 100, + "energyValue": 630.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_HeavyOilResidue_C": { + "slug": "heavy-oil-residue", + "name": "Heavy Oil Residue", + "description": "A by-product of Plastic and Rubber production. Can be further refined into Fuel and Petroleum Coke.", + "sinkPoints": 30000, + "className": "Desc_HeavyOilResidue_C", + "stackSize": 50000, + "energyValue": 400.0, + "radioactiveDecay": 0.0, + "liquid": true, + "fluidColor": { + "r": 109, + "g": 45, + "b": 120, + "a": 255 + } + }, + "Desc_LiquidTurboFuel_C": { + "slug": "turbofuel", + "name": "Turbofuel", + "description": "A more efficient alternative to Fuel. Can be used to generate power or packaged to be used as fuel for Vehicles.", + "sinkPoints": 225000, + "className": "Desc_LiquidTurboFuel_C", + "stackSize": 50000, + "energyValue": 2000.0, + "radioactiveDecay": 0.0, + "liquid": true, + "fluidColor": { + "r": 212, + "g": 41, + "b": 46, + "a": 255 + } + }, + "Desc_FluidCanister_C": { + "slug": "empty-canister", + "name": "Empty Canister", + "description": "Used to package fluids for transportation.", + "sinkPoints": 60, + "className": "Desc_FluidCanister_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_TurboFuel_C": { + "slug": "packaged-turbofuel", + "name": "Packaged Turbofuel", + "description": "Turbofuel, packaged for alternative transport. Can be used as fuel for Vehicles and the Jetpack.", + "sinkPoints": 570, + "className": "Desc_TurboFuel_C", + "stackSize": 100, + "energyValue": 2000.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 212, + "g": 41, + "b": 46, + "a": 255 + } + }, + "Desc_CircuitBoard_C": { + "slug": "circuit-board", + "name": "Circuit Board", + "description": "Circuit Boards are advanced electronics that are used in a plethora of different ways.", + "sinkPoints": 696, + "className": "Desc_CircuitBoard_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_Plastic_C": { + "slug": "plastic", + "name": "Plastic", + "description": "A versatile and easy to manufacture material that can be used for a lot of things.", + "sinkPoints": 75, + "className": "Desc_Plastic_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_Motor_C": { + "slug": "motor", + "name": "Motor", + "description": "The Motor creates a mechanical force that is used to move things from machines to vehicles.", + "sinkPoints": 1520, + "className": "Desc_Motor_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_SteelPlateReinforced_C": { + "slug": "encased-industrial-beam", + "name": "Encased Industrial Beam", + "description": "Encased Industrial Beams utilizes the compressive strength of concrete and tensile strength of steel simultaneously.\nMostly used as a stable basis for constructing buildings.", + "sinkPoints": 632, + "className": "Desc_SteelPlateReinforced_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_SteelPipe_C": { + "slug": "steel-pipe", + "name": "Steel Pipe", + "description": "Steel Pipes are used most often when constructing a little more advanced buildings.", + "sinkPoints": 24, + "className": "Desc_SteelPipe_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_Rubber_C": { + "slug": "rubber", + "name": "Rubber", + "description": "Rubber is a material that is very flexible and has a lot of friction.", + "sinkPoints": 60, + "className": "Desc_Rubber_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_LiquidFuel_C": { + "slug": "fuel", + "name": "Fuel", + "description": "Fuel can be used to generate power or packaged to be used as fuel for Vehicles or the Jetpack.", + "sinkPoints": 75000, + "className": "Desc_LiquidFuel_C", + "stackSize": 50000, + "energyValue": 750.0, + "radioactiveDecay": 0.0, + "liquid": true, + "fluidColor": { + "r": 235, + "g": 125, + "b": 21, + "a": 255 + } + }, + "Desc_PolymerResin_C": { + "slug": "polymer-resin", + "name": "Polymer Resin", + "description": "Used for crafting.\nA by-product of oil refinement into fuel. Commonly used to manufacture plastics.", + "sinkPoints": 12, + "className": "Desc_PolymerResin_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_PetroleumCoke_C": { + "slug": "petroleum-coke", + "name": "Petroleum Coke", + "description": "Used for crafting.\nA carbon-rich material distilled from Heavy Oil Residue. \nUsed as a less efficient coal replacement.", + "sinkPoints": 20, + "className": "Desc_PetroleumCoke_C", + "stackSize": 200, + "energyValue": 180.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_SteelIngot_C": { + "slug": "steel-ingot", + "name": "Steel Ingot", + "description": "Steel Ingots are made from Iron Ore that's been smelted with Coal. They are made into several parts used in building construction.", + "sinkPoints": 8, + "className": "Desc_SteelIngot_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_SpaceElevatorPart_2_C": { + "slug": "versatile-framework", + "name": "Versatile Framework", + "description": "Project Part #2. Ship with the Space Elevator to complete phases of Project Assembly.", + "sinkPoints": 1176, + "className": "Desc_SpaceElevatorPart_2_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_ModularFrameHeavy_C": { + "slug": "heavy-modular-frame", + "name": "Heavy Modular Frame", + "description": "A more robust multi-purpose frame.", + "sinkPoints": 11520, + "className": "Desc_ModularFrameHeavy_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_Fuel_C": { + "slug": "packaged-fuel", + "name": "Packaged Fuel", + "description": "Fuel, packaged for alternative transport. Can be used as fuel for Vehicles and the Jetpack.", + "sinkPoints": 270, + "className": "Desc_Fuel_C", + "stackSize": 100, + "energyValue": 750.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 235, + "g": 125, + "b": 21, + "a": 255 + } + }, + "Desc_PackagedOil_C": { + "slug": "packaged-oil", + "name": "Packaged Oil", + "description": "Crude Oil, packaged for alternative transport. Can be used as fuel for Vehicles.", + "sinkPoints": 180, + "className": "Desc_PackagedOil_C", + "stackSize": 100, + "energyValue": 320.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_PackagedOilResidue_C": { + "slug": "packaged-heavy-oil-residue", + "name": "Packaged Heavy Oil Residue", + "description": "Heavy Oil Residue, packaged for alternative transport. Can be used as fuel for Vehicles.", + "sinkPoints": 180, + "className": "Desc_PackagedOilResidue_C", + "stackSize": 100, + "energyValue": 400.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 109, + "g": 45, + "b": 120, + "a": 255 + } + }, + "Desc_PackagedWater_C": { + "slug": "packaged-water", + "name": "Packaged Water", + "description": "Water, packaged for alternative transport.", + "sinkPoints": 130, + "className": "Desc_PackagedWater_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 122, + "g": 176, + "b": 212, + "a": 255 + } + }, + "Desc_CopperIngot_C": { + "slug": "copper-ingot", + "name": "Copper Ingot", + "description": "Used for crafting.\nCrafted into the most basic parts.", + "sinkPoints": 6, + "className": "Desc_CopperIngot_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_QuartzCrystal_C": { + "slug": "quartz-crystal", + "name": "Quartz Crystal", + "description": "Derived from Raw Quartz. Used in the production of advanced radar technology and high-quality display screens.", + "sinkPoints": 50, + "className": "Desc_QuartzCrystal_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_GoldIngot_C": { + "slug": "caterium-ingot", + "name": "Caterium Ingot", + "description": "Caterium Ingots are smelted from Caterium Ore. Caterium Ingots are mostly used for advanced electronics.", + "sinkPoints": 42, + "className": "Desc_GoldIngot_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_AluminumScrap_C": { + "slug": "aluminum-scrap", + "name": "Aluminum Scrap", + "description": "Aluminum Scrap is pure aluminum refined from Alumina. Can be smelted down to Aluminum Ingots for industrial usage.", + "sinkPoints": 27, + "className": "Desc_AluminumScrap_C", + "stackSize": 500, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_SulfuricAcid_C": { + "slug": "sulfuric-acid", + "name": "Sulfuric Acid", + "description": "A mineral acid produced by combining Sulfur and Water in a complex reaction. Primarily used in refinement processes and Battery production.", + "sinkPoints": 16000, + "className": "Desc_SulfuricAcid_C", + "stackSize": 50000, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": true, + "fluidColor": { + "r": 255, + "g": 255, + "b": 0, + "a": 255 + } + }, + "Desc_UraniumCell_C": { + "slug": "encased-uranium-cell", + "name": "Encased Uranium Cell", + "description": "Uranium Cells are produced from Uranium Ore. \nUsed to produce Uranium Fuel Rods for Nuclear Power production.\n\nCaution: Mildly Radioactive.", + "sinkPoints": 147, + "className": "Desc_UraniumCell_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 0.5, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_AluminumPlateReinforced_C": { + "slug": "heat-sink", + "name": "Heat Sink", + "description": "Used to dissipate heat faster.", + "sinkPoints": 2804, + "className": "Desc_AluminumPlateReinforced_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_CoolingSystem_C": { + "slug": "cooling-system", + "name": "Cooling System", + "description": "Used to keep temperatures of advanced parts and buildings from exceeding to inefficient levels.", + "sinkPoints": 12006, + "className": "Desc_CoolingSystem_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_NitricAcid_C": { + "slug": "nitric-acid", + "name": "Nitric Acid", + "description": "Produced by reaction of Nitrogen Gas with Water. Its high corrosiveness and oxidizing properties make it an excellent choice for refinement and fuel production processes.", + "sinkPoints": 94000, + "className": "Desc_NitricAcid_C", + "stackSize": 50000, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": true, + "fluidColor": { + "r": 217, + "g": 217, + "b": 162, + "a": 255 + } + }, + "Desc_AluminumCasing_C": { + "slug": "aluminum-casing", + "name": "Aluminum Casing", + "description": "A versatile container cast from Aluminum Ingots.", + "sinkPoints": 393, + "className": "Desc_AluminumCasing_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_ModularFrameLightweight_C": { + "slug": "radio-control-unit", + "name": "Radio Control Unit", + "description": "Enhances and directs radio signals.", + "sinkPoints": 19600, + "className": "Desc_ModularFrameLightweight_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_AluminumPlate_C": { + "slug": "alclad-aluminum-sheet", + "name": "Alclad Aluminum Sheet", + "description": "Thin, lightweight, and highly durable sheets mainly used for products that require high heat conduction or a high specific strength.", + "sinkPoints": 266, + "className": "Desc_AluminumPlate_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_Computer_C": { + "slug": "computer", + "name": "Computer", + "description": "A Computer is a complex logic machine that is used to control advanced behavior in machines.", + "sinkPoints": 17260, + "className": "Desc_Computer_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_CrystalOscillator_C": { + "slug": "crystal-oscillator", + "name": "Crystal Oscillator", + "description": "A crystal oscillator is an electronic oscillator circuit that uses the mechanical resonance of a vibrating crystal to create an electrical signal with a precise frequency.", + "sinkPoints": 3072, + "className": "Desc_CrystalOscillator_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_AluminaSolution_C": { + "slug": "alumina-solution", + "name": "Alumina Solution", + "description": "Dissolved Alumina, extracted from Bauxite. Can be further refined into Aluminum Scrap for Aluminum Ingot production.", + "sinkPoints": 20000, + "className": "Desc_AluminaSolution_C", + "stackSize": 50000, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": true, + "fluidColor": { + "r": 193, + "g": 193, + "b": 193, + "a": 255 + } + }, + "Desc_SpaceElevatorPart_1_C": { + "slug": "smart-plating", + "name": "Smart Plating", + "description": "Project Part #1. Ship with the Space Elevator to complete phases of Project Assembly.", + "sinkPoints": 520, + "className": "Desc_SpaceElevatorPart_1_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_HighSpeedConnector_C": { + "slug": "high-speed-connector", + "name": "High-Speed Connector", + "description": "The high-speed connector connects several cables and wires in a very efficient way. Uses a standard pattern so its applications are many and varied.", + "sinkPoints": 3776, + "className": "Desc_HighSpeedConnector_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_SpaceElevatorPart_3_C": { + "slug": "automated-wiring", + "name": "Automated Wiring", + "description": "Project Part #3. Ship with the Space Elevator to complete phases of Project Assembly.", + "sinkPoints": 1440, + "className": "Desc_SpaceElevatorPart_3_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_Stator_C": { + "slug": "stator", + "name": "Stator", + "description": "Used for crafting.\nThe static parts of a motor.", + "sinkPoints": 240, + "className": "Desc_Stator_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_CircuitBoardHighSpeed_C": { + "slug": "ai-limiter", + "name": "AI Limiter", + "description": "AI Limiters are super advanced electronics that are used to control AIs and keep them from evolving in malicious ways.", + "sinkPoints": 920, + "className": "Desc_CircuitBoardHighSpeed_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_HighSpeedWire_C": { + "slug": "quickwire", + "name": "Quickwire", + "description": "Caterium's high conductivity and resistance to corrosion makes it ideal for small, advanced electronics.", + "sinkPoints": 17, + "className": "Desc_HighSpeedWire_C", + "stackSize": 500, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_SpaceElevatorPart_4_C": { + "slug": "modular-engine", + "name": "Modular Engine", + "description": "Project Part #4. Ship with the Space Elevator to complete phases of Project Assembly.", + "sinkPoints": 9960, + "className": "Desc_SpaceElevatorPart_4_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_SpaceElevatorPart_5_C": { + "slug": "adaptive-control-unit", + "name": "Adaptive Control Unit", + "description": "Project Part #5. Ship with the Space Elevator to complete phases of Project Assembly.", + "sinkPoints": 86120, + "className": "Desc_SpaceElevatorPart_5_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_MotorLightweight_C": { + "slug": "turbo-motor", + "name": "Turbo Motor", + "description": "The Turbo Motor is a more complex and more powerful version of the regular Motor.", + "sinkPoints": 242720, + "className": "Desc_MotorLightweight_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_PressureConversionCube_C": { + "slug": "pressure-conversion-cube", + "name": "Pressure Conversion Cube", + "description": "Converts outgoing force into internal pressure. Required to contain unstable, high-energy matter.", + "sinkPoints": 257312, + "className": "Desc_PressureConversionCube_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_ModularFrameFused_C": { + "slug": "fused-modular-frame", + "name": "Fused Modular Frame", + "description": "A corrosion resistant, nitride hardened, highly robust, yet lightweight modular frame.", + "sinkPoints": 62840, + "className": "Desc_ModularFrameFused_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_ComputerSuper_C": { + "slug": "supercomputer", + "name": "Supercomputer", + "description": "The supercomputer is the next-gen version of the computer.", + "sinkPoints": 99576, + "className": "Desc_ComputerSuper_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_ElectromagneticControlRod_C": { + "slug": "electromagnetic-control-rod", + "name": "Electromagnetic Control Rod", + "description": "Control Rods regulate power output via electromagnetism.", + "sinkPoints": 2560, + "className": "Desc_ElectromagneticControlRod_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_CopperDust_C": { + "slug": "copper-powder", + "name": "Copper Powder", + "description": "Ground down Copper Ingots.\nThe high natural density of Copper, combined with the granularity of the powder, makes this part fit for producing Nuclear Pasta in the Particle Accelerator.", + "sinkPoints": 72, + "className": "Desc_CopperDust_C", + "stackSize": 500, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_GasTank_C": { + "slug": "empty-fluid-tank", + "name": "Empty Fluid Tank", + "description": "Used to package gases and volatile liquids for transportation.", + "sinkPoints": 225, + "className": "Desc_GasTank_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_SpaceElevatorPart_9_C": { + "slug": "nuclear-pasta", + "name": "Nuclear Pasta", + "description": "Project Part #9. Ship with the Space Elevator to complete phases of Project Assembly.\nPower Usage: 500-1500 MW (1000 MW average).\n\nNuclear Pasta is extremely dense degenerate matter, formed when extreme pressure forces protons and electrons together into neutrons. It is theorized to exist naturally within the crust of neutron stars.", + "sinkPoints": 543424, + "className": "Desc_SpaceElevatorPart_9_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_SpaceElevatorPart_7_C": { + "slug": "assembly-director-system", + "name": "Assembly Director System", + "description": "Project Part #6. Ship with the Space Elevator to complete phases of Project Assembly.\n\nThis extremely fast and precise computing system is specifically designed to direct the Project Assembly: Assembly Phase.", + "sinkPoints": 543632, + "className": "Desc_SpaceElevatorPart_7_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_SpaceElevatorPart_6_C": { + "slug": "magnetic-field-generator", + "name": "Magnetic Field Generator", + "description": "Project Part #7. Ship with the Space Elevator to complete phases of Project Assembly.\n\nThese modular generators use superconducting magnets and vast amounts of electricity to produce an easily expandable and powerful magnetic field.", + "sinkPoints": 15650, + "className": "Desc_SpaceElevatorPart_6_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_SpaceElevatorPart_8_C": { + "slug": "thermal-propulsion-rocket", + "name": "Thermal Propulsion Rocket", + "description": "Project Part #8. Ship with the Space Elevator to complete phases of Project Assembly.\n\nUses extreme heat to produce the high-pressure plasma required to get Project Assembly into motion.", + "sinkPoints": 732956, + "className": "Desc_SpaceElevatorPart_8_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_Gunpowder_C": { + "slug": "black-powder", + "name": "Black Powder", + "description": "An explosive powder that is commonly used to produce simple explosives.", + "sinkPoints": 14, + "className": "Desc_Gunpowder_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_Filter_C": { + "slug": "gas-filter", + "name": "Gas Filter", + "description": "Used in the Gas Mask to filter out toxins and pollutants from the air.", + "sinkPoints": 830, + "className": "Desc_Filter_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_HazmatFilter_C": { + "slug": "iodine-infused-filter", + "name": "Iodine Infused Filter", + "description": "Used in the Hazmat Suit to absorb radioactive particles.", + "sinkPoints": 2718, + "className": "Desc_HazmatFilter_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_AlienProtein_C": { + "slug": "alien-protein", + "name": "Alien Protein", + "description": "Ground down Alien Remains in a neat little package.\nUsed for medical purposes and to research alien organisms.", + "sinkPoints": 0, + "className": "Desc_AlienProtein_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_AlienDNACapsule_C": { + "slug": "alien-dna-capsule", + "name": "Alien DNA Capsule", + "description": "This data capsule translates organic chemicals into readable alien genetics information.\nUsed for researching alien organisms.\n\nGo the extra kilometer! Knowledge is power, and power is just efficiency with fewer steps. Depositing Alien DNA Capsules in the AWESOME Sink provides FICSIT with knowledge, and Pioneers with Coupons.", + "sinkPoints": 0, + "className": "Desc_AlienDNACapsule_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_Crystal_mk3_C": { + "slug": "purple-power-slug", + "name": "Purple Power Slug", + "description": "A strange slug radiating a powerful strange power.", + "sinkPoints": 0, + "className": "Desc_Crystal_mk3_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_Crystal_mk2_C": { + "slug": "yellow-power-slug", + "name": "Yellow Power Slug", + "description": "A strange slug radiating a strange power.", + "sinkPoints": 0, + "className": "Desc_Crystal_mk2_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_Crystal_C": { + "slug": "blue-power-slug", + "name": "Blue Power Slug", + "description": "A strange slug radiating a weak strange power.", + "sinkPoints": 0, + "className": "Desc_Crystal_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_GunpowderMK2_C": { + "slug": "smokeless-powder", + "name": "Smokeless Powder", + "description": "An explosive powder that is commonly used to produce modern firearms.", + "sinkPoints": 58, + "className": "Desc_GunpowderMK2_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_Water_C": { + "slug": "water", + "name": "Water", + "description": "It's water.", + "sinkPoints": 5000, + "className": "Desc_Water_C", + "stackSize": 50000, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": true, + "fluidColor": { + "r": 122, + "g": 176, + "b": 212, + "a": 255 + } + }, + "Desc_OreIron_C": { + "slug": "iron-ore", + "name": "Iron Ore", + "description": "Used for crafting.\nThe most essential basic resource.", + "sinkPoints": 1, + "className": "Desc_OreIron_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_Stone_C": { + "slug": "limestone", + "name": "Limestone", + "description": "Used for crafting.\nBasic resource mainly used for stable foundations.", + "sinkPoints": 2, + "className": "Desc_Stone_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_Coal_C": { + "slug": "coal", + "name": "Coal", + "description": "Mainly used as fuel for vehicles & coal generators and for steel production.", + "sinkPoints": 3, + "className": "Desc_Coal_C", + "stackSize": 100, + "energyValue": 300.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_Sulfur_C": { + "slug": "sulfur", + "name": "Sulfur", + "description": "Sulfur is primarily used for Black Powder.", + "sinkPoints": 11, + "className": "Desc_Sulfur_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_LiquidOil_C": { + "slug": "crude-oil", + "name": "Crude Oil", + "description": "Crude Oil is refined into all kinds of Oil-based resources, like Fuel and Plastic.", + "sinkPoints": 30000, + "className": "Desc_LiquidOil_C", + "stackSize": 50000, + "energyValue": 320.0, + "radioactiveDecay": 0.0, + "liquid": true, + "fluidColor": { + "r": 25, + "g": 0, + "b": 25, + "a": 255 + } + }, + "Desc_RawQuartz_C": { + "slug": "raw-quartz", + "name": "Raw Quartz", + "description": "Raw Quartz can be processed into Quartz Crystals and Silica, which both offer a variety of applications.", + "sinkPoints": 15, + "className": "Desc_RawQuartz_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_OreCopper_C": { + "slug": "copper-ore", + "name": "Copper Ore", + "description": "Used for crafting.\nBasic resource mainly used for electricity.", + "sinkPoints": 3, + "className": "Desc_OreCopper_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_OreGold_C": { + "slug": "caterium-ore", + "name": "Caterium Ore", + "description": "Caterium Ore is smelted into Caterium Ingots. Caterium Ingots are mostly used for advanced electronics.", + "sinkPoints": 7, + "className": "Desc_OreGold_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_OreUranium_C": { + "slug": "uranium", + "name": "Uranium", + "description": "Uranium is a radioactive element. \nUsed to produce Encased Uranium Cells for Uranium Fuel Rods.\n\nCaution: Moderately Radioactive.", + "sinkPoints": 35, + "className": "Desc_OreUranium_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 15.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_NitrogenGas_C": { + "slug": "nitrogen-gas", + "name": "Nitrogen Gas", + "description": "Nitrogen can be used in a variety of ways, such as metallurgy, cooling, and Nitric Acid production. On Massage-2(AB)b, it can be extracted from underground gas wells.", + "sinkPoints": 10000, + "className": "Desc_NitrogenGas_C", + "stackSize": 50000, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": true, + "fluidColor": { + "r": 89, + "g": 89, + "b": 89, + "a": 255 + } + }, + "Desc_OreBauxite_C": { + "slug": "bauxite", + "name": "Bauxite", + "description": "Bauxite is used to produce Alumina, which can be further refined into the Aluminum Scrap required to produce Aluminum Ingots.", + "sinkPoints": 8, + "className": "Desc_OreBauxite_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "BP_EquipmentDescriptorShockShank_C": { + "slug": "xeno-zapper", + "name": "Xeno-Zapper", + "description": "Standard issue electroshock self-defense weapon for melee range.", + "sinkPoints": 1880, + "className": "BP_EquipmentDescriptorShockShank_C", + "stackSize": 1, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "BP_EquipmentDescriptorStunSpear_C": { + "slug": "xeno-basher", + "name": "Xeno-Basher", + "description": "Heavy electroshock self-defense weapon for melee range.", + "sinkPoints": 18800, + "className": "BP_EquipmentDescriptorStunSpear_C", + "stackSize": 1, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "BP_ItemDescriptorPortableMiner_C": { + "slug": "portable-miner", + "name": "Portable Miner", + "description": "Can be set up on a resource node to automatically extract the resource. Note that it has limited storage space.", + "sinkPoints": 56, + "className": "BP_ItemDescriptorPortableMiner_C", + "stackSize": 1, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "BP_EquipmentDescriptorHoverPack_C": { + "slug": "hover-pack", + "name": "Hover Pack", + "description": "Power consumption: 100 MW\n\nAllows for vertical movement and hovering in mid-air to improve building efficiency and factory traversal. Wirelessly connects to nearby power connections, such as Power Poles and Buildings, for power consumption.\n\nSlow-fall: Hold {PlayerMovement_Jump} after losing connection mid-air.\nDisable Hoverpack: Double tap {PlayerMovement_Crouch} while hovering.", + "sinkPoints": 413920, + "className": "BP_EquipmentDescriptorHoverPack_C", + "stackSize": 1, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "BP_EquipmentDescriptorHazmatSuit_C": { + "slug": "hazmat-suit", + "name": "Hazmat Suit", + "description": "Shields Pioneers from the adverse effects of radiation. \nConsumes Iodine Infused Filters from the inventory while worn in radioactive areas.", + "sinkPoints": 54100, + "className": "BP_EquipmentDescriptorHazmatSuit_C", + "stackSize": 1, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "BP_EquipmentDescriptorGasmask_C": { + "slug": "gas-mask", + "name": "Gas Mask", + "description": "Allows Pioneers to breathe normally while in toxic gas areas.\nConsumes Gas Filters from the inventory when in use.", + "sinkPoints": 55000, + "className": "BP_EquipmentDescriptorGasmask_C", + "stackSize": 1, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "BP_EquipmentDescriptorJetPack_C": { + "slug": "jetpack", + "name": "Jetpack", + "description": "The Jetpack allows Pioneers to travel through the air with increased control.\n\nFuel is automatically consumed from the inventory to refill the Jetpack while on the ground.\nDifferent fuel types can be used and provide different levels of Jetpack efficiency. The preferred fuel type will be used if available and can be set in the equipment inventory.", + "sinkPoints": 49580, + "className": "BP_EquipmentDescriptorJetPack_C", + "stackSize": 1, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_Chainsaw_C": { + "slug": "chainsaw", + "name": "Chainsaw", + "description": "Slot: Hands\nFuel: Biofuel\n\nUsed to clear an area of flora that is too difficult to remove by hand.", + "sinkPoints": 2760, + "className": "Desc_Chainsaw_C", + "stackSize": 1, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "BP_EquipmentDescriptorObjectScanner_C": { + "slug": "object-scanner", + "name": "Object Scanner", + "description": "Scans the area for a set item. Beeps at a rate proportional to proximity and direction.", + "sinkPoints": 1400, + "className": "BP_EquipmentDescriptorObjectScanner_C", + "stackSize": 1, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_RebarGunProjectile_C": { + "slug": "rebar-gun", + "name": "Rebar Gun", + "description": "Improvised ranged weapon for self-defense. Has to be reloaded after each use.", + "sinkPoints": 1968, + "className": "Desc_RebarGunProjectile_C", + "stackSize": 1, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "BP_EquipmentDescriptorRifle_C": { + "slug": "rifle", + "name": "Rifle", + "description": "A long-range, rapid-fire weapon. Specifically designed to deliver adequate performance within the designated work area.", + "sinkPoints": 9480, + "className": "BP_EquipmentDescriptorRifle_C", + "stackSize": 1, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "BP_EquipmentDescriptorJumpingStilts_C": { + "slug": "blade-runners", + "name": "Blade Runners", + "description": "An exoskeleton for the lower legs that assists movement, allowing Pioneers to sprint faster and jump higher.\nAlso dampens the impact of landing.", + "sinkPoints": 4088, + "className": "BP_EquipmentDescriptorJumpingStilts_C", + "stackSize": 1, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "BP_EqDescZipLine_C": { + "slug": "zipline", + "name": "Zipline", + "description": "Provides faster traversal in factories by allowing Pioneers to zip along Power lines.\nActivate the Zipline and aim at a nearby Power Line to connect to it.", + "sinkPoints": 5284, + "className": "BP_EqDescZipLine_C", + "stackSize": 1, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "BP_EquipmentDescriptorNobeliskDetonator_C": { + "slug": "nobelisk-detonator", + "name": "Nobelisk Detonator", + "description": "A remote-control device used to handle and detonate Nobelisks.", + "sinkPoints": 6480, + "className": "BP_EquipmentDescriptorNobeliskDetonator_C", + "stackSize": 1, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_GolfCart_C": { + "slug": "factory-carttm", + "name": "Factory Cart™", + "description": "The one and only FICSIT Factory Cart™\nNow with special - FICSIT Foundation only - Grip Wheels, for an even smoother and faster factory floor experience!", + "sinkPoints": 1552, + "className": "Desc_GolfCart_C", + "stackSize": 1, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_GolfCartGold_C": { + "slug": "golden-factory-carttm", + "name": "Golden Factory Cart™", + "description": "The one and only Golden FICSIT Factory Cart™\n\nYou have now officially ascended. \nGo forth now, Master of Spaghetti, God of the Factory, Sinker of Cups, Employee of the Planet... travel in STYLE!", + "sinkPoints": 1852, + "className": "Desc_GolfCartGold_C", + "stackSize": 1, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_FlowerPetals_C": { + "slug": "flower-petals", + "name": "Flower Petals", + "description": "Used for crafting.\nColorful native flower petals.", + "sinkPoints": 10, + "className": "Desc_FlowerPetals_C", + "stackSize": 500, + "energyValue": 100.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_Wood_C": { + "slug": "wood", + "name": "Wood", + "description": "Primarily used as fuel.\nBiomass Burners and vehicles can use it for power.", + "sinkPoints": 30, + "className": "Desc_Wood_C", + "stackSize": 200, + "energyValue": 100.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_GenericBiomass_C": { + "slug": "biomass", + "name": "Biomass", + "description": "Primarily used as fuel.\nBiomass burners and vehicles can use it for power.\nBiomass is much more energy-efficient than raw biological matter.", + "sinkPoints": 12, + "className": "Desc_GenericBiomass_C", + "stackSize": 200, + "energyValue": 180.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_Biofuel_C": { + "slug": "solid-biofuel", + "name": "Solid Biofuel", + "description": "The most energy-efficient form of solid biomass. Can be used as fuel for the Chainsaw.", + "sinkPoints": 48, + "className": "Desc_Biofuel_C", + "stackSize": 200, + "energyValue": 450.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_LiquidBiofuel_C": { + "slug": "liquid-biofuel", + "name": "Liquid Biofuel", + "description": "Liquid Biofuel can be used to generate power or packaged to be used as fuel for Vehicles.", + "sinkPoints": 261000, + "className": "Desc_LiquidBiofuel_C", + "stackSize": 50000, + "energyValue": 750.0, + "radioactiveDecay": 0.0, + "liquid": true, + "fluidColor": { + "r": 59, + "g": 83, + "b": 44, + "a": 255 + } + }, + "Desc_PackagedBiofuel_C": { + "slug": "packaged-liquid-biofuel", + "name": "Packaged Liquid Biofuel", + "description": "Liquid Biofuel, packaged for alternative transport. Can be used as fuel for Vehicles and the Jetpack.", + "sinkPoints": 370, + "className": "Desc_PackagedBiofuel_C", + "stackSize": 100, + "energyValue": 750.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 58, + "g": 83, + "b": 42, + "a": 255 + } + }, + "Desc_PackagedAlumina_C": { + "slug": "packaged-alumina-solution", + "name": "Packaged Alumina Solution", + "description": "Alumina Solution, packaged for alternative transport.", + "sinkPoints": 160, + "className": "Desc_PackagedAlumina_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 58, + "g": 83, + "b": 42, + "a": 255 + } + }, + "Desc_PackagedNitrogenGas_C": { + "slug": "packaged-nitrogen-gas", + "name": "Packaged Nitrogen Gas", + "description": "Nitrogen Gas, packaged for alternative transport.", + "sinkPoints": 312, + "className": "Desc_PackagedNitrogenGas_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 58, + "g": 83, + "b": 42, + "a": 255 + } + }, + "Desc_PackagedNitricAcid_C": { + "slug": "packaged-nitric-acid", + "name": "Packaged Nitric Acid", + "description": "Nitric Acid, packaged for alternative transport.", + "sinkPoints": 412, + "className": "Desc_PackagedNitricAcid_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 58, + "g": 83, + "b": 42, + "a": 255 + } + }, + "Desc_PackagedSulfuricAcid_C": { + "slug": "packaged-sulfuric-acid", + "name": "Packaged Sulfuric Acid", + "description": "Sulfuric Acid, packaged for alternative transport.", + "sinkPoints": 152, + "className": "Desc_PackagedSulfuricAcid_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 58, + "g": 83, + "b": 42, + "a": 255 + } + }, + "Desc_Fabric_C": { + "slug": "fabric", + "name": "Fabric", + "description": "Used for equipment crafting.\nFlexible but durable fabric.", + "sinkPoints": 140, + "className": "Desc_Fabric_C", + "stackSize": 100, + "energyValue": 15.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_StingerParts_C": { + "slug": "stinger-remains", + "name": "Stinger Remains", + "description": "The remains of whatever that creepy thing was.\nUsed for MAM research.", + "sinkPoints": 0, + "className": "Desc_StingerParts_C", + "stackSize": 50, + "energyValue": 250.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_SpitterParts_C": { + "slug": "plasma-spitter-remains", + "name": "Plasma Spitter Remains", + "description": "The remains of a plasma spitting alien creature.\nUsed for MAM research.", + "sinkPoints": 0, + "className": "Desc_SpitterParts_C", + "stackSize": 50, + "energyValue": 250.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_HogParts_C": { + "slug": "hog-remains", + "name": "Hog Remains", + "description": "The carapace of the alien Hog creature.\nUsed for MAM research.", + "sinkPoints": 0, + "className": "Desc_HogParts_C", + "stackSize": 50, + "energyValue": 250.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_HatcherParts_C": { + "slug": "hatcher-remains", + "name": "Hatcher Remains", + "description": "The shell-like remains of an alien... thing.\nUsed for MAM research.", + "sinkPoints": 0, + "className": "Desc_HatcherParts_C", + "stackSize": 50, + "energyValue": 250.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_Mycelia_C": { + "slug": "mycelia", + "name": "Mycelia", + "description": "Used for crafting.\nBiomass Burners and vehicles can use it for power.", + "sinkPoints": 10, + "className": "Desc_Mycelia_C", + "stackSize": 200, + "energyValue": 20.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_Leaves_C": { + "slug": "leaves", + "name": "Leaves", + "description": "Primarily used as fuel.\nBiomass Burners and vehicles can use it for power.", + "sinkPoints": 3, + "className": "Desc_Leaves_C", + "stackSize": 500, + "energyValue": 15.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_NuclearFuelRod_C": { + "slug": "uranium-fuel-rod", + "name": "Uranium Fuel Rod", + "description": "Used as fuel for the Nuclear Power Plant.\n\nCaution: Produces radioactive Uranium Waste when consumed.\nCaution: Moderately Radioactive.", + "sinkPoints": 44092, + "className": "Desc_NuclearFuelRod_C", + "stackSize": 50, + "energyValue": 750000.0, + "radioactiveDecay": 50.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_PlutoniumFuelRod_C": { + "slug": "plutonium-fuel-rod", + "name": "Plutonium Fuel Rod", + "description": "Used as fuel for the Nuclear Power Plant.\n\nCaution: Produces radioactive Plutonium Waste when consumed.\nCaution: HIGHLY Radioactive.", + "sinkPoints": 153184, + "className": "Desc_PlutoniumFuelRod_C", + "stackSize": 50, + "energyValue": 1500000.0, + "radioactiveDecay": 250.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "BP_EquipmentDescriptorBeacon_C": { + "slug": "beacon", + "name": "Beacon", + "description": "PENDING REMOVAL\nThis item will (likely) be removed in a future update.\n\nCurrently only used as an ingredient in an alternative recipe.", + "sinkPoints": 320, + "className": "BP_EquipmentDescriptorBeacon_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_Medkit_C": { + "slug": "medicinal-inhaler", + "name": "Medicinal Inhaler", + "description": "Fully restores health when used.\n\nThe FICSIT Medicinal Inhaler can be produced from a variety of different ingredients.", + "sinkPoints": 125, + "className": "Desc_Medkit_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_Nut_C": { + "slug": "beryl-nut", + "name": "Beryl Nut", + "description": "Slot: Hands\nConsumable\n\nCan be eaten to restore half a health segment.", + "sinkPoints": 0, + "className": "Desc_Nut_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_Shroom_C": { + "slug": "bacon-agaric", + "name": "Bacon Agaric", + "description": "Slot: Hands\nConsumable\n\nCan be eaten to restore two health segments.", + "sinkPoints": 0, + "className": "Desc_Shroom_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_Berry_C": { + "slug": "paleberry", + "name": "Paleberry", + "description": "Slot: Hands\nConsumable\n\nCan be eaten to restore one health segment.", + "sinkPoints": 0, + "className": "Desc_Berry_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_Parachute_C": { + "slug": "parachute", + "name": "Parachute", + "description": "Slows down your fall when activated in mid-air.", + "sinkPoints": 608, + "className": "Desc_Parachute_C", + "stackSize": 1, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_Rebar_Explosive_C": { + "slug": "explosive-rebar", + "name": "Explosive Rebar", + "description": "Explodes on impact, dealing heavy damage.", + "sinkPoints": 360, + "className": "Desc_Rebar_Explosive_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_Rebar_Stunshot_C": { + "slug": "stun-rebar", + "name": "Stun Rebar", + "description": "Electrocutes the target on impact, stunning it for a short time.\n\nStun duration: 5 seconds", + "sinkPoints": 186, + "className": "Desc_Rebar_Stunshot_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_SpikedRebar_C": { + "slug": "iron-rebar", + "name": "Iron Rebar", + "description": "A simple iron rebar that can be shot using the Rebar Gun, for self-defense purposes.", + "sinkPoints": 8, + "className": "Desc_SpikedRebar_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_CartridgeSmartProjectile_C": { + "slug": "homing-rifle-ammo", + "name": "Homing Rifle Ammo", + "description": "The bullet guidance system built into this ammunition allows it to accurately hit any target within the reticle area.\nEspecially useful when dealing with agile threats, or for Pioneers who can't be bothered to aim properly.", + "sinkPoints": 855, + "className": "Desc_CartridgeSmartProjectile_C", + "stackSize": 500, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_NobeliskExplosive_C": { + "slug": "nobelisk", + "name": "Nobelisk", + "description": "A simple explosive, useful for clearing boulders, vegetation, and other obstacles.", + "sinkPoints": 152, + "className": "Desc_NobeliskExplosive_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_NobeliskCluster_C": { + "slug": "cluster-nobelisk", + "name": "Cluster Nobelisk", + "description": "A Nobelisk that detonates into multiple smaller explosions. Practical when clearing out large areas of vegetation and other inconveniences.", + "sinkPoints": 1376, + "className": "Desc_NobeliskCluster_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_NobeliskGas_C": { + "slug": "gas-nobelisk", + "name": "Gas Nobelisk", + "description": "Instead of a regular explosion, this Nobelisk creates a deadly gas cloud.", + "sinkPoints": 544, + "className": "Desc_NobeliskGas_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_NobeliskNuke_C": { + "slug": "nuke-nobelisk", + "name": "Nuke Nobelisk", + "description": "This Nobelisk uses a nuclear fission reaction to generate a massive explosion.\n\nWARNING: Ensure all FICSIT property is clear of the blast zone before detonation.", + "sinkPoints": 19600, + "className": "Desc_NobeliskNuke_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_NobeliskShockwave_C": { + "slug": "pulse-nobelisk", + "name": "Pulse Nobelisk", + "description": "Instead of a regular explosion, this Nobelisk generates a powerful shockwave.", + "sinkPoints": 1533, + "className": "Desc_NobeliskShockwave_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_Rebar_Spreadshot_C": { + "slug": "shatter-rebar", + "name": "Shatter Rebar", + "description": "This rebar fractures when shot, launching deadly debris in a wide spread but with limited range.", + "sinkPoints": 332, + "className": "Desc_Rebar_Spreadshot_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_CartridgeChaos_C": { + "slug": "turbo-rifle-ammo", + "name": "Turbo Rifle Ammo", + "description": "Lightweight, compact, and volatile. These rounds provide extreme capacity and fire rates, at the cost of accuracy.", + "sinkPoints": 120, + "className": "Desc_CartridgeChaos_C", + "stackSize": 500, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "Desc_CartridgeStandard_C": { + "slug": "rifle-ammo", + "name": "Rifle Ammo", + "description": "Standard issue Rifle ammunition, useful for establishing dominance.", + "sinkPoints": 25, + "className": "Desc_CartridgeStandard_C", + "stackSize": 500, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + } + }, + "recipes": { + "Recipe_BlueprintDesigner_C": { + "slug": "recipe-blueprintdesigner-c", + "name": "Blueprint Designer", + "className": "Recipe_BlueprintDesigner_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrame_C", + "amount": 15.0 + }, + { + "item": "Desc_Cable_C", + "amount": 25.0 + }, + { + "item": "Desc_Cement_C", + "amount": 100.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 100.0 + } + ], + "products": [ + { + "item": "Desc_BlueprintDesigner_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_8x1_C": { + "slug": "recipe-wall-concrete-8x1-c", + "name": "Basic Wall 1m", + "className": "Recipe_Wall_Concrete_8x1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_8x4_C": { + "slug": "recipe-wall-concrete-8x4-c", + "name": "Basic Wall 4m", + "className": "Recipe_Wall_Concrete_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_8x4_ConveyorHole_01_C": { + "slug": "recipe-wall-concrete-8x4-conveyorhole-01-c", + "name": "Conveyor Wall x1", + "className": "Recipe_Wall_Concrete_8x4_ConveyorHole_01_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x4_ConveyorHole_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_8x4_ConveyorHole_02_C": { + "slug": "recipe-wall-concrete-8x4-conveyorhole-02-c", + "name": "Conveyor Wall x2", + "className": "Recipe_Wall_Concrete_8x4_ConveyorHole_02_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x4_ConveyorHole_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_8x4_ConveyorHole_03_C": { + "slug": "recipe-wall-concrete-8x4-conveyorhole-03-c", + "name": "Conveyor Wall x3", + "className": "Recipe_Wall_Concrete_8x4_ConveyorHole_03_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x4_ConveyorHole_03_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_8x4_Corner_01_C": { + "slug": "recipe-wall-concrete-8x4-corner-01-c", + "name": "Tilted Corner Wall 4m", + "className": "Recipe_Wall_Concrete_8x4_Corner_01_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x4_Corner_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_8x4_Corner_2_C": { + "slug": "recipe-wall-concrete-8x4-corner-2-c", + "name": "Tilted Concave Wall 4m", + "className": "Recipe_Wall_Concrete_8x4_Corner_2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x4_Corner_2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_8x4_Window_01_C": { + "slug": "recipe-wall-concrete-8x4-window-01-c", + "name": "Single Window", + "className": "Recipe_Wall_Concrete_8x4_Window_01_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Silica_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x4_Window_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_8x4_Window_02_C": { + "slug": "recipe-wall-concrete-8x4-window-02-c", + "name": "Frame Window", + "className": "Recipe_Wall_Concrete_8x4_Window_02_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Silica_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x4_Window_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_8x4_Window_03_C": { + "slug": "recipe-wall-concrete-8x4-window-03-c", + "name": "Panel Window", + "className": "Recipe_Wall_Concrete_8x4_Window_03_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Silica_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x4_Window_03_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_8x4_Window_04_C": { + "slug": "recipe-wall-concrete-8x4-window-04-c", + "name": "Reinforced Window", + "className": "Recipe_Wall_Concrete_8x4_Window_04_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Silica_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x4_Window_04_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_8x8_Corner_01_C": { + "slug": "recipe-wall-concrete-8x8-corner-01-c", + "name": "Tilted Corner Wall 8m", + "className": "Recipe_Wall_Concrete_8x8_Corner_01_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x8_Corner_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_8x8_Corner_2_C": { + "slug": "recipe-wall-concrete-8x8-corner-2-c", + "name": "Tilted Concave Wall 8m", + "className": "Recipe_Wall_Concrete_8x8_Corner_2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x8_Corner_2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_Angular_8x4_C": { + "slug": "recipe-wall-concrete-angular-8x4-c", + "name": "Tilted Wall 4m", + "className": "Recipe_Wall_Concrete_Angular_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_Angular_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_Angular_8x8_C": { + "slug": "recipe-wall-concrete-angular-8x8-c", + "name": "Tilted Wall 8m", + "className": "Recipe_Wall_Concrete_Angular_8x8_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_Angular_8x8_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_CDoor_8x4_C": { + "slug": "recipe-wall-concrete-cdoor-8x4-c", + "name": "Center Door Wall", + "className": "Recipe_Wall_Concrete_CDoor_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_CDoor_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_FlipTris_8x1_C": { + "slug": "recipe-wall-concrete-fliptris-8x1-c", + "name": "Wall 1a", + "className": "Recipe_Wall_Concrete_FlipTris_8x1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x1_FlipTris_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_FlipTris_8x2_C": { + "slug": "recipe-wall-concrete-fliptris-8x2-c", + "name": "Inv. Ramp Wall 2m", + "className": "Recipe_Wall_Concrete_FlipTris_8x2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x2_FlipTris_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_FlipTris_8x4_C": { + "slug": "recipe-wall-concrete-fliptris-8x4-c", + "name": "Inv. Ramp Wall 4m", + "className": "Recipe_Wall_Concrete_FlipTris_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x4_FlipTris_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_FlipTris_8x8_C": { + "slug": "recipe-wall-concrete-fliptris-8x8-c", + "name": "Inv. Ramp Wall 8m", + "className": "Recipe_Wall_Concrete_FlipTris_8x8_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x8_FlipTris_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_Gate_8x4_C": { + "slug": "recipe-wall-concrete-gate-8x4-c", + "name": "Gate Hole Wall", + "className": "Recipe_Wall_Concrete_Gate_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_Gate_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_SDoor_8x4_C": { + "slug": "recipe-wall-concrete-sdoor-8x4-c", + "name": "Side Door Wall", + "className": "Recipe_Wall_Concrete_SDoor_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_SDoor_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_Tris_8x1_C": { + "slug": "recipe-wall-concrete-tris-8x1-c", + "name": "Ramp Wall 1m", + "className": "Recipe_Wall_Concrete_Tris_8x1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x1_Tris_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_Tris_8x2_C": { + "slug": "recipe-wall-concrete-tris-8x2-c", + "name": "Ramp Wall 2m", + "className": "Recipe_Wall_Concrete_Tris_8x2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x2_Tris_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_Tris_8x4_C": { + "slug": "recipe-wall-concrete-tris-8x4-c", + "name": "Ramp Wall 4m", + "className": "Recipe_Wall_Concrete_Tris_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x4_Tris_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_Tris_8x8_C": { + "slug": "recipe-wall-concrete-tris-8x8-c", + "name": "Ramp Wall 8m", + "className": "Recipe_Wall_Concrete_Tris_8x8_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x8_Tris_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_8x4_01_C": { + "slug": "recipe-wall-8x4-01-c", + "name": "Basic Wall 4m", + "className": "Recipe_Wall_8x4_01_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_8x4_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Conveyor_8x4_01_C": { + "slug": "recipe-wall-conveyor-8x4-01-c", + "name": "Conveyor Wall x3", + "className": "Recipe_Wall_Conveyor_8x4_01_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Conveyor_8x4_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Conveyor_8x4_02_C": { + "slug": "recipe-wall-conveyor-8x4-02-c", + "name": "Conveyor Wall x2", + "className": "Recipe_Wall_Conveyor_8x4_02_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Conveyor_8x4_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Conveyor_8x4_03_C": { + "slug": "recipe-wall-conveyor-8x4-03-c", + "name": "Conveyor Wall x1", + "className": "Recipe_Wall_Conveyor_8x4_03_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Conveyor_8x4_03_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Door_8x4_01_C": { + "slug": "recipe-wall-door-8x4-01-c", + "name": "Center Door Wall", + "className": "Recipe_Wall_Door_8x4_01_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Door_8x4_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Door_8x4_03_C": { + "slug": "recipe-wall-door-8x4-03-c", + "name": "Side Door Wall", + "className": "Recipe_Wall_Door_8x4_03_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Door_8x4_03_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Gate_8x4_01_C": { + "slug": "recipe-wall-gate-8x4-01-c", + "name": "Gate Hole Wall", + "className": "Recipe_Wall_Gate_8x4_01_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Gate_8x4_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Orange_8x1_C": { + "slug": "recipe-wall-orange-8x1-c", + "name": "Basic Wall 1m", + "className": "Recipe_Wall_Orange_8x1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Orange_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Orange_8x4_Corner_01_C": { + "slug": "recipe-wall-orange-8x4-corner-01-c", + "name": "Tilted Corner Wall 4m", + "className": "Recipe_Wall_Orange_8x4_Corner_01_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Orange_8x4_Corner_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Orange_8x4_Corner_02_C": { + "slug": "recipe-wall-orange-8x4-corner-02-c", + "name": "Tilted Concave Wall 4m", + "className": "Recipe_Wall_Orange_8x4_Corner_02_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Orange_8x4_Corner_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Orange_8x8_Corner_01_C": { + "slug": "recipe-wall-orange-8x8-corner-01-c", + "name": "Tilted Corner Wall 8m", + "className": "Recipe_Wall_Orange_8x8_Corner_01_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Orange_8x8_Corner_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Orange_8x8_Corner_02_C": { + "slug": "recipe-wall-orange-8x8-corner-02-c", + "name": "Tilted Concave Wall 8m", + "className": "Recipe_Wall_Orange_8x8_Corner_02_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Orange_8x8_Corner_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Orange_Angular_8x4_C": { + "slug": "recipe-wall-orange-angular-8x4-c", + "name": "Tilted Wall 4m", + "className": "Recipe_Wall_Orange_Angular_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Orange_Angular_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Orange_Angular_8x8_C": { + "slug": "recipe-wall-orange-angular-8x8-c", + "name": "Tilted Wall 8m", + "className": "Recipe_Wall_Orange_Angular_8x8_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Orange_Angular_8x8_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Orange_FlipTris_8x1_C": { + "slug": "recipe-wall-orange-fliptris-8x1-c", + "name": "Inv. Ramp Wall 1m", + "className": "Recipe_Wall_Orange_FlipTris_8x1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Orange_8x1_FlipTris_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Orange_FlipTris_8x2_C": { + "slug": "recipe-wall-orange-fliptris-8x2-c", + "name": "Inv. Ramp Wall 2m", + "className": "Recipe_Wall_Orange_FlipTris_8x2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Orange_8x2_FlipTris_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Orange_FlipTris_8x4_C": { + "slug": "recipe-wall-orange-fliptris-8x4-c", + "name": "Inv. Ramp Wall 4m", + "className": "Recipe_Wall_Orange_FlipTris_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Orange_8x4_FlipTris_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Orange_FlipTris_8x8_C": { + "slug": "recipe-wall-orange-fliptris-8x8-c", + "name": "Inv. Ramp Wall 8m", + "className": "Recipe_Wall_Orange_FlipTris_8x8_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Orange_8x8_FlipTris_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Orange_Tris_8x1_C": { + "slug": "recipe-wall-orange-tris-8x1-c", + "name": "Ramp Wall 1m", + "className": "Recipe_Wall_Orange_Tris_8x1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Orange_8x1_Tris_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Orange_Tris_8x2_C": { + "slug": "recipe-wall-orange-tris-8x2-c", + "name": "Ramp Wall 2m", + "className": "Recipe_Wall_Orange_Tris_8x2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Orange_8x2_Tris_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Orange_Tris_8x4_C": { + "slug": "recipe-wall-orange-tris-8x4-c", + "name": "Ramp Wall 4m", + "className": "Recipe_Wall_Orange_Tris_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Orange_8x4_Tris_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Orange_Tris_8x8_C": { + "slug": "recipe-wall-orange-tris-8x8-c", + "name": "Ramp Wall 8m", + "className": "Recipe_Wall_Orange_Tris_8x8_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Orange_8x8_Tris_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Window_8x4_01_C": { + "slug": "recipe-wall-window-8x4-01-c", + "name": "Single Window", + "className": "Recipe_Wall_Window_8x4_01_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Silica_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Window_8x4_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Window_8x4_02_C": { + "slug": "recipe-wall-window-8x4-02-c", + "name": "Frame Window", + "className": "Recipe_Wall_Window_8x4_02_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Silica_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Window_8x4_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Window_8x4_03_C": { + "slug": "recipe-wall-window-8x4-03-c", + "name": "Panel Window", + "className": "Recipe_Wall_Window_8x4_03_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Silica_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Window_8x4_03_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Window_8x4_04_C": { + "slug": "recipe-wall-window-8x4-04-c", + "name": "Reinforced Window", + "className": "Recipe_Wall_Window_8x4_04_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Silica_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Window_8x4_04_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SteelWall_8x4_Gate_01_C": { + "slug": "recipe-steelwall-8x4-gate-01-c", + "name": "Gate Hole Wall", + "className": "Recipe_SteelWall_8x4_Gate_01_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_SteelWall_8x4_Gate_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SteelWall_8x4_Window_01_C": { + "slug": "recipe-steelwall-8x4-window-01-c", + "name": "Single Window", + "className": "Recipe_SteelWall_8x4_Window_01_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Silica_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_SteelWall_8x4_Window_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SteelWall_8x4_Window_02_C": { + "slug": "recipe-steelwall-8x4-window-02-c", + "name": "Reinforced Window", + "className": "Recipe_SteelWall_8x4_Window_02_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Silica_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_SteelWall_8x4_Window_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SteelWall_8x4_Window_03_C": { + "slug": "recipe-steelwall-8x4-window-03-c", + "name": "Frame Window", + "className": "Recipe_SteelWall_8x4_Window_03_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Silica_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_SteelWall_8x4_Window_03_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SteelWall_8x4_Window_04_C": { + "slug": "recipe-steelwall-8x4-window-04-c", + "name": "Panel Window", + "className": "Recipe_SteelWall_8x4_Window_04_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Silica_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_SteelWall_8x4_Window_04_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Steel_8x4_Corner_01_C": { + "slug": "recipe-wall-steel-8x4-corner-01-c", + "name": "Tilted Corner Wall 4m", + "className": "Recipe_Wall_Steel_8x4_Corner_01_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Steel_8x4_Corner_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Steel_8x4_Corner_2_C": { + "slug": "recipe-wall-steel-8x4-corner-2-c", + "name": "Tilted Concave Wall 4m", + "className": "Recipe_Wall_Steel_8x4_Corner_2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Steel_8x4_Corner_2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Steel_8x8_Corner_01_C": { + "slug": "recipe-wall-steel-8x8-corner-01-c", + "name": "Tilted Corner Wall 8m", + "className": "Recipe_Wall_Steel_8x8_Corner_01_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Steel_8x8_Corner_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Steel_8x8_Corner_2_C": { + "slug": "recipe-wall-steel-8x8-corner-2-c", + "name": "Tilted Concave Wall 8m", + "className": "Recipe_Wall_Steel_8x8_Corner_2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Steel_8x8_Corner_2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SteelWall_8x1_C": { + "slug": "recipe-steelwall-8x1-c", + "name": "Basic Wall 1m", + "className": "Recipe_SteelWall_8x1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_SteelWall_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SteelWall_FlipTris_8x1_C": { + "slug": "recipe-steelwall-fliptris-8x1-c", + "name": "Inv. Ramp Wall 1m", + "className": "Recipe_SteelWall_FlipTris_8x1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_SteelWall_FlipTris_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SteelWall_FlipTris_8x2_C": { + "slug": "recipe-steelwall-fliptris-8x2-c", + "name": "Inv. Ramp Wall 2m", + "className": "Recipe_SteelWall_FlipTris_8x2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_SteelWall_FlipTris_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SteelWall_FlipTris_8x4_C": { + "slug": "recipe-steelwall-fliptris-8x4-c", + "name": "Inv. Ramp Wall 4m", + "className": "Recipe_SteelWall_FlipTris_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_SteelWall_FlipTris_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SteelWall_FlipTris_8x8_C": { + "slug": "recipe-steelwall-fliptris-8x8-c", + "name": "Inv. Ramp Wall 8m", + "className": "Recipe_SteelWall_FlipTris_8x8_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_SteelWall_FlipTris_8x8_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SteelWall_Tris_8x1_C": { + "slug": "recipe-steelwall-tris-8x1-c", + "name": "Ramp Wall 1m", + "className": "Recipe_SteelWall_Tris_8x1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_SteelWall_Tris_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SteelWall_Tris_8x2_C": { + "slug": "recipe-steelwall-tris-8x2-c", + "name": "Ramp Wall 2m", + "className": "Recipe_SteelWall_Tris_8x2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_SteelWall_Tris_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SteelWall_Tris_8x4_C": { + "slug": "recipe-steelwall-tris-8x4-c", + "name": "Ramp Wall 4m", + "className": "Recipe_SteelWall_Tris_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_SteelWall_Tris_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SteelWall_Tris_8x8_C": { + "slug": "recipe-steelwall-tris-8x8-c", + "name": "Ramp Wall 8m", + "className": "Recipe_SteelWall_Tris_8x8_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_SteelWall_Tris_8x8_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_8x4_02_C": { + "slug": "recipe-wall-8x4-02-c", + "name": "Basic Wall 4m", + "className": "Recipe_Wall_8x4_02_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_8x4_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Conveyor_8x4_01_Steel_C": { + "slug": "recipe-wall-conveyor-8x4-01-steel-c", + "name": "Conveyor Wall x3", + "className": "Recipe_Wall_Conveyor_8x4_01_Steel_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Conveyor_8x4_01_Steel_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Conveyor_8x4_02_Steel_C": { + "slug": "recipe-wall-conveyor-8x4-02-steel-c", + "name": "Conveyor Wall x2", + "className": "Recipe_Wall_Conveyor_8x4_02_Steel_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Conveyor_8x4_02_Steel_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Conveyor_8x4_03_Steel_C": { + "slug": "recipe-wall-conveyor-8x4-03-steel-c", + "name": "Conveyor Wall x1", + "className": "Recipe_Wall_Conveyor_8x4_03_Steel_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Conveyor_8x4_03_Steel_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Door_8x4_01_Steel_C": { + "slug": "recipe-wall-door-8x4-01-steel-c", + "name": "Center Door Wall", + "className": "Recipe_Wall_Door_8x4_01_Steel_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Door_8x4_01_Steel_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Door_8x4_03_Steel_C": { + "slug": "recipe-wall-door-8x4-03-steel-c", + "name": "Side Door Wall", + "className": "Recipe_Wall_Door_8x4_03_Steel_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Door_8x4_03_Steel_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_WallSet_Steel_Angular_8x4_C": { + "slug": "recipe-wallset-steel-angular-8x4-c", + "name": "Tilted Wall 4m", + "className": "Recipe_WallSet_Steel_Angular_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_WallSet_Steel_Angular_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_WallSet_Steel_Angular_8x8_C": { + "slug": "recipe-wallset-steel-angular-8x8-c", + "name": "Tilted Wall 8m", + "className": "Recipe_WallSet_Steel_Angular_8x8_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_WallSet_Steel_Angular_8x8_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConveyorCeilingAttachment_C": { + "slug": "recipe-conveyorceilingattachment-c", + "name": "Conveyor Ceiling Mount", + "className": "Recipe_ConveyorCeilingAttachment_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 2.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 2.0 + }, + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_ConveyorCeilingAttachment_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConveyorPole_C": { + "slug": "recipe-conveyorpole-c", + "name": "Conveyor Pole", + "className": "Recipe_ConveyorPole_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 1.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 1.0 + }, + { + "item": "Desc_Cement_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_ConveyorPole_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConveyorPoleWall_C": { + "slug": "recipe-conveyorpolewall-c", + "name": "Conveyor Wall Mount", + "className": "Recipe_ConveyorPoleWall_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 2.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 2.0 + }, + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_ConveyorPoleWall_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConveyorBeltMk1_C": { + "slug": "recipe-conveyorbeltmk1-c", + "name": "Conveyor Belt Mk.1", + "className": "Recipe_ConveyorBeltMk1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_ConveyorBeltMk1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PowerLine_C": { + "slug": "recipe-powerline-c", + "name": "Power Line", + "className": "Recipe_PowerLine_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cable_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_PowerLine_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PowerPoleMk1_C": { + "slug": "recipe-powerpolemk1-c", + "name": "Power Pole Mk.1", + "className": "Recipe_PowerPoleMk1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Wire_C", + "amount": 3.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 1.0 + }, + { + "item": "Desc_Cement_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_PowerPoleMk1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PowerPoleWall_C": { + "slug": "recipe-powerpolewall-c", + "name": "Wall Outlet Mk.1", + "className": "Recipe_PowerPoleWall_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Wire_C", + "amount": 4.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_PowerPoleWall_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_TradingPost_C": { + "slug": "recipe-tradingpost-c", + "name": "The HUB", + "className": "Recipe_TradingPost_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HUBParts_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_TradingPost_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_WorkBench_C": { + "slug": "recipe-workbench-c", + "name": "Craft Bench", + "className": "Recipe_WorkBench_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 3.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_WorkBench_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_IronPlate_C": { + "slug": "recipe-ironplate-c", + "name": "Iron Plate", + "className": "Recipe_IronPlate_C", + "alternate": false, + "time": 6, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronIngot_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_IronPlate_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_IronRod_C": { + "slug": "recipe-ironrod-c", + "name": "Iron Rod", + "className": "Recipe_IronRod_C", + "alternate": false, + "time": 4, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 0.5, + "ingredients": [ + { + "item": "Desc_IronIngot_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_IronRod_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_XenoZapper_C": { + "slug": "recipe-xenozapper-c", + "name": "Xeno-Zapper", + "className": "Recipe_XenoZapper_C", + "alternate": false, + "time": 40, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 10.0 + }, + { + "item": "Desc_IronPlateReinforced_C", + "amount": 2.0 + }, + { + "item": "Desc_Cable_C", + "amount": 15.0 + }, + { + "item": "Desc_Wire_C", + "amount": 50.0 + } + ], + "products": [ + { + "item": "BP_EquipmentDescriptorShockShank_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_IngotIron_C": { + "slug": "recipe-ingotiron-c", + "name": "Iron Ingot", + "className": "Recipe_IngotIron_C", + "alternate": false, + "time": 2, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 3.0, + "ingredients": [ + { + "item": "Desc_OreIron_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_IronIngot_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_SmelterMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_WetConcrete_C": { + "slug": "recipe-alternate-wetconcrete-c", + "name": "Alternate: Wet Concrete", + "className": "Recipe_Alternate_WetConcrete_C", + "alternate": true, + "time": 3, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Stone_C", + "amount": 6.0 + }, + { + "item": "Desc_Water_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Cement_C", + "amount": 4.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_GeneratorCoal_C": { + "slug": "recipe-generatorcoal-c", + "name": "Coal Generator", + "className": "Recipe_GeneratorCoal_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 20.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 10.0 + }, + { + "item": "Desc_Cable_C", + "amount": 30.0 + } + ], + "products": [ + { + "item": "Desc_GeneratorCoal_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PipeSupport_C": { + "slug": "recipe-pipesupport-c", + "name": "Pipeline Support", + "className": "Recipe_PipeSupport_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 2.0 + }, + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_PipelineSupport_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PipeSupportWall_C": { + "slug": "recipe-pipesupportwall-c", + "name": "Pipeline Wall Support", + "className": "Recipe_PipeSupportWall_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 2.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 1.0 + }, + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_PipelineSupportWall_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Pipeline_C": { + "slug": "recipe-pipeline-c", + "name": "Pipeline Mk.1", + "className": "Recipe_Pipeline_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CopperSheet_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_Pipeline_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PipelineJunction_Cross_C": { + "slug": "recipe-pipelinejunction-cross-c", + "name": "Pipeline Junction Cross", + "className": "Recipe_PipelineJunction_Cross_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CopperSheet_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_PipelineJunction_Cross_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PipelinePump_C": { + "slug": "recipe-pipelinepump-c", + "name": "Pipeline Pump Mk.1", + "className": "Recipe_PipelinePump_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CopperSheet_C", + "amount": 2.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_PipelinePump_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PipeStorageTank_C": { + "slug": "recipe-pipestoragetank-c", + "name": "Fluid Buffer", + "className": "Recipe_PipeStorageTank_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CopperSheet_C", + "amount": 10.0 + }, + { + "item": "Desc_ModularFrame_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_PipeStorageTank_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_WaterPump_C": { + "slug": "recipe-waterpump-c", + "name": "Water Extractor", + "className": "Recipe_WaterPump_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CopperSheet_C", + "amount": 20.0 + }, + { + "item": "Desc_IronPlateReinforced_C", + "amount": 10.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_WaterPump_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ResourceSink_C": { + "slug": "recipe-resourcesink-c", + "name": "AWESOME Sink", + "className": "Recipe_ResourceSink_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 15.0 + }, + { + "item": "Desc_Cable_C", + "amount": 30.0 + }, + { + "item": "Desc_Cement_C", + "amount": 45.0 + } + ], + "products": [ + { + "item": "Desc_ResourceSink_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ResourceSinkShop_C": { + "slug": "recipe-resourcesinkshop-c", + "name": "AWESOME Shop", + "className": "Recipe_ResourceSinkShop_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronScrew_C", + "amount": 200.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 10.0 + }, + { + "item": "Desc_Cable_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_ResourceSinkShop_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ColorCartridge_C": { + "slug": "recipe-colorcartridge-c", + "name": "Color Cartridge", + "className": "Recipe_ColorCartridge_C", + "alternate": false, + "time": 6, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_FlowerPetals_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_ColorCartridge_C", + "amount": 10.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_TurboHeavyFuel_C": { + "slug": "recipe-alternate-turboheavyfuel-c", + "name": "Alternate: Turbo Heavy Fuel", + "className": "Recipe_Alternate_TurboHeavyFuel_C", + "alternate": true, + "time": 8, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HeavyOilResidue_C", + "amount": 5.0 + }, + { + "item": "Desc_CompactedCoal_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_LiquidTurboFuel_C", + "amount": 4.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PackagedTurboFuel_C": { + "slug": "recipe-packagedturbofuel-c", + "name": "Packaged Turbofuel", + "className": "Recipe_PackagedTurboFuel_C", + "alternate": false, + "time": 6, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_LiquidTurboFuel_C", + "amount": 2.0 + }, + { + "item": "Desc_FluidCanister_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_TurboFuel_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_UnpackageTurboFuel_C": { + "slug": "recipe-unpackageturbofuel-c", + "name": "Unpackage Turbofuel", + "className": "Recipe_UnpackageTurboFuel_C", + "alternate": false, + "time": 6, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_TurboFuel_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_LiquidTurboFuel_C", + "amount": 2.0 + }, + { + "item": "Desc_FluidCanister_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Coal_1_C": { + "slug": "recipe-alternate-coal-1-c", + "name": "Alternate: Charcoal", + "className": "Recipe_Alternate_Coal_1_C", + "alternate": true, + "time": 4, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Wood_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_Coal_C", + "amount": 10.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Coal_2_C": { + "slug": "recipe-alternate-coal-2-c", + "name": "Alternate: Biocoal", + "className": "Recipe_Alternate_Coal_2_C", + "alternate": true, + "time": 8, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_GenericBiomass_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Coal_C", + "amount": 6.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_EnrichedCoal_C": { + "slug": "recipe-alternate-enrichedcoal-c", + "name": "Alternate: Compacted Coal", + "className": "Recipe_Alternate_EnrichedCoal_C", + "alternate": true, + "time": 12, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Coal_C", + "amount": 5.0 + }, + { + "item": "Desc_Sulfur_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_CompactedCoal_C", + "amount": 5.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_CircuitBoard_C": { + "slug": "recipe-circuitboard-c", + "name": "Circuit Board", + "className": "Recipe_CircuitBoard_C", + "alternate": false, + "time": 8, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.5, + "ingredients": [ + { + "item": "Desc_CopperSheet_C", + "amount": 2.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_CircuitBoard_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_OilPump_C": { + "slug": "recipe-oilpump-c", + "name": "Oil Extractor", + "className": "Recipe_OilPump_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Motor_C", + "amount": 15.0 + }, + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 20.0 + }, + { + "item": "Desc_Cable_C", + "amount": 60.0 + } + ], + "products": [ + { + "item": "Desc_OilPump_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_OilRefinery_C": { + "slug": "recipe-oilrefinery-c", + "name": "Refinery", + "className": "Recipe_OilRefinery_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Motor_C", + "amount": 10.0 + }, + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 10.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 30.0 + }, + { + "item": "Desc_CopperSheet_C", + "amount": 20.0 + } + ], + "products": [ + { + "item": "Desc_OilRefinery_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Valve_C": { + "slug": "recipe-valve-c", + "name": "Valve", + "className": "Recipe_Valve_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Rubber_C", + "amount": 4.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_Valve_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_LiquidFuel_C": { + "slug": "recipe-liquidfuel-c", + "name": "Fuel", + "className": "Recipe_LiquidFuel_C", + "alternate": false, + "time": 6, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_LiquidOil_C", + "amount": 6.0 + } + ], + "products": [ + { + "item": "Desc_LiquidFuel_C", + "amount": 4.0 + }, + { + "item": "Desc_PolymerResin_C", + "amount": 3.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PetroleumCoke_C": { + "slug": "recipe-petroleumcoke-c", + "name": "Petroleum Coke", + "className": "Recipe_PetroleumCoke_C", + "alternate": false, + "time": 6, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HeavyOilResidue_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_PetroleumCoke_C", + "amount": 12.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Plastic_C": { + "slug": "recipe-plastic-c", + "name": "Plastic", + "className": "Recipe_Plastic_C", + "alternate": false, + "time": 6, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_LiquidOil_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Plastic_C", + "amount": 2.0 + }, + { + "item": "Desc_HeavyOilResidue_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Rubber_C": { + "slug": "recipe-rubber-c", + "name": "Rubber", + "className": "Recipe_Rubber_C", + "alternate": false, + "time": 6, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_LiquidOil_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Rubber_C", + "amount": 2.0 + }, + { + "item": "Desc_HeavyOilResidue_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ResidualFuel_C": { + "slug": "recipe-residualfuel-c", + "name": "Residual Fuel", + "className": "Recipe_ResidualFuel_C", + "alternate": false, + "time": 6, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HeavyOilResidue_C", + "amount": 6.0 + } + ], + "products": [ + { + "item": "Desc_LiquidFuel_C", + "amount": 4.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ResidualPlastic_C": { + "slug": "recipe-residualplastic-c", + "name": "Residual Plastic", + "className": "Recipe_ResidualPlastic_C", + "alternate": false, + "time": 6, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_PolymerResin_C", + "amount": 6.0 + }, + { + "item": "Desc_Water_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Plastic_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ResidualRubber_C": { + "slug": "recipe-residualrubber-c", + "name": "Residual Rubber", + "className": "Recipe_ResidualRubber_C", + "alternate": false, + "time": 6, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_PolymerResin_C", + "amount": 4.0 + }, + { + "item": "Desc_Water_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_Rubber_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_SteelRod_C": { + "slug": "recipe-alternate-steelrod-c", + "name": "Alternate: Steel Rod", + "className": "Recipe_Alternate_SteelRod_C", + "alternate": true, + "time": 5, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelIngot_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_IronRod_C", + "amount": 4.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SmelterMk1_C": { + "slug": "recipe-smeltermk1-c", + "name": "Foundry", + "className": "Recipe_SmelterMk1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrame_C", + "amount": 10.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 10.0 + }, + { + "item": "Desc_Cement_C", + "amount": 20.0 + } + ], + "products": [ + { + "item": "Desc_FoundryMk1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SteelBeam_C": { + "slug": "recipe-steelbeam-c", + "name": "Steel Beam", + "className": "Recipe_SteelBeam_C", + "alternate": false, + "time": 4, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelIngot_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_SteelPlate_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SteelPipe_C": { + "slug": "recipe-steelpipe-c", + "name": "Steel Pipe", + "className": "Recipe_SteelPipe_C", + "alternate": false, + "time": 6, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelIngot_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_SteelPipe_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_IngotSteel_C": { + "slug": "recipe-ingotsteel-c", + "name": "Steel Ingot", + "className": "Recipe_IngotSteel_C", + "alternate": false, + "time": 4, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 3.0, + "ingredients": [ + { + "item": "Desc_OreIron_C", + "amount": 3.0 + }, + { + "item": "Desc_Coal_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_SteelIngot_C", + "amount": 3.0 + } + ], + "producedIn": [ + "Desc_FoundryMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SpaceElevatorPart_2_C": { + "slug": "recipe-spaceelevatorpart-2-c", + "name": "Versatile Framework", + "className": "Recipe_SpaceElevatorPart_2_C", + "alternate": false, + "time": 24, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrame_C", + "amount": 1.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 12.0 + } + ], + "products": [ + { + "item": "Desc_SpaceElevatorPart_2_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_SteelCoatedPlate_C": { + "slug": "recipe-alternate-steelcoatedplate-c", + "name": "Alternate: Steel Coated Plate", + "className": "Recipe_Alternate_SteelCoatedPlate_C", + "alternate": true, + "time": 24, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelIngot_C", + "amount": 3.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_IronPlate_C", + "amount": 18.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_SteelCanister_C": { + "slug": "recipe-alternate-steelcanister-c", + "name": "Alternate: Steel Canister", + "className": "Recipe_Alternate_SteelCanister_C", + "alternate": true, + "time": 3, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelIngot_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_FluidCanister_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_IndustrialTank_C": { + "slug": "recipe-industrialtank-c", + "name": "Industrial Fluid Buffer", + "className": "Recipe_IndustrialTank_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Plastic_C", + "amount": 30.0 + }, + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_IndustrialTank_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Packager_C": { + "slug": "recipe-packager-c", + "name": "Packager", + "className": "Recipe_Packager_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlate_C", + "amount": 20.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 10.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_Packager_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_FluidCanister_C": { + "slug": "recipe-fluidcanister-c", + "name": "Empty Canister", + "className": "Recipe_FluidCanister_C", + "alternate": false, + "time": 4, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Plastic_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_FluidCanister_C", + "amount": 4.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Fuel_C": { + "slug": "recipe-fuel-c", + "name": "Packaged Fuel", + "className": "Recipe_Fuel_C", + "alternate": false, + "time": 3, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_LiquidFuel_C", + "amount": 2.0 + }, + { + "item": "Desc_FluidCanister_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Fuel_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_LiquidBiofuel_C": { + "slug": "recipe-liquidbiofuel-c", + "name": "Liquid Biofuel", + "className": "Recipe_LiquidBiofuel_C", + "alternate": false, + "time": 4, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Biofuel_C", + "amount": 6.0 + }, + { + "item": "Desc_Water_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_LiquidBiofuel_C", + "amount": 4.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PackagedBiofuel_C": { + "slug": "recipe-packagedbiofuel-c", + "name": "Packaged Liquid Biofuel", + "className": "Recipe_PackagedBiofuel_C", + "alternate": false, + "time": 3, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_LiquidBiofuel_C", + "amount": 2.0 + }, + { + "item": "Desc_FluidCanister_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_PackagedBiofuel_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PackagedCrudeOil_C": { + "slug": "recipe-packagedcrudeoil-c", + "name": "Packaged Oil", + "className": "Recipe_PackagedCrudeOil_C", + "alternate": false, + "time": 4, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_LiquidOil_C", + "amount": 2.0 + }, + { + "item": "Desc_FluidCanister_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_PackagedOil_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PackagedOilResidue_C": { + "slug": "recipe-packagedoilresidue-c", + "name": "Packaged Heavy Oil Residue", + "className": "Recipe_PackagedOilResidue_C", + "alternate": false, + "time": 4, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HeavyOilResidue_C", + "amount": 2.0 + }, + { + "item": "Desc_FluidCanister_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_PackagedOilResidue_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PackagedWater_C": { + "slug": "recipe-packagedwater-c", + "name": "Packaged Water", + "className": "Recipe_PackagedWater_C", + "alternate": false, + "time": 2, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Water_C", + "amount": 2.0 + }, + { + "item": "Desc_FluidCanister_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_PackagedWater_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_UnpackageBioFuel_C": { + "slug": "recipe-unpackagebiofuel-c", + "name": "Unpackage Liquid Biofuel", + "className": "Recipe_UnpackageBioFuel_C", + "alternate": false, + "time": 2, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_PackagedBiofuel_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_LiquidBiofuel_C", + "amount": 2.0 + }, + { + "item": "Desc_FluidCanister_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_UnpackageFuel_C": { + "slug": "recipe-unpackagefuel-c", + "name": "Unpackage Fuel", + "className": "Recipe_UnpackageFuel_C", + "alternate": false, + "time": 2, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Fuel_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_LiquidFuel_C", + "amount": 2.0 + }, + { + "item": "Desc_FluidCanister_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_UnpackageOil_C": { + "slug": "recipe-unpackageoil-c", + "name": "Unpackage Oil", + "className": "Recipe_UnpackageOil_C", + "alternate": false, + "time": 2, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_PackagedOil_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_LiquidOil_C", + "amount": 2.0 + }, + { + "item": "Desc_FluidCanister_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_UnpackageOilResidue_C": { + "slug": "recipe-unpackageoilresidue-c", + "name": "Unpackage Heavy Oil Residue", + "className": "Recipe_UnpackageOilResidue_C", + "alternate": false, + "time": 6, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_PackagedOilResidue_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_HeavyOilResidue_C", + "amount": 2.0 + }, + { + "item": "Desc_FluidCanister_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_UnpackageWater_C": { + "slug": "recipe-unpackagewater-c", + "name": "Unpackage Water", + "className": "Recipe_UnpackageWater_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_PackagedWater_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Water_C", + "amount": 2.0 + }, + { + "item": "Desc_FluidCanister_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_SteamedCopperSheet_C": { + "slug": "recipe-alternate-steamedcoppersheet-c", + "name": "Alternate: Steamed Copper Sheet", + "className": "Recipe_Alternate_SteamedCopperSheet_C", + "alternate": true, + "time": 8, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CopperIngot_C", + "amount": 3.0 + }, + { + "item": "Desc_Water_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_CopperSheet_C", + "amount": 3.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_RubberConcrete_C": { + "slug": "recipe-alternate-rubberconcrete-c", + "name": "Alternate: Rubber Concrete", + "className": "Recipe_Alternate_RubberConcrete_C", + "alternate": true, + "time": 12, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Stone_C", + "amount": 10.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Cement_C", + "amount": 9.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_RecycledRubber_C": { + "slug": "recipe-alternate-recycledrubber-c", + "name": "Alternate: Recycled Rubber", + "className": "Recipe_Alternate_RecycledRubber_C", + "alternate": true, + "time": 12, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Plastic_C", + "amount": 6.0 + }, + { + "item": "Desc_LiquidFuel_C", + "amount": 6.0 + } + ], + "products": [ + { + "item": "Desc_Rubber_C", + "amount": 12.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_PureQuartzCrystal_C": { + "slug": "recipe-alternate-purequartzcrystal-c", + "name": "Alternate: Pure Quartz Crystal", + "className": "Recipe_Alternate_PureQuartzCrystal_C", + "alternate": true, + "time": 8, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_RawQuartz_C", + "amount": 9.0 + }, + { + "item": "Desc_Water_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuartzCrystal_C", + "amount": 7.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuartzCrystal_C": { + "slug": "recipe-quartzcrystal-c", + "name": "Quartz Crystal", + "className": "Recipe_QuartzCrystal_C", + "alternate": false, + "time": 8, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 2.0, + "ingredients": [ + { + "item": "Desc_RawQuartz_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuartzCrystal_C", + "amount": 3.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_PureIronIngot_C": { + "slug": "recipe-alternate-pureironingot-c", + "name": "Alternate: Pure Iron Ingot", + "className": "Recipe_Alternate_PureIronIngot_C", + "alternate": true, + "time": 12, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_OreIron_C", + "amount": 7.0 + }, + { + "item": "Desc_Water_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_IronIngot_C", + "amount": 13.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_PureCopperIngot_C": { + "slug": "recipe-alternate-purecopperingot-c", + "name": "Alternate: Pure Copper Ingot", + "className": "Recipe_Alternate_PureCopperIngot_C", + "alternate": true, + "time": 24, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_OreCopper_C", + "amount": 6.0 + }, + { + "item": "Desc_Water_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_CopperIngot_C", + "amount": 15.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_PureCateriumIngot_C": { + "slug": "recipe-alternate-purecateriumingot-c", + "name": "Alternate: Pure Caterium Ingot", + "className": "Recipe_Alternate_PureCateriumIngot_C", + "alternate": true, + "time": 5, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_OreGold_C", + "amount": 2.0 + }, + { + "item": "Desc_Water_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_GoldIngot_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PureAluminumIngot_C": { + "slug": "recipe-purealuminumingot-c", + "name": "Alternate: Pure Aluminum Ingot", + "className": "Recipe_PureAluminumIngot_C", + "alternate": true, + "time": 2, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_AluminumScrap_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_AluminumIngot_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_SmelterMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_UraniumCell_C": { + "slug": "recipe-uraniumcell-c", + "name": "Encased Uranium Cell", + "className": "Recipe_UraniumCell_C", + "alternate": false, + "time": 12, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 0.5, + "ingredients": [ + { + "item": "Desc_OreUranium_C", + "amount": 10.0 + }, + { + "item": "Desc_Cement_C", + "amount": 3.0 + }, + { + "item": "Desc_SulfuricAcid_C", + "amount": 8.0 + } + ], + "products": [ + { + "item": "Desc_UraniumCell_C", + "amount": 5.0 + }, + { + "item": "Desc_SulfuricAcid_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_Blender_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_CoolingSystem_C": { + "slug": "recipe-coolingsystem-c", + "name": "Cooling System", + "className": "Recipe_CoolingSystem_C", + "alternate": false, + "time": 10, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_AluminumPlateReinforced_C", + "amount": 2.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 2.0 + }, + { + "item": "Desc_Water_C", + "amount": 5.0 + }, + { + "item": "Desc_NitrogenGas_C", + "amount": 25.0 + } + ], + "products": [ + { + "item": "Desc_CoolingSystem_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_Blender_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_NitricAcid_C": { + "slug": "recipe-nitricacid-c", + "name": "Nitric Acid", + "className": "Recipe_NitricAcid_C", + "alternate": false, + "time": 6, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_NitrogenGas_C", + "amount": 12.0 + }, + { + "item": "Desc_Water_C", + "amount": 3.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_NitricAcid_C", + "amount": 3.0 + } + ], + "producedIn": [ + "Desc_Blender_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_NonFissileUranium_C": { + "slug": "recipe-nonfissileuranium-c", + "name": "Non-fissile Uranium", + "className": "Recipe_NonFissileUranium_C", + "alternate": false, + "time": 24, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_NuclearWaste_C", + "amount": 15.0 + }, + { + "item": "Desc_Silica_C", + "amount": 10.0 + }, + { + "item": "Desc_NitricAcid_C", + "amount": 6.0 + }, + { + "item": "Desc_SulfuricAcid_C", + "amount": 6.0 + } + ], + "products": [ + { + "item": "Desc_NonFissibleUranium_C", + "amount": 20.0 + }, + { + "item": "Desc_Water_C", + "amount": 6.0 + } + ], + "producedIn": [ + "Desc_Blender_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Blender_C": { + "slug": "recipe-blender-c", + "name": "Blender", + "className": "Recipe_Blender_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Motor_C", + "amount": 20.0 + }, + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 10.0 + }, + { + "item": "Desc_AluminumCasing_C", + "amount": 50.0 + }, + { + "item": "Desc_ModularFrameLightweight_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Blender_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_AluminumCasing_C": { + "slug": "recipe-aluminumcasing-c", + "name": "Aluminum Casing", + "className": "Recipe_AluminumCasing_C", + "alternate": false, + "time": 2, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 2.0, + "ingredients": [ + { + "item": "Desc_AluminumIngot_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_AluminumCasing_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_AluminumSheet_C": { + "slug": "recipe-aluminumsheet-c", + "name": "Alclad Aluminum Sheet", + "className": "Recipe_AluminumSheet_C", + "alternate": false, + "time": 6, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 2.0, + "ingredients": [ + { + "item": "Desc_AluminumIngot_C", + "amount": 3.0 + }, + { + "item": "Desc_CopperIngot_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_AluminumPlate_C", + "amount": 3.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RadioControlUnit_C": { + "slug": "recipe-radiocontrolunit-c", + "name": "Radio Control Unit", + "className": "Recipe_RadioControlUnit_C", + "alternate": false, + "time": 48, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_AluminumCasing_C", + "amount": 32.0 + }, + { + "item": "Desc_CrystalOscillator_C", + "amount": 1.0 + }, + { + "item": "Desc_Computer_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_ModularFrameLightweight_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_AluminaSolution_C": { + "slug": "recipe-aluminasolution-c", + "name": "Alumina Solution", + "className": "Recipe_AluminaSolution_C", + "alternate": false, + "time": 6, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_OreBauxite_C", + "amount": 12.0 + }, + { + "item": "Desc_Water_C", + "amount": 18.0 + } + ], + "products": [ + { + "item": "Desc_AluminaSolution_C", + "amount": 12.0 + }, + { + "item": "Desc_Silica_C", + "amount": 5.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_AluminumScrap_C": { + "slug": "recipe-aluminumscrap-c", + "name": "Aluminum Scrap", + "className": "Recipe_AluminumScrap_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_AluminaSolution_C", + "amount": 4.0 + }, + { + "item": "Desc_Coal_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_AluminumScrap_C", + "amount": 6.0 + }, + { + "item": "Desc_Water_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PackagedAlumina_C": { + "slug": "recipe-packagedalumina-c", + "name": "Packaged Alumina Solution", + "className": "Recipe_PackagedAlumina_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_AluminaSolution_C", + "amount": 2.0 + }, + { + "item": "Desc_FluidCanister_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_PackagedAlumina_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_IngotAluminum_C": { + "slug": "recipe-ingotaluminum-c", + "name": "Aluminum Ingot", + "className": "Recipe_IngotAluminum_C", + "alternate": false, + "time": 4, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 3.0, + "ingredients": [ + { + "item": "Desc_AluminumScrap_C", + "amount": 6.0 + }, + { + "item": "Desc_Silica_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_AluminumIngot_C", + "amount": 4.0 + } + ], + "producedIn": [ + "Desc_FoundryMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Silica_C": { + "slug": "recipe-silica-c", + "name": "Silica", + "className": "Recipe_Silica_C", + "alternate": false, + "time": 8, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 2.0, + "ingredients": [ + { + "item": "Desc_RawQuartz_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Silica_C", + "amount": 5.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_CrystalOscillator_C": { + "slug": "recipe-crystaloscillator-c", + "name": "Crystal Oscillator", + "className": "Recipe_CrystalOscillator_C", + "alternate": false, + "time": 120, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 0.3, + "ingredients": [ + { + "item": "Desc_QuartzCrystal_C", + "amount": 36.0 + }, + { + "item": "Desc_Cable_C", + "amount": 28.0 + }, + { + "item": "Desc_IronPlateReinforced_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_CrystalOscillator_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_UnpackageAlumina_C": { + "slug": "recipe-unpackagealumina-c", + "name": "Unpackage Alumina Solution", + "className": "Recipe_UnpackageAlumina_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_PackagedAlumina_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_AluminaSolution_C", + "amount": 2.0 + }, + { + "item": "Desc_FluidCanister_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_PolymerResin_C": { + "slug": "recipe-alternate-polymerresin-c", + "name": "Alternate: Polymer Resin", + "className": "Recipe_Alternate_PolymerResin_C", + "alternate": true, + "time": 6, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_LiquidOil_C", + "amount": 6.0 + } + ], + "products": [ + { + "item": "Desc_PolymerResin_C", + "amount": 13.0 + }, + { + "item": "Desc_HeavyOilResidue_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_PlasticSmartPlating_C": { + "slug": "recipe-alternate-plasticsmartplating-c", + "name": "Alternate: Plastic Smart Plating", + "className": "Recipe_Alternate_PlasticSmartPlating_C", + "alternate": true, + "time": 24, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 1.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 1.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_SpaceElevatorPart_1_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_HighSpeedWiring_C": { + "slug": "recipe-alternate-highspeedwiring-c", + "name": "Alternate: Automated Speed Wiring", + "className": "Recipe_Alternate_HighSpeedWiring_C", + "alternate": true, + "time": 32, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Stator_C", + "amount": 2.0 + }, + { + "item": "Desc_Wire_C", + "amount": 40.0 + }, + { + "item": "Desc_HighSpeedConnector_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_SpaceElevatorPart_3_C", + "amount": 4.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_EncasedIndustrialBeam_C": { + "slug": "recipe-encasedindustrialbeam-c", + "name": "Encased Industrial Beam", + "className": "Recipe_EncasedIndustrialBeam_C", + "alternate": false, + "time": 10, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlate_C", + "amount": 4.0 + }, + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Motor_C": { + "slug": "recipe-motor-c", + "name": "Motor", + "className": "Recipe_Motor_C", + "alternate": false, + "time": 12, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 2.0, + "ingredients": [ + { + "item": "Desc_Rotor_C", + "amount": 2.0 + }, + { + "item": "Desc_Stator_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Motor_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Stator_C": { + "slug": "recipe-stator-c", + "name": "Stator", + "className": "Recipe_Stator_C", + "alternate": false, + "time": 12, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.5, + "ingredients": [ + { + "item": "Desc_SteelPipe_C", + "amount": 3.0 + }, + { + "item": "Desc_Wire_C", + "amount": 8.0 + } + ], + "products": [ + { + "item": "Desc_Stator_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_MinerMk2_C": { + "slug": "recipe-minermk2-c", + "name": "Miner Mk.2", + "className": "Recipe_MinerMk2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "BP_ItemDescriptorPortableMiner_C", + "amount": 2.0 + }, + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 10.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 20.0 + }, + { + "item": "Desc_ModularFrame_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_MinerMk2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ModularFrameHeavy_C": { + "slug": "recipe-modularframeheavy-c", + "name": "Heavy Modular Frame", + "className": "Recipe_ModularFrameHeavy_C", + "alternate": false, + "time": 30, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 0.6, + "ingredients": [ + { + "item": "Desc_ModularFrame_C", + "amount": 5.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 15.0 + }, + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 5.0 + }, + { + "item": "Desc_IronScrew_C", + "amount": 100.0 + } + ], + "products": [ + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SpaceElevatorPart_3_C": { + "slug": "recipe-spaceelevatorpart-3-c", + "name": "Automated Wiring", + "className": "Recipe_SpaceElevatorPart_3_C", + "alternate": false, + "time": 24, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Stator_C", + "amount": 1.0 + }, + { + "item": "Desc_Cable_C", + "amount": 20.0 + } + ], + "products": [ + { + "item": "Desc_SpaceElevatorPart_3_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_AILimiter_C": { + "slug": "recipe-ailimiter-c", + "name": "AI Limiter", + "className": "Recipe_AILimiter_C", + "alternate": false, + "time": 12, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CopperSheet_C", + "amount": 5.0 + }, + { + "item": "Desc_HighSpeedWire_C", + "amount": 20.0 + } + ], + "products": [ + { + "item": "Desc_CircuitBoardHighSpeed_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_HeavyOilResidue_C": { + "slug": "recipe-alternate-heavyoilresidue-c", + "name": "Alternate: Heavy Oil Residue", + "className": "Recipe_Alternate_HeavyOilResidue_C", + "alternate": true, + "time": 6, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_LiquidOil_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_HeavyOilResidue_C", + "amount": 4.0 + }, + { + "item": "Desc_PolymerResin_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_HeavyFlexibleFrame_C": { + "slug": "recipe-alternate-heavyflexibleframe-c", + "name": "Alternate: Heavy Flexible Frame", + "className": "Recipe_Alternate_HeavyFlexibleFrame_C", + "alternate": true, + "time": 16, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrame_C", + "amount": 5.0 + }, + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 3.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 20.0 + }, + { + "item": "Desc_IronScrew_C", + "amount": 104.0 + } + ], + "products": [ + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ManufacturerMk1_C": { + "slug": "recipe-manufacturermk1-c", + "name": "Manufacturer", + "className": "Recipe_ManufacturerMk1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Motor_C", + "amount": 5.0 + }, + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 10.0 + }, + { + "item": "Desc_Cable_C", + "amount": 50.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 50.0 + } + ], + "products": [ + { + "item": "Desc_ManufacturerMk1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Computer_C": { + "slug": "recipe-computer-c", + "name": "Computer", + "className": "Recipe_Computer_C", + "alternate": false, + "time": 24, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.5, + "ingredients": [ + { + "item": "Desc_CircuitBoard_C", + "amount": 10.0 + }, + { + "item": "Desc_Cable_C", + "amount": 9.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 18.0 + }, + { + "item": "Desc_IronScrew_C", + "amount": 52.0 + } + ], + "products": [ + { + "item": "Desc_Computer_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SpaceElevatorPart_4_C": { + "slug": "recipe-spaceelevatorpart-4-c", + "name": "Modular Engine", + "className": "Recipe_SpaceElevatorPart_4_C", + "alternate": false, + "time": 60, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Motor_C", + "amount": 2.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 15.0 + }, + { + "item": "Desc_SpaceElevatorPart_1_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_SpaceElevatorPart_4_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SpaceElevatorPart_5_C": { + "slug": "recipe-spaceelevatorpart-5-c", + "name": "Adaptive Control Unit", + "className": "Recipe_SpaceElevatorPart_5_C", + "alternate": false, + "time": 120, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SpaceElevatorPart_3_C", + "amount": 15.0 + }, + { + "item": "Desc_CircuitBoard_C", + "amount": 10.0 + }, + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 2.0 + }, + { + "item": "Desc_Computer_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_SpaceElevatorPart_5_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Truck_C": { + "slug": "recipe-truck-c", + "name": "Truck", + "className": "Recipe_Truck_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Motor_C", + "amount": 15.0 + }, + { + "item": "Desc_CircuitBoard_C", + "amount": 10.0 + }, + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 5.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 50.0 + }, + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 20.0 + } + ], + "products": [ + { + "item": "Desc_Truck_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_FusedWire_C": { + "slug": "recipe-alternate-fusedwire-c", + "name": "Alternate: Fused Wire", + "className": "Recipe_Alternate_FusedWire_C", + "alternate": true, + "time": 20, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CopperIngot_C", + "amount": 4.0 + }, + { + "item": "Desc_GoldIngot_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_Wire_C", + "amount": 30.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_FlexibleFramework_C": { + "slug": "recipe-alternate-flexibleframework-c", + "name": "Alternate: Flexible Framework", + "className": "Recipe_Alternate_FlexibleFramework_C", + "alternate": true, + "time": 16, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrame_C", + "amount": 1.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 6.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 8.0 + } + ], + "products": [ + { + "item": "Desc_SpaceElevatorPart_2_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_ElectrodeCircuitBoard_C": { + "slug": "recipe-alternate-electrodecircuitboard-c", + "name": "Alternate: Electrode Circuit Board", + "className": "Recipe_Alternate_ElectrodeCircuitBoard_C", + "alternate": true, + "time": 12, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Rubber_C", + "amount": 6.0 + }, + { + "item": "Desc_PetroleumCoke_C", + "amount": 9.0 + } + ], + "products": [ + { + "item": "Desc_CircuitBoard_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_ElectroAluminumScrap_C": { + "slug": "recipe-alternate-electroaluminumscrap-c", + "name": "Alternate: Electrode Aluminum Scrap", + "className": "Recipe_Alternate_ElectroAluminumScrap_C", + "alternate": true, + "time": 4, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_AluminaSolution_C", + "amount": 12.0 + }, + { + "item": "Desc_PetroleumCoke_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_AluminumScrap_C", + "amount": 20.0 + }, + { + "item": "Desc_Water_C", + "amount": 7.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_DilutedPackagedFuel_C": { + "slug": "recipe-alternate-dilutedpackagedfuel-c", + "name": "Alternate: Diluted Packaged Fuel", + "className": "Recipe_Alternate_DilutedPackagedFuel_C", + "alternate": true, + "time": 2, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HeavyOilResidue_C", + "amount": 1.0 + }, + { + "item": "Desc_PackagedWater_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Fuel_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_CopperRotor_C": { + "slug": "recipe-alternate-copperrotor-c", + "name": "Alternate: Copper Rotor", + "className": "Recipe_Alternate_CopperRotor_C", + "alternate": true, + "time": 16, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CopperSheet_C", + "amount": 6.0 + }, + { + "item": "Desc_IronScrew_C", + "amount": 52.0 + } + ], + "products": [ + { + "item": "Desc_Rotor_C", + "amount": 3.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ModularFrame_C": { + "slug": "recipe-modularframe-c", + "name": "Modular Frame", + "className": "Recipe_ModularFrame_C", + "alternate": false, + "time": 60, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 0.5, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 3.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 12.0 + } + ], + "products": [ + { + "item": "Desc_ModularFrame_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Rotor_C": { + "slug": "recipe-rotor-c", + "name": "Rotor", + "className": "Recipe_Rotor_C", + "alternate": false, + "time": 15, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 0.8, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 5.0 + }, + { + "item": "Desc_IronScrew_C", + "amount": 25.0 + } + ], + "products": [ + { + "item": "Desc_Rotor_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_AssemblerMk1_C": { + "slug": "recipe-assemblermk1-c", + "name": "Assembler", + "className": "Recipe_AssemblerMk1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 8.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 4.0 + }, + { + "item": "Desc_Cable_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_AssemblerMk1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_CopperSheet_C": { + "slug": "recipe-coppersheet-c", + "name": "Copper Sheet", + "className": "Recipe_CopperSheet_C", + "alternate": false, + "time": 6, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CopperIngot_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_CopperSheet_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SpaceElevatorPart_1_C": { + "slug": "recipe-spaceelevatorpart-1-c", + "name": "Smart Plating", + "className": "Recipe_SpaceElevatorPart_1_C", + "alternate": false, + "time": 30, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 1.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_SpaceElevatorPart_1_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_CopperAlloyIngot_C": { + "slug": "recipe-alternate-copperalloyingot-c", + "name": "Alternate: Copper Alloy Ingot", + "className": "Recipe_Alternate_CopperAlloyIngot_C", + "alternate": true, + "time": 12, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_OreCopper_C", + "amount": 10.0 + }, + { + "item": "Desc_OreIron_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_CopperIngot_C", + "amount": 20.0 + } + ], + "producedIn": [ + "Desc_FoundryMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_CokeSteelIngot_C": { + "slug": "recipe-alternate-cokesteelingot-c", + "name": "Alternate: Coke Steel Ingot", + "className": "Recipe_Alternate_CokeSteelIngot_C", + "alternate": true, + "time": 12, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_OreIron_C", + "amount": 15.0 + }, + { + "item": "Desc_PetroleumCoke_C", + "amount": 15.0 + } + ], + "products": [ + { + "item": "Desc_SteelIngot_C", + "amount": 20.0 + } + ], + "producedIn": [ + "Desc_FoundryMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_CoatedIronPlate_C": { + "slug": "recipe-alternate-coatedironplate-c", + "name": "Alternate: Coated Iron Plate", + "className": "Recipe_Alternate_CoatedIronPlate_C", + "alternate": true, + "time": 12, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronIngot_C", + "amount": 10.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_IronPlate_C", + "amount": 15.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_CoatedIronCanister_C": { + "slug": "recipe-alternate-coatedironcanister-c", + "name": "Alternate: Coated Iron Canister", + "className": "Recipe_Alternate_CoatedIronCanister_C", + "alternate": true, + "time": 4, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 2.0 + }, + { + "item": "Desc_CopperSheet_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_FluidCanister_C", + "amount": 4.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_CoatedCable_C": { + "slug": "recipe-alternate-coatedcable-c", + "name": "Alternate: Coated Cable", + "className": "Recipe_Alternate_CoatedCable_C", + "alternate": true, + "time": 8, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Wire_C", + "amount": 5.0 + }, + { + "item": "Desc_HeavyOilResidue_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Cable_C", + "amount": 9.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_BoltedFrame_C": { + "slug": "recipe-alternate-boltedframe-c", + "name": "Alternate: Bolted Frame", + "className": "Recipe_Alternate_BoltedFrame_C", + "alternate": true, + "time": 24, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 3.0 + }, + { + "item": "Desc_IronScrew_C", + "amount": 56.0 + } + ], + "products": [ + { + "item": "Desc_ModularFrame_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_AdheredIronPlate_C": { + "slug": "recipe-alternate-adheredironplate-c", + "name": "Alternate: Adhered Iron Plate", + "className": "Recipe_Alternate_AdheredIronPlate_C", + "alternate": true, + "time": 16, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 3.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_TurboPressureMotor_C": { + "slug": "recipe-alternate-turbopressuremotor-c", + "name": "Alternate: Turbo Pressure Motor", + "className": "Recipe_Alternate_TurboPressureMotor_C", + "alternate": true, + "time": 32, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Motor_C", + "amount": 4.0 + }, + { + "item": "Desc_PressureConversionCube_C", + "amount": 1.0 + }, + { + "item": "Desc_PackagedNitrogenGas_C", + "amount": 24.0 + }, + { + "item": "Desc_Stator_C", + "amount": 8.0 + } + ], + "products": [ + { + "item": "Desc_MotorLightweight_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PlutoniumCell_C": { + "slug": "recipe-plutoniumcell-c", + "name": "Encased Plutonium Cell", + "className": "Recipe_PlutoniumCell_C", + "alternate": false, + "time": 12, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 0.5, + "ingredients": [ + { + "item": "Desc_PlutoniumPellet_C", + "amount": 2.0 + }, + { + "item": "Desc_Cement_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_PlutoniumCell_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PressureConversionCube_C": { + "slug": "recipe-pressureconversioncube-c", + "name": "Pressure Conversion Cube", + "className": "Recipe_PressureConversionCube_C", + "alternate": false, + "time": 60, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 2.0, + "ingredients": [ + { + "item": "Desc_ModularFrameFused_C", + "amount": 1.0 + }, + { + "item": "Desc_ModularFrameLightweight_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_PressureConversionCube_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_HadronCollider_C": { + "slug": "recipe-hadroncollider-c", + "name": "Particle Accelerator", + "className": "Recipe_HadronCollider_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrameLightweight_C", + "amount": 25.0 + }, + { + "item": "Desc_ElectromagneticControlRod_C", + "amount": 100.0 + }, + { + "item": "Desc_ComputerSuper_C", + "amount": 10.0 + }, + { + "item": "Desc_CoolingSystem_C", + "amount": 50.0 + }, + { + "item": "Desc_ModularFrameFused_C", + "amount": 20.0 + }, + { + "item": "Desc_MotorLightweight_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_HadronCollider_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_CopperDust_C": { + "slug": "recipe-copperdust-c", + "name": "Copper Powder", + "className": "Recipe_CopperDust_C", + "alternate": false, + "time": 6, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CopperIngot_C", + "amount": 30.0 + } + ], + "products": [ + { + "item": "Desc_CopperDust_C", + "amount": 5.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Plutonium_C": { + "slug": "recipe-plutonium-c", + "name": "Plutonium Pellet", + "className": "Recipe_Plutonium_C", + "alternate": false, + "time": 60, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_NonFissibleUranium_C", + "amount": 100.0 + }, + { + "item": "Desc_NuclearWaste_C", + "amount": 25.0 + } + ], + "products": [ + { + "item": "Desc_PlutoniumPellet_C", + "amount": 30.0 + } + ], + "producedIn": [ + "Desc_HadronCollider_C" + ], + "isVariablePower": true, + "minPower": 250, + "maxPower": 750 + }, + "Recipe_PlutoniumFuelRod_C": { + "slug": "recipe-plutoniumfuelrod-c", + "name": "Plutonium Fuel Rod", + "className": "Recipe_PlutoniumFuelRod_C", + "alternate": false, + "time": 240, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_PlutoniumCell_C", + "amount": 30.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 18.0 + }, + { + "item": "Desc_ElectromagneticControlRod_C", + "amount": 6.0 + }, + { + "item": "Desc_AluminumPlateReinforced_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_PlutoniumFuelRod_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PackagedNitricAcid_C": { + "slug": "recipe-packagednitricacid-c", + "name": "Packaged Nitric Acid", + "className": "Recipe_PackagedNitricAcid_C", + "alternate": false, + "time": 2, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_NitricAcid_C", + "amount": 1.0 + }, + { + "item": "Desc_GasTank_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_PackagedNitricAcid_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SpaceElevatorPart_9_C": { + "slug": "recipe-spaceelevatorpart-9-c", + "name": "Nuclear Pasta", + "className": "Recipe_SpaceElevatorPart_9_C", + "alternate": false, + "time": 120, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CopperDust_C", + "amount": 200.0 + }, + { + "item": "Desc_PressureConversionCube_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_SpaceElevatorPart_9_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_HadronCollider_C" + ], + "isVariablePower": true, + "minPower": 500, + "maxPower": 1500 + }, + "Recipe_UnpackageNitricAcid_C": { + "slug": "recipe-unpackagenitricacid-c", + "name": "Unpackage Nitric Acid", + "className": "Recipe_UnpackageNitricAcid_C", + "alternate": false, + "time": 3, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_PackagedNitricAcid_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_NitricAcid_C", + "amount": 1.0 + }, + { + "item": "Desc_GasTank_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_TurboBlendFuel_C": { + "slug": "recipe-alternate-turboblendfuel-c", + "name": "Alternate: Turbo Blend Fuel", + "className": "Recipe_Alternate_TurboBlendFuel_C", + "alternate": true, + "time": 8, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_LiquidFuel_C", + "amount": 2.0 + }, + { + "item": "Desc_HeavyOilResidue_C", + "amount": 4.0 + }, + { + "item": "Desc_Sulfur_C", + "amount": 3.0 + }, + { + "item": "Desc_PetroleumCoke_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_LiquidTurboFuel_C", + "amount": 6.0 + } + ], + "producedIn": [ + "Desc_Blender_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_SuperStateComputer_C": { + "slug": "recipe-alternate-superstatecomputer-c", + "name": "Alternate: Super-State Computer", + "className": "Recipe_Alternate_SuperStateComputer_C", + "alternate": true, + "time": 50, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Computer_C", + "amount": 3.0 + }, + { + "item": "Desc_ElectromagneticControlRod_C", + "amount": 2.0 + }, + { + "item": "Desc_Battery_C", + "amount": 20.0 + }, + { + "item": "Desc_Wire_C", + "amount": 45.0 + } + ], + "products": [ + { + "item": "Desc_ComputerSuper_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_DroneStation_C": { + "slug": "recipe-dronestation-c", + "name": "Drone Port", + "className": "Recipe_DroneStation_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 20.0 + }, + { + "item": "Desc_HighSpeedConnector_C", + "amount": 20.0 + }, + { + "item": "Desc_AluminumPlate_C", + "amount": 50.0 + }, + { + "item": "Desc_AluminumCasing_C", + "amount": 50.0 + }, + { + "item": "Desc_ModularFrameLightweight_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_DroneStation_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_DroneTransport_C": { + "slug": "recipe-dronetransport-c", + "name": "Drone", + "className": "Recipe_DroneTransport_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Motor_C", + "amount": 4.0 + }, + { + "item": "Desc_AluminumPlate_C", + "amount": 10.0 + }, + { + "item": "Desc_ModularFrameLightweight_C", + "amount": 1.0 + }, + { + "item": "Desc_CircuitBoardHighSpeed_C", + "amount": 2.0 + }, + { + "item": "BP_ItemDescriptorPortableMiner_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_DroneTransport_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Battery_C": { + "slug": "recipe-battery-c", + "name": "Battery", + "className": "Recipe_Battery_C", + "alternate": false, + "time": 3, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SulfuricAcid_C", + "amount": 2.5 + }, + { + "item": "Desc_AluminaSolution_C", + "amount": 2.0 + }, + { + "item": "Desc_AluminumCasing_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_Battery_C", + "amount": 1.0 + }, + { + "item": "Desc_Water_C", + "amount": 1.5 + } + ], + "producedIn": [ + "Desc_Blender_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ComputerSuper_C": { + "slug": "recipe-computersuper-c", + "name": "Supercomputer", + "className": "Recipe_ComputerSuper_C", + "alternate": false, + "time": 32, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.5, + "ingredients": [ + { + "item": "Desc_Computer_C", + "amount": 2.0 + }, + { + "item": "Desc_CircuitBoardHighSpeed_C", + "amount": 2.0 + }, + { + "item": "Desc_HighSpeedConnector_C", + "amount": 3.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 28.0 + } + ], + "products": [ + { + "item": "Desc_ComputerSuper_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SulfuricAcid_C": { + "slug": "recipe-sulfuricacid-c", + "name": "Sulfuric Acid", + "className": "Recipe_SulfuricAcid_C", + "alternate": false, + "time": 6, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Sulfur_C", + "amount": 5.0 + }, + { + "item": "Desc_Water_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_SulfuricAcid_C", + "amount": 5.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PackagedSulfuricAcid_C": { + "slug": "recipe-packagedsulfuricacid-c", + "name": "Packaged Sulfuric Acid", + "className": "Recipe_PackagedSulfuricAcid_C", + "alternate": false, + "time": 3, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SulfuricAcid_C", + "amount": 2.0 + }, + { + "item": "Desc_FluidCanister_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_PackagedSulfuricAcid_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SpaceElevatorPart_7_C": { + "slug": "recipe-spaceelevatorpart-7-c", + "name": "Assembly Director System", + "className": "Recipe_SpaceElevatorPart_7_C", + "alternate": false, + "time": 80, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SpaceElevatorPart_5_C", + "amount": 2.0 + }, + { + "item": "Desc_ComputerSuper_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_SpaceElevatorPart_7_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_HighSpeedConnector_C": { + "slug": "recipe-highspeedconnector-c", + "name": "High-Speed Connector", + "className": "Recipe_HighSpeedConnector_C", + "alternate": false, + "time": 16, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 56.0 + }, + { + "item": "Desc_Cable_C", + "amount": 10.0 + }, + { + "item": "Desc_CircuitBoard_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_HighSpeedConnector_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_UnpackageSulfuricAcid_C": { + "slug": "recipe-unpackagesulfuricacid-c", + "name": "Unpackage Sulfuric Acid", + "className": "Recipe_UnpackageSulfuricAcid_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_PackagedSulfuricAcid_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_SulfuricAcid_C", + "amount": 1.0 + }, + { + "item": "Desc_FluidCanister_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ElectromagneticControlRod_C": { + "slug": "recipe-electromagneticcontrolrod-c", + "name": "Electromagnetic Control Rod", + "className": "Recipe_ElectromagneticControlRod_C", + "alternate": false, + "time": 30, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Stator_C", + "amount": 3.0 + }, + { + "item": "Desc_CircuitBoardHighSpeed_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_ElectromagneticControlRod_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_GeneratorNuclear_C": { + "slug": "recipe-generatornuclear-c", + "name": "Nuclear Power Plant", + "className": "Recipe_GeneratorNuclear_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 250.0 + }, + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 25.0 + }, + { + "item": "Desc_ComputerSuper_C", + "amount": 5.0 + }, + { + "item": "Desc_Cable_C", + "amount": 100.0 + }, + { + "item": "Desc_AluminumPlate_C", + "amount": 100.0 + } + ], + "products": [ + { + "item": "Desc_GeneratorNuclear_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_NuclearFuelRod_C": { + "slug": "recipe-nuclearfuelrod-c", + "name": "Uranium Fuel Rod", + "className": "Recipe_NuclearFuelRod_C", + "alternate": false, + "time": 150, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_UraniumCell_C", + "amount": 50.0 + }, + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 3.0 + }, + { + "item": "Desc_ElectromagneticControlRod_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_NuclearFuelRod_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SpaceElevatorPart_6_C": { + "slug": "recipe-spaceelevatorpart-6-c", + "name": "Magnetic Field Generator", + "className": "Recipe_SpaceElevatorPart_6_C", + "alternate": false, + "time": 120, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SpaceElevatorPart_2_C", + "amount": 5.0 + }, + { + "item": "Desc_ElectromagneticControlRod_C", + "amount": 2.0 + }, + { + "item": "Desc_Battery_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_SpaceElevatorPart_6_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_SloppyAlumina_C": { + "slug": "recipe-alternate-sloppyalumina-c", + "name": "Alternate: Sloppy Alumina", + "className": "Recipe_Alternate_SloppyAlumina_C", + "alternate": true, + "time": 3, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_OreBauxite_C", + "amount": 10.0 + }, + { + "item": "Desc_Water_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_AluminaSolution_C", + "amount": 12.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_RadioControlSystem_C": { + "slug": "recipe-alternate-radiocontrolsystem-c", + "name": "Alternate: Radio Control System", + "className": "Recipe_Alternate_RadioControlSystem_C", + "alternate": true, + "time": 40, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CrystalOscillator_C", + "amount": 1.0 + }, + { + "item": "Desc_CircuitBoard_C", + "amount": 10.0 + }, + { + "item": "Desc_AluminumCasing_C", + "amount": 60.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 30.0 + } + ], + "products": [ + { + "item": "Desc_ModularFrameLightweight_C", + "amount": 3.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_PlutoniumFuelUnit_C": { + "slug": "recipe-alternate-plutoniumfuelunit-c", + "name": "Alternate: Plutonium Fuel Unit", + "className": "Recipe_Alternate_PlutoniumFuelUnit_C", + "alternate": true, + "time": 120, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_PlutoniumCell_C", + "amount": 20.0 + }, + { + "item": "Desc_PressureConversionCube_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_PlutoniumFuelRod_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_OCSupercomputer_C": { + "slug": "recipe-alternate-ocsupercomputer-c", + "name": "Alternate: OC Supercomputer", + "className": "Recipe_Alternate_OCSupercomputer_C", + "alternate": true, + "time": 20, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrameLightweight_C", + "amount": 3.0 + }, + { + "item": "Desc_CoolingSystem_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_ComputerSuper_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_HeatSink_C": { + "slug": "recipe-heatsink-c", + "name": "Heat Sink", + "className": "Recipe_HeatSink_C", + "alternate": false, + "time": 8, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.5, + "ingredients": [ + { + "item": "Desc_AluminumPlate_C", + "amount": 5.0 + }, + { + "item": "Desc_CopperSheet_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_AluminumPlateReinforced_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_FusedModularFrame_C": { + "slug": "recipe-fusedmodularframe-c", + "name": "Fused Modular Frame", + "className": "Recipe_FusedModularFrame_C", + "alternate": false, + "time": 40, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 1.0 + }, + { + "item": "Desc_AluminumCasing_C", + "amount": 50.0 + }, + { + "item": "Desc_NitrogenGas_C", + "amount": 25.0 + } + ], + "products": [ + { + "item": "Desc_ModularFrameFused_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_Blender_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_FrackingExtractor_C": { + "slug": "recipe-frackingextractor-c", + "name": "Resource Well Extractor", + "className": "Recipe_FrackingExtractor_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlate_C", + "amount": 10.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_FrackingExtractor_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_FrackingSmasher_C": { + "slug": "recipe-frackingsmasher-c", + "name": "Resource Well Pressurizer", + "className": "Recipe_FrackingSmasher_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Wire_C", + "amount": 200.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 50.0 + }, + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 50.0 + }, + { + "item": "Desc_Motor_C", + "amount": 50.0 + } + ], + "products": [ + { + "item": "Desc_FrackingSmasher_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_GasTank_C": { + "slug": "recipe-gastank-c", + "name": "Empty Fluid Tank", + "className": "Recipe_GasTank_C", + "alternate": false, + "time": 1, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_AluminumIngot_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_GasTank_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PackagedNitrogen_C": { + "slug": "recipe-packagednitrogen-c", + "name": "Packaged Nitrogen Gas", + "className": "Recipe_PackagedNitrogen_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_NitrogenGas_C", + "amount": 4.0 + }, + { + "item": "Desc_GasTank_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_PackagedNitrogenGas_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_UnpackageNitrogen_C": { + "slug": "recipe-unpackagenitrogen-c", + "name": "Unpackage Nitrogen Gas", + "className": "Recipe_UnpackageNitrogen_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_PackagedNitrogenGas_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_NitrogenGas_C", + "amount": 4.0 + }, + { + "item": "Desc_GasTank_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_InstantScrap_C": { + "slug": "recipe-alternate-instantscrap-c", + "name": "Alternate: Instant Scrap", + "className": "Recipe_Alternate_InstantScrap_C", + "alternate": true, + "time": 6, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_OreBauxite_C", + "amount": 15.0 + }, + { + "item": "Desc_Coal_C", + "amount": 10.0 + }, + { + "item": "Desc_SulfuricAcid_C", + "amount": 5.0 + }, + { + "item": "Desc_Water_C", + "amount": 6.0 + } + ], + "products": [ + { + "item": "Desc_AluminumScrap_C", + "amount": 30.0 + }, + { + "item": "Desc_Water_C", + "amount": 5.0 + } + ], + "producedIn": [ + "Desc_Blender_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_InstantPlutoniumCell_C": { + "slug": "recipe-alternate-instantplutoniumcell-c", + "name": "Alternate: Instant Plutonium Cell", + "className": "Recipe_Alternate_InstantPlutoniumCell_C", + "alternate": true, + "time": 120, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_NonFissibleUranium_C", + "amount": 150.0 + }, + { + "item": "Desc_AluminumCasing_C", + "amount": 20.0 + } + ], + "products": [ + { + "item": "Desc_PlutoniumCell_C", + "amount": 20.0 + } + ], + "producedIn": [ + "Desc_HadronCollider_C" + ], + "isVariablePower": true, + "minPower": 250, + "maxPower": 750 + }, + "Recipe_Alternate_HeatFusedFrame_C": { + "slug": "recipe-alternate-heatfusedframe-c", + "name": "Alternate: Heat-Fused Frame", + "className": "Recipe_Alternate_HeatFusedFrame_C", + "alternate": true, + "time": 20, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 1.0 + }, + { + "item": "Desc_AluminumIngot_C", + "amount": 50.0 + }, + { + "item": "Desc_NitricAcid_C", + "amount": 8.0 + }, + { + "item": "Desc_LiquidFuel_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_ModularFrameFused_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_Blender_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_FertileUranium_C": { + "slug": "recipe-alternate-fertileuranium-c", + "name": "Alternate: Fertile Uranium", + "className": "Recipe_Alternate_FertileUranium_C", + "alternate": true, + "time": 12, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_OreUranium_C", + "amount": 5.0 + }, + { + "item": "Desc_NuclearWaste_C", + "amount": 5.0 + }, + { + "item": "Desc_NitricAcid_C", + "amount": 3.0 + }, + { + "item": "Desc_SulfuricAcid_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_NonFissibleUranium_C", + "amount": 20.0 + }, + { + "item": "Desc_Water_C", + "amount": 8.0 + } + ], + "producedIn": [ + "Desc_Blender_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_ElectricMotor_C": { + "slug": "recipe-alternate-electricmotor-c", + "name": "Alternate: Electric Motor", + "className": "Recipe_Alternate_ElectricMotor_C", + "alternate": true, + "time": 16, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ElectromagneticControlRod_C", + "amount": 1.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Motor_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_DilutedFuel_C": { + "slug": "recipe-alternate-dilutedfuel-c", + "name": "Alternate: Diluted Fuel", + "className": "Recipe_Alternate_DilutedFuel_C", + "alternate": true, + "time": 6, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HeavyOilResidue_C", + "amount": 5.0 + }, + { + "item": "Desc_Water_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_LiquidFuel_C", + "amount": 10.0 + } + ], + "producedIn": [ + "Desc_Blender_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_CoolingDevice_C": { + "slug": "recipe-alternate-coolingdevice-c", + "name": "Alternate: Cooling Device", + "className": "Recipe_Alternate_CoolingDevice_C", + "alternate": true, + "time": 32, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_AluminumPlateReinforced_C", + "amount": 5.0 + }, + { + "item": "Desc_Motor_C", + "amount": 1.0 + }, + { + "item": "Desc_NitrogenGas_C", + "amount": 24.0 + } + ], + "products": [ + { + "item": "Desc_CoolingSystem_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_Blender_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_ClassicBattery_C": { + "slug": "recipe-alternate-classicbattery-c", + "name": "Alternate: Classic Battery", + "className": "Recipe_Alternate_ClassicBattery_C", + "alternate": true, + "time": 8, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Sulfur_C", + "amount": 6.0 + }, + { + "item": "Desc_AluminumPlate_C", + "amount": 7.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 8.0 + }, + { + "item": "Desc_Wire_C", + "amount": 12.0 + } + ], + "products": [ + { + "item": "Desc_Battery_C", + "amount": 4.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_AutomatedMiner_C": { + "slug": "recipe-alternate-automatedminer-c", + "name": "Alternate: Automated Miner", + "className": "Recipe_Alternate_AutomatedMiner_C", + "alternate": true, + "time": 60, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Motor_C", + "amount": 1.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 4.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 4.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "BP_ItemDescriptorPortableMiner_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_AlcladCasing_C": { + "slug": "recipe-alternate-alcladcasing-c", + "name": "Alternate: Alclad Casing", + "className": "Recipe_Alternate_AlcladCasing_C", + "alternate": true, + "time": 8, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_AluminumIngot_C", + "amount": 20.0 + }, + { + "item": "Desc_CopperIngot_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_AluminumCasing_C", + "amount": 15.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Wire_2_C": { + "slug": "recipe-alternate-wire-2-c", + "name": "Alternate: Caterium Wire", + "className": "Recipe_Alternate_Wire_2_C", + "alternate": true, + "time": 4, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_GoldIngot_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_Wire_C", + "amount": 8.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Wire_1_C": { + "slug": "recipe-alternate-wire-1-c", + "name": "Alternate: Iron Wire", + "className": "Recipe_Alternate_Wire_1_C", + "alternate": true, + "time": 24, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronIngot_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Wire_C", + "amount": 9.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_UraniumCell_1_C": { + "slug": "recipe-alternate-uraniumcell-1-c", + "name": "Alternate: Infused Uranium Cell", + "className": "Recipe_Alternate_UraniumCell_1_C", + "alternate": true, + "time": 12, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_OreUranium_C", + "amount": 5.0 + }, + { + "item": "Desc_Silica_C", + "amount": 3.0 + }, + { + "item": "Desc_Sulfur_C", + "amount": 5.0 + }, + { + "item": "Desc_HighSpeedWire_C", + "amount": 15.0 + } + ], + "products": [ + { + "item": "Desc_UraniumCell_C", + "amount": 4.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_IngotCaterium_C": { + "slug": "recipe-ingotcaterium-c", + "name": "Caterium Ingot", + "className": "Recipe_IngotCaterium_C", + "alternate": false, + "time": 4, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 2.0, + "ingredients": [ + { + "item": "Desc_OreGold_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_GoldIngot_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_SmelterMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_TurboMotor_1_C": { + "slug": "recipe-alternate-turbomotor-1-c", + "name": "Alternate: Turbo Electric Motor", + "className": "Recipe_Alternate_TurboMotor_1_C", + "alternate": true, + "time": 64, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Motor_C", + "amount": 7.0 + }, + { + "item": "Desc_ModularFrameLightweight_C", + "amount": 9.0 + }, + { + "item": "Desc_ElectromagneticControlRod_C", + "amount": 5.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 7.0 + } + ], + "products": [ + { + "item": "Desc_MotorLightweight_C", + "amount": 3.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConveyorBeltMk5_C": { + "slug": "recipe-conveyorbeltmk5-c", + "name": "Conveyor Belt Mk.5", + "className": "Recipe_ConveyorBeltMk5_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_AluminumPlate_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_ConveyorBeltMk5_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConveyorLiftMk5_C": { + "slug": "recipe-conveyorliftmk5-c", + "name": "Conveyor Lift Mk.5", + "className": "Recipe_ConveyorLiftMk5_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_AluminumPlate_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_ConveyorLiftMk5_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_MinerMk3_C": { + "slug": "recipe-minermk3-c", + "name": "Miner Mk.3", + "className": "Recipe_MinerMk3_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "BP_ItemDescriptorPortableMiner_C", + "amount": 3.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 50.0 + }, + { + "item": "Desc_ComputerSuper_C", + "amount": 5.0 + }, + { + "item": "Desc_ModularFrameFused_C", + "amount": 10.0 + }, + { + "item": "Desc_MotorLightweight_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_MinerMk3_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_MotorTurbo_C": { + "slug": "recipe-motorturbo-c", + "name": "Turbo Motor", + "className": "Recipe_MotorTurbo_C", + "alternate": false, + "time": 32, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 2.0, + "ingredients": [ + { + "item": "Desc_CoolingSystem_C", + "amount": 4.0 + }, + { + "item": "Desc_ModularFrameLightweight_C", + "amount": 2.0 + }, + { + "item": "Desc_Motor_C", + "amount": 4.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 24.0 + } + ], + "products": [ + { + "item": "Desc_MotorLightweight_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SpaceElevatorPart_8_C": { + "slug": "recipe-spaceelevatorpart-8-c", + "name": "Thermal Propulsion Rocket", + "className": "Recipe_SpaceElevatorPart_8_C", + "alternate": false, + "time": 120, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SpaceElevatorPart_4_C", + "amount": 5.0 + }, + { + "item": "Desc_MotorLightweight_C", + "amount": 2.0 + }, + { + "item": "Desc_CoolingSystem_C", + "amount": 6.0 + }, + { + "item": "Desc_ModularFrameFused_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_SpaceElevatorPart_8_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Turbofuel_C": { + "slug": "recipe-alternate-turbofuel-c", + "name": "Turbofuel", + "className": "Recipe_Alternate_Turbofuel_C", + "alternate": true, + "time": 16, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_LiquidFuel_C", + "amount": 6.0 + }, + { + "item": "Desc_CompactedCoal_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_LiquidTurboFuel_C", + "amount": 5.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Stator_C": { + "slug": "recipe-alternate-stator-c", + "name": "Alternate: Quickwire Stator", + "className": "Recipe_Alternate_Stator_C", + "alternate": true, + "time": 15, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPipe_C", + "amount": 4.0 + }, + { + "item": "Desc_HighSpeedWire_C", + "amount": 15.0 + } + ], + "products": [ + { + "item": "Desc_Stator_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Silica_C": { + "slug": "recipe-alternate-silica-c", + "name": "Alternate: Cheap Silica", + "className": "Recipe_Alternate_Silica_C", + "alternate": true, + "time": 16, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_RawQuartz_C", + "amount": 3.0 + }, + { + "item": "Desc_Stone_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Silica_C", + "amount": 7.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Screw_2_C": { + "slug": "recipe-alternate-screw-2-c", + "name": "Alternate: Steel Screw", + "className": "Recipe_Alternate_Screw_2_C", + "alternate": true, + "time": 12, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlate_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_IronScrew_C", + "amount": 52.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Screw_C": { + "slug": "recipe-alternate-screw-c", + "name": "Alternate: Cast Screw", + "className": "Recipe_Alternate_Screw_C", + "alternate": true, + "time": 24, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronIngot_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_IronScrew_C", + "amount": 20.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Rotor_C": { + "slug": "recipe-alternate-rotor-c", + "name": "Alternate: Steel Rotor", + "className": "Recipe_Alternate_Rotor_C", + "alternate": true, + "time": 12, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPipe_C", + "amount": 2.0 + }, + { + "item": "Desc_Wire_C", + "amount": 6.0 + } + ], + "products": [ + { + "item": "Desc_Rotor_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_EncasedIndustrialBeam_C": { + "slug": "recipe-alternate-encasedindustrialbeam-c", + "name": "Alternate: Encased Industrial Pipe", + "className": "Recipe_Alternate_EncasedIndustrialBeam_C", + "alternate": true, + "time": 15, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPipe_C", + "amount": 7.0 + }, + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_ReinforcedIronPlate_2_C": { + "slug": "recipe-alternate-reinforcedironplate-2-c", + "name": "Alternate: Stitched Iron Plate", + "className": "Recipe_Alternate_ReinforcedIronPlate_2_C", + "alternate": true, + "time": 32, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 10.0 + }, + { + "item": "Desc_Wire_C", + "amount": 20.0 + } + ], + "products": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 3.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_ReinforcedIronPlate_1_C": { + "slug": "recipe-alternate-reinforcedironplate-1-c", + "name": "Alternate: Bolted Iron Plate", + "className": "Recipe_Alternate_ReinforcedIronPlate_1_C", + "alternate": true, + "time": 12, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 18.0 + }, + { + "item": "Desc_IronScrew_C", + "amount": 50.0 + } + ], + "products": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 3.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_RadioControlUnit_1_C": { + "slug": "recipe-alternate-radiocontrolunit-1-c", + "name": "Alternate: Radio Connection Unit", + "className": "Recipe_Alternate_RadioControlUnit_1_C", + "alternate": true, + "time": 16, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_AluminumPlateReinforced_C", + "amount": 4.0 + }, + { + "item": "Desc_HighSpeedConnector_C", + "amount": 2.0 + }, + { + "item": "Desc_QuartzCrystal_C", + "amount": 12.0 + } + ], + "products": [ + { + "item": "Desc_ModularFrameLightweight_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Quickwire_C": { + "slug": "recipe-alternate-quickwire-c", + "name": "Alternate: Fused Quickwire", + "className": "Recipe_Alternate_Quickwire_C", + "alternate": true, + "time": 8, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_GoldIngot_C", + "amount": 1.0 + }, + { + "item": "Desc_CopperIngot_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 12.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Plastic_1_C": { + "slug": "recipe-alternate-plastic-1-c", + "name": "Alternate: Recycled Plastic", + "className": "Recipe_Alternate_Plastic_1_C", + "alternate": true, + "time": 12, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Rubber_C", + "amount": 6.0 + }, + { + "item": "Desc_LiquidFuel_C", + "amount": 6.0 + } + ], + "products": [ + { + "item": "Desc_Plastic_C", + "amount": 12.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_NuclearFuelRod_1_C": { + "slug": "recipe-alternate-nuclearfuelrod-1-c", + "name": "Alternate: Uranium Fuel Unit", + "className": "Recipe_Alternate_NuclearFuelRod_1_C", + "alternate": true, + "time": 300, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_UraniumCell_C", + "amount": 100.0 + }, + { + "item": "Desc_ElectromagneticControlRod_C", + "amount": 10.0 + }, + { + "item": "Desc_CrystalOscillator_C", + "amount": 3.0 + }, + { + "item": "BP_EquipmentDescriptorBeacon_C", + "amount": 6.0 + } + ], + "products": [ + { + "item": "Desc_NuclearFuelRod_C", + "amount": 3.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Motor_1_C": { + "slug": "recipe-alternate-motor-1-c", + "name": "Alternate: Rigour Motor", + "className": "Recipe_Alternate_Motor_1_C", + "alternate": true, + "time": 48, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Rotor_C", + "amount": 3.0 + }, + { + "item": "Desc_Stator_C", + "amount": 3.0 + }, + { + "item": "Desc_CrystalOscillator_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_Motor_C", + "amount": 6.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_ModularFrame_C": { + "slug": "recipe-alternate-modularframe-c", + "name": "Alternate: Steeled Frame", + "className": "Recipe_Alternate_ModularFrame_C", + "alternate": true, + "time": 60, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 2.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_ModularFrame_C", + "amount": 3.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_IngotSteel_2_C": { + "slug": "recipe-alternate-ingotsteel-2-c", + "name": "Alternate: Compacted Steel Ingot", + "className": "Recipe_Alternate_IngotSteel_2_C", + "alternate": true, + "time": 16, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_OreIron_C", + "amount": 6.0 + }, + { + "item": "Desc_CompactedCoal_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_SteelIngot_C", + "amount": 10.0 + } + ], + "producedIn": [ + "Desc_FoundryMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_IngotSteel_1_C": { + "slug": "recipe-alternate-ingotsteel-1-c", + "name": "Alternate: Solid Steel Ingot", + "className": "Recipe_Alternate_IngotSteel_1_C", + "alternate": true, + "time": 3, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronIngot_C", + "amount": 2.0 + }, + { + "item": "Desc_Coal_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_SteelIngot_C", + "amount": 3.0 + } + ], + "producedIn": [ + "Desc_FoundryMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_IngotIron_C": { + "slug": "recipe-alternate-ingotiron-c", + "name": "Alternate: Iron Alloy Ingot", + "className": "Recipe_Alternate_IngotIron_C", + "alternate": true, + "time": 6, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_OreIron_C", + "amount": 2.0 + }, + { + "item": "Desc_OreCopper_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_IronIngot_C", + "amount": 5.0 + } + ], + "producedIn": [ + "Desc_FoundryMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_HighSpeedConnector_C": { + "slug": "recipe-alternate-highspeedconnector-c", + "name": "Alternate: Silicon High-Speed Connector", + "className": "Recipe_Alternate_HighSpeedConnector_C", + "alternate": true, + "time": 40, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 60.0 + }, + { + "item": "Desc_Silica_C", + "amount": 25.0 + }, + { + "item": "Desc_CircuitBoard_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_HighSpeedConnector_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_ModularFrameHeavy_C": { + "slug": "recipe-alternate-modularframeheavy-c", + "name": "Alternate: Heavy Encased Frame", + "className": "Recipe_Alternate_ModularFrameHeavy_C", + "alternate": true, + "time": 64, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrame_C", + "amount": 8.0 + }, + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 10.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 36.0 + }, + { + "item": "Desc_Cement_C", + "amount": 22.0 + } + ], + "products": [ + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 3.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_HeatSink_1_C": { + "slug": "recipe-alternate-heatsink-1-c", + "name": "Alternate: Heat Exchanger", + "className": "Recipe_Alternate_HeatSink_1_C", + "alternate": true, + "time": 6, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_AluminumCasing_C", + "amount": 3.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_AluminumPlateReinforced_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Gunpowder_1_C": { + "slug": "recipe-alternate-gunpowder-1-c", + "name": "Alternate: Fine Black Powder", + "className": "Recipe_Alternate_Gunpowder_1_C", + "alternate": true, + "time": 16, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Sulfur_C", + "amount": 2.0 + }, + { + "item": "Desc_CompactedCoal_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_Gunpowder_C", + "amount": 4.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_ElectromagneticControlRod_1_C": { + "slug": "recipe-alternate-electromagneticcontrolrod-1-c", + "name": "Alternate: Electromagnetic Connection Rod", + "className": "Recipe_Alternate_ElectromagneticControlRod_1_C", + "alternate": true, + "time": 15, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Stator_C", + "amount": 2.0 + }, + { + "item": "Desc_HighSpeedConnector_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_ElectromagneticControlRod_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_CrystalOscillator_C": { + "slug": "recipe-alternate-crystaloscillator-c", + "name": "Alternate: Insulated Crystal Oscillator", + "className": "Recipe_Alternate_CrystalOscillator_C", + "alternate": true, + "time": 32, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_QuartzCrystal_C", + "amount": 10.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 7.0 + }, + { + "item": "Desc_CircuitBoardHighSpeed_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_CrystalOscillator_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Concrete_C": { + "slug": "recipe-alternate-concrete-c", + "name": "Alternate: Fine Concrete", + "className": "Recipe_Alternate_Concrete_C", + "alternate": true, + "time": 24, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Silica_C", + "amount": 3.0 + }, + { + "item": "Desc_Stone_C", + "amount": 12.0 + } + ], + "products": [ + { + "item": "Desc_Cement_C", + "amount": 10.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Computer_2_C": { + "slug": "recipe-alternate-computer-2-c", + "name": "Alternate: Crystal Computer", + "className": "Recipe_Alternate_Computer_2_C", + "alternate": true, + "time": 64, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CircuitBoard_C", + "amount": 8.0 + }, + { + "item": "Desc_CrystalOscillator_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Computer_C", + "amount": 3.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Computer_1_C": { + "slug": "recipe-alternate-computer-1-c", + "name": "Alternate: Caterium Computer", + "className": "Recipe_Alternate_Computer_1_C", + "alternate": true, + "time": 16, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CircuitBoard_C", + "amount": 7.0 + }, + { + "item": "Desc_HighSpeedWire_C", + "amount": 28.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 12.0 + } + ], + "products": [ + { + "item": "Desc_Computer_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_CircuitBoard_2_C": { + "slug": "recipe-alternate-circuitboard-2-c", + "name": "Alternate: Caterium Circuit Board", + "className": "Recipe_Alternate_CircuitBoard_2_C", + "alternate": true, + "time": 48, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Plastic_C", + "amount": 10.0 + }, + { + "item": "Desc_HighSpeedWire_C", + "amount": 30.0 + } + ], + "products": [ + { + "item": "Desc_CircuitBoard_C", + "amount": 7.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_CircuitBoard_1_C": { + "slug": "recipe-alternate-circuitboard-1-c", + "name": "Alternate: Silicon Circuit Board", + "className": "Recipe_Alternate_CircuitBoard_1_C", + "alternate": true, + "time": 24, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CopperSheet_C", + "amount": 11.0 + }, + { + "item": "Desc_Silica_C", + "amount": 11.0 + } + ], + "products": [ + { + "item": "Desc_CircuitBoard_C", + "amount": 5.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Cable_2_C": { + "slug": "recipe-alternate-cable-2-c", + "name": "Alternate: Quickwire Cable", + "className": "Recipe_Alternate_Cable_2_C", + "alternate": true, + "time": 24, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 3.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Cable_C", + "amount": 11.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Cable_1_C": { + "slug": "recipe-alternate-cable-1-c", + "name": "Alternate: Insulated Cable", + "className": "Recipe_Alternate_Cable_1_C", + "alternate": true, + "time": 12, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Wire_C", + "amount": 9.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 6.0 + } + ], + "products": [ + { + "item": "Desc_Cable_C", + "amount": 20.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Beacon_1_C": { + "slug": "recipe-alternate-beacon-1-c", + "name": "Alternate: Crystal Beacon", + "className": "Recipe_Alternate_Beacon_1_C", + "alternate": true, + "time": 120, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlate_C", + "amount": 4.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 16.0 + }, + { + "item": "Desc_CrystalOscillator_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "BP_EquipmentDescriptorBeacon_C", + "amount": 20.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Hoverpack_C": { + "slug": "recipe-hoverpack-c", + "name": "Hover Pack", + "className": "Recipe_Hoverpack_C", + "alternate": false, + "time": 120, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Motor_C", + "amount": 8.0 + }, + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 4.0 + }, + { + "item": "Desc_Computer_C", + "amount": 8.0 + }, + { + "item": "Desc_AluminumPlate_C", + "amount": 40.0 + } + ], + "products": [ + { + "item": "BP_EquipmentDescriptorHoverPack_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_FilterHazmat_C": { + "slug": "recipe-filterhazmat-c", + "name": "Iodine Infused Filter", + "className": "Recipe_FilterHazmat_C", + "alternate": false, + "time": 16, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Filter_C", + "amount": 1.0 + }, + { + "item": "Desc_HighSpeedWire_C", + "amount": 8.0 + }, + { + "item": "Desc_AluminumCasing_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_HazmatFilter_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_HazmatSuit_C": { + "slug": "recipe-hazmatsuit-c", + "name": "Hazmat Suit", + "className": "Recipe_HazmatSuit_C", + "alternate": false, + "time": 120, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Rubber_C", + "amount": 50.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 50.0 + }, + { + "item": "Desc_AluminumPlate_C", + "amount": 50.0 + }, + { + "item": "Desc_Fabric_C", + "amount": 50.0 + } + ], + "products": [ + { + "item": "BP_EquipmentDescriptorHazmatSuit_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PipelineMK2_C": { + "slug": "recipe-pipelinemk2-c", + "name": "Pipeline Mk.2", + "className": "Recipe_PipelineMK2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CopperSheet_C", + "amount": 2.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_PipelineMK2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PipelinePumpMK2_C": { + "slug": "recipe-pipelinepumpmk2-c", + "name": "Pipeline Pump Mk.2", + "className": "Recipe_PipelinePumpMK2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Motor_C", + "amount": 2.0 + }, + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 4.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 8.0 + } + ], + "products": [ + { + "item": "Desc_PipelinePumpMk2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_FilterGasMask_C": { + "slug": "recipe-filtergasmask-c", + "name": "Gas Filter", + "className": "Recipe_FilterGasMask_C", + "alternate": false, + "time": 8, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Coal_C", + "amount": 5.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 2.0 + }, + { + "item": "Desc_Fabric_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Filter_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Gasmask_C": { + "slug": "recipe-gasmask-c", + "name": "Gas Mask", + "className": "Recipe_Gasmask_C", + "alternate": false, + "time": 60, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Rubber_C", + "amount": 100.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 100.0 + }, + { + "item": "Desc_Fabric_C", + "amount": 100.0 + } + ], + "products": [ + { + "item": "BP_EquipmentDescriptorGasmask_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RailroadBlockSignal_C": { + "slug": "recipe-railroadblocksignal-c", + "name": "Block Signal", + "className": "Recipe_RailroadBlockSignal_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPipe_C", + "amount": 2.0 + }, + { + "item": "Desc_CopperSheet_C", + "amount": 1.0 + }, + { + "item": "Desc_CircuitBoard_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_RailroadBlockSignal_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RailroadPathSignal_C": { + "slug": "recipe-railroadpathsignal-c", + "name": "Path Signal", + "className": "Recipe_RailroadPathSignal_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPipe_C", + "amount": 2.0 + }, + { + "item": "Desc_CopperSheet_C", + "amount": 1.0 + }, + { + "item": "Desc_Computer_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_RailroadPathSignal_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_TrainDockingStation_C": { + "slug": "recipe-traindockingstation-c", + "name": "Freight Platform", + "className": "Recipe_TrainDockingStation_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 6.0 + }, + { + "item": "Desc_Computer_C", + "amount": 2.0 + }, + { + "item": "Desc_Cement_C", + "amount": 50.0 + }, + { + "item": "Desc_Cable_C", + "amount": 25.0 + }, + { + "item": "Desc_Motor_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_TrainDockingStation_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_TrainDockingStationLiquid_C": { + "slug": "recipe-traindockingstationliquid-c", + "name": "Fluid Freight Platform", + "className": "Recipe_TrainDockingStationLiquid_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 6.0 + }, + { + "item": "Desc_Computer_C", + "amount": 2.0 + }, + { + "item": "Desc_Cement_C", + "amount": 50.0 + }, + { + "item": "Desc_Cable_C", + "amount": 25.0 + }, + { + "item": "Desc_Motor_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_TrainDockingStationLiquid_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_TrainPlatformEmpty_C": { + "slug": "recipe-trainplatformempty-c", + "name": "Empty Platform", + "className": "Recipe_TrainPlatformEmpty_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 6.0 + }, + { + "item": "Desc_Cement_C", + "amount": 50.0 + } + ], + "products": [ + { + "item": "Desc_TrainPlatformEmpty_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_TrainPlatformEmpty_02_C": { + "slug": "recipe-trainplatformempty-02-c", + "name": "Empty Platform With Catwalk", + "className": "Recipe_TrainPlatformEmpty_02_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 6.0 + }, + { + "item": "Desc_Cement_C", + "amount": 50.0 + } + ], + "products": [ + { + "item": "Desc_TrainPlatformEmpty_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_TrainStation_C": { + "slug": "recipe-trainstation-c", + "name": "Train Station", + "className": "Recipe_TrainStation_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 4.0 + }, + { + "item": "Desc_Computer_C", + "amount": 8.0 + }, + { + "item": "Desc_Cement_C", + "amount": 50.0 + }, + { + "item": "Desc_Cable_C", + "amount": 25.0 + } + ], + "products": [ + { + "item": "Desc_TrainStation_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RailroadTrack_C": { + "slug": "recipe-railroadtrack-c", + "name": "Railway", + "className": "Recipe_RailroadTrack_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPipe_C", + "amount": 1.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_RailroadTrack_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_FreightWagon_C": { + "slug": "recipe-freightwagon-c", + "name": "Freight Car", + "className": "Recipe_FreightWagon_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 4.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_FreightWagon_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Locomotive_C": { + "slug": "recipe-locomotive-c", + "name": "Electric Locomotive", + "className": "Recipe_Locomotive_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 5.0 + }, + { + "item": "Desc_Motor_C", + "amount": 10.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 15.0 + }, + { + "item": "Desc_Computer_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Locomotive_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_JetPack_C": { + "slug": "recipe-jetpack-c", + "name": "Jetpack", + "className": "Recipe_JetPack_C", + "alternate": false, + "time": 120, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Plastic_C", + "amount": 50.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 50.0 + }, + { + "item": "Desc_CircuitBoard_C", + "amount": 15.0 + }, + { + "item": "Desc_Motor_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "BP_EquipmentDescriptorJetPack_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConveyorBeltMk4_C": { + "slug": "recipe-conveyorbeltmk4-c", + "name": "Conveyor Belt Mk.4", + "className": "Recipe_ConveyorBeltMk4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_ConveyorBeltMk4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConveyorLiftMk4_C": { + "slug": "recipe-conveyorliftmk4-c", + "name": "Conveyor Lift Mk.4", + "className": "Recipe_ConveyorLiftMk4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_ConveyorLiftMk4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_GeneratorFuel_C": { + "slug": "recipe-generatorfuel-c", + "name": "Fuel Generator", + "className": "Recipe_GeneratorFuel_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Computer_C", + "amount": 5.0 + }, + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 10.0 + }, + { + "item": "Desc_Motor_C", + "amount": 15.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 50.0 + }, + { + "item": "Desc_HighSpeedWire_C", + "amount": 50.0 + } + ], + "products": [ + { + "item": "Desc_GeneratorFuel_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConveyorBeltMk3_C": { + "slug": "recipe-conveyorbeltmk3-c", + "name": "Conveyor Belt Mk.3", + "className": "Recipe_ConveyorBeltMk3_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlate_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_ConveyorBeltMk3_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConveyorLiftMk3_C": { + "slug": "recipe-conveyorliftmk3-c", + "name": "Conveyor Lift Mk.3", + "className": "Recipe_ConveyorLiftMk3_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlate_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_ConveyorLiftMk3_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PipeSupportStackable_C": { + "slug": "recipe-pipesupportstackable-c", + "name": "Stackable Pipeline Support", + "className": "Recipe_PipeSupportStackable_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 4.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 2.0 + }, + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_PipeSupportStackable_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_StorageContainerMk2_C": { + "slug": "recipe-storagecontainermk2-c", + "name": "Industrial Storage Container", + "className": "Recipe_StorageContainerMk2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlate_C", + "amount": 20.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 20.0 + } + ], + "products": [ + { + "item": "Desc_StorageContainerMk2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PipeHyperStart_C": { + "slug": "recipe-pipehyperstart-c", + "name": "Hypertube Entrance", + "className": "Recipe_PipeHyperStart_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 4.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 4.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_PipeHyperStart_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_HyperPoleStackable_C": { + "slug": "recipe-hyperpolestackable-c", + "name": "Stackable Hypertube Support", + "className": "Recipe_HyperPoleStackable_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 4.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 2.0 + }, + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_HyperPoleStackable_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_HyperTubeWallSupport_C": { + "slug": "recipe-hypertubewallsupport-c", + "name": "Hypertube Wall Support", + "className": "Recipe_HyperTubeWallSupport_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 2.0 + }, + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_HyperTubeWallSupport_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PipeHyperSupport_C": { + "slug": "recipe-pipehypersupport-c", + "name": "Hypertube Support", + "className": "Recipe_PipeHyperSupport_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 2.0 + }, + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_PipeHyperSupport_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PipeHyper_C": { + "slug": "recipe-pipehyper-c", + "name": "Hypertube", + "className": "Recipe_PipeHyper_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CopperSheet_C", + "amount": 1.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_PipeHyper_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PowerStorageMk1_C": { + "slug": "recipe-powerstoragemk1-c", + "name": "Power Storage", + "className": "Recipe_PowerStorageMk1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Wire_C", + "amount": 100.0 + }, + { + "item": "Desc_ModularFrame_C", + "amount": 10.0 + }, + { + "item": "Desc_Stator_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_PowerStorageMk1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PowerTower_C": { + "slug": "recipe-powertower-c", + "name": "Power Tower", + "className": "Recipe_PowerTower_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 10.0 + }, + { + "item": "Desc_Wire_C", + "amount": 20.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 20.0 + } + ], + "products": [ + { + "item": "Desc_PowerTower_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PowerTowerPlatform_C": { + "slug": "recipe-powertowerplatform-c", + "name": "Power Tower Platform", + "className": "Recipe_PowerTowerPlatform_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 10.0 + }, + { + "item": "Desc_Wire_C", + "amount": 20.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 20.0 + } + ], + "products": [ + { + "item": "Desc_PowerTowerPlatform_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_XenoBasher_C": { + "slug": "recipe-xenobasher-c", + "name": "Xeno-Basher", + "className": "Recipe_XenoBasher_C", + "alternate": false, + "time": 80, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrame_C", + "amount": 5.0 + }, + { + "item": "BP_EquipmentDescriptorShockShank_C", + "amount": 2.0 + }, + { + "item": "Desc_Cable_C", + "amount": 25.0 + }, + { + "item": "Desc_Wire_C", + "amount": 500.0 + } + ], + "products": [ + { + "item": "BP_EquipmentDescriptorStunSpear_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_TruckStation_C": { + "slug": "recipe-truckstation-c", + "name": "Truck Station", + "className": "Recipe_TruckStation_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrame_C", + "amount": 15.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 20.0 + }, + { + "item": "Desc_Cable_C", + "amount": 50.0 + } + ], + "products": [ + { + "item": "Desc_TruckStation_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Tractor_C": { + "slug": "recipe-tractor-c", + "name": "Tractor", + "className": "Recipe_Tractor_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrame_C", + "amount": 5.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 5.0 + }, + { + "item": "Desc_IronPlateReinforced_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_Tractor_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConveyorBeltMk2_C": { + "slug": "recipe-conveyorbeltmk2-c", + "name": "Conveyor Belt Mk.2", + "className": "Recipe_ConveyorBeltMk2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_ConveyorBeltMk2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConveyorLiftMk2_C": { + "slug": "recipe-conveyorliftmk2-c", + "name": "Conveyor Lift Mk.2", + "className": "Recipe_ConveyorLiftMk2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_ConveyorLiftMk2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConveyorPoleStackable_C": { + "slug": "recipe-conveyorpolestackable-c", + "name": "Stackable Conveyor Pole", + "className": "Recipe_ConveyorPoleStackable_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 2.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 2.0 + }, + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_ConveyorPoleStackable_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_JumpPadAdjustable_C": { + "slug": "recipe-jumppadadjustable-c", + "name": "Jump Pad", + "className": "Recipe_JumpPadAdjustable_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Rotor_C", + "amount": 2.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 15.0 + }, + { + "item": "Desc_Cable_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_JumpPadAdjustable_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_UJellyLandingPad_C": { + "slug": "recipe-ujellylandingpad-c", + "name": "U-Jelly Landing Pad", + "className": "Recipe_UJellyLandingPad_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Rotor_C", + "amount": 2.0 + }, + { + "item": "Desc_Cable_C", + "amount": 20.0 + }, + { + "item": "Desc_GenericBiomass_C", + "amount": 200.0 + } + ], + "products": [ + { + "item": "Desc_LandingPad_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Biofuel_C": { + "slug": "recipe-biofuel-c", + "name": "Solid Biofuel", + "className": "Recipe_Biofuel_C", + "alternate": false, + "time": 4, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 5.0, + "ingredients": [ + { + "item": "Desc_GenericBiomass_C", + "amount": 8.0 + } + ], + "products": [ + { + "item": "Desc_Biofuel_C", + "amount": 4.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Chainsaw_C": { + "slug": "recipe-chainsaw-c", + "name": "Chainsaw", + "className": "Recipe_Chainsaw_C", + "alternate": false, + "time": 60, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 5.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 25.0 + }, + { + "item": "Desc_IronScrew_C", + "amount": 160.0 + }, + { + "item": "Desc_Cable_C", + "amount": 15.0 + } + ], + "products": [ + { + "item": "Desc_Chainsaw_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Mam_C": { + "slug": "recipe-mam-c", + "name": "MAM", + "className": "Recipe_Mam_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 5.0 + }, + { + "item": "Desc_Cable_C", + "amount": 15.0 + }, + { + "item": "Desc_Wire_C", + "amount": 45.0 + } + ], + "products": [ + { + "item": "Desc_Mam_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_StoragePlayer_C": { + "slug": "recipe-storageplayer-c", + "name": "Personal Storage Box", + "className": "Recipe_StoragePlayer_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 6.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 6.0 + } + ], + "products": [ + { + "item": "Desc_StoragePlayer_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Beacon_C": { + "slug": "recipe-beacon-c", + "name": "Beacon", + "className": "Recipe_Beacon_C", + "alternate": false, + "time": 8, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 3.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 1.0 + }, + { + "item": "Desc_Wire_C", + "amount": 15.0 + }, + { + "item": "Desc_Cable_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "BP_EquipmentDescriptorBeacon_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ObjectScanner_C": { + "slug": "recipe-objectscanner-c", + "name": "Object Scanner", + "className": "Recipe_ObjectScanner_C", + "alternate": false, + "time": 40, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 4.0 + }, + { + "item": "Desc_Wire_C", + "amount": 20.0 + }, + { + "item": "Desc_IronScrew_C", + "amount": 50.0 + } + ], + "products": [ + { + "item": "BP_EquipmentDescriptorObjectScanner_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConveyorAttachmentMerger_C": { + "slug": "recipe-conveyorattachmentmerger-c", + "name": "Conveyor Merger", + "className": "Recipe_ConveyorAttachmentMerger_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 2.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_ConveyorAttachmentMerger_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConveyorAttachmentSplitter_C": { + "slug": "recipe-conveyorattachmentsplitter-c", + "name": "Conveyor Splitter", + "className": "Recipe_ConveyorAttachmentSplitter_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 2.0 + }, + { + "item": "Desc_Cable_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_ConveyorAttachmentSplitter_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConveyorLiftMk1_C": { + "slug": "recipe-conveyorliftmk1-c", + "name": "Conveyor Lift Mk.1", + "className": "Recipe_ConveyorLiftMk1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_ConveyorLiftMk1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddle_Ficsit_4x1_C": { + "slug": "recipe-quarterpipemiddle-ficsit-4x1-c", + "name": "Half 1m Foundation", + "className": "Recipe_QuarterPipeMiddle_Ficsit_4x1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddle_Ficsit_4x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddle_Ficsit_4x2_C": { + "slug": "recipe-quarterpipemiddle-ficsit-4x2-c", + "name": "Half 2m Foundation", + "className": "Recipe_QuarterPipeMiddle_Ficsit_4x2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddle_Ficsit_4x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddle_Ficsit_4x4_C": { + "slug": "recipe-quarterpipemiddle-ficsit-4x4-c", + "name": "Half 4m Foundation", + "className": "Recipe_QuarterPipeMiddle_Ficsit_4x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddle_Ficsit_4x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleInCorner_Ficsit_8x1_C": { + "slug": "recipe-quarterpipemiddleincorner-ficsit-8x1-c", + "name": "Inner Corner Extension 1m", + "className": "Recipe_QuarterPipeMiddleInCorner_Ficsit_8x1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleInCorner_Ficsit_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleInCorner_Ficsit_8x2_C": { + "slug": "recipe-quarterpipemiddleincorner-ficsit-8x2-c", + "name": "Inner Corner Extension 2m", + "className": "Recipe_QuarterPipeMiddleInCorner_Ficsit_8x2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleInCorner_Ficsit_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleInCorner_Ficsit_8x4_C": { + "slug": "recipe-quarterpipemiddleincorner-ficsit-8x4-c", + "name": "Inner Corner Extension 4m", + "className": "Recipe_QuarterPipeMiddleInCorner_Ficsit_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleInCorner_Ficsit_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleOutCorner_Ficsit_4x1_C": { + "slug": "recipe-quarterpipemiddleoutcorner-ficsit-4x1-c", + "name": "Outer Corner Extension 1m", + "className": "Recipe_QuarterPipeMiddleOutCorner_Ficsit_4x1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleOutCorner_Ficsit_4x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleOutCorner_Ficsit_4x2_C": { + "slug": "recipe-quarterpipemiddleoutcorner-ficsit-4x2-c", + "name": "Outer Corner Extension 2m", + "className": "Recipe_QuarterPipeMiddleOutCorner_Ficsit_4x2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleOutCorner_Ficsit_4x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleOutCorner_Ficsit_4x4_C": { + "slug": "recipe-quarterpipemiddleoutcorner-ficsit-4x4-c", + "name": "Outer Corner Extension 4m", + "className": "Recipe_QuarterPipeMiddleOutCorner_Ficsit_4x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleOutCorner_Ficsit_4x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Foundation_8x1_01_C": { + "slug": "recipe-foundation-8x1-01-c", + "name": "Foundation 1m", + "className": "Recipe_Foundation_8x1_01_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Foundation_8x1_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Foundation_8x2_01_C": { + "slug": "recipe-foundation-8x2-01-c", + "name": "Foundation 2m", + "className": "Recipe_Foundation_8x2_01_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Foundation_8x2_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Foundation_8x4_01_C": { + "slug": "recipe-foundation-8x4-01-c", + "name": "Foundation 4m", + "className": "Recipe_Foundation_8x4_01_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Foundation_8x4_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipe_C": { + "slug": "recipe-quarterpipe-c", + "name": "Quarter Pipe", + "className": "Recipe_QuarterPipe_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipe_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipe_02_C": { + "slug": "recipe-quarterpipe-02-c", + "name": "Inverted Quarter Pipe", + "className": "Recipe_QuarterPipe_02_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipe_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeCorner_01_C": { + "slug": "recipe-quarterpipecorner-01-c", + "name": "Inner Corner Quarter Pipe", + "className": "Recipe_QuarterPipeCorner_01_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeCorner_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeCorner_02_C": { + "slug": "recipe-quarterpipecorner-02-c", + "name": "Inverted Inner Corner Quarter Pipe", + "className": "Recipe_QuarterPipeCorner_02_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeCorner_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeCorner_03_C": { + "slug": "recipe-quarterpipecorner-03-c", + "name": "Outer Corner Quarter Pipe", + "className": "Recipe_QuarterPipeCorner_03_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeCorner_03_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeCorner_04_C": { + "slug": "recipe-quarterpipecorner-04-c", + "name": "Inverted Outer Corner Quarter Pipe", + "className": "Recipe_QuarterPipeCorner_04_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeCorner_04_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_8x1_01_C": { + "slug": "recipe-ramp-8x1-01-c", + "name": "Ramp 1m", + "className": "Recipe_Ramp_8x1_01_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_8x1_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_8x2_01_C": { + "slug": "recipe-ramp-8x2-01-c", + "name": "Ramp 2m", + "className": "Recipe_Ramp_8x2_01_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_8x2_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_8x4_01_C": { + "slug": "recipe-ramp-8x4-01-c", + "name": "Ramp 4m", + "className": "Recipe_Ramp_8x4_01_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_8x4_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_8x4_Inverted_01_C": { + "slug": "recipe-ramp-8x4-inverted-01-c", + "name": "Inv. Ramp 4m", + "className": "Recipe_Ramp_8x4_Inverted_01_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_8x4_Inverted_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_8x8x8_C": { + "slug": "recipe-ramp-8x8x8-c", + "name": "Double Ramp 8m", + "className": "Recipe_Ramp_8x8x8_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_8x8x8_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Diagonal_8x1_01_C": { + "slug": "recipe-ramp-diagonal-8x1-01-c", + "name": "Down Corner Ramp 1m", + "className": "Recipe_Ramp_Diagonal_8x1_01_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Diagonal_8x1_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Diagonal_8x1_02_C": { + "slug": "recipe-ramp-diagonal-8x1-02-c", + "name": "Up Corner Ramp 1m", + "className": "Recipe_Ramp_Diagonal_8x1_02_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Diagonal_8x1_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Diagonal_8x2_01_C": { + "slug": "recipe-ramp-diagonal-8x2-01-c", + "name": "Down Corner Ramp 2m", + "className": "Recipe_Ramp_Diagonal_8x2_01_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Diagonal_8x2_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Diagonal_8x2_02_C": { + "slug": "recipe-ramp-diagonal-8x2-02-c", + "name": "Up Corner Ramp 2m", + "className": "Recipe_Ramp_Diagonal_8x2_02_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Diagonal_8x2_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Diagonal_8x4_01_C": { + "slug": "recipe-ramp-diagonal-8x4-01-c", + "name": "Down Corner Ramp 4m", + "className": "Recipe_Ramp_Diagonal_8x4_01_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Diagonal_8x4_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Diagonal_8x4_02_C": { + "slug": "recipe-ramp-diagonal-8x4-02-c", + "name": "Up Corner Ramp 4m", + "className": "Recipe_Ramp_Diagonal_8x4_02_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Diagonal_8x4_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampDouble_C": { + "slug": "recipe-rampdouble-c", + "name": "Double Ramp 4m", + "className": "Recipe_RampDouble_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampDouble_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampDouble_8x1_C": { + "slug": "recipe-rampdouble-8x1-c", + "name": "Double Ramp 2m", + "className": "Recipe_RampDouble_8x1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampDouble_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampInverted_8x1_C": { + "slug": "recipe-rampinverted-8x1-c", + "name": "Inv. Ramp 1m", + "className": "Recipe_RampInverted_8x1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampInverted_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampInverted_8x1_Corner_01_C": { + "slug": "recipe-rampinverted-8x1-corner-01-c", + "name": "Inv. Up Corner 1m", + "className": "Recipe_RampInverted_8x1_Corner_01_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampInverted_8x1_Corner_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampInverted_8x1_Corner_02_C": { + "slug": "recipe-rampinverted-8x1-corner-02-c", + "name": "Inv. Down Corner 1m", + "className": "Recipe_RampInverted_8x1_Corner_02_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampInverted_8x1_Corner_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampInverted_8x2_01_C": { + "slug": "recipe-rampinverted-8x2-01-c", + "name": "Inv. Ramp 2m", + "className": "Recipe_RampInverted_8x2_01_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampInverted_8x2_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampInverted_8x2_Corner_01_C": { + "slug": "recipe-rampinverted-8x2-corner-01-c", + "name": "Inv. Up Corner 2m", + "className": "Recipe_RampInverted_8x2_Corner_01_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampInverted_8x2_Corner_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampInverted_8x2_Corner_02_C": { + "slug": "recipe-rampinverted-8x2-corner-02-c", + "name": "Inv. Down Corner 2m", + "className": "Recipe_RampInverted_8x2_Corner_02_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampInverted_8x2_Corner_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampInverted_8x4_Corner_01_C": { + "slug": "recipe-rampinverted-8x4-corner-01-c", + "name": "Inv. Up Corner 4m", + "className": "Recipe_RampInverted_8x4_Corner_01_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampInverted_8x4_Corner_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampInverted_8x4_Corner_02_C": { + "slug": "recipe-rampinverted-8x4-corner-02-c", + "name": "Inv. Down Corner 4m", + "className": "Recipe_RampInverted_8x4_Corner_02_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampInverted_8x4_Corner_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_LookoutTower_C": { + "slug": "recipe-lookouttower-c", + "name": "Lookout Tower", + "className": "Recipe_LookoutTower_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 5.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_LookoutTower_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_DownQuarterPipe_Concrete_8x4_C": { + "slug": "recipe-downquarterpipe-concrete-8x4-c", + "name": "Inverted Quarter Pipe", + "className": "Recipe_DownQuarterPipe_Concrete_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_DownQuarterPipe_Concrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_DownQuarterPipe_ConcreteInCorner_8x4_C": { + "slug": "recipe-downquarterpipe-concreteincorner-8x4-c", + "name": "Inverted Inner Corner Quarter Pipe", + "className": "Recipe_DownQuarterPipe_ConcreteInCorner_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_DownQuarterPipeInCorner_Concrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_DownQuarterPipe_ConcreteOutCorner_8x4_C": { + "slug": "recipe-downquarterpipe-concreteoutcorner-8x4-c", + "name": "Inverted Outer Corner Quarter Pipe", + "className": "Recipe_DownQuarterPipe_ConcreteOutCorner_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_DownQuarterPipeOutCorner_Concrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Foundation_Concrete_8x1_C": { + "slug": "recipe-foundation-concrete-8x1-c", + "name": "Foundation 1m", + "className": "Recipe_Foundation_Concrete_8x1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Foundation_Concrete_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Foundation_Concrete_8x2_C": { + "slug": "recipe-foundation-concrete-8x2-c", + "name": "Foundation 2m", + "className": "Recipe_Foundation_Concrete_8x2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Foundation_Concrete_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Foundation_Concrete_8x4_C": { + "slug": "recipe-foundation-concrete-8x4-c", + "name": "Foundation 4m", + "className": "Recipe_Foundation_Concrete_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Foundation_Concrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_Concrete_8x1_C": { + "slug": "recipe-invertedramp-concrete-8x1-c", + "name": "Inv. Ramp 1m", + "className": "Recipe_InvertedRamp_Concrete_8x1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_Concrete_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_Concrete_8x2_C": { + "slug": "recipe-invertedramp-concrete-8x2-c", + "name": "Inv. Ramp 2m", + "className": "Recipe_InvertedRamp_Concrete_8x2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_Concrete_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_Concrete_8x4_C": { + "slug": "recipe-invertedramp-concrete-8x4-c", + "name": "Inv. Ramp 4m", + "className": "Recipe_InvertedRamp_Concrete_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_Concrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_DCorner_Concrete_8x1_C": { + "slug": "recipe-invertedramp-dcorner-concrete-8x1-c", + "name": "Inv. Down Corner 1m", + "className": "Recipe_InvertedRamp_DCorner_Concrete_8x1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_DCorner_Concrete_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_DCorner_Concrete_8x2_C": { + "slug": "recipe-invertedramp-dcorner-concrete-8x2-c", + "name": "Inv. Down Corner 2m", + "className": "Recipe_InvertedRamp_DCorner_Concrete_8x2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_DCorner_Concrete_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_DCorner_Concrete_8x4_C": { + "slug": "recipe-invertedramp-dcorner-concrete-8x4-c", + "name": "Inv. Down Corner 4m", + "className": "Recipe_InvertedRamp_DCorner_Concrete_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_DCorner_Concrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_UCorner_Concrete_8x1_C": { + "slug": "recipe-invertedramp-ucorner-concrete-8x1-c", + "name": "Inv. Up Corner 1m", + "className": "Recipe_InvertedRamp_UCorner_Concrete_8x1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_UCorner_Concrete_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_UCorner_Concrete_8x2_C": { + "slug": "recipe-invertedramp-ucorner-concrete-8x2-c", + "name": "Inv. Up Corner 2m", + "className": "Recipe_InvertedRamp_UCorner_Concrete_8x2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_UCorner_Concrete_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_UCorner_Concrete_8x4_C": { + "slug": "recipe-invertedramp-ucorner-concrete-8x4-c", + "name": "Inv. Up Corner 4m", + "className": "Recipe_InvertedRamp_UCorner_Concrete_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_UCorner_Concrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipe_Concrete_8x4_C": { + "slug": "recipe-quarterpipe-concrete-8x4-c", + "name": "Quarter Pipe", + "className": "Recipe_QuarterPipe_Concrete_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipe_Concrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeInCorner_Concrete_8x4_C": { + "slug": "recipe-quarterpipeincorner-concrete-8x4-c", + "name": "Inner Corner Quarter Pipe", + "className": "Recipe_QuarterPipeInCorner_Concrete_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeInCorner_Concrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddle_Concrete_8x1_C": { + "slug": "recipe-quarterpipemiddle-concrete-8x1-c", + "name": "Half 1m Foundation", + "className": "Recipe_QuarterPipeMiddle_Concrete_8x1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddle_Concrete_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddle_Concrete_8x2_C": { + "slug": "recipe-quarterpipemiddle-concrete-8x2-c", + "name": "Half 2m Foundation", + "className": "Recipe_QuarterPipeMiddle_Concrete_8x2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddle_Concrete_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddle_Concrete_8x4_C": { + "slug": "recipe-quarterpipemiddle-concrete-8x4-c", + "name": "Half 4m Foundation", + "className": "Recipe_QuarterPipeMiddle_Concrete_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddle_Concrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleInCorner_Concrete_8x1_C": { + "slug": "recipe-quarterpipemiddleincorner-concrete-8x1-c", + "name": "Inner Corner Extension 1m", + "className": "Recipe_QuarterPipeMiddleInCorner_Concrete_8x1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleInCorner_Concrete_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleInCorner_Concrete_8x2_C": { + "slug": "recipe-quarterpipemiddleincorner-concrete-8x2-c", + "name": "Inner Corner Extension 2m", + "className": "Recipe_QuarterPipeMiddleInCorner_Concrete_8x2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleInCorner_Concrete_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleInCorner_Concrete_8x4_C": { + "slug": "recipe-quarterpipemiddleincorner-concrete-8x4-c", + "name": "Inner Corner Extension 4m", + "className": "Recipe_QuarterPipeMiddleInCorner_Concrete_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleInCorner_Concrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleOutCorner_Concrete_4x1_C": { + "slug": "recipe-quarterpipemiddleoutcorner-concrete-4x1-c", + "name": "Outer Corner Extension 1m", + "className": "Recipe_QuarterPipeMiddleOutCorner_Concrete_4x1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleOutCorner_Concrete_4x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleOutCorner_Concrete_4x2_C": { + "slug": "recipe-quarterpipemiddleoutcorner-concrete-4x2-c", + "name": "Outer Corner Extension 2m", + "className": "Recipe_QuarterPipeMiddleOutCorner_Concrete_4x2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleOutCorner_Concrete_4x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleOutCorner_Concrete_4x4_C": { + "slug": "recipe-quarterpipemiddleoutcorner-concrete-4x4-c", + "name": "Outer Corner Extension 4m", + "className": "Recipe_QuarterPipeMiddleOutCorner_Concrete_4x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleOutCorner_Concrete_4x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeOutCorner_Concrete_8x4_C": { + "slug": "recipe-quarterpipeoutcorner-concrete-8x4-c", + "name": "Outer Corner Quarter Pipe", + "className": "Recipe_QuarterPipeOutCorner_Concrete_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeOutCorner_Concrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Concrete_8x1_C": { + "slug": "recipe-ramp-concrete-8x1-c", + "name": "Ramp 1m", + "className": "Recipe_Ramp_Concrete_8x1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Concrete_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Concrete_8x2_C": { + "slug": "recipe-ramp-concrete-8x2-c", + "name": "Ramp 2m", + "className": "Recipe_Ramp_Concrete_8x2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Concrete_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Concrete_8x4_C": { + "slug": "recipe-ramp-concrete-8x4-c", + "name": "Ramp 4m", + "className": "Recipe_Ramp_Concrete_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Concrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_DownCorner_Concrete_8x1_C": { + "slug": "recipe-ramp-downcorner-concrete-8x1-c", + "name": "Down Corner Ramp 1m", + "className": "Recipe_Ramp_DownCorner_Concrete_8x1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_DownCorner_Concrete_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_DownCorner_Concrete_8x2_C": { + "slug": "recipe-ramp-downcorner-concrete-8x2-c", + "name": "Down Corner Ramp 2m", + "className": "Recipe_Ramp_DownCorner_Concrete_8x2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_DownCorner_Concrete_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_DownCorner_Concrete_8x4_C": { + "slug": "recipe-ramp-downcorner-concrete-8x4-c", + "name": "Down Corner Ramp 4m", + "className": "Recipe_Ramp_DownCorner_Concrete_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_DownCorner_Concrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_UpCorner_Concrete_8x1_C": { + "slug": "recipe-ramp-upcorner-concrete-8x1-c", + "name": "Up Corner Ramp 1m", + "className": "Recipe_Ramp_UpCorner_Concrete_8x1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_UpCorner_Concrete_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_UpCorner_Concrete_8x2_C": { + "slug": "recipe-ramp-upcorner-concrete-8x2-c", + "name": "Up Corner Ramp 2m", + "className": "Recipe_Ramp_UpCorner_Concrete_8x2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_UpCorner_Concrete_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_UpCorner_Concrete_8x4_C": { + "slug": "recipe-ramp-upcorner-concrete-8x4-c", + "name": "Up Corner Ramp 4m", + "className": "Recipe_Ramp_UpCorner_Concrete_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_UpCorner_Concrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampDouble_Concrete_8x1_C": { + "slug": "recipe-rampdouble-concrete-8x1-c", + "name": "Double Ramp 2m", + "className": "Recipe_RampDouble_Concrete_8x1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampDouble_Concrete_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampDouble_Concrete_8x2_C": { + "slug": "recipe-rampdouble-concrete-8x2-c", + "name": "Double Ramp 4m", + "className": "Recipe_RampDouble_Concrete_8x2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampDouble_Concrete_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampDouble_Concrete_8x4_C": { + "slug": "recipe-rampdouble-concrete-8x4-c", + "name": "Double Ramp 8m", + "className": "Recipe_RampDouble_Concrete_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampDouble_Concrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_DownQuarterPipe_Grip_8x4_C": { + "slug": "recipe-downquarterpipe-grip-8x4-c", + "name": "Inverted Quarter Pipe", + "className": "Recipe_DownQuarterPipe_Grip_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_DownQuarterPipe_Grip_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_DownQuarterPipe_GripInCorner_8x4_C": { + "slug": "recipe-downquarterpipe-gripincorner-8x4-c", + "name": "Inverted Inner Corner Quarter Pipe", + "className": "Recipe_DownQuarterPipe_GripInCorner_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_DownQuarterPipeInCorner_Grip_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_DownQuarterPipe_GripOutCorner_8x4_C": { + "slug": "recipe-downquarterpipe-gripoutcorner-8x4-c", + "name": "Inverted Outer Corner Quarter Pipe", + "className": "Recipe_DownQuarterPipe_GripOutCorner_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_DownQuarterPipeOutCorner_Grip_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Foundation_Metal_8x1_C": { + "slug": "recipe-foundation-metal-8x1-c", + "name": "Foundation 1m", + "className": "Recipe_Foundation_Metal_8x1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Foundation_Metal_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Foundation_Metal_8x2_C": { + "slug": "recipe-foundation-metal-8x2-c", + "name": "Foundation 2m", + "className": "Recipe_Foundation_Metal_8x2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Foundation_Metal_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Foundation_Metal_8x4_C": { + "slug": "recipe-foundation-metal-8x4-c", + "name": "Foundation 4m", + "className": "Recipe_Foundation_Metal_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Foundation_Metal_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_DCorner_Metal_8x1_C": { + "slug": "recipe-invertedramp-dcorner-metal-8x1-c", + "name": "Inv. Down Corner 1m", + "className": "Recipe_InvertedRamp_DCorner_Metal_8x1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_DCorner_Metal_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_DCorner_Metal_8x2_C": { + "slug": "recipe-invertedramp-dcorner-metal-8x2-c", + "name": "Inv. Down Corner 2m", + "className": "Recipe_InvertedRamp_DCorner_Metal_8x2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_DCorner_Metal_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_DCorner_Metal_8x4_C": { + "slug": "recipe-invertedramp-dcorner-metal-8x4-c", + "name": "Inv. Down Corner 4m", + "className": "Recipe_InvertedRamp_DCorner_Metal_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_DCorner_Metal_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_Metal_8x1_C": { + "slug": "recipe-invertedramp-metal-8x1-c", + "name": "Inv. Ramp 1m", + "className": "Recipe_InvertedRamp_Metal_8x1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_Metal_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_Metal_8x2_C": { + "slug": "recipe-invertedramp-metal-8x2-c", + "name": "Inv. Ramp 2m", + "className": "Recipe_InvertedRamp_Metal_8x2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_Metal_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_Metal_8x4_C": { + "slug": "recipe-invertedramp-metal-8x4-c", + "name": "Inv. Ramp 4m", + "className": "Recipe_InvertedRamp_Metal_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_Metal_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_UCorner_Metal_8x1_C": { + "slug": "recipe-invertedramp-ucorner-metal-8x1-c", + "name": "Inv. Up Corner 1m", + "className": "Recipe_InvertedRamp_UCorner_Metal_8x1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_UCorner_Metal_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_UCorner_Metal_8x2_C": { + "slug": "recipe-invertedramp-ucorner-metal-8x2-c", + "name": "Inv. Up Corner 2m", + "className": "Recipe_InvertedRamp_UCorner_Metal_8x2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_UCorner_Metal_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_UCorner_Metal_8x4_C": { + "slug": "recipe-invertedramp-ucorner-metal-8x4-c", + "name": "Inv. Up Corner 4m", + "className": "Recipe_InvertedRamp_UCorner_Metal_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_UCorner_Metal_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipe_Grip_8x4_C": { + "slug": "recipe-quarterpipe-grip-8x4-c", + "name": "Quarter Pipe", + "className": "Recipe_QuarterPipe_Grip_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipe_Grip_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeInCorner_Grip_8x4_C": { + "slug": "recipe-quarterpipeincorner-grip-8x4-c", + "name": "Inner Corner Quarter Pipe", + "className": "Recipe_QuarterPipeInCorner_Grip_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeInCorner_Grip_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddle_Grip_8x1_C": { + "slug": "recipe-quarterpipemiddle-grip-8x1-c", + "name": "Half 1m Foundation", + "className": "Recipe_QuarterPipeMiddle_Grip_8x1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddle_Grip_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddle_Grip_8x2_C": { + "slug": "recipe-quarterpipemiddle-grip-8x2-c", + "name": "Half 2m Foundation", + "className": "Recipe_QuarterPipeMiddle_Grip_8x2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddle_Grip_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddle_Grip_8x4_C": { + "slug": "recipe-quarterpipemiddle-grip-8x4-c", + "name": "Half 4m Foundation", + "className": "Recipe_QuarterPipeMiddle_Grip_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddle_Grip_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleInCorner_Grip_8x1_C": { + "slug": "recipe-quarterpipemiddleincorner-grip-8x1-c", + "name": "Inner Corner Extension 1m", + "className": "Recipe_QuarterPipeMiddleInCorner_Grip_8x1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleInCorner_Grip_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleInCorner_Grip_8x2_C": { + "slug": "recipe-quarterpipemiddleincorner-grip-8x2-c", + "name": "Inner Corner Extension 2m", + "className": "Recipe_QuarterPipeMiddleInCorner_Grip_8x2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleInCorner_Grip_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleInCorner_Grip_8x4_C": { + "slug": "recipe-quarterpipemiddleincorner-grip-8x4-c", + "name": "Inner Corner Extension 4m", + "className": "Recipe_QuarterPipeMiddleInCorner_Grip_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleInCorner_Grip_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleOutCorner_Grip_4x1_C": { + "slug": "recipe-quarterpipemiddleoutcorner-grip-4x1-c", + "name": "Outer Corner Extension 1m", + "className": "Recipe_QuarterPipeMiddleOutCorner_Grip_4x1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleOutCorner_Grip_4x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleOutCorner_Grip_4x2_C": { + "slug": "recipe-quarterpipemiddleoutcorner-grip-4x2-c", + "name": "Outer Corner Extension 2m", + "className": "Recipe_QuarterPipeMiddleOutCorner_Grip_4x2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleOutCorner_Grip_4x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleOutCorner_Grip_4x4_C": { + "slug": "recipe-quarterpipemiddleoutcorner-grip-4x4-c", + "name": "Outer Corner Extension 4m", + "className": "Recipe_QuarterPipeMiddleOutCorner_Grip_4x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleOutCorner_Grip_4x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeOutCorner_Grip_8x4_C": { + "slug": "recipe-quarterpipeoutcorner-grip-8x4-c", + "name": "Outer Corner Quarter Pipe", + "className": "Recipe_QuarterPipeOutCorner_Grip_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeOutCorner_Grip_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_DownCorner_Metal_8x1_C": { + "slug": "recipe-ramp-downcorner-metal-8x1-c", + "name": "Down Corner Ramp 1m", + "className": "Recipe_Ramp_DownCorner_Metal_8x1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_DownCorner_Metal_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_DownCorner_Metal_8x2_C": { + "slug": "recipe-ramp-downcorner-metal-8x2-c", + "name": "Down Corner Ramp 2m", + "className": "Recipe_Ramp_DownCorner_Metal_8x2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_DownCorner_Metal_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_DownCorner_Metal_8x4_C": { + "slug": "recipe-ramp-downcorner-metal-8x4-c", + "name": "Down Corner Ramp 4m", + "className": "Recipe_Ramp_DownCorner_Metal_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_DownCorner_Metal_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Metal_8x1_C": { + "slug": "recipe-ramp-metal-8x1-c", + "name": "Ramp 1m", + "className": "Recipe_Ramp_Metal_8x1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Metal_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Metal_8x2_C": { + "slug": "recipe-ramp-metal-8x2-c", + "name": "Ramp 2m", + "className": "Recipe_Ramp_Metal_8x2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Metal_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Metal_8x4_C": { + "slug": "recipe-ramp-metal-8x4-c", + "name": "Ramp 4m", + "className": "Recipe_Ramp_Metal_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Metal_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_UpCorner_Metal_8x1_C": { + "slug": "recipe-ramp-upcorner-metal-8x1-c", + "name": "Up Corner Ramp 1m", + "className": "Recipe_Ramp_UpCorner_Metal_8x1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_UpCorner_Metal_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_UpCorner_Metal_8x2_C": { + "slug": "recipe-ramp-upcorner-metal-8x2-c", + "name": "Up Corner Ramp 2m", + "className": "Recipe_Ramp_UpCorner_Metal_8x2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_UpCorner_Metal_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_UpCorner_Metal_8x4_C": { + "slug": "recipe-ramp-upcorner-metal-8x4-c", + "name": "Up Corner Ramp 4m", + "className": "Recipe_Ramp_UpCorner_Metal_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_UpCorner_Metal_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampDouble_Metal_8x1_C": { + "slug": "recipe-rampdouble-metal-8x1-c", + "name": "Double Ramp 2m", + "className": "Recipe_RampDouble_Metal_8x1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampDouble_Metal_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampDouble_Metal_8x2_C": { + "slug": "recipe-rampdouble-metal-8x2-c", + "name": "Double Ramp 4m", + "className": "Recipe_RampDouble_Metal_8x2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampDouble_Metal_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampDouble_Metal_8x4_C": { + "slug": "recipe-rampdouble-metal-8x4-c", + "name": "Double Ramp 8m", + "className": "Recipe_RampDouble_Metal_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampDouble_Metal_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_DownQuarterPipe_ConcretePolished_8x4_C": { + "slug": "recipe-downquarterpipe-concretepolished-8x4-c", + "name": "Inverted Quarter Pipe", + "className": "Recipe_DownQuarterPipe_ConcretePolished_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_DownQuarterPipe_ConcretePolished_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_DownQuarterPipe_ConcretePolishedInCorner_8x4_C": { + "slug": "recipe-downquarterpipe-concretepolishedincorner-8x4-c", + "name": "Inverted Inner Corner Quarter Pipe", + "className": "Recipe_DownQuarterPipe_ConcretePolishedInCorner_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_DownQuarterPipeInCorner_ConcretePolished_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_DownQuarterPipe_ConcretePolishedOutCorner_8x4_C": { + "slug": "recipe-downquarterpipe-concretepolishedoutcorner-8x4-c", + "name": "Inverted Outer Corner Quarter Pipe", + "className": "Recipe_DownQuarterPipe_ConcretePolishedOutCorner_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_DownQuarterPipeOutCorner_ConcretePolished_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Foundation_ConcretePolished_8x1_C": { + "slug": "recipe-foundation-concretepolished-8x1-c", + "name": "Foundation 1m", + "className": "Recipe_Foundation_ConcretePolished_8x1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Foundation_ConcretePolished_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_DCorner_Polished_8x1_C": { + "slug": "recipe-invertedramp-dcorner-polished-8x1-c", + "name": "Inv. Down Corner 1m", + "className": "Recipe_InvertedRamp_DCorner_Polished_8x1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_DCorner_Polished_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_DCorner_Polished_8x2_C": { + "slug": "recipe-invertedramp-dcorner-polished-8x2-c", + "name": "Inv. Down Corner 2m", + "className": "Recipe_InvertedRamp_DCorner_Polished_8x2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_DCorner_Polished_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_DCorner_Polished_8x4_C": { + "slug": "recipe-invertedramp-dcorner-polished-8x4-c", + "name": "Inv. Down Corner 4m", + "className": "Recipe_InvertedRamp_DCorner_Polished_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_DCorner_Polished_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_Polished_8x1_C": { + "slug": "recipe-invertedramp-polished-8x1-c", + "name": "Inv. Ramp 1m", + "className": "Recipe_InvertedRamp_Polished_8x1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_Polished_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_Polished_8x2_C": { + "slug": "recipe-invertedramp-polished-8x2-c", + "name": "Inv. Ramp 2m", + "className": "Recipe_InvertedRamp_Polished_8x2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_Polished_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_Polished_8x4_C": { + "slug": "recipe-invertedramp-polished-8x4-c", + "name": "Inv. Ramp 4m", + "className": "Recipe_InvertedRamp_Polished_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_Polished_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_UCorner_Polished_8x1_C": { + "slug": "recipe-invertedramp-ucorner-polished-8x1-c", + "name": "Inv. Up Corner 1m", + "className": "Recipe_InvertedRamp_UCorner_Polished_8x1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_UCorner_Polished_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_UCorner_Polished_8x2_C": { + "slug": "recipe-invertedramp-ucorner-polished-8x2-c", + "name": "Inv. Up Corner 2m", + "className": "Recipe_InvertedRamp_UCorner_Polished_8x2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_UCorner_Polished_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_UCorner_Polished_8x4_C": { + "slug": "recipe-invertedramp-ucorner-polished-8x4-c", + "name": "Inv. Up Corner 4m", + "className": "Recipe_InvertedRamp_UCorner_Polished_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_UCorner_Polished_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipe_ConcretePolished_8x4_C": { + "slug": "recipe-quarterpipe-concretepolished-8x4-c", + "name": "Quarter Pipe", + "className": "Recipe_QuarterPipe_ConcretePolished_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipe_ConcretePolished_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeInCorner_ConcretePolished_8x4_C": { + "slug": "recipe-quarterpipeincorner-concretepolished-8x4-c", + "name": "Inner Corner Quarter Pipe", + "className": "Recipe_QuarterPipeInCorner_ConcretePolished_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeInCorner_ConcretePolished_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddle_PolishedConcrete_8x1_C": { + "slug": "recipe-quarterpipemiddle-polishedconcrete-8x1-c", + "name": "Half 1m Foundation", + "className": "Recipe_QuarterPipeMiddle_PolishedConcrete_8x1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddle_PolishedConcrete_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddle_PolishedConcrete_8x2_C": { + "slug": "recipe-quarterpipemiddle-polishedconcrete-8x2-c", + "name": "Half 2m Foundation", + "className": "Recipe_QuarterPipeMiddle_PolishedConcrete_8x2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddle_PolishedConcrete_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddle_PolishedConcrete_8x4_C": { + "slug": "recipe-quarterpipemiddle-polishedconcrete-8x4-c", + "name": "Half 4m Foundation", + "className": "Recipe_QuarterPipeMiddle_PolishedConcrete_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddle_PolishedConcrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleInCorner_PolishedConcrete_8x1_C": { + "slug": "recipe-quarterpipemiddleincorner-polishedconcrete-8x1-c", + "name": "Inner Corner Extension 1m", + "className": "Recipe_QuarterPipeMiddleInCorner_PolishedConcrete_8x1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleInCorner_PolishedConcrete_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleInCorner_PolishedConcrete_8x2_C": { + "slug": "recipe-quarterpipemiddleincorner-polishedconcrete-8x2-c", + "name": "Inner Corner Extension 2m", + "className": "Recipe_QuarterPipeMiddleInCorner_PolishedConcrete_8x2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleInCorner_PolishedConcrete_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleInCorner_PolishedConcrete_8x4_C": { + "slug": "recipe-quarterpipemiddleincorner-polishedconcrete-8x4-c", + "name": "Inner Corner Extension 4m", + "className": "Recipe_QuarterPipeMiddleInCorner_PolishedConcrete_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleInCorner_PolishedConcrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleOutCorner_PolishedConcrete_4x1_C": { + "slug": "recipe-quarterpipemiddleoutcorner-polishedconcrete-4x1-c", + "name": "Outer Corner Extension 1m", + "className": "Recipe_QuarterPipeMiddleOutCorner_PolishedConcrete_4x1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleOutCorner_PolishedConcrete_4x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleOutCorner_PolishedConcrete_4x2_C": { + "slug": "recipe-quarterpipemiddleoutcorner-polishedconcrete-4x2-c", + "name": "Outer Corner Extension 2m", + "className": "Recipe_QuarterPipeMiddleOutCorner_PolishedConcrete_4x2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleOutCorner_PolishedConcrete_4x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleOutCorner_PolishedConcrete_4x4_C": { + "slug": "recipe-quarterpipemiddleoutcorner-polishedconcrete-4x4-c", + "name": "Outer Corner Extension 4m", + "className": "Recipe_QuarterPipeMiddleOutCorner_PolishedConcrete_4x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleOutCorner_PolishedConcrete_4x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeOutCorner_ConcretePolished_8x4_C": { + "slug": "recipe-quarterpipeoutcorner-concretepolished-8x4-c", + "name": "Outer Corner Quarter Pipe", + "className": "Recipe_QuarterPipeOutCorner_ConcretePolished_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeOutCorner_ConcretePolished_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_DownCorner_Polished_8x1_C": { + "slug": "recipe-ramp-downcorner-polished-8x1-c", + "name": "Down Corner Ramp 1m", + "className": "Recipe_Ramp_DownCorner_Polished_8x1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_DownCorner_Polished_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_DownCorner_Polished_8x2_C": { + "slug": "recipe-ramp-downcorner-polished-8x2-c", + "name": "Down Corner Ramp 2m", + "className": "Recipe_Ramp_DownCorner_Polished_8x2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_DownCorner_Polished_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_DownCorner_Polished_8x4_C": { + "slug": "recipe-ramp-downcorner-polished-8x4-c", + "name": "Down Corner Ramp 4m", + "className": "Recipe_Ramp_DownCorner_Polished_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_DownCorner_Polished_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Polished_8x1_C": { + "slug": "recipe-ramp-polished-8x1-c", + "name": "Ramp 1m", + "className": "Recipe_Ramp_Polished_8x1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Polished_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Polished_8x2_C": { + "slug": "recipe-ramp-polished-8x2-c", + "name": "Ramp 2m", + "className": "Recipe_Ramp_Polished_8x2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Polished_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Polished_8x4_C": { + "slug": "recipe-ramp-polished-8x4-c", + "name": "Ramp 4m", + "className": "Recipe_Ramp_Polished_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Polished_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_UpCorner_Polished_8x1_C": { + "slug": "recipe-ramp-upcorner-polished-8x1-c", + "name": "Up Corner Ramp 1m", + "className": "Recipe_Ramp_UpCorner_Polished_8x1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_UpCorner_Polished_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_UpCorner_Polished_8x2_C": { + "slug": "recipe-ramp-upcorner-polished-8x2-c", + "name": "Up Corner Ramp 2m", + "className": "Recipe_Ramp_UpCorner_Polished_8x2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_UpCorner_Polished_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_UpCorner_Polished_8x4_C": { + "slug": "recipe-ramp-upcorner-polished-8x4-c", + "name": "Up Corner Ramp 4m", + "className": "Recipe_Ramp_UpCorner_Polished_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_UpCorner_Polished_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampDouble_Polished_8x1_C": { + "slug": "recipe-rampdouble-polished-8x1-c", + "name": "Double Ramp 2m", + "className": "Recipe_RampDouble_Polished_8x1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampDouble_Polished_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampDouble_Polished_8x2_C": { + "slug": "recipe-rampdouble-polished-8x2-c", + "name": "Double Ramp 4m", + "className": "Recipe_RampDouble_Polished_8x2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampDouble_Polished_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampDouble_Polished_8x4_C": { + "slug": "recipe-rampdouble-polished-8x4-c", + "name": "Double Ramp 8m", + "className": "Recipe_RampDouble_Polished_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampDouble_Polished_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_DownQuarterPipe_Asphalt_8x4_C": { + "slug": "recipe-downquarterpipe-asphalt-8x4-c", + "name": "Inverted Quarter Pipe", + "className": "Recipe_DownQuarterPipe_Asphalt_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_DownQuarterPipe_Asphalt_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_DownQuarterPipe_AsphaltInCorner_8x4_C": { + "slug": "recipe-downquarterpipe-asphaltincorner-8x4-c", + "name": "Inverted Inner Corner Quarter Pipe", + "className": "Recipe_DownQuarterPipe_AsphaltInCorner_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_DownQuarterPipeInCorner_Asphalt_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_DownQuarterPipe_AsphaltOutCorner_8x4_C": { + "slug": "recipe-downquarterpipe-asphaltoutcorner-8x4-c", + "name": "Inverted Outer Corner Quarter Pipe", + "className": "Recipe_DownQuarterPipe_AsphaltOutCorner_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_DownQuarterPipeOutCorner_Asphalt_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Foundation_Asphalt_8x1_C": { + "slug": "recipe-foundation-asphalt-8x1-c", + "name": "Foundation 1m", + "className": "Recipe_Foundation_Asphalt_8x1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Foundation_Asphalt_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Foundation_Asphalt_8x2_C": { + "slug": "recipe-foundation-asphalt-8x2-c", + "name": "Foundation 2m", + "className": "Recipe_Foundation_Asphalt_8x2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Foundation_Asphalt_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Foundation_Asphalt_8x4_C": { + "slug": "recipe-foundation-asphalt-8x4-c", + "name": "Foundation 4m", + "className": "Recipe_Foundation_Asphalt_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Foundation_Asphalt_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_Asphalt_8x1_C": { + "slug": "recipe-invertedramp-asphalt-8x1-c", + "name": "Inv. Ramp 1m", + "className": "Recipe_InvertedRamp_Asphalt_8x1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_Asphalt_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_Asphalt_8x2_C": { + "slug": "recipe-invertedramp-asphalt-8x2-c", + "name": "Inv. Ramp 2m", + "className": "Recipe_InvertedRamp_Asphalt_8x2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_Asphalt_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_Asphalt_8x4_C": { + "slug": "recipe-invertedramp-asphalt-8x4-c", + "name": "Inv. Ramp 4m", + "className": "Recipe_InvertedRamp_Asphalt_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_Asphalt_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_DCorner_Asphalt_8x1_C": { + "slug": "recipe-invertedramp-dcorner-asphalt-8x1-c", + "name": "Inv. Down Corner 1m", + "className": "Recipe_InvertedRamp_DCorner_Asphalt_8x1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_DCorner_Asphalt_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_DCorner_Asphalt_8x2_C": { + "slug": "recipe-invertedramp-dcorner-asphalt-8x2-c", + "name": "Inv. Down Corner 2m", + "className": "Recipe_InvertedRamp_DCorner_Asphalt_8x2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_DCorner_Asphalt_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_DCorner_Asphalt_8x4_C": { + "slug": "recipe-invertedramp-dcorner-asphalt-8x4-c", + "name": "Inv. Down Corner 4m", + "className": "Recipe_InvertedRamp_DCorner_Asphalt_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_DCorner_Asphalt_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_UCorner_Asphalt_8x1_C": { + "slug": "recipe-invertedramp-ucorner-asphalt-8x1-c", + "name": "Inv. Up Corner 1m", + "className": "Recipe_InvertedRamp_UCorner_Asphalt_8x1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_UCorner_Asphalt_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_UCorner_Asphalt_8x2_C": { + "slug": "recipe-invertedramp-ucorner-asphalt-8x2-c", + "name": "Inv. Up Corner 2m", + "className": "Recipe_InvertedRamp_UCorner_Asphalt_8x2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_UCorner_Asphalt_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_UCorner_Asphalt_8x4_C": { + "slug": "recipe-invertedramp-ucorner-asphalt-8x4-c", + "name": "Inv. Up Corner 4m", + "className": "Recipe_InvertedRamp_UCorner_Asphalt_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_UCorner_Asphalt_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipe_Asphalt_8x4_C": { + "slug": "recipe-quarterpipe-asphalt-8x4-c", + "name": "Quarter Pipe", + "className": "Recipe_QuarterPipe_Asphalt_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipe_Asphalt_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeInCorner_Asphalt_8x4_C": { + "slug": "recipe-quarterpipeincorner-asphalt-8x4-c", + "name": "Inner Corner Quarter Pipe", + "className": "Recipe_QuarterPipeInCorner_Asphalt_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeInCorner_Asphalt_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddle_Asphalt_8x1_C": { + "slug": "recipe-quarterpipemiddle-asphalt-8x1-c", + "name": "Half 1m Foundation", + "className": "Recipe_QuarterPipeMiddle_Asphalt_8x1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddle_Asphalt_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddle_Asphalt_8x2_C": { + "slug": "recipe-quarterpipemiddle-asphalt-8x2-c", + "name": "Half 2m Foundation", + "className": "Recipe_QuarterPipeMiddle_Asphalt_8x2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddle_Asphalt_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddle_Asphalt_8x4_C": { + "slug": "recipe-quarterpipemiddle-asphalt-8x4-c", + "name": "Half 4m Foundation", + "className": "Recipe_QuarterPipeMiddle_Asphalt_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddle_Asphalt_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleInCorner_Asphalt_8x1_C": { + "slug": "recipe-quarterpipemiddleincorner-asphalt-8x1-c", + "name": "Inner Corner Extension 1m", + "className": "Recipe_QuarterPipeMiddleInCorner_Asphalt_8x1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleInCorner_Asphalt_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleInCorner_Asphalt_8x2_C": { + "slug": "recipe-quarterpipemiddleincorner-asphalt-8x2-c", + "name": "Inner Corner Extension 2m", + "className": "Recipe_QuarterPipeMiddleInCorner_Asphalt_8x2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleInCorner_Asphalt_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleInCorner_Asphalt_8x4_C": { + "slug": "recipe-quarterpipemiddleincorner-asphalt-8x4-c", + "name": "Inner Corner Extension 4m", + "className": "Recipe_QuarterPipeMiddleInCorner_Asphalt_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleInCorner_Asphalt_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleOutCorner_Asphalt_4x1_C": { + "slug": "recipe-quarterpipemiddleoutcorner-asphalt-4x1-c", + "name": "Outer Corner Extension 1m", + "className": "Recipe_QuarterPipeMiddleOutCorner_Asphalt_4x1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleOutCorner_Asphalt_4x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleOutCorner_Asphalt_4x2_C": { + "slug": "recipe-quarterpipemiddleoutcorner-asphalt-4x2-c", + "name": "Outer Corner Extension 2m", + "className": "Recipe_QuarterPipeMiddleOutCorner_Asphalt_4x2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleOutCorner_Asphalt_4x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleOutCorner_Asphalt_4x4_C": { + "slug": "recipe-quarterpipemiddleoutcorner-asphalt-4x4-c", + "name": "Outer Corner Extension 4m", + "className": "Recipe_QuarterPipeMiddleOutCorner_Asphalt_4x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleOutCorner_Asphalt_4x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeOutCorner_Asphalt_8x4_C": { + "slug": "recipe-quarterpipeoutcorner-asphalt-8x4-c", + "name": "Outer Corner Quarter Pipe", + "className": "Recipe_QuarterPipeOutCorner_Asphalt_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeOutCorner_Asphalt_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Asphalt_8x1_C": { + "slug": "recipe-ramp-asphalt-8x1-c", + "name": "Ramp 1m", + "className": "Recipe_Ramp_Asphalt_8x1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Asphalt_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Asphalt_8x2_C": { + "slug": "recipe-ramp-asphalt-8x2-c", + "name": "Ramp 2m", + "className": "Recipe_Ramp_Asphalt_8x2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Asphalt_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Asphalt_8x4_C": { + "slug": "recipe-ramp-asphalt-8x4-c", + "name": "Ramp 4m", + "className": "Recipe_Ramp_Asphalt_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Asphalt_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_DownCorner_Asphalt_8x1_C": { + "slug": "recipe-ramp-downcorner-asphalt-8x1-c", + "name": "Down Corner Ramp 1m", + "className": "Recipe_Ramp_DownCorner_Asphalt_8x1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_DownCorner_Asphalt_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_DownCorner_Asphalt_8x2_C": { + "slug": "recipe-ramp-downcorner-asphalt-8x2-c", + "name": "Down Corner Ramp 2m", + "className": "Recipe_Ramp_DownCorner_Asphalt_8x2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_DownCorner_Asphalt_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_DownCorner_Asphalt_8x4_C": { + "slug": "recipe-ramp-downcorner-asphalt-8x4-c", + "name": "Down Corner Ramp 4m", + "className": "Recipe_Ramp_DownCorner_Asphalt_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_DownCorner_Asphalt_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_UpCorner_Asphalt_8x1_C": { + "slug": "recipe-ramp-upcorner-asphalt-8x1-c", + "name": "Up Corner Ramp 1m", + "className": "Recipe_Ramp_UpCorner_Asphalt_8x1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_UpCorner_Asphalt_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_UpCorner_Asphalt_8x2_C": { + "slug": "recipe-ramp-upcorner-asphalt-8x2-c", + "name": "Up Corner Ramp 2m", + "className": "Recipe_Ramp_UpCorner_Asphalt_8x2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_UpCorner_Asphalt_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_UpCorner_Asphalt_8x4_C": { + "slug": "recipe-ramp-upcorner-asphalt-8x4-c", + "name": "Up Corner Ramp 4m", + "className": "Recipe_Ramp_UpCorner_Asphalt_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_UpCorner_Asphalt_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampDouble_Asphalt_8x1_C": { + "slug": "recipe-rampdouble-asphalt-8x1-c", + "name": "Double Ramp 2m", + "className": "Recipe_RampDouble_Asphalt_8x1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampDouble_Asphalt_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampDouble_Asphalt_8x2_C": { + "slug": "recipe-rampdouble-asphalt-8x2-c", + "name": "Double Ramp 4m", + "className": "Recipe_RampDouble_Asphalt_8x2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampDouble_Asphalt_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampDouble_Asphalt_8x4_C": { + "slug": "recipe-rampdouble-asphalt-8x4-c", + "name": "Double Ramp 8m", + "className": "Recipe_RampDouble_Asphalt_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampDouble_Asphalt_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Protein_Stinger_C": { + "slug": "recipe-protein-stinger-c", + "name": "Stinger Protein", + "className": "Recipe_Protein_Stinger_C", + "alternate": false, + "time": 3, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.333333, + "ingredients": [ + { + "item": "Desc_StingerParts_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_AlienProtein_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Protein_Spitter_C": { + "slug": "recipe-protein-spitter-c", + "name": "Spitter Protein", + "className": "Recipe_Protein_Spitter_C", + "alternate": false, + "time": 3, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.333333, + "ingredients": [ + { + "item": "Desc_SpitterParts_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_AlienProtein_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Protein_Hog_C": { + "slug": "recipe-protein-hog-c", + "name": "Hog Protein", + "className": "Recipe_Protein_Hog_C", + "alternate": false, + "time": 3, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.333333, + "ingredients": [ + { + "item": "Desc_HogParts_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_AlienProtein_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Protein_Crab_C": { + "slug": "recipe-protein-crab-c", + "name": "Hatcher Protein", + "className": "Recipe_Protein_Crab_C", + "alternate": false, + "time": 3, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.333333, + "ingredients": [ + { + "item": "Desc_HatcherParts_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_AlienProtein_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_AlienDNACapsule_C": { + "slug": "recipe-aliendnacapsule-c", + "name": "Alien DNA Capsule", + "className": "Recipe_AlienDNACapsule_C", + "alternate": false, + "time": 6, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.333333, + "ingredients": [ + { + "item": "Desc_AlienProtein_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_AlienDNACapsule_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Biomass_AlienProtein_C": { + "slug": "recipe-biomass-alienprotein-c", + "name": "Biomass (Alien Protein)", + "className": "Recipe_Biomass_AlienProtein_C", + "alternate": false, + "time": 4, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_AlienProtein_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_GenericBiomass_C", + "amount": 100.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_MedicinalInhalerAlienOrgans_C": { + "slug": "recipe-medicinalinhaleralienorgans-c", + "name": "Protein Inhaler", + "className": "Recipe_MedicinalInhalerAlienOrgans_C", + "alternate": false, + "time": 20, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_AlienProtein_C", + "amount": 1.0 + }, + { + "item": "Desc_Nut_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_Medkit_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SpikedRebar_C": { + "slug": "recipe-spikedrebar-c", + "name": "Iron Rebar", + "className": "Recipe_SpikedRebar_C", + "alternate": false, + "time": 4, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_SpikedRebar_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RebarGun_C": { + "slug": "recipe-rebargun-c", + "name": "Rebar Gun", + "className": "Recipe_RebarGun_C", + "alternate": false, + "time": 60, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 6.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 16.0 + }, + { + "item": "Desc_IronScrew_C", + "amount": 100.0 + } + ], + "products": [ + { + "item": "Desc_RebarGunProjectile_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_GeneratorGeoThermal_C": { + "slug": "recipe-generatorgeothermal-c", + "name": "Geothermal Generator", + "className": "Recipe_GeneratorGeoThermal_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ComputerSuper_C", + "amount": 8.0 + }, + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 16.0 + }, + { + "item": "Desc_HighSpeedConnector_C", + "amount": 16.0 + }, + { + "item": "Desc_CopperSheet_C", + "amount": 40.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 80.0 + } + ], + "products": [ + { + "item": "Desc_GeneratorGeoThermal_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConveyorAttachmentSplitterProgrammable_C": { + "slug": "recipe-conveyorattachmentsplitterprogrammable-c", + "name": "Programmable Splitter", + "className": "Recipe_ConveyorAttachmentSplitterProgrammable_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 1.0 + }, + { + "item": "Desc_Motor_C", + "amount": 1.0 + }, + { + "item": "Desc_ComputerSuper_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_ConveyorAttachmentSplitterProgrammable_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_CartridgeSmart_C": { + "slug": "recipe-cartridgesmart-c", + "name": "Homing Rifle Ammo", + "className": "Recipe_CartridgeSmart_C", + "alternate": false, + "time": 24, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": true, + "manualTimeMultiplier": 0.666667, + "ingredients": [ + { + "item": "Desc_CartridgeStandard_C", + "amount": 20.0 + }, + { + "item": "Desc_HighSpeedConnector_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_CartridgeSmartProjectile_C", + "amount": 10.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PowerPoleMk3_C": { + "slug": "recipe-powerpolemk3-c", + "name": "Power Pole Mk.3", + "className": "Recipe_PowerPoleMk3_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HighSpeedConnector_C", + "amount": 2.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 2.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_PowerPoleMk3_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PriorityPowerSwitch_C": { + "slug": "recipe-prioritypowerswitch-c", + "name": "Priority Power Switch", + "className": "Recipe_PriorityPowerSwitch_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CircuitBoard_C", + "amount": 4.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 6.0 + }, + { + "item": "Desc_HighSpeedConnector_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_PriorityPowerSwitch_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_BladeRunners_C": { + "slug": "recipe-bladerunners-c", + "name": "Blade Runners", + "className": "Recipe_BladeRunners_C", + "alternate": false, + "time": 60, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Silica_C", + "amount": 20.0 + }, + { + "item": "Desc_ModularFrame_C", + "amount": 3.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "BP_EquipmentDescriptorJumpingStilts_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PowerPoleMk2_C": { + "slug": "recipe-powerpolemk2-c", + "name": "Power Pole Mk.2", + "className": "Recipe_PowerPoleMk2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 6.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 2.0 + }, + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_PowerPoleMk2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PowerSwitch_C": { + "slug": "recipe-powerswitch-c", + "name": "Power Switch", + "className": "Recipe_PowerSwitch_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 20.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 4.0 + }, + { + "item": "Desc_CircuitBoardHighSpeed_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_PowerSwitch_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConveyorAttachmentSplitterSmart_C": { + "slug": "recipe-conveyorattachmentsplittersmart-c", + "name": "Smart Splitter", + "className": "Recipe_ConveyorAttachmentSplitterSmart_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 2.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 2.0 + }, + { + "item": "Desc_CircuitBoardHighSpeed_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_ConveyorAttachmentSplitterSmart_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Rebar_Stunshot_C": { + "slug": "recipe-rebar-stunshot-c", + "name": "Stun Rebar", + "className": "Recipe_Rebar_Stunshot_C", + "alternate": false, + "time": 6, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": true, + "manualTimeMultiplier": 1.333333, + "ingredients": [ + { + "item": "Desc_SpikedRebar_C", + "amount": 1.0 + }, + { + "item": "Desc_HighSpeedWire_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Rebar_Stunshot_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ZipLine_C": { + "slug": "recipe-zipline-c", + "name": "Zipline", + "className": "Recipe_ZipLine_C", + "alternate": false, + "time": 40, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "BP_EquipmentDescriptorShockShank_C", + "amount": 1.0 + }, + { + "item": "Desc_HighSpeedWire_C", + "amount": 30.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 3.0 + }, + { + "item": "Desc_Cable_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "BP_EqDescZipLine_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Quickwire_C": { + "slug": "recipe-quickwire-c", + "name": "Quickwire", + "className": "Recipe_Quickwire_C", + "alternate": false, + "time": 5, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 2.0, + "ingredients": [ + { + "item": "Desc_GoldIngot_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 5.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_NobeliskGas_C": { + "slug": "recipe-nobeliskgas-c", + "name": "Gas Nobelisk", + "className": "Recipe_NobeliskGas_C", + "alternate": false, + "time": 12, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": true, + "manualTimeMultiplier": 0.666667, + "ingredients": [ + { + "item": "Desc_NobeliskExplosive_C", + "amount": 1.0 + }, + { + "item": "Desc_GenericBiomass_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_NobeliskGas_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_TherapeuticInhaler_C": { + "slug": "recipe-therapeuticinhaler-c", + "name": "Therapeutic Inhaler", + "className": "Recipe_TherapeuticInhaler_C", + "alternate": false, + "time": 20, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Mycelia_C", + "amount": 15.0 + }, + { + "item": "Desc_AlienProtein_C", + "amount": 1.0 + }, + { + "item": "Desc_Shroom_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_Medkit_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_MedicinalInhaler_C": { + "slug": "recipe-medicinalinhaler-c", + "name": "Vitamin Inhaler", + "className": "Recipe_MedicinalInhaler_C", + "alternate": false, + "time": 20, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Mycelia_C", + "amount": 10.0 + }, + { + "item": "Desc_Berry_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Medkit_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Parachute_C": { + "slug": "recipe-parachute-c", + "name": "Parachute", + "className": "Recipe_Parachute_C", + "alternate": false, + "time": 40, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Fabric_C", + "amount": 20.0 + }, + { + "item": "Desc_Cable_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_Parachute_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_PolyesterFabric_C": { + "slug": "recipe-alternate-polyesterfabric-c", + "name": "Alternate: Polyester Fabric", + "className": "Recipe_Alternate_PolyesterFabric_C", + "alternate": true, + "time": 2, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_PolymerResin_C", + "amount": 1.0 + }, + { + "item": "Desc_Water_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_Fabric_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Fabric_C": { + "slug": "recipe-fabric-c", + "name": "Fabric", + "className": "Recipe_Fabric_C", + "alternate": false, + "time": 4, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Mycelia_C", + "amount": 1.0 + }, + { + "item": "Desc_GenericBiomass_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Fabric_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Biomass_Mycelia_C": { + "slug": "recipe-biomass-mycelia-c", + "name": "Biomass (Mycelia)", + "className": "Recipe_Biomass_Mycelia_C", + "alternate": false, + "time": 4, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 0.5, + "ingredients": [ + { + "item": "Desc_Mycelia_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_GenericBiomass_C", + "amount": 10.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_NutritionalInhaler_C": { + "slug": "recipe-nutritionalinhaler-c", + "name": "Nutritional Inhaler", + "className": "Recipe_NutritionalInhaler_C", + "alternate": false, + "time": 20, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Shroom_C", + "amount": 1.0 + }, + { + "item": "Desc_Berry_C", + "amount": 2.0 + }, + { + "item": "Desc_Nut_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Medkit_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PowerCrystalShard_3_C": { + "slug": "recipe-powercrystalshard-3-c", + "name": "Power Shard (5)", + "className": "Recipe_PowerCrystalShard_3_C", + "alternate": false, + "time": 24, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Crystal_mk3_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_CrystalShard_C", + "amount": 5.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PowerCrystalShard_2_C": { + "slug": "recipe-powercrystalshard-2-c", + "name": "Power Shard (2)", + "className": "Recipe_PowerCrystalShard_2_C", + "alternate": false, + "time": 12, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Crystal_mk2_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_CrystalShard_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PowerCrystalShard_1_C": { + "slug": "recipe-powercrystalshard-1-c", + "name": "Power Shard (1)", + "className": "Recipe_PowerCrystalShard_1_C", + "alternate": false, + "time": 8, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Crystal_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_CrystalShard_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RadarTower_C": { + "slug": "recipe-radartower-c", + "name": "Radar Tower", + "className": "Recipe_RadarTower_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 30.0 + }, + { + "item": "Desc_CrystalOscillator_C", + "amount": 30.0 + }, + { + "item": "Desc_CircuitBoard_C", + "amount": 10.0 + }, + { + "item": "Desc_Cable_C", + "amount": 100.0 + } + ], + "products": [ + { + "item": "Desc_RadarTower_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_NobeliskShockwave_C": { + "slug": "recipe-nobeliskshockwave-c", + "name": "Pulse Nobelisk", + "className": "Recipe_NobeliskShockwave_C", + "alternate": false, + "time": 60, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": true, + "manualTimeMultiplier": 0.666666, + "ingredients": [ + { + "item": "Desc_NobeliskExplosive_C", + "amount": 5.0 + }, + { + "item": "Desc_CrystalOscillator_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_NobeliskShockwave_C", + "amount": 5.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Explorer_C": { + "slug": "recipe-explorer-c", + "name": "Explorer", + "className": "Recipe_Explorer_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CrystalOscillator_C", + "amount": 5.0 + }, + { + "item": "Desc_Motor_C", + "amount": 5.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 15.0 + }, + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Explorer_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Rebar_Spreadshot_C": { + "slug": "recipe-rebar-spreadshot-c", + "name": "Shatter Rebar", + "className": "Recipe_Rebar_Spreadshot_C", + "alternate": false, + "time": 12, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SpikedRebar_C", + "amount": 2.0 + }, + { + "item": "Desc_QuartzCrystal_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Rebar_Spreadshot_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_CartridgeChaos_Packaged_C": { + "slug": "recipe-cartridgechaos-packaged-c", + "name": "Turbo Rifle Ammo", + "className": "Recipe_CartridgeChaos_Packaged_C", + "alternate": false, + "time": 12, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": true, + "manualTimeMultiplier": 3.333333, + "ingredients": [ + { + "item": "Desc_CartridgeStandard_C", + "amount": 25.0 + }, + { + "item": "Desc_AluminumCasing_C", + "amount": 3.0 + }, + { + "item": "Desc_TurboFuel_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_CartridgeChaos_C", + "amount": 50.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_CartridgeChaos_C": { + "slug": "recipe-cartridgechaos-c", + "name": "Turbo Rifle Ammo", + "className": "Recipe_CartridgeChaos_C", + "alternate": false, + "time": 12, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 3.333333, + "ingredients": [ + { + "item": "Desc_CartridgeStandard_C", + "amount": 25.0 + }, + { + "item": "Desc_AluminumCasing_C", + "amount": 3.0 + }, + { + "item": "Desc_LiquidTurboFuel_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_CartridgeChaos_C", + "amount": 50.0 + } + ], + "producedIn": [ + "Desc_Blender_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_NobeliskNuke_C": { + "slug": "recipe-nobelisknuke-c", + "name": "Nuke Nobelisk", + "className": "Recipe_NobeliskNuke_C", + "alternate": false, + "time": 120, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": true, + "manualTimeMultiplier": 0.5, + "ingredients": [ + { + "item": "Desc_NobeliskExplosive_C", + "amount": 5.0 + }, + { + "item": "Desc_UraniumCell_C", + "amount": 20.0 + }, + { + "item": "Desc_GunpowderMK2_C", + "amount": 10.0 + }, + { + "item": "Desc_CircuitBoardHighSpeed_C", + "amount": 6.0 + } + ], + "products": [ + { + "item": "Desc_NobeliskNuke_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Cartridge_C": { + "slug": "recipe-cartridge-c", + "name": "Rifle Ammo", + "className": "Recipe_Cartridge_C", + "alternate": false, + "time": 12, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CopperSheet_C", + "amount": 3.0 + }, + { + "item": "Desc_GunpowderMK2_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_CartridgeStandard_C", + "amount": 15.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Rebar_Explosive_C": { + "slug": "recipe-rebar-explosive-c", + "name": "Explosive Rebar", + "className": "Recipe_Rebar_Explosive_C", + "alternate": false, + "time": 12, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": true, + "manualTimeMultiplier": 1.333333, + "ingredients": [ + { + "item": "Desc_SpikedRebar_C", + "amount": 2.0 + }, + { + "item": "Desc_GunpowderMK2_C", + "amount": 2.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Rebar_Explosive_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SpaceRifleMk1_C": { + "slug": "recipe-spaceriflemk1-c", + "name": "Rifle", + "className": "Recipe_SpaceRifleMk1_C", + "alternate": false, + "time": 120, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Motor_C", + "amount": 2.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 10.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 25.0 + }, + { + "item": "Desc_IronScrew_C", + "amount": 250.0 + } + ], + "products": [ + { + "item": "BP_EquipmentDescriptorRifle_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_NobeliskCluster_C": { + "slug": "recipe-nobeliskcluster-c", + "name": "Cluster Nobelisk", + "className": "Recipe_NobeliskCluster_C", + "alternate": false, + "time": 24, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": true, + "manualTimeMultiplier": 0.666667, + "ingredients": [ + { + "item": "Desc_NobeliskExplosive_C", + "amount": 3.0 + }, + { + "item": "Desc_GunpowderMK2_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_NobeliskCluster_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Nobelisk_C": { + "slug": "recipe-nobelisk-c", + "name": "Nobelisk", + "className": "Recipe_Nobelisk_C", + "alternate": false, + "time": 6, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": true, + "manualTimeMultiplier": 1.333333, + "ingredients": [ + { + "item": "Desc_Gunpowder_C", + "amount": 2.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_NobeliskExplosive_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_NobeliskDetonator_C": { + "slug": "recipe-nobeliskdetonator-c", + "name": "Nobelisk Detonator", + "className": "Recipe_NobeliskDetonator_C", + "alternate": false, + "time": 80, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "BP_EquipmentDescriptorObjectScanner_C", + "amount": 1.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 10.0 + }, + { + "item": "Desc_Cable_C", + "amount": 50.0 + } + ], + "products": [ + { + "item": "BP_EquipmentDescriptorNobeliskDetonator_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_GunpowderMK2_C": { + "slug": "recipe-gunpowdermk2-c", + "name": "Smokeless Powder", + "className": "Recipe_GunpowderMK2_C", + "alternate": false, + "time": 6, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 0.5, + "ingredients": [ + { + "item": "Desc_Gunpowder_C", + "amount": 2.0 + }, + { + "item": "Desc_HeavyOilResidue_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_GunpowderMK2_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Gunpowder_C": { + "slug": "recipe-gunpowder-c", + "name": "Black Powder", + "className": "Recipe_Gunpowder_C", + "alternate": false, + "time": 4, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": true, + "manualTimeMultiplier": 2.0, + "ingredients": [ + { + "item": "Desc_Coal_C", + "amount": 1.0 + }, + { + "item": "Desc_Sulfur_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_Gunpowder_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_WreathDecor_C": { + "slug": "recipe-wreathdecor-c", + "name": "FICSMAS Wreath", + "className": "Recipe_WreathDecor_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_XmasWreath_C", + "amount": 1.0 + }, + { + "item": "Desc_XmasBow_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_WreathDecor_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SnowDispenser_C": { + "slug": "recipe-snowdispenser-c", + "name": "FICSMAS Snow Dispenser", + "className": "Recipe_SnowDispenser_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CandyCane_C", + "amount": 10.0 + }, + { + "item": "Desc_Snow_C", + "amount": 100.0 + }, + { + "item": "Desc_XmasWreath_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_SnowDispenser_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_xmassLights_C": { + "slug": "recipe-xmasslights-c", + "name": "FICSMAS Power Light", + "className": "Recipe_xmassLights_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cable_C", + "amount": 1.0 + }, + { + "item": "Desc_XmasBallCluster_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_xmassLights_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_TreeGiftProducer_C": { + "slug": "recipe-treegiftproducer-c", + "name": "FICSMAS Gift Tree", + "className": "Recipe_TreeGiftProducer_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Gift_C", + "amount": 50.0 + }, + { + "item": "Desc_XmasBranch_C", + "amount": 100.0 + }, + { + "item": "Desc_XmasBall3_C", + "amount": 20.0 + }, + { + "item": "Desc_XmasBall4_C", + "amount": 20.0 + } + ], + "products": [ + { + "item": "Desc_TreeGiftProducer_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Snowman_C": { + "slug": "recipe-snowman-c", + "name": "Snowman", + "className": "Recipe_Snowman_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Snow_C", + "amount": 50.0 + }, + { + "item": "Desc_CandyCane_C", + "amount": 3.0 + }, + { + "item": "Desc_XmasBow_C", + "amount": 1.0 + }, + { + "item": "Desc_XmasBall1_C", + "amount": 3.0 + }, + { + "item": "Desc_XmasBall2_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Snowman_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_XMassTree_C": { + "slug": "recipe-xmasstree-c", + "name": "Giant FICSMAS Tree", + "className": "Recipe_XMassTree_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_XmasBranch_C", + "amount": 100.0 + }, + { + "item": "Desc_IronPlateReinforced_C", + "amount": 50.0 + }, + { + "item": "Desc_Cement_C", + "amount": 500.0 + } + ], + "products": [ + { + "item": "Desc_XMassTree_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_CandyCaneDecor_C": { + "slug": "recipe-candycanedecor-c", + "name": "Candy Cane", + "className": "Recipe_CandyCaneDecor_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CandyCane_C", + "amount": 10.0 + }, + { + "item": "Desc_XmasBow_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_CandyCaneDecor_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Flat_Frame_01_C": { + "slug": "recipe-flat-frame-01-c", + "name": "Frame Floor", + "className": "Recipe_Flat_Frame_01_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlate_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Flat_Frame_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Foundation_Frame_01_C": { + "slug": "recipe-foundation-frame-01-c", + "name": "Frame Foundation", + "className": "Recipe_Foundation_Frame_01_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlate_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Foundation_Frame_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_FoundationGlass_01_C": { + "slug": "recipe-foundationglass-01-c", + "name": "Glass Frame Foundation", + "className": "Recipe_FoundationGlass_01_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlate_C", + "amount": 2.0 + }, + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_FoundationGlass_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Frame_01_C": { + "slug": "recipe-ramp-frame-01-c", + "name": "Frame Ramp", + "className": "Recipe_Ramp_Frame_01_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlate_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Frame_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Frame_Inverted_01_C": { + "slug": "recipe-ramp-frame-inverted-01-c", + "name": "Inverted Frame Ramp", + "className": "Recipe_Ramp_Frame_Inverted_01_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlate_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Frame_Inverted_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Frame_01_C": { + "slug": "recipe-wall-frame-01-c", + "name": "Frame Wall", + "className": "Recipe_Wall_Frame_01_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlate_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Frame_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Railing_01_C": { + "slug": "recipe-railing-01-c", + "name": "Modern Railing", + "className": "Recipe_Railing_01_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Railing_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Pillar_Small_Metal_C": { + "slug": "recipe-pillar-small-metal-c", + "name": "Small Metal Pillar", + "className": "Recipe_Pillar_Small_Metal_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 1.0 + }, + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Pillar_Small_Metal_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PillarBase_Small_C": { + "slug": "recipe-pillarbase-small-c", + "name": "Small Pillar Support", + "className": "Recipe_PillarBase_Small_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_PillarBase_Small_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PillarBase_C": { + "slug": "recipe-pillarbase-c", + "name": "Big Pillar Support", + "className": "Recipe_PillarBase_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_PillarBase_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PillarMiddle_C": { + "slug": "recipe-pillarmiddle-c", + "name": "Big Metal Pillar", + "className": "Recipe_PillarMiddle_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 2.0 + }, + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_PillarMiddle_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ladder_C": { + "slug": "recipe-ladder-c", + "name": "Ladder", + "className": "Recipe_Ladder_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Ladder_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Stairs_Left_01_C": { + "slug": "recipe-stairs-left-01-c", + "name": "Stairs Left", + "className": "Recipe_Stairs_Left_01_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Stairs_Left_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Stairs_Right_01_C": { + "slug": "recipe-stairs-right-01-c", + "name": "Stairs Right", + "className": "Recipe_Stairs_Right_01_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Stairs_Right_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_FactoryCart_C": { + "slug": "recipe-factorycart-c", + "name": "Factory Cart™", + "className": "Recipe_FactoryCart_C", + "alternate": false, + "time": 20, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 2.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 4.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 4.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_GolfCart_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_CyberWagon_C": { + "slug": "recipe-cyberwagon-c", + "name": "Cyber Wagon", + "className": "Recipe_CyberWagon_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_CyberWagon_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Gate_Automated_8x4_C": { + "slug": "recipe-gate-automated-8x4-c", + "name": "Automated Gate", + "className": "Recipe_Gate_Automated_8x4_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 6.0 + } + ], + "products": [ + { + "item": "Desc_Gate_Automated_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_HyperTubeWallHole_C": { + "slug": "recipe-hypertubewallhole-c", + "name": "Hypertube Wall Hole", + "className": "Recipe_HyperTubeWallHole_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 2.0 + }, + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_HyperTubeWallHole_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PipeSupportWallHole_C": { + "slug": "recipe-pipesupportwallhole-c", + "name": "Pipeline Wall Hole", + "className": "Recipe_PipeSupportWallHole_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 2.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 1.0 + }, + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_PipelineSupportWallHole_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_FoundationPassthrough_Pipe_C": { + "slug": "recipe-foundationpassthrough-pipe-c", + "name": "Pipeline Floor Hole", + "className": "Recipe_FoundationPassthrough_Pipe_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 2.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 2.0 + }, + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_FoundationPassthrough_Pipe_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PowerPoleWallDouble_C": { + "slug": "recipe-powerpolewalldouble-c", + "name": "Double Wall Outlet Mk.1", + "className": "Recipe_PowerPoleWallDouble_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Wire_C", + "amount": 8.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_PowerPoleWallDouble_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PowerPoleWallDoubleMk2_C": { + "slug": "recipe-powerpolewalldoublemk2-c", + "name": "Double Wall Outlet Mk.2", + "className": "Recipe_PowerPoleWallDoubleMk2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 16.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_PowerPoleWallDoubleMk2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PowerPoleWallMk2_C": { + "slug": "recipe-powerpolewallmk2-c", + "name": "Wall Outlet Mk.2", + "className": "Recipe_PowerPoleWallMk2_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 8.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_PowerPoleWallMk2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PowerPoleWallDoubleMk3_C": { + "slug": "recipe-powerpolewalldoublemk3-c", + "name": "Double Wall Outlet Mk.3", + "className": "Recipe_PowerPoleWallDoubleMk3_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HighSpeedConnector_C", + "amount": 6.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 6.0 + } + ], + "products": [ + { + "item": "Desc_PowerPoleWallDoubleMk3_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PowerPoleWallMk3_C": { + "slug": "recipe-powerpolewallmk3-c", + "name": "Wall Outlet Mk.3", + "className": "Recipe_PowerPoleWallMk3_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HighSpeedConnector_C", + "amount": 3.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_PowerPoleWallMk3_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_StreetLight_C": { + "slug": "recipe-streetlight-c", + "name": "Street Light", + "className": "Recipe_StreetLight_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 10.0 + }, + { + "item": "Desc_Wire_C", + "amount": 4.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_StreetLight_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_CeilingLight_C": { + "slug": "recipe-ceilinglight-c", + "name": "Ceiling Light", + "className": "Recipe_CeilingLight_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 50.0 + }, + { + "item": "Desc_Wire_C", + "amount": 16.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 6.0 + } + ], + "products": [ + { + "item": "Desc_CeilingLight_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_FloodlightPole_C": { + "slug": "recipe-floodlightpole-c", + "name": "Flood Light Tower", + "className": "Recipe_FloodlightPole_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 25.0 + }, + { + "item": "Desc_CopperSheet_C", + "amount": 4.0 + }, + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 8.0 + } + ], + "products": [ + { + "item": "Desc_FloodlightPole_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_FloodlightWall_C": { + "slug": "recipe-floodlightwall-c", + "name": "Wall Mounted Flood Light", + "className": "Recipe_FloodlightWall_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 25.0 + }, + { + "item": "Desc_CopperSheet_C", + "amount": 4.0 + }, + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_FloodlightWall_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Orange_01_C": { + "slug": "recipe-roof-orange-01-c", + "name": "Roof Flat", + "className": "Recipe_Roof_Orange_01_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Orange_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Orange_02_C": { + "slug": "recipe-roof-orange-02-c", + "name": "Roof 1m", + "className": "Recipe_Roof_Orange_02_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Orange_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Orange_03_C": { + "slug": "recipe-roof-orange-03-c", + "name": "Roof 2m", + "className": "Recipe_Roof_Orange_03_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Orange_03_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Orange_04_C": { + "slug": "recipe-roof-orange-04-c", + "name": "Roof 4m", + "className": "Recipe_Roof_Orange_04_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Orange_04_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Orange_InCorner_01_C": { + "slug": "recipe-roof-orange-incorner-01-c", + "name": "Inner Corner Roof 1m", + "className": "Recipe_Roof_Orange_InCorner_01_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Orange_InCorner_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Orange_InCorner_02_C": { + "slug": "recipe-roof-orange-incorner-02-c", + "name": "Inner Corner Roof 2m", + "className": "Recipe_Roof_Orange_InCorner_02_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Orange_InCorner_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Orange_InCorner_03_C": { + "slug": "recipe-roof-orange-incorner-03-c", + "name": "Inner Corner Roof 4m", + "className": "Recipe_Roof_Orange_InCorner_03_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Orange_InCorner_03_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Orange_OutCorner_01_C": { + "slug": "recipe-roof-orange-outcorner-01-c", + "name": "Outer Corner Roof 1m", + "className": "Recipe_Roof_Orange_OutCorner_01_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Orange_OutCorner_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Orange_OutCorner_02_C": { + "slug": "recipe-roof-orange-outcorner-02-c", + "name": "Outer Corner Roof 2m", + "className": "Recipe_Roof_Orange_OutCorner_02_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Orange_OutCorner_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Orange_OutCorner_03_C": { + "slug": "recipe-roof-orange-outcorner-03-c", + "name": "Outer Corner Roof 4m", + "className": "Recipe_Roof_Orange_OutCorner_03_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Orange_OutCorner_03_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Window_01_C": { + "slug": "recipe-roof-window-01-c", + "name": "Roof Flat", + "className": "Recipe_Roof_Window_01_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Window_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Window_02_C": { + "slug": "recipe-roof-window-02-c", + "name": "Roof 1m", + "className": "Recipe_Roof_Window_02_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Window_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Window_03_C": { + "slug": "recipe-roof-window-03-c", + "name": "Roof 2m", + "className": "Recipe_Roof_Window_03_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Window_03_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Window_04_C": { + "slug": "recipe-roof-window-04-c", + "name": "Roof 4m", + "className": "Recipe_Roof_Window_04_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Window_04_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Window_InCorner_01_C": { + "slug": "recipe-roof-window-incorner-01-c", + "name": "Inner Corner Roof 1m", + "className": "Recipe_Roof_Window_InCorner_01_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Window_InCorner_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Window_InCorner_02_C": { + "slug": "recipe-roof-window-incorner-02-c", + "name": "Inner Corner Roof 2m", + "className": "Recipe_Roof_Window_InCorner_02_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Window_InCorner_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Window_InCorner_03_C": { + "slug": "recipe-roof-window-incorner-03-c", + "name": "Inner Corner Roof 4m", + "className": "Recipe_Roof_Window_InCorner_03_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Window_InCorner_03_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Window_OutCorner_01_C": { + "slug": "recipe-roof-window-outcorner-01-c", + "name": "Outer Corner Roof 1m", + "className": "Recipe_Roof_Window_OutCorner_01_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Window_OutCorner_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Window_OutCorner_02_C": { + "slug": "recipe-roof-window-outcorner-02-c", + "name": "Outer Corner Roof 2m", + "className": "Recipe_Roof_Window_OutCorner_02_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Window_OutCorner_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Window_OutCorner_03_C": { + "slug": "recipe-roof-window-outcorner-03-c", + "name": "Outer Corner Roof 4m", + "className": "Recipe_Roof_Window_OutCorner_03_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Window_OutCorner_03_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_A_01_C": { + "slug": "recipe-roof-a-01-c", + "name": "Roof Flat", + "className": "Recipe_Roof_A_01_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_A_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_A_02_C": { + "slug": "recipe-roof-a-02-c", + "name": "Roof 1m", + "className": "Recipe_Roof_A_02_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_A_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_A_03_C": { + "slug": "recipe-roof-a-03-c", + "name": "Roof 2m", + "className": "Recipe_Roof_A_03_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_A_03_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_A_04_C": { + "slug": "recipe-roof-a-04-c", + "name": "Roof 4m", + "className": "Recipe_Roof_A_04_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_A_04_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Metal_InCorner_01_C": { + "slug": "recipe-roof-metal-incorner-01-c", + "name": "Inner Corner Roof 1m", + "className": "Recipe_Roof_Metal_InCorner_01_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Metal_InCorner_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Metal_InCorner_02_C": { + "slug": "recipe-roof-metal-incorner-02-c", + "name": "Inner Corner Roof 2m", + "className": "Recipe_Roof_Metal_InCorner_02_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Metal_InCorner_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Metal_InCorner_03_C": { + "slug": "recipe-roof-metal-incorner-03-c", + "name": "Inner Corner Roof 4m", + "className": "Recipe_Roof_Metal_InCorner_03_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Metal_InCorner_03_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Metal_OutCorner_01_C": { + "slug": "recipe-roof-metal-outcorner-01-c", + "name": "Outer Corner Roof 1m", + "className": "Recipe_Roof_Metal_OutCorner_01_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Metal_OutCorner_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Metal_OutCorner_02_C": { + "slug": "recipe-roof-metal-outcorner-02-c", + "name": "Outer Corner Roof 2m", + "className": "Recipe_Roof_Metal_OutCorner_02_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Metal_OutCorner_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Metal_OutCorner_03_C": { + "slug": "recipe-roof-metal-outcorner-03-c", + "name": "Outer Corner Roof 4m", + "className": "Recipe_Roof_Metal_OutCorner_03_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Metal_OutCorner_03_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Tar_01_C": { + "slug": "recipe-roof-tar-01-c", + "name": "Roof Flat", + "className": "Recipe_Roof_Tar_01_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Tar_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Tar_02_C": { + "slug": "recipe-roof-tar-02-c", + "name": "Roof 1m", + "className": "Recipe_Roof_Tar_02_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Tar_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Tar_03_C": { + "slug": "recipe-roof-tar-03-c", + "name": "Roof 2m", + "className": "Recipe_Roof_Tar_03_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Tar_03_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Tar_04_C": { + "slug": "recipe-roof-tar-04-c", + "name": "Roof 4m", + "className": "Recipe_Roof_Tar_04_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Tar_04_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Tar_InCorner_01_C": { + "slug": "recipe-roof-tar-incorner-01-c", + "name": "Inner Corner Roof 1m", + "className": "Recipe_Roof_Tar_InCorner_01_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Tar_InCorner_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Tar_InCorner_02_C": { + "slug": "recipe-roof-tar-incorner-02-c", + "name": "Inner Corner Roof 2m", + "className": "Recipe_Roof_Tar_InCorner_02_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Tar_InCorner_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Tar_InCorner_03_C": { + "slug": "recipe-roof-tar-incorner-03-c", + "name": "Inner Corner Roof 4m", + "className": "Recipe_Roof_Tar_InCorner_03_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Tar_InCorner_03_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Tar_OutCorner_01_C": { + "slug": "recipe-roof-tar-outcorner-01-c", + "name": "Outer Corner Roof 1m", + "className": "Recipe_Roof_Tar_OutCorner_01_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Tar_OutCorner_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Tar_OutCorner_02_C": { + "slug": "recipe-roof-tar-outcorner-02-c", + "name": "Outer Corner Roof 2m", + "className": "Recipe_Roof_Tar_OutCorner_02_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Tar_OutCorner_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Tar_OutCorner_03_C": { + "slug": "recipe-roof-tar-outcorner-03-c", + "name": "Outer Corner Roof 4m", + "className": "Recipe_Roof_Tar_OutCorner_03_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Tar_OutCorner_03_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PipelineMK2_NoIndicator_C": { + "slug": "recipe-pipelinemk2-noindicator-c", + "name": "Pipeline Mk.2 (No Indicator)", + "className": "Recipe_PipelineMK2_NoIndicator_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CopperSheet_C", + "amount": 2.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_PipelineMK2_NoIndicator_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Pipeline_NoIndicator_C": { + "slug": "recipe-pipeline-noindicator-c", + "name": "Pipeline Mk.1 (No Indicator)", + "className": "Recipe_Pipeline_NoIndicator_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CopperSheet_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_Pipeline_NoIndicator_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_StorageMedkit_C": { + "slug": "recipe-storagemedkit-c", + "name": "Medical Storage Box", + "className": "Recipe_StorageMedkit_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 6.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 6.0 + } + ], + "products": [ + { + "item": "Desc_StorageMedkit_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_LightsControlPanel_C": { + "slug": "recipe-lightscontrolpanel-c", + "name": "Lights Control Panel", + "className": "Recipe_LightsControlPanel_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cable_C", + "amount": 10.0 + }, + { + "item": "Desc_IronPlateReinforced_C", + "amount": 5.0 + }, + { + "item": "Desc_CircuitBoardHighSpeed_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_LightsControlPanel_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_StandaloneWidgetSign_Small_C": { + "slug": "recipe-standalonewidgetsign-small-c", + "name": "Label Sign 2m", + "className": "Recipe_StandaloneWidgetSign_Small_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 2.0 + }, + { + "item": "Desc_QuartzCrystal_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_StandaloneWidgetSign_Small_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_StandaloneWidgetSign_SmallVeryWide_C": { + "slug": "recipe-standalonewidgetsign-smallverywide-c", + "name": "Label Sign 4m", + "className": "Recipe_StandaloneWidgetSign_SmallVeryWide_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 4.0 + }, + { + "item": "Desc_QuartzCrystal_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_StandaloneWidgetSign_SmallVeryWide_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_StandaloneWidgetSign_SmallWide_C": { + "slug": "recipe-standalonewidgetsign-smallwide-c", + "name": "Label Sign 3m", + "className": "Recipe_StandaloneWidgetSign_SmallWide_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 3.0 + }, + { + "item": "Desc_QuartzCrystal_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_StandaloneWidgetSign_SmallWide_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_StandaloneWidgetSign_Square_Tiny_C": { + "slug": "recipe-standalonewidgetsign-square-tiny-c", + "name": "Square Sign 0.5m", + "className": "Recipe_StandaloneWidgetSign_Square_Tiny_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 1.0 + }, + { + "item": "Desc_QuartzCrystal_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_StandaloneWidgetSign_Square_Tiny_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_FoundationPassthrough_Hypertube_C": { + "slug": "recipe-foundationpassthrough-hypertube-c", + "name": "Hypertube Floor Hole", + "className": "Recipe_FoundationPassthrough_Hypertube_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 2.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 2.0 + }, + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_FoundationPassthrough_Hypertube_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_StorageHazard_C": { + "slug": "recipe-storagehazard-c", + "name": "Hazard Storage Box", + "className": "Recipe_StorageHazard_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 6.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 6.0 + } + ], + "products": [ + { + "item": "Desc_StorageHazard_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_GoldenCart_C": { + "slug": "recipe-goldencart-c", + "name": "Golden Factory Cart™", + "className": "Recipe_GoldenCart_C", + "alternate": false, + "time": 20, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 2.0, + "ingredients": [ + { + "item": "Desc_GoldIngot_C", + "amount": 15.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 4.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_GolfCartGold_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Window_Thin_8x4_01_C": { + "slug": "recipe-wall-window-thin-8x4-01-c", + "name": "Full Frame Window", + "className": "Recipe_Wall_Window_Thin_8x4_01_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Silica_C", + "amount": 2.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Window_Thin_8x4_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Window_Thin_8x4_02_C": { + "slug": "recipe-wall-window-thin-8x4-02-c", + "name": "Hex Frame Window", + "className": "Recipe_Wall_Window_Thin_8x4_02_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Silica_C", + "amount": 2.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Window_Thin_8x4_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Pillar_Small_Frame_C": { + "slug": "recipe-pillar-small-frame-c", + "name": "Small Frame Pillar", + "className": "Recipe_Pillar_Small_Frame_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlate_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Pillar_Small_Frame_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PillarMiddle_Frame_C": { + "slug": "recipe-pillarmiddle-frame-c", + "name": "Big Frame Pillar", + "className": "Recipe_PillarMiddle_Frame_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlate_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_PillarMiddle_Frame_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Concrete_Barrier_01_C": { + "slug": "recipe-concrete-barrier-01-c", + "name": "Road Barrier", + "className": "Recipe_Concrete_Barrier_01_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Concrete_Barrier_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_StandaloneWidgetSign_Medium_C": { + "slug": "recipe-standalonewidgetsign-medium-c", + "name": "Display Sign", + "className": "Recipe_StandaloneWidgetSign_Medium_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 2.0 + }, + { + "item": "Desc_QuartzCrystal_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_StandaloneWidgetSign_Medium_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_StandaloneWidgetSign_Portrait_C": { + "slug": "recipe-standalonewidgetsign-portrait-c", + "name": "Portrait Sign", + "className": "Recipe_StandaloneWidgetSign_Portrait_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 4.0 + }, + { + "item": "Desc_QuartzCrystal_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_StandaloneWidgetSign_Portrait_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_StandaloneWidgetSign_Square_C": { + "slug": "recipe-standalonewidgetsign-square-c", + "name": "Square Sign 2m", + "className": "Recipe_StandaloneWidgetSign_Square_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 3.0 + }, + { + "item": "Desc_QuartzCrystal_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_StandaloneWidgetSign_Square_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_StandaloneWidgetSign_Square_Small_C": { + "slug": "recipe-standalonewidgetsign-square-small-c", + "name": "Square Sign 1m", + "className": "Recipe_StandaloneWidgetSign_Square_Small_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 1.0 + }, + { + "item": "Desc_QuartzCrystal_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_StandaloneWidgetSign_Square_Small_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_FoundationPassthrough_Lift_C": { + "slug": "recipe-foundationpassthrough-lift-c", + "name": "Conveyor Lift Floor Hole", + "className": "Recipe_FoundationPassthrough_Lift_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 2.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 2.0 + }, + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_FoundationPassthrough_Lift_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Pillar_Small_Concrete_C": { + "slug": "recipe-pillar-small-concrete-c", + "name": "Small Concrete Pillar", + "className": "Recipe_Pillar_Small_Concrete_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Pillar_Small_Concrete_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PillarMiddle_Concrete_C": { + "slug": "recipe-pillarmiddle-concrete-c", + "name": "Big Concrete Pillar", + "className": "Recipe_PillarMiddle_Concrete_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_PillarMiddle_Concrete_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Catwalk_Cross_C": { + "slug": "recipe-catwalk-cross-c", + "name": "Catwalk Crossing", + "className": "Recipe_Catwalk_Cross_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 2.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_CatwalkCross_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Catwalk_Ramp_C": { + "slug": "recipe-catwalk-ramp-c", + "name": "Catwalk Ramp", + "className": "Recipe_Catwalk_Ramp_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 2.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_CatwalkRamp_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Catwalk_Stairs_C": { + "slug": "recipe-catwalk-stairs-c", + "name": "Catwalk Stairs", + "className": "Recipe_Catwalk_Stairs_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 2.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_CatwalkStairs_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Catwalk_Straight_C": { + "slug": "recipe-catwalk-straight-c", + "name": "Catwalk Straight", + "className": "Recipe_Catwalk_Straight_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 2.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_CatwalkStraight_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Catwalk_T_C": { + "slug": "recipe-catwalk-t-c", + "name": "Catwalk T-Crossing", + "className": "Recipe_Catwalk_T_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 2.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_CatwalkT_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Catwalk_Turn_C": { + "slug": "recipe-catwalk-turn-c", + "name": "Catwalk Corner", + "className": "Recipe_Catwalk_Turn_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 2.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_CatwalkTurn_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_StandaloneWidgetSign_Huge_C": { + "slug": "recipe-standalonewidgetsign-huge-c", + "name": "Large Billboard", + "className": "Recipe_StandaloneWidgetSign_Huge_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 12.0 + }, + { + "item": "Desc_CopperSheet_C", + "amount": 20.0 + }, + { + "item": "Desc_CrystalOscillator_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_StandaloneWidgetSign_Huge_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_StandaloneWidgetSign_Large_C": { + "slug": "recipe-standalonewidgetsign-large-c", + "name": "Small Billboard", + "className": "Recipe_StandaloneWidgetSign_Large_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 3.0 + }, + { + "item": "Desc_CopperSheet_C", + "amount": 4.0 + }, + { + "item": "Desc_CrystalOscillator_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_StandaloneWidgetSign_Large_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Beam_C": { + "slug": "recipe-beam-c", + "name": "Metal Beam", + "className": "Recipe_Beam_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlate_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Beam_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Beam_Connector_C": { + "slug": "recipe-beam-connector-c", + "name": "Beam Connector", + "className": "Recipe_Beam_Connector_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Beam_Connector_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Beam_Connector_Double_C": { + "slug": "recipe-beam-connector-double-c", + "name": "Beam Connector Double", + "className": "Recipe_Beam_Connector_Double_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Beam_Connector_Double_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Beam_Painted_C": { + "slug": "recipe-beam-painted-c", + "name": "Painted Beam", + "className": "Recipe_Beam_Painted_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlate_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Beam_Painted_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Beam_Support_C": { + "slug": "recipe-beam-support-c", + "name": "Beam Support", + "className": "Recipe_Beam_Support_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Beam_Support_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_GeneratorBiomass_C": { + "slug": "recipe-generatorbiomass-c", + "name": "Biomass Burner", + "className": "Recipe_GeneratorBiomass_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 15.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 15.0 + }, + { + "item": "Desc_Wire_C", + "amount": 25.0 + } + ], + "products": [ + { + "item": "Desc_GeneratorBiomass_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SpaceElevator_C": { + "slug": "recipe-spaceelevator-c", + "name": "Space Elevator", + "className": "Recipe_SpaceElevator_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 500.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 250.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 400.0 + }, + { + "item": "Desc_Wire_C", + "amount": 1500.0 + } + ], + "products": [ + { + "item": "Desc_SpaceElevator_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Biomass_Leaves_C": { + "slug": "recipe-biomass-leaves-c", + "name": "Biomass (Leaves)", + "className": "Recipe_Biomass_Leaves_C", + "alternate": false, + "time": 5, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 0.4, + "ingredients": [ + { + "item": "Desc_Leaves_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_GenericBiomass_C", + "amount": 5.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Biomass_Wood_C": { + "slug": "recipe-biomass-wood-c", + "name": "Biomass (Wood)", + "className": "Recipe_Biomass_Wood_C", + "alternate": false, + "time": 4, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Wood_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_GenericBiomass_C", + "amount": 20.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_MinerMk1_C": { + "slug": "recipe-minermk1-c", + "name": "Miner Mk.1", + "className": "Recipe_MinerMk1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "BP_ItemDescriptorPortableMiner_C", + "amount": 1.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 10.0 + }, + { + "item": "Desc_Cement_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_MinerMk1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_StorageContainerMk1_C": { + "slug": "recipe-storagecontainermk1-c", + "name": "Storage Container", + "className": "Recipe_StorageContainerMk1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 10.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_StorageContainerMk1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_IronPlateReinforced_C": { + "slug": "recipe-ironplatereinforced-c", + "name": "Reinforced Iron Plate", + "className": "Recipe_IronPlateReinforced_C", + "alternate": false, + "time": 12, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 6.0 + }, + { + "item": "Desc_IronScrew_C", + "amount": 12.0 + } + ], + "products": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConstructorMk1_C": { + "slug": "recipe-constructormk1-c", + "name": "Constructor", + "className": "Recipe_ConstructorMk1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 2.0 + }, + { + "item": "Desc_Cable_C", + "amount": 8.0 + } + ], + "products": [ + { + "item": "Desc_ConstructorMk1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Concrete_C": { + "slug": "recipe-concrete-c", + "name": "Concrete", + "className": "Recipe_Concrete_C", + "alternate": false, + "time": 4, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Stone_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Cement_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Screw_C": { + "slug": "recipe-screw-c", + "name": "Screw", + "className": "Recipe_Screw_C", + "alternate": false, + "time": 6, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_IronScrew_C", + "amount": 4.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SmelterBasicMk1_C": { + "slug": "recipe-smelterbasicmk1-c", + "name": "Smelter", + "className": "Recipe_SmelterBasicMk1_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 5.0 + }, + { + "item": "Desc_Wire_C", + "amount": 8.0 + } + ], + "products": [ + { + "item": "Desc_SmelterMk1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Cable_C": { + "slug": "recipe-cable-c", + "name": "Cable", + "className": "Recipe_Cable_C", + "alternate": false, + "time": 2, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Wire_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Cable_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wire_C": { + "slug": "recipe-wire-c", + "name": "Wire", + "className": "Recipe_Wire_C", + "alternate": false, + "time": 4, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CopperIngot_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_Wire_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_IngotCopper_C": { + "slug": "recipe-ingotcopper-c", + "name": "Copper Ingot", + "className": "Recipe_IngotCopper_C", + "alternate": false, + "time": 2, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 3.0, + "ingredients": [ + { + "item": "Desc_OreCopper_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_CopperIngot_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_SmelterMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Workshop_C": { + "slug": "recipe-workshop-c", + "name": "Equipment Workshop", + "className": "Recipe_Workshop_C", + "alternate": false, + "time": 1, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 6.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_Workshop_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PortableMiner_C": { + "slug": "recipe-portableminer-c", + "name": "Portable Miner", + "className": "Recipe_PortableMiner_C", + "alternate": false, + "time": 40, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 2.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "BP_ItemDescriptorPortableMiner_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + } + }, + "schematics": { + "ResourceSink_CyberWagon_Unlock_C": { + "className": "ResourceSink_CyberWagon_Unlock_C", + "type": "EST_Custom", + "name": "Cyber Wagon available in the AWESOME Shop", + "slug": "cyber-wagon-available-in-the-awesome-shop", + "cost": [], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_GoldenCart_Unlock_C": { + "className": "ResourceSink_GoldenCart_Unlock_C", + "type": "EST_Custom", + "name": "Golden Cart available in the AWESOME Shop", + "slug": "golden-cart-available-in-the-awesome-shop", + "cost": [], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Checkmark_C": { + "className": "ResourceSink_Checkmark_C", + "type": "EST_ResourceSink", + "name": "FICSIT Checkmark™", + "slug": "ficsit-checkmarktm", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 8.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_CyberWagon_Unlock_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": false + }, + "Schematic_StartingRecipes_C": { + "className": "Schematic_StartingRecipes_C", + "type": "EST_Custom", + "name": "Starting Blueprints", + "slug": "starting-blueprints", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_IngotIron_C", + "Recipe_IronPlate_C", + "Recipe_IronRod_C", + "Recipe_TradingPost_C", + "Recipe_XenoZapper_C", + "Recipe_WorkBench_C" + ], + "scannerResources": [ + "Desc_OreIron_C" + ], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": false + }, + "CustomizerUnlock_ColourSwatches_C": { + "className": "CustomizerUnlock_ColourSwatches_C", + "type": "EST_Custom", + "name": "Customizer Color Swatches", + "slug": "customizer-color-swatches", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Swatch_Slot0_C", + "Recipe_Swatch_Slot1_C", + "Recipe_Swatch_Slot2_C", + "Recipe_Swatch_Slot3_C", + "Recipe_Swatch_Slot4_C", + "Recipe_Swatch_Slot5_C", + "Recipe_Swatch_Slot6_C", + "Recipe_Swatch_Slot7_C", + "Recipe_Swatch_Slot8_C", + "Recipe_Swatch_Slot9_C", + "Recipe_Swatch_Slot10_C", + "Recipe_Swatch_Slot11_C", + "Recipe_Swatch_Slot12_C", + "Recipe_Swatch_Slot13_C", + "Recipe_Swatch_Slot14_C", + "Recipe_Swatch_Slot15_C", + "Recipe_Swatch_Slot16_C", + "Recipe_Swatch_Custom_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": false + }, + "CustomizerUnlock_PipelineSwatch_C": { + "className": "CustomizerUnlock_PipelineSwatch_C", + "type": "EST_Custom", + "name": "Pipeline Swatch", + "slug": "pipeline-swatch", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Swatch_Slot17_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-1_C", + "Schematic_2-5_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": false + }, + "Schematic_2-5_C": { + "className": "Schematic_2-5_C", + "type": "EST_Milestone", + "name": "Resource Sink Bonus Program", + "slug": "resource-sink-bonus-program", + "cost": [ + { + "item": "Desc_Cement_C", + "amount": 400.0 + }, + { + "item": "Desc_Wire_C", + "amount": 500.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 200.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 200.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_ResourceSink_C", + "Recipe_ResourceSinkShop_C", + "Recipe_ColorCartridge_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 2, + "time": 300.0, + "mam": false, + "alternate": false + }, + "Schematic_3-1_C": { + "className": "Schematic_3-1_C", + "type": "EST_Milestone", + "name": "Coal Power", + "slug": "coal-power", + "cost": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 150.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 50.0 + }, + { + "item": "Desc_Cable_C", + "amount": 300.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_GeneratorCoal_C", + "Recipe_WaterPump_C", + "Recipe_Pipeline_C", + "Recipe_PipeSupport_C", + "Recipe_PipelineJunction_Cross_C", + "Recipe_PipelinePump_C", + "Recipe_PipeStorageTank_C" + ], + "scannerResources": [ + "Desc_Coal_C" + ], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 480.0, + "mam": false, + "alternate": false + }, + "Schematic_Alternate_WetConcrete_C": { + "className": "Schematic_Alternate_WetConcrete_C", + "type": "EST_Alternate", + "name": "Alternate: Wet Concrete", + "slug": "alternate-wet-concrete", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_WetConcrete_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Research_Sulfur_0_C": { + "className": "Research_Sulfur_0_C", + "type": "EST_MAM", + "name": "Sulfur", + "slug": "sulfur", + "cost": [ + { + "item": "Desc_Sulfur_C", + "amount": 10.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [ + "Desc_Sulfur_C" + ], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Schematic_Alternate_EnrichedCoal_C": { + "className": "Schematic_Alternate_EnrichedCoal_C", + "type": "EST_Custom", + "name": "Alternate: Compacted Coal", + "slug": "alternate-compacted-coal", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_EnrichedCoal_C", + "Recipe_Alternate_Coal_1_C", + "Recipe_Alternate_Coal_2_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-1_C", + "Research_Sulfur_0_C" + ], + "tier": 4, + "time": 0.0, + "mam": false, + "alternate": false + }, + "Schematic_5-1-1_C": { + "className": "Schematic_5-1-1_C", + "type": "EST_Custom", + "name": "Oil Processing 2", + "slug": "oil-processing-2", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_ResidualPlastic_C", + "Recipe_ResidualRubber_C", + "Recipe_ResidualFuel_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 5, + "time": 0.0, + "mam": false, + "alternate": false + }, + "Schematic_5-1_C": { + "className": "Schematic_5-1_C", + "type": "EST_Milestone", + "name": "Oil Processing", + "slug": "oil-processing", + "cost": [ + { + "item": "Desc_Motor_C", + "amount": 50.0 + }, + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 100.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 500.0 + }, + { + "item": "Desc_CopperSheet_C", + "amount": 500.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_OilPump_C", + "Recipe_OilRefinery_C", + "Recipe_Valve_C", + "Recipe_Plastic_C", + "Recipe_Rubber_C", + "Recipe_LiquidFuel_C", + "Recipe_PetroleumCoke_C", + "Recipe_CircuitBoard_C" + ], + "scannerResources": [ + "Desc_LiquidOil_C" + ], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 5, + "time": 720.0, + "mam": false, + "alternate": false + }, + "Schematic_Alternate_TurboHeavyFuel_C": { + "className": "Schematic_Alternate_TurboHeavyFuel_C", + "type": "EST_Alternate", + "name": "Alternate: Turbo Heavy Fuel", + "slug": "alternate-turbo-heavy-fuel", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_TurboHeavyFuel_C", + "Recipe_PackagedTurboFuel_C", + "Recipe_UnpackageTurboFuel_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C", + "Schematic_Alternate_EnrichedCoal_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_3-4_C": { + "className": "Schematic_3-4_C", + "type": "EST_Milestone", + "name": "Basic Steel Production", + "slug": "basic-steel-production", + "cost": [ + { + "item": "Desc_ModularFrame_C", + "amount": 50.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 150.0 + }, + { + "item": "Desc_Cement_C", + "amount": 300.0 + }, + { + "item": "Desc_Wire_C", + "amount": 1000.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_SmelterMk1_C", + "Recipe_IngotSteel_C", + "Recipe_SteelBeam_C", + "Recipe_SteelPipe_C", + "Recipe_SpaceElevatorPart_2_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 480.0, + "mam": false, + "alternate": false + }, + "Schematic_Alternate_SteelRod_C": { + "className": "Schematic_Alternate_SteelRod_C", + "type": "EST_Alternate", + "name": "Alternate: Steel Rod", + "slug": "alternate-steel-rod", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_SteelRod_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-4_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_SteelCoatedPlate_C": { + "className": "Schematic_Alternate_SteelCoatedPlate_C", + "type": "EST_Alternate", + "name": "Alternate: Steel Coated Plate", + "slug": "alternate-steel-coated-plate", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_SteelCoatedPlate_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_5-4-1_C": { + "className": "Schematic_5-4-1_C", + "type": "EST_Custom", + "name": "Alternative Fluid Transport 2", + "slug": "alternative-fluid-transport-2", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_UnpackageWater_C", + "Recipe_UnpackageOil_C", + "Recipe_UnpackageFuel_C", + "Recipe_UnpackageOilResidue_C", + "Recipe_UnpackageBioFuel_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 5, + "time": 0.0, + "mam": false, + "alternate": false + }, + "Schematic_5-4_C": { + "className": "Schematic_5-4_C", + "type": "EST_Milestone", + "name": "Alternative Fluid Transport", + "slug": "alternative-fluid-transport", + "cost": [ + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 25.0 + }, + { + "item": "Desc_Motor_C", + "amount": 100.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 200.0 + }, + { + "item": "Desc_Wire_C", + "amount": 3000.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Packager_C", + "Recipe_FluidCanister_C", + "Recipe_PackagedWater_C", + "Recipe_PackagedCrudeOil_C", + "Recipe_Fuel_C", + "Recipe_PackagedOilResidue_C", + "Recipe_PackagedBiofuel_C", + "Recipe_LiquidBiofuel_C", + "Recipe_IndustrialTank_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 5, + "time": 360.0, + "mam": false, + "alternate": false + }, + "Schematic_Alternate_SteelCanister_C": { + "className": "Schematic_Alternate_SteelCanister_C", + "type": "EST_Alternate", + "name": "Alternate: Steel Canister", + "slug": "alternate-steel-canister", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_SteelCanister_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-4_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_SteamedCopperSheet_C": { + "className": "Schematic_Alternate_SteamedCopperSheet_C", + "type": "EST_Alternate", + "name": "Alternate: Steamed Copper Sheet", + "slug": "alternate-steamed-copper-sheet", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_SteamedCopperSheet_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_RubberConcrete_C": { + "className": "Schematic_Alternate_RubberConcrete_C", + "type": "EST_Alternate", + "name": "Alternate: Rubber Concrete", + "slug": "alternate-rubber-concrete", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_RubberConcrete_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_RecycledRubber_C": { + "className": "Schematic_Alternate_RecycledRubber_C", + "type": "EST_Alternate", + "name": "Alternate: Recycled Rubber", + "slug": "alternate-recycled-rubber", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_RecycledRubber_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Research_Quartz_1_1_C": { + "className": "Research_Quartz_1_1_C", + "type": "EST_MAM", + "name": "Quartz Crystals", + "slug": "quartz-crystals", + "cost": [ + { + "item": "Desc_RawQuartz_C", + "amount": 20.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_QuartzCrystal_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Schematic_Alternate_PureQuartzCrystal_C": { + "className": "Schematic_Alternate_PureQuartzCrystal_C", + "type": "EST_Alternate", + "name": "Alternate: Pure Quartz Crystal", + "slug": "alternate-pure-quartz-crystal", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_PureQuartzCrystal_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Quartz_1_1_C", + "Schematic_3-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_PureIronIngot_C": { + "className": "Schematic_Alternate_PureIronIngot_C", + "type": "EST_Alternate", + "name": "Alternate: Pure Iron Ingot", + "slug": "alternate-pure-iron-ingot", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_PureIronIngot_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_PureCopperIngot_C": { + "className": "Schematic_Alternate_PureCopperIngot_C", + "type": "EST_Alternate", + "name": "Alternate: Pure Copper Ingot", + "slug": "alternate-pure-copper-ingot", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_PureCopperIngot_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Research_Caterium_0_C": { + "className": "Research_Caterium_0_C", + "type": "EST_MAM", + "name": "Caterium", + "slug": "caterium", + "cost": [ + { + "item": "Desc_OreGold_C", + "amount": 10.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [ + "Desc_OreGold_C" + ], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Schematic_Alternate_PureCateriumIngot_C": { + "className": "Schematic_Alternate_PureCateriumIngot_C", + "type": "EST_Alternate", + "name": "Alternate: Pure Caterium Ingot", + "slug": "alternate-pure-caterium-ingot", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_PureCateriumIngot_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Caterium_0_C", + "Schematic_3-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_7-1-1_C": { + "className": "Schematic_7-1-1_C", + "type": "EST_Custom", + "name": "Bauxite Refinement 2", + "slug": "bauxite-refinement-2", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_UnpackageAlumina_C", + "Recipe_QuartzCrystal_C", + "Recipe_CrystalOscillator_C", + "Recipe_Silica_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 7, + "time": 0.0, + "mam": false, + "alternate": false + }, + "Schematic_7-1_C": { + "className": "Schematic_7-1_C", + "type": "EST_Milestone", + "name": "Bauxite Refinement", + "slug": "bauxite-refinement", + "cost": [ + { + "item": "Desc_Computer_C", + "amount": 50.0 + }, + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 100.0 + }, + { + "item": "Desc_Motor_C", + "amount": 200.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 500.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_AluminaSolution_C", + "Recipe_PackagedAlumina_C", + "Recipe_AluminumScrap_C", + "Recipe_IngotAluminum_C", + "Recipe_AluminumSheet_C", + "Recipe_AluminumCasing_C", + "Recipe_RadioControlUnit_C", + "Recipe_Blender_C" + ], + "scannerResources": [ + "Desc_OreBauxite_C", + "Desc_RawQuartz_C" + ], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 7, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_Alternate_PureAluminumIngot_C": { + "className": "Schematic_Alternate_PureAluminumIngot_C", + "type": "EST_Alternate", + "name": "Alternate: Pure Aluminum Ingot", + "slug": "alternate-pure-aluminum-ingot", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_PureAluminumIngot_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_7-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_PolymerResin_C": { + "className": "Schematic_Alternate_PolymerResin_C", + "type": "EST_Alternate", + "name": "Alternate: Polymer Resin", + "slug": "alternate-polymer-resin", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_PolymerResin_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_PlasticSmartPlating_C": { + "className": "Schematic_Alternate_PlasticSmartPlating_C", + "type": "EST_Alternate", + "name": "Alternate: Plastic Smart Plating", + "slug": "alternate-plastic-smart-plating", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_PlasticSmartPlating_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_4-1_C": { + "className": "Schematic_4-1_C", + "type": "EST_Milestone", + "name": "Advanced Steel Production", + "slug": "advanced-steel-production", + "cost": [ + { + "item": "Desc_SteelPipe_C", + "amount": 200.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 200.0 + }, + { + "item": "Desc_Wire_C", + "amount": 1500.0 + }, + { + "item": "Desc_Cement_C", + "amount": 300.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_MinerMk2_C", + "Recipe_EncasedIndustrialBeam_C", + "Recipe_Stator_C", + "Recipe_Motor_C", + "Recipe_SpaceElevatorPart_3_C", + "Recipe_ModularFrameHeavy_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 4, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Research_Caterium_4_1_C": { + "className": "Research_Caterium_4_1_C", + "type": "EST_MAM", + "name": "AI Limiter", + "slug": "ai-limiter", + "cost": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 200.0 + }, + { + "item": "Desc_CopperSheet_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_AILimiter_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Schematic_Alternate_HighSpeedWiring_C": { + "className": "Schematic_Alternate_HighSpeedWiring_C", + "type": "EST_Alternate", + "name": "Alternate: Automated Speed Wiring", + "slug": "alternate-automated-speed-wiring", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_HighSpeedWiring_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_4-1_C", + "Research_Caterium_4_1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_HeavyOilResidue_C": { + "className": "Schematic_Alternate_HeavyOilResidue_C", + "type": "EST_Alternate", + "name": "Alternate: Heavy Oil Residue", + "slug": "alternate-heavy-oil-residue", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_HeavyOilResidue_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_5-2_C": { + "className": "Schematic_5-2_C", + "type": "EST_Milestone", + "name": "Industrial Manufacturing", + "slug": "industrial-manufacturing", + "cost": [ + { + "item": "Desc_Motor_C", + "amount": 100.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 200.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 200.0 + }, + { + "item": "Desc_Cable_C", + "amount": 1000.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_ManufacturerMk1_C", + "Recipe_Truck_C", + "Recipe_Computer_C", + "Recipe_SpaceElevatorPart_4_C", + "Recipe_SpaceElevatorPart_5_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 5, + "time": 720.0, + "mam": false, + "alternate": false + }, + "Schematic_Alternate_HeavyFlexibleFrame_C": { + "className": "Schematic_Alternate_HeavyFlexibleFrame_C", + "type": "EST_Alternate", + "name": "Alternate: Heavy Flexible Frame", + "slug": "alternate-heavy-flexible-frame", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_HeavyFlexibleFrame_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-2_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_FusedWire_C": { + "className": "Schematic_Alternate_FusedWire_C", + "type": "EST_Alternate", + "name": "Alternate: Fused Wire", + "slug": "alternate-fused-wire", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_FusedWire_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Caterium_0_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_FlexibleFramework_C": { + "className": "Schematic_Alternate_FlexibleFramework_C", + "type": "EST_Alternate", + "name": "Alternate: Flexible Framework", + "slug": "alternate-flexible-framework", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_FlexibleFramework_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_ElectrodeCircuitBoard_C": { + "className": "Schematic_Alternate_ElectrodeCircuitBoard_C", + "type": "EST_Alternate", + "name": "Alternate: Electrode Circuit Board", + "slug": "alternate-electrode-circuit-board", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_ElectrodeCircuitBoard_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_ElectroAluminumScrap_C": { + "className": "Schematic_Alternate_ElectroAluminumScrap_C", + "type": "EST_Alternate", + "name": "Alternate: Electrode - Aluminum Scrap", + "slug": "alternate-electrode-aluminum-scrap", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_ElectroAluminumScrap_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_7-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_DilutedPackagedFuel_C": { + "className": "Schematic_Alternate_DilutedPackagedFuel_C", + "type": "EST_Alternate", + "name": "Alternate: Diluted Packaged Fuel", + "slug": "alternate-diluted-packaged-fuel", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_DilutedPackagedFuel_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_2-1_C": { + "className": "Schematic_2-1_C", + "type": "EST_Milestone", + "name": "Part Assembly", + "slug": "part-assembly", + "cost": [ + { + "item": "Desc_Cable_C", + "amount": 200.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 200.0 + }, + { + "item": "Desc_IronScrew_C", + "amount": 500.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 300.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_AssemblerMk1_C", + "Recipe_CopperSheet_C", + "Recipe_Rotor_C", + "Recipe_ModularFrame_C", + "Recipe_SpaceElevatorPart_1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 2, + "time": 360.0, + "mam": false, + "alternate": false + }, + "Schematic_Alternate_CopperRotor_C": { + "className": "Schematic_Alternate_CopperRotor_C", + "type": "EST_Alternate", + "name": "Alternate: Copper Rotor", + "slug": "alternate-copper-rotor", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_CopperRotor_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_2-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_CopperAlloyIngot_C": { + "className": "Schematic_Alternate_CopperAlloyIngot_C", + "type": "EST_Alternate", + "name": "Alternate: Copper Alloy Ingot", + "slug": "alternate-copper-alloy-ingot", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_CopperAlloyIngot_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_CokeSteelIngot_C": { + "className": "Schematic_Alternate_CokeSteelIngot_C", + "type": "EST_Alternate", + "name": "Alternate: Coke Steel Ingot", + "slug": "alternate-coke-steel-ingot", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_CokeSteelIngot_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_CoatedIronPlate_C": { + "className": "Schematic_Alternate_CoatedIronPlate_C", + "type": "EST_Alternate", + "name": "Alternate: Coated Iron Plate", + "slug": "alternate-coated-iron-plate", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_CoatedIronPlate_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_CoatedIronCanister_C": { + "className": "Schematic_Alternate_CoatedIronCanister_C", + "type": "EST_Alternate", + "name": "Alternate: Coated Iron Canister", + "slug": "alternate-coated-iron-canister", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_CoatedIronCanister_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-4_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_CoatedCable_C": { + "className": "Schematic_Alternate_CoatedCable_C", + "type": "EST_Alternate", + "name": "Alternate: Coated Cable", + "slug": "alternate-coated-cable", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_CoatedCable_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_BoltedFrame_C": { + "className": "Schematic_Alternate_BoltedFrame_C", + "type": "EST_Alternate", + "name": "Alternate: Bolted Frame", + "slug": "alternate-bolted-frame", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_BoltedFrame_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_2-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_AdheredIronPlate_C": { + "className": "Schematic_Alternate_AdheredIronPlate_C", + "type": "EST_Alternate", + "name": "Alternate: Adhered Iron Plate", + "slug": "alternate-adhered-iron-plate", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_AdheredIronPlate_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_8-5-1_C": { + "className": "Schematic_8-5-1_C", + "type": "EST_Custom", + "name": "Particle Enrichment 2", + "slug": "particle-enrichment-2", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_UnpackageNitricAcid_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 8, + "time": 0.0, + "mam": false, + "alternate": false + }, + "Schematic_8-5_C": { + "className": "Schematic_8-5_C", + "type": "EST_Milestone", + "name": "Particle Enrichment", + "slug": "particle-enrichment", + "cost": [ + { + "item": "Desc_ElectromagneticControlRod_C", + "amount": 400.0 + }, + { + "item": "Desc_CoolingSystem_C", + "amount": 400.0 + }, + { + "item": "Desc_ModularFrameFused_C", + "amount": 200.0 + }, + { + "item": "Desc_MotorLightweight_C", + "amount": 100.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_NitricAcid_C", + "Recipe_PackagedNitricAcid_C", + "Recipe_NonFissileUranium_C", + "Recipe_Plutonium_C", + "Recipe_PlutoniumCell_C", + "Recipe_PlutoniumFuelRod_C", + "Recipe_HadronCollider_C", + "Recipe_CopperDust_C", + "Recipe_PressureConversionCube_C", + "Recipe_SpaceElevatorPart_9_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 8, + "time": 1200.0, + "mam": false, + "alternate": false + }, + "Schematic_Alternate_TurboPressureMotor_C": { + "className": "Schematic_Alternate_TurboPressureMotor_C", + "type": "EST_Alternate", + "name": "Alternate: Turbo Pressure Motor", + "slug": "alternate-turbo-pressure-motor", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_TurboPressureMotor_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_8-5_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_TurboBlendFuel_C": { + "className": "Schematic_Alternate_TurboBlendFuel_C", + "type": "EST_Alternate", + "name": "Alternate: Turbo Blend Fuel", + "slug": "alternate-turbo-blend-fuel", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_TurboBlendFuel_C", + "Recipe_PackagedTurboFuel_C", + "Recipe_UnpackageTurboFuel_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_7-1_C", + "Research_Sulfur_0_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_7-4-1_C": { + "className": "Schematic_7-4-1_C", + "type": "EST_Custom", + "name": "Aeronautical Engineering 2", + "slug": "aeronautical-engineering-2", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_UnpackageSulfuricAcid_C", + "Recipe_AILimiter_C", + "Recipe_HighSpeedConnector_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 7, + "time": 0.0, + "mam": false, + "alternate": false + }, + "Schematic_7-4_C": { + "className": "Schematic_7-4_C", + "type": "EST_Milestone", + "name": "Aeronautical Engineering", + "slug": "aeronautical-engineering", + "cost": [ + { + "item": "Desc_ModularFrameLightweight_C", + "amount": 50.0 + }, + { + "item": "Desc_AluminumPlate_C", + "amount": 100.0 + }, + { + "item": "Desc_AluminumCasing_C", + "amount": 200.0 + }, + { + "item": "Desc_Motor_C", + "amount": 300.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_SulfuricAcid_C", + "Recipe_PackagedSulfuricAcid_C", + "Recipe_Battery_C", + "Recipe_ComputerSuper_C", + "Recipe_DroneTransport_C", + "Recipe_DroneStation_C", + "Recipe_SpaceElevatorPart_7_C" + ], + "scannerResources": [ + "" + ], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 7, + "time": 900.0, + "mam": false, + "alternate": false + }, + "Schematic_8-1_C": { + "className": "Schematic_8-1_C", + "type": "EST_Milestone", + "name": "Nuclear Power", + "slug": "nuclear-power", + "cost": [ + { + "item": "Desc_ComputerSuper_C", + "amount": 50.0 + }, + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 200.0 + }, + { + "item": "Desc_Cable_C", + "amount": 1000.0 + }, + { + "item": "Desc_Cement_C", + "amount": 2000.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_UraniumCell_C", + "Recipe_ElectromagneticControlRod_C", + "Recipe_NuclearFuelRod_C", + "Recipe_GeneratorNuclear_C", + "Recipe_SpaceElevatorPart_6_C" + ], + "scannerResources": [ + "" + ], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 8, + "time": 900.0, + "mam": false, + "alternate": false + }, + "Schematic_Alternate_SuperStateComputer_C": { + "className": "Schematic_Alternate_SuperStateComputer_C", + "type": "EST_Alternate", + "name": "Alternate: Super-State Computer", + "slug": "alternate-super-state-computer", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_SuperStateComputer_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_8-1_C", + "Schematic_7-4_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_SloppyAlumina_C": { + "className": "Schematic_Alternate_SloppyAlumina_C", + "type": "EST_Alternate", + "name": "Alternate: Sloppy Alumina", + "slug": "alternate-sloppy-alumina", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_SloppyAlumina_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_7-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_RadioControlSystem_C": { + "className": "Schematic_Alternate_RadioControlSystem_C", + "type": "EST_Alternate", + "name": "Alternate: Radio Control System", + "slug": "alternate-radio-control-system", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_RadioControlSystem_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_7-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_PlutoniumFuelUnit_C": { + "className": "Schematic_Alternate_PlutoniumFuelUnit_C", + "type": "EST_Alternate", + "name": "Alternate: Plutonium Fuel Unit", + "slug": "alternate-plutonium-fuel-unit", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_PlutoniumFuelUnit_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_8-5_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_8-2-1_C": { + "className": "Schematic_8-2-1_C", + "type": "EST_Custom", + "name": "Advanced Aluminum Production 2", + "slug": "advanced-aluminum-production-2", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_UnpackageNitrogen_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 8, + "time": 0.0, + "mam": false, + "alternate": false + }, + "Schematic_8-2_C": { + "className": "Schematic_8-2_C", + "type": "EST_Milestone", + "name": "Advanced Aluminum Production", + "slug": "advanced-aluminum-production", + "cost": [ + { + "item": "Desc_ModularFrameLightweight_C", + "amount": 50.0 + }, + { + "item": "Desc_AluminumCasing_C", + "amount": 100.0 + }, + { + "item": "Desc_AluminumPlate_C", + "amount": 200.0 + }, + { + "item": "Desc_Wire_C", + "amount": 3000.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_FrackingSmasher_C", + "Recipe_FrackingExtractor_C", + "Recipe_GasTank_C", + "Recipe_PackagedNitrogen_C", + "Recipe_HeatSink_C", + "Recipe_CoolingSystem_C", + "Recipe_FusedModularFrame_C" + ], + "scannerResources": [ + "" + ], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 8, + "time": 900.0, + "mam": false, + "alternate": false + }, + "Schematic_Alternate_OCSupercomputer_C": { + "className": "Schematic_Alternate_OCSupercomputer_C", + "type": "EST_Alternate", + "name": "Alternate: OC Supercomputer", + "slug": "alternate-oc-supercomputer", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_OCSupercomputer_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_7-4_C", + "Schematic_8-2_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_InstantScrap_C": { + "className": "Schematic_Alternate_InstantScrap_C", + "type": "EST_Alternate", + "name": "Alternate: Instant Scrap", + "slug": "alternate-instant-scrap", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_InstantScrap_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_7-1_C", + "Schematic_7-4_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_InstantPlutoniumCell_C": { + "className": "Schematic_Alternate_InstantPlutoniumCell_C", + "type": "EST_Alternate", + "name": "Alternate: Instant Plutonium Cell", + "slug": "alternate-instant-plutonium-cell", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_InstantPlutoniumCell_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_8-5_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_HeatFusedFrame_C": { + "className": "Schematic_Alternate_HeatFusedFrame_C", + "type": "EST_Alternate", + "name": "Alternate: Heat-Fused Frame", + "slug": "alternate-heat-fused-frame", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_HeatFusedFrame_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_8-5_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_FertileUranium_C": { + "className": "Schematic_Alternate_FertileUranium_C", + "type": "EST_Alternate", + "name": "Alternate: Fertile Uranium", + "slug": "alternate-fertile-uranium", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_FertileUranium_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_8-5_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_ElectricMotor_C": { + "className": "Schematic_Alternate_ElectricMotor_C", + "type": "EST_Alternate", + "name": "Alternate: Electric Motor", + "slug": "alternate-electric-motor", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_ElectricMotor_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_7-4_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_DilutedFuel_C": { + "className": "Schematic_Alternate_DilutedFuel_C", + "type": "EST_Alternate", + "name": "Alternate: Diluted Fuel", + "slug": "alternate-diluted-fuel", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_DilutedFuel_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_7-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_CoolingDevice_C": { + "className": "Schematic_Alternate_CoolingDevice_C", + "type": "EST_Alternate", + "name": "Alternate: Cooling Device", + "slug": "alternate-cooling-device", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_CoolingDevice_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_8-2_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_ClassicBattery_C": { + "className": "Schematic_Alternate_ClassicBattery_C", + "type": "EST_Alternate", + "name": "Alternate: Classic Battery", + "slug": "alternate-classic-battery", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_ClassicBattery_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_7-4_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_AutomatedMiner_C": { + "className": "Schematic_Alternate_AutomatedMiner_C", + "type": "EST_Alternate", + "name": "Alternate: Automated Miner", + "slug": "alternate-automated-miner", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_AutomatedMiner_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-2_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_AlcladCasing_C": { + "className": "Schematic_Alternate_AlcladCasing_C", + "type": "EST_Alternate", + "name": "Alternate: Alclad Casing", + "slug": "alternate-alclad-casing", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_AlcladCasing_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_7-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Wire2_C": { + "className": "Schematic_Alternate_Wire2_C", + "type": "EST_Alternate", + "name": "Alternate: Caterium Wire", + "slug": "alternate-caterium-wire", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Wire_2_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Caterium_0_C" + ], + "tier": 3, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Wire1_C": { + "className": "Schematic_Alternate_Wire1_C", + "type": "EST_Alternate", + "name": "Alternate: Iron Wire", + "slug": "alternate-iron-wire", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Wire_1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Research_Caterium_1_C": { + "className": "Research_Caterium_1_C", + "type": "EST_MAM", + "name": "Caterium Ingots", + "slug": "caterium-ingots", + "cost": [ + { + "item": "Desc_OreGold_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_IngotCaterium_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Quartz_0_C": { + "className": "Research_Quartz_0_C", + "type": "EST_MAM", + "name": "Quartz", + "slug": "quartz", + "cost": [ + { + "item": "Desc_RawQuartz_C", + "amount": 10.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [ + "Desc_RawQuartz_C" + ], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Schematic_Alternate_UraniumCell1_C": { + "className": "Schematic_Alternate_UraniumCell1_C", + "type": "EST_Alternate", + "name": "Alternate: Infused Uranium Cell", + "slug": "alternate-infused-uranium-cell", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_UraniumCell_1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_8-1_C", + "Research_Caterium_1_C", + "Research_Quartz_0_C", + "Research_Sulfur_0_C" + ], + "tier": 7, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_7-2_C": { + "className": "Schematic_7-2_C", + "type": "EST_Milestone", + "name": "Logistics Mk.5", + "slug": "logistics-mk-5", + "cost": [ + { + "item": "Desc_AluminumPlate_C", + "amount": 100.0 + }, + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 200.0 + }, + { + "item": "Desc_IronPlateReinforced_C", + "amount": 300.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_ConveyorBeltMk5_C", + "Recipe_ConveyorLiftMk5_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 7, + "time": 60.0, + "mam": false, + "alternate": false + }, + "Schematic_8-4_C": { + "className": "Schematic_8-4_C", + "type": "EST_Milestone", + "name": "Leading-edge Production", + "slug": "leading-edge-production", + "cost": [ + { + "item": "Desc_ModularFrameFused_C", + "amount": 50.0 + }, + { + "item": "Desc_ComputerSuper_C", + "amount": 100.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 1000.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_MotorTurbo_C", + "Recipe_MinerMk3_C", + "Recipe_SpaceElevatorPart_8_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 8, + "time": 300.0, + "mam": false, + "alternate": false + }, + "Research_Caterium_3_C": { + "className": "Research_Caterium_3_C", + "type": "EST_MAM", + "name": "Caterium Electronics", + "slug": "caterium-electronics", + "cost": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 100.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Schematic_Alternate_TurboMotor1_C": { + "className": "Schematic_Alternate_TurboMotor1_C", + "type": "EST_Alternate", + "name": "Alternate: Turbo Electric Motor", + "slug": "alternate-turbo-electric-motor", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_TurboMotor_1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_8-4_C", + "Schematic_8-1_C" + ], + "tier": 7, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_TurboFuel_C": { + "className": "Schematic_Alternate_TurboFuel_C", + "type": "EST_Custom", + "name": "Alternate: Turbofuel", + "slug": "alternate-turbofuel", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Turbofuel_C", + "Recipe_PackagedTurboFuel_C", + "Recipe_UnpackageTurboFuel_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C", + "Schematic_Alternate_EnrichedCoal_C" + ], + "tier": 6, + "time": 0.0, + "mam": false, + "alternate": false + }, + "Schematic_Alternate_Stator_C": { + "className": "Schematic_Alternate_Stator_C", + "type": "EST_Alternate", + "name": "Alternate: Quickwire Stator", + "slug": "alternate-quickwire-stator", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Stator_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_4-1_C", + "Research_Caterium_1_C" + ], + "tier": 4, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Research_Quartz_1_2_C": { + "className": "Research_Quartz_1_2_C", + "type": "EST_MAM", + "name": "Silica", + "slug": "silica", + "cost": [ + { + "item": "Desc_RawQuartz_C", + "amount": 20.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Silica_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Schematic_Alternate_Silica_C": { + "className": "Schematic_Alternate_Silica_C", + "type": "EST_Alternate", + "name": "Alternate: Cheap Silica", + "slug": "alternate-cheap-silica", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Silica_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Quartz_1_2_C" + ], + "tier": 4, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Screw2_C": { + "className": "Schematic_Alternate_Screw2_C", + "type": "EST_Alternate", + "name": "Alternate: Steel Screw", + "slug": "alternate-steel-screw", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Screw_2_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-4_C" + ], + "tier": 4, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Screw_C": { + "className": "Schematic_Alternate_Screw_C", + "type": "EST_Alternate", + "name": "Alternate: Cast Screw", + "slug": "alternate-cast-screw", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Screw_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Rotor_C": { + "className": "Schematic_Alternate_Rotor_C", + "type": "EST_Alternate", + "name": "Alternate: Steel Rotor", + "slug": "alternate-steel-rotor", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Rotor_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-4_C" + ], + "tier": 4, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_ReinforcedSteelPlate_C": { + "className": "Schematic_Alternate_ReinforcedSteelPlate_C", + "type": "EST_Alternate", + "name": "Alternate: Encased Industrial Pipe", + "slug": "alternate-encased-industrial-pipe", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_EncasedIndustrialBeam_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_4-1_C" + ], + "tier": 4, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_ReinforcedIronPlate2_C": { + "className": "Schematic_Alternate_ReinforcedIronPlate2_C", + "type": "EST_Alternate", + "name": "Alternate: Stitched Iron Plate", + "slug": "alternate-stitched-iron-plate", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_ReinforcedIronPlate_2_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 2, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_ReinforcedIronPlate1_C": { + "className": "Schematic_Alternate_ReinforcedIronPlate1_C", + "type": "EST_Alternate", + "name": "Alternate: Bolted Iron Plate", + "slug": "alternate-bolted-iron-plate", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_ReinforcedIronPlate_1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 2, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Research_Caterium_5_C": { + "className": "Research_Caterium_5_C", + "type": "EST_MAM", + "name": "High-Speed Connector", + "slug": "high-speed-connector", + "cost": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 500.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_HighSpeedConnector_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Schematic_Alternate_RadioControlUnit1_C": { + "className": "Schematic_Alternate_RadioControlUnit1_C", + "type": "EST_Alternate", + "name": "Alternate: Radio Connection Unit", + "slug": "alternate-radio-connection-unit", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_RadioControlUnit_1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_8-2_C", + "Research_Caterium_4_1_C" + ], + "tier": 7, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Quickwire_C": { + "className": "Schematic_Alternate_Quickwire_C", + "type": "EST_Alternate", + "name": "Alternate: Fused Quickwire", + "slug": "alternate-fused-quickwire", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Quickwire_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Caterium_1_C" + ], + "tier": 3, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Plastic1_C": { + "className": "Schematic_Alternate_Plastic1_C", + "type": "EST_Alternate", + "name": "Alternate: Recycled Plastic", + "slug": "alternate-recycled-plastic", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Plastic_1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 5, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_NuclearFuelRod1_C": { + "className": "Schematic_Alternate_NuclearFuelRod1_C", + "type": "EST_Alternate", + "name": "Alternate: Uranium Fuel Unit", + "slug": "alternate-uranium-fuel-unit", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_NuclearFuelRod_1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_8-1_C", + "Research_Quartz_1_1_C" + ], + "tier": 7, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Motor1_C": { + "className": "Schematic_Alternate_Motor1_C", + "type": "EST_Alternate", + "name": "Alternate: Rigour Motor", + "slug": "alternate-rigour-motor", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Motor_1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_4-1_C", + "Research_Quartz_1_1_C" + ], + "tier": 4, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_ModularFrame_C": { + "className": "Schematic_Alternate_ModularFrame_C", + "type": "EST_Alternate", + "name": "Alternate: Steeled Frame", + "slug": "alternate-steeled-frame", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_ModularFrame_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-4_C" + ], + "tier": 4, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_IngotSteel2_C": { + "className": "Schematic_Alternate_IngotSteel2_C", + "type": "EST_Alternate", + "name": "Alternate: Compacted Steel Ingot", + "slug": "alternate-compacted-steel-ingot", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_IngotSteel_2_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_Alternate_EnrichedCoal_C", + "Schematic_3-4_C" + ], + "tier": 4, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_IngotSteel1_C": { + "className": "Schematic_Alternate_IngotSteel1_C", + "type": "EST_Alternate", + "name": "Alternate: Solid Steel Ingot", + "slug": "alternate-solid-steel-ingot", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_IngotSteel_1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-4_C" + ], + "tier": 4, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_IngotIron_C": { + "className": "Schematic_Alternate_IngotIron_C", + "type": "EST_Alternate", + "name": "Alternate: Iron Alloy Ingot", + "slug": "alternate-iron-alloy-ingot", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_IngotIron_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_HighSpeedConnector_C": { + "className": "Schematic_Alternate_HighSpeedConnector_C", + "type": "EST_Alternate", + "name": "Alternate: Silicon High-Speed Connector", + "slug": "alternate-silicon-high-speed-connector", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_HighSpeedConnector_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Caterium_5_C", + "Schematic_5-1_C", + "Research_Quartz_0_C" + ], + "tier": 5, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_HeavyModularFrame_C": { + "className": "Schematic_Alternate_HeavyModularFrame_C", + "type": "EST_Alternate", + "name": "Alternate: Heavy Encased Frame", + "slug": "alternate-heavy-encased-frame", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_ModularFrameHeavy_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-2_C" + ], + "tier": 4, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_HeatSink1_C": { + "className": "Schematic_Alternate_HeatSink1_C", + "type": "EST_Alternate", + "name": "Alternate: Heat Exchanger", + "slug": "alternate-heat-exchanger", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_HeatSink_1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_8-2_C" + ], + "tier": 7, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Gunpowder1_C": { + "className": "Schematic_Alternate_Gunpowder1_C", + "type": "EST_Alternate", + "name": "Alternate: Fine Black Powder", + "slug": "alternate-fine-black-powder", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Gunpowder_1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_Alternate_EnrichedCoal_C" + ], + "tier": 4, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_ElectromagneticControlRod1_C": { + "className": "Schematic_Alternate_ElectromagneticControlRod1_C", + "type": "EST_Alternate", + "name": "Alternate: Electromagnetic Connection Rod", + "slug": "alternate-electromagnetic-connection-rod", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_ElectromagneticControlRod_1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_8-1_C", + "Research_Caterium_4_1_C" + ], + "tier": 7, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Research_Quartz_2_C": { + "className": "Research_Quartz_2_C", + "type": "EST_MAM", + "name": "Crystal Oscillator", + "slug": "crystal-oscillator", + "cost": [ + { + "item": "Desc_QuartzCrystal_C", + "amount": 100.0 + }, + { + "item": "Desc_IronPlateReinforced_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_CrystalOscillator_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Schematic_Alternate_CrystalOscillator_C": { + "className": "Schematic_Alternate_CrystalOscillator_C", + "type": "EST_Alternate", + "name": "Alternate: Insulated Crystal Oscillator", + "slug": "alternate-insulated-crystal-oscillator", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_CrystalOscillator_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Quartz_2_C", + "Research_Caterium_3_C", + "Schematic_5-1_C" + ], + "tier": 5, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Concrete_C": { + "className": "Schematic_Alternate_Concrete_C", + "type": "EST_Alternate", + "name": "Alternate: Fine Concrete", + "slug": "alternate-fine-concrete", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Concrete_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Quartz_0_C" + ], + "tier": 4, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Computer2_C": { + "className": "Schematic_Alternate_Computer2_C", + "type": "EST_Alternate", + "name": "Alternate: Crystal Computer", + "slug": "alternate-crystal-computer", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Computer_2_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-2_C", + "Research_Quartz_1_1_C" + ], + "tier": 5, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Computer1_C": { + "className": "Schematic_Alternate_Computer1_C", + "type": "EST_Alternate", + "name": "Alternate: Caterium Computer", + "slug": "alternate-caterium-computer", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Computer_1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-2_C", + "Research_Caterium_1_C" + ], + "tier": 5, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Coal2_C": { + "className": "Schematic_Alternate_Coal2_C", + "type": "EST_Alternate", + "name": "Alternate: Biocoal", + "slug": "alternate-biocoal", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Coal_2_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-1_C" + ], + "tier": 3, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Coal1_C": { + "className": "Schematic_Alternate_Coal1_C", + "type": "EST_Alternate", + "name": "Alternate: Charcoal", + "slug": "alternate-charcoal", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Coal_1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-1_C" + ], + "tier": 3, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_CircuitBoard2_C": { + "className": "Schematic_Alternate_CircuitBoard2_C", + "type": "EST_Alternate", + "name": "Alternate: Caterium Circuit Board", + "slug": "alternate-caterium-circuit-board", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_CircuitBoard_2_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C", + "Research_Caterium_1_C" + ], + "tier": 5, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_CircuitBoard1_C": { + "className": "Schematic_Alternate_CircuitBoard1_C", + "type": "EST_Alternate", + "name": "Alternate: Silicon Circuit Board", + "slug": "alternate-silicon-circuit-board", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_CircuitBoard_1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C", + "Research_Quartz_0_C" + ], + "tier": 5, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Cable2_C": { + "className": "Schematic_Alternate_Cable2_C", + "type": "EST_Alternate", + "name": "Alternate: Quickwire Cable", + "slug": "alternate-quickwire-cable", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Cable_2_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C", + "Research_Caterium_1_C" + ], + "tier": 5, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Cable1_C": { + "className": "Schematic_Alternate_Cable1_C", + "type": "EST_Alternate", + "name": "Alternate: Insulated Cable", + "slug": "alternate-insulated-cable", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Cable_1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 5, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Beacon1_C": { + "className": "Schematic_Alternate_Beacon1_C", + "type": "EST_Alternate", + "name": "Alternate: Crystal Beacon", + "slug": "alternate-crystal-beacon", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Beacon_1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-4_C", + "Research_Quartz_1_1_C" + ], + "tier": 4, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_InventorySlots2_C": { + "className": "Schematic_Alternate_InventorySlots2_C", + "type": "EST_Alternate", + "name": "Inflated Pocket Dimension", + "slug": "inflated-pocket-dimension", + "cost": [], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 6, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-2_C" + ], + "tier": 5, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_InventorySlots1_C": { + "className": "Schematic_Alternate_InventorySlots1_C", + "type": "EST_Alternate", + "name": "Inflated Pocket Dimension", + "slug": "inflated-pocket-dimension", + "cost": [], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 6, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 2, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_8-3_C": { + "className": "Schematic_8-3_C", + "type": "EST_Milestone", + "name": "Hover Pack", + "slug": "hover-pack", + "cost": [ + { + "item": "Desc_Motor_C", + "amount": 200.0 + }, + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 100.0 + }, + { + "item": "Desc_Computer_C", + "amount": 100.0 + }, + { + "item": "Desc_AluminumPlate_C", + "amount": 200.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Hoverpack_C" + ], + "scannerResources": [], + "inventorySlots": 3, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 7, + "time": 300.0, + "mam": false, + "alternate": false + }, + "Schematic_7-3_C": { + "className": "Schematic_7-3_C", + "type": "EST_Milestone", + "name": "Hazmat Suit", + "slug": "hazmat-suit", + "cost": [ + { + "item": "Desc_AluminumCasing_C", + "amount": 50.0 + }, + { + "item": "Desc_HighSpeedWire_C", + "amount": 500.0 + }, + { + "item": "Desc_Filter_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_HazmatSuit_C", + "Recipe_FilterHazmat_C" + ], + "scannerResources": [], + "inventorySlots": 3, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 7, + "time": 300.0, + "mam": false, + "alternate": false + }, + "Schematic_6-5_C": { + "className": "Schematic_6-5_C", + "type": "EST_Milestone", + "name": "Pipeline Engineering Mk.2", + "slug": "pipeline-engineering-mk-2", + "cost": [ + { + "item": "Desc_CopperSheet_C", + "amount": 1000.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 400.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 400.0 + }, + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PipelineMK2_C", + "Recipe_PipelinePumpMK2_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 6, + "time": 300.0, + "mam": false, + "alternate": false + }, + "Schematic_6-4_C": { + "className": "Schematic_6-4_C", + "type": "EST_Milestone", + "name": "Gas Mask", + "slug": "gas-mask", + "cost": [ + { + "item": "Desc_Rubber_C", + "amount": 200.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 100.0 + }, + { + "item": "Desc_Fabric_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Gasmask_C", + "Recipe_FilterGasMask_C" + ], + "scannerResources": [], + "inventorySlots": 3, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 5, + "time": 360.0, + "mam": false, + "alternate": false + }, + "Schematic_6-3_C": { + "className": "Schematic_6-3_C", + "type": "EST_Milestone", + "name": "Monorail Train Technology", + "slug": "monorail-train-technology", + "cost": [ + { + "item": "Desc_Computer_C", + "amount": 50.0 + }, + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 100.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 500.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 600.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Locomotive_C", + "Recipe_FreightWagon_C", + "Recipe_RailroadTrack_C", + "Recipe_TrainStation_C", + "Recipe_TrainDockingStation_C", + "Recipe_TrainDockingStationLiquid_C", + "Recipe_TrainPlatformEmpty_C", + "Recipe_TrainPlatformEmpty_02_C", + "Recipe_RailroadBlockSignal_C", + "Recipe_RailroadPathSignal_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 6, + "time": 900.0, + "mam": false, + "alternate": false + }, + "Schematic_6-2_C": { + "className": "Schematic_6-2_C", + "type": "EST_Milestone", + "name": "Jetpack", + "slug": "jetpack", + "cost": [ + { + "item": "Desc_Motor_C", + "amount": 50.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 100.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 100.0 + }, + { + "item": "Desc_Fuel_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_JetPack_C" + ], + "scannerResources": [], + "inventorySlots": 3, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 6, + "time": 300.0, + "mam": false, + "alternate": false + }, + "Schematic_6-1_C": { + "className": "Schematic_6-1_C", + "type": "EST_Milestone", + "name": "Logistics Mk.4", + "slug": "logistics-mk-4", + "cost": [ + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 50.0 + }, + { + "item": "Desc_Computer_C", + "amount": 100.0 + }, + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 200.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 400.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_GeneratorFuel_C", + "Recipe_ConveyorBeltMk4_C", + "Recipe_ConveyorLiftMk4_C" + ], + "scannerResources": [ + "Desc_OreGold_C" + ], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 6, + "time": 900.0, + "mam": false, + "alternate": false + }, + "Schematic_5-3_C": { + "className": "Schematic_5-3_C", + "type": "EST_Milestone", + "name": "Logistics Mk.3", + "slug": "logistics-mk-3", + "cost": [ + { + "item": "Desc_SteelPlate_C", + "amount": 200.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 100.0 + }, + { + "item": "Desc_Cement_C", + "amount": 500.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_StorageContainerMk2_C", + "Recipe_ConveyorBeltMk3_C", + "Recipe_ConveyorLiftMk3_C", + "Recipe_PipeSupportStackable_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 4, + "time": 300.0, + "mam": false, + "alternate": false + }, + "Schematic_4-5_C": { + "className": "Schematic_4-5_C", + "type": "EST_Milestone", + "name": "FICSIT Blueprints", + "slug": "ficsit-blueprints", + "cost": [ + { + "item": "Desc_ModularFrame_C", + "amount": 100.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 200.0 + }, + { + "item": "Desc_Cable_C", + "amount": 500.0 + }, + { + "item": "Desc_Cement_C", + "amount": 1000.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_BlueprintDesigner_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 4, + "time": 300.0, + "mam": false, + "alternate": false + }, + "Schematic_4-4_C": { + "className": "Schematic_4-4_C", + "type": "EST_Milestone", + "name": "Hypertubes", + "slug": "hypertubes", + "cost": [ + { + "item": "Desc_CopperSheet_C", + "amount": 300.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 300.0 + }, + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PipeHyperStart_C", + "Recipe_PipeHyper_C", + "Recipe_PipeHyperSupport_C", + "Recipe_HyperPoleStackable_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 4, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_4-3_C": { + "className": "Schematic_4-3_C", + "type": "EST_Milestone", + "name": "Expanded Power Infrastructure", + "slug": "expanded-power-infrastructure", + "cost": [ + { + "item": "Desc_ModularFrame_C", + "amount": 100.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 100.0 + }, + { + "item": "Desc_Wire_C", + "amount": 1000.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PowerStorageMk1_C", + "Recipe_PowerTower_C", + "Recipe_PowerTowerPlatform_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 4, + "time": 300.0, + "mam": false, + "alternate": false + }, + "Schematic_4-2_C": { + "className": "Schematic_4-2_C", + "type": "EST_Milestone", + "name": "Improved Melee Combat", + "slug": "improved-melee-combat", + "cost": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 100.0 + }, + { + "item": "Desc_Cable_C", + "amount": 200.0 + }, + { + "item": "Desc_Wire_C", + "amount": 1500.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_XenoBasher_C" + ], + "scannerResources": [], + "inventorySlots": 3, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 180.0, + "mam": false, + "alternate": false + }, + "Schematic_3-3_C": { + "className": "Schematic_3-3_C", + "type": "EST_Milestone", + "name": "Vehicular Transport", + "slug": "vehicular-transport", + "cost": [ + { + "item": "Desc_ModularFrame_C", + "amount": 25.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 100.0 + }, + { + "item": "Desc_Cable_C", + "amount": 200.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 400.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Tractor_C", + "Recipe_TruckStation_C" + ], + "scannerResources": [], + "inventorySlots": 3, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 240.0, + "mam": false, + "alternate": false + }, + "Schematic_3-2_C": { + "className": "Schematic_3-2_C", + "type": "EST_Milestone", + "name": "Logistics Mk.2", + "slug": "logistics-mk-2", + "cost": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 50.0 + }, + { + "item": "Desc_Cement_C", + "amount": 200.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 300.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 300.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_ConveyorBeltMk2_C", + "Recipe_ConveyorPoleStackable_C", + "Recipe_ConveyorLiftMk2_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 2, + "time": 360.0, + "mam": false, + "alternate": false + }, + "Schematic_2-3_C": { + "className": "Schematic_2-3_C", + "type": "EST_Milestone", + "name": "Jump Pads", + "slug": "jump-pads", + "cost": [ + { + "item": "Desc_Rotor_C", + "amount": 50.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 300.0 + }, + { + "item": "Desc_Cable_C", + "amount": 150.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_JumpPadAdjustable_C", + "Recipe_UJellyLandingPad_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 2, + "time": 240.0, + "mam": false, + "alternate": false + }, + "Schematic_2-2_C": { + "className": "Schematic_2-2_C", + "type": "EST_Milestone", + "name": "Obstacle Clearing", + "slug": "obstacle-clearing", + "cost": [ + { + "item": "Desc_IronScrew_C", + "amount": 500.0 + }, + { + "item": "Desc_Cable_C", + "amount": 100.0 + }, + { + "item": "Desc_Cement_C", + "amount": 100.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Chainsaw_C", + "Recipe_Biofuel_C" + ], + "scannerResources": [], + "inventorySlots": 3, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 2, + "time": 180.0, + "mam": false, + "alternate": false + }, + "Research_Quartz_4_1_C": { + "className": "Research_Quartz_4_1_C", + "type": "EST_MAM", + "name": "Radio Signal Scanning", + "slug": "radio-signal-scanning", + "cost": [ + { + "item": "Desc_CrystalOscillator_C", + "amount": 100.0 + }, + { + "item": "Desc_Motor_C", + "amount": 100.0 + }, + { + "item": "BP_EquipmentDescriptorObjectScanner_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Schematic_1-3_C": { + "className": "Schematic_1-3_C", + "type": "EST_Milestone", + "name": "Field Research", + "slug": "field-research", + "cost": [ + { + "item": "Desc_Wire_C", + "amount": 300.0 + }, + { + "item": "Desc_IronScrew_C", + "amount": 300.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 100.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Mam_C", + "Recipe_ObjectScanner_C", + "Recipe_StoragePlayer_C", + "Recipe_Beacon_C" + ], + "scannerResources": [], + "inventorySlots": 3, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 180.0, + "mam": false, + "alternate": false + }, + "Schematic_1-2_C": { + "className": "Schematic_1-2_C", + "type": "EST_Milestone", + "name": "Logistics", + "slug": "logistics", + "cost": [ + { + "item": "Desc_IronPlate_C", + "amount": 150.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 150.0 + }, + { + "item": "Desc_Wire_C", + "amount": 300.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_ConveyorAttachmentSplitter_C", + "Recipe_ConveyorAttachmentMerger_C", + "Recipe_ConveyorLiftMk1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 240.0, + "mam": false, + "alternate": false + }, + "Schematic_1-1_C": { + "className": "Schematic_1-1_C", + "type": "EST_Milestone", + "name": "Base Building", + "slug": "base-building", + "cost": [ + { + "item": "Desc_Cement_C", + "amount": 200.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 100.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 100.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_LookoutTower_C", + "Recipe_Foundation_8x1_01_C", + "Recipe_Foundation_8x2_01_C", + "Recipe_Foundation_8x4_01_C", + "Recipe_Ramp_8x1_01_C", + "Recipe_Ramp_8x2_01_C", + "Recipe_Ramp_8x4_01_C", + "Recipe_Wall_8x4_01_C", + "Recipe_Wall_Orange_8x1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 120.0, + "mam": false, + "alternate": false + }, + "Research_AO_Stinger_C": { + "className": "Research_AO_Stinger_C", + "type": "EST_MAM", + "name": "Stinger Research", + "slug": "stinger-research", + "cost": [ + { + "item": "Desc_StingerParts_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Protein_Stinger_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_AO_Spitter_C": { + "className": "Research_AO_Spitter_C", + "type": "EST_MAM", + "name": "Spitter Research", + "slug": "spitter-research", + "cost": [ + { + "item": "Desc_SpitterParts_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Protein_Spitter_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_AO_Pre_Rebar_C": { + "className": "Research_AO_Pre_Rebar_C", + "type": "EST_MAM", + "name": "Structural Analysis", + "slug": "structural-analysis", + "cost": [ + { + "item": "Desc_AlienDNACapsule_C", + "amount": 5.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 100.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_AO_Hog_C": { + "className": "Research_AO_Hog_C", + "type": "EST_MAM", + "name": "Hog Research", + "slug": "hog-research", + "cost": [ + { + "item": "Desc_HogParts_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Protein_Hog_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_AO_Hatcher_C": { + "className": "Research_AO_Hatcher_C", + "type": "EST_MAM", + "name": "Hatcher Research", + "slug": "hatcher-research", + "cost": [ + { + "item": "Desc_HatcherParts_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Protein_Crab_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_AO_DNACapsule_C": { + "className": "Research_AO_DNACapsule_C", + "type": "EST_MAM", + "name": "Bio-Organic Properties", + "slug": "bio-organic-properties", + "cost": [ + { + "item": "Desc_AlienProtein_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_AlienDNACapsule_C", + "Recipe_Biomass_AlienProtein_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_AOrgans_3_C": { + "className": "Research_AOrgans_3_C", + "type": "EST_MAM", + "name": "Inflated Pocket Dimension", + "slug": "inflated-pocket-dimension", + "cost": [ + { + "item": "Desc_AlienProtein_C", + "amount": 3.0 + }, + { + "item": "Desc_Cable_C", + "amount": 1000.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 6, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_AOrgans_2_C": { + "className": "Research_AOrgans_2_C", + "type": "EST_MAM", + "name": "Protein Inhaler", + "slug": "protein-inhaler", + "cost": [ + { + "item": "Desc_AlienProtein_C", + "amount": 2.0 + }, + { + "item": "Desc_Nut_C", + "amount": 20.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_MedicinalInhalerAlienOrgans_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_AOrgans_0_C": { + "className": "Research_AOrgans_0_C", + "type": "EST_MAM", + "name": "Spitter Research", + "slug": "spitter-research", + "cost": [ + { + "item": "Desc_SpitterParts_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Protein_Spitter_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_AOrganisms_2_C": { + "className": "Research_AOrganisms_2_C", + "type": "EST_MAM", + "name": "Hostile Organism Detection", + "slug": "hostile-organism-detection", + "cost": [ + { + "item": "Desc_AlienDNACapsule_C", + "amount": 10.0 + }, + { + "item": "Desc_CrystalOscillator_C", + "amount": 5.0 + }, + { + "item": "Desc_HighSpeedConnector_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_ACarapace_3_C": { + "className": "Research_ACarapace_3_C", + "type": "EST_MAM", + "name": "Expanded Toolbelt", + "slug": "expanded-toolbelt", + "cost": [ + { + "item": "Desc_AlienDNACapsule_C", + "amount": 5.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 500.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_ACarapace_2_C": { + "className": "Research_ACarapace_2_C", + "type": "EST_MAM", + "name": "The Rebar Gun", + "slug": "the-rebar-gun", + "cost": [ + { + "item": "Desc_Rotor_C", + "amount": 25.0 + }, + { + "item": "Desc_IronPlateReinforced_C", + "amount": 50.0 + }, + { + "item": "Desc_IronScrew_C", + "amount": 500.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_RebarGun_C", + "Recipe_SpikedRebar_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_ACarapace_0_C": { + "className": "Research_ACarapace_0_C", + "type": "EST_MAM", + "name": "Hog Research", + "slug": "hog-research", + "cost": [ + { + "item": "Desc_HogParts_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Protein_Hog_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Caterium_7_2_C": { + "className": "Research_Caterium_7_2_C", + "type": "EST_MAM", + "name": "Geothermal Generator", + "slug": "geothermal-generator", + "cost": [ + { + "item": "Desc_ComputerSuper_C", + "amount": 50.0 + }, + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 50.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 300.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_GeneratorGeoThermal_C" + ], + "scannerResources": [ + "Desc_Geyser_C" + ], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Caterium_7_1_C": { + "className": "Research_Caterium_7_1_C", + "type": "EST_MAM", + "name": "Programmable Splitter", + "slug": "programmable-splitter", + "cost": [ + { + "item": "Desc_ComputerSuper_C", + "amount": 50.0 + }, + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_ConveyorAttachmentSplitterProgrammable_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Caterium_6_3_C": { + "className": "Research_Caterium_6_3_C", + "type": "EST_MAM", + "name": "Bullet Guidance System", + "slug": "bullet-guidance-system", + "cost": [ + { + "item": "Desc_HighSpeedConnector_C", + "amount": 10.0 + }, + { + "item": "Desc_CartridgeStandard_C", + "amount": 500.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_CartridgeSmart_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Caterium_6_2_C": { + "className": "Research_Caterium_6_2_C", + "type": "EST_MAM", + "name": "Power Poles Mk.3", + "slug": "power-poles-mk-3", + "cost": [ + { + "item": "Desc_HighSpeedConnector_C", + "amount": 50.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 200.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PowerPoleMk3_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Caterium_6_1_C": { + "className": "Research_Caterium_6_1_C", + "type": "EST_MAM", + "name": "Supercomputer", + "slug": "supercomputer", + "cost": [ + { + "item": "Desc_CircuitBoardHighSpeed_C", + "amount": 50.0 + }, + { + "item": "Desc_HighSpeedConnector_C", + "amount": 50.0 + }, + { + "item": "Desc_Computer_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_ComputerSuper_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Caterium_5_1_C": { + "className": "Research_Caterium_5_1_C", + "type": "EST_MAM", + "name": "Priority Power Switch", + "slug": "priority-power-switch", + "cost": [ + { + "item": "Desc_HighSpeedConnector_C", + "amount": 25.0 + }, + { + "item": "Desc_CircuitBoard_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PriorityPowerSwitch_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Caterium_4_3_C": { + "className": "Research_Caterium_4_3_C", + "type": "EST_MAM", + "name": "Blade Runners", + "slug": "blade-runners", + "cost": [ + { + "item": "Desc_Silica_C", + "amount": 50.0 + }, + { + "item": "Desc_ModularFrame_C", + "amount": 10.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_BladeRunners_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Caterium_4_2_C": { + "className": "Research_Caterium_4_2_C", + "type": "EST_MAM", + "name": "Power Poles Mk.2", + "slug": "power-poles-mk-2", + "cost": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 300.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PowerPoleMk2_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Caterium_4_1_2_C": { + "className": "Research_Caterium_4_1_2_C", + "type": "EST_MAM", + "name": "Power Switch", + "slug": "power-switch", + "cost": [ + { + "item": "Desc_SteelPlate_C", + "amount": 100.0 + }, + { + "item": "Desc_CircuitBoardHighSpeed_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PowerSwitch_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Caterium_4_1_1_C": { + "className": "Research_Caterium_4_1_1_C", + "type": "EST_MAM", + "name": "Smart Splitter", + "slug": "smart-splitter", + "cost": [ + { + "item": "Desc_CircuitBoardHighSpeed_C", + "amount": 10.0 + }, + { + "item": "Desc_IronPlateReinforced_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_ConveyorAttachmentSplitterSmart_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Caterium_3_2_C": { + "className": "Research_Caterium_3_2_C", + "type": "EST_MAM", + "name": "Stun Rebar", + "slug": "stun-rebar", + "cost": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 50.0 + }, + { + "item": "Desc_SpikedRebar_C", + "amount": 10.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Rebar_Stunshot_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Caterium_3_1_C": { + "className": "Research_Caterium_3_1_C", + "type": "EST_MAM", + "name": "Inflated Pocket Dimension", + "slug": "inflated-pocket-dimension", + "cost": [ + { + "item": "Desc_Silica_C", + "amount": 200.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 6, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Caterium_2_1_C": { + "className": "Research_Caterium_2_1_C", + "type": "EST_MAM", + "name": "Zipline", + "slug": "zipline", + "cost": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 100.0 + }, + { + "item": "Desc_Cable_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_ZipLine_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Caterium_2_C": { + "className": "Research_Caterium_2_C", + "type": "EST_MAM", + "name": "Quickwire", + "slug": "quickwire", + "cost": [ + { + "item": "Desc_GoldIngot_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Quickwire_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_FlowerPetals_3_C": { + "className": "Research_FlowerPetals_3_C", + "type": "EST_MAM", + "name": "Color Cartridges", + "slug": "color-cartridges", + "cost": [ + { + "item": "Desc_FlowerPetals_C", + "amount": 100.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_ColorCartridge_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_FlowerPetals_1_C": { + "className": "Research_FlowerPetals_1_C", + "type": "EST_MAM", + "name": "Flower Petals", + "slug": "flower-petals", + "cost": [ + { + "item": "Desc_FlowerPetals_C", + "amount": 10.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_HardDrive_0_C": { + "className": "Research_HardDrive_0_C", + "type": "EST_HardDrive", + "name": "Hard Drive", + "slug": "hard-drive", + "cost": [ + { + "item": "Desc_HardDrive_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Research_Mycelia_8_C": { + "className": "Research_Mycelia_8_C", + "type": "EST_MAM", + "name": "Toxic Cellular Modification", + "slug": "toxic-cellular-modification", + "cost": [ + { + "item": "Desc_NobeliskExplosive_C", + "amount": 10.0 + }, + { + "item": "Desc_Mycelia_C", + "amount": 100.0 + }, + { + "item": "Desc_GenericBiomass_C", + "amount": 200.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_NobeliskGas_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Mycelia_7_C": { + "className": "Research_Mycelia_7_C", + "type": "EST_MAM", + "name": "Expanded Toolbelt", + "slug": "expanded-toolbelt", + "cost": [ + { + "item": "Desc_Fabric_C", + "amount": 50.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 100.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Nutrients_2_C": { + "className": "Research_Nutrients_2_C", + "type": "EST_MAM", + "name": "Bacon Agaric", + "slug": "bacon-agaric", + "cost": [ + { + "item": "Desc_Shroom_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Mycelia_6_C": { + "className": "Research_Mycelia_6_C", + "type": "EST_MAM", + "name": "Therapeutic Inhaler", + "slug": "therapeutic-inhaler", + "cost": [ + { + "item": "Desc_Mycelia_C", + "amount": 15.0 + }, + { + "item": "Desc_Shroom_C", + "amount": 1.0 + }, + { + "item": "Desc_AlienProtein_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_TherapeuticInhaler_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Mycelia_5_C": { + "className": "Research_Mycelia_5_C", + "type": "EST_MAM", + "name": "Vitamin Inhaler", + "slug": "vitamin-inhaler", + "cost": [ + { + "item": "Desc_Mycelia_C", + "amount": 10.0 + }, + { + "item": "Desc_Berry_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_MedicinalInhaler_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Mycelia_4_C": { + "className": "Research_Mycelia_4_C", + "type": "EST_MAM", + "name": "Medical Properties", + "slug": "medical-properties", + "cost": [ + { + "item": "Desc_Mycelia_C", + "amount": 25.0 + }, + { + "item": "Desc_Stator_C", + "amount": 10.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Mycelia_3_C": { + "className": "Research_Mycelia_3_C", + "type": "EST_MAM", + "name": "Parachute", + "slug": "parachute", + "cost": [ + { + "item": "Desc_Fabric_C", + "amount": 10.0 + }, + { + "item": "Desc_Cable_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Parachute_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Mycelia_2_1_C": { + "className": "Research_Mycelia_2_1_C", + "type": "EST_MAM", + "name": "Synthetic Polyester Fabric", + "slug": "synthetic-polyester-fabric", + "cost": [ + { + "item": "Desc_Fabric_C", + "amount": 25.0 + }, + { + "item": "Desc_PolymerResin_C", + "amount": 100.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Alternate_PolyesterFabric_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Mycelia_2_C": { + "className": "Research_Mycelia_2_C", + "type": "EST_MAM", + "name": "Fabric", + "slug": "fabric", + "cost": [ + { + "item": "Desc_Mycelia_C", + "amount": 25.0 + }, + { + "item": "Desc_GenericBiomass_C", + "amount": 100.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Fabric_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Mycelia_1_C": { + "className": "Research_Mycelia_1_C", + "type": "EST_MAM", + "name": "Mycelia", + "slug": "mycelia", + "cost": [ + { + "item": "Desc_Mycelia_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Biomass_Mycelia_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Nutrients_4_C": { + "className": "Research_Nutrients_4_C", + "type": "EST_MAM", + "name": "Nutritional Inhaler", + "slug": "nutritional-inhaler", + "cost": [ + { + "item": "Desc_Shroom_C", + "amount": 2.0 + }, + { + "item": "Desc_Berry_C", + "amount": 4.0 + }, + { + "item": "Desc_Nut_C", + "amount": 10.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_NutritionalInhaler_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Nutrients_3_C": { + "className": "Research_Nutrients_3_C", + "type": "EST_MAM", + "name": "Nutritional Processor", + "slug": "nutritional-processor", + "cost": [ + { + "item": "Desc_ModularFrame_C", + "amount": 25.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 50.0 + }, + { + "item": "Desc_Wire_C", + "amount": 500.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Nutrients_1_C": { + "className": "Research_Nutrients_1_C", + "type": "EST_MAM", + "name": "Beryl Nut", + "slug": "beryl-nut", + "cost": [ + { + "item": "Desc_Nut_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Nutrients_0_C": { + "className": "Research_Nutrients_0_C", + "type": "EST_MAM", + "name": "Paleberry", + "slug": "paleberry", + "cost": [ + { + "item": "Desc_Berry_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_PowerSlugs_5_C": { + "className": "Research_PowerSlugs_5_C", + "type": "EST_MAM", + "name": "Purple Power Shards", + "slug": "purple-power-shards", + "cost": [ + { + "item": "Desc_Crystal_mk3_C", + "amount": 1.0 + }, + { + "item": "Desc_ModularFrame_C", + "amount": 25.0 + }, + { + "item": "Desc_CopperSheet_C", + "amount": 100.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PowerCrystalShard_3_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_PowerSlugs_4_C": { + "className": "Research_PowerSlugs_4_C", + "type": "EST_MAM", + "name": "Yellow Power Shards", + "slug": "yellow-power-shards", + "cost": [ + { + "item": "Desc_Crystal_mk2_C", + "amount": 1.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 25.0 + }, + { + "item": "Desc_Cable_C", + "amount": 100.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PowerCrystalShard_2_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_PowerSlugs_3_C": { + "className": "Research_PowerSlugs_3_C", + "type": "EST_MAM", + "name": "Slug Scanning", + "slug": "slug-scanning", + "cost": [ + { + "item": "Desc_IronRod_C", + "amount": 50.0 + }, + { + "item": "Desc_Wire_C", + "amount": 100.0 + }, + { + "item": "Desc_IronScrew_C", + "amount": 200.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_PowerSlugs_2_C": { + "className": "Research_PowerSlugs_2_C", + "type": "EST_MAM", + "name": "Overclock Production", + "slug": "overclock-production", + "cost": [ + { + "item": "Desc_CrystalShard_C", + "amount": 1.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 50.0 + }, + { + "item": "Desc_Wire_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_PowerSlugs_1_C": { + "className": "Research_PowerSlugs_1_C", + "type": "EST_MAM", + "name": "Blue Power Slugs", + "slug": "blue-power-slugs", + "cost": [ + { + "item": "Desc_Crystal_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PowerCrystalShard_1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Quartz_4_C": { + "className": "Research_Quartz_4_C", + "type": "EST_MAM", + "name": "Radar Technology", + "slug": "radar-technology", + "cost": [ + { + "item": "Desc_CrystalOscillator_C", + "amount": 50.0 + }, + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 50.0 + }, + { + "item": "Desc_CircuitBoard_C", + "amount": 100.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_RadarTower_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Quartz_3_4_C": { + "className": "Research_Quartz_3_4_C", + "type": "EST_MAM", + "name": "Explosive Resonance Application", + "slug": "explosive-resonance-application", + "cost": [ + { + "item": "Desc_CrystalOscillator_C", + "amount": 5.0 + }, + { + "item": "Desc_NobeliskExplosive_C", + "amount": 100.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_NobeliskShockwave_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Quartz_3_1_C": { + "className": "Research_Quartz_3_1_C", + "type": "EST_MAM", + "name": "The Explorer", + "slug": "the-explorer", + "cost": [ + { + "item": "Desc_CrystalOscillator_C", + "amount": 10.0 + }, + { + "item": "Desc_ModularFrame_C", + "amount": 100.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Explorer_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Quartz_3_C": { + "className": "Research_Quartz_3_C", + "type": "EST_MAM", + "name": "Signal Systems", + "slug": "signal-systems", + "cost": [ + { + "item": "Desc_CrystalOscillator_C", + "amount": 5.0 + }, + { + "item": "Desc_CircuitBoard_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Quartz_2_1_C": { + "className": "Research_Quartz_2_1_C", + "type": "EST_MAM", + "name": "Shatter Rebar", + "slug": "shatter-rebar", + "cost": [ + { + "item": "Desc_QuartzCrystal_C", + "amount": 30.0 + }, + { + "item": "Desc_SpikedRebar_C", + "amount": 150.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Rebar_Spreadshot_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Sulfur_TurboFuel_C": { + "className": "Research_Sulfur_TurboFuel_C", + "type": "EST_MAM", + "name": "Turbofuel", + "slug": "turbofuel", + "cost": [ + { + "item": "Desc_HardDrive_C", + "amount": 1.0 + }, + { + "item": "Desc_CompactedCoal_C", + "amount": 15.0 + }, + { + "item": "Desc_Fuel_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Alternate_Turbofuel_C", + "Recipe_PackagedTurboFuel_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Sulfur_ExperimentalPower_C": { + "className": "Research_Sulfur_ExperimentalPower_C", + "type": "EST_MAM", + "name": "Experimental Power Generation", + "slug": "experimental-power-generation", + "cost": [ + { + "item": "Desc_Sulfur_C", + "amount": 25.0 + }, + { + "item": "Desc_ModularFrame_C", + "amount": 50.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 100.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Sulfur_CompactedCoal_C": { + "className": "Research_Sulfur_CompactedCoal_C", + "type": "EST_MAM", + "name": "Compacted Coal", + "slug": "compacted-coal", + "cost": [ + { + "item": "Desc_HardDrive_C", + "amount": 1.0 + }, + { + "item": "Desc_Sulfur_C", + "amount": 25.0 + }, + { + "item": "Desc_Coal_C", + "amount": 25.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Alternate_EnrichedCoal_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Sulfur_6_C": { + "className": "Research_Sulfur_6_C", + "type": "EST_MAM", + "name": "Inflated Pocket Dimension", + "slug": "inflated-pocket-dimension", + "cost": [ + { + "item": "Desc_GunpowderMK2_C", + "amount": 50.0 + }, + { + "item": "Desc_CircuitBoard_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 6, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Sulfur_5_2_Hidden_C": { + "className": "Research_Sulfur_5_2_Hidden_C", + "type": "EST_Custom", + "name": "Packaged Turbo Rifle Ammo", + "slug": "packaged-turbo-rifle-ammo", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_CartridgeChaos_Packaged_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 0.0, + "mam": false, + "alternate": false + }, + "Research_Sulfur_5_2_C": { + "className": "Research_Sulfur_5_2_C", + "type": "EST_MAM", + "name": "Turbo Rifle Ammo", + "slug": "turbo-rifle-ammo", + "cost": [ + { + "item": "Desc_CartridgeStandard_C", + "amount": 1000.0 + }, + { + "item": "Desc_TurboFuel_C", + "amount": 50.0 + }, + { + "item": "Desc_AluminumCasing_C", + "amount": 100.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_CartridgeChaos_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Sulfur_5_1_C": { + "className": "Research_Sulfur_5_1_C", + "type": "EST_MAM", + "name": "Nuclear Deterrent Development", + "slug": "nuclear-deterrent-development", + "cost": [ + { + "item": "Desc_NobeliskExplosive_C", + "amount": 500.0 + }, + { + "item": "Desc_UraniumCell_C", + "amount": 10.0 + }, + { + "item": "Desc_CircuitBoardHighSpeed_C", + "amount": 100.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_NobeliskNuke_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Sulfur_5_C": { + "className": "Research_Sulfur_5_C", + "type": "EST_MAM", + "name": "Expanded Toolbelt", + "slug": "expanded-toolbelt", + "cost": [ + { + "item": "Desc_Gunpowder_C", + "amount": 100.0 + }, + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Sulfur_4_2_C": { + "className": "Research_Sulfur_4_2_C", + "type": "EST_MAM", + "name": "Explosive Rebar", + "slug": "explosive-rebar", + "cost": [ + { + "item": "Desc_GunpowderMK2_C", + "amount": 200.0 + }, + { + "item": "Desc_SpikedRebar_C", + "amount": 200.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 200.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Rebar_Explosive_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Sulfur_4_1_C": { + "className": "Research_Sulfur_4_1_C", + "type": "EST_MAM", + "name": "The Rifle", + "slug": "the-rifle", + "cost": [ + { + "item": "Desc_GunpowderMK2_C", + "amount": 50.0 + }, + { + "item": "Desc_Motor_C", + "amount": 100.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 200.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_SpaceRifleMk1_C", + "Recipe_Cartridge_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Sulfur_4_C": { + "className": "Research_Sulfur_4_C", + "type": "EST_MAM", + "name": "Cluster Nobelisk", + "slug": "cluster-nobelisk", + "cost": [ + { + "item": "Desc_GunpowderMK2_C", + "amount": 100.0 + }, + { + "item": "Desc_NobeliskExplosive_C", + "amount": 200.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_NobeliskCluster_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Sulfur_3_2_C": { + "className": "Research_Sulfur_3_2_C", + "type": "EST_MAM", + "name": "", + "slug": "", + "cost": [ + { + "item": "Desc_Gunpowder_C", + "amount": 50.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Sulfur_3_1_C": { + "className": "Research_Sulfur_3_1_C", + "type": "EST_MAM", + "name": "The Nobelisk Detonator", + "slug": "the-nobelisk-detonator", + "cost": [ + { + "item": "Desc_Gunpowder_C", + "amount": 50.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 100.0 + }, + { + "item": "Desc_Cable_C", + "amount": 200.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_NobeliskDetonator_C", + "Recipe_Nobelisk_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Sulfur_3_C": { + "className": "Research_Sulfur_3_C", + "type": "EST_MAM", + "name": "Smokeless Powder", + "slug": "smokeless-powder", + "cost": [ + { + "item": "Desc_Gunpowder_C", + "amount": 100.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_GunpowderMK2_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Sulfur_2_C": { + "className": "Research_Sulfur_2_C", + "type": "EST_MAM", + "name": "Volatile Applications", + "slug": "volatile-applications", + "cost": [ + { + "item": "Desc_Gunpowder_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Sulfur_1_C": { + "className": "Research_Sulfur_1_C", + "type": "EST_MAM", + "name": "Black Powder", + "slug": "black-powder", + "cost": [ + { + "item": "Desc_Sulfur_C", + "amount": 50.0 + }, + { + "item": "Desc_Coal_C", + "amount": 25.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Gunpowder_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Schematic_XMassTree_T4_C": { + "className": "Schematic_XMassTree_T4_C", + "type": "EST_Custom", + "name": "", + "slug": "", + "cost": [], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Research_XMas_5_C": { + "className": "Research_XMas_5_C", + "type": "EST_MAM", + "name": "Giant FICSMAS Tree: Upgrade 4", + "slug": "giant-ficsmas-tree-upgrade-4", + "cost": [ + { + "item": "Desc_XmasStar_C", + "amount": 500.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Schematic_XMassTree_T3_C": { + "className": "Schematic_XMassTree_T3_C", + "type": "EST_Custom", + "name": "", + "slug": "", + "cost": [], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Research_XMas_4_C": { + "className": "Research_XMas_4_C", + "type": "EST_MAM", + "name": "Giant FICSMAS Tree: Upgrade 3", + "slug": "giant-ficsmas-tree-upgrade-3", + "cost": [ + { + "item": "Desc_XmasStar_C", + "amount": 1.0 + }, + { + "item": "Desc_XmasWreath_C", + "amount": 200.0 + }, + { + "item": "Desc_XmasBallCluster_C", + "amount": 400.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_XMas_4-2_C": { + "className": "Research_XMas_4-2_C", + "type": "EST_MAM", + "name": "Snowfight!", + "slug": "snowfight", + "cost": [ + { + "item": "Desc_Snow_C", + "amount": 500.0 + }, + { + "item": "Desc_CandyCane_C", + "amount": 500.0 + }, + { + "item": "Desc_XmasBow_C", + "amount": 500.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Snowball_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_XMas_4-1_C": { + "className": "Research_XMas_4-1_C", + "type": "EST_MAM", + "name": "FICSMAS Wreath", + "slug": "ficsmas-wreath", + "cost": [ + { + "item": "Desc_XmasWreath_C", + "amount": 100.0 + }, + { + "item": "Desc_XmasBallCluster_C", + "amount": 200.0 + }, + { + "item": "Desc_XmasBow_C", + "amount": 500.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_WreathDecor_C", + "Recipe_XmasStar_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Schematic_XMassTree_T2_C": { + "className": "Schematic_XMassTree_T2_C", + "type": "EST_Custom", + "name": "", + "slug": "", + "cost": [], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Research_XMas_3_C": { + "className": "Research_XMas_3_C", + "type": "EST_MAM", + "name": "Giant FICSMAS Tree: Upgrade 2", + "slug": "giant-ficsmas-tree-upgrade-2", + "cost": [ + { + "item": "Desc_XmasBallCluster_C", + "amount": 1.0 + }, + { + "item": "Desc_XmasBall3_C", + "amount": 200.0 + }, + { + "item": "Desc_XmasBall4_C", + "amount": 200.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_XMas_3-2_C": { + "className": "Research_XMas_3-2_C", + "type": "EST_MAM", + "name": "It's snowing!", + "slug": "it-s-snowing", + "cost": [ + { + "item": "Desc_XmasBallCluster_C", + "amount": 10.0 + }, + { + "item": "Desc_Snow_C", + "amount": 100.0 + }, + { + "item": "Desc_XmasBranch_C", + "amount": 500.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_SnowDispenser_C", + "Recipe_XmasWreath_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_XMas_3-1_C": { + "className": "Research_XMas_3-1_C", + "type": "EST_MAM", + "name": "FICSMAS Lights", + "slug": "ficsmas-lights", + "cost": [ + { + "item": "Desc_XmasBall1_C", + "amount": 100.0 + }, + { + "item": "Desc_XmasBall2_C", + "amount": 100.0 + }, + { + "item": "Desc_XmasBall3_C", + "amount": 50.0 + }, + { + "item": "Desc_XmasBall4_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_xmassLights_C", + "Recipe_XmasBallCluster_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Schematic_XMassTree_T1_C": { + "className": "Schematic_XMassTree_T1_C", + "type": "EST_Custom", + "name": "", + "slug": "", + "cost": [], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Research_XMas_2_C": { + "className": "Research_XMas_2_C", + "type": "EST_MAM", + "name": "Giant FICSMAS Tree: Upgrade 1", + "slug": "giant-ficsmas-tree-upgrade-1", + "cost": [ + { + "item": "Desc_XmasBall1_C", + "amount": 1.0 + }, + { + "item": "Desc_CandyCane_C", + "amount": 20.0 + }, + { + "item": "Desc_XmasBow_C", + "amount": 30.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_XmasBall1_C", + "Recipe_XmasBall2_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_XMas_2-2_C": { + "className": "Research_XMas_2-2_C", + "type": "EST_MAM", + "name": "FICSMAS Gift Tree", + "slug": "ficsmas-gift-tree", + "cost": [ + { + "item": "Desc_XmasBall1_C", + "amount": 50.0 + }, + { + "item": "Desc_XmasBall2_C", + "amount": 50.0 + }, + { + "item": "Desc_XmasBranch_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_TreeGiftProducer_C", + "Recipe_XmasBall3_C", + "Recipe_XmasBall4_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_XMas_2-1_C": { + "className": "Research_XMas_2-1_C", + "type": "EST_MAM", + "name": "A friend", + "slug": "a-friend", + "cost": [ + { + "item": "Desc_CandyCane_C", + "amount": 50.0 + }, + { + "item": "Desc_XmasBow_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Snowman_C", + "Recipe_Snow_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_XMas_1_C": { + "className": "Research_XMas_1_C", + "type": "EST_MAM", + "name": "FICSMAS Tree Base", + "slug": "ficsmas-tree-base", + "cost": [ + { + "item": "Desc_Gift_C", + "amount": 100.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_XMassTree_C", + "Recipe_XmasBranch_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_XMas_1-2_C": { + "className": "Research_XMas_1-2_C", + "type": "EST_MAM", + "name": "Candy Cane Decor", + "slug": "candy-cane-decor", + "cost": [ + { + "item": "Desc_CandyCane_C", + "amount": 10.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_CandyCaneDecor_C", + "Recipe_XmasBow_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_XMas_1-1_C": { + "className": "Research_XMas_1-1_C", + "type": "EST_MAM", + "name": "Candy Cane Basher", + "slug": "candy-cane-basher", + "cost": [ + { + "item": "Desc_XmasBranch_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_CandyCaneBasher_C", + "Recipe_CandyCane_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "CBG_Colour_ConcreteSwatch_C": { + "className": "CBG_Colour_ConcreteSwatch_C", + "type": "EST_Custom", + "name": "Concrete Color Swatch background unlock", + "slug": "concrete-color-swatch-background-unlock", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Swatch_Concrete_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "CBG_Concrete_Walls_Basic_C": { + "className": "CBG_Concrete_Walls_Basic_C", + "type": "EST_Custom", + "name": "Basic Concrete Walls", + "slug": "basic-concrete-walls", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Wall_Concrete_8x1_C", + "Recipe_Wall_Concrete_8x4_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Customizer_ConcreteWallMaterial_C": { + "className": "ResourceSink_Customizer_ConcreteWallMaterial_C", + "type": "EST_ResourceSink", + "name": "Concrete Wall Material", + "slug": "concrete-wall-material", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Material_Wall_Concrete_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_1-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "CBG_Concrete_Walls_Conveyor_C": { + "className": "CBG_Concrete_Walls_Conveyor_C", + "type": "EST_Custom", + "name": "Conveyor Concrete Walls", + "slug": "conveyor-concrete-walls", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Wall_Concrete_8x4_ConveyorHole_01_C", + "Recipe_Wall_Concrete_8x4_ConveyorHole_02_C", + "Recipe_Wall_Concrete_8x4_ConveyorHole_03_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_Customizer_ConcreteWallMaterial_C", + "ResourceSink_ConveryWalls_Normal_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "CBG_Steel_Walls_Basic_C": { + "className": "CBG_Steel_Walls_Basic_C", + "type": "EST_Custom", + "name": "Basic Steel Walls", + "slug": "basic-steel-walls", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_SteelWall_8x1_C", + "Recipe_Wall_8x4_02_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "CBG_Steel_Walls_Conveyor_C": { + "className": "CBG_Steel_Walls_Conveyor_C", + "type": "EST_Custom", + "name": "Conveyor Steel Walls", + "slug": "conveyor-steel-walls", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Wall_Conveyor_8x4_01_Steel_C", + "Recipe_Wall_Conveyor_8x4_02_Steel_C", + "Recipe_Wall_Conveyor_8x4_03_Steel_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_Customizer_SteelWallMaterial_C", + "ResourceSink_ConveryWalls_Normal_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Customizer_SteelWallMaterial_C": { + "className": "ResourceSink_Customizer_SteelWallMaterial_C", + "type": "EST_ResourceSink", + "name": "Steel Wall Material", + "slug": "steel-wall-material", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Material_Wall_Steel_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-4_C", + "Schematic_1-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Diagonal_Down_Wallset_C": { + "className": "ResourceSink_Diagonal_Down_Wallset_C", + "type": "EST_ResourceSink", + "name": "Inverted Ramp Wall Bundle", + "slug": "inverted-ramp-wall-bundle", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Wall_Orange_FlipTris_8x1_C", + "Recipe_Wall_Orange_FlipTris_8x2_C", + "Recipe_Wall_Orange_FlipTris_8x4_C", + "Recipe_Wall_Orange_FlipTris_8x8_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "CBG_Concrete_Walls_DiagonalDown_C": { + "className": "CBG_Concrete_Walls_DiagonalDown_C", + "type": "EST_Custom", + "name": "Down Diagonal Concrete Walls", + "slug": "down-diagonal-concrete-walls", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Wall_Concrete_FlipTris_8x1_C", + "Recipe_Wall_Concrete_FlipTris_8x2_C", + "Recipe_Wall_Concrete_FlipTris_8x4_C", + "Recipe_Wall_Concrete_FlipTris_8x8_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_Customizer_ConcreteWallMaterial_C", + "ResourceSink_Diagonal_Down_Wallset_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "CBG_Steel_Walls_DiagonalDown_C": { + "className": "CBG_Steel_Walls_DiagonalDown_C", + "type": "EST_Custom", + "name": "Down Diagonal Steel Walls", + "slug": "down-diagonal-steel-walls", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_SteelWall_FlipTris_8x1_C", + "Recipe_SteelWall_FlipTris_8x2_C", + "Recipe_SteelWall_FlipTris_8x4_C", + "Recipe_SteelWall_FlipTris_8x8_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_Customizer_SteelWallMaterial_C", + "ResourceSink_Diagonal_Down_Wallset_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Diagonal_Up_WallSet_C": { + "className": "ResourceSink_Diagonal_Up_WallSet_C", + "type": "EST_ResourceSink", + "name": "Ramp Wall Bundle", + "slug": "ramp-wall-bundle", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 4.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Wall_Orange_Tris_8x1_C", + "Recipe_Wall_Orange_Tris_8x2_C", + "Recipe_Wall_Orange_Tris_8x4_C", + "Recipe_Wall_Orange_Tris_8x8_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "CBG_Concrete_Walls_DiagonalUp_C": { + "className": "CBG_Concrete_Walls_DiagonalUp_C", + "type": "EST_Custom", + "name": "Up Diagonal Concrete Walls", + "slug": "up-diagonal-concrete-walls", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Wall_Concrete_Tris_8x1_C", + "Recipe_Wall_Concrete_Tris_8x2_C", + "Recipe_Wall_Concrete_Tris_8x4_C", + "Recipe_Wall_Concrete_Tris_8x8_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_Customizer_ConcreteWallMaterial_C", + "ResourceSink_Diagonal_Up_WallSet_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "CBG_Steel_Walls_DiagonalUp_C": { + "className": "CBG_Steel_Walls_DiagonalUp_C", + "type": "EST_Custom", + "name": "Up Diagonal Steel Walls", + "slug": "up-diagonal-steel-walls", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_SteelWall_Tris_8x1_C", + "Recipe_SteelWall_Tris_8x2_C", + "Recipe_SteelWall_Tris_8x4_C", + "Recipe_SteelWall_Tris_8x8_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_Customizer_SteelWallMaterial_C", + "ResourceSink_Diagonal_Up_WallSet_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_DoorWalls_Normal_C": { + "className": "ResourceSink_DoorWalls_Normal_C", + "type": "EST_ResourceSink", + "name": "Door Walls", + "slug": "door-walls", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Wall_Door_8x4_01_C", + "Recipe_Wall_Door_8x4_03_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "CBG_Concrete_Walls_Doors_C": { + "className": "CBG_Concrete_Walls_Doors_C", + "type": "EST_Custom", + "name": "Doors Concrete Walls", + "slug": "doors-concrete-walls", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Wall_Concrete_CDoor_8x4_C", + "Recipe_Wall_Concrete_SDoor_8x4_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_Customizer_ConcreteWallMaterial_C", + "ResourceSink_DoorWalls_Normal_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "CBG_Steel_Walls_Doors_C": { + "className": "CBG_Steel_Walls_Doors_C", + "type": "EST_Custom", + "name": "Doors Steel Walls", + "slug": "doors-steel-walls", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Wall_Door_8x4_01_Steel_C", + "Recipe_Wall_Door_8x4_03_Steel_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_Customizer_SteelWallMaterial_C", + "ResourceSink_DoorWalls_Normal_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_FactoryRailing_C": { + "className": "ResourceSink_FactoryRailing_C", + "type": "EST_ResourceSink", + "name": "Industrial Railing", + "slug": "industrial-railing", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Fence_01_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_FactoryFence_C": { + "className": "ResourceSink_FactoryFence_C", + "type": "EST_ResourceSink", + "name": "Modern Railing", + "slug": "modern-railing", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Railing_01_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_FrameworkFoundations_C": { + "className": "ResourceSink_FrameworkFoundations_C", + "type": "EST_ResourceSink", + "name": "Structural Frame Set", + "slug": "structural-frame-set", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 10.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Flat_Frame_01_C", + "Recipe_FoundationGlass_01_C", + "Recipe_Foundation_Frame_01_C", + "Recipe_Wall_Frame_01_C", + "Recipe_Ramp_Frame_01_C", + "Recipe_Ramp_Frame_Inverted_01_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_FoudationPillar_C": { + "className": "ResourceSink_FoudationPillar_C", + "type": "EST_ResourceSink", + "name": "Metal Pillar Set", + "slug": "metal-pillar-set", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PillarMiddle_C", + "Recipe_PillarBase_C", + "Recipe_Pillar_Small_Metal_C", + "Recipe_PillarBase_Small_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Customizer_Asphalt_FoundationMaterial_C": { + "className": "ResourceSink_Customizer_Asphalt_FoundationMaterial_C", + "type": "EST_ResourceSink", + "name": "Asphalt Foundation Material", + "slug": "asphalt-foundation-material", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 4.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Material_Foundation_Asphalt_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_1-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "CBG_ExtensionQuarterPipes_Asphalt_C": { + "className": "CBG_ExtensionQuarterPipes_Asphalt_C", + "type": "EST_Custom", + "name": "Asphalt Quarter PIpe Extensions", + "slug": "asphalt-quarter-pipe-extensions", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_QuarterPipeMiddleInCorner_Asphalt_8x1_C", + "Recipe_QuarterPipeMiddleInCorner_Asphalt_8x2_C", + "Recipe_QuarterPipeMiddleInCorner_Asphalt_8x4_C", + "Recipe_QuarterPipeMiddleOutCorner_Asphalt_4x1_C", + "Recipe_QuarterPipeMiddleOutCorner_Asphalt_4x2_C", + "Recipe_QuarterPipeMiddleOutCorner_Asphalt_4x4_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_Customizer_Asphalt_FoundationMaterial_C", + "ResourceSink_QuarterPipeExtensions_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": false + }, + "CBG_Foundations_Asphalt_C": { + "className": "CBG_Foundations_Asphalt_C", + "type": "EST_Custom", + "name": "Asphalt Foundations & Basic Ramps", + "slug": "asphalt-foundations-basic-ramps", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Foundation_Asphalt_8x1_C", + "Recipe_Foundation_Asphalt_8x2_C", + "Recipe_Foundation_Asphalt_8x4_C", + "Recipe_Ramp_Asphalt_8x1_C", + "Recipe_Ramp_Asphalt_8x2_C", + "Recipe_Ramp_Asphalt_8x4_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "CBG_Ramps_Corners_Asphalt_C": { + "className": "CBG_Ramps_Corners_Asphalt_C", + "type": "EST_Custom", + "name": "Asphalt Corner Ramps", + "slug": "asphalt-corner-ramps", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Ramp_DownCorner_Asphalt_8x1_C", + "Recipe_Ramp_DownCorner_Asphalt_8x2_C", + "Recipe_Ramp_DownCorner_Asphalt_8x4_C", + "Recipe_Ramp_UpCorner_Asphalt_8x1_C", + "Recipe_Ramp_UpCorner_Asphalt_8x2_C", + "Recipe_Ramp_UpCorner_Asphalt_8x4_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_Customizer_Asphalt_FoundationMaterial_C", + "ResourceSink_DiagonalRamps_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_DiagonalRamps_C": { + "className": "ResourceSink_DiagonalRamps_C", + "type": "EST_ResourceSink", + "name": "Corner Ramp Pack", + "slug": "corner-ramp-pack", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Ramp_Diagonal_8x1_02_C", + "Recipe_Ramp_Diagonal_8x2_02_C", + "Recipe_Ramp_Diagonal_8x4_02_C", + "Recipe_Ramp_Diagonal_8x1_01_C", + "Recipe_Ramp_Diagonal_8x2_01_C", + "Recipe_Ramp_Diagonal_8x4_01_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Customizer_Concrete_FoundationMaterial_C": { + "className": "ResourceSink_Customizer_Concrete_FoundationMaterial_C", + "type": "EST_ResourceSink", + "name": "Concrete Foundation Material", + "slug": "concrete-foundation-material", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Material_Foundation_Concrete_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_1-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "CBG_ExtensionQuarterPipes_Concrete_C": { + "className": "CBG_ExtensionQuarterPipes_Concrete_C", + "type": "EST_Custom", + "name": "Concrete Quarter PIpe Extensions", + "slug": "concrete-quarter-pipe-extensions", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_QuarterPipeMiddleInCorner_Concrete_8x1_C", + "Recipe_QuarterPipeMiddleInCorner_Concrete_8x2_C", + "Recipe_QuarterPipeMiddleInCorner_Concrete_8x4_C", + "Recipe_QuarterPipeMiddleOutCorner_Concrete_4x1_C", + "Recipe_QuarterPipeMiddleOutCorner_Concrete_4x2_C", + "Recipe_QuarterPipeMiddleOutCorner_Concrete_4x4_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_Customizer_Concrete_FoundationMaterial_C", + "ResourceSink_QuarterPipeExtensions_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": false + }, + "CBG_Foundations_Concrete_C": { + "className": "CBG_Foundations_Concrete_C", + "type": "EST_Custom", + "name": "Concrete Foundations & Basic Ramps", + "slug": "concrete-foundations-basic-ramps", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Foundation_Concrete_8x1_C", + "Recipe_Foundation_Concrete_8x2_C", + "Recipe_Foundation_Concrete_8x4_C", + "Recipe_Ramp_Concrete_8x1_C", + "Recipe_Ramp_Concrete_8x2_C", + "Recipe_Ramp_Concrete_8x4_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "CBG_Ramps_Corners_Concrete_C": { + "className": "CBG_Ramps_Corners_Concrete_C", + "type": "EST_Custom", + "name": "Concrete Corner Ramps", + "slug": "concrete-corner-ramps", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Ramp_DownCorner_Concrete_8x1_C", + "Recipe_Ramp_DownCorner_Concrete_8x2_C", + "Recipe_Ramp_DownCorner_Concrete_8x4_C", + "Recipe_Ramp_UpCorner_Concrete_8x1_C", + "Recipe_Ramp_UpCorner_Concrete_8x2_C", + "Recipe_Ramp_UpCorner_Concrete_8x4_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_Customizer_Concrete_FoundationMaterial_C", + "ResourceSink_DiagonalRamps_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_FoundationExpansionPack_C": { + "className": "ResourceSink_FoundationExpansionPack_C", + "type": "EST_ResourceSink", + "name": "Double Ramp Set", + "slug": "double-ramp-set", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_RampDouble_8x1_C", + "Recipe_RampDouble_C", + "Recipe_Ramp_8x8x8_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "CBG_Ramps_Double_Asphalt_C": { + "className": "CBG_Ramps_Double_Asphalt_C", + "type": "EST_Custom", + "name": "Asphalt Double Ramps", + "slug": "asphalt-double-ramps", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_RampDouble_Asphalt_8x1_C", + "Recipe_RampDouble_Asphalt_8x2_C", + "Recipe_RampDouble_Asphalt_8x4_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_Customizer_Asphalt_FoundationMaterial_C", + "ResourceSink_FoundationExpansionPack_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "CBG_Ramps_Double_Concrete_C": { + "className": "CBG_Ramps_Double_Concrete_C", + "type": "EST_Custom", + "name": "Concrete Double Ramps", + "slug": "concrete-double-ramps", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_RampDouble_Concrete_8x1_C", + "Recipe_RampDouble_Concrete_8x2_C", + "Recipe_RampDouble_Concrete_8x4_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_Customizer_Concrete_FoundationMaterial_C", + "ResourceSink_FoundationExpansionPack_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Customizer_GripMetal_FoundationMaterial_C": { + "className": "ResourceSink_Customizer_GripMetal_FoundationMaterial_C", + "type": "EST_ResourceSink", + "name": "Grip Metal Foundation Material", + "slug": "grip-metal-foundation-material", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Material_Foundation_GripMetal_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-4_C", + "Schematic_1-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "CBG_ExtensionQuarterPipes_GripMetal_C": { + "className": "CBG_ExtensionQuarterPipes_GripMetal_C", + "type": "EST_Custom", + "name": "Grip Metal Quarter PIpe Extensions", + "slug": "grip-metal-quarter-pipe-extensions", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_QuarterPipeMiddleInCorner_Grip_8x1_C", + "Recipe_QuarterPipeMiddleInCorner_Grip_8x2_C", + "Recipe_QuarterPipeMiddleInCorner_Grip_8x4_C", + "Recipe_QuarterPipeMiddleOutCorner_Grip_4x1_C", + "Recipe_QuarterPipeMiddleOutCorner_Grip_4x2_C", + "Recipe_QuarterPipeMiddleOutCorner_Grip_4x4_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_Customizer_GripMetal_FoundationMaterial_C", + "ResourceSink_QuarterPipeExtensions_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": false + }, + "CBG_Foundations_Metal_C": { + "className": "CBG_Foundations_Metal_C", + "type": "EST_Custom", + "name": "Metal Foundations & Basic Ramps", + "slug": "metal-foundations-basic-ramps", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Foundation_Metal_8x1_C", + "Recipe_Foundation_Metal_8x2_C", + "Recipe_Foundation_Metal_8x4_C", + "Recipe_Ramp_Metal_8x1_C", + "Recipe_Ramp_Metal_8x2_C", + "Recipe_Ramp_Metal_8x4_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "CBG_Ramps_Corners_Metal_C": { + "className": "CBG_Ramps_Corners_Metal_C", + "type": "EST_Custom", + "name": "Metal Corner Ramps", + "slug": "metal-corner-ramps", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Ramp_DownCorner_Metal_8x1_C", + "Recipe_Ramp_DownCorner_Metal_8x2_C", + "Recipe_Ramp_DownCorner_Metal_8x4_C", + "Recipe_Ramp_UpCorner_Metal_8x1_C", + "Recipe_Ramp_UpCorner_Metal_8x2_C", + "Recipe_Ramp_UpCorner_Metal_8x4_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_Customizer_GripMetal_FoundationMaterial_C", + "ResourceSink_DiagonalRamps_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "CBG_Ramps_Double_Metal_C": { + "className": "CBG_Ramps_Double_Metal_C", + "type": "EST_Custom", + "name": "Metal Double Ramps", + "slug": "metal-double-ramps", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_RampDouble_Metal_8x1_C", + "Recipe_RampDouble_Metal_8x2_C", + "Recipe_RampDouble_Metal_8x4_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_Customizer_GripMetal_FoundationMaterial_C", + "ResourceSink_FoundationExpansionPack_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_InvertedCornerRamps_C": { + "className": "ResourceSink_InvertedCornerRamps_C", + "type": "EST_ResourceSink", + "name": "Inverted Corner Ramp Pack", + "slug": "inverted-corner-ramp-pack", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_RampInverted_8x1_Corner_01_C", + "Recipe_RampInverted_8x2_Corner_01_C", + "Recipe_RampInverted_8x4_Corner_01_C", + "Recipe_RampInverted_8x1_Corner_02_C", + "Recipe_RampInverted_8x2_Corner_02_C", + "Recipe_RampInverted_8x4_Corner_02_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "CBG_Ramps_InvCorners_Asphalt_C": { + "className": "CBG_Ramps_InvCorners_Asphalt_C", + "type": "EST_Custom", + "name": "Asphalt Inverted corner Ramps", + "slug": "asphalt-inverted-corner-ramps", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_InvertedRamp_DCorner_Asphalt_8x1_C", + "Recipe_InvertedRamp_DCorner_Asphalt_8x2_C", + "Recipe_InvertedRamp_DCorner_Asphalt_8x4_C", + "Recipe_InvertedRamp_UCorner_Asphalt_8x1_C", + "Recipe_InvertedRamp_UCorner_Asphalt_8x2_C", + "Recipe_InvertedRamp_UCorner_Asphalt_8x4_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_Customizer_Asphalt_FoundationMaterial_C", + "ResourceSink_InvertedCornerRamps_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "CBG_Ramps_InvCorners_Concrete_C": { + "className": "CBG_Ramps_InvCorners_Concrete_C", + "type": "EST_Custom", + "name": "Concrete Inverted corner Ramps", + "slug": "concrete-inverted-corner-ramps", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_InvertedRamp_DCorner_Concrete_8x1_C", + "Recipe_InvertedRamp_DCorner_Concrete_8x2_C", + "Recipe_InvertedRamp_DCorner_Concrete_8x4_C", + "Recipe_InvertedRamp_UCorner_Concrete_8x1_C", + "Recipe_InvertedRamp_UCorner_Concrete_8x2_C", + "Recipe_InvertedRamp_UCorner_Concrete_8x4_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_Customizer_Concrete_FoundationMaterial_C", + "ResourceSink_InvertedCornerRamps_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "CBG_Ramps_InvCorners_Metal_C": { + "className": "CBG_Ramps_InvCorners_Metal_C", + "type": "EST_Custom", + "name": "Metal Inverted Corner Ramps", + "slug": "metal-inverted-corner-ramps", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_InvertedRamp_DCorner_Metal_8x1_C", + "Recipe_InvertedRamp_DCorner_Metal_8x2_C", + "Recipe_InvertedRamp_DCorner_Metal_8x4_C", + "Recipe_InvertedRamp_UCorner_Metal_8x1_C", + "Recipe_InvertedRamp_UCorner_Metal_8x2_C", + "Recipe_InvertedRamp_UCorner_Metal_8x4_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_Customizer_GripMetal_FoundationMaterial_C", + "ResourceSink_InvertedCornerRamps_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Customizer_PolishedConcrete_FoundationMaterial_C": { + "className": "ResourceSink_Customizer_PolishedConcrete_FoundationMaterial_C", + "type": "EST_ResourceSink", + "name": "Coated Concrete Foundation Material", + "slug": "coated-concrete-foundation-material", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 6.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Material_Foundation_PolishedConcrete_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C", + "Schematic_1-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "CBG_ExtensionQuarterPipes_Polished_C": { + "className": "CBG_ExtensionQuarterPipes_Polished_C", + "type": "EST_Custom", + "name": "Polished Concrete Quarter PIpe Extensions", + "slug": "polished-concrete-quarter-pipe-extensions", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_QuarterPipeMiddleInCorner_PolishedConcrete_8x1_C", + "Recipe_QuarterPipeMiddleInCorner_PolishedConcrete_8x2_C", + "Recipe_QuarterPipeMiddleInCorner_PolishedConcrete_8x4_C", + "Recipe_QuarterPipeMiddleOutCorner_PolishedConcrete_4x1_C", + "Recipe_QuarterPipeMiddleOutCorner_PolishedConcrete_4x2_C", + "Recipe_QuarterPipeMiddleOutCorner_PolishedConcrete_4x4_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_Customizer_PolishedConcrete_FoundationMaterial_C", + "ResourceSink_QuarterPipeExtensions_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": false + }, + "CBG_Foundations_Coated_C": { + "className": "CBG_Foundations_Coated_C", + "type": "EST_Custom", + "name": "Coated Concrete Foundations & Basic Ramps", + "slug": "coated-concrete-foundations-basic-ramps", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Foundation_ConcretePolished_8x1_C", + "Recipe_Foundation_ConcretePolished_8x2_C", + "Recipe_Foundation_ConcretePolished_8x4_C", + "Recipe_Ramp_Polished_8x1_C", + "Recipe_Ramp_Polished_8x2_C", + "Recipe_Ramp_Polished_8x4_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "CBG_Ramps_Corners_Coated_C": { + "className": "CBG_Ramps_Corners_Coated_C", + "type": "EST_Custom", + "name": "Coated Concrete Corner Ramps", + "slug": "coated-concrete-corner-ramps", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Ramp_UpCorner_Polished_8x1_C", + "Recipe_Ramp_UpCorner_Polished_8x2_C", + "Recipe_Ramp_UpCorner_Polished_8x4_C", + "Recipe_Ramp_DownCorner_Polished_8x1_C", + "Recipe_Ramp_DownCorner_Polished_8x2_C", + "Recipe_Ramp_DownCorner_Polished_8x4_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_Customizer_PolishedConcrete_FoundationMaterial_C", + "ResourceSink_DiagonalRamps_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "CBG_Ramps_Double_Coated_C": { + "className": "CBG_Ramps_Double_Coated_C", + "type": "EST_Custom", + "name": "Coated Concrete Double Ramps", + "slug": "coated-concrete-double-ramps", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_RampDouble_Polished_8x1_C", + "Recipe_RampDouble_Polished_8x2_C", + "Recipe_RampDouble_Polished_8x4_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_Customizer_PolishedConcrete_FoundationMaterial_C", + "ResourceSink_FoundationExpansionPack_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "CBG_Ramps_InvCorners_Coated_C": { + "className": "CBG_Ramps_InvCorners_Coated_C", + "type": "EST_Custom", + "name": "Coated Concrete Inverted Corner Ramps", + "slug": "coated-concrete-inverted-corner-ramps", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_InvertedRamp_DCorner_Polished_8x1_C", + "Recipe_InvertedRamp_DCorner_Polished_8x2_C", + "Recipe_InvertedRamp_DCorner_Polished_8x4_C", + "Recipe_InvertedRamp_UCorner_Polished_8x1_C", + "Recipe_InvertedRamp_UCorner_Polished_8x2_C", + "Recipe_InvertedRamp_UCorner_Polished_8x4_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_Customizer_PolishedConcrete_FoundationMaterial_C", + "ResourceSink_InvertedCornerRamps_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "CBG_Ramps_Inverted_Coated_C": { + "className": "CBG_Ramps_Inverted_Coated_C", + "type": "EST_Custom", + "name": "Coated Concrete Inverted Ramps", + "slug": "coated-concrete-inverted-ramps", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_InvertedRamp_Polished_8x1_C", + "Recipe_InvertedRamp_Polished_8x2_C", + "Recipe_InvertedRamp_Polished_8x4_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_Customizer_PolishedConcrete_FoundationMaterial_C", + "ResourceSink_InvertedRampPack_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_InvertedRampPack_C": { + "className": "ResourceSink_InvertedRampPack_C", + "type": "EST_ResourceSink", + "name": "Inverted Ramp Set", + "slug": "inverted-ramp-set", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_RampInverted_8x1_C", + "Recipe_RampInverted_8x2_01_C", + "Recipe_Ramp_8x4_Inverted_01_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "CBG_Ramps_Inverted_Concrete_C": { + "className": "CBG_Ramps_Inverted_Concrete_C", + "type": "EST_Custom", + "name": "Concrete Inverted Ramps", + "slug": "concrete-inverted-ramps", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_InvertedRamp_Concrete_8x1_C", + "Recipe_InvertedRamp_Concrete_8x2_C", + "Recipe_InvertedRamp_Concrete_8x4_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_Customizer_Concrete_FoundationMaterial_C", + "ResourceSink_InvertedRampPack_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "CBG_Ramps_Inverted_Metal_C": { + "className": "CBG_Ramps_Inverted_Metal_C", + "type": "EST_Custom", + "name": "Metal Inverted Ramps", + "slug": "metal-inverted-ramps", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_InvertedRamp_Metal_8x1_C", + "Recipe_InvertedRamp_Metal_8x2_C", + "Recipe_InvertedRamp_Metal_8x4_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_Customizer_GripMetal_FoundationMaterial_C", + "ResourceSink_InvertedRampPack_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Ladders_C": { + "className": "ResourceSink_Ladders_C", + "type": "EST_ResourceSink", + "name": "Factory Ladder", + "slug": "factory-ladder", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Ladder_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Walkways_C": { + "className": "ResourceSink_Walkways_C", + "type": "EST_ResourceSink", + "name": "Industrial Walkways", + "slug": "industrial-walkways", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Walkway_Straight_C", + "Recipe_Walkway_Cross_C", + "Recipe_Walkway_T_C", + "Recipe_Walkway_Turn_C", + "Recipe_Walkway_Ramp_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Stairs_C": { + "className": "ResourceSink_Stairs_C", + "type": "EST_ResourceSink", + "name": "Stairs", + "slug": "stairs", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Stairs_Left_01_C", + "Recipe_Stairs_Right_01_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_CurvedFoundationPack_C": { + "className": "ResourceSink_CurvedFoundationPack_C", + "type": "EST_ResourceSink", + "name": "Quarter Pipes Pack", + "slug": "quarter-pipes-pack", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 6.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_QuarterPipe_C", + "Recipe_QuarterPipe_02_C", + "Recipe_QuarterPipeCorner_01_C", + "Recipe_QuarterPipeCorner_02_C", + "Recipe_QuarterPipeCorner_03_C", + "Recipe_QuarterPipeCorner_04_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "CBG_QuarterPipes_Asphalt_C": { + "className": "CBG_QuarterPipes_Asphalt_C", + "type": "EST_Custom", + "name": "Asphalt Quarter PIpes", + "slug": "asphalt-quarter-pipes", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_DownQuarterPipe_Asphalt_8x4_C", + "Recipe_DownQuarterPipe_AsphaltInCorner_8x4_C", + "Recipe_DownQuarterPipe_AsphaltOutCorner_8x4_C", + "Recipe_QuarterPipe_Asphalt_8x4_C", + "Recipe_QuarterPipeInCorner_Asphalt_8x4_C", + "Recipe_QuarterPipeOutCorner_Asphalt_8x4_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_Customizer_Asphalt_FoundationMaterial_C", + "ResourceSink_CurvedFoundationPack_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": false + }, + "CBG_QuarterPipes_Concrete_C": { + "className": "CBG_QuarterPipes_Concrete_C", + "type": "EST_Custom", + "name": "Concrete Quarter PIpes", + "slug": "concrete-quarter-pipes", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_DownQuarterPipe_Concrete_8x4_C", + "Recipe_DownQuarterPipe_ConcreteInCorner_8x4_C", + "Recipe_DownQuarterPipe_ConcreteOutCorner_8x4_C", + "Recipe_QuarterPipe_Concrete_8x4_C", + "Recipe_QuarterPipeInCorner_Concrete_8x4_C", + "Recipe_QuarterPipeOutCorner_Concrete_8x4_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_Customizer_Concrete_FoundationMaterial_C", + "ResourceSink_CurvedFoundationPack_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": false + }, + "CBG_QuarterPipes_GripMetal_C": { + "className": "CBG_QuarterPipes_GripMetal_C", + "type": "EST_Custom", + "name": "Grip Metal Quarter PIpes", + "slug": "grip-metal-quarter-pipes", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_DownQuarterPipe_Grip_8x4_C", + "Recipe_DownQuarterPipe_GripInCorner_8x4_C", + "Recipe_DownQuarterPipe_GripOutCorner_8x4_C", + "Recipe_QuarterPipe_Grip_8x4_C", + "Recipe_QuarterPipeInCorner_Grip_8x4_C", + "Recipe_QuarterPipeOutCorner_Grip_8x4_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_Customizer_GripMetal_FoundationMaterial_C", + "ResourceSink_CurvedFoundationPack_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": false + }, + "CBG_QuarterPipes_Coated_C": { + "className": "CBG_QuarterPipes_Coated_C", + "type": "EST_Custom", + "name": "Polished Concrete Quarter PIpes", + "slug": "polished-concrete-quarter-pipes", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_DownQuarterPipe_ConcretePolished_8x4_C", + "Recipe_DownQuarterPipe_ConcretePolishedInCorner_8x4_C", + "Recipe_DownQuarterPipe_ConcretePolishedOutCorner_8x4_C", + "Recipe_QuarterPipe_ConcretePolished_8x4_C", + "Recipe_QuarterPipeInCorner_ConcretePolished_8x4_C", + "Recipe_QuarterPipeOutCorner_ConcretePolished_8x4_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_Customizer_PolishedConcrete_FoundationMaterial_C", + "ResourceSink_CurvedFoundationPack_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_FactoryCart_C": { + "className": "ResourceSink_FactoryCart_C", + "type": "EST_ResourceSink", + "name": "FICSIT Factory Cart™", + "slug": "ficsit-factory-carttm", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 10.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_FactoryCart_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_CyberWagon_C": { + "className": "ResourceSink_CyberWagon_C", + "type": "EST_ResourceSink", + "name": "Cyber Wagon", + "slug": "cyber-wagon", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 20.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_CyberWagon_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_CyberWagon_Unlock_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_HalfFoundations_C": { + "className": "ResourceSink_HalfFoundations_C", + "type": "EST_ResourceSink", + "name": "Half Foundation Set", + "slug": "half-foundation-set", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 4.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_QuarterPipeMiddle_Ficsit_4x1_C", + "Recipe_QuarterPipeMiddle_Ficsit_4x2_C", + "Recipe_QuarterPipeMiddle_Ficsit_4x4_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "CBG_Half_Foundations_Asphalt_C": { + "className": "CBG_Half_Foundations_Asphalt_C", + "type": "EST_Custom", + "name": "Asphalt Half Foundations", + "slug": "asphalt-half-foundations", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_QuarterPipeMiddle_Asphalt_8x1_C", + "Recipe_QuarterPipeMiddle_Asphalt_8x2_C", + "Recipe_QuarterPipeMiddle_Asphalt_8x4_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_HalfFoundations_C", + "ResourceSink_Customizer_Asphalt_FoundationMaterial_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "CBG_Half_Foundations_Concrete_C": { + "className": "CBG_Half_Foundations_Concrete_C", + "type": "EST_Custom", + "name": "Concrete Half Foundations", + "slug": "concrete-half-foundations", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_QuarterPipeMiddle_Concrete_8x1_C", + "Recipe_QuarterPipeMiddle_Concrete_8x2_C", + "Recipe_QuarterPipeMiddle_Concrete_8x4_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_HalfFoundations_C", + "ResourceSink_Customizer_Concrete_FoundationMaterial_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "CBG_Half_Foundations_Metal_C": { + "className": "CBG_Half_Foundations_Metal_C", + "type": "EST_Custom", + "name": "Grip Metal Half Foundations", + "slug": "grip-metal-half-foundations", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_QuarterPipeMiddle_Grip_8x1_C", + "Recipe_QuarterPipeMiddle_Grip_8x2_C", + "Recipe_QuarterPipeMiddle_Grip_8x4_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_HalfFoundations_C", + "ResourceSink_Customizer_GripMetal_FoundationMaterial_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "CBG_Half_Foundations_Polished_C": { + "className": "CBG_Half_Foundations_Polished_C", + "type": "EST_Custom", + "name": "Polished Concrete Half Foundations", + "slug": "polished-concrete-half-foundations", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_QuarterPipeMiddle_PolishedConcrete_8x1_C", + "Recipe_QuarterPipeMiddle_PolishedConcrete_8x2_C", + "Recipe_QuarterPipeMiddle_PolishedConcrete_8x4_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_HalfFoundations_C", + "ResourceSink_Customizer_PolishedConcrete_FoundationMaterial_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_QuarterPipeExtensions_C": { + "className": "ResourceSink_QuarterPipeExtensions_C", + "type": "EST_ResourceSink", + "name": "Quarter Pipe Extensions Pack", + "slug": "quarter-pipe-extensions-pack", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_QuarterPipeMiddleInCorner_Ficsit_8x1_C", + "Recipe_QuarterPipeMiddleInCorner_Ficsit_8x2_C", + "Recipe_QuarterPipeMiddleInCorner_Ficsit_8x4_C", + "Recipe_QuarterPipeMiddleOutCorner_Ficsit_4x1_C", + "Recipe_QuarterPipeMiddleOutCorner_Ficsit_4x2_C", + "Recipe_QuarterPipeMiddleOutCorner_Ficsit_4x4_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "CBG_Ramps_Inverted_Asphalt_C": { + "className": "CBG_Ramps_Inverted_Asphalt_C", + "type": "EST_Custom", + "name": "Asphalt Inverted Ramps", + "slug": "asphalt-inverted-ramps", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_InvertedRamp_Asphalt_8x1_C", + "Recipe_InvertedRamp_Asphalt_8x2_C", + "Recipe_InvertedRamp_Asphalt_8x4_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_Customizer_Asphalt_FoundationMaterial_C", + "ResourceSink_InvertedRampPack_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_WindowedWalls_C": { + "className": "ResourceSink_WindowedWalls_C", + "type": "EST_ResourceSink", + "name": "Windowed Walls", + "slug": "windowed-walls", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 6.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Wall_Window_8x4_01_C", + "Recipe_Wall_Window_8x4_02_C", + "Recipe_Wall_Window_8x4_03_C", + "Recipe_Wall_Window_8x4_04_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Quartz_1_2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "CBG_Concrete_Walls_Windows_C": { + "className": "CBG_Concrete_Walls_Windows_C", + "type": "EST_Custom", + "name": "Windows Concrete Walls", + "slug": "windows-concrete-walls", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Wall_Concrete_8x4_Window_01_C", + "Recipe_Wall_Concrete_8x4_Window_02_C", + "Recipe_Wall_Concrete_8x4_Window_03_C", + "Recipe_Wall_Concrete_8x4_Window_04_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_Customizer_ConcreteWallMaterial_C", + "ResourceSink_WindowedWalls_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "CBG_Steel_Walls_WIndows_C": { + "className": "CBG_Steel_Walls_WIndows_C", + "type": "EST_Custom", + "name": "Windows Steel Walls", + "slug": "windows-steel-walls", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_SteelWall_8x4_Window_01_C", + "Recipe_SteelWall_8x4_Window_02_C", + "Recipe_SteelWall_8x4_Window_03_C", + "Recipe_SteelWall_8x4_Window_04_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_Customizer_SteelWallMaterial_C", + "ResourceSink_Diagonal_Up_WallSet_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_GateWalls_C": { + "className": "ResourceSink_GateWalls_C", + "type": "EST_ResourceSink", + "name": "Gates", + "slug": "gates", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Wall_Gate_8x4_01_C", + "Recipe_Gate_Automated_8x4_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "CBG_Concrete_Walls_Gates_C": { + "className": "CBG_Concrete_Walls_Gates_C", + "type": "EST_Custom", + "name": "Gates Concrete Walls", + "slug": "gates-concrete-walls", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Wall_Concrete_Gate_8x4_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_Customizer_ConcreteWallMaterial_C", + "ResourceSink_GateWalls_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "CBG_Steel_Walls_Gates_C": { + "className": "CBG_Steel_Walls_Gates_C", + "type": "EST_Custom", + "name": "Gates Steel Walls", + "slug": "gates-steel-walls", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_SteelWall_8x4_Gate_01_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_Customizer_SteelWallMaterial_C", + "ResourceSink_GateWalls_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Tilted_Walls_C": { + "className": "ResourceSink_Tilted_Walls_C", + "type": "EST_ResourceSink", + "name": "Tilted Walls", + "slug": "tilted-walls", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Wall_Orange_Angular_8x4_C", + "Recipe_Wall_Orange_Angular_8x8_C", + "Recipe_Wall_Orange_8x4_Corner_01_C", + "Recipe_Wall_Orange_8x8_Corner_01_C", + "Recipe_Wall_Orange_8x4_Corner_02_C", + "Recipe_Wall_Orange_8x8_Corner_02_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "CBG_Concrete_Walls_Tilted_C": { + "className": "CBG_Concrete_Walls_Tilted_C", + "type": "EST_Custom", + "name": "Concrete Tilted Walls", + "slug": "concrete-tilted-walls", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Wall_Concrete_Angular_8x4_C", + "Recipe_Wall_Concrete_Angular_8x8_C", + "Recipe_Wall_Concrete_8x4_Corner_01_C", + "Recipe_Wall_Concrete_8x8_Corner_01_C", + "Recipe_Wall_Concrete_8x4_Corner_2_C", + "Recipe_Wall_Concrete_8x8_Corner_2_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_Customizer_ConcreteWallMaterial_C", + "ResourceSink_Tilted_Walls_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "CBG_Steel_Walls_Tilted_C": { + "className": "CBG_Steel_Walls_Tilted_C", + "type": "EST_Custom", + "name": "Steel Tilted Walls", + "slug": "steel-tilted-walls", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_WallSet_Steel_Angular_8x4_C", + "Recipe_WallSet_Steel_Angular_8x8_C", + "Recipe_Wall_Steel_8x4_Corner_01_C", + "Recipe_Wall_Steel_8x8_Corner_01_C", + "Recipe_Wall_Steel_8x4_Corner_2_C", + "Recipe_Wall_Steel_8x8_Corner_2_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_Customizer_SteelWallMaterial_C", + "ResourceSink_Tilted_Walls_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_ConveryWalls_Normal_C": { + "className": "ResourceSink_ConveryWalls_Normal_C", + "type": "EST_ResourceSink", + "name": "Conveyor Walls", + "slug": "conveyor-walls", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Wall_Conveyor_8x4_01_C", + "Recipe_Wall_Conveyor_8x4_02_C", + "Recipe_Wall_Conveyor_8x4_03_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_ConveyorWallMount_C": { + "className": "ResourceSink_ConveyorWallMount_C", + "type": "EST_ResourceSink", + "name": "Conveyor Wall Mount", + "slug": "conveyor-wall-mount", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_ConveyorPoleWall_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_ConveyorCeilingMount_C": { + "className": "ResourceSink_ConveyorCeilingMount_C", + "type": "EST_ResourceSink", + "name": "Conveyor Ceiling Mount", + "slug": "conveyor-ceiling-mount", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_ConveyorCeilingAttachment_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_HyperTubeWallAttachements_C": { + "className": "ResourceSink_HyperTubeWallAttachements_C", + "type": "EST_ResourceSink", + "name": "Hypertube Wall Attachments", + "slug": "hypertube-wall-attachments", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_HyperTubeWallSupport_C", + "Recipe_HyperTubeWallHole_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_4-4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_PipelineWallAttachments_C": { + "className": "ResourceSink_PipelineWallAttachments_C", + "type": "EST_ResourceSink", + "name": "Pipeline Wall Attachments", + "slug": "pipeline-wall-attachments", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PipeSupportWall_C", + "Recipe_PipeSupportWallHole_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_PipelineFloorHole_C": { + "className": "ResourceSink_PipelineFloorHole_C", + "type": "EST_ResourceSink", + "name": "Pipeline Floor Hole", + "slug": "pipeline-floor-hole", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_FoundationPassthrough_Pipe_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_WallPowerPoles_C": { + "className": "ResourceSink_WallPowerPoles_C", + "type": "EST_ResourceSink", + "name": "Wall Power Outlets Mk.1", + "slug": "wall-power-outlets-mk-1", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PowerPoleWall_C", + "Recipe_PowerPoleWallDouble_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_WallPowerPolesMK2_C": { + "className": "ResourceSink_WallPowerPolesMK2_C", + "type": "EST_ResourceSink", + "name": "Wall Power Outlets Mk.2", + "slug": "wall-power-outlets-mk-2", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 4.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PowerPoleWallMk2_C", + "Recipe_PowerPoleWallDoubleMk2_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Caterium_4_2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_WallPowerPolesMK3_C": { + "className": "ResourceSink_WallPowerPolesMK3_C", + "type": "EST_ResourceSink", + "name": "Wall Power Outlets Mk.3", + "slug": "wall-power-outlets-mk-3", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PowerPoleWallMk3_C", + "Recipe_PowerPoleWallDoubleMk3_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Caterium_6_2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_CeilingLight_C": { + "className": "ResourceSink_CeilingLight_C", + "type": "EST_ResourceSink", + "name": "Indoor Lighting", + "slug": "indoor-lighting", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_CeilingLight_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Caterium_2_C", + "Schematic_3-4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_LightTower_C": { + "className": "ResourceSink_LightTower_C", + "type": "EST_ResourceSink", + "name": "Flood Lights", + "slug": "flood-lights", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_FloodlightPole_C", + "Recipe_FloodlightWall_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Caterium_2_C", + "Schematic_4-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_StreetLight_C": { + "className": "ResourceSink_StreetLight_C", + "type": "EST_ResourceSink", + "name": "Street Light", + "slug": "street-light", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_StreetLight_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Caterium_2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Statue_Hoggo_C": { + "className": "ResourceSink_Statue_Hoggo_C", + "type": "EST_ResourceSink", + "name": "Silver Hog", + "slug": "silver-hog", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Hog_Statue_C", + "amount": 1.0 + } + ] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_StatueLizardDoggo_C": { + "className": "ResourceSink_StatueLizardDoggo_C", + "type": "EST_ResourceSink", + "name": "Lizard Doggo", + "slug": "lizard-doggo", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 100.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_DoggoStatue_C", + "amount": 1.0 + } + ] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_StatueSpaceGiraffe_C": { + "className": "ResourceSink_StatueSpaceGiraffe_C", + "type": "EST_ResourceSink", + "name": "Confusing Creature", + "slug": "confusing-creature", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 200.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_SpaceGiraffeStatue_C", + "amount": 1.0 + } + ] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_StatueBronzePioneer_C": { + "className": "ResourceSink_StatueBronzePioneer_C", + "type": "EST_ResourceSink", + "name": "Adequate Pioneering", + "slug": "adequate-pioneering", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 25.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_CharacterRunStatue_C", + "amount": 1.0 + } + ] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_StatueGoldPioneer_C": { + "className": "ResourceSink_StatueGoldPioneer_C", + "type": "EST_ResourceSink", + "name": "Satisfactory Pioneering", + "slug": "satisfactory-pioneering", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 150.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_CharacterSpin_Statue_C", + "amount": 1.0 + } + ] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_StatueSilverPioneer_C": { + "className": "ResourceSink_StatueSilverPioneer_C", + "type": "EST_ResourceSink", + "name": "Pretty Good Pioneering", + "slug": "pretty-good-pioneering", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_CharacterClap_Statue_C", + "amount": 1.0 + } + ] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_StatueGoldenNut_C": { + "className": "ResourceSink_StatueGoldenNut_C", + "type": "EST_ResourceSink", + "name": "Golden Nut", + "slug": "golden-nut", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1000.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_GoldenNut_Statue_C", + "amount": 1.0 + } + ] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Customizer_GlassRoofMaterial_C": { + "className": "ResourceSink_Customizer_GlassRoofMaterial_C", + "type": "EST_ResourceSink", + "name": "Glass Roof Material", + "slug": "glass-roof-material", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Material_Roof_Glass_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_Roofs_Basic_C", + "Research_Quartz_1_2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "CBG_Roofs_Basic_Glass_C": { + "className": "CBG_Roofs_Basic_Glass_C", + "type": "EST_Custom", + "name": "Glass Roofs Basic", + "slug": "glass-roofs-basic", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Roof_Window_01_C", + "Recipe_Roof_Window_02_C", + "Recipe_Roof_Window_03_C", + "Recipe_Roof_Window_04_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_Customizer_GlassRoofMaterial_C", + "ResourceSink_Roofs_Basic_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Roofs_Basic_C": { + "className": "ResourceSink_Roofs_Basic_C", + "type": "EST_ResourceSink", + "name": "FICSIT Roofs", + "slug": "ficsit-roofs", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 6.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Roof_Orange_01_C", + "Recipe_Roof_Orange_02_C", + "Recipe_Roof_Orange_03_C", + "Recipe_Roof_Orange_04_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "CBG_Roofs_Corners_Glass_C": { + "className": "CBG_Roofs_Corners_Glass_C", + "type": "EST_Custom", + "name": "Glass Roof Corners", + "slug": "glass-roof-corners", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Roof_Window_InCorner_01_C", + "Recipe_Roof_Window_InCorner_02_C", + "Recipe_Roof_Window_InCorner_03_C", + "Recipe_Roof_Window_OutCorner_01_C", + "Recipe_Roof_Window_OutCorner_02_C", + "Recipe_Roof_Window_OutCorner_03_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_Customizer_GlassRoofMaterial_C", + "ResourceSink_Roofs_Corners_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Roofs_Corners_C": { + "className": "ResourceSink_Roofs_Corners_C", + "type": "EST_ResourceSink", + "name": "FICSIT Roof Corners", + "slug": "ficsit-roof-corners", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 4.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Roof_Orange_InCorner_01_C", + "Recipe_Roof_Orange_InCorner_02_C", + "Recipe_Roof_Orange_InCorner_03_C", + "Recipe_Roof_Orange_OutCorner_01_C", + "Recipe_Roof_Orange_OutCorner_02_C", + "Recipe_Roof_Orange_OutCorner_03_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Customizer_SteelRoofMaterial_C": { + "className": "ResourceSink_Customizer_SteelRoofMaterial_C", + "type": "EST_ResourceSink", + "name": "Metal Roof Material", + "slug": "metal-roof-material", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Material_Roof_Metal_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_Roofs_Basic_C", + "Schematic_3-4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "CBG_Roofs_Basic_Steel_C": { + "className": "CBG_Roofs_Basic_Steel_C", + "type": "EST_Custom", + "name": "Metal Roofs Basic", + "slug": "metal-roofs-basic", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Roof_A_01_C", + "Recipe_Roof_A_02_C", + "Recipe_Roof_A_03_C", + "Recipe_Roof_A_04_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_Customizer_SteelRoofMaterial_C", + "ResourceSink_Roofs_Basic_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "CBG_Roofs_Corners_Steel_C": { + "className": "CBG_Roofs_Corners_Steel_C", + "type": "EST_Custom", + "name": "Metal Roof Corners", + "slug": "metal-roof-corners", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Roof_Metal_InCorner_01_C", + "Recipe_Roof_Metal_InCorner_02_C", + "Recipe_Roof_Metal_InCorner_03_C", + "Recipe_Roof_Metal_OutCorner_01_C", + "Recipe_Roof_Metal_OutCorner_02_C", + "Recipe_Roof_Metal_OutCorner_03_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_Customizer_SteelRoofMaterial_C", + "ResourceSink_Roofs_Corners_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Customizer_TarRoofMaterial_C": { + "className": "ResourceSink_Customizer_TarRoofMaterial_C", + "type": "EST_ResourceSink", + "name": "Tar Roof Material", + "slug": "tar-roof-material", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Material_Roof_Tar_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_Roofs_Basic_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "CBG_Roofs_Basic_Tar_C": { + "className": "CBG_Roofs_Basic_Tar_C", + "type": "EST_Custom", + "name": "Tar Roofs Basic", + "slug": "tar-roofs-basic", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Roof_Tar_01_C", + "Recipe_Roof_Tar_02_C", + "Recipe_Roof_Tar_03_C", + "Recipe_Roof_Tar_04_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_Customizer_TarRoofMaterial_C", + "ResourceSink_Roofs_Basic_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "CBG_Roofs_Corners_Tar_C": { + "className": "CBG_Roofs_Corners_Tar_C", + "type": "EST_Custom", + "name": "Tar Roof Corners", + "slug": "tar-roof-corners", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Roof_Tar_InCorner_01_C", + "Recipe_Roof_Tar_InCorner_02_C", + "Recipe_Roof_Tar_InCorner_03_C", + "Recipe_Roof_Tar_OutCorner_01_C", + "Recipe_Roof_Tar_OutCorner_02_C", + "Recipe_Roof_Tar_OutCorner_03_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_Customizer_TarRoofMaterial_C", + "ResourceSink_Roofs_Corners_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_NoIndicator_PipelineMK2_C": { + "className": "ResourceSink_NoIndicator_PipelineMK2_C", + "type": "EST_ResourceSink", + "name": "Clean Pipeline Mk.2", + "slug": "clean-pipeline-mk-2", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PipelineMK2_NoIndicator_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_6-5_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_NoIndicator_PipelineMK1_C": { + "className": "ResourceSink_NoIndicator_PipelineMK1_C", + "type": "EST_ResourceSink", + "name": "Clean Pipeline Mk.1", + "slug": "clean-pipeline-mk-1", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Pipeline_NoIndicator_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_MedicalBoxSkin_C": { + "className": "ResourceSink_MedicalBoxSkin_C", + "type": "EST_ResourceSink", + "name": "Medical Box - Personal Storage Skin", + "slug": "medical-box-personal-storage-skin", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_StorageMedkit_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_LightControlPanel_C": { + "className": "ResourceSink_LightControlPanel_C", + "type": "EST_ResourceSink", + "name": "Lights Control Panel", + "slug": "lights-control-panel", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_LightsControlPanel_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Caterium_2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_LabelSigns_C": { + "className": "ResourceSink_LabelSigns_C", + "type": "EST_ResourceSink", + "name": "Label Sign Bundle", + "slug": "label-sign-bundle", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_StandaloneWidgetSign_Small_C", + "Recipe_StandaloneWidgetSign_SmallWide_C", + "Recipe_StandaloneWidgetSign_SmallVeryWide_C", + "Recipe_StandaloneWidgetSign_Square_Tiny_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Quartz_1_1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_HyperTubeFloorHole_C": { + "className": "ResourceSink_HyperTubeFloorHole_C", + "type": "EST_ResourceSink", + "name": "Hypertube Floor Hole", + "slug": "hypertube-floor-hole", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_FoundationPassthrough_Hypertube_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_4-4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_HazardBoxSkin_C": { + "className": "ResourceSink_HazardBoxSkin_C", + "type": "EST_ResourceSink", + "name": "Hazard Box - Personal Storage Skin", + "slug": "hazard-box-personal-storage-skin", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_StorageHazard_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_GoldenCup_C": { + "className": "ResourceSink_GoldenCup_C", + "type": "EST_ResourceSink", + "name": "'Employee of the Planet' Cup", + "slug": "employee-of-the-planet-cup", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "BP_EquipmentDescriptorCupGold_C", + "amount": 1.0 + } + ] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_GoldenCart_C": { + "className": "ResourceSink_GoldenCart_C", + "type": "EST_ResourceSink", + "name": "Golden FICSIT Factory Cart™", + "slug": "golden-ficsit-factory-carttm", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_GoldenCart_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_GoldenCart_Unlock_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_FrameWindows_C": { + "className": "ResourceSink_FrameWindows_C", + "type": "EST_ResourceSink", + "name": "Steel-framed Windows", + "slug": "steel-framed-windows", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Wall_Window_Thin_8x4_01_C", + "Recipe_Wall_Window_Thin_8x4_02_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Quartz_1_2_C", + "Schematic_3-4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_FramePillarSet_C": { + "className": "ResourceSink_FramePillarSet_C", + "type": "EST_ResourceSink", + "name": "Frame Pillar Set", + "slug": "frame-pillar-set", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PillarMiddle_Frame_C", + "Recipe_PillarBase_C", + "Recipe_Pillar_Small_Frame_C", + "Recipe_PillarBase_Small_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_FactoryBarrier_C": { + "className": "ResourceSink_FactoryBarrier_C", + "type": "EST_ResourceSink", + "name": "Road Barrier", + "slug": "road-barrier", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Concrete_Barrier_01_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_DisplaySigns_C": { + "className": "ResourceSink_DisplaySigns_C", + "type": "EST_ResourceSink", + "name": "Display Sign Bundle", + "slug": "display-sign-bundle", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_StandaloneWidgetSign_Medium_C", + "Recipe_StandaloneWidgetSign_Portrait_C", + "Recipe_StandaloneWidgetSign_Square_Small_C", + "Recipe_StandaloneWidgetSign_Square_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Quartz_1_1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_ConveyorLiftHole_C": { + "className": "ResourceSink_ConveyorLiftHole_C", + "type": "EST_ResourceSink", + "name": "Conveyor Lift Floor Hole", + "slug": "conveyor-lift-floor-hole", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_FoundationPassthrough_Lift_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_ConcretePillarSet_C": { + "className": "ResourceSink_ConcretePillarSet_C", + "type": "EST_ResourceSink", + "name": "Concrete Pillar Set", + "slug": "concrete-pillar-set", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PillarMiddle_Concrete_C", + "Recipe_PillarBase_C", + "Recipe_Pillar_Small_Concrete_C", + "Recipe_PillarBase_Small_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Catwalks_C": { + "className": "ResourceSink_Catwalks_C", + "type": "EST_ResourceSink", + "name": "Modern Catwalks", + "slug": "modern-catwalks", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Catwalk_Straight_C", + "Recipe_Catwalk_Cross_C", + "Recipe_Catwalk_T_C", + "Recipe_Catwalk_Turn_C", + "Recipe_Catwalk_Ramp_C", + "Recipe_Catwalk_Stairs_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Boombox_C": { + "className": "ResourceSink_Boombox_C", + "type": "EST_ResourceSink", + "name": "The Boombox", + "slug": "the-boombox", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_BoomBox_C", + "amount": 1.0 + } + ] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_BillboardSigns_C": { + "className": "ResourceSink_BillboardSigns_C", + "type": "EST_ResourceSink", + "name": "Billboard Set", + "slug": "billboard-set", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 10.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_StandaloneWidgetSign_Large_C", + "Recipe_StandaloneWidgetSign_Huge_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Quartz_1_1_C", + "Schematic_4-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_BeamSet_C": { + "className": "ResourceSink_BeamSet_C", + "type": "EST_ResourceSink", + "name": "Structural Beam Pack", + "slug": "structural-beam-pack", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 4.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Beam_C", + "Recipe_Beam_Painted_C", + "Recipe_Beam_Support_C", + "Recipe_Beam_Connector_C", + "Recipe_Beam_Connector_Double_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_RifleAmmoTurbo_C": { + "className": "ResourceSink_RifleAmmoTurbo_C", + "type": "EST_ResourceSink", + "name": "Turbo Rifle Ammo Pack", + "slug": "turbo-rifle-ammo-pack", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_CartridgeChaos_C", + "amount": 250.0 + } + ] + }, + "requiredSchematics": [ + "Research_Sulfur_5_2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_RifleAmmoHoming_C": { + "className": "ResourceSink_RifleAmmoHoming_C", + "type": "EST_ResourceSink", + "name": "Homing Rifle Ammo Pack", + "slug": "homing-rifle-ammo-pack", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_CartridgeSmartProjectile_C", + "amount": 250.0 + } + ] + }, + "requiredSchematics": [ + "Research_Caterium_6_3_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_RebarStun_C": { + "className": "ResourceSink_RebarStun_C", + "type": "EST_ResourceSink", + "name": "Stun Rebar Pack", + "slug": "stun-rebar-pack", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Rebar_Stunshot_C", + "amount": 50.0 + } + ] + }, + "requiredSchematics": [ + "Research_Caterium_3_2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_RebarShatter_C": { + "className": "ResourceSink_RebarShatter_C", + "type": "EST_ResourceSink", + "name": "Shatter Rebar Pack", + "slug": "shatter-rebar-pack", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Rebar_Spreadshot_C", + "amount": 50.0 + } + ] + }, + "requiredSchematics": [ + "Research_Quartz_2_1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_RebarExplosive_C": { + "className": "ResourceSink_RebarExplosive_C", + "type": "EST_ResourceSink", + "name": "Explosive Rebar Pack", + "slug": "explosive-rebar-pack", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Rebar_Explosive_C", + "amount": 50.0 + } + ] + }, + "requiredSchematics": [ + "Research_Sulfur_4_2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_RadiationFilters_C": { + "className": "ResourceSink_RadiationFilters_C", + "type": "EST_ResourceSink", + "name": "Radiation Filters", + "slug": "radiation-filters", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_HazmatFilter_C", + "amount": 10.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_7-3_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_NobeliskPulse_C": { + "className": "ResourceSink_NobeliskPulse_C", + "type": "EST_ResourceSink", + "name": "Pulse Nobelisk Pack", + "slug": "pulse-nobelisk-pack", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_NobeliskShockwave_C", + "amount": 25.0 + } + ] + }, + "requiredSchematics": [ + "Research_Quartz_3_4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_NobeliskGas_C": { + "className": "ResourceSink_NobeliskGas_C", + "type": "EST_ResourceSink", + "name": "Gas Nobelisk Pack", + "slug": "gas-nobelisk-pack", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_NobeliskGas_C", + "amount": 25.0 + } + ] + }, + "requiredSchematics": [ + "Research_Mycelia_8_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_NobeliskCluster_C": { + "className": "ResourceSink_NobeliskCluster_C", + "type": "EST_ResourceSink", + "name": "Cluster Nobelisk Pack", + "slug": "cluster-nobelisk-pack", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_NobeliskCluster_C", + "amount": 25.0 + } + ] + }, + "requiredSchematics": [ + "Research_Sulfur_4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_HealthPack_C": { + "className": "ResourceSink_HealthPack_C", + "type": "EST_ResourceSink", + "name": "Health Pack", + "slug": "health-pack", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Medkit_C", + "amount": 5.0 + } + ] + }, + "requiredSchematics": [ + "Research_AOrgans_2_C", + "Research_Nutrients_4_C", + "Research_Mycelia_5_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_GasFilters_C": { + "className": "ResourceSink_GasFilters_C", + "type": "EST_ResourceSink", + "name": "Gas Filters", + "slug": "gas-filters", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Filter_C", + "amount": 25.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_6-4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Explosives_C": { + "className": "ResourceSink_Explosives_C", + "type": "EST_ResourceSink", + "name": "Nobelisk Pack", + "slug": "nobelisk-pack", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_NobeliskExplosive_C", + "amount": 25.0 + } + ] + }, + "requiredSchematics": [ + "Research_Sulfur_3_1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_ColoredAmmoPack_C": { + "className": "ResourceSink_ColoredAmmoPack_C", + "type": "EST_ResourceSink", + "name": "Color Cartridge", + "slug": "color-cartridge", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_ColorCartridge_C", + "amount": 50.0 + } + ] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_CoffeeCup_C": { + "className": "ResourceSink_CoffeeCup_C", + "type": "EST_ResourceSink", + "name": "FICSIT™ Coffee Cup", + "slug": "ficsittm-coffee-cup", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "BP_EquipmentDescriptorCup_C", + "amount": 1.0 + } + ] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Beacons_C": { + "className": "ResourceSink_Beacons_C", + "type": "EST_Custom", + "name": "Beacons", + "slug": "beacons", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "BP_EquipmentDescriptorBeacon_C", + "amount": 10.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_1-3_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_AmmoPack_C": { + "className": "ResourceSink_AmmoPack_C", + "type": "EST_ResourceSink", + "name": "Iron Rebar Pack", + "slug": "iron-rebar-pack", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_SpikedRebar_C", + "amount": 50.0 + } + ] + }, + "requiredSchematics": [ + "Research_ACarapace_2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_AdvancedAmmoPack_C": { + "className": "ResourceSink_AdvancedAmmoPack_C", + "type": "EST_ResourceSink", + "name": "Rifle Ammo Pack", + "slug": "rifle-ammo-pack", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_CartridgeStandard_C", + "amount": 250.0 + } + ] + }, + "requiredSchematics": [ + "Research_Sulfur_4_1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Wire_C": { + "className": "ResourceSink_Wire_C", + "type": "EST_ResourceSink", + "name": "Wire", + "slug": "wire", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Wire_C", + "amount": 500.0 + } + ] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Screw_C": { + "className": "ResourceSink_Screw_C", + "type": "EST_ResourceSink", + "name": "Screw", + "slug": "screw", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_IronScrew_C", + "amount": 500.0 + } + ] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Rod_C": { + "className": "ResourceSink_Rod_C", + "type": "EST_ResourceSink", + "name": "Iron Rod", + "slug": "iron-rod", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_IronRod_C", + "amount": 200.0 + } + ] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_QuartzCrystal_C": { + "className": "ResourceSink_QuartzCrystal_C", + "type": "EST_ResourceSink", + "name": "Quartz Crystal", + "slug": "quartz-crystal", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_QuartzCrystal_C", + "amount": 200.0 + } + ] + }, + "requiredSchematics": [ + "Research_Quartz_1_1_C", + "Schematic_7-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Plate_C": { + "className": "ResourceSink_Plate_C", + "type": "EST_ResourceSink", + "name": "Iron Plate", + "slug": "iron-plate", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_IronPlate_C", + "amount": 200.0 + } + ] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Concrete_C": { + "className": "ResourceSink_Concrete_C", + "type": "EST_ResourceSink", + "name": "Concrete", + "slug": "concrete", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Cement_C", + "amount": 500.0 + } + ] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Cable_C": { + "className": "ResourceSink_Cable_C", + "type": "EST_ResourceSink", + "name": "Cable", + "slug": "cable", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Cable_C", + "amount": 200.0 + } + ] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Biomass_C": { + "className": "ResourceSink_Biomass_C", + "type": "EST_ResourceSink", + "name": "Biomass", + "slug": "biomass", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_GenericBiomass_C", + "amount": 200.0 + } + ] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Rotor_C": { + "className": "ResourceSink_Rotor_C", + "type": "EST_ResourceSink", + "name": "Rotor", + "slug": "rotor", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Rotor_C", + "amount": 100.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_2-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_ReinforcedIronPlate_C": { + "className": "ResourceSink_ReinforcedIronPlate_C", + "type": "EST_ResourceSink", + "name": "Reinforced Iron Plate", + "slug": "reinforced-iron-plate", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 100.0 + } + ] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Quickwire_C": { + "className": "ResourceSink_Quickwire_C", + "type": "EST_ResourceSink", + "name": "Quickwire", + "slug": "quickwire", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 500.0 + } + ] + }, + "requiredSchematics": [ + "Research_Caterium_2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_ModularFrame_C": { + "className": "ResourceSink_ModularFrame_C", + "type": "EST_ResourceSink", + "name": "Modular Frame", + "slug": "modular-frame", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 4.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_ModularFrame_C", + "amount": 50.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_2-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Fabric_C": { + "className": "ResourceSink_Fabric_C", + "type": "EST_ResourceSink", + "name": "Fabric", + "slug": "fabric", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Fabric_C", + "amount": 100.0 + } + ] + }, + "requiredSchematics": [ + "Research_Mycelia_2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_CopperSheet_C": { + "className": "ResourceSink_CopperSheet_C", + "type": "EST_ResourceSink", + "name": "Copper Sheet", + "slug": "copper-sheet", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_CopperSheet_C", + "amount": 200.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_2-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Biofuel_C": { + "className": "ResourceSink_Biofuel_C", + "type": "EST_ResourceSink", + "name": "Biofuel", + "slug": "biofuel", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Biofuel_C", + "amount": 200.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_2-2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_AILimiter_C": { + "className": "ResourceSink_AILimiter_C", + "type": "EST_ResourceSink", + "name": "AI Limiter", + "slug": "ai-limiter", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_CircuitBoardHighSpeed_C", + "amount": 100.0 + } + ] + }, + "requiredSchematics": [ + "Research_Caterium_4_1_C", + "Schematic_7-4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_SteelPipe_C": { + "className": "ResourceSink_SteelPipe_C", + "type": "EST_ResourceSink", + "name": "Steel Pipe", + "slug": "steel-pipe", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_SteelPipe_C", + "amount": 200.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_3-4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_SteelBeam_C": { + "className": "ResourceSink_SteelBeam_C", + "type": "EST_ResourceSink", + "name": "Steel Beam", + "slug": "steel-beam", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_SteelPlate_C", + "amount": 200.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_3-4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_BlackPowder_C": { + "className": "ResourceSink_BlackPowder_C", + "type": "EST_ResourceSink", + "name": "Black Powder", + "slug": "black-powder", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Gunpowder_C", + "amount": 200.0 + } + ] + }, + "requiredSchematics": [ + "Research_Sulfur_1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Stator_C": { + "className": "ResourceSink_Stator_C", + "type": "EST_ResourceSink", + "name": "Stator", + "slug": "stator", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Stator_C", + "amount": 100.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_4-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_EncasedIndustrialBeam_C": { + "className": "ResourceSink_EncasedIndustrialBeam_C", + "type": "EST_ResourceSink", + "name": "Encased Industrial Beam", + "slug": "encased-industrial-beam", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 100.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_4-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_CompactedCoal_C": { + "className": "ResourceSink_CompactedCoal_C", + "type": "EST_ResourceSink", + "name": "Compacted Coal", + "slug": "compacted-coal", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_CompactedCoal_C", + "amount": 100.0 + } + ] + }, + "requiredSchematics": [ + "Research_Sulfur_CompactedCoal_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_SmokelessPowder_C": { + "className": "ResourceSink_SmokelessPowder_C", + "type": "EST_ResourceSink", + "name": "Smokeless Powder", + "slug": "smokeless-powder", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_GunpowderMK2_C", + "amount": 100.0 + } + ] + }, + "requiredSchematics": [ + "Research_Sulfur_3_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Rubber_C": { + "className": "ResourceSink_Rubber_C", + "type": "EST_ResourceSink", + "name": "Rubber", + "slug": "rubber", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Rubber_C", + "amount": 200.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Plastic_C": { + "className": "ResourceSink_Plastic_C", + "type": "EST_ResourceSink", + "name": "Plastic", + "slug": "plastic", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Plastic_C", + "amount": 200.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_PetroleumCoke_C": { + "className": "ResourceSink_PetroleumCoke_C", + "type": "EST_Custom", + "name": "Petroleum Coke", + "slug": "petroleum-coke", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_PetroleumCoke_C", + "amount": 200.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Motor_C": { + "className": "ResourceSink_Motor_C", + "type": "EST_ResourceSink", + "name": "Motor", + "slug": "motor", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Motor_C", + "amount": 50.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_4-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_HighSpeedConnector_C": { + "className": "ResourceSink_HighSpeedConnector_C", + "type": "EST_ResourceSink", + "name": "High-Speed Connector", + "slug": "high-speed-connector", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 4.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_HighSpeedConnector_C", + "amount": 100.0 + } + ] + }, + "requiredSchematics": [ + "Research_Caterium_5_C", + "Schematic_7-4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_EmptyCanister_C": { + "className": "ResourceSink_EmptyCanister_C", + "type": "EST_ResourceSink", + "name": "Empty Canister", + "slug": "empty-canister", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_FluidCanister_C", + "amount": 100.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_CrystalOscillator_C": { + "className": "ResourceSink_CrystalOscillator_C", + "type": "EST_ResourceSink", + "name": "Crystal Oscillator", + "slug": "crystal-oscillator", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 4.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_CrystalOscillator_C", + "amount": 100.0 + } + ] + }, + "requiredSchematics": [ + "Research_Quartz_2_C", + "Schematic_7-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_CircuitBoard_C": { + "className": "ResourceSink_CircuitBoard_C", + "type": "EST_ResourceSink", + "name": "Circuit Board", + "slug": "circuit-board", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_CircuitBoard_C", + "amount": 200.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_PolymerResin_C": { + "className": "ResourceSink_PolymerResin_C", + "type": "EST_Custom", + "name": "Polymer Resin", + "slug": "polymer-resin", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_PolymerResin_C", + "amount": 200.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_PackagedTurboFuel_C": { + "className": "ResourceSink_PackagedTurboFuel_C", + "type": "EST_ResourceSink", + "name": "Packaged Turbofuel", + "slug": "packaged-turbofuel", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 4.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_TurboFuel_C", + "amount": 100.0 + } + ] + }, + "requiredSchematics": [ + "Research_Sulfur_TurboFuel_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_PackagedFuel_C": { + "className": "ResourceSink_PackagedFuel_C", + "type": "EST_ResourceSink", + "name": "Packaged Fuel", + "slug": "packaged-fuel", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Fuel_C", + "amount": 100.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_5-4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_PackagedBiofuel_C": { + "className": "ResourceSink_PackagedBiofuel_C", + "type": "EST_ResourceSink", + "name": "Packaged Liquid Biofuel", + "slug": "packaged-liquid-biofuel", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_PackagedBiofuel_C", + "amount": 100.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_5-4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_HeavyModularFrame_C": { + "className": "ResourceSink_HeavyModularFrame_C", + "type": "EST_ResourceSink", + "name": "Heavy Modular Frame", + "slug": "heavy-modular-frame", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 6.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 50.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_5-2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Computer_C": { + "className": "ResourceSink_Computer_C", + "type": "EST_ResourceSink", + "name": "Computer", + "slug": "computer", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 6.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Computer_C", + "amount": 50.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_5-2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_TurboMotor_C": { + "className": "ResourceSink_TurboMotor_C", + "type": "EST_ResourceSink", + "name": "Turbo Motor", + "slug": "turbo-motor", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 8.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_MotorLightweight_C", + "amount": 50.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_8-4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_SuperComputer_C": { + "className": "ResourceSink_SuperComputer_C", + "type": "EST_ResourceSink", + "name": "Supercomputer", + "slug": "supercomputer", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 8.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_ComputerSuper_C", + "amount": 50.0 + } + ] + }, + "requiredSchematics": [ + "Research_Caterium_6_1_C", + "Schematic_7-4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Silica_C": { + "className": "ResourceSink_Silica_C", + "type": "EST_ResourceSink", + "name": "Silica", + "slug": "silica", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Silica_C", + "amount": 200.0 + } + ] + }, + "requiredSchematics": [ + "Research_Quartz_1_2_C", + "Schematic_7-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_RadioControlUnit_C": { + "className": "ResourceSink_RadioControlUnit_C", + "type": "EST_ResourceSink", + "name": "Radio Control Unit", + "slug": "radio-control-unit", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 7.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_ModularFrameLightweight_C", + "amount": 50.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_7-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_HeatSink_C": { + "className": "ResourceSink_HeatSink_C", + "type": "EST_ResourceSink", + "name": "Heat Sink", + "slug": "heat-sink", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_AluminumPlateReinforced_C", + "amount": 100.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_8-2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Battery_C": { + "className": "ResourceSink_Battery_C", + "type": "EST_ResourceSink", + "name": "Battery", + "slug": "battery", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Battery_C", + "amount": 200.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_7-4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_AluminumCasing_C": { + "className": "ResourceSink_AluminumCasing_C", + "type": "EST_ResourceSink", + "name": "Aluminum Casing", + "slug": "aluminum-casing", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_AluminumCasing_C", + "amount": 200.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_7-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_AlcladSheet_C": { + "className": "ResourceSink_AlcladSheet_C", + "type": "EST_ResourceSink", + "name": "Alclad Aluminum Sheet", + "slug": "alclad-aluminum-sheet", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_AluminumPlate_C", + "amount": 200.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_7-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_PressureConversionCube_C": { + "className": "ResourceSink_PressureConversionCube_C", + "type": "EST_ResourceSink", + "name": "Pressure Conversion Cube", + "slug": "pressure-conversion-cube", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 8.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_PressureConversionCube_C", + "amount": 50.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_8-5_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_FusedModularFrame_C": { + "className": "ResourceSink_FusedModularFrame_C", + "type": "EST_ResourceSink", + "name": "Fused Modular Frame", + "slug": "fused-modular-frame", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 7.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_ModularFrameFused_C", + "amount": 50.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_8-2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_EmptyFluidTank_C": { + "className": "ResourceSink_EmptyFluidTank_C", + "type": "EST_ResourceSink", + "name": "Empty Fluid Tank", + "slug": "empty-fluid-tank", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_GasTank_C", + "amount": 100.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_8-2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_ElectromagneticControlRod_C": { + "className": "ResourceSink_ElectromagneticControlRod_C", + "type": "EST_ResourceSink", + "name": "Electromagnetic Control Rod", + "slug": "electromagnetic-control-rod", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 4.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_ElectromagneticControlRod_C", + "amount": 100.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_8-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_CopperPowder_C": { + "className": "ResourceSink_CopperPowder_C", + "type": "EST_ResourceSink", + "name": "Copper Powder", + "slug": "copper-powder", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_CopperDust_C", + "amount": 500.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_8-5_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_CoolingSystem_C": { + "className": "ResourceSink_CoolingSystem_C", + "type": "EST_ResourceSink", + "name": "Cooling System", + "slug": "cooling-system", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_CoolingSystem_C", + "amount": 100.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_8-2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Zones_FoundationPatterns_C": { + "className": "ResourceSink_Zones_FoundationPatterns_C", + "type": "EST_ResourceSink", + "name": "Factory Zone Patterns", + "slug": "factory-zone-patterns", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Pattern_ZoneFull_C", + "Recipe_Pattern_ZoneHalf_C", + "Recipe_Pattern_ZoneQuarter_C", + "Recipe_Pattern_ZoneLine_C", + "Recipe_Pattern_Remover_Zones_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Pathways_FoundationPatterns_C": { + "className": "ResourceSink_Pathways_FoundationPatterns_C", + "type": "EST_ResourceSink", + "name": "Pathway Patterns", + "slug": "pathway-patterns", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 6.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Pattern_PathStraight_C", + "Recipe_Pattern_PathCorner_C", + "Recipe_Pattern_PathSplit_C", + "Recipe_Pattern_PathCross_C", + "Recipe_Pattern_PathPioneer_C", + "Recipe_Pattern_PathCart_C", + "Recipe_Pattern_PathZebra_C", + "Recipe_Pattern_Remover_Paths_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Number_FoundationPatterns_C": { + "className": "ResourceSink_Number_FoundationPatterns_C", + "type": "EST_ResourceSink", + "name": "Number Patterns", + "slug": "number-patterns", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Pattern_Number0_C", + "Recipe_Pattern_Number1_C", + "Recipe_Pattern_Number2_C", + "Recipe_Pattern_Number3_C", + "Recipe_Pattern_Number4_C", + "Recipe_Pattern_Number5_C", + "Recipe_Pattern_Number6_C", + "Recipe_Pattern_Number7_C", + "Recipe_Pattern_Number8_C", + "Recipe_Pattern_Number9_C", + "Recipe_Pattern_Remover_Numbers_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_IconsTransport_FoundationPatterns_C": { + "className": "ResourceSink_IconsTransport_FoundationPatterns_C", + "type": "EST_ResourceSink", + "name": "Transportation Icon Patterns", + "slug": "transportation-icon-patterns", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Pattern_Icon_Tractor_C", + "Recipe_Pattern_Icon_Truck_C", + "Recipe_Pattern_Icon_Explorer_C", + "Recipe_Pattern_Icon_Cart_C", + "Recipe_Pattern_NO_Cart_C", + "Recipe_Pattern_Icon_Parking_C", + "Recipe_Pattern_NO_Parking_C", + "Recipe_Pattern_FullZebra_C", + "Recipe_Pattern_Remover_Icons_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_IconsFactory_FoundationPatterns_C": { + "className": "ResourceSink_IconsFactory_FoundationPatterns_C", + "type": "EST_ResourceSink", + "name": "Factory Icon Patterns", + "slug": "factory-icon-patterns", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Pattern_Icon_Factory_C", + "Recipe_Pattern_Icon_Power_C", + "Recipe_Pattern_Icon_Storage_C", + "Recipe_Pattern_Icon_Nuclear_C", + "Recipe_Pattern_Icon_Liquid_C", + "Recipe_Pattern_Icon_StopCross_C", + "Recipe_Pattern_Icon_Pioneer_C", + "Recipe_Pattern_NO_Pioneer_C", + "Recipe_Pattern_Remover_Icons_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_FullLines_FoundationPatterns_C": { + "className": "ResourceSink_FullLines_FoundationPatterns_C", + "type": "EST_ResourceSink", + "name": "Solid Line Patterns", + "slug": "solid-line-patterns", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Pattern_LineCentre_C", + "Recipe_Pattern_LineCentreCorner_C", + "Recipe_Pattern_LineSplit_C", + "Recipe_Pattern_LineCross_C", + "Recipe_Pattern_LineSide_C", + "Recipe_Pattern_LineSideCorner_C", + "Recipe_Pattern_LineDouble_C", + "Recipe_Pattern_Remover_Lines_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_DotLines_FoundationPatterns_C": { + "className": "ResourceSink_DotLines_FoundationPatterns_C", + "type": "EST_ResourceSink", + "name": "Dotted Line Patterns", + "slug": "dotted-line-patterns", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 4.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Pattern_DottedCentre_C", + "Recipe_Pattern_DottedCentreCorner_C", + "Recipe_Pattern_DottedSplit_C", + "Recipe_Pattern_DottedCross_C", + "Recipe_Pattern_DottedSide_C", + "Recipe_Pattern_DottedSideCorner_C", + "Recipe_Pattern_DottedDouble_C", + "Recipe_Pattern_Remover_Lines_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Arrows_FoundationPatterns_C": { + "className": "ResourceSink_Arrows_FoundationPatterns_C", + "type": "EST_ResourceSink", + "name": "Arrow Patterns", + "slug": "arrow-patterns", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Pattern_ArrowStraight_C", + "Recipe_Pattern_ArrowLeft_C", + "Recipe_Pattern_ArrowRight_C", + "Recipe_Pattern_ArrowBack_C", + "Recipe_Pattern_NO_ArrowStraight_C", + "Recipe_Pattern_NO_ArrowLeft_C", + "Recipe_Pattern_NO_ArrowRight_C", + "Recipe_Pattern_Remover_Arrows_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "CBG_PatternRemoval_C": { + "className": "CBG_PatternRemoval_C", + "type": "EST_Custom", + "name": "Pattern Removal", + "slug": "pattern-removal", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Pattern_Remover_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "Schematic_SongsOfConquest_C": { + "className": "Schematic_SongsOfConquest_C", + "type": "EST_Custom", + "name": "Songs of Conquest Boombox Tape", + "slug": "songs-of-conquest-boombox-tape", + "cost": [], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_Sanctum2_C": { + "className": "Schematic_Sanctum2_C", + "type": "EST_ResourceSink", + "name": "Sanctum 2 Boombox Tape", + "slug": "sanctum-2-boombox-tape", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_Sanctum_C": { + "className": "Schematic_Sanctum_C", + "type": "EST_ResourceSink", + "name": "Sanctum Boombox Tape", + "slug": "sanctum-boombox-tape", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_LeMichael_C": { + "className": "Schematic_LeMichael_C", + "type": "EST_ResourceSink", + "name": "Le Michael Boombox Tape", + "slug": "le-michael-boombox-tape", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_JoelSyntholm_C": { + "className": "Schematic_JoelSyntholm_C", + "type": "EST_ResourceSink", + "name": "Joel Syntholm Boombox Tape", + "slug": "joel-syntholm-boombox-tape", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_Huntdown_C": { + "className": "Schematic_Huntdown_C", + "type": "EST_Custom", + "name": "Huntdown Boombox Tape", + "slug": "huntdown-boombox-tape", + "cost": [], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_Goat_C": { + "className": "Schematic_Goat_C", + "type": "EST_ResourceSink", + "name": "Goat Music Boombox Tape", + "slug": "goat-music-boombox-tape", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_DeepRockGalactic_C": { + "className": "Schematic_DeepRockGalactic_C", + "type": "EST_Custom", + "name": "Deep Rock Galactic Boombox Tape", + "slug": "deep-rock-galactic-boombox-tape", + "cost": [], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_AbsoluteFicsit_C": { + "className": "Schematic_AbsoluteFicsit_C", + "type": "EST_ResourceSink", + "name": "Absolute FICSIT Boombox Tape", + "slug": "absolute-ficsit-boombox-tape", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_Tutorial1_C": { + "className": "Schematic_Tutorial1_C", + "type": "EST_Tutorial", + "name": "HUB Upgrade 1", + "slug": "hub-upgrade-1", + "cost": [ + { + "item": "Desc_IronRod_C", + "amount": 10.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Workshop_C", + "Recipe_PortableMiner_C" + ], + "scannerResources": [], + "inventorySlots": 3, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": false + }, + "Schematic_Tutorial1_5_C": { + "className": "Schematic_Tutorial1_5_C", + "type": "EST_Tutorial", + "name": "HUB Upgrade 2", + "slug": "hub-upgrade-2", + "cost": [ + { + "item": "Desc_IronRod_C", + "amount": 20.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 10.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_SmelterBasicMk1_C", + "Recipe_PowerLine_C", + "Recipe_IngotCopper_C", + "Recipe_Wire_C", + "Recipe_Cable_C" + ], + "scannerResources": [ + "Desc_OreCopper_C" + ], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_Tutorial1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": false + }, + "Schematic_Tutorial2_C": { + "className": "Schematic_Tutorial2_C", + "type": "EST_Tutorial", + "name": "HUB Upgrade 3", + "slug": "hub-upgrade-3", + "cost": [ + { + "item": "Desc_IronPlate_C", + "amount": 20.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 20.0 + }, + { + "item": "Desc_Wire_C", + "amount": 20.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_ConstructorMk1_C", + "Recipe_PowerPoleMk1_C", + "Recipe_Concrete_C", + "Recipe_Screw_C", + "Recipe_IronPlateReinforced_C" + ], + "scannerResources": [ + "Desc_Stone_C" + ], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_Tutorial1_5_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": false + }, + "Schematic_Tutorial3_C": { + "className": "Schematic_Tutorial3_C", + "type": "EST_Tutorial", + "name": "HUB Upgrade 4", + "slug": "hub-upgrade-4", + "cost": [ + { + "item": "Desc_IronPlate_C", + "amount": 75.0 + }, + { + "item": "Desc_Cable_C", + "amount": 20.0 + }, + { + "item": "Desc_Cement_C", + "amount": 10.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_ConveyorPole_C", + "Recipe_ConveyorBeltMk1_C" + ], + "scannerResources": [], + "inventorySlots": 3, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_Tutorial2_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": false + }, + "Schematic_Tutorial4_C": { + "className": "Schematic_Tutorial4_C", + "type": "EST_Tutorial", + "name": "HUB Upgrade 5", + "slug": "hub-upgrade-5", + "cost": [ + { + "item": "Desc_IronRod_C", + "amount": 75.0 + }, + { + "item": "Desc_Cable_C", + "amount": 50.0 + }, + { + "item": "Desc_Cement_C", + "amount": 20.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_MinerMk1_C", + "Recipe_StorageContainerMk1_C" + ], + "scannerResources": [], + "inventorySlots": 3, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_Tutorial3_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": false + }, + "Schematic_Tutorial5_C": { + "className": "Schematic_Tutorial5_C", + "type": "EST_Tutorial", + "name": "HUB Upgrade 6", + "slug": "hub-upgrade-6", + "cost": [ + { + "item": "Desc_IronRod_C", + "amount": 100.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 100.0 + }, + { + "item": "Desc_Wire_C", + "amount": 100.0 + }, + { + "item": "Desc_Cement_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_SpaceElevator_C", + "Recipe_GeneratorBiomass_C", + "Recipe_Biomass_Wood_C", + "Recipe_Biomass_Leaves_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_Tutorial4_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": false + }, + "Schematic_XMassTree_C": { + "className": "Schematic_XMassTree_C", + "type": "EST_Custom", + "name": "", + "slug": "", + "cost": [], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Ficsmas_Schematic_SkinBundle_2_C": { + "className": "Ficsmas_Schematic_SkinBundle_2_C", + "type": "EST_Custom", + "name": "Customizer: Premium FICSMAS Skin", + "slug": "customizer-premium-ficsmas-skin", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_SkinFicsmas_Premium_C", + "Recipe_SkinRemover_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "Ficsmas_Schematic_SkinBundle_1_C": { + "className": "Ficsmas_Schematic_SkinBundle_1_C", + "type": "EST_Custom", + "name": "Customizer: Basic FICSMAS Skin", + "slug": "customizer-basic-ficsmas-skin", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_SkinFicsmas_Default_C", + "Recipe_SkinRemover_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "Ficsmas_Schematic_Fireworks_C": { + "className": "Ficsmas_Schematic_Fireworks_C", + "type": "EST_Custom", + "name": "Equipment: Fireworks", + "slug": "equipment-fireworks", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Fireworks_01_C", + "Recipe_Fireworks_02_C", + "Recipe_Fireworks_03_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "Ficsmas_Schematic_FingerGun_Emote_C": { + "className": "Ficsmas_Schematic_FingerGun_Emote_C", + "type": "EST_Custom", + "name": "Emote: Finger Guns!", + "slug": "emote-finger-guns", + "cost": [], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + } + }, + "generators": { + "Desc_GeneratorCoal_C": { + "className": "Desc_GeneratorCoal_C", + "fuel": [ + "Desc_Coal_C", + "Desc_CompactedCoal_C", + "Desc_PetroleumCoke_C" + ], + "powerProduction": 75, + "powerProductionExponent": 1.6, + "waterToPowerRatio": 10.0 + }, + "Desc_GeneratorNuclear_C": { + "className": "Desc_GeneratorNuclear_C", + "fuel": [ + "Desc_NuclearFuelRod_C", + "Desc_PlutoniumFuelRod_C" + ], + "powerProduction": 2500, + "powerProductionExponent": 1.6, + "waterToPowerRatio": 1.6 + }, + "Desc_GeneratorFuel_C": { + "className": "Desc_GeneratorFuel_C", + "fuel": [ + "Desc_LiquidFuel_C", + "Desc_LiquidTurboFuel_C", + "Desc_LiquidBiofuel_C" + ], + "powerProduction": 150, + "powerProductionExponent": 1.6, + "waterToPowerRatio": 0.0 + }, + "Desc_GeneratorBiomass_C": { + "className": "Desc_GeneratorBiomass_C", + "fuel": [ + "Desc_Biofuel_C", + "Desc_Fabric_C", + "Desc_FlowerPetals_C", + "Desc_GenericBiomass_C", + "Desc_HatcherParts_C", + "Desc_HogParts_C", + "Desc_Leaves_C", + "Desc_Mycelia_C", + "Desc_PackagedBiofuel_C", + "Desc_SpitterParts_C", + "Desc_StingerParts_C", + "Desc_Wood_C" + ], + "powerProduction": 30, + "powerProductionExponent": 1.6, + "waterToPowerRatio": 0.0 + } + }, + "resources": { + "Desc_Water_C": { + "item": "Desc_Water_C", + "pingColor": { + "r": 122, + "g": 176, + "b": 212, + "a": 255 + }, + "speed": 1 + }, + "Desc_OreIron_C": { + "item": "Desc_OreIron_C", + "pingColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "speed": 1 + }, + "Desc_Stone_C": { + "item": "Desc_Stone_C", + "pingColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "speed": 1 + }, + "Desc_Coal_C": { + "item": "Desc_Coal_C", + "pingColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "speed": 1 + }, + "Desc_Sulfur_C": { + "item": "Desc_Sulfur_C", + "pingColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "speed": 1 + }, + "Desc_LiquidOil_C": { + "item": "Desc_LiquidOil_C", + "pingColor": { + "r": 25, + "g": 0, + "b": 25, + "a": 255 + }, + "speed": 1 + }, + "Desc_RawQuartz_C": { + "item": "Desc_RawQuartz_C", + "pingColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "speed": 1 + }, + "Desc_OreCopper_C": { + "item": "Desc_OreCopper_C", + "pingColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "speed": 1 + }, + "Desc_OreGold_C": { + "item": "Desc_OreGold_C", + "pingColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "speed": 1 + }, + "Desc_OreUranium_C": { + "item": "Desc_OreUranium_C", + "pingColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "speed": 1 + }, + "Desc_NitrogenGas_C": { + "item": "Desc_NitrogenGas_C", + "pingColor": { + "r": 89, + "g": 89, + "b": 89, + "a": 255 + }, + "speed": 1 + }, + "Desc_OreBauxite_C": { + "item": "Desc_OreBauxite_C", + "pingColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "speed": 1 + } + }, + "miners": { + "Desc_OilPump_C": { + "className": "Desc_OilPump_C", + "allowedResources": [ + "Desc_LiquidOil_C" + ], + "allowLiquids": true, + "allowSolids": false, + "itemsPerCycle": 2000, + "extractCycleTime": 1.0 + }, + "Desc_MinerMk2_C": { + "className": "Desc_MinerMk2_C", + "allowedResources": [ + "Desc_OreIron_C", + "Desc_Stone_C", + "Desc_Coal_C", + "Desc_Sulfur_C", + "Desc_RawQuartz_C", + "Desc_OreCopper_C", + "Desc_OreGold_C", + "Desc_OreUranium_C", + "Desc_OreBauxite_C" + ], + "allowLiquids": false, + "allowSolids": true, + "itemsPerCycle": 1, + "extractCycleTime": 0.5 + }, + "Desc_FrackingExtractor_C": { + "className": "Desc_FrackingExtractor_C", + "allowedResources": [ + "Desc_LiquidOil_C", + "Desc_NitrogenGas_C", + "Desc_Water_C" + ], + "allowLiquids": true, + "allowSolids": false, + "itemsPerCycle": 1000, + "extractCycleTime": 1.0 + }, + "Desc_MinerMk3_C": { + "className": "Desc_MinerMk3_C", + "allowedResources": [ + "Desc_OreIron_C", + "Desc_Stone_C", + "Desc_Coal_C", + "Desc_Sulfur_C", + "Desc_RawQuartz_C", + "Desc_OreCopper_C", + "Desc_OreGold_C", + "Desc_OreUranium_C", + "Desc_OreBauxite_C" + ], + "allowLiquids": false, + "allowSolids": true, + "itemsPerCycle": 1, + "extractCycleTime": 0.25 + }, + "Desc_MinerMk1_C": { + "className": "Desc_MinerMk1_C", + "allowedResources": [ + "Desc_OreIron_C", + "Desc_Stone_C", + "Desc_Coal_C", + "Desc_Sulfur_C", + "Desc_RawQuartz_C", + "Desc_OreCopper_C", + "Desc_OreGold_C", + "Desc_OreUranium_C", + "Desc_OreBauxite_C" + ], + "allowLiquids": false, + "allowSolids": true, + "itemsPerCycle": 1, + "extractCycleTime": 1.0 + } + }, + "buildings": { + "Desc_DroneStation_C": { + "slug": "drone-port", + "name": "Drone Port", + "description": "Drone Ports can have one other Port assigned as their transport destination.\nEach Drone Port can contain a single Drone, which transports available input back and forth between its home and destination Ports.\n\nThe Drone Port interface provides delivery details and allows management of Port connections.", + "className": "Desc_DroneStation_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 100, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_BlueprintDesigner_C": { + "slug": "blueprint-designer", + "name": "Blueprint Designer", + "description": "The Blueprint Designer is used to create custom factory designs and save them as Blueprints.\nBlueprints can be accessed from the Build Menu - Blueprint tab.\n\nNote that buildings can only be placed within the Blueprint Designer if they are fully within the boundary frame.\n\nDesigner Dimensions: 32m x 32m x 32m", + "className": "Desc_BlueprintDesigner_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x1_C": { + "slug": "basic-wall-1m", + "name": "Basic Wall 1m", + "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 1m", + "className": "Desc_Wall_Concrete_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x4_C": { + "slug": "basic-wall-4m", + "name": "Basic Wall 4m", + "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 4m", + "className": "Desc_Wall_Concrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x4_ConveyorHole_01_C": { + "slug": "conveyor-wall-x1", + "name": "Conveyor Wall x1", + "description": "Has 1 Conveyor Belt connection.\nSnaps to Foundations and other Walls.\n\nSize: 8m x 4m", + "className": "Desc_Wall_Concrete_8x4_ConveyorHole_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x4_ConveyorHole_02_C": { + "slug": "conveyor-wall-x2", + "name": "Conveyor Wall x2", + "description": "Has 2 Conveyor Belt connections.\nSnaps to Foundations and other Walls.\n\nSize: 8m x 4m", + "className": "Desc_Wall_Concrete_8x4_ConveyorHole_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x4_ConveyorHole_03_C": { + "slug": "conveyor-wall-x3", + "name": "Conveyor Wall x3", + "description": "Has 3 Conveyor Belt connections.\nSnaps to Foundations and other Walls.\n\nSize: 8m x 4m", + "className": "Desc_Wall_Concrete_8x4_ConveyorHole_03_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x4_Corner_01_C": { + "slug": "tilted-corner-wall-4m", + "name": "Tilted Corner Wall 4m", + "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 4m", + "className": "Desc_Wall_Concrete_8x4_Corner_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x4_Corner_2_C": { + "slug": "tilted-concave-wall-4m", + "name": "Tilted Concave Wall 4m", + "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 4m", + "className": "Desc_Wall_Concrete_8x4_Corner_2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x4_Window_01_C": { + "slug": "single-window", + "name": "Single Window", + "description": "Snaps to Foundations and other Walls.\nThe windows allow Pioneers to see through the wall.\n\nSize: 8m x 4m", + "className": "Desc_Wall_Concrete_8x4_Window_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x4_Window_02_C": { + "slug": "frame-window", + "name": "Frame Window", + "description": "Snaps to Foundations and other Walls.\nThe windows allow Pioneers to see through the wall.\n\nSize: 8m x 4m", + "className": "Desc_Wall_Concrete_8x4_Window_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x4_Window_03_C": { + "slug": "panel-window", + "name": "Panel Window", + "description": "Snaps to Foundations and other Walls.\nThe windows allow Pioneers to see through the wall.\n\nSize: 8m x 4m", + "className": "Desc_Wall_Concrete_8x4_Window_03_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x4_Window_04_C": { + "slug": "reinforced-window", + "name": "Reinforced Window", + "description": "Snaps to Foundations and other Walls.\nThe windows allow Pioneers to see through the wall.\n\nSize: 8m x 4m", + "className": "Desc_Wall_Concrete_8x4_Window_04_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x8_Corner_01_C": { + "slug": "tilted-corner-wall-8m", + "name": "Tilted Corner Wall 8m", + "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 8m", + "className": "Desc_Wall_Concrete_8x8_Corner_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x8_Corner_2_C": { + "slug": "tilted-concave-wall-8m", + "name": "Tilted Concave Wall 8m", + "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 8m", + "className": "Desc_Wall_Concrete_8x8_Corner_2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_Angular_8x4_C": { + "slug": "tilted-wall-4m", + "name": "Tilted Wall 4m", + "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 4m", + "className": "Desc_Wall_Concrete_Angular_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_Angular_8x8_C": { + "slug": "tilted-wall-8m", + "name": "Tilted Wall 8m", + "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 8m", + "className": "Desc_Wall_Concrete_Angular_8x8_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_CDoor_8x4_C": { + "slug": "center-door-wall", + "name": "Center Door Wall", + "description": "Allows Pioneers to pass through the wall.\nDoor settings can be configured.\nSnaps to Foundations and other Walls.\n\nSize: 8m x 4m", + "className": "Desc_Wall_Concrete_CDoor_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x1_FlipTris_C": { + "slug": "inv-ramp-wall-1m", + "name": "Inv. Ramp Wall 1m", + "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 1m", + "className": "Desc_Wall_Concrete_8x1_FlipTris_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x2_FlipTris_C": { + "slug": "inv-ramp-wall-2m", + "name": "Inv. Ramp Wall 2m", + "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 2m", + "className": "Desc_Wall_Concrete_8x2_FlipTris_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x4_FlipTris_C": { + "slug": "inv-ramp-wall-4m", + "name": "Inv. Ramp Wall 4m", + "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 4m", + "className": "Desc_Wall_Concrete_8x4_FlipTris_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x8_FlipTris_C": { + "slug": "inv-ramp-wall-8m", + "name": "Inv. Ramp Wall 8m", + "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 8m", + "className": "Desc_Wall_Concrete_8x8_FlipTris_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_Gate_8x4_C": { + "slug": "gate-hole-wall", + "name": "Gate Hole Wall", + "description": "The gate allows Pioneers to pass through walls.\nSnaps to Foundations and other Walls.\n\nSize: 8m x 4m", + "className": "Desc_Wall_Concrete_Gate_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_SDoor_8x4_C": { + "slug": "side-door-wall", + "name": "Side Door Wall", + "description": "Allows Pioneers to pass through the wall.\nDoor settings can be configured.\nSnaps to Foundations and other Walls.\n\nSize: 8m x 4m", + "className": "Desc_Wall_Concrete_SDoor_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x1_Tris_C": { + "slug": "ramp-wall-1m", + "name": "Ramp Wall 1m", + "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 1m", + "className": "Desc_Wall_Concrete_8x1_Tris_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x2_Tris_C": { + "slug": "ramp-wall-2m", + "name": "Ramp Wall 2m", + "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 2m", + "className": "Desc_Wall_Concrete_8x2_Tris_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x4_Tris_C": { + "slug": "ramp-wall-4m", + "name": "Ramp Wall 4m", + "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 4m", + "className": "Desc_Wall_Concrete_8x4_Tris_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x8_Tris_C": { + "slug": "ramp-wall-8m", + "name": "Ramp Wall 8m", + "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 8m", + "className": "Desc_Wall_Concrete_8x8_Tris_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_8x4_01_C": { + "slug": "basic-wall-4m", + "name": "Basic Wall 4m", + "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 4m", + "className": "Desc_Wall_8x4_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Conveyor_8x4_01_C": { + "slug": "conveyor-wall-x3", + "name": "Conveyor Wall x3", + "description": "Has 3 Conveyor Belt connections.\nSnaps to Foundations and other Walls.\n\nSize: 8m x 4m", + "className": "Desc_Wall_Conveyor_8x4_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Conveyor_8x4_02_C": { + "slug": "conveyor-wall-x2", + "name": "Conveyor Wall x2", + "description": "Has 2 Conveyor Belt connections.\nSnaps to Foundations and other Walls.\n\nSize: 8m x 4m", + "className": "Desc_Wall_Conveyor_8x4_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Conveyor_8x4_03_C": { + "slug": "conveyor-wall-x1", + "name": "Conveyor Wall x1", + "description": "Has 1 Conveyor Belt connection.\nSnaps to Foundations and other Walls.\n\nSize: 8m x 4m", + "className": "Desc_Wall_Conveyor_8x4_03_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Door_8x4_01_C": { + "slug": "center-door-wall", + "name": "Center Door Wall", + "description": "Allows Pioneers to pass through the wall.\nDoor settings can be configured.\nSnaps to Foundations and other Walls.\n\nSize: 8m x 4m", + "className": "Desc_Wall_Door_8x4_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Door_8x4_03_C": { + "slug": "side-door-wall", + "name": "Side Door Wall", + "description": "Allows Pioneers to pass through the wall.\nDoor settings can be configured.\nSnaps to Foundations and other Walls.\n\nSize: 8m x 4m", + "className": "Desc_Wall_Door_8x4_03_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Gate_8x4_01_C": { + "slug": "gate-hole-wall", + "name": "Gate Hole Wall", + "description": "Allows Pioneers to pass through walls.\nSnaps to Foundations and other Walls.\n\nSize: 8m x 4m", + "className": "Desc_Wall_Gate_8x4_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Orange_8x1_C": { + "slug": "basic-wall-1m", + "name": "Basic Wall 1m", + "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 1m", + "className": "Desc_Wall_Orange_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Orange_8x4_Corner_01_C": { + "slug": "tilted-corner-wall-4m", + "name": "Tilted Corner Wall 4m", + "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 4m", + "className": "Desc_Wall_Orange_8x4_Corner_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Orange_8x4_Corner_02_C": { + "slug": "tilted-concave-wall-4m", + "name": "Tilted Concave Wall 4m", + "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 4m", + "className": "Desc_Wall_Orange_8x4_Corner_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Orange_8x8_Corner_01_C": { + "slug": "tilted-corner-wall-8m", + "name": "Tilted Corner Wall 8m", + "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 8m", + "className": "Desc_Wall_Orange_8x8_Corner_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Orange_8x8_Corner_02_C": { + "slug": "tilted-concave-wall-8m", + "name": "Tilted Concave Wall 8m", + "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 8m", + "className": "Desc_Wall_Orange_8x8_Corner_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Orange_Angular_8x4_C": { + "slug": "tilted-wall-4m", + "name": "Tilted Wall 4m", + "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 4m", + "className": "Desc_Wall_Orange_Angular_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Orange_Angular_8x8_C": { + "slug": "tilted-wall-8m", + "name": "Tilted Wall 8m", + "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 8m", + "className": "Desc_Wall_Orange_Angular_8x8_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Orange_8x1_FlipTris_C": { + "slug": "inv-ramp-wall-1m", + "name": "Inv. Ramp Wall 1m", + "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 1m", + "className": "Desc_Wall_Orange_8x1_FlipTris_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Orange_8x2_FlipTris_C": { + "slug": "inv-ramp-wall-2m", + "name": "Inv. Ramp Wall 2m", + "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 2m", + "className": "Desc_Wall_Orange_8x2_FlipTris_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Orange_8x4_FlipTris_C": { + "slug": "inv-ramp-wall-4m", + "name": "Inv. Ramp Wall 4m", + "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 4m", + "className": "Desc_Wall_Orange_8x4_FlipTris_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Orange_8x8_FlipTris_C": { + "slug": "inv-ramp-wall-8m", + "name": "Inv. Ramp Wall 8m", + "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 8m", + "className": "Desc_Wall_Orange_8x8_FlipTris_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Orange_8x1_Tris_C": { + "slug": "ramp-wall-1m", + "name": "Ramp Wall 1m", + "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 1m", + "className": "Desc_Wall_Orange_8x1_Tris_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Orange_8x2_Tris_C": { + "slug": "ramp-wall-2m", + "name": "Ramp Wall 2m", + "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 2m", + "className": "Desc_Wall_Orange_8x2_Tris_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Orange_8x4_Tris_C": { + "slug": "ramp-wall-4m", + "name": "Ramp Wall 4m", + "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 4m", + "className": "Desc_Wall_Orange_8x4_Tris_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Orange_8x8_Tris_C": { + "slug": "ramp-wall-8m", + "name": "Ramp Wall 8m", + "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 8m", + "className": "Desc_Wall_Orange_8x8_Tris_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Window_8x4_01_C": { + "slug": "single-window", + "name": "Single Window", + "description": "Snaps to Foundations and other Walls.\nThe windows allow Pioneers to see through the wall.\n\nSize: 8m x 4m", + "className": "Desc_Wall_Window_8x4_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Window_8x4_02_C": { + "slug": "frame-window", + "name": "Frame Window", + "description": "Snaps to Foundations and other Walls.\nThe windows allow Pioneers to see through the wall.\n\nSize: 8m x 4m", + "className": "Desc_Wall_Window_8x4_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Window_8x4_03_C": { + "slug": "panel-window", + "name": "Panel Window", + "description": "Snaps to Foundations and other Walls.\nThe windows allow Pioneers to see through the wall.\n\nSize: 8m x 4m", + "className": "Desc_Wall_Window_8x4_03_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Window_8x4_04_C": { + "slug": "reinforced-window", + "name": "Reinforced Window", + "description": "Snaps to Foundations and other Walls.\nThe windows allow Pioneers to see through the wall.\n\nSize: 8m x 4m", + "className": "Desc_Wall_Window_8x4_04_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_SteelWall_8x4_Gate_01_C": { + "slug": "gate-hole-wall", + "name": "Gate Hole Wall", + "description": "The gate allows Pioneers to pass through the wall.\nSnaps to foundations and other walls.\n\nSize: 8m x 4m", + "className": "Desc_SteelWall_8x4_Gate_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_SteelWall_8x4_Window_01_C": { + "slug": "single-window", + "name": "Single Window", + "description": "Snaps to Foundations and other Walls.\nThe windows allow Pioneers to see through the wall.\n\nSize: 8m x 4m", + "className": "Desc_SteelWall_8x4_Window_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_SteelWall_8x4_Window_02_C": { + "slug": "reinforced-window", + "name": "Reinforced Window", + "description": "Snaps to Foundations and other Walls.\nThe windows allow Pioneers to see through the wall.\n\nSize: 8m x 4m", + "className": "Desc_SteelWall_8x4_Window_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_SteelWall_8x4_Window_03_C": { + "slug": "frame-window", + "name": "Frame Window", + "description": "Snaps to Foundations and other Walls.\nThe windows allow Pioneers to see through the wall.\n\nSize: 8m x 4m", + "className": "Desc_SteelWall_8x4_Window_03_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_SteelWall_8x4_Window_04_C": { + "slug": "panel-window", + "name": "Panel Window", + "description": "Snaps to Foundations and other Walls.\nThe windows allow Pioneers to see through the wall.\n\nSize: 8m x 4m", + "className": "Desc_SteelWall_8x4_Window_04_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Steel_8x4_Corner_01_C": { + "slug": "tilted-corner-wall-4m", + "name": "Tilted Corner Wall 4m", + "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 4m", + "className": "Desc_Wall_Steel_8x4_Corner_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Steel_8x4_Corner_2_C": { + "slug": "tilted-concave-wall-4m", + "name": "Tilted Concave Wall 4m", + "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 4m", + "className": "Desc_Wall_Steel_8x4_Corner_2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Steel_8x8_Corner_01_C": { + "slug": "tilted-corner-wall-8m", + "name": "Tilted Corner Wall 8m", + "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 8m", + "className": "Desc_Wall_Steel_8x8_Corner_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Steel_8x8_Corner_2_C": { + "slug": "tilted-concave-wall-8m", + "name": "Tilted Concave Wall 8m", + "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 8m", + "className": "Desc_Wall_Steel_8x8_Corner_2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_SteelWall_8x1_C": { + "slug": "basic-wall-1m", + "name": "Basic Wall 1m", + "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 1m", + "className": "Desc_SteelWall_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_SteelWall_FlipTris_8x1_C": { + "slug": "inv-ramp-wall-1m", + "name": "Inv. Ramp Wall 1m", + "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 1m", + "className": "Desc_SteelWall_FlipTris_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_SteelWall_FlipTris_8x2_C": { + "slug": "inv-ramp-wall-2m", + "name": "Inv. Ramp Wall 2m", + "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 2m", + "className": "Desc_SteelWall_FlipTris_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_SteelWall_FlipTris_8x4_C": { + "slug": "inv-ramp-wall-4m", + "name": "Inv. Ramp Wall 4m", + "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 4m", + "className": "Desc_SteelWall_FlipTris_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_SteelWall_FlipTris_8x8_C": { + "slug": "inv-ramp-wall-8m", + "name": "Inv. Ramp Wall 8m", + "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 8m", + "className": "Desc_SteelWall_FlipTris_8x8_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_SteelWall_Tris_8x1_C": { + "slug": "ramp-wall-1m", + "name": "Ramp Wall 1m", + "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 1m", + "className": "Desc_SteelWall_Tris_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_SteelWall_Tris_8x2_C": { + "slug": "ramp-wall-2m", + "name": "Ramp Wall 2m", + "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 2m", + "className": "Desc_SteelWall_Tris_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_SteelWall_Tris_8x4_C": { + "slug": "ramp-wall-4m", + "name": "Ramp Wall 4m", + "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 4m", + "className": "Desc_SteelWall_Tris_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_SteelWall_Tris_8x8_C": { + "slug": "ramp-wall-8m", + "name": "Ramp Wall 8m", + "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 8m", + "className": "Desc_SteelWall_Tris_8x8_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_8x4_02_C": { + "slug": "basic-wall-4m", + "name": "Basic Wall 4m", + "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 4m", + "className": "Desc_Wall_8x4_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Conveyor_8x4_01_Steel_C": { + "slug": "conveyor-wall-x3", + "name": "Conveyor Wall x3", + "description": "Has 3 Conveyor Belt connections.\nSnaps to Foundations and other Walls.\n\nSize: 8m x 4m", + "className": "Desc_Wall_Conveyor_8x4_01_Steel_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Conveyor_8x4_02_Steel_C": { + "slug": "conveyor-wall-x2", + "name": "Conveyor Wall x2", + "description": "Has 2 Conveyor Belt connections.\nSnaps to Foundations and other Walls.\n\nSize: 8m x 4m", + "className": "Desc_Wall_Conveyor_8x4_02_Steel_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Conveyor_8x4_03_Steel_C": { + "slug": "conveyor-wall-x1", + "name": "Conveyor Wall x1", + "description": "Has 1 Conveyor Belt connection.\nSnaps to Foundations and other Walls.\n\nSize: 8m x 4m", + "className": "Desc_Wall_Conveyor_8x4_03_Steel_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Door_8x4_01_Steel_C": { + "slug": "center-door-wall", + "name": "Center Door Wall", + "description": "Allows Pioneers to pass through the wall.\nDoor settings can be configured.\nSnaps to Foundations and other Walls.\n\nSize: 8m x 4m", + "className": "Desc_Wall_Door_8x4_01_Steel_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Door_8x4_03_Steel_C": { + "slug": "side-door-wall", + "name": "Side Door Wall", + "description": "Allows Pioneers to pass through the wall.\nDoor settings can be configured.\nSnaps to Foundations and other Walls.\n\nSize: 8m x 4m", + "className": "Desc_Wall_Door_8x4_03_Steel_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_WallSet_Steel_Angular_8x4_C": { + "slug": "tilted-wall-4m", + "name": "Tilted Wall 4m", + "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 4m", + "className": "Desc_WallSet_Steel_Angular_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_WallSet_Steel_Angular_8x8_C": { + "slug": "tilted-wall-8m", + "name": "Tilted Wall 8m", + "description": "Snaps to foundations and other walls.\nUseful for building multi-floor structures.\n\nSize: 8m x 8m", + "className": "Desc_WallSet_Steel_Angular_8x8_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConveyorCeilingAttachment_C": { + "slug": "conveyor-ceiling-mount", + "name": "Conveyor Ceiling Mount", + "description": "Can be attached to ceilings and other ceiling mounts.\nUseful to route conveyor belts in a more controlled manner and over long distances.", + "className": "Desc_ConveyorCeilingAttachment_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConveyorPoleWall_C": { + "slug": "conveyor-wall-mount", + "name": "Conveyor Wall Mount", + "description": "Can be attached to walls.\nUseful to route conveyor belts in a more controlled manner and over long distances.", + "className": "Desc_ConveyorPoleWall_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConveyorBeltMk1_C": { + "slug": "conveyor-belt-mk-1", + "name": "Conveyor Belt Mk.1", + "description": "Transports up to 60 resources per minute. Used to move resources between buildings.", + "className": "Desc_ConveyorBeltMk1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PowerLine_C": { + "slug": "power-line", + "name": "Power Line", + "description": "Used to connect Power Poles, Power Generators and Factory buildings.", + "className": "Desc_PowerLine_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PowerPoleMk1_C": { + "slug": "power-pole-mk-1", + "name": "Power Pole Mk.1", + "description": "Can handle up to 4 Power Line connections.\n\nConnect Power Poles, Power Generators and factory buildings together with Power Lines to create a power grid. The power grid supplies the connected buildings with power.", + "className": "Desc_PowerPoleMk1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PowerPoleWall_C": { + "slug": "wall-outlet-mk-1", + "name": "Wall Outlet Mk.1", + "description": "Power Pole that attaches to a wall.\n\nCan handle up to 4 Power Line connections.\n\nConnect Power Poles, Power Generators and factory buildings together with Power Lines to create a power grid. The power grid supplies the connected buildings with power.", + "className": "Desc_PowerPoleWall_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_TradingPost_C": { + "slug": "the-hub", + "name": "The HUB", + "description": "The heart of your factory. This is where you complete FICSIT milestones to unlock additional blueprints of buildings, vehicles, parts, equipment etc.", + "className": "Desc_TradingPost_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_WorkBench_C": { + "slug": "craft-bench", + "name": "Craft Bench", + "description": "Allows you to manually craft a large range of different parts. \nThese parts can then be used in construction of different factory buildings, vehicles and equipment.", + "className": "Desc_WorkBench_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_GeneratorCoal_C": { + "slug": "coal-generator", + "name": "Coal Generator", + "description": "Burns Coal to boil Water, the produced steam rotates turbines to generate electricity for the power grid.\nHas a Conveyor Belt and Pipe input, so both the Coal and Water supply can be automated.\n\nCaution: Always generates at the set clock speed. Shuts down if fuel requirements are not met.", + "className": "Desc_GeneratorCoal_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PipelineSupportWall_C": { + "slug": "pipeline-wall-support", + "name": "Pipeline Wall Support", + "description": "Can be attached to walls.\nUsed to connect Pipelines over longer distances.", + "className": "Desc_PipelineSupportWall_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Pipeline_C": { + "slug": "pipeline-mk-1", + "name": "Pipeline Mk.1", + "description": "Outside indicators show volume, flow rate and direction.\nTransports up to 300m³ of fluid per minute.\nUsed to transport fluids.", + "className": "Desc_Pipeline_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PipelineJunction_Cross_C": { + "slug": "pipeline-junction-cross", + "name": "Pipeline Junction Cross", + "description": "Can be attached to a pipeline to split it 3-way.", + "className": "Desc_PipelineJunction_Cross_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PipelinePump_C": { + "slug": "pipeline-pump-mk-1", + "name": "Pipeline Pump Mk.1", + "description": "Can be attached to a Pipeline to apply Head Lift.\nMaximum Head Lift: 20 meters\n(Allows fluids to be transported 20 meters upwards.)\n\nNOTE: Has an in- and output direction.\nNOTE: Head Lift does not stack, so space between Pumps is recommended.", + "className": "Desc_PipelinePump_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 4, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PipeStorageTank_C": { + "slug": "fluid-buffer", + "name": "Fluid Buffer", + "description": "Can contain up to 400m³ of fluid.\nHas an input and output for pipes.", + "className": "Desc_PipeStorageTank_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_WaterPump_C": { + "slug": "water-extractor", + "name": "Water Extractor", + "description": "Default extraction rate: 120m³ water per minute.\nHead Lift: 10 meters.\n(Allows fluids to be transported 10 meters upwards.)\n\nExtracts water from the body of water it is built on.\nNote that the water needs to be deep enough and that rivers do not commonly suffice.", + "className": "Desc_WaterPump_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 20, + "powerConsumptionExponent": 1.321929, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ResourceSink_C": { + "slug": "awesome-sink", + "name": "AWESOME Sink", + "description": "Got excess resources? Fear not, for FICSIT does not waste! The newly developed AWESOME Sink turns any useful part straight into research data, as fast as you can supply it! \nParticipating pioneers will be compensated with Coupons to be spent at the AWESOME Shop.", + "className": "Desc_ResourceSink_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 30, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ResourceSinkShop_C": { + "slug": "awesome-shop", + "name": "AWESOME Shop", + "description": "Redeem your FICSIT Coupons here! \nFor those employees going the extra kilometer we have set aside special bonus milestones and rewards! Get your Coupons in the AWESOME Sink program now!\n\n*No refunds possible.", + "className": "Desc_ResourceSinkShop_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_OilPump_C": { + "slug": "oil-extractor", + "name": "Oil Extractor", + "description": "Normal extraction rate: 120m³ oil per minute.\nHead Lift: 10 meters.\n(Allows fluids to be transported 10 meters upwards.)\n\nCan be built on an Oil Node to extract Crude Oil. Extraction rates depend on node purity.", + "className": "Desc_OilPump_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 40, + "powerConsumptionExponent": 1.321929, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_OilRefinery_C": { + "slug": "refinery", + "name": "Refinery", + "description": "Refines fluid and/or solid parts into other parts.\nHead Lift: 10 meters.\n(Allows fluids to be transported 10 meters upwards.)\n\nContains both a Conveyor Belt and Pipe input and output, to allow for the automation of various recipes.", + "className": "Desc_OilRefinery_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 30, + "powerConsumptionExponent": 1.321929, + "manufacturingSpeed": 1 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Valve_C": { + "slug": "valve", + "name": "Valve", + "description": "Used to limit Pipeline flow rates.\nCan be attached to a Pipeline.\n\nNOTE: Has an in- and output direction.", + "className": "Desc_Valve_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_FoundryMk1_C": { + "slug": "foundry", + "name": "Foundry", + "description": "Smelts two resources into alloy ingots.\n\nCan be automated by feeding ore into it with a conveyor belt connected to the inputs. The produced ingots can be automatically extracted by connecting a conveyor belt to the output.", + "className": "Desc_FoundryMk1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 16, + "powerConsumptionExponent": 1.321929, + "manufacturingSpeed": 1 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_IndustrialTank_C": { + "slug": "industrial-fluid-buffer", + "name": "Industrial Fluid Buffer", + "description": "Can contain up to 2400m³ of fluid.\nHas an input and output for pipes.", + "className": "Desc_IndustrialTank_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Packager_C": { + "slug": "packager", + "name": "Packager", + "description": "Used for the packaging and unpacking of fluids.\nHead Lift: 10 meters.\n(Allows fluids to be transported 10 meters upwards.)\n\nContains both a Conveyor Belt and Pipe input and output, to allow for the automation of various recipes.", + "className": "Desc_Packager_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 10, + "powerConsumptionExponent": 1.321929, + "manufacturingSpeed": 1 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Blender_C": { + "slug": "blender", + "name": "Blender", + "description": "The Blender is capable of blending fluids and combining them with solid parts in various processes.\nHead Lift: 10 meters.\n(Allows fluids to be transported 10 meters upwards).\n\nContains both Conveyor Belt and Pipe inputs and outputs.", + "className": "Desc_Blender_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 75, + "powerConsumptionExponent": 1.321929, + "manufacturingSpeed": 1 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_MinerMk2_C": { + "slug": "miner-mk-2", + "name": "Miner Mk.2", + "description": "Extracts solid resources from the resource node it is built on. \nThe normal extraction rate is 120 resources per minute. \nThe extraction rate is modified depending on resource node purity. Outputs all extracted resources onto connected conveyor belts.", + "className": "Desc_MinerMk2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 12, + "powerConsumptionExponent": 1.321929, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ManufacturerMk1_C": { + "slug": "manufacturer", + "name": "Manufacturer", + "description": "Crafts three or four parts into another part.\n\nCan be automated by feeding parts into it with a conveyor belt connected to the input. The produced parts can be automatically extracted by connecting a conveyor belt to the output.", + "className": "Desc_ManufacturerMk1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 55, + "powerConsumptionExponent": 1.321929, + "manufacturingSpeed": 1 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_AssemblerMk1_C": { + "slug": "assembler", + "name": "Assembler", + "description": "Crafts two parts into another part.\n\nCan be automated by feeding parts into it with a conveyor belt connected to the input. The produced parts can be automatically extracted by connecting a conveyor belt to the output.", + "className": "Desc_AssemblerMk1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 15, + "powerConsumptionExponent": 1.321929, + "manufacturingSpeed": 1 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_HadronCollider_C": { + "slug": "particle-accelerator", + "name": "Particle Accelerator", + "description": "The FICSIT Particle Accelerator uses electromagnetic fields to propel particles to very high speeds and energies. The specific design allows for a variety of processes, such as matter generation and conversion.\n\nWarning: Power usage is extremely high, unstable, and varies per recipe.", + "className": "Desc_HadronCollider_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.321929, + "manufacturingSpeed": 1 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_GeneratorNuclear_C": { + "slug": "nuclear-power-plant", + "name": "Nuclear Power Plant", + "description": "Consumes Nuclear Fuel Rods and Water to produce electricity for the power grid.\n\nProduces Nuclear Waste, which is extracted from the conveyor belt output.\n\nCaution: Always generates at the set clock speed. Shuts down if fuel requirements are not met.", + "className": "Desc_GeneratorNuclear_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_FrackingExtractor_C": { + "slug": "resource-well-extractor", + "name": "Resource Well Extractor", + "description": "Normal extraction rate: 60m³ fluid per minute.\nHead Lift: 10 meters.\n(Allows fluids to be transported 10 meters upwards.)\n\nCan be placed on the activated sub-nodes of a Resource Well to collect the pressurized resources. Does not require Power.", + "className": "Desc_FrackingExtractor_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.321929, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_FrackingSmasher_C": { + "slug": "resource-well-pressurizer", + "name": "Resource Well Pressurizer", + "description": "Can be placed on a Resource Well to activate it by pressurizing the underground resource.\nOnce activated, Resource Well Extractors can be placed on the surrounding sub-nodes to extract the resource.\nRequires Power. Overclocking increases the output potential of the entire Resource Well.", + "className": "Desc_FrackingSmasher_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 150, + "powerConsumptionExponent": 1.321929, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConveyorBeltMk5_C": { + "slug": "conveyor-belt-mk-5", + "name": "Conveyor Belt Mk.5", + "description": "Transports up to 780 resources per minute. Used to move resources between buildings.", + "className": "Desc_ConveyorBeltMk5_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConveyorLiftMk5_C": { + "slug": "conveyor-lift-mk-5", + "name": "Conveyor Lift Mk.5", + "description": "Transports up to 780 resources per minute. Used to move resources between floors.", + "className": "Desc_ConveyorLiftMk5_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_MinerMk3_C": { + "slug": "miner-mk-3", + "name": "Miner Mk.3", + "description": "Extracts solid resources from the resource node it is built on. \nThe normal extraction rate is 240 resources per minute. \nThe extraction rate is modified depending on resource node purity. Outputs all extracted resources onto connected conveyor belts.", + "className": "Desc_MinerMk3_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 30, + "powerConsumptionExponent": 1.321929, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PipelineMK2_C": { + "slug": "pipeline-mk-2", + "name": "Pipeline Mk.2", + "description": "Outside indicators show volume, flow rate and direction.\nTransports up to 600m³ of fluid per minute.\nUsed to transport fluids.", + "className": "Desc_PipelineMK2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PipelinePumpMk2_C": { + "slug": "pipeline-pump-mk-2", + "name": "Pipeline Pump Mk.2", + "description": "Can be attached to a Pipeline to apply Head Lift.\nMaximum Head Lift: 50 meters\n(Allows fluids to be transported 50 meters upwards.)\n\nNOTE: Has an in- and output direction.\nNOTE: Head Lift does not stack, so space between Pumps is recommended.", + "className": "Desc_PipelinePumpMk2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 8, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RailroadBlockSignal_C": { + "slug": "block-signal", + "name": "Block Signal", + "description": "Train Signals are used to direct the movement of Trains to avoid collisions and bottlenecks.\n\nBlock Signals can be placed on Railways to create 'Blocks' between each other. When a Train is occupying such a Block, other Trains will be unable to enter it.\n\nCaution: Signals are directional! Trains are unable to move against this direction, so be sure to set up Signals in both directions for bi-directional Railways.", + "className": "Desc_RailroadBlockSignal_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RailroadPathSignal_C": { + "slug": "path-signal", + "name": "Path Signal", + "description": "Train Signals are used to direct the movement of Trains to avoid collisions and bottlenecks.\n\nPath Signals are advanced signals that are especially useful for bi-directional Railways and complex intersections. They function similarly to Block Signals but rather than occupying the entire Block, Trains can reserve a specific path through it and will only enter the Block if their path allows them to fully pass through it.\n\nCaution: Signals are directional! Trains are unable to move against this direction, so be sure to set up Signals in both directions for bi-directional Railways.", + "className": "Desc_RailroadPathSignal_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_TrainDockingStation_C": { + "slug": "freight-platform", + "name": "Freight Platform", + "description": "Freight Cars that stop at the Freight Platform will be loaded or unloaded by the Freight Platform.\nLoading and unloading options can be set inside the building.\nSnaps to other Platforms and Stations.\nNeeds to be connected to a powered Railway to function.", + "className": "Desc_TrainDockingStation_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 50, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_TrainDockingStationLiquid_C": { + "slug": "fluid-freight-platform", + "name": "Fluid Freight Platform", + "description": "Freight Cars that stop at the Freight Platform will be loaded or unloaded by the Freight Platform.\nLoading and unloading options can be set inside the building.\nSnaps to other Platforms and Stations.\nNeeds to be connected to a powered Railway to function.", + "className": "Desc_TrainDockingStationLiquid_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 50, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_TrainPlatformEmpty_C": { + "slug": "empty-platform", + "name": "Empty Platform", + "description": "An empty train platform for when you need to create some empty space.", + "className": "Desc_TrainPlatformEmpty_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_TrainPlatformEmpty_02_C": { + "slug": "empty-platform-with-catwalk", + "name": "Empty Platform With Catwalk", + "description": "An empty train platform for when you need to create some empty space.", + "className": "Desc_TrainPlatformEmpty_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_TrainStation_C": { + "slug": "train-station", + "name": "Train Station", + "description": "Locomotives can be set to drive to and stop at the Train Station.\nYou can connect power to the train station to power up the trains on the railway as well as transport the power to other stations.", + "className": "Desc_TrainStation_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 50, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RailroadTrack_C": { + "slug": "railway", + "name": "Railway", + "description": "Used to transport trains in a reliable and fast manner.\nHas a wide turn angle so make sure to plan it out properly.", + "className": "Desc_RailroadTrack_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConveyorBeltMk4_C": { + "slug": "conveyor-belt-mk-4", + "name": "Conveyor Belt Mk.4", + "description": "Transports up to 480 resources per minute. Used to move resources between buildings.", + "className": "Desc_ConveyorBeltMk4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConveyorLiftMk4_C": { + "slug": "conveyor-lift-mk-4", + "name": "Conveyor Lift Mk.4", + "description": "Transports up to 480 resources per minute. Used to move resources between floors.", + "className": "Desc_ConveyorLiftMk4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_GeneratorFuel_C": { + "slug": "fuel-generator", + "name": "Fuel Generator", + "description": "Consumes Fuel to generate electricity for the power grid.\nHas a Pipe input so the Fuel supply can be automated.\n\nCaution: Always generates at the set clock speed. Shuts down if fuel requirements are not met.", + "className": "Desc_GeneratorFuel_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConveyorBeltMk3_C": { + "slug": "conveyor-belt-mk-3", + "name": "Conveyor Belt Mk.3", + "description": "Transports up to 270 resources per minute. Used to move resources between buildings.", + "className": "Desc_ConveyorBeltMk3_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConveyorLiftMk3_C": { + "slug": "conveyor-lift-mk-3", + "name": "Conveyor Lift Mk.3", + "description": "Transports up to 270 resources per minute. Used to move resources between floors.", + "className": "Desc_ConveyorLiftMk3_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_StorageContainerMk2_C": { + "slug": "industrial-storage-container", + "name": "Industrial Storage Container", + "description": "Contains 48 slots for storing large amounts of items.\nHas two inputs and outputs for conveyor belts.", + "className": "Desc_StorageContainerMk2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PipeHyperStart_C": { + "slug": "hypertube-entrance", + "name": "Hypertube Entrance", + "description": "Used to enter and power a Hypertube.", + "className": "Desc_PipeHyperStart_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 10, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_HyperTubeWallSupport_C": { + "slug": "hypertube-wall-support", + "name": "Hypertube Wall Support", + "description": "Can be attached to walls. \nSupports for Hypertubes to allow for longer distances.", + "className": "Desc_HyperTubeWallSupport_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PipeHyper_C": { + "slug": "hypertube", + "name": "Hypertube", + "description": "Tubes for transporting FICSIT employees.\nA Hypertube Entrance needs to be attached to power and enter a Hypertube system.", + "className": "Desc_PipeHyper_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PowerStorageMk1_C": { + "slug": "power-storage", + "name": "Power Storage", + "description": "Storage Capacity: 100 MWh (100 MW for 1 hour)\nMax Charge Rate: 100 MW\nMax Discharge Rate: Unlimited \n\nCan be connected to a Power Grid to store excess power production. The stored power can be used later in cases of high consumption.", + "className": "Desc_PowerStorageMk1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PowerTower_C": { + "slug": "power-tower", + "name": "Power Tower", + "description": "Power Towers are used to span Power Lines across great distances.\nAn additional power connector is provided at the bottom of the Power Tower for connecting with other buildings, such as Power Poles.", + "className": "Desc_PowerTower_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PowerTowerPlatform_C": { + "slug": "power-tower-platform", + "name": "Power Tower Platform", + "description": "Power Towers are used to span Power Lines across great distances.\nAn additional power connector is provided at the bottom of the Power Tower for connecting with other buildings, such as Power Poles.\n\nNote: This Power Tower version comes with a ladder and platform, for improved utility.", + "className": "Desc_PowerTowerPlatform_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_TruckStation_C": { + "slug": "truck-station", + "name": "Truck Station", + "description": "Either sends or receives resources to vehicles. Has an inventory with 48 slots.\nTransfers up to 120 stacks per minute to/from docked vehicles. \nAlways refuels vehicles if it has access to a matching fuel type.", + "className": "Desc_TruckStation_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 20, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConveyorBeltMk2_C": { + "slug": "conveyor-belt-mk-2", + "name": "Conveyor Belt Mk.2", + "description": "Transports up to 120 resources per minute. Used to move resources between buildings.", + "className": "Desc_ConveyorBeltMk2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConveyorLiftMk2_C": { + "slug": "conveyor-lift-mk-2", + "name": "Conveyor Lift Mk.2", + "description": "Transports up to 120 resources per minute. Used to move resources between floors.", + "className": "Desc_ConveyorLiftMk2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_JumpPadAdjustable_C": { + "slug": "jump-pad", + "name": "Jump Pad", + "description": "Used for quick, vertical traversal.\nThe launch angle can be adjusted while building.\nCaution: Be sure to land safely!", + "className": "Desc_JumpPadAdjustable_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 5, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_LandingPad_C": { + "slug": "u-jelly-landing-pad", + "name": "U-Jelly Landing Pad", + "description": "Generates a speed dampening jelly.\nGuarantees a safe landing.", + "className": "Desc_LandingPad_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 5, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Mam_C": { + "slug": "mam", + "name": "MAM", + "description": "The Molecular Analysis Machine is used to analyze new and exotic materials found on alien planets.\nR&D will assist Pioneers through the MAM to turn any valuable data into usable research options and new technologies.", + "className": "Desc_Mam_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_StoragePlayer_C": { + "slug": "personal-storage-box", + "name": "Personal Storage Box", + "description": "Contains 25 slots for storing large amounts of items.", + "className": "Desc_StoragePlayer_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConveyorAttachmentMerger_C": { + "slug": "conveyor-merger", + "name": "Conveyor Merger", + "description": "Merges up to three conveyor belts into one.", + "className": "Desc_ConveyorAttachmentMerger_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConveyorAttachmentSplitter_C": { + "slug": "conveyor-splitter", + "name": "Conveyor Splitter", + "description": "Splits conveyor belts in three. \nUseful to move parts and resources from oversaturated conveyor belts.", + "className": "Desc_ConveyorAttachmentSplitter_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConveyorLiftMk1_C": { + "slug": "conveyor-lift-mk-1", + "name": "Conveyor Lift Mk.1", + "description": "Transports up to 60 resources per minute. Used to move resources between floors.", + "className": "Desc_ConveyorLiftMk1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddle_Ficsit_4x1_C": { + "slug": "half-1m-foundation", + "name": "Half 1m Foundation", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", + "className": "Desc_QuarterPipeMiddle_Ficsit_4x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddle_Ficsit_4x2_C": { + "slug": "half-2m-foundation", + "name": "Half 2m Foundation", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", + "className": "Desc_QuarterPipeMiddle_Ficsit_4x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddle_Ficsit_4x4_C": { + "slug": "half-4m-foundation", + "name": "Half 4m Foundation", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", + "className": "Desc_QuarterPipeMiddle_Ficsit_4x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleInCorner_Ficsit_8x1_C": { + "slug": "inner-corner-extension-1m", + "name": "Inner Corner Extension 1m", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 8m x 1m", + "className": "Desc_QuarterPipeMiddleInCorner_Ficsit_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleInCorner_Ficsit_8x2_C": { + "slug": "inner-corner-extension-2m", + "name": "Inner Corner Extension 2m", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 8m x 2m", + "className": "Desc_QuarterPipeMiddleInCorner_Ficsit_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleInCorner_Ficsit_8x4_C": { + "slug": "inner-corner-extension-4m", + "name": "Inner Corner Extension 4m", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 8m x 4m", + "className": "Desc_QuarterPipeMiddleInCorner_Ficsit_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleOutCorner_Ficsit_4x1_C": { + "slug": "outer-corner-extension-1m", + "name": "Outer Corner Extension 1m", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 4m x 1m", + "className": "Desc_QuarterPipeMiddleOutCorner_Ficsit_4x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleOutCorner_Ficsit_4x2_C": { + "slug": "outer-corner-extension-2m", + "name": "Outer Corner Extension 2m", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 4m x 2m", + "className": "Desc_QuarterPipeMiddleOutCorner_Ficsit_4x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleOutCorner_Ficsit_4x4_C": { + "slug": "outer-corner-extension-4m", + "name": "Outer Corner Extension 4m", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 4m x 4m", + "className": "Desc_QuarterPipeMiddleOutCorner_Ficsit_4x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Foundation_8x1_01_C": { + "slug": "foundation-1m", + "name": "Foundation 1m", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", + "className": "Desc_Foundation_8x1_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Foundation_8x2_01_C": { + "slug": "foundation-2m", + "name": "Foundation 2m", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", + "className": "Desc_Foundation_8x2_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Foundation_8x4_01_C": { + "slug": "foundation-4m", + "name": "Foundation 4m", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", + "className": "Desc_Foundation_8x4_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipe_C": { + "slug": "quarter-pipe", + "name": "Quarter Pipe", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 8m x 4m", + "className": "Desc_QuarterPipe_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipe_02_C": { + "slug": "inverted-quarter-pipe", + "name": "Inverted Quarter Pipe", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 8m x 4m", + "className": "Desc_QuarterPipe_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeCorner_01_C": { + "slug": "inner-corner-quarter-pipe", + "name": "Inner Corner Quarter Pipe", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 8m x 4m", + "className": "Desc_QuarterPipeCorner_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeCorner_02_C": { + "slug": "inverted-inner-corner-quarter-pipe", + "name": "Inverted Inner Corner Quarter Pipe", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 8m x 4m", + "className": "Desc_QuarterPipeCorner_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeCorner_03_C": { + "slug": "outer-corner-quarter-pipe", + "name": "Outer Corner Quarter Pipe", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 8m x 4m", + "className": "Desc_QuarterPipeCorner_03_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeCorner_04_C": { + "slug": "inverted-outer-corner-quarter-pipe", + "name": "Inverted Outer Corner Quarter Pipe", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 8m x 4m", + "className": "Desc_QuarterPipeCorner_04_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_8x1_01_C": { + "slug": "ramp-1m", + "name": "Ramp 1m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", + "className": "Desc_Ramp_8x1_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_8x2_01_C": { + "slug": "ramp-2m", + "name": "Ramp 2m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", + "className": "Desc_Ramp_8x2_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_8x4_01_C": { + "slug": "ramp-4m", + "name": "Ramp 4m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", + "className": "Desc_Ramp_8x4_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_8x4_Inverted_01_C": { + "slug": "inv-ramp-4m", + "name": "Inv. Ramp 4m", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", + "className": "Desc_Ramp_8x4_Inverted_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_8x8x8_C": { + "slug": "double-ramp-8m", + "name": "Double Ramp 8m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 8m", + "className": "Desc_Ramp_8x8x8_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Diagonal_8x1_01_C": { + "slug": "down-corner-ramp-1m", + "name": "Down Corner Ramp 1m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", + "className": "Desc_Ramp_Diagonal_8x1_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Diagonal_8x1_02_C": { + "slug": "up-corner-ramp-1m", + "name": "Up Corner Ramp 1m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", + "className": "Desc_Ramp_Diagonal_8x1_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Diagonal_8x2_01_C": { + "slug": "down-corner-ramp-2m", + "name": "Down Corner Ramp 2m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", + "className": "Desc_Ramp_Diagonal_8x2_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Diagonal_8x2_02_C": { + "slug": "up-corner-ramp-2m", + "name": "Up Corner Ramp 2m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", + "className": "Desc_Ramp_Diagonal_8x2_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Diagonal_8x4_01_C": { + "slug": "down-corner-ramp-4m", + "name": "Down Corner Ramp 4m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", + "className": "Desc_Ramp_Diagonal_8x4_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Diagonal_8x4_02_C": { + "slug": "up-corner-ramp-4m", + "name": "Up Corner Ramp 4m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", + "className": "Desc_Ramp_Diagonal_8x4_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampDouble_C": { + "slug": "double-ramp-4m", + "name": "Double Ramp 4m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", + "className": "Desc_RampDouble_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampDouble_8x1_C": { + "slug": "double-ramp-2m", + "name": "Double Ramp 2m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", + "className": "Desc_RampDouble_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampInverted_8x1_C": { + "slug": "inv-ramp-1m", + "name": "Inv. Ramp 1m", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", + "className": "Desc_RampInverted_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampInverted_8x1_Corner_01_C": { + "slug": "inv-up-corner-1m", + "name": "Inv. Up Corner 1m", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", + "className": "Desc_RampInverted_8x1_Corner_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampInverted_8x1_Corner_02_C": { + "slug": "inv-down-corner-1m", + "name": "Inv. Down Corner 1m", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", + "className": "Desc_RampInverted_8x1_Corner_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampInverted_8x2_01_C": { + "slug": "inv-ramp-2m", + "name": "Inv. Ramp 2m", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", + "className": "Desc_RampInverted_8x2_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampInverted_8x2_Corner_01_C": { + "slug": "inv-up-corner-2m", + "name": "Inv. Up Corner 2m", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", + "className": "Desc_RampInverted_8x2_Corner_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampInverted_8x2_Corner_02_C": { + "slug": "inv-down-corner-2m", + "name": "Inv. Down Corner 2m", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", + "className": "Desc_RampInverted_8x2_Corner_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampInverted_8x4_Corner_01_C": { + "slug": "inv-up-corner-4m", + "name": "Inv. Up Corner 4m", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", + "className": "Desc_RampInverted_8x4_Corner_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampInverted_8x4_Corner_02_C": { + "slug": "inv-down-corner-4m", + "name": "Inv. Down Corner 4m", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", + "className": "Desc_RampInverted_8x4_Corner_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_LookoutTower_C": { + "slug": "lookout-tower", + "name": "Lookout Tower", + "description": "Provides a good overview which makes factory construction easier.", + "className": "Desc_LookoutTower_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_DownQuarterPipe_Concrete_8x4_C": { + "slug": "inverted-quarter-pipe", + "name": "Inverted Quarter Pipe", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 8m x 4m", + "className": "Desc_DownQuarterPipe_Concrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_DownQuarterPipeInCorner_Concrete_8x4_C": { + "slug": "inverted-inner-corner-quarter-pipe", + "name": "Inverted Inner Corner Quarter Pipe", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 8m x 4m", + "className": "Desc_DownQuarterPipeInCorner_Concrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_DownQuarterPipeOutCorner_Concrete_8x4_C": { + "slug": "inverted-outer-corner-quarter-pipe", + "name": "Inverted Outer Corner Quarter Pipe", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 8m x 4m", + "className": "Desc_DownQuarterPipeOutCorner_Concrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Foundation_Concrete_8x1_C": { + "slug": "foundation-1m", + "name": "Foundation 1m", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", + "className": "Desc_Foundation_Concrete_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Foundation_Concrete_8x2_C": { + "slug": "foundation-2m", + "name": "Foundation 2m", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", + "className": "Desc_Foundation_Concrete_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Foundation_Concrete_8x4_C": { + "slug": "foundation-4m", + "name": "Foundation 4m", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", + "className": "Desc_Foundation_Concrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_Concrete_8x1_C": { + "slug": "inv-ramp-1m", + "name": "Inv. Ramp 1m", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", + "className": "Desc_InvertedRamp_Concrete_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_Concrete_8x2_C": { + "slug": "inv-ramp-2m", + "name": "Inv. Ramp 2m", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", + "className": "Desc_InvertedRamp_Concrete_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_Concrete_8x4_C": { + "slug": "inv-ramp-4m", + "name": "Inv. Ramp 4m", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", + "className": "Desc_InvertedRamp_Concrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_DCorner_Concrete_8x1_C": { + "slug": "inv-down-corner-1m", + "name": "Inv. Down Corner 1m", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", + "className": "Desc_InvertedRamp_DCorner_Concrete_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_DCorner_Concrete_8x2_C": { + "slug": "inv-down-corner-2m", + "name": "Inv. Down Corner 2m", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", + "className": "Desc_InvertedRamp_DCorner_Concrete_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_DCorner_Concrete_8x4_C": { + "slug": "inv-down-corner-4m", + "name": "Inv. Down Corner 4m", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", + "className": "Desc_InvertedRamp_DCorner_Concrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_UCorner_Concrete_8x1_C": { + "slug": "inv-up-corner-1m", + "name": "Inv. Up Corner 1m", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", + "className": "Desc_InvertedRamp_UCorner_Concrete_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_UCorner_Concrete_8x2_C": { + "slug": "inv-up-corner-2m", + "name": "Inv. Up Corner 2m", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", + "className": "Desc_InvertedRamp_UCorner_Concrete_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_UCorner_Concrete_8x4_C": { + "slug": "inv-up-corner-4m", + "name": "Inv. Up Corner 4m", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", + "className": "Desc_InvertedRamp_UCorner_Concrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipe_Concrete_8x4_C": { + "slug": "quarter-pipe", + "name": "Quarter Pipe", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 8m x 4m", + "className": "Desc_QuarterPipe_Concrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeInCorner_Concrete_8x4_C": { + "slug": "inner-corner-quarter-pipe", + "name": "Inner Corner Quarter Pipe", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 8m x 4m", + "className": "Desc_QuarterPipeInCorner_Concrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddle_Concrete_8x1_C": { + "slug": "half-1m-foundation", + "name": "Half 1m Foundation", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", + "className": "Desc_QuarterPipeMiddle_Concrete_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddle_Concrete_8x2_C": { + "slug": "half-2m-foundation", + "name": "Half 2m Foundation", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", + "className": "Desc_QuarterPipeMiddle_Concrete_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddle_Concrete_8x4_C": { + "slug": "half-4m-foundation", + "name": "Half 4m Foundation", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", + "className": "Desc_QuarterPipeMiddle_Concrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleInCorner_Concrete_8x1_C": { + "slug": "inner-corner-extension-1m", + "name": "Inner Corner Extension 1m", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 8m x 1m", + "className": "Desc_QuarterPipeMiddleInCorner_Concrete_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleInCorner_Concrete_8x2_C": { + "slug": "inner-corner-extension-2m", + "name": "Inner Corner Extension 2m", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 8m x 2m", + "className": "Desc_QuarterPipeMiddleInCorner_Concrete_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleInCorner_Concrete_8x4_C": { + "slug": "inner-corner-extension-4m", + "name": "Inner Corner Extension 4m", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 8m x 4m", + "className": "Desc_QuarterPipeMiddleInCorner_Concrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleOutCorner_Concrete_4x1_C": { + "slug": "outer-corner-extension-1m", + "name": "Outer Corner Extension 1m", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 4m x 1m", + "className": "Desc_QuarterPipeMiddleOutCorner_Concrete_4x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleOutCorner_Concrete_4x2_C": { + "slug": "outer-corner-extension-2m", + "name": "Outer Corner Extension 2m", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 4m x 2m", + "className": "Desc_QuarterPipeMiddleOutCorner_Concrete_4x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleOutCorner_Concrete_4x4_C": { + "slug": "outer-corner-extension-4m", + "name": "Outer Corner Extension 4m", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 4m x 4m", + "className": "Desc_QuarterPipeMiddleOutCorner_Concrete_4x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeOutCorner_Concrete_8x4_C": { + "slug": "outer-corner-quarter-pipe", + "name": "Outer Corner Quarter Pipe", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 8m x 4m", + "className": "Desc_QuarterPipeOutCorner_Concrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Concrete_8x1_C": { + "slug": "ramp-1m", + "name": "Ramp 1m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", + "className": "Desc_Ramp_Concrete_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Concrete_8x2_C": { + "slug": "ramp-2m", + "name": "Ramp 2m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", + "className": "Desc_Ramp_Concrete_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Concrete_8x4_C": { + "slug": "ramp-4m", + "name": "Ramp 4m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", + "className": "Desc_Ramp_Concrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_DownCorner_Concrete_8x1_C": { + "slug": "down-corner-ramp-1m", + "name": "Down Corner Ramp 1m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", + "className": "Desc_Ramp_DownCorner_Concrete_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_DownCorner_Concrete_8x2_C": { + "slug": "down-corner-ramp-2m", + "name": "Down Corner Ramp 2m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", + "className": "Desc_Ramp_DownCorner_Concrete_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_DownCorner_Concrete_8x4_C": { + "slug": "down-corner-ramp-4m", + "name": "Down Corner Ramp 4m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", + "className": "Desc_Ramp_DownCorner_Concrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_UpCorner_Concrete_8x1_C": { + "slug": "up-corner-ramp-1m", + "name": "Up Corner Ramp 1m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", + "className": "Desc_Ramp_UpCorner_Concrete_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_UpCorner_Concrete_8x2_C": { + "slug": "up-corner-ramp-2m", + "name": "Up Corner Ramp 2m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", + "className": "Desc_Ramp_UpCorner_Concrete_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_UpCorner_Concrete_8x4_C": { + "slug": "up-corner-ramp-4m", + "name": "Up Corner Ramp 4m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", + "className": "Desc_Ramp_UpCorner_Concrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampDouble_Concrete_8x1_C": { + "slug": "double-ramp-2m", + "name": "Double Ramp 2m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", + "className": "Desc_RampDouble_Concrete_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampDouble_Concrete_8x2_C": { + "slug": "double-ramp-4m", + "name": "Double Ramp 4m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", + "className": "Desc_RampDouble_Concrete_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampDouble_Concrete_8x4_C": { + "slug": "double-ramp-8m", + "name": "Double Ramp 8m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", + "className": "Desc_RampDouble_Concrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_DownQuarterPipe_Grip_8x4_C": { + "slug": "inverted-quarter-pipe", + "name": "Inverted Quarter Pipe", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 8m x 4m", + "className": "Desc_DownQuarterPipe_Grip_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_DownQuarterPipeInCorner_Grip_8x4_C": { + "slug": "inverted-inner-corner-quarter-pipe", + "name": "Inverted Inner Corner Quarter Pipe", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 8m x 4m", + "className": "Desc_DownQuarterPipeInCorner_Grip_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_DownQuarterPipeOutCorner_Grip_8x4_C": { + "slug": "inverted-outer-corner-quarter-pipe", + "name": "Inverted Outer Corner Quarter Pipe", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 8m x 4m", + "className": "Desc_DownQuarterPipeOutCorner_Grip_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Foundation_Metal_8x1_C": { + "slug": "foundation-1m", + "name": "Foundation 1m", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", + "className": "Desc_Foundation_Metal_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Foundation_Metal_8x2_C": { + "slug": "foundation-2m", + "name": "Foundation 2m", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", + "className": "Desc_Foundation_Metal_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Foundation_Metal_8x4_C": { + "slug": "foundation-4m", + "name": "Foundation 4m", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", + "className": "Desc_Foundation_Metal_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_DCorner_Metal_8x1_C": { + "slug": "inv-down-corner-1m", + "name": "Inv. Down Corner 1m", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", + "className": "Desc_InvertedRamp_DCorner_Metal_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_DCorner_Metal_8x2_C": { + "slug": "inv-down-corner-2m", + "name": "Inv. Down Corner 2m", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", + "className": "Desc_InvertedRamp_DCorner_Metal_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_DCorner_Metal_8x4_C": { + "slug": "inv-down-corner-4m", + "name": "Inv. Down Corner 4m", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", + "className": "Desc_InvertedRamp_DCorner_Metal_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_Metal_8x1_C": { + "slug": "inv-ramp-1m", + "name": "Inv. Ramp 1m", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", + "className": "Desc_InvertedRamp_Metal_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_Metal_8x2_C": { + "slug": "inv-ramp-2m", + "name": "Inv. Ramp 2m", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", + "className": "Desc_InvertedRamp_Metal_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_Metal_8x4_C": { + "slug": "inv-ramp-4m", + "name": "Inv. Ramp 4m", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", + "className": "Desc_InvertedRamp_Metal_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_UCorner_Metal_8x1_C": { + "slug": "inv-up-corner-1m", + "name": "Inv. Up Corner 1m", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", + "className": "Desc_InvertedRamp_UCorner_Metal_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_UCorner_Metal_8x2_C": { + "slug": "inv-up-corner-2m", + "name": "Inv. Up Corner 2m", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", + "className": "Desc_InvertedRamp_UCorner_Metal_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_UCorner_Metal_8x4_C": { + "slug": "inv-up-corner-4m", + "name": "Inv. Up Corner 4m", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", + "className": "Desc_InvertedRamp_UCorner_Metal_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipe_Grip_8x4_C": { + "slug": "quarter-pipe", + "name": "Quarter Pipe", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 8m x 4m", + "className": "Desc_QuarterPipe_Grip_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeInCorner_Grip_8x4_C": { + "slug": "inner-corner-quarter-pipe", + "name": "Inner Corner Quarter Pipe", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 8m x 4m", + "className": "Desc_QuarterPipeInCorner_Grip_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddle_Grip_8x1_C": { + "slug": "half-1m-foundation", + "name": "Half 1m Foundation", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", + "className": "Desc_QuarterPipeMiddle_Grip_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddle_Grip_8x2_C": { + "slug": "half-2m-foundation", + "name": "Half 2m Foundation", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", + "className": "Desc_QuarterPipeMiddle_Grip_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddle_Grip_8x4_C": { + "slug": "half-4m-foundation", + "name": "Half 4m Foundation", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", + "className": "Desc_QuarterPipeMiddle_Grip_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleInCorner_Grip_8x1_C": { + "slug": "inner-corner-extension-1m", + "name": "Inner Corner Extension 1m", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 8m x 1m", + "className": "Desc_QuarterPipeMiddleInCorner_Grip_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleInCorner_Grip_8x2_C": { + "slug": "inner-corner-extension-2m", + "name": "Inner Corner Extension 2m", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 8m x 2m", + "className": "Desc_QuarterPipeMiddleInCorner_Grip_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleInCorner_Grip_8x4_C": { + "slug": "inner-corner-extension-4m", + "name": "Inner Corner Extension 4m", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 8m x 4m", + "className": "Desc_QuarterPipeMiddleInCorner_Grip_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleOutCorner_Grip_4x1_C": { + "slug": "outer-corner-extension-1m", + "name": "Outer Corner Extension 1m", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 4m x 1m", + "className": "Desc_QuarterPipeMiddleOutCorner_Grip_4x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleOutCorner_Grip_4x2_C": { + "slug": "outer-corner-extension-2m", + "name": "Outer Corner Extension 2m", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 4m x 2m", + "className": "Desc_QuarterPipeMiddleOutCorner_Grip_4x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleOutCorner_Grip_4x4_C": { + "slug": "outer-corner-extension-4m", + "name": "Outer Corner Extension 4m", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 4m x 4m", + "className": "Desc_QuarterPipeMiddleOutCorner_Grip_4x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeOutCorner_Grip_8x4_C": { + "slug": "outer-corner-quarter-pipe", + "name": "Outer Corner Quarter Pipe", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 8m x 4m", + "className": "Desc_QuarterPipeOutCorner_Grip_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_DownCorner_Metal_8x1_C": { + "slug": "down-corner-ramp-1m", + "name": "Down Corner Ramp 1m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", + "className": "Desc_Ramp_DownCorner_Metal_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_DownCorner_Metal_8x2_C": { + "slug": "down-corner-ramp-2m", + "name": "Down Corner Ramp 2m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", + "className": "Desc_Ramp_DownCorner_Metal_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_DownCorner_Metal_8x4_C": { + "slug": "down-corner-ramp-4m", + "name": "Down Corner Ramp 4m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", + "className": "Desc_Ramp_DownCorner_Metal_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Metal_8x1_C": { + "slug": "ramp-1m", + "name": "Ramp 1m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", + "className": "Desc_Ramp_Metal_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Metal_8x2_C": { + "slug": "ramp-2m", + "name": "Ramp 2m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", + "className": "Desc_Ramp_Metal_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Metal_8x4_C": { + "slug": "ramp-4m", + "name": "Ramp 4m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", + "className": "Desc_Ramp_Metal_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_UpCorner_Metal_8x1_C": { + "slug": "up-corner-ramp-1m", + "name": "Up Corner Ramp 1m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", + "className": "Desc_Ramp_UpCorner_Metal_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_UpCorner_Metal_8x2_C": { + "slug": "up-corner-ramp-2m", + "name": "Up Corner Ramp 2m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", + "className": "Desc_Ramp_UpCorner_Metal_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_UpCorner_Metal_8x4_C": { + "slug": "up-corner-ramp-4m", + "name": "Up Corner Ramp 4m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", + "className": "Desc_Ramp_UpCorner_Metal_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampDouble_Metal_8x1_C": { + "slug": "double-ramp-2m", + "name": "Double Ramp 2m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", + "className": "Desc_RampDouble_Metal_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampDouble_Metal_8x2_C": { + "slug": "double-ramp-4m", + "name": "Double Ramp 4m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", + "className": "Desc_RampDouble_Metal_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampDouble_Metal_8x4_C": { + "slug": "double-ramp-8m", + "name": "Double Ramp 8m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", + "className": "Desc_RampDouble_Metal_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_DownQuarterPipe_ConcretePolished_8x4_C": { + "slug": "inverted-quarter-pipe", + "name": "Inverted Quarter Pipe", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 8m x 4m", + "className": "Desc_DownQuarterPipe_ConcretePolished_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_DownQuarterPipeInCorner_ConcretePolished_8x4_C": { + "slug": "inverted-inner-corner-quarter-pipe", + "name": "Inverted Inner Corner Quarter Pipe", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 8m x 4m", + "className": "Desc_DownQuarterPipeInCorner_ConcretePolished_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_DownQuarterPipeOutCorner_ConcretePolished_8x4_C": { + "slug": "inverted-outer-corner-quarter-pipe", + "name": "Inverted Outer Corner Quarter Pipe", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 8m x 4m", + "className": "Desc_DownQuarterPipeOutCorner_ConcretePolished_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Foundation_ConcretePolished_8x1_C": { + "slug": "foundation-1m", + "name": "Foundation 1m", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", + "className": "Desc_Foundation_ConcretePolished_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_DCorner_Polished_8x1_C": { + "slug": "inv-down-corner-1m", + "name": "Inv. Down Corner 1m", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", + "className": "Desc_InvertedRamp_DCorner_Polished_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_DCorner_Polished_8x2_C": { + "slug": "inv-down-corner-2m", + "name": "Inv. Down Corner 2m", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", + "className": "Desc_InvertedRamp_DCorner_Polished_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_DCorner_Polished_8x4_C": { + "slug": "inv-down-corner-4m", + "name": "Inv. Down Corner 4m", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", + "className": "Desc_InvertedRamp_DCorner_Polished_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_Polished_8x1_C": { + "slug": "inv-ramp-1m", + "name": "Inv. Ramp 1m", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", + "className": "Desc_InvertedRamp_Polished_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_Polished_8x2_C": { + "slug": "inv-ramp-2m", + "name": "Inv. Ramp 2m", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", + "className": "Desc_InvertedRamp_Polished_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_Polished_8x4_C": { + "slug": "inv-ramp-4m", + "name": "Inv. Ramp 4m", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", + "className": "Desc_InvertedRamp_Polished_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_UCorner_Polished_8x1_C": { + "slug": "inv-up-corner-1m", + "name": "Inv. Up Corner 1m", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", + "className": "Desc_InvertedRamp_UCorner_Polished_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_UCorner_Polished_8x2_C": { + "slug": "inv-up-corner-2m", + "name": "Inv. Up Corner 2m", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", + "className": "Desc_InvertedRamp_UCorner_Polished_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_UCorner_Polished_8x4_C": { + "slug": "inv-up-corner-4m", + "name": "Inv. Up Corner 4m", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", + "className": "Desc_InvertedRamp_UCorner_Polished_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipe_ConcretePolished_8x4_C": { + "slug": "quarter-pipe", + "name": "Quarter Pipe", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 8m x 4m", + "className": "Desc_QuarterPipe_ConcretePolished_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeInCorner_ConcretePolished_8x4_C": { + "slug": "inner-corner-quarter-pipe", + "name": "Inner Corner Quarter Pipe", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 8m x 4m", + "className": "Desc_QuarterPipeInCorner_ConcretePolished_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddle_PolishedConcrete_8x1_C": { + "slug": "half-1m-foundation", + "name": "Half 1m Foundation", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", + "className": "Desc_QuarterPipeMiddle_PolishedConcrete_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddle_PolishedConcrete_8x2_C": { + "slug": "half-2m-foundation", + "name": "Half 2m Foundation", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", + "className": "Desc_QuarterPipeMiddle_PolishedConcrete_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddle_PolishedConcrete_8x4_C": { + "slug": "half-4m-foundation", + "name": "Half 4m Foundation", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", + "className": "Desc_QuarterPipeMiddle_PolishedConcrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleInCorner_PolishedConcrete_8x1_C": { + "slug": "inner-corner-extension-1m", + "name": "Inner Corner Extension 1m", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 8m x 1m", + "className": "Desc_QuarterPipeMiddleInCorner_PolishedConcrete_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleInCorner_PolishedConcrete_8x2_C": { + "slug": "inner-corner-extension-2m", + "name": "Inner Corner Extension 2m", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 8m x 2m", + "className": "Desc_QuarterPipeMiddleInCorner_PolishedConcrete_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleInCorner_PolishedConcrete_8x4_C": { + "slug": "inner-corner-extension-4m", + "name": "Inner Corner Extension 4m", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 8m x 4m", + "className": "Desc_QuarterPipeMiddleInCorner_PolishedConcrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleOutCorner_PolishedConcrete_4x1_C": { + "slug": "outer-corner-extension-1m", + "name": "Outer Corner Extension 1m", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 4m x 1m", + "className": "Desc_QuarterPipeMiddleOutCorner_PolishedConcrete_4x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleOutCorner_PolishedConcrete_4x2_C": { + "slug": "outer-corner-extension-2m", + "name": "Outer Corner Extension 2m", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 4m x 2m", + "className": "Desc_QuarterPipeMiddleOutCorner_PolishedConcrete_4x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleOutCorner_PolishedConcrete_4x4_C": { + "slug": "outer-corner-extension-4m", + "name": "Outer Corner Extension 4m", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 4m x 4m", + "className": "Desc_QuarterPipeMiddleOutCorner_PolishedConcrete_4x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeOutCorner_ConcretePolished_8x4_C": { + "slug": "outer-corner-quarter-pipe", + "name": "Outer Corner Quarter Pipe", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 8m x 4m", + "className": "Desc_QuarterPipeOutCorner_ConcretePolished_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_DownCorner_Polished_8x1_C": { + "slug": "down-corner-ramp-1m", + "name": "Down Corner Ramp 1m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", + "className": "Desc_Ramp_DownCorner_Polished_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_DownCorner_Polished_8x2_C": { + "slug": "down-corner-ramp-2m", + "name": "Down Corner Ramp 2m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", + "className": "Desc_Ramp_DownCorner_Polished_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_DownCorner_Polished_8x4_C": { + "slug": "down-corner-ramp-4m", + "name": "Down Corner Ramp 4m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", + "className": "Desc_Ramp_DownCorner_Polished_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Polished_8x1_C": { + "slug": "ramp-1m", + "name": "Ramp 1m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", + "className": "Desc_Ramp_Polished_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Polished_8x2_C": { + "slug": "ramp-2m", + "name": "Ramp 2m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", + "className": "Desc_Ramp_Polished_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Polished_8x4_C": { + "slug": "ramp-4m", + "name": "Ramp 4m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", + "className": "Desc_Ramp_Polished_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_UpCorner_Polished_8x1_C": { + "slug": "up-corner-ramp-1m", + "name": "Up Corner Ramp 1m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", + "className": "Desc_Ramp_UpCorner_Polished_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_UpCorner_Polished_8x2_C": { + "slug": "up-corner-ramp-2m", + "name": "Up Corner Ramp 2m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", + "className": "Desc_Ramp_UpCorner_Polished_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_UpCorner_Polished_8x4_C": { + "slug": "up-corner-ramp-4m", + "name": "Up Corner Ramp 4m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", + "className": "Desc_Ramp_UpCorner_Polished_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampDouble_Polished_8x1_C": { + "slug": "double-ramp-2m", + "name": "Double Ramp 2m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", + "className": "Desc_RampDouble_Polished_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampDouble_Polished_8x2_C": { + "slug": "double-ramp-4m", + "name": "Double Ramp 4m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", + "className": "Desc_RampDouble_Polished_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampDouble_Polished_8x4_C": { + "slug": "double-ramp-8m", + "name": "Double Ramp 8m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", + "className": "Desc_RampDouble_Polished_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_DownQuarterPipe_Asphalt_8x4_C": { + "slug": "inverted-quarter-pipe", + "name": "Inverted Quarter Pipe", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 8m x 4m", + "className": "Desc_DownQuarterPipe_Asphalt_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_DownQuarterPipeInCorner_Asphalt_8x4_C": { + "slug": "inverted-inner-corner-quarter-pipe", + "name": "Inverted Inner Corner Quarter Pipe", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 8m x 4m", + "className": "Desc_DownQuarterPipeInCorner_Asphalt_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_DownQuarterPipeOutCorner_Asphalt_8x4_C": { + "slug": "inverted-outer-corner-quarter-pipe", + "name": "Inverted Outer Corner Quarter Pipe", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 8m x 4m", + "className": "Desc_DownQuarterPipeOutCorner_Asphalt_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Foundation_Asphalt_8x1_C": { + "slug": "foundation-1m", + "name": "Foundation 1m", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", + "className": "Desc_Foundation_Asphalt_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Foundation_Asphalt_8x2_C": { + "slug": "foundation-2m", + "name": "Foundation 2m", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", + "className": "Desc_Foundation_Asphalt_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Foundation_Asphalt_8x4_C": { + "slug": "foundation-4m", + "name": "Foundation 4m", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", + "className": "Desc_Foundation_Asphalt_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_Asphalt_8x1_C": { + "slug": "inv-ramp-1m", + "name": "Inv. Ramp 1m", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", + "className": "Desc_InvertedRamp_Asphalt_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_Asphalt_8x2_C": { + "slug": "inv-ramp-2m", + "name": "Inv. Ramp 2m", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", + "className": "Desc_InvertedRamp_Asphalt_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_Asphalt_8x4_C": { + "slug": "inv-ramp-4m", + "name": "Inv. Ramp 4m", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", + "className": "Desc_InvertedRamp_Asphalt_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_DCorner_Asphalt_8x1_C": { + "slug": "inv-down-corner-1m", + "name": "Inv. Down Corner 1m", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", + "className": "Desc_InvertedRamp_DCorner_Asphalt_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_DCorner_Asphalt_8x2_C": { + "slug": "inv-down-corner-2m", + "name": "Inv. Down Corner 2m", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", + "className": "Desc_InvertedRamp_DCorner_Asphalt_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_DCorner_Asphalt_8x4_C": { + "slug": "inv-down-corner-4m", + "name": "Inv. Down Corner 4m", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", + "className": "Desc_InvertedRamp_DCorner_Asphalt_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_UCorner_Asphalt_8x1_C": { + "slug": "inv-up-corner-1m", + "name": "Inv. Up Corner 1m", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", + "className": "Desc_InvertedRamp_UCorner_Asphalt_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_UCorner_Asphalt_8x2_C": { + "slug": "inv-up-corner-2m", + "name": "Inv. Up Corner 2m", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", + "className": "Desc_InvertedRamp_UCorner_Asphalt_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_UCorner_Asphalt_8x4_C": { + "slug": "inv-up-corner-4m", + "name": "Inv. Up Corner 4m", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", + "className": "Desc_InvertedRamp_UCorner_Asphalt_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipe_Asphalt_8x4_C": { + "slug": "quarter-pipe", + "name": "Quarter Pipe", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 8m x 4m", + "className": "Desc_QuarterPipe_Asphalt_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeInCorner_Asphalt_8x4_C": { + "slug": "inner-corner-quarter-pipe", + "name": "Inner Corner Quarter Pipe", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 8m x 4m", + "className": "Desc_QuarterPipeInCorner_Asphalt_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddle_Asphalt_8x1_C": { + "slug": "half-1m-foundation", + "name": "Half 1m Foundation", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", + "className": "Desc_QuarterPipeMiddle_Asphalt_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddle_Asphalt_8x2_C": { + "slug": "half-2m-foundation", + "name": "Half 2m Foundation", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", + "className": "Desc_QuarterPipeMiddle_Asphalt_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddle_Asphalt_8x4_C": { + "slug": "half-4m-foundation", + "name": "Half 4m Foundation", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", + "className": "Desc_QuarterPipeMiddle_Asphalt_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleInCorner_Asphalt_8x1_C": { + "slug": "inner-corner-extension-1m", + "name": "Inner Corner Extension 1m", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 8m x 1m", + "className": "Desc_QuarterPipeMiddleInCorner_Asphalt_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleInCorner_Asphalt_8x2_C": { + "slug": "inner-corner-extension-2m", + "name": "Inner Corner Extension 2m", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 8m x 2m", + "className": "Desc_QuarterPipeMiddleInCorner_Asphalt_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleInCorner_Asphalt_8x4_C": { + "slug": "inner-corner-extension-4m", + "name": "Inner Corner Extension 4m", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 8m x 4m", + "className": "Desc_QuarterPipeMiddleInCorner_Asphalt_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleOutCorner_Asphalt_4x1_C": { + "slug": "outer-corner-extension-1m", + "name": "Outer Corner Extension 1m", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 4m x 1m", + "className": "Desc_QuarterPipeMiddleOutCorner_Asphalt_4x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleOutCorner_Asphalt_4x2_C": { + "slug": "outer-corner-extension-2m", + "name": "Outer Corner Extension 2m", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 4m x 2m", + "className": "Desc_QuarterPipeMiddleOutCorner_Asphalt_4x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleOutCorner_Asphalt_4x4_C": { + "slug": "outer-corner-extension-4m", + "name": "Outer Corner Extension 4m", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 4m x 4m", + "className": "Desc_QuarterPipeMiddleOutCorner_Asphalt_4x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeOutCorner_Asphalt_8x4_C": { + "slug": "outer-corner-quarter-pipe", + "name": "Outer Corner Quarter Pipe", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard foundation building grid for improved building placement.\n\nSize: 8m x 4m", + "className": "Desc_QuarterPipeOutCorner_Asphalt_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Asphalt_8x1_C": { + "slug": "ramp-1m", + "name": "Ramp 1m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", + "className": "Desc_Ramp_Asphalt_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Asphalt_8x2_C": { + "slug": "ramp-2m", + "name": "Ramp 2m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", + "className": "Desc_Ramp_Asphalt_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Asphalt_8x4_C": { + "slug": "ramp-4m", + "name": "Ramp 4m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", + "className": "Desc_Ramp_Asphalt_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_DownCorner_Asphalt_8x1_C": { + "slug": "down-corner-ramp-1m", + "name": "Down Corner Ramp 1m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", + "className": "Desc_Ramp_DownCorner_Asphalt_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_DownCorner_Asphalt_8x2_C": { + "slug": "down-corner-ramp-2m", + "name": "Down Corner Ramp 2m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", + "className": "Desc_Ramp_DownCorner_Asphalt_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_DownCorner_Asphalt_8x4_C": { + "slug": "down-corner-ramp-4m", + "name": "Down Corner Ramp 4m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", + "className": "Desc_Ramp_DownCorner_Asphalt_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_UpCorner_Asphalt_8x1_C": { + "slug": "up-corner-ramp-1m", + "name": "Up Corner Ramp 1m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", + "className": "Desc_Ramp_UpCorner_Asphalt_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_UpCorner_Asphalt_8x2_C": { + "slug": "up-corner-ramp-2m", + "name": "Up Corner Ramp 2m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", + "className": "Desc_Ramp_UpCorner_Asphalt_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_UpCorner_Asphalt_8x4_C": { + "slug": "up-corner-ramp-4m", + "name": "Up Corner Ramp 4m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", + "className": "Desc_Ramp_UpCorner_Asphalt_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampDouble_Asphalt_8x1_C": { + "slug": "double-ramp-2m", + "name": "Double Ramp 2m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 2m", + "className": "Desc_RampDouble_Asphalt_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampDouble_Asphalt_8x2_C": { + "slug": "double-ramp-4m", + "name": "Double Ramp 4m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 4m", + "className": "Desc_RampDouble_Asphalt_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampDouble_Asphalt_8x4_C": { + "slug": "double-ramp-8m", + "name": "Double Ramp 8m", + "description": "Snaps to foundations and makes it easier to get on top of them.\n\nBuildings on top of the ramp are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 8m", + "className": "Desc_RampDouble_Asphalt_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_GeneratorGeoThermal_C": { + "slug": "geothermal-generator", + "name": "Geothermal Generator", + "description": "Has to be built on a Geyser. Generates power.\n\nCaution: Power production fluctuates.\n\nPower Production:\nImpure 50-150 MW (100 MW average)\nNormal 100-300 MW (200 MW average)\nPure 200-600 MW (400 MW average)", + "className": "Desc_GeneratorGeoThermal_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConveyorAttachmentSplitterProgrammable_C": { + "slug": "programmable-splitter", + "name": "Programmable Splitter", + "description": "Splits conveyor belts in three. \nYou can set rules for each output to decide exactly where each part should go.", + "className": "Desc_ConveyorAttachmentSplitterProgrammable_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PowerPoleMk3_C": { + "slug": "power-pole-mk-3", + "name": "Power Pole Mk.3", + "description": "Can handle up to 10 Power Line connections.\n\nConnect Power Poles, Power Generators and factory buildings together with Power Lines to create a power grid. The power grid supplies the connected buildings with power.", + "className": "Desc_PowerPoleMk3_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PriorityPowerSwitch_C": { + "slug": "priority-power-switch", + "name": "Priority Power Switch", + "description": "Priority Power Switches can be organized by priority. In cases of low power the Switches will start turning off automatically until the power stabilizes, starting from Priority Group 8.", + "className": "Desc_PriorityPowerSwitch_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PowerPoleMk2_C": { + "slug": "power-pole-mk-2", + "name": "Power Pole Mk.2", + "description": "Can handle up to 7 Power Line connections.\n\nConnect Power Poles, Power Generators and factory buildings together with Power Lines to create a power grid. The power grid supplies the connected buildings with power.", + "className": "Desc_PowerPoleMk2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PowerSwitch_C": { + "slug": "power-switch", + "name": "Power Switch", + "description": "Can be switched ON/OFF to enable/disable the connection between two Power Grids.\n\nNote the location of the A and B connections.", + "className": "Desc_PowerSwitch_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConveyorAttachmentSplitterSmart_C": { + "slug": "smart-splitter", + "name": "Smart Splitter", + "description": "Splits conveyor belts in three.\nYou can set a rule for each output to decide exactly what part should go there.", + "className": "Desc_ConveyorAttachmentSplitterSmart_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RadarTower_C": { + "slug": "radar-tower", + "name": "Radar Tower", + "description": "Radar Towers scan their surrounding area to display additional information on the Map.\n\nThe information revealed on the Map includes:\n- Resource Node locations\n- Terrain data\n- Flora & fauna information\n- Notable signal readings", + "className": "Desc_RadarTower_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 30, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_WreathDecor_C": { + "slug": "ficsmas-wreath", + "name": "FICSMAS Wreath", + "description": "Can be attached to walls. Pretty.", + "className": "Desc_WreathDecor_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_SnowDispenser_C": { + "slug": "ficsmas-snow-dispenser", + "name": "FICSMAS Snow Dispenser", + "description": "Makes it snow!\nCan be attached to walls and ceilings.", + "className": "Desc_SnowDispenser_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_xmassLights_C": { + "slug": "ficsmas-power-light", + "name": "FICSMAS Power Light", + "description": "Used to connect Power Poles, Power Generators and Factory buildings. Has pretty lights to boot!", + "className": "Desc_xmassLights_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_TreeGiftProducer_C": { + "slug": "ficsmas-gift-tree", + "name": "FICSMAS Gift Tree", + "description": "It comes bearing gifts.\nProduces 15 Gifts per minute.", + "className": "Desc_TreeGiftProducer_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Snowman_C": { + "slug": "snowman", + "name": "Snowman", + "description": "Do you wanna build it?\nYou will finally have a friend!\n\n*Disclaimer: It is not actually your friend.", + "className": "Desc_Snowman_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_XMassTree_C": { + "slug": "giant-ficsmas-tree", + "name": "Giant FICSMAS Tree", + "description": "This special delivery gigantic FICSMAS Tree is decorated by progressing the FICSMAS Holiday Event MAM Tree.", + "className": "Desc_XMassTree_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_CandyCaneDecor_C": { + "slug": "candy-cane", + "name": "Candy Cane", + "description": "A giant, delicious Candy Cane.\n\n*Warning: It is not actually delicious... or edible, for that matter.", + "className": "Desc_CandyCaneDecor_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Flat_Frame_01_C": { + "slug": "frame-floor", + "name": "Frame Floor", + "description": "Snaps to other structural buildings.\nFrames provide a more open factory aesthetic.\n\nSize: 8m x 0.5m", + "className": "Desc_Flat_Frame_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Foundation_Frame_01_C": { + "slug": "frame-foundation", + "name": "Frame Foundation", + "description": "Snaps to other structural buildings.\n\nFrames provide a more open factory aesthetic.\n\nSize: 8m x 4m", + "className": "Desc_Foundation_Frame_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_FoundationGlass_01_C": { + "slug": "glass-frame-foundation", + "name": "Glass Frame Foundation", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the foundation are adjusted to a grid, to make it easier to line them up to each other.\n\nSize: 8m x 1m", + "className": "Desc_FoundationGlass_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Frame_01_C": { + "slug": "frame-ramp", + "name": "Frame Ramp", + "description": "Snaps to other structural buildings.\n\nFrames provide a more open factory aesthetic.\n\nSize: 8m x 4m", + "className": "Desc_Ramp_Frame_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Frame_Inverted_01_C": { + "slug": "inverted-frame-ramp", + "name": "Inverted Frame Ramp", + "description": "Snaps to other structural buildings.\n\nFrames provide a more open factory aesthetic.\n\nSize: 8m x 4m", + "className": "Desc_Ramp_Frame_Inverted_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Frame_01_C": { + "slug": "frame-wall", + "name": "Frame Wall", + "description": "Snaps to other structural buildings.\n\nFrames provide a more open factory aesthetic.\n\nSize: 8m x 4m", + "className": "Desc_Wall_Frame_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Railing_01_C": { + "slug": "modern-railing", + "name": "Modern Railing", + "description": "Railings can be built on Foundations to create a safer working environment.\n\nThis particular Railing is 4 meters long and angles automatically when built on Ramps.", + "className": "Desc_Railing_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Pillar_Small_Metal_C": { + "slug": "small-metal-pillar", + "name": "Small Metal Pillar", + "description": "Snaps to other Pillars and can be placed on, for example, Foundations and Walls.\n\nSize: 2m x 4m", + "className": "Desc_Pillar_Small_Metal_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PillarBase_Small_C": { + "slug": "small-pillar-support", + "name": "Small Pillar Support", + "description": "The Pillar Support snaps to Pillars and can be placed on, for example, Foundations and Walls.", + "className": "Desc_PillarBase_Small_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PillarBase_C": { + "slug": "big-pillar-support", + "name": "Big Pillar Support", + "description": "The Pillar Support snaps to Pillars and can be placed on, for example, Foundations and Walls.", + "className": "Desc_PillarBase_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PillarMiddle_C": { + "slug": "big-metal-pillar", + "name": "Big Metal Pillar", + "description": "Snaps to other Pillars and can be placed on, for example, Foundations and Walls.\n\nSize: 4m x 4m", + "className": "Desc_PillarMiddle_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ladder_C": { + "slug": "ladder", + "name": "Ladder", + "description": "A ladder with a default height of 2 meters, which can be extended while building. Snaps to walls and foundations.", + "className": "Desc_Ladder_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Stairs_Left_01_C": { + "slug": "stairs-left", + "name": "Stairs Left", + "description": "Snaps to foundations.\n\nMakes it easier to get to other floors of your structures.", + "className": "Desc_Stairs_Left_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Stairs_Right_01_C": { + "slug": "stairs-right", + "name": "Stairs Right", + "description": "Snaps to foundations.\n\nMakes it easier to get to other floors of your structures.", + "className": "Desc_Stairs_Right_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Gate_Automated_8x4_C": { + "slug": "automated-gate", + "name": "Automated Gate", + "description": "Automatically opens when living beings or vehicles approach it.\nGate settings can be configured.\nSnaps to foundations and walls.\n\nSize: 8m x 4m", + "className": "Desc_Gate_Automated_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_HyperTubeWallHole_C": { + "slug": "hypertube-wall-hole", + "name": "Hypertube Wall Hole", + "description": "Can be attached to walls to allow Hypertubes to pass through them.", + "className": "Desc_HyperTubeWallHole_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PipelineSupportWallHole_C": { + "slug": "pipeline-wall-hole", + "name": "Pipeline Wall Hole", + "description": "Can be attached to walls, allowing Pipelines to pass through them.", + "className": "Desc_PipelineSupportWallHole_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_FoundationPassthrough_Pipe_C": { + "slug": "pipeline-floor-hole", + "name": "Pipeline Floor Hole", + "description": "Can be attached to Foundations, allowing Pipelines to pass through them.", + "className": "Desc_FoundationPassthrough_Pipe_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PowerPoleWallDouble_C": { + "slug": "double-wall-outlet-mk-1", + "name": "Double Wall Outlet Mk.1", + "description": "Power Pole that attaches to a wall. Has one connector on each side of the wall.\n\nCan handle up to 4 Power Line connections.\n\nConnect Power Poles, Power Generators and factory buildings together with Power Lines to create a power grid. The power grid supplies the connected buildings with power.", + "className": "Desc_PowerPoleWallDouble_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PowerPoleWallDoubleMk2_C": { + "slug": "double-wall-outlet-mk-2", + "name": "Double Wall Outlet Mk.2", + "description": "Power Pole that attaches to a wall. Has one connector on each side of the wall.\n\nCan handle up to 7 Power Line connections.\n\nConnect Power Poles, Power Generators and factory buildings together with Power Lines to create a power grid. The power grid supplies the connected buildings with power.", + "className": "Desc_PowerPoleWallDoubleMk2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PowerPoleWallMk2_C": { + "slug": "wall-outlet-mk-2", + "name": "Wall Outlet Mk.2", + "description": "Power Pole that attaches to a wall.\n\nCan handle up to 7 Power Line connections.\n\nConnect Power Poles, Power Generators and factory buildings together with Power Lines to create a power grid. The power grid supplies the connected buildings with power.", + "className": "Desc_PowerPoleWallMk2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PowerPoleWallDoubleMk3_C": { + "slug": "double-wall-outlet-mk-3", + "name": "Double Wall Outlet Mk.3", + "description": "Power Pole that attaches to a wall. Has one connector on each side of the wall.\n\nCan handle up to 10 Power Line connections.\n\nConnect Power Poles, Power Generators and factory buildings together with Power Lines to create a power grid. The power grid supplies the connected buildings with power.", + "className": "Desc_PowerPoleWallDoubleMk3_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PowerPoleWallMk3_C": { + "slug": "wall-outlet-mk-3", + "name": "Wall Outlet Mk.3", + "description": "Power Pole that attaches to a wall.\n\nCan handle up to 10 Power Line connections.\n\nConnect Power Poles, Power Generators and factory buildings together with Power Lines to create a power grid. The power grid supplies the connected buildings with power.", + "className": "Desc_PowerPoleWallMk3_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_StreetLight_C": { + "slug": "street-light", + "name": "Street Light", + "description": "A small Street Light, perfect for lighting up factory pathways and roads.\n\nLight color and intensity can be modified.\nAllows up to two Power Line connections.", + "className": "Desc_StreetLight_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 1, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_CeilingLight_C": { + "slug": "ceiling-light", + "name": "Ceiling Light", + "description": "Can be placed on ceilings to light up indoor factory spaces.\n\nLight color and intensity can be modified.\nAllows up to two Power Line connections.", + "className": "Desc_CeilingLight_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 2, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_FloodlightPole_C": { + "slug": "flood-light-tower", + "name": "Flood Light Tower", + "description": "A tall light tower, specifically designed for illuminating large or outdoor spaces.\n\nLight color and intensity can be modified.\nAllows up to two Power Line connections.", + "className": "Desc_FloodlightPole_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 6, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_FloodlightWall_C": { + "slug": "wall-mounted-flood-light", + "name": "Wall Mounted Flood Light", + "description": "Can be attached to Walls and Foundations to illuminate large spaces.\n\nLight color and intensity can be modified.\nAllows up to two Power Line connections.", + "className": "Desc_FloodlightWall_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 6, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Orange_01_C": { + "slug": "roof-flat", + "name": "Roof Flat", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8m x flat", + "className": "Desc_Roof_Orange_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Orange_02_C": { + "slug": "roof-1m", + "name": "Roof 1m", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8m x 1m", + "className": "Desc_Roof_Orange_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Orange_03_C": { + "slug": "roof-2m", + "name": "Roof 2m", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8m x 2m", + "className": "Desc_Roof_Orange_03_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Orange_04_C": { + "slug": "roof-4m", + "name": "Roof 4m", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8m x 4m", + "className": "Desc_Roof_Orange_04_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Orange_InCorner_01_C": { + "slug": "inner-corner-roof-1m", + "name": "Inner Corner Roof 1m", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8m x 1m", + "className": "Desc_Roof_Orange_InCorner_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Orange_InCorner_02_C": { + "slug": "inner-corner-roof-2m", + "name": "Inner Corner Roof 2m", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8m x 2m", + "className": "Desc_Roof_Orange_InCorner_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Orange_InCorner_03_C": { + "slug": "inner-corner-roof-4m", + "name": "Inner Corner Roof 4m", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8m x 4m", + "className": "Desc_Roof_Orange_InCorner_03_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Orange_OutCorner_01_C": { + "slug": "outer-corner-roof-1m", + "name": "Outer Corner Roof 1m", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8m x 1m", + "className": "Desc_Roof_Orange_OutCorner_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Orange_OutCorner_02_C": { + "slug": "outer-corner-roof-2m", + "name": "Outer Corner Roof 2m", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8m x 2m", + "className": "Desc_Roof_Orange_OutCorner_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Orange_OutCorner_03_C": { + "slug": "outer-corner-roof-4m", + "name": "Outer Corner Roof 4m", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8m x 4m", + "className": "Desc_Roof_Orange_OutCorner_03_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Window_01_C": { + "slug": "roof-flat", + "name": "Roof Flat", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8m x flat", + "className": "Desc_Roof_Window_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Window_02_C": { + "slug": "roof-1m", + "name": "Roof 1m", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8m x 1m", + "className": "Desc_Roof_Window_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Window_03_C": { + "slug": "roof-2m", + "name": "Roof 2m", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8m x 2m", + "className": "Desc_Roof_Window_03_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Window_04_C": { + "slug": "roof-4m", + "name": "Roof 4m", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8m x 4m", + "className": "Desc_Roof_Window_04_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Window_InCorner_01_C": { + "slug": "inner-corner-roof-1m", + "name": "Inner Corner Roof 1m", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8m x 1m", + "className": "Desc_Roof_Window_InCorner_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Window_InCorner_02_C": { + "slug": "inner-corner-roof-2m", + "name": "Inner Corner Roof 2m", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8m x 2m", + "className": "Desc_Roof_Window_InCorner_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Window_InCorner_03_C": { + "slug": "inner-corner-roof-4m", + "name": "Inner Corner Roof 4m", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8m x 4m", + "className": "Desc_Roof_Window_InCorner_03_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Window_OutCorner_01_C": { + "slug": "outer-corner-roof-1m", + "name": "Outer Corner Roof 1m", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8m x 1m", + "className": "Desc_Roof_Window_OutCorner_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Window_OutCorner_02_C": { + "slug": "outer-corner-roof-2m", + "name": "Outer Corner Roof 2m", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8m x 2m", + "className": "Desc_Roof_Window_OutCorner_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Window_OutCorner_03_C": { + "slug": "outer-corner-roof-4m", + "name": "Outer Corner Roof 4m", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8m x 4m", + "className": "Desc_Roof_Window_OutCorner_03_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_A_01_C": { + "slug": "roof-flat", + "name": "Roof Flat", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8m x 0.51m", + "className": "Desc_Roof_A_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_A_02_C": { + "slug": "roof-1m", + "name": "Roof 1m", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8m x 1m", + "className": "Desc_Roof_A_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_A_03_C": { + "slug": "roof-2m", + "name": "Roof 2m", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8m x 2m", + "className": "Desc_Roof_A_03_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_A_04_C": { + "slug": "roof-4m", + "name": "Roof 4m", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8m x 4m", + "className": "Desc_Roof_A_04_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Metal_InCorner_01_C": { + "slug": "inner-corner-roof-1m", + "name": "Inner Corner Roof 1m", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8m x 1m", + "className": "Desc_Roof_Metal_InCorner_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Metal_InCorner_02_C": { + "slug": "inner-corner-roof-2m", + "name": "Inner Corner Roof 2m", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8m x 2m", + "className": "Desc_Roof_Metal_InCorner_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Metal_InCorner_03_C": { + "slug": "inner-corner-roof-4m", + "name": "Inner Corner Roof 4m", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8m x 4m", + "className": "Desc_Roof_Metal_InCorner_03_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Metal_OutCorner_01_C": { + "slug": "outer-corner-roof-1m", + "name": "Outer Corner Roof 1m", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8m x 1m", + "className": "Desc_Roof_Metal_OutCorner_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Metal_OutCorner_02_C": { + "slug": "outer-corner-roof-2m", + "name": "Outer Corner Roof 2m", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8m x 2m", + "className": "Desc_Roof_Metal_OutCorner_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Metal_OutCorner_03_C": { + "slug": "outer-corner-roof-4m", + "name": "Outer Corner Roof 4m", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8m x 4m", + "className": "Desc_Roof_Metal_OutCorner_03_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Tar_01_C": { + "slug": "roof-flat", + "name": "Roof Flat", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8m x flat", + "className": "Desc_Roof_Tar_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Tar_02_C": { + "slug": "roof-1m", + "name": "Roof 1m", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8m x 1m", + "className": "Desc_Roof_Tar_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Tar_03_C": { + "slug": "roof-2m", + "name": "Roof 2m", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8m x 2m", + "className": "Desc_Roof_Tar_03_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Tar_04_C": { + "slug": "roof-4m", + "name": "Roof 4m", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8m x 4m", + "className": "Desc_Roof_Tar_04_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Tar_InCorner_01_C": { + "slug": "inner-corner-roof-1m", + "name": "Inner Corner Roof 1m", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8m x 1m", + "className": "Desc_Roof_Tar_InCorner_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Tar_InCorner_02_C": { + "slug": "inner-corner-roof-2m", + "name": "Inner Corner Roof 2m", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8m x 2m", + "className": "Desc_Roof_Tar_InCorner_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Tar_InCorner_03_C": { + "slug": "inner-corner-roof-4m", + "name": "Inner Corner Roof 4m", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8m x 4m", + "className": "Desc_Roof_Tar_InCorner_03_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Tar_OutCorner_01_C": { + "slug": "outer-corner-roof-1m", + "name": "Outer Corner Roof 1m", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8m x 1m", + "className": "Desc_Roof_Tar_OutCorner_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Tar_OutCorner_02_C": { + "slug": "outer-corner-roof-2m", + "name": "Outer Corner Roof 2m", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8m x 2m", + "className": "Desc_Roof_Tar_OutCorner_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Tar_OutCorner_03_C": { + "slug": "outer-corner-roof-4m", + "name": "Outer Corner Roof 4m", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8m x 4m", + "className": "Desc_Roof_Tar_OutCorner_03_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PipelineMK2_NoIndicator_C": { + "slug": "pipeline-mk-2-no-indicator", + "name": "Pipeline Mk.2 (No Indicator)", + "description": "Transports up to 600m³ of fluid per minute.\nUsed to transport fluids.\n\nCaution: This Pipeline version does not feature the external indicators.", + "className": "Desc_PipelineMK2_NoIndicator_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Pipeline_NoIndicator_C": { + "slug": "pipeline-mk-1-no-indicator", + "name": "Pipeline Mk.1 (No Indicator)", + "description": "Transports up to 300m³ of fluid per minute.\nUsed to transport fluids.\n\nCaution: This Pipeline version does not feature the external indicators.", + "className": "Desc_Pipeline_NoIndicator_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_StorageMedkit_C": { + "slug": "medical-storage-box", + "name": "Medical Storage Box", + "description": "Contains 25 slots for storing large amounts of items.", + "className": "Desc_StorageMedkit_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_LightsControlPanel_C": { + "slug": "lights-control-panel", + "name": "Lights Control Panel", + "description": "Useful for sectioning and modifying many lights at once.\n\nControls all Lights connected to the Power Grid attached to the 'Light Power Connector'.\n(Other Control Panels and Power Switches interrupt the connection.)", + "className": "Desc_LightsControlPanel_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_StandaloneWidgetSign_Small_C": { + "slug": "label-sign-2m", + "name": "Label Sign 2m", + "description": "Signs can be customized with different elements, such as icons and text, to improve factory organization.\n\nCan be placed freely, on Walls, or attached to a variety of buildings, such as Storage Containers.\n\nSize: 2m x 0.5m", + "className": "Desc_StandaloneWidgetSign_Small_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_StandaloneWidgetSign_SmallVeryWide_C": { + "slug": "label-sign-4m", + "name": "Label Sign 4m", + "description": "Signs can be customized with different elements, such as icons and text, to improve factory organization.\n\nCan be placed freely, on Walls, or attached to a variety of buildings, such as Storage Containers.\n\nSize: 4m x 0.5m", + "className": "Desc_StandaloneWidgetSign_SmallVeryWide_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_StandaloneWidgetSign_SmallWide_C": { + "slug": "label-sign-3m", + "name": "Label Sign 3m", + "description": "Signs can be customized with different elements, such as icons and text, to improve factory organization.\n\nCan be placed freely, on Walls, or attached to a variety of buildings, such as Storage Containers.\n\nSize: 3m x 0.5m", + "className": "Desc_StandaloneWidgetSign_SmallWide_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_StandaloneWidgetSign_Square_Tiny_C": { + "slug": "square-sign-0-5m", + "name": "Square Sign 0.5m", + "description": "Signs can be customized with different elements, such as icons and text, to improve factory organization.\n\nCan be placed freely, on Walls, or attached to a variety of buildings, such as Storage Containers.\n\nSize: 0.5m x 0.5m", + "className": "Desc_StandaloneWidgetSign_Square_Tiny_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_FoundationPassthrough_Hypertube_C": { + "slug": "hypertube-floor-hole", + "name": "Hypertube Floor Hole", + "description": "Can be attached to Foundations, allowing Hypertubes to pass through them.", + "className": "Desc_FoundationPassthrough_Hypertube_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_StorageHazard_C": { + "slug": "hazard-storage-box", + "name": "Hazard Storage Box", + "description": "Contains 25 slots for storing large amounts of items.", + "className": "Desc_StorageHazard_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Window_Thin_8x4_01_C": { + "slug": "full-frame-window", + "name": "Full Frame Window", + "description": "Snaps to Foundations and other Walls.\nThe windows allow Pioneers to see through the wall.\n\nSize: 8m x 4m", + "className": "Desc_Wall_Window_Thin_8x4_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Window_Thin_8x4_02_C": { + "slug": "hex-frame-window", + "name": "Hex Frame Window", + "description": "Snaps to Foundations and other Walls.\nThe windows allow Pioneers to see through the wall.\n\nSize: 8m x 4m", + "className": "Desc_Wall_Window_Thin_8x4_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Pillar_Small_Frame_C": { + "slug": "small-frame-pillar", + "name": "Small Frame Pillar", + "description": "Snaps to other Pillars and can be placed on, for example, Foundations and Walls.\n\nSize: 2m x 4m", + "className": "Desc_Pillar_Small_Frame_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PillarMiddle_Frame_C": { + "slug": "big-frame-pillar", + "name": "Big Frame Pillar", + "description": "Snaps to other Pillars and can be placed on, for example, Foundations and Walls.\n\nSize: 4m x 4m", + "className": "Desc_PillarMiddle_Frame_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Concrete_Barrier_01_C": { + "slug": "road-barrier", + "name": "Road Barrier", + "description": "A concrete Road Barrier, used to create a safer working environment.", + "className": "Desc_Concrete_Barrier_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_StandaloneWidgetSign_Medium_C": { + "slug": "display-sign", + "name": "Display Sign", + "description": "Signs can be customized with different elements, such as icons and text, to improve factory organization.\n\nCan be placed freely, on Walls, or attached to a variety of buildings, such as Storage Containers.\n\nSize: 2m x 1m", + "className": "Desc_StandaloneWidgetSign_Medium_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_StandaloneWidgetSign_Portrait_C": { + "slug": "portrait-sign", + "name": "Portrait Sign", + "description": "Signs can be customized with different elements, such as icons and text, to improve factory organization.\n\nCan be placed freely, on Walls, or attached to a variety of buildings, such as Storage Containers.\n\nSize: 2m x 3m", + "className": "Desc_StandaloneWidgetSign_Portrait_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_StandaloneWidgetSign_Square_C": { + "slug": "square-sign-2m", + "name": "Square Sign 2m", + "description": "Signs can be customized with different elements, such as icons and text, to improve factory organization.\n\nCan be placed freely, on Walls, or attached to a variety of buildings, such as Storage Containers.\n\nSize: 2m x 2m", + "className": "Desc_StandaloneWidgetSign_Square_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_StandaloneWidgetSign_Square_Small_C": { + "slug": "square-sign-1m", + "name": "Square Sign 1m", + "description": "Signs can be customized with different elements, such as icons and text, to improve factory organization.\n\nCan be placed freely, on Walls, or attached to a variety of buildings, such as Storage Containers.\n\nSize: 1m x 1m", + "className": "Desc_StandaloneWidgetSign_Square_Small_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_FoundationPassthrough_Lift_C": { + "slug": "conveyor-lift-floor-hole", + "name": "Conveyor Lift Floor Hole", + "description": "Can be attached to Foundations, allowing Conveyor Lifts to pass through them.", + "className": "Desc_FoundationPassthrough_Lift_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Pillar_Small_Concrete_C": { + "slug": "small-concrete-pillar", + "name": "Small Concrete Pillar", + "description": "Snaps to other Pillars and can be placed on, for example, Foundations and Walls.\n\nSize: 2m x 4m", + "className": "Desc_Pillar_Small_Concrete_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PillarMiddle_Concrete_C": { + "slug": "big-concrete-pillar", + "name": "Big Concrete Pillar", + "description": "Snaps to other Pillars and can be placed on, for example, Foundations and Walls.\n\nSize: 4m x 4m", + "className": "Desc_PillarMiddle_Concrete_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_CatwalkCross_C": { + "slug": "catwalk-crossing", + "name": "Catwalk Crossing", + "description": "Snaps to foundations and other walkways.\nSpecifically made for humans to walk on.", + "className": "Desc_CatwalkCross_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_CatwalkRamp_C": { + "slug": "catwalk-ramp", + "name": "Catwalk Ramp", + "description": "Snaps to foundations and other walkways.\nSpecifically made for humans to walk on.", + "className": "Desc_CatwalkRamp_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_CatwalkStairs_C": { + "slug": "catwalk-stairs", + "name": "Catwalk Stairs", + "description": "Snaps to foundations and other walkways.\nSpecifically made for humans to walk on.", + "className": "Desc_CatwalkStairs_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_CatwalkStraight_C": { + "slug": "catwalk-straight", + "name": "Catwalk Straight", + "description": "Snaps to foundations and other walkways.\nSpecifically made for humans to walk on.", + "className": "Desc_CatwalkStraight_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_CatwalkT_C": { + "slug": "catwalk-t-crossing", + "name": "Catwalk T-Crossing", + "description": "Snaps to foundations and other walkways.\nSpecifically made for humans to walk on.", + "className": "Desc_CatwalkT_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_CatwalkTurn_C": { + "slug": "catwalk-corner", + "name": "Catwalk Corner", + "description": "Snaps to foundations and other walkways.\nSpecifically made for humans to walk on.", + "className": "Desc_CatwalkTurn_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_StandaloneWidgetSign_Huge_C": { + "slug": "large-billboard", + "name": "Large Billboard", + "description": "Signs can be customized with different elements, such as icons and text, to improve factory organization.\n\nCan be placed freely, on Walls, or attached to a variety of buildings, such as Storage Containers.\n\nSize: 16m x 8m", + "className": "Desc_StandaloneWidgetSign_Huge_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_StandaloneWidgetSign_Large_C": { + "slug": "small-billboard", + "name": "Small Billboard", + "description": "Signs can be customized with different elements, such as icons and text, to improve factory organization.\n\nCan be placed freely, on Walls, or attached to a variety of buildings, such as Storage Containers.\n\nSize: 8m x 4m", + "className": "Desc_StandaloneWidgetSign_Large_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Beam_C": { + "slug": "metal-beam", + "name": "Metal Beam", + "description": "Snaps to other Beams and various other structural buildings.\n\nBeams support multiple build modes for different use cases.", + "className": "Desc_Beam_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Beam_Connector_C": { + "slug": "beam-connector", + "name": "Beam Connector", + "description": "Can be connected to Beams to hide seams and generally make connections look more appealing.", + "className": "Desc_Beam_Connector_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Beam_Connector_Double_C": { + "slug": "beam-connector-double", + "name": "Beam Connector Double", + "description": "Can be connected to Beams to hide seams and generally make connections look more appealing.", + "className": "Desc_Beam_Connector_Double_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Beam_Painted_C": { + "slug": "painted-beam", + "name": "Painted Beam", + "description": "Snaps to other Beams and various other structural buildings.\n\nBeams support multiple build modes for different use cases.", + "className": "Desc_Beam_Painted_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Beam_Support_C": { + "slug": "beam-support", + "name": "Beam Support", + "description": "Snaps to Beams and various other structural buildings.\n\nUsed to aesthetically connect beams to surfaces.", + "className": "Desc_Beam_Support_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_GeneratorBiomass_C": { + "slug": "biomass-burner", + "name": "Biomass Burner", + "description": "Burns various forms of biomass to generate electricity for the power grid.\nHas no input and must therefore be fed biomass manually.\n\nResource consumption will automatically be lowered to meet power demands.", + "className": "Desc_GeneratorBiomass_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_SpaceElevator_C": { + "slug": "space-elevator", + "name": "Space Elevator", + "description": "Requires deliveries of special Project Parts to complete Phases of Project Assembly.\nCompleting Phases in the Space Elevator will unlock new Tiers in the HUB Terminal.", + "className": "Desc_SpaceElevator_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_MinerMk1_C": { + "slug": "miner-mk-1", + "name": "Miner Mk.1", + "description": "Extracts solid resources from the resource node it is built on. \nThe normal extraction rate is 60 resources per minute. \nThe extraction rate is modified depending on resource node purity. Outputs all extracted resources onto connected conveyor belts.", + "className": "Desc_MinerMk1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 5, + "powerConsumptionExponent": 1.321929, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_StorageContainerMk1_C": { + "slug": "storage-container", + "name": "Storage Container", + "description": "Contains 24 slots for storing large amounts of items.\nHas an input and output for conveyor belts.", + "className": "Desc_StorageContainerMk1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConstructorMk1_C": { + "slug": "constructor", + "name": "Constructor", + "description": "Crafts one part into another part.\n\nCan be automated by feeding parts into it with a conveyor belt connected to the input. The produced parts can be automatically extracted by connecting a conveyor belt to the output.", + "className": "Desc_ConstructorMk1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 4, + "powerConsumptionExponent": 1.321929, + "manufacturingSpeed": 1 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_SmelterMk1_C": { + "slug": "smelter", + "name": "Smelter", + "description": "Smelts ore into ingots.\n\nCan be automated by feeding ore into it with a conveyor belt connected to the input. The produced ingots can be automatically extracted by connecting a conveyor belt to the output.", + "className": "Desc_SmelterMk1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 4, + "powerConsumptionExponent": 1.321929, + "manufacturingSpeed": 1 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Workshop_C": { + "slug": "equipment-workshop", + "name": "Equipment Workshop", + "description": "Used to manually craft equipment.", + "className": "Desc_Workshop_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConveyorPole_C": { + "slug": "conveyor-pole", + "name": "Conveyor Pole", + "description": "Can be used as a connection for conveyor belts. The height of the pole can be adjusted.\nUseful to route conveyor belts in a more controlled manner and over long distances.", + "className": "Desc_ConveyorPole_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PipelineSupport_C": { + "slug": "pipeline-support", + "name": "Pipeline Support", + "description": "Can be used as a connection for pipelines. The height of the support can be adjusted.\nUseful to route pipelines in a more controlled manner and over long distances.", + "className": "Desc_PipelineSupport_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PipeSupportStackable_C": { + "slug": "stackable-pipeline-support", + "name": "Stackable Pipeline Support", + "description": "Support for pipelines. Can be stacked on other stackable supports.", + "className": "Desc_PipeSupportStackable_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_HyperPoleStackable_C": { + "slug": "stackable-hypertube-support", + "name": "Stackable Hypertube Support", + "description": "Support for hypertubes. Can be stacked on other stackable supports.", + "className": "Desc_HyperPoleStackable_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PipeHyperSupport_C": { + "slug": "hypertube-support", + "name": "Hypertube Support", + "description": "Supports for Hypertubes to allow for longer distances.", + "className": "Desc_PipeHyperSupport_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConveyorPoleStackable_C": { + "slug": "stackable-conveyor-pole", + "name": "Stackable Conveyor Pole", + "description": "Support for conveyor belts. Can be stacked on other stackable supports.", + "className": "Desc_ConveyorPoleStackable_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Truck_C": { + "slug": "truck", + "name": "Truck", + "description": "Fuel: Any fuel type\n\n48-slot inventory. Has a built-in craft bench.\nCan be automated to pick up and deliver resources at Truck Stations.\n\nNicknamed the Unit by FICSIT pioneers because of its massive frame.", + "className": "Desc_Truck_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 75, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_DroneTransport_C": { + "slug": "drone", + "name": "Drone", + "description": "Has to be built on a Drone Port.\n\nFuel: Batteries, based on travel distance.\nRefuels at any of its connected Ports, if able.\n\n9-slot inventory.\n\nTransports available input back and forth between its home and destination Ports. Drone Status and other details are shown on its home Drone Port.", + "className": "Desc_DroneTransport_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_FreightWagon_C": { + "slug": "freight-car", + "name": "Freight Car", + "description": "The Freight Car can be built on Railways and attached to an Electric Locomotive or other Freight Car to transport resources. \nResources are loaded and unloaded at Freight Platforms.\nHas a 1600m³ or 32-slot capacity, depending on the resources.", + "className": "Desc_FreightWagon_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Locomotive_C": { + "slug": "electric-locomotive", + "name": "Electric Locomotive", + "description": "The Locomotive is used to move Freight Cars from station to station.\nRequires between 25-110 MW of power to drive. \nMust be built on railway.\n\nNicknamed 'Leif' by FICSIT pioneers because of its reliability.", + "className": "Desc_Locomotive_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Tractor_C": { + "slug": "tractor", + "name": "Tractor", + "description": "Fuel: Any fuel type\n\n25-slot inventory. Has a built-in craft bench.\nCan be automated to pick up and deliver resources at Truck Stations.\n\nNicknamed the Sugarcube by FICSIT pioneers with the justification “It’s pretty sweet, y’know”.", + "className": "Desc_Tractor_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 55, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Explorer_C": { + "slug": "explorer", + "name": "Explorer", + "description": "Fuel: Any fuel type\n\n24-slot inventory. Has a built-in craft bench.\n\nFast and nimble exploration vehicle. Tuned for really rough terrain and able to climb almost vertical surfaces.", + "className": "Desc_Explorer_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 90, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_CyberWagon_C": { + "slug": "cyber-wagon", + "name": "Cyber Wagon", + "description": "Absolutely indestructible.\nNeeds no further introduction.", + "className": "Desc_CyberWagon_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 150, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + } + } +} \ No newline at end of file diff --git a/data/data1.0-ficsmas.json b/data/data1.0-ficsmas.json new file mode 100644 index 00000000..f1070456 --- /dev/null +++ b/data/data1.0-ficsmas.json @@ -0,0 +1,52633 @@ +{ + "items": { + "Desc_NuclearWaste_C": { + "slug": "uranium-waste", + "icon": "desc-nuclearwaste-c", + "name": "Uranium Waste", + "description": "The by-product of consuming Uranium Fuel Rods in a Nuclear Power Plant.\nNon-Fissile Uranium can be extracted. Handle with caution.\n\nCaution: HIGHLY Radioactive.", + "sinkPoints": 0, + "className": "Desc_NuclearWaste_C", + "stackSize": 500, + "energyValue": 0.0, + "radioactiveDecay": 10.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_PlutoniumWaste_C": { + "slug": "plutonium-waste", + "icon": "desc-plutoniumwaste-c", + "name": "Plutonium Waste", + "description": "The by-product of consuming Plutonium Fuel Rods in a Nuclear Power Plant.\nMust be stored in a safe location. Handle with caution.\n\nCaution: EXTREMELY Radioactive.", + "sinkPoints": 0, + "className": "Desc_PlutoniumWaste_C", + "stackSize": 500, + "energyValue": 0.0, + "radioactiveDecay": 200.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Cement_C": { + "slug": "concrete", + "icon": "desc-cement-c", + "name": "Concrete", + "description": "Used for building.\nGood for stable Foundations.", + "sinkPoints": 12, + "className": "Desc_Cement_C", + "stackSize": 500, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Silica_C": { + "slug": "silica", + "icon": "desc-silica-c", + "name": "Silica", + "description": "Derived from Raw Quartz. Commonly used to create glass structures, in advanced refinement processes, and for alternative production of electronics.", + "sinkPoints": 20, + "className": "Desc_Silica_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_IronPlate_C": { + "slug": "iron-plate", + "icon": "desc-ironplate-c", + "name": "Iron Plate", + "description": "Used for crafting.\nOne of the most basic parts.", + "sinkPoints": 6, + "className": "Desc_IronPlate_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_SteelPlate_C": { + "slug": "steel-beam", + "icon": "desc-steelplate-c", + "name": "Steel Beam", + "description": "Primarily used when constructing slightly more advanced buildings.", + "sinkPoints": 64, + "className": "Desc_SteelPlate_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_AluminumIngot_C": { + "slug": "aluminum-ingot", + "icon": "desc-aluminumingot-c", + "name": "Aluminum Ingot", + "description": "Smelted from Aluminum Scrap, which is refined from Alumina Solution.\nUsed to produce specialized aluminum-based parts.", + "sinkPoints": 131, + "className": "Desc_AluminumIngot_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Battery_C": { + "slug": "battery", + "icon": "desc-battery-c", + "name": "Battery", + "description": "Primarily used as fuel for Drones and vehicles.", + "sinkPoints": 465, + "className": "Desc_Battery_C", + "stackSize": 200, + "energyValue": 6000.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Fuel_C": { + "slug": "packaged-fuel", + "icon": "desc-fuel-c", + "name": "Packaged Fuel", + "description": "Fuel, packaged for alternative transport. Can be used as fuel for vehicles and the Jetpack.", + "sinkPoints": 270, + "className": "Desc_Fuel_C", + "stackSize": 100, + "energyValue": 750.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 235, + "g": 125, + "b": 21, + "a": 255 + } + }, + "Desc_PackagedIonizedFuel_C": { + "slug": "packaged-ionized-fuel", + "icon": "desc-packagedionizedfuel-c", + "name": "Packaged Ionized Fuel", + "description": "Ionized Fuel, packaged for alternative transport. Can be used as fuel for vehicles and the Jetpack.", + "sinkPoints": 5246, + "className": "Desc_PackagedIonizedFuel_C", + "stackSize": 100, + "energyValue": 10000.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_PackagedRocketFuel_C": { + "slug": "packaged-rocket-fuel", + "icon": "desc-packagedrocketfuel-c", + "name": "Packaged Rocket Fuel", + "description": "Rocket Fuel, packaged for alternative transport. Can be used as fuel for vehicles and the Jetpack.", + "sinkPoints": 1028, + "className": "Desc_PackagedRocketFuel_C", + "stackSize": 100, + "energyValue": 7200.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_TurboFuel_C": { + "slug": "packaged-turbofuel", + "icon": "desc-turbofuel-c", + "name": "Packaged Turbofuel", + "description": "Turbofuel, packaged for alternative transport. Can be used as fuel for vehicles and the Jetpack.", + "sinkPoints": 570, + "className": "Desc_TurboFuel_C", + "stackSize": 100, + "energyValue": 2000.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 212, + "g": 41, + "b": 46, + "a": 255 + } + }, + "Desc_HazmatFilter_C": { + "slug": "iodine-infused-filter", + "icon": "desc-hazmatfilter-c", + "name": "Iodine-Infused Filter", + "description": "Absorbs radioactive particles when used with the Hazmat Suit.", + "sinkPoints": 2274, + "className": "Desc_HazmatFilter_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_IronRod_C": { + "slug": "iron-rod", + "icon": "desc-ironrod-c", + "name": "Iron Rod", + "description": "Used for crafting.\nOne of the most basic parts.", + "sinkPoints": 4, + "className": "Desc_IronRod_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Wire_C": { + "slug": "wire", + "icon": "desc-wire-c", + "name": "Wire", + "description": "Used for crafting.\nOne of the most basic parts.", + "sinkPoints": 6, + "className": "Desc_Wire_C", + "stackSize": 500, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Cable_C": { + "slug": "cable", + "icon": "desc-cable-c", + "name": "Cable", + "description": "Used for crafting.\nPrimarily used to build Power Lines.", + "sinkPoints": 24, + "className": "Desc_Cable_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_IronIngot_C": { + "slug": "iron-ingot", + "icon": "desc-ironingot-c", + "name": "Iron Ingot", + "description": "Used for crafting the most basic parts.", + "sinkPoints": 2, + "className": "Desc_IronIngot_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_IronPlateReinforced_C": { + "slug": "reinforced-iron-plate", + "icon": "desc-ironplatereinforced-c", + "name": "Reinforced Iron Plate", + "description": "Used for crafting.\nA sturdier and more durable Iron Plate.", + "sinkPoints": 120, + "className": "Desc_IronPlateReinforced_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Rotor_C": { + "slug": "rotor", + "icon": "desc-rotor-c", + "name": "Rotor", + "description": "Used for crafting.\nThe moving parts of a motor.", + "sinkPoints": 140, + "className": "Desc_Rotor_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_CompactedCoal_C": { + "slug": "compacted-coal", + "icon": "desc-compactedcoal-c", + "name": "Compacted Coal", + "description": "A much more efficient alternative to Coal. Used as fuel for vehicles and Coal-Powered Generators.", + "sinkPoints": 28, + "className": "Desc_CompactedCoal_C", + "stackSize": 100, + "energyValue": 630.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_LiquidFuel_C": { + "slug": "fuel", + "icon": "desc-liquidfuel-c", + "name": "Fuel", + "description": "Can be used as-is to generate power, or packaged to be used as fuel for vehicles or the Jetpack.", + "sinkPoints": 75000, + "className": "Desc_LiquidFuel_C", + "stackSize": 50000, + "energyValue": 750.0, + "radioactiveDecay": 0.0, + "liquid": true, + "fluidColor": { + "r": 235, + "g": 125, + "b": 21, + "a": 0 + } + }, + "Desc_RocketFuel_C": { + "slug": "rocket-fuel", + "icon": "desc-rocketfuel-c", + "name": "Rocket Fuel", + "description": "A high-impulse compressed gas fuel.\nCan be used as-is to power Fuel-Powered Generators, or packaged to be used as fuel for vehicles or the Jetpack.", + "sinkPoints": 289000, + "className": "Desc_RocketFuel_C", + "stackSize": 50000, + "energyValue": 3600.0, + "radioactiveDecay": 0.0, + "liquid": true, + "fluidColor": { + "r": 189, + "g": 37, + "b": 26, + "a": 0 + } + }, + "Desc_CopperSheet_C": { + "slug": "copper-sheet", + "icon": "desc-coppersheet-c", + "name": "Copper Sheet", + "description": "Used for crafting.\nPrimarily used for Pipelines due to its high corrosion resistance.", + "sinkPoints": 24, + "className": "Desc_CopperSheet_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_ModularFrame_C": { + "slug": "modular-frame", + "icon": "desc-modularframe-c", + "name": "Modular Frame", + "description": "Used for crafting.\nA multipurpose building block.", + "sinkPoints": 408, + "className": "Desc_ModularFrame_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_IronScrew_C": { + "slug": "screw", + "icon": "desc-ironscrew-c", + "name": "Screw", + "description": "Used for crafting.\nOne of the most basic parts.", + "sinkPoints": 2, + "className": "Desc_IronScrew_C", + "stackSize": 500, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_NitricAcid_C": { + "slug": "nitric-acid", + "icon": "desc-nitricacid-c", + "name": "Nitric Acid", + "description": "Produced when Nitrogen Gas reacts with Water. Its high corrosiveness and oxidizing properties make it an excellent choice for refinement and fuel production processes.", + "sinkPoints": 94000, + "className": "Desc_NitricAcid_C", + "stackSize": 50000, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": true, + "fluidColor": { + "r": 217, + "g": 217, + "b": 162, + "a": 0 + } + }, + "Desc_LiquidTurboFuel_C": { + "slug": "turbofuel", + "icon": "desc-liquidturbofuel-c", + "name": "Turbofuel", + "description": "A more efficient alternative to Fuel. Can be used as-is to generate power, or packaged to be used as fuel for vehicles.", + "sinkPoints": 225000, + "className": "Desc_LiquidTurboFuel_C", + "stackSize": 50000, + "energyValue": 2000.0, + "radioactiveDecay": 0.0, + "liquid": true, + "fluidColor": { + "r": 212, + "g": 41, + "b": 46, + "a": 0 + } + }, + "Desc_GasTank_C": { + "slug": "empty-fluid-tank", + "icon": "desc-gastank-c", + "name": "Empty Fluid Tank", + "description": "Used to package gases and volatile liquids for transportation.", + "sinkPoints": 170, + "className": "Desc_GasTank_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_CrystalOscillator_C": { + "slug": "crystal-oscillator", + "icon": "desc-crystaloscillator-c", + "name": "Crystal Oscillator", + "description": "An electronic oscillator circuit that uses the mechanical resonance of a vibrating crystal to create an electrical signal with a precise frequency.", + "sinkPoints": 3072, + "className": "Desc_CrystalOscillator_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Motor_C": { + "slug": "motor", + "icon": "desc-motor-c", + "name": "Motor", + "description": "Creates a mechanical force that is used to move things from machines to vehicles.", + "sinkPoints": 1520, + "className": "Desc_Motor_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_DarkMatter_C": { + "slug": "dark-matter-crystal", + "icon": "desc-darkmatter-c", + "name": "Dark Matter Crystal", + "description": "Concentrated Dark Matter Residue that is isolated within a crystalline vessel. This form of containment allows for utilising Dark Matter reliably in other production processes.\n\nPower Usage: 500-1500 MW (1000 MW average).", + "sinkPoints": 1780, + "className": "Desc_DarkMatter_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_IonizedFuel_C": { + "slug": "ionized-fuel", + "icon": "desc-ionizedfuel-c", + "name": "Ionized Fuel", + "description": "Fuel that has been ionized, allowing it to deliver incredible output.\nCan be used as-is to power Fuel-Powered Generators, or packaged to be used as fuel for vehicles or the Jetpack.", + "sinkPoints": 2398000, + "className": "Desc_IonizedFuel_C", + "stackSize": 50000, + "energyValue": 5000.0, + "radioactiveDecay": 0.0, + "liquid": true, + "fluidColor": { + "r": 213, + "g": 95, + "b": 26, + "a": 60 + } + }, + "Desc_ComputerSuper_C": { + "slug": "supercomputer", + "icon": "desc-computersuper-c", + "name": "Supercomputer", + "description": "The next-gen version of a Computer.", + "sinkPoints": 97352, + "className": "Desc_ComputerSuper_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_CoolingSystem_C": { + "slug": "cooling-system", + "icon": "desc-coolingsystem-c", + "name": "Cooling System", + "description": "Keeps advanced parts and buildings from exceeding efficient temperature levels.", + "sinkPoints": 12006, + "className": "Desc_CoolingSystem_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_FicsiteMesh_C": { + "slug": "ficsite-trigon", + "icon": "desc-ficsitemesh-c", + "name": "Ficsite Trigon", + "description": "The Ficsite Trigon, made from Ficsite Ingots, is perfectly shaped for all construction challenges. It's performance is so exceptional, it basically solved structural engineering.", + "sinkPoints": 1291, + "className": "Desc_FicsiteMesh_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_MotorLightweight_C": { + "slug": "turbo-motor", + "icon": "desc-motorlightweight-c", + "name": "Turbo Motor", + "description": "A more complex and powerful version of the regular Motor.", + "sinkPoints": 240496, + "className": "Desc_MotorLightweight_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_TimeCrystal_C": { + "slug": "time-crystal", + "icon": "desc-timecrystal-c", + "name": "Time Crystal", + "description": "Time Crystals are Diamonds that have been reconfigured on a sub-atomic level in the Converter to retain a time-periodic self-organizing structure. This allows them to be used in the development of quantum processing and storage technologies.", + "sinkPoints": 960, + "className": "Desc_TimeCrystal_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_DarkEnergy_C": { + "slug": "dark-matter-residue", + "icon": "desc-darkenergy-c", + "name": "Dark Matter Residue", + "description": "Produced as a by-product of Quantum Encoding processes and alternatively generated in the Converter.\n\nVarious fields of science are still debating the nature and properties of Dark Matter. Meanwhile, FICSIT has found several applications for it in space-time manipulation.", + "sinkPoints": 130000, + "className": "Desc_DarkEnergy_C", + "stackSize": 50000, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": true, + "fluidColor": { + "r": 253, + "g": 175, + "b": 249, + "a": 150 + } + }, + "Desc_SAMIngot_C": { + "slug": "reanimated-sam", + "icon": "desc-samingot-c", + "name": "Reanimated SAM", + "description": "The active and contained form of the Strange Alien Matter.\n\nProper electromagnetic containment is required, as it appears to be able to manipulate the atomic bonds of any matter it comes into contact with.", + "sinkPoints": 160, + "className": "Desc_SAMIngot_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_QuantumEnergy_C": { + "slug": "excited-photonic-matter", + "icon": "desc-quantumenergy-c", + "name": "Excited Photonic Matter", + "description": "Excited Photonic Matter is essential for all production processes in the Quantum Encoder.\n\nFormed in the Converter by inducing intense photon interactions through exposure to SAM in a high-energy environment.", + "sinkPoints": 100000, + "className": "Desc_QuantumEnergy_C", + "stackSize": 50000, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": true, + "fluidColor": { + "r": 118, + "g": 245, + "b": 232, + "a": 90 + } + }, + "Desc_Diamond_C": { + "slug": "diamonds", + "icon": "desc-diamond-c", + "name": "Diamonds", + "description": "Synthetic Diamonds produced by exposing Coal to extreme heat and pressure.\n\nUsed in the production of Time Crystals and Dark Matter Crystals.\n\nPower Usage: 250-750 MW (500 MW average).", + "sinkPoints": 240, + "className": "Desc_Diamond_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_AluminumPlate_C": { + "slug": "alclad-aluminum-sheet", + "icon": "desc-aluminumplate-c", + "name": "Alclad Aluminum Sheet", + "description": "Used to make products that require high heat conduction or a high specific strength. Thin, lightweight, and highly durable.", + "sinkPoints": 266, + "className": "Desc_AluminumPlate_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_QuantumOscillator_C": { + "slug": "superposition-oscillator", + "icon": "desc-quantumoscillator-c", + "name": "Superposition Oscillator", + "description": "An oscillator circuit that uses the mechanical resonance of a vibrating crystal to create a string vibration with a precise frequency. Often used in teleportation technology and dimensional manipulation.", + "sinkPoints": 37292, + "className": "Desc_QuantumOscillator_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_TemporalProcessor_C": { + "slug": "neural-quantum-processor", + "icon": "desc-temporalprocessor-c", + "name": "Neural-Quantum Processor", + "description": "The Neural-Quantum Processor utilizes a combination of neural network architecture and quantum computing techniques to achieve unprecedented performance. This technology has enabled some of FICSIT's biggest advancements in artificial intelligence and relativistic engineering.", + "sinkPoints": 248034, + "className": "Desc_TemporalProcessor_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_SpaceElevatorPart_12_C": { + "slug": "ai-expansion-server", + "icon": "desc-spaceelevatorpart-12-c", + "name": "AI Expansion Server", + "description": "Project Part #12. Ship via the Space Elevator to complete phases of Project Assembly.\nPower Usage: 0-2000 MW (1000 MW average).\n\nGrowth is the metric by which we measure success.", + "sinkPoints": 597652, + "className": "Desc_SpaceElevatorPart_12_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_SpaceElevatorPart_6_C": { + "slug": "magnetic-field-generator", + "icon": "desc-spaceelevatorpart-6-c", + "name": "Magnetic Field Generator", + "description": "Project Part #7. Ship via the Space Elevator to complete phases of Project Assembly.\n\nThese modular generators use superconducting magnets and vast amounts of electricity to produce a powerful and easily expandable magnetic field.", + "sinkPoints": 11000, + "className": "Desc_SpaceElevatorPart_6_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_SAMFluctuator_C": { + "slug": "sam-fluctuator", + "icon": "desc-samfluctuator-c", + "name": "SAM Fluctuator", + "description": "The SAM Fluctuator is able to regulate and direct the behaviour of Reanimated SAM through the application of electric charges with varying frequencies.\nThis control facilitates technologies such as matter-to-energy conversion and spatiotemporal matter manipulation.", + "sinkPoints": 1968, + "className": "Desc_SAMFluctuator_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_SteelPipe_C": { + "slug": "steel-pipe", + "icon": "desc-steelpipe-c", + "name": "Steel Pipe", + "description": "Primarily used when constructing slightly more advanced buildings.", + "sinkPoints": 24, + "className": "Desc_SteelPipe_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_ModularFrameFused_C": { + "slug": "fused-modular-frame", + "icon": "desc-modularframefused-c", + "name": "Fused Modular Frame", + "description": "A corrosion-resistant, nitride-hardened, highly-robust-yet-lightweight modular frame.", + "sinkPoints": 62840, + "className": "Desc_ModularFrameFused_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_ModularFrameLightweight_C": { + "slug": "radio-control-unit", + "icon": "desc-modularframelightweight-c", + "name": "Radio Control Unit", + "description": "Enhances and directs radio signals.", + "sinkPoints": 32352, + "className": "Desc_ModularFrameLightweight_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_FicsiteIngot_C": { + "slug": "ficsite-ingot", + "icon": "desc-ficsiteingot-c", + "name": "Ficsite Ingot", + "description": "Produced by reconstructing other metals on a molecular level using Strange Alien Matter.\n\nSynthesized by FICSIT to be the perfect construction material, and used in the most high-end processes.", + "sinkPoints": 1936, + "className": "Desc_FicsiteIngot_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_SpaceElevatorPart_10_C": { + "slug": "biochemical-sculptor", + "icon": "desc-spaceelevatorpart-10-c", + "name": "Biochemical Sculptor", + "description": "Project Part #10. Ship via the Space Elevator to complete phases of Project Assembly.\n\nYears ahead of the competition, this top-of-the-line 3D printer is used for the production of synthetic biological resources.", + "sinkPoints": 301778, + "className": "Desc_SpaceElevatorPart_10_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_SpaceElevatorPart_7_C": { + "slug": "assembly-director-system", + "icon": "desc-spaceelevatorpart-7-c", + "name": "Assembly Director System", + "description": "Project Part #6. Ship via the Space Elevator to complete phases of Project Assembly.\n\nThis extremely fast and precise computing system is specifically designed to direct the Project Assembly: Assembly Phase.", + "sinkPoints": 500176, + "className": "Desc_SpaceElevatorPart_7_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_GoldIngot_C": { + "slug": "caterium-ingot", + "icon": "desc-goldingot-c", + "name": "Caterium Ingot", + "description": "Smelted from Caterium Ore. Primarily used for advanced electronics.", + "sinkPoints": 42, + "className": "Desc_GoldIngot_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_FluidCanister_C": { + "slug": "empty-canister", + "icon": "desc-fluidcanister-c", + "name": "Empty Canister", + "description": "Used to package fluids for transportation.", + "sinkPoints": 60, + "className": "Desc_FluidCanister_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_CircuitBoard_C": { + "slug": "circuit-board", + "icon": "desc-circuitboard-c", + "name": "Circuit Board", + "description": "Advanced electronics that have a plethora of different uses.", + "sinkPoints": 696, + "className": "Desc_CircuitBoard_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Plastic_C": { + "slug": "plastic", + "icon": "desc-plastic-c", + "name": "Plastic", + "description": "Versatile and easy to manufacture, this material has a wide range of uses.", + "sinkPoints": 75, + "className": "Desc_Plastic_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_SteelPlateReinforced_C": { + "slug": "encased-industrial-beam", + "icon": "desc-steelplatereinforced-c", + "name": "Encased Industrial Beam", + "description": "Simultaneously utilizes the compressive strength of concrete and the tensile strength of steel.\nMostly used as a stable base for constructing buildings.", + "sinkPoints": 528, + "className": "Desc_SteelPlateReinforced_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Rubber_C": { + "slug": "rubber", + "icon": "desc-rubber-c", + "name": "Rubber", + "description": "A very flexible material that has a lot of friction.", + "sinkPoints": 60, + "className": "Desc_Rubber_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_PolymerResin_C": { + "slug": "polymer-resin", + "icon": "desc-polymerresin-c", + "name": "Polymer Resin", + "description": "A by-product of Crude Oil refinement into Fuel. Commonly used to manufacture Plastic and Rubber.", + "sinkPoints": 12, + "className": "Desc_PolymerResin_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_HeavyOilResidue_C": { + "slug": "heavy-oil-residue", + "icon": "desc-heavyoilresidue-c", + "name": "Heavy Oil Residue", + "description": "A by-product of Plastic and Rubber production. Can be further refined into Fuel and Petroleum Coke.", + "sinkPoints": 30000, + "className": "Desc_HeavyOilResidue_C", + "stackSize": 50000, + "energyValue": 400.0, + "radioactiveDecay": 0.0, + "liquid": true, + "fluidColor": { + "r": 109, + "g": 45, + "b": 120, + "a": 0 + } + }, + "Desc_PetroleumCoke_C": { + "slug": "petroleum-coke", + "icon": "desc-petroleumcoke-c", + "name": "Petroleum Coke", + "description": "Used for crafting.\nA carbon-rich material distilled from Heavy Oil Residue. \nUsed as a less efficient Coal replacement.", + "sinkPoints": 20, + "className": "Desc_PetroleumCoke_C", + "stackSize": 200, + "energyValue": 180.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_QuartzCrystal_C": { + "slug": "quartz-crystal", + "icon": "desc-quartzcrystal-c", + "name": "Quartz Crystal", + "description": "Derived from Raw Quartz. Used in the production of advanced radar technology and high-quality display screens.", + "sinkPoints": 50, + "className": "Desc_QuartzCrystal_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_SteelIngot_C": { + "slug": "steel-ingot", + "icon": "desc-steelingot-c", + "name": "Steel Ingot", + "description": "Smelted from a combination of Iron Ore and Coal. Can be made into several parts used in building construction.", + "sinkPoints": 8, + "className": "Desc_SteelIngot_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_SpaceElevatorPart_2_C": { + "slug": "versatile-framework", + "icon": "desc-spaceelevatorpart-2-c", + "name": "Versatile Framework", + "description": "Project Part #2. Ship via the Space Elevator to complete phases of Project Assembly.", + "sinkPoints": 1176, + "className": "Desc_SpaceElevatorPart_2_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_PackagedOil_C": { + "slug": "packaged-oil", + "icon": "desc-packagedoil-c", + "name": "Packaged Oil", + "description": "Crude Oil, packaged for alternative transport. Can be used as fuel for vehicles.", + "sinkPoints": 180, + "className": "Desc_PackagedOil_C", + "stackSize": 100, + "energyValue": 320.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_PackagedOilResidue_C": { + "slug": "packaged-heavy-oil-residue", + "icon": "desc-packagedoilresidue-c", + "name": "Packaged Heavy Oil Residue", + "description": "Heavy Oil Residue, packaged for alternative transport. Can be used as fuel for vehicles.", + "sinkPoints": 180, + "className": "Desc_PackagedOilResidue_C", + "stackSize": 100, + "energyValue": 400.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 109, + "g": 45, + "b": 120, + "a": 255 + } + }, + "Desc_PackagedWater_C": { + "slug": "packaged-water", + "icon": "desc-packagedwater-c", + "name": "Packaged Water", + "description": "Water, packaged for alternative transport.", + "sinkPoints": 130, + "className": "Desc_PackagedWater_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 122, + "g": 176, + "b": 212, + "a": 255 + } + }, + "Desc_CopperIngot_C": { + "slug": "copper-ingot", + "icon": "desc-copperingot-c", + "name": "Copper Ingot", + "description": "Used for crafting the most basic parts.", + "sinkPoints": 6, + "className": "Desc_CopperIngot_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_AluminumScrap_C": { + "slug": "aluminum-scrap", + "icon": "desc-aluminumscrap-c", + "name": "Aluminum Scrap", + "description": "Refined from Alumina. Can be smelted into Aluminum Ingots for industrial usage.", + "sinkPoints": 27, + "className": "Desc_AluminumScrap_C", + "stackSize": 500, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_AluminumCasing_C": { + "slug": "aluminum-casing", + "icon": "desc-aluminumcasing-c", + "name": "Aluminum Casing", + "description": "A versatile container cast from Aluminum Ingots.", + "sinkPoints": 393, + "className": "Desc_AluminumCasing_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_AluminaSolution_C": { + "slug": "alumina-solution", + "icon": "desc-aluminasolution-c", + "name": "Alumina Solution", + "description": "Dissolved Alumina, extracted from Bauxite. Can be further refined into Aluminum Scrap for Aluminum Ingot production.", + "sinkPoints": 20000, + "className": "Desc_AluminaSolution_C", + "stackSize": 50000, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": true, + "fluidColor": { + "r": 193, + "g": 193, + "b": 193, + "a": 0 + } + }, + "Desc_Computer_C": { + "slug": "computer", + "icon": "desc-computer-c", + "name": "Computer", + "description": "A complex logic machine that is used to control advanced behavior in other machines.", + "sinkPoints": 8352, + "className": "Desc_Computer_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_ModularFrameHeavy_C": { + "slug": "heavy-modular-frame", + "icon": "desc-modularframeheavy-c", + "name": "Heavy Modular Frame", + "description": "A more robust multipurpose frame.", + "sinkPoints": 10800, + "className": "Desc_ModularFrameHeavy_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_SpaceElevatorPart_1_C": { + "slug": "smart-plating", + "icon": "desc-spaceelevatorpart-1-c", + "name": "Smart Plating", + "description": "Project Part #1. Ship via the Space Elevator to complete phases of Project Assembly.", + "sinkPoints": 520, + "className": "Desc_SpaceElevatorPart_1_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_HighSpeedConnector_C": { + "slug": "high-speed-connector", + "icon": "desc-highspeedconnector-c", + "name": "High-Speed Connector", + "description": "Connects multiple cables and wires in a very efficient way. Uses a standard pattern, so it has many varied applications.", + "sinkPoints": 3776, + "className": "Desc_HighSpeedConnector_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_SpaceElevatorPart_3_C": { + "slug": "automated-wiring", + "icon": "desc-spaceelevatorpart-3-c", + "name": "Automated Wiring", + "description": "Project Part #3. Ship via the Space Elevator to complete phases of Project Assembly.", + "sinkPoints": 1440, + "className": "Desc_SpaceElevatorPart_3_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Stator_C": { + "slug": "stator", + "icon": "desc-stator-c", + "name": "Stator", + "description": "Used for crafting.\nThe static parts of a motor.", + "sinkPoints": 240, + "className": "Desc_Stator_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_CircuitBoardHighSpeed_C": { + "slug": "ai-limiter", + "icon": "desc-circuitboardhighspeed-c", + "name": "AI Limiter", + "description": "Controls AIs and keeps them from evolving in malicious ways. Super advanced electronics.", + "sinkPoints": 920, + "className": "Desc_CircuitBoardHighSpeed_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_HighSpeedWire_C": { + "slug": "quickwire", + "icon": "desc-highspeedwire-c", + "name": "Quickwire", + "description": "Caterium's high conductivity and resistance to corrosion make it ideal for small, advanced electronics.", + "sinkPoints": 17, + "className": "Desc_HighSpeedWire_C", + "stackSize": 500, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_SpaceElevatorPart_4_C": { + "slug": "modular-engine", + "icon": "desc-spaceelevatorpart-4-c", + "name": "Modular Engine", + "description": "Project Part #4. Ship via the Space Elevator to complete phases of Project Assembly.", + "sinkPoints": 9960, + "className": "Desc_SpaceElevatorPart_4_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_SpaceElevatorPart_5_C": { + "slug": "adaptive-control-unit", + "icon": "desc-spaceelevatorpart-5-c", + "name": "Adaptive Control Unit", + "description": "Project Part #5. Ship via the Space Elevator to complete phases of Project Assembly.", + "sinkPoints": 76368, + "className": "Desc_SpaceElevatorPart_5_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_PressureConversionCube_C": { + "slug": "pressure-conversion-cube", + "icon": "desc-pressureconversioncube-c", + "name": "Pressure Conversion Cube", + "description": "Converts outgoing force into internal pressure. Required to contain unstable, high-energy matter.", + "sinkPoints": 255088, + "className": "Desc_PressureConversionCube_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_PlutoniumCell_C": { + "slug": "encased-plutonium-cell", + "icon": "desc-plutoniumcell-c", + "name": "Encased Plutonium Cell", + "description": "Plutonium Pellets encased in concrete.\nUsed to produce Plutonium Fuel Rods for Nuclear Power production.\n\nCaution: Moderately Radioactive.", + "sinkPoints": 0, + "className": "Desc_PlutoniumCell_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 120.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_PlutoniumPellet_C": { + "slug": "plutonium-pellet", + "icon": "desc-plutoniumpellet-c", + "name": "Plutonium Pellet", + "description": "Produced in the Particle Accelerator through conversion of Non-fissile Uranium.\nUsed to produce Encased Plutonium Cells for Plutonium Fuel Rods.\n\nPower Usage: 250-750 MW (500 MW average).\nCaution: Moderately Radioactive.", + "sinkPoints": 0, + "className": "Desc_PlutoniumPellet_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 20.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_NonFissibleUranium_C": { + "slug": "non-fissile-uranium", + "icon": "desc-nonfissibleuranium-c", + "name": "Non-Fissile Uranium", + "description": "The Uranium-238 isotope is non-fissile, meaning it cannot be used for nuclear fission. It can, however, be converted into fissile Plutonium in the Particle Accelerator.\n\nCaution: Mildly Radioactive.", + "sinkPoints": 0, + "className": "Desc_NonFissibleUranium_C", + "stackSize": 500, + "energyValue": 0.0, + "radioactiveDecay": 0.75, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_SulfuricAcid_C": { + "slug": "sulfuric-acid", + "icon": "desc-sulfuricacid-c", + "name": "Sulfuric Acid", + "description": "Produced by combining Sulfur and Water in a complex reaction. Primarily used in refinement processes and Battery production.", + "sinkPoints": 16000, + "className": "Desc_SulfuricAcid_C", + "stackSize": 50000, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": true, + "fluidColor": { + "r": 255, + "g": 255, + "b": 0, + "a": 0 + } + }, + "Desc_CopperDust_C": { + "slug": "copper-powder", + "icon": "desc-copperdust-c", + "name": "Copper Powder", + "description": "Ground-up Copper Ingots.\nThe high natural density of Copper, combined with the granularity of the powder, makes this part perfect for producing Nuclear Pasta in the Particle Accelerator.", + "sinkPoints": 72, + "className": "Desc_CopperDust_C", + "stackSize": 500, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_AluminumPlateReinforced_C": { + "slug": "heat-sink", + "icon": "desc-aluminumplatereinforced-c", + "name": "Heat Sink", + "description": "Used to dissipate heat faster.", + "sinkPoints": 2804, + "className": "Desc_AluminumPlateReinforced_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_ElectromagneticControlRod_C": { + "slug": "electromagnetic-control-rod", + "icon": "desc-electromagneticcontrolrod-c", + "name": "Electromagnetic Control Rod", + "description": "Regulates power output via electromagnetism.", + "sinkPoints": 2560, + "className": "Desc_ElectromagneticControlRod_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_SpaceElevatorPart_9_C": { + "slug": "nuclear-pasta", + "icon": "desc-spaceelevatorpart-9-c", + "name": "Nuclear Pasta", + "description": "Project Part #9. Ship via the Space Elevator to complete phases of Project Assembly.\nPower Usage: 500-1500 MW (1000 MW average).\n\nNuclear Pasta is extremely dense degenerate matter, formed when extreme pressure forces protons and electrons together into neutrons. It is theorized to exist naturally within the crust of neutron stars.", + "sinkPoints": 538976, + "className": "Desc_SpaceElevatorPart_9_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_UraniumCell_C": { + "slug": "encased-uranium-cell", + "icon": "desc-uraniumcell-c", + "name": "Encased Uranium Cell", + "description": "Used to produce Uranium Fuel Rods for Nuclear Power production. Made from Uranium Ore.\n\nCaution: Mildly Radioactive.", + "sinkPoints": 147, + "className": "Desc_UraniumCell_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 0.5, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_DissolvedSilica_C": { + "slug": "dissolved-silica", + "icon": "desc-dissolvedsilica-c", + "name": "Dissolved Silica", + "description": "Silica dissolved in Water, produced as part of the alternative refinement of Raw Quartz.\nThe Silica can be extracted from the Water to complete the refinement process.", + "sinkPoints": 0, + "className": "Desc_DissolvedSilica_C", + "stackSize": 50000, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": true, + "fluidColor": { + "r": 226, + "g": 190, + "b": 238, + "a": 0 + } + }, + "Desc_SpaceElevatorPart_8_C": { + "slug": "thermal-propulsion-rocket", + "icon": "desc-spaceelevatorpart-8-c", + "name": "Thermal Propulsion Rocket", + "description": "Project Part #8. Ship via the Space Elevator to complete phases of Project Assembly.\n\nUses extreme heat to produce the high-pressure plasma required to get Project Assembly into motion.", + "sinkPoints": 728508, + "className": "Desc_SpaceElevatorPart_8_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Gunpowder_C": { + "slug": "black-powder", + "icon": "desc-gunpowder-c", + "name": "Black Powder", + "description": "An explosive powder that is commonly used to produce simple explosives.", + "sinkPoints": 14, + "className": "Desc_Gunpowder_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Ficsonium_C": { + "slug": "ficsonium", + "icon": "desc-ficsonium-c", + "name": "Ficsonium", + "description": "Usage and production of this material is strictly prohibited. On Earth, that is. There are no rules in space, only efficiency. \n\nPower Usage: 500-1500 MW (1000 MW average).", + "sinkPoints": 0, + "className": "Desc_Ficsonium_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 250.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_SingularityCell_C": { + "slug": "singularity-cell", + "icon": "desc-singularitycell-c", + "name": "Singularity Cell", + "description": "Used to break down space and time. Required to power Portals.", + "sinkPoints": 114675, + "className": "Desc_SingularityCell_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_SpaceElevatorPart_11_C": { + "slug": "ballistic-warp-drive", + "icon": "desc-spaceelevatorpart-11-c", + "name": "Ballistic Warp Drive", + "description": "Project Part #11. Ship via the Space Elevator to complete phases of Project Assembly.\n\nA large amount of force is required for the Warp Drives to activate, so sticking them to rockets was the logical next step. Additionally, results improved immensely when the observers were further removed from the Warp Drives upon activation.", + "sinkPoints": 2895334, + "className": "Desc_SpaceElevatorPart_11_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Filter_C": { + "slug": "gas-filter", + "icon": "desc-filter-c", + "name": "Gas Filter", + "description": "Filters out toxins and pollutants from the air when used with a Gas Mask.", + "sinkPoints": 608, + "className": "Desc_Filter_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_AlienProtein_C": { + "slug": "alien-protein", + "icon": "desc-alienprotein-c", + "name": "Alien Protein", + "description": "Ground-up Alien Remains in a neat little package.\nUsed for medical purposes and to research alien organisms.", + "sinkPoints": 0, + "className": "Desc_AlienProtein_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Crystal_C": { + "slug": "blue-power-slug", + "icon": "desc-crystal-c", + "name": "Blue Power Slug", + "description": "A strange slug radiating an unknown weak power.", + "sinkPoints": 0, + "className": "Desc_Crystal_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_AlienDNACapsule_C": { + "slug": "alien-dna-capsule", + "icon": "desc-aliendnacapsule-c", + "name": "Alien DNA Capsule", + "description": "Translates organic chemicals into readable alien genetic information.\nUsed for researching alien organisms.\n\nGo the extra kilometer! Knowledge is power, and power is just efficiency with fewer steps. Depositing Alien DNA Capsules in the AWESOME Sink provides FICSIT with knowledge, and pioneers with Coupons.", + "sinkPoints": 0, + "className": "Desc_AlienDNACapsule_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_WAT2_C": { + "slug": "mercer-sphere", + "icon": "desc-wat2-c", + "name": "Mercer Sphere", + "description": "A weird alien phenomenon. While the sphere appears liquid, it behaves like a solid and does not have any detectable mass. It seems to somehow interact with and have awareness of its environment.", + "sinkPoints": 0, + "className": "Desc_WAT2_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Crystal_mk3_C": { + "slug": "purple-power-slug", + "icon": "desc-crystal-mk3-c", + "name": "Purple Power Slug", + "description": "A strange slug radiating a powerful unknown power.", + "sinkPoints": 0, + "className": "Desc_Crystal_mk3_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Crystal_mk2_C": { + "slug": "yellow-power-slug", + "icon": "desc-crystal-mk2-c", + "name": "Yellow Power Slug", + "description": "A strange slug radiating an unknown power.", + "sinkPoints": 0, + "className": "Desc_Crystal_mk2_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_GunpowderMK2_C": { + "slug": "smokeless-powder", + "icon": "desc-gunpowdermk2-c", + "name": "Smokeless Powder", + "description": "An explosive powder that is commonly used to produce modern firearms.", + "sinkPoints": 58, + "className": "Desc_GunpowderMK2_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_XmasStar_C": { + "slug": "ficsmas-wonder-star", + "icon": "desc-xmasstar-c", + "name": "FICSMAS Wonder Star", + "description": "A symbol of appreciation for all the hard work FICSIT has done for its employees. It seems to have an aura of gratitude. Seeing this also means the seasonal event is nearly done, and we can finally get back to Saving The Day.", + "sinkPoints": 6540, + "className": "Desc_XmasStar_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_XmasBallCluster_C": { + "slug": "ficsmas-ornament-bundle", + "icon": "desc-xmasballcluster-c", + "name": "FICSMAS Ornament Bundle", + "description": "A collection of FICSMAS ornaments and also an eyesore.", + "sinkPoints": 100, + "className": "Desc_XmasBallCluster_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_XmasBranch_C": { + "slug": "ficsmas-tree-branch", + "icon": "desc-xmasbranch-c", + "name": "FICSMAS Tree Branch", + "description": "This FICSMAS Tree Branch is very different from regular tree branches: it's used to produce parts and buildings during the FICSMAS event, rather than for combustion.", + "sinkPoints": 2, + "className": "Desc_XmasBranch_C", + "stackSize": 500, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_XmasWreath_C": { + "slug": "ficsmas-wreath", + "icon": "desc-xmaswreath-c", + "name": "FICSMAS Wreath", + "description": "FICSIT's newest holiday innovation: decorations that can be turned into decorations! Efficiency and waste-conscious design at its best.", + "sinkPoints": 630, + "className": "Desc_XmasWreath_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_CandyCane_C": { + "slug": "candy-cane", + "icon": "desc-candycane-c", + "name": "Candy Cane", + "description": "A delicious Candy Cane to be enjoyed during the FICSMAS Holidays.\n*Disclaimer: Not for human consumption…", + "sinkPoints": 6, + "className": "Desc_CandyCane_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Snow_C": { + "slug": "ficsmas-actual-snow", + "icon": "desc-snow-c", + "name": "FICSMAS Actual Snow", + "description": "This Actual Snow is made from several chemical elements and experiences 100% like naturally occuring snow after extensive user testing.", + "sinkPoints": 5, + "className": "Desc_Snow_C", + "stackSize": 500, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_XmasBow_C": { + "slug": "ficsmas-bow", + "icon": "desc-xmasbow-c", + "name": "FICSMAS Bow", + "description": "A fancy bow. Not for wearing, eating, admiring, Lizard Doggos, humans, aliens, or anything not related to FICSMAS factory production.", + "sinkPoints": 4, + "className": "Desc_XmasBow_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Gift_C": { + "slug": "ficsmas-gift", + "icon": "desc-gift-c", + "name": "FICSMAS Gift", + "description": "Gifts that have inexplicably fallen from the sky or spawned from a FICSMAS Gift Tree.\n\nDon’t question it—they’re used to produce FICSMAS buildings and parts.\n\nThese Gifts are part of the FICSMAS Event, like the calendar in the HUB.", + "sinkPoints": 1, + "className": "Desc_Gift_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_XmasBall1_C": { + "slug": "red-ficsmas-ornament", + "icon": "desc-xmasball1-c", + "name": "Red FICSMAS Ornament", + "description": "An ornament for making FICSMAS Decorations. An acceptable red.", + "sinkPoints": 2, + "className": "Desc_XmasBall1_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_XmasBall2_C": { + "slug": "blue-ficsmas-ornament", + "icon": "desc-xmasball2-c", + "name": "Blue FICSMAS Ornament", + "description": "An ornament for making FICSMAS Decorations. A mildly pleasing blue.", + "sinkPoints": 1, + "className": "Desc_XmasBall2_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_XmasBall3_C": { + "slug": "copper-ficsmas-ornament", + "icon": "desc-xmasball3-c", + "name": "Copper FICSMAS Ornament", + "description": "An ornament for making FICSMAS Decorations. A slightly dignified copper.", + "sinkPoints": 32, + "className": "Desc_XmasBall3_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_XmasBall4_C": { + "slug": "iron-ficsmas-ornament", + "icon": "desc-xmasball4-c", + "name": "Iron FICSMAS Ornament", + "description": "An ornament for making FICSMAS Decorations. An okay iron.", + "sinkPoints": 18, + "className": "Desc_XmasBall4_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_RebarGunProjectile_C": { + "slug": "rebar-gun", + "icon": "desc-rebargunprojectile-c", + "name": "Rebar Gun", + "description": "An improvised ranged weapon for self-defense. Has to be reloaded after each use.", + "sinkPoints": 1968, + "className": "Desc_RebarGunProjectile_C", + "stackSize": 1, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "BP_EquipmentDescriptorRifle_C": { + "slug": "rifle", + "icon": "bp-equipmentdescriptorrifle-c", + "name": "Rifle", + "description": "A long-range, rapid-fire weapon. Specifically designed to deliver adequate performance within the designated work area.", + "sinkPoints": 9480, + "className": "BP_EquipmentDescriptorRifle_C", + "stackSize": 1, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_NuclearFuelRod_C": { + "slug": "uranium-fuel-rod", + "icon": "desc-nuclearfuelrod-c", + "name": "Uranium Fuel Rod", + "description": "Used as fuel for Nuclear Power Plants.\n\nCaution: Produces radioactive Uranium Waste when consumed.\nCaution: Moderately Radioactive.", + "sinkPoints": 43468, + "className": "Desc_NuclearFuelRod_C", + "stackSize": 50, + "energyValue": 750000.0, + "radioactiveDecay": 50.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_PlutoniumFuelRod_C": { + "slug": "plutonium-fuel-rod", + "icon": "desc-plutoniumfuelrod-c", + "name": "Plutonium Fuel Rod", + "description": "Used as fuel for Nuclear Power Plants.\n\nCaution: Produces radioactive Plutonium Waste when consumed.\nCaution: HIGHLY Radioactive.", + "sinkPoints": 153184, + "className": "Desc_PlutoniumFuelRod_C", + "stackSize": 50, + "energyValue": 1500000.0, + "radioactiveDecay": 250.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_FicsoniumFuelRod_C": { + "slug": "ficsonium-fuel-rod", + "icon": "desc-ficsoniumfuelrod-c", + "name": "Ficsonium Fuel Rod", + "description": "Used as fuel for Nuclear Power Plants.\nThe power source that put FICSIT on the map. Literally. The crater is still there.\n\nCaution: Moderately Radioactive.", + "sinkPoints": 0, + "className": "Desc_FicsoniumFuelRod_C", + "stackSize": 50, + "energyValue": 150000.0, + "radioactiveDecay": 1000.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Rebar_Explosive_C": { + "slug": "explosive-rebar", + "icon": "desc-rebar-explosive-c", + "name": "Explosive Rebar", + "description": "Explodes on impact, dealing heavy damage.", + "sinkPoints": 360, + "className": "Desc_Rebar_Explosive_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Rebar_Stunshot_C": { + "slug": "stun-rebar", + "icon": "desc-rebar-stunshot-c", + "name": "Stun Rebar", + "description": "Electrocutes the target on impact, stunning it for a short time.\n\nStun Duration: 5 seconds", + "sinkPoints": 186, + "className": "Desc_Rebar_Stunshot_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_CartridgeSmartProjectile_C": { + "slug": "homing-rifle-ammo", + "icon": "desc-cartridgesmartprojectile-c", + "name": "Homing Rifle Ammo", + "description": "The bullet guidance system built into this ammunition allows it to accurately hit any target within the reticle area.\nEspecially useful when dealing with agile threats, or for pioneers who can't be bothered to aim properly.", + "sinkPoints": 855, + "className": "Desc_CartridgeSmartProjectile_C", + "stackSize": 500, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_NobeliskCluster_C": { + "slug": "cluster-nobelisk", + "icon": "desc-nobeliskcluster-c", + "name": "Cluster Nobelisk", + "description": "Detonates into multiple smaller explosions. Practical for clearing out large areas of vegetation and other inconveniences.", + "sinkPoints": 1376, + "className": "Desc_NobeliskCluster_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_NobeliskExplosive_C": { + "slug": "nobelisk", + "icon": "desc-nobeliskexplosive-c", + "name": "Nobelisk", + "description": "A simple explosive, useful for clearing boulders, vegetation, and other obstacles.", + "sinkPoints": 152, + "className": "Desc_NobeliskExplosive_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_NobeliskGas_C": { + "slug": "gas-nobelisk", + "icon": "desc-nobeliskgas-c", + "name": "Gas Nobelisk", + "description": "Creates a deadly gas cloud instead of a regular explosion.", + "sinkPoints": 544, + "className": "Desc_NobeliskGas_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_NobeliskNuke_C": { + "slug": "nuke-nobelisk", + "icon": "desc-nobelisknuke-c", + "name": "Nuke Nobelisk", + "description": "Uses a nuclear fission reaction to generate a massive explosion.\nWARNING: Ensure all FICSIT property is clear of the blast zone before detonation.", + "sinkPoints": 19600, + "className": "Desc_NobeliskNuke_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_NobeliskShockwave_C": { + "slug": "pulse-nobelisk", + "icon": "desc-nobeliskshockwave-c", + "name": "Pulse Nobelisk", + "description": "Generates a powerful shockwave instead of a regular explosion.", + "sinkPoints": 1533, + "className": "Desc_NobeliskShockwave_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Fireworks_Projectile_01_C": { + "slug": "sweet-fireworks", + "icon": "desc-fireworks-projectile-01-c", + "name": "Sweet Fireworks", + "description": "Has the minimum safety requirements.", + "sinkPoints": 60, + "className": "Desc_Fireworks_Projectile_01_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Fireworks_Projectile_02_C": { + "slug": "fancy-fireworks", + "icon": "desc-fireworks-projectile-02-c", + "name": "Fancy Fireworks", + "description": "Poses acceptable amount of risk to pioneers.", + "sinkPoints": 40, + "className": "Desc_Fireworks_Projectile_02_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Fireworks_Projectile_03_C": { + "slug": "sparkly-fireworks", + "icon": "desc-fireworks-projectile-03-c", + "name": "Sparkly Fireworks", + "description": "Keep away from easily distracted pioneers.", + "sinkPoints": 32, + "className": "Desc_Fireworks_Projectile_03_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_SnowballProjectile_C": { + "slug": "snowball", + "icon": "desc-snowballprojectile-c", + "name": "Snowball", + "description": "Compressed dihydrogen monoxide crystals for weaponized fun!", + "sinkPoints": 30, + "className": "Desc_SnowballProjectile_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_SpikedRebar_C": { + "slug": "iron-rebar", + "icon": "desc-spikedrebar-c", + "name": "Iron Rebar", + "description": "Can be shot using the Rebar Gun for self-defense purposes.", + "sinkPoints": 8, + "className": "Desc_SpikedRebar_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "BP_EquipmentDescriptorHazmatSuit_C": { + "slug": "hazmat-suit", + "icon": "bp-equipmentdescriptorhazmatsuit-c", + "name": "Hazmat Suit", + "description": "Shields pioneers from the adverse effects of radiation. \nConsumes Iodine-Infused Filters from the pioneer's inventory when worn in radioactive areas.", + "sinkPoints": 54100, + "className": "BP_EquipmentDescriptorHazmatSuit_C", + "stackSize": 1, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "BP_EquipmentDescriptorNobeliskDetonator_C": { + "slug": "nobelisk-detonator", + "icon": "bp-equipmentdescriptornobeliskdetonator-c", + "name": "Nobelisk Detonator", + "description": "A remote-control device used to handle and detonate Nobelisks.", + "sinkPoints": 6480, + "className": "BP_EquipmentDescriptorNobeliskDetonator_C", + "stackSize": 1, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "BP_ItemDescriptorPortableMiner_C": { + "slug": "portable-miner", + "icon": "bp-itemdescriptorportableminer-c", + "name": "Portable Miner", + "description": "Automatically extracts a resource when placed on a resource node.\nNote: Has limited storage space.", + "sinkPoints": 56, + "className": "BP_ItemDescriptorPortableMiner_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "BP_EquipmentDescriptorShockShank_C": { + "slug": "xeno-zapper", + "icon": "bp-equipmentdescriptorshockshank-c", + "name": "Xeno-Zapper", + "description": "A standard issue self-defense electroshock melee weapon.", + "sinkPoints": 1880, + "className": "BP_EquipmentDescriptorShockShank_C", + "stackSize": 1, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "BP_EquipmentDescriptorObjectScanner_C": { + "slug": "object-scanner", + "icon": "bp-equipmentdescriptorobjectscanner-c", + "name": "Object Scanner", + "description": "Scans the area for a selected item. Beeps at a rate proportional to proximity and direction.", + "sinkPoints": 1400, + "className": "BP_EquipmentDescriptorObjectScanner_C", + "stackSize": 1, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "BP_EquipmentDescriptorHoverPack_C": { + "slug": "hoverpack", + "icon": "bp-equipmentdescriptorhoverpack-c", + "name": "Hoverpack", + "description": "Power Consumption: 100 MW\n\nAllows pioneers to move vertically and hover in mid-air to improve building efficiency and factory traversal. Wirelessly connects to nearby power connections, such as Power Poles and Buildings, for power consumption.\n\nSlow-Fall: Hold {PlayerMovement_Jump} after losing connection mid-air.\nDisable Hoverpack: Double tap {PlayerMovement_Crouch} while hovering.", + "sinkPoints": 265632, + "className": "BP_EquipmentDescriptorHoverPack_C", + "stackSize": 1, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "BP_EquipmentDescriptorJetPack_C": { + "slug": "jetpack", + "icon": "bp-equipmentdescriptorjetpack-c", + "name": "Jetpack", + "description": "Allows pioneers to travel through the air with increased control.\n\nFuel is automatically consumed from the pioneer's inventory to refill the Jetpack while on the ground.\nDifferent fuel types can be used and provide different levels of Jetpack efficiency. The preferred fuel type will be used if available, and can be set in the equipment inventory.", + "sinkPoints": 16580, + "className": "BP_EquipmentDescriptorJetPack_C", + "stackSize": 1, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "BP_EquipmentDescriptorStunSpear_C": { + "slug": "xeno-basher", + "icon": "bp-equipmentdescriptorstunspear-c", + "name": "Xeno-Basher", + "description": "A heavy self-defense electroshock melee weapon.", + "sinkPoints": 17800, + "className": "BP_EquipmentDescriptorStunSpear_C", + "stackSize": 1, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Chainsaw_C": { + "slug": "chainsaw", + "icon": "desc-chainsaw-c", + "name": "Chainsaw", + "description": "Clears an area of flora that is too difficult to remove by hand.\n\nFuel: Biofuel", + "sinkPoints": 2760, + "className": "Desc_Chainsaw_C", + "stackSize": 1, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "BP_EquipmentDescriptorJumpingStilts_C": { + "slug": "blade-runners", + "icon": "bp-equipmentdescriptorjumpingstilts-c", + "name": "Blade Runners", + "description": "An exoskeleton for the lower legs that assists movement, allowing pioneers to sprint faster and jump higher.\nAlso dampens the impact of landing.", + "sinkPoints": 4088, + "className": "BP_EquipmentDescriptorJumpingStilts_C", + "stackSize": 1, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "BP_EqDescZipLine_C": { + "slug": "zipline", + "icon": "bp-eqdesczipline-c", + "name": "Zipline", + "description": "Provides faster traversal of factories by allowing pioneers to zip along Power lines.\nActivate the Zipline and aim at a nearby Power Line to connect to it.", + "sinkPoints": 5284, + "className": "BP_EqDescZipLine_C", + "stackSize": 1, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "BP_EquipmentDescriptorGasmask_C": { + "slug": "gas-mask", + "icon": "bp-equipmentdescriptorgasmask-c", + "name": "Gas Mask", + "description": "Allows pioneers to breathe normally in toxic gas-filled areas.\nConsumes Gas Filters from the pioneer's inventory when in use.", + "sinkPoints": 14960, + "className": "BP_EquipmentDescriptorGasmask_C", + "stackSize": 1, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "BP_EquipmentDescriptorCandyCane_C": { + "slug": "candy-cane-basher", + "icon": "bp-equipmentdescriptorcandycane-c", + "name": "Candy Cane Basher", + "description": "Self-defense is now not only fun, but also delicious for the target! Do not lick or consume.", + "sinkPoints": 7850, + "className": "BP_EquipmentDescriptorCandyCane_C", + "stackSize": 1, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_GolfCart_C": { + "slug": "factory-carttm", + "icon": "desc-golfcart-c", + "name": "Factory Cart™", + "description": "The one and only FICSIT Factory Cart™.\nNow with special FICSIT-Foundation-only Grip Wheels, for an even smoother and faster factory floor experience!", + "sinkPoints": 1552, + "className": "Desc_GolfCart_C", + "stackSize": 1, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_GolfCartGold_C": { + "slug": "golden-factory-carttm", + "icon": "desc-golfcartgold-c", + "name": "Golden Factory Cart™", + "description": "The one and only Golden FICSIT Factory Cart™\n\nYou have now officially ascended. \nGo forth now, Master of Spaghetti, God of the Factory, Sinker of Cups, Employee of the Planet... travel in STYLE!", + "sinkPoints": 1852, + "className": "Desc_GolfCartGold_C", + "stackSize": 1, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Rebar_Spreadshot_C": { + "slug": "shatter-rebar", + "icon": "desc-rebar-spreadshot-c", + "name": "Shatter Rebar", + "description": "Fractures when shot, launching deadly debris with wide spread but limited range.", + "sinkPoints": 332, + "className": "Desc_Rebar_Spreadshot_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_CartridgeChaos_C": { + "slug": "turbo-rifle-ammo", + "icon": "desc-cartridgechaos-c", + "name": "Turbo Rifle Ammo", + "description": "Lightweight, compact, and volatile. These rounds provide extreme capacity and rate of fire at the cost of accuracy.", + "sinkPoints": 120, + "className": "Desc_CartridgeChaos_C", + "stackSize": 500, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_CartridgeStandard_C": { + "slug": "rifle-ammo", + "icon": "desc-cartridgestandard-c", + "name": "Rifle Ammo", + "description": "Standard issue Rifle ammunition, useful for establishing dominance.", + "sinkPoints": 25, + "className": "Desc_CartridgeStandard_C", + "stackSize": 500, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_OreIron_C": { + "slug": "iron-ore", + "icon": "desc-oreiron-c", + "name": "Iron Ore", + "description": "Used for crafting.\nThe most essential basic resource.", + "sinkPoints": 1, + "className": "Desc_OreIron_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Water_C": { + "slug": "water", + "icon": "desc-water-c", + "name": "Water", + "description": "It's water.", + "sinkPoints": 5000, + "className": "Desc_Water_C", + "stackSize": 50000, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": true, + "fluidColor": { + "r": 122, + "g": 176, + "b": 212, + "a": 0 + } + }, + "Desc_Coal_C": { + "slug": "coal", + "icon": "desc-coal-c", + "name": "Coal", + "description": "Mainly used as fuel for vehicles & Coal-Powered Generators, or in Steel production.", + "sinkPoints": 3, + "className": "Desc_Coal_C", + "stackSize": 100, + "energyValue": 300.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_NitrogenGas_C": { + "slug": "nitrogen-gas", + "icon": "desc-nitrogengas-c", + "name": "Nitrogen Gas", + "description": "Has a variety of uses, including metallurgy, cooling, and Nitric Acid production. On MASSAGE-2 (AB)b, it can be extracted from underground gas wells.", + "sinkPoints": 10000, + "className": "Desc_NitrogenGas_C", + "stackSize": 50000, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": true, + "fluidColor": { + "r": 89, + "g": 89, + "b": 89, + "a": 0 + } + }, + "Desc_Sulfur_C": { + "slug": "sulfur", + "icon": "desc-sulfur-c", + "name": "Sulfur", + "description": "Primarily used to produce Black Powder.", + "sinkPoints": 11, + "className": "Desc_Sulfur_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_SAM_C": { + "slug": "sam", + "icon": "desc-sam-c", + "name": "SAM", + "description": "Strange Alien Matter, commonly referred to as SAM, doesn't seem to follow the known laws of physics. It whispers of new possibilities.", + "sinkPoints": 20, + "className": "Desc_SAM_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_OreBauxite_C": { + "slug": "bauxite", + "icon": "desc-orebauxite-c", + "name": "Bauxite", + "description": "Used to produce Alumina, which can be further refined into the Aluminum Scrap required to produce Aluminum Ingots.", + "sinkPoints": 8, + "className": "Desc_OreBauxite_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_OreGold_C": { + "slug": "caterium-ore", + "icon": "desc-oregold-c", + "name": "Caterium Ore", + "description": "Smelted into Caterium Ingots, which are primarily used for advanced electronics.", + "sinkPoints": 7, + "className": "Desc_OreGold_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_OreCopper_C": { + "slug": "copper-ore", + "icon": "desc-orecopper-c", + "name": "Copper Ore", + "description": "Used for crafting.\nA basic resource primarily used for electricity.", + "sinkPoints": 3, + "className": "Desc_OreCopper_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_RawQuartz_C": { + "slug": "raw-quartz", + "icon": "desc-rawquartz-c", + "name": "Raw Quartz", + "description": "Can be processed into Quartz Crystals and Silica, which both offer a variety of applications.", + "sinkPoints": 15, + "className": "Desc_RawQuartz_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Stone_C": { + "slug": "limestone", + "icon": "desc-stone-c", + "name": "Limestone", + "description": "Used for crafting.\nA basic resource primarily used for stable Foundations.", + "sinkPoints": 2, + "className": "Desc_Stone_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_OreUranium_C": { + "slug": "uranium", + "icon": "desc-oreuranium-c", + "name": "Uranium", + "description": "A radioactive element. \nUsed to produce Encased Uranium Cells for Uranium Fuel Rods.\n\nCaution: Moderately Radioactive.", + "sinkPoints": 35, + "className": "Desc_OreUranium_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 15.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_LiquidOil_C": { + "slug": "crude-oil", + "icon": "desc-liquidoil-c", + "name": "Crude Oil", + "description": "Refined into all kinds of Oil-based resources, like Fuel and Plastic.", + "sinkPoints": 30000, + "className": "Desc_LiquidOil_C", + "stackSize": 50000, + "energyValue": 320.0, + "radioactiveDecay": 0.0, + "liquid": true, + "fluidColor": { + "r": 25, + "g": 0, + "b": 25, + "a": 0 + } + }, + "Desc_Medkit_C": { + "slug": "medicinal-inhaler", + "icon": "desc-medkit-c", + "name": "Medicinal Inhaler", + "description": "Fully restores health when used.\n\nThe FICSIT Medicinal Inhaler can be produced from a variety of different ingredients.", + "sinkPoints": 125, + "className": "Desc_Medkit_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_CrystalShard_C": { + "slug": "power-shard", + "icon": "desc-crystalshard-c", + "name": "Power Shard", + "description": "Power Slug mucus compressed into a solid crystal-like shard. \nIt radiates a strange power.", + "sinkPoints": 0, + "className": "Desc_CrystalShard_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_WAT1_C": { + "slug": "somersloop", + "icon": "desc-wat1-c", + "name": "Somersloop", + "description": "An odd alien object with a mind-bending, yet somehow familiar shape. It emits an unsettling energy.", + "sinkPoints": 0, + "className": "Desc_WAT1_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Leaves_C": { + "slug": "leaves", + "icon": "desc-leaves-c", + "name": "Leaves", + "description": "Primarily used as fuel.\nBiomass Burners and vehicles can use Leaves for power.", + "sinkPoints": 3, + "className": "Desc_Leaves_C", + "stackSize": 500, + "energyValue": 15.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Wood_C": { + "slug": "wood", + "icon": "desc-wood-c", + "name": "Wood", + "description": "Primarily used as fuel.\nBiomass Burners and vehicles can use Wood for power.", + "sinkPoints": 30, + "className": "Desc_Wood_C", + "stackSize": 200, + "energyValue": 100.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_GenericBiomass_C": { + "slug": "biomass", + "icon": "desc-genericbiomass-c", + "name": "Biomass", + "description": "Primarily used as fuel.\nBiomass Burners and vehicles can use it for power.\nBiomass is much more energy-efficient than raw biological matter.", + "sinkPoints": 12, + "className": "Desc_GenericBiomass_C", + "stackSize": 200, + "energyValue": 180.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Biofuel_C": { + "slug": "solid-biofuel", + "icon": "desc-biofuel-c", + "name": "Solid Biofuel", + "description": "The most energy-efficient form of solid Biomass. Can be used as fuel for the Chainsaw.", + "sinkPoints": 48, + "className": "Desc_Biofuel_C", + "stackSize": 200, + "energyValue": 450.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_LiquidBiofuel_C": { + "slug": "liquid-biofuel", + "icon": "desc-liquidbiofuel-c", + "name": "Liquid Biofuel", + "description": "Liquid Biofuel can be used as-is to generate power, or packaged to be used as fuel for vehicles.", + "sinkPoints": 261000, + "className": "Desc_LiquidBiofuel_C", + "stackSize": 50000, + "energyValue": 750.0, + "radioactiveDecay": 0.0, + "liquid": true, + "fluidColor": { + "r": 59, + "g": 83, + "b": 44, + "a": 0 + } + }, + "Desc_PackagedBiofuel_C": { + "slug": "packaged-liquid-biofuel", + "icon": "desc-packagedbiofuel-c", + "name": "Packaged Liquid Biofuel", + "description": "Liquid Biofuel, packaged for alternative transport. Can be used as fuel for vehicles and the Jetpack.", + "sinkPoints": 370, + "className": "Desc_PackagedBiofuel_C", + "stackSize": 100, + "energyValue": 750.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 58, + "g": 83, + "b": 42, + "a": 255 + } + }, + "Desc_PackagedAlumina_C": { + "slug": "packaged-alumina-solution", + "icon": "desc-packagedalumina-c", + "name": "Packaged Alumina Solution", + "description": "Alumina Solution, packaged for alternative transport.", + "sinkPoints": 160, + "className": "Desc_PackagedAlumina_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 58, + "g": 83, + "b": 42, + "a": 255 + } + }, + "Desc_PackagedNitrogenGas_C": { + "slug": "packaged-nitrogen-gas", + "icon": "desc-packagednitrogengas-c", + "name": "Packaged Nitrogen Gas", + "description": "Nitrogen Gas, packaged for alternative transport.", + "sinkPoints": 312, + "className": "Desc_PackagedNitrogenGas_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 58, + "g": 83, + "b": 42, + "a": 255 + } + }, + "Desc_PackagedNitricAcid_C": { + "slug": "packaged-nitric-acid", + "icon": "desc-packagednitricacid-c", + "name": "Packaged Nitric Acid", + "description": "Nitric Acid, packaged for alternative transport.", + "sinkPoints": 412, + "className": "Desc_PackagedNitricAcid_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 58, + "g": 83, + "b": 42, + "a": 255 + } + }, + "Desc_PackagedSulfuricAcid_C": { + "slug": "packaged-sulfuric-acid", + "icon": "desc-packagedsulfuricacid-c", + "name": "Packaged Sulfuric Acid", + "description": "Sulfuric Acid, packaged for alternative transport.", + "sinkPoints": 152, + "className": "Desc_PackagedSulfuricAcid_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 58, + "g": 83, + "b": 42, + "a": 255 + } + }, + "Desc_Fabric_C": { + "slug": "fabric", + "icon": "desc-fabric-c", + "name": "Fabric", + "description": "Used to craft equipment.\nFlexible but durable fabric.", + "sinkPoints": 140, + "className": "Desc_Fabric_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Mycelia_C": { + "slug": "mycelia", + "icon": "desc-mycelia-c", + "name": "Mycelia", + "description": "Used for crafting.\nBiomass Burners and vehicles can also use Mycelia for power.", + "sinkPoints": 10, + "className": "Desc_Mycelia_C", + "stackSize": 200, + "energyValue": 20.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_HogParts_C": { + "slug": "hog-remains", + "icon": "desc-hogparts-c", + "name": "Hog Remains", + "description": "The carapace of an alien Hog creature.\nUsed for MAM research.", + "sinkPoints": 0, + "className": "Desc_HogParts_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_SpitterParts_C": { + "slug": "spitter-remains", + "icon": "desc-spitterparts-c", + "name": "Spitter Remains", + "description": "The remains of a plasma-spitting alien creature.\nUsed for MAM research.", + "sinkPoints": 0, + "className": "Desc_SpitterParts_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_StingerParts_C": { + "slug": "stinger-remains", + "icon": "desc-stingerparts-c", + "name": "Stinger Remains", + "description": "The remains of whatever that creepy thing was.\nUsed for MAM research.", + "sinkPoints": 0, + "className": "Desc_StingerParts_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_HatcherParts_C": { + "slug": "hatcher-remains", + "icon": "desc-hatcherparts-c", + "name": "Hatcher Remains", + "description": "The shell-like remains of an alien... thing.\nUsed for MAM research.", + "sinkPoints": 0, + "className": "Desc_HatcherParts_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Berry_C": { + "slug": "paleberry", + "icon": "desc-berry-c", + "name": "Paleberry", + "description": "Consumable\n\nEat to restore 1 health segment.", + "sinkPoints": 0, + "className": "Desc_Berry_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Nut_C": { + "slug": "beryl-nut", + "icon": "desc-nut-c", + "name": "Beryl Nut", + "description": "Consumable\n\nEat to restore half a health segment.", + "sinkPoints": 0, + "className": "Desc_Nut_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Shroom_C": { + "slug": "bacon-agaric", + "icon": "desc-shroom-c", + "name": "Bacon Agaric", + "description": "Consumable\n\nEat to restore 2 health segments.", + "sinkPoints": 0, + "className": "Desc_Shroom_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Parachute_C": { + "slug": "parachute", + "icon": "desc-parachute-c", + "name": "Parachute", + "description": "Slows down your fall when activated in mid-air.", + "sinkPoints": 6080, + "className": "Desc_Parachute_C", + "stackSize": 1, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_AlienPowerFuel_C": { + "slug": "alien-power-matrix", + "icon": "desc-alienpowerfuel-c", + "name": "Alien Power Matrix", + "description": "This intricate condensed-matter matrix is used to enhance the output of the Alien Power Augmenter. \n\nInitially developed in efforts to create a human-made Somersloop, the Alien Power Matrix cannot sustain the extra-dimensional energy connection on its own. However, it can effectively stabilize the energy stream of the Somersloop.", + "sinkPoints": 210, + "className": "Desc_AlienPowerFuel_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_ResourceSinkCoupon_C": { + "slug": "ficsit-coupon", + "icon": "desc-resourcesinkcoupon-c", + "name": "FICSIT Coupon", + "description": "A special FICSIT bonus program Coupon, obtained through the AWESOME Sink. Can be redeemed in the AWESOME Shop for bonus milestones and rewards.", + "sinkPoints": 0, + "className": "Desc_ResourceSinkCoupon_C", + "stackSize": 500, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + } + }, + "recipes": { + "Recipe_Wall_Concrete_8x1_C": { + "slug": "recipe-wall-concrete-8x1-c", + "name": "Basic Wall (1 m)", + "className": "Recipe_Wall_Concrete_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_8x4_C": { + "slug": "recipe-wall-concrete-8x4-c", + "name": "Basic Wall (4 m)", + "className": "Recipe_Wall_Concrete_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_8x4_ConveyorHole_01_C": { + "slug": "recipe-wall-concrete-8x4-conveyorhole-01-c", + "name": "Conveyor Wall x 1", + "className": "Recipe_Wall_Concrete_8x4_ConveyorHole_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x4_ConveyorHole_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_8x4_ConveyorHole_02_C": { + "slug": "recipe-wall-concrete-8x4-conveyorhole-02-c", + "name": "Conveyor Wall x 2", + "className": "Recipe_Wall_Concrete_8x4_ConveyorHole_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x4_ConveyorHole_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_8x4_ConveyorHole_03_C": { + "slug": "recipe-wall-concrete-8x4-conveyorhole-03-c", + "name": "Conveyor Wall x 3", + "className": "Recipe_Wall_Concrete_8x4_ConveyorHole_03_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x4_ConveyorHole_03_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_8x4_Corner_01_C": { + "slug": "recipe-wall-concrete-8x4-corner-01-c", + "name": "Tilted Corner Wall (4 m)", + "className": "Recipe_Wall_Concrete_8x4_Corner_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x4_Corner_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_8x4_Corner_2_C": { + "slug": "recipe-wall-concrete-8x4-corner-2-c", + "name": "Tilted Concave Wall (4 m)", + "className": "Recipe_Wall_Concrete_8x4_Corner_2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x4_Corner_2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_8x4_Window_01_C": { + "slug": "recipe-wall-concrete-8x4-window-01-c", + "name": "Single Window", + "className": "Recipe_Wall_Concrete_8x4_Window_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Silica_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x4_Window_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_8x4_Window_02_C": { + "slug": "recipe-wall-concrete-8x4-window-02-c", + "name": "Frame Window", + "className": "Recipe_Wall_Concrete_8x4_Window_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Silica_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x4_Window_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_8x4_Window_03_C": { + "slug": "recipe-wall-concrete-8x4-window-03-c", + "name": "Panel Window", + "className": "Recipe_Wall_Concrete_8x4_Window_03_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Silica_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x4_Window_03_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_8x4_Window_04_C": { + "slug": "recipe-wall-concrete-8x4-window-04-c", + "name": "Reinforced Window", + "className": "Recipe_Wall_Concrete_8x4_Window_04_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Silica_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x4_Window_04_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_8x8_Corner_01_C": { + "slug": "recipe-wall-concrete-8x8-corner-01-c", + "name": "Tilted Corner Wall (8 m)", + "className": "Recipe_Wall_Concrete_8x8_Corner_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x8_Corner_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_8x8_Corner_2_C": { + "slug": "recipe-wall-concrete-8x8-corner-2-c", + "name": "Tilted Concave Wall (8 m)", + "className": "Recipe_Wall_Concrete_8x8_Corner_2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x8_Corner_2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_Angular_8x4_C": { + "slug": "recipe-wall-concrete-angular-8x4-c", + "name": "Tilted Wall (4 m)", + "className": "Recipe_Wall_Concrete_Angular_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_Angular_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_Angular_8x8_C": { + "slug": "recipe-wall-concrete-angular-8x8-c", + "name": "Tilted Wall (8 m)", + "className": "Recipe_Wall_Concrete_Angular_8x8_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_Angular_8x8_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_CDoor_8x4_C": { + "slug": "recipe-wall-concrete-cdoor-8x4-c", + "name": "Center Door Wall", + "className": "Recipe_Wall_Concrete_CDoor_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_CDoor_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_FlipTris_8x1_C": { + "slug": "recipe-wall-concrete-fliptris-8x1-c", + "name": "Wall 1a", + "className": "Recipe_Wall_Concrete_FlipTris_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x1_FlipTris_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_FlipTris_8x2_C": { + "slug": "recipe-wall-concrete-fliptris-8x2-c", + "name": "Inverted Ramp Wall (2 m)", + "className": "Recipe_Wall_Concrete_FlipTris_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x2_FlipTris_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_FlipTris_8x4_C": { + "slug": "recipe-wall-concrete-fliptris-8x4-c", + "name": "Inverted Ramp Wall (4 m)", + "className": "Recipe_Wall_Concrete_FlipTris_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x4_FlipTris_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_FlipTris_8x8_C": { + "slug": "recipe-wall-concrete-fliptris-8x8-c", + "name": "Inverted Ramp Wall (8 m)", + "className": "Recipe_Wall_Concrete_FlipTris_8x8_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x8_FlipTris_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_Gate_8x4_C": { + "slug": "recipe-wall-concrete-gate-8x4-c", + "name": "Gate Hole Wall", + "className": "Recipe_Wall_Concrete_Gate_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_Gate_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_SDoor_8x4_C": { + "slug": "recipe-wall-concrete-sdoor-8x4-c", + "name": "Side Door Wall", + "className": "Recipe_Wall_Concrete_SDoor_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_SDoor_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_Tris_8x1_C": { + "slug": "recipe-wall-concrete-tris-8x1-c", + "name": "Ramp Wall (1 m)", + "className": "Recipe_Wall_Concrete_Tris_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x1_Tris_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_Tris_8x2_C": { + "slug": "recipe-wall-concrete-tris-8x2-c", + "name": "Ramp Wall (2 m)", + "className": "Recipe_Wall_Concrete_Tris_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x2_Tris_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_Tris_8x4_C": { + "slug": "recipe-wall-concrete-tris-8x4-c", + "name": "Ramp Wall (4 m)", + "className": "Recipe_Wall_Concrete_Tris_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x4_Tris_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_Tris_8x8_C": { + "slug": "recipe-wall-concrete-tris-8x8-c", + "name": "Ramp Wall (8 m)", + "className": "Recipe_Wall_Concrete_Tris_8x8_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x8_Tris_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_8x4_01_C": { + "slug": "recipe-wall-8x4-01-c", + "name": "Basic Wall (4 m)", + "className": "Recipe_Wall_8x4_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_8x4_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Conveyor_8x4_01_C": { + "slug": "recipe-wall-conveyor-8x4-01-c", + "name": "Conveyor Wall x 3", + "className": "Recipe_Wall_Conveyor_8x4_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Conveyor_8x4_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Conveyor_8x4_02_C": { + "slug": "recipe-wall-conveyor-8x4-02-c", + "name": "Conveyor Wall x 2", + "className": "Recipe_Wall_Conveyor_8x4_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Conveyor_8x4_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Conveyor_8x4_03_C": { + "slug": "recipe-wall-conveyor-8x4-03-c", + "name": "Conveyor Wall x 1", + "className": "Recipe_Wall_Conveyor_8x4_03_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Conveyor_8x4_03_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Door_8x4_01_C": { + "slug": "recipe-wall-door-8x4-01-c", + "name": "Center Door Wall", + "className": "Recipe_Wall_Door_8x4_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Door_8x4_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Door_8x4_03_C": { + "slug": "recipe-wall-door-8x4-03-c", + "name": "Side Door Wall", + "className": "Recipe_Wall_Door_8x4_03_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Door_8x4_03_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Gate_8x4_01_C": { + "slug": "recipe-wall-gate-8x4-01-c", + "name": "Gate Hole Wall", + "className": "Recipe_Wall_Gate_8x4_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Gate_8x4_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Orange_8x1_C": { + "slug": "recipe-wall-orange-8x1-c", + "name": "Basic Wall (1 m)", + "className": "Recipe_Wall_Orange_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Orange_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Orange_8x4_Corner_01_C": { + "slug": "recipe-wall-orange-8x4-corner-01-c", + "name": "Tilted Corner Wall (4 m)", + "className": "Recipe_Wall_Orange_8x4_Corner_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Orange_8x4_Corner_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Orange_8x4_Corner_02_C": { + "slug": "recipe-wall-orange-8x4-corner-02-c", + "name": "Tilted Concave Wall (4 m)", + "className": "Recipe_Wall_Orange_8x4_Corner_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Orange_8x4_Corner_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Orange_8x8_Corner_01_C": { + "slug": "recipe-wall-orange-8x8-corner-01-c", + "name": "Tilted Corner Wall (8 m)", + "className": "Recipe_Wall_Orange_8x8_Corner_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Orange_8x8_Corner_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Orange_8x8_Corner_02_C": { + "slug": "recipe-wall-orange-8x8-corner-02-c", + "name": "Tilted Concave Wall (8 m)", + "className": "Recipe_Wall_Orange_8x8_Corner_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Orange_8x8_Corner_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Orange_Angular_8x4_C": { + "slug": "recipe-wall-orange-angular-8x4-c", + "name": "Tilted Wall (4 m)", + "className": "Recipe_Wall_Orange_Angular_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Orange_Angular_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Orange_Angular_8x8_C": { + "slug": "recipe-wall-orange-angular-8x8-c", + "name": "Tilted Wall (8 m)", + "className": "Recipe_Wall_Orange_Angular_8x8_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Orange_Angular_8x8_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Orange_FlipTris_8x1_C": { + "slug": "recipe-wall-orange-fliptris-8x1-c", + "name": "Inverted Ramp Wall (1 m)", + "className": "Recipe_Wall_Orange_FlipTris_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Orange_8x1_FlipTris_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Orange_FlipTris_8x2_C": { + "slug": "recipe-wall-orange-fliptris-8x2-c", + "name": "Inverted Ramp Wall (2 m)", + "className": "Recipe_Wall_Orange_FlipTris_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Orange_8x2_FlipTris_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Orange_FlipTris_8x4_C": { + "slug": "recipe-wall-orange-fliptris-8x4-c", + "name": "Inverted Ramp Wall (4 m)", + "className": "Recipe_Wall_Orange_FlipTris_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Orange_8x4_FlipTris_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Orange_FlipTris_8x8_C": { + "slug": "recipe-wall-orange-fliptris-8x8-c", + "name": "Inverted Ramp Wall (8 m)", + "className": "Recipe_Wall_Orange_FlipTris_8x8_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Orange_8x8_FlipTris_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Orange_Tris_8x1_C": { + "slug": "recipe-wall-orange-tris-8x1-c", + "name": "Ramp Wall (1 m)", + "className": "Recipe_Wall_Orange_Tris_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Orange_8x1_Tris_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Orange_Tris_8x2_C": { + "slug": "recipe-wall-orange-tris-8x2-c", + "name": "Ramp Wall (2 m)", + "className": "Recipe_Wall_Orange_Tris_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Orange_8x2_Tris_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Orange_Tris_8x4_C": { + "slug": "recipe-wall-orange-tris-8x4-c", + "name": "Ramp Wall (4 m)", + "className": "Recipe_Wall_Orange_Tris_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Orange_8x4_Tris_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Orange_Tris_8x8_C": { + "slug": "recipe-wall-orange-tris-8x8-c", + "name": "Ramp Wall (8 m)", + "className": "Recipe_Wall_Orange_Tris_8x8_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Orange_8x8_Tris_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Window_8x4_01_C": { + "slug": "recipe-wall-window-8x4-01-c", + "name": "Single Window", + "className": "Recipe_Wall_Window_8x4_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Silica_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Window_8x4_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Window_8x4_02_C": { + "slug": "recipe-wall-window-8x4-02-c", + "name": "Frame Window", + "className": "Recipe_Wall_Window_8x4_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Silica_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Window_8x4_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Window_8x4_03_C": { + "slug": "recipe-wall-window-8x4-03-c", + "name": "Panel Window", + "className": "Recipe_Wall_Window_8x4_03_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Silica_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Window_8x4_03_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Window_8x4_04_C": { + "slug": "recipe-wall-window-8x4-04-c", + "name": "Reinforced Window", + "className": "Recipe_Wall_Window_8x4_04_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Silica_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Window_8x4_04_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SteelWall_8x4_Gate_01_C": { + "slug": "recipe-steelwall-8x4-gate-01-c", + "name": "Gate Hole Wall", + "className": "Recipe_SteelWall_8x4_Gate_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_SteelWall_8x4_Gate_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SteelWall_8x4_Window_01_C": { + "slug": "recipe-steelwall-8x4-window-01-c", + "name": "Single Window", + "className": "Recipe_SteelWall_8x4_Window_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Silica_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_SteelWall_8x4_Window_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SteelWall_8x4_Window_02_C": { + "slug": "recipe-steelwall-8x4-window-02-c", + "name": "Reinforced Window", + "className": "Recipe_SteelWall_8x4_Window_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Silica_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_SteelWall_8x4_Window_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SteelWall_8x4_Window_03_C": { + "slug": "recipe-steelwall-8x4-window-03-c", + "name": "Frame Window", + "className": "Recipe_SteelWall_8x4_Window_03_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Silica_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_SteelWall_8x4_Window_03_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SteelWall_8x4_Window_04_C": { + "slug": "recipe-steelwall-8x4-window-04-c", + "name": "Panel Window", + "className": "Recipe_SteelWall_8x4_Window_04_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Silica_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_SteelWall_8x4_Window_04_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Steel_8x4_Corner_01_C": { + "slug": "recipe-wall-steel-8x4-corner-01-c", + "name": "Tilted Corner Wall (4 m)", + "className": "Recipe_Wall_Steel_8x4_Corner_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Steel_8x4_Corner_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Steel_8x4_Corner_2_C": { + "slug": "recipe-wall-steel-8x4-corner-2-c", + "name": "Tilted Concave Wall (4 m)", + "className": "Recipe_Wall_Steel_8x4_Corner_2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Steel_8x4_Corner_2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Steel_8x8_Corner_01_C": { + "slug": "recipe-wall-steel-8x8-corner-01-c", + "name": "Tilted Corner Wall (8 m)", + "className": "Recipe_Wall_Steel_8x8_Corner_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Steel_8x8_Corner_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Steel_8x8_Corner_2_C": { + "slug": "recipe-wall-steel-8x8-corner-2-c", + "name": "Tilted Concave Wall (8 m)", + "className": "Recipe_Wall_Steel_8x8_Corner_2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Steel_8x8_Corner_2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SteelWall_8x1_C": { + "slug": "recipe-steelwall-8x1-c", + "name": "Basic Wall (1 m)", + "className": "Recipe_SteelWall_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_SteelWall_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SteelWall_FlipTris_8x1_C": { + "slug": "recipe-steelwall-fliptris-8x1-c", + "name": "Inverted Ramp Wall (1 m)", + "className": "Recipe_SteelWall_FlipTris_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_SteelWall_FlipTris_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SteelWall_FlipTris_8x2_C": { + "slug": "recipe-steelwall-fliptris-8x2-c", + "name": "Inverted Ramp Wall (2 m)", + "className": "Recipe_SteelWall_FlipTris_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_SteelWall_FlipTris_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SteelWall_FlipTris_8x4_C": { + "slug": "recipe-steelwall-fliptris-8x4-c", + "name": "Inverted Ramp Wall (4 m)", + "className": "Recipe_SteelWall_FlipTris_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_SteelWall_FlipTris_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SteelWall_FlipTris_8x8_C": { + "slug": "recipe-steelwall-fliptris-8x8-c", + "name": "Inverted Ramp Wall (8 m)", + "className": "Recipe_SteelWall_FlipTris_8x8_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_SteelWall_FlipTris_8x8_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SteelWall_Tris_8x1_C": { + "slug": "recipe-steelwall-tris-8x1-c", + "name": "Ramp Wall (1 m)", + "className": "Recipe_SteelWall_Tris_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_SteelWall_Tris_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SteelWall_Tris_8x2_C": { + "slug": "recipe-steelwall-tris-8x2-c", + "name": "Ramp Wall (2 m)", + "className": "Recipe_SteelWall_Tris_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_SteelWall_Tris_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SteelWall_Tris_8x4_C": { + "slug": "recipe-steelwall-tris-8x4-c", + "name": "Ramp Wall (4 m)", + "className": "Recipe_SteelWall_Tris_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_SteelWall_Tris_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SteelWall_Tris_8x8_C": { + "slug": "recipe-steelwall-tris-8x8-c", + "name": "Ramp Wall (8 m)", + "className": "Recipe_SteelWall_Tris_8x8_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_SteelWall_Tris_8x8_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_8x4_02_C": { + "slug": "recipe-wall-8x4-02-c", + "name": "Basic Wall (4 m)", + "className": "Recipe_Wall_8x4_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_8x4_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Conveyor_8x4_01_Steel_C": { + "slug": "recipe-wall-conveyor-8x4-01-steel-c", + "name": "Conveyor Wall x 3", + "className": "Recipe_Wall_Conveyor_8x4_01_Steel_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Conveyor_8x4_01_Steel_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Conveyor_8x4_02_Steel_C": { + "slug": "recipe-wall-conveyor-8x4-02-steel-c", + "name": "Conveyor Wall x 2", + "className": "Recipe_Wall_Conveyor_8x4_02_Steel_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Conveyor_8x4_02_Steel_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Conveyor_8x4_03_Steel_C": { + "slug": "recipe-wall-conveyor-8x4-03-steel-c", + "name": "Conveyor Wall x 1", + "className": "Recipe_Wall_Conveyor_8x4_03_Steel_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Conveyor_8x4_03_Steel_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Door_8x4_01_Steel_C": { + "slug": "recipe-wall-door-8x4-01-steel-c", + "name": "Center Door Wall", + "className": "Recipe_Wall_Door_8x4_01_Steel_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Door_8x4_01_Steel_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Door_8x4_03_Steel_C": { + "slug": "recipe-wall-door-8x4-03-steel-c", + "name": "Side Door Wall", + "className": "Recipe_Wall_Door_8x4_03_Steel_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Door_8x4_03_Steel_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_WallSet_Steel_Angular_8x4_C": { + "slug": "recipe-wallset-steel-angular-8x4-c", + "name": "Tilted Wall (4 m)", + "className": "Recipe_WallSet_Steel_Angular_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_WallSet_Steel_Angular_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_WallSet_Steel_Angular_8x8_C": { + "slug": "recipe-wallset-steel-angular-8x8-c", + "name": "Tilted Wall (8 m)", + "className": "Recipe_WallSet_Steel_Angular_8x8_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_WallSet_Steel_Angular_8x8_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConveyorCeilingAttachment_C": { + "slug": "recipe-conveyorceilingattachment-c", + "name": "Conveyor Ceiling Mount", + "className": "Recipe_ConveyorCeilingAttachment_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 2.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 2.0 + }, + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_ConveyorCeilingAttachment_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConveyorPole_C": { + "slug": "recipe-conveyorpole-c", + "name": "Conveyor Pole", + "className": "Recipe_ConveyorPole_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 1.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 1.0 + }, + { + "item": "Desc_Cement_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_ConveyorPole_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConveyorPoleWall_C": { + "slug": "recipe-conveyorpolewall-c", + "name": "Conveyor Wall Mount", + "className": "Recipe_ConveyorPoleWall_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 2.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 2.0 + }, + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_ConveyorPoleWall_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConveyorBeltMk1_C": { + "slug": "recipe-conveyorbeltmk1-c", + "name": "Conveyor Belt Mk.1", + "className": "Recipe_ConveyorBeltMk1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_ConveyorBeltMk1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PowerLine_C": { + "slug": "recipe-powerline-c", + "name": "Power Line", + "className": "Recipe_PowerLine_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cable_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_PowerLine_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PowerPoleMk1_C": { + "slug": "recipe-powerpolemk1-c", + "name": "Power Pole Mk.1", + "className": "Recipe_PowerPoleMk1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Wire_C", + "amount": 3.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 1.0 + }, + { + "item": "Desc_Cement_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_PowerPoleMk1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PowerPoleWall_C": { + "slug": "recipe-powerpolewall-c", + "name": "Wall Outlet Mk.1", + "className": "Recipe_PowerPoleWall_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Wire_C", + "amount": 4.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_PowerPoleWall_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_TradingPost_C": { + "slug": "recipe-tradingpost-c", + "name": "The HUB", + "className": "Recipe_TradingPost_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_OreIron_C", + "amount": 20.0 + } + ], + "products": [ + { + "item": "Desc_TradingPost_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_WorkBench_C": { + "slug": "recipe-workbench-c", + "name": "Crafting Bench", + "className": "Recipe_WorkBench_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 3.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_WorkBench_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_IronPlate_C": { + "slug": "recipe-ironplate-c", + "name": "Iron Plate", + "className": "Recipe_IronPlate_C", + "alternate": false, + "time": 6.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronIngot_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_IronPlate_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_IronRod_C": { + "slug": "recipe-ironrod-c", + "name": "Iron Rod", + "className": "Recipe_IronRod_C", + "alternate": false, + "time": 4.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 0.5, + "ingredients": [ + { + "item": "Desc_IronIngot_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_IronRod_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_XenoZapper_C": { + "slug": "recipe-xenozapper-c", + "name": "Xeno-Zapper", + "className": "Recipe_XenoZapper_C", + "alternate": false, + "time": 40.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 10.0 + }, + { + "item": "Desc_IronPlateReinforced_C", + "amount": 2.0 + }, + { + "item": "Desc_Cable_C", + "amount": 15.0 + }, + { + "item": "Desc_Wire_C", + "amount": 50.0 + } + ], + "products": [ + { + "item": "BP_EquipmentDescriptorShockShank_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_IngotIron_C": { + "slug": "recipe-ingotiron-c", + "name": "Iron Ingot", + "className": "Recipe_IngotIron_C", + "alternate": false, + "time": 2.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 3.0, + "ingredients": [ + { + "item": "Desc_OreIron_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_IronIngot_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_SmelterMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_RocketFuel_Nitro_C": { + "slug": "recipe-alternate-rocketfuel-nitro-c", + "name": "Alternate: Nitro Rocket Fuel", + "className": "Recipe_Alternate_RocketFuel_Nitro_C", + "alternate": true, + "time": 2.4, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 99.0, + "ingredients": [ + { + "item": "Desc_LiquidFuel_C", + "amount": 4.0 + }, + { + "item": "Desc_NitrogenGas_C", + "amount": 3.0 + }, + { + "item": "Desc_Sulfur_C", + "amount": 4.0 + }, + { + "item": "Desc_Coal_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_RocketFuel_C", + "amount": 6.0 + }, + { + "item": "Desc_CompactedCoal_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_Blender_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_GeneratorCoal_C": { + "slug": "recipe-generatorcoal-c", + "name": "Coal-Powered Generator", + "className": "Recipe_GeneratorCoal_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 20.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 10.0 + }, + { + "item": "Desc_Cable_C", + "amount": 30.0 + } + ], + "products": [ + { + "item": "Desc_GeneratorCoal_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PipeSupport_C": { + "slug": "recipe-pipesupport-c", + "name": "Pipeline Support", + "className": "Recipe_PipeSupport_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 2.0 + }, + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_PipelineSupport_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PipeSupportWall_C": { + "slug": "recipe-pipesupportwall-c", + "name": "Pipeline Wall Support", + "className": "Recipe_PipeSupportWall_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 2.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 1.0 + }, + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_PipelineSupportWall_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Pipeline_C": { + "slug": "recipe-pipeline-c", + "name": "Pipeline Mk.1", + "className": "Recipe_Pipeline_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CopperSheet_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_Pipeline_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PipelineJunction_Cross_C": { + "slug": "recipe-pipelinejunction-cross-c", + "name": "Pipeline Junction", + "className": "Recipe_PipelineJunction_Cross_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CopperSheet_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_PipelineJunction_Cross_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PipelinePump_C": { + "slug": "recipe-pipelinepump-c", + "name": "Pipeline Pump Mk.1", + "className": "Recipe_PipelinePump_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CopperSheet_C", + "amount": 2.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_PipelinePump_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PipeStorageTank_C": { + "slug": "recipe-pipestoragetank-c", + "name": "Fluid Buffer", + "className": "Recipe_PipeStorageTank_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CopperSheet_C", + "amount": 10.0 + }, + { + "item": "Desc_ModularFrame_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_PipeStorageTank_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_WaterPump_C": { + "slug": "recipe-waterpump-c", + "name": "Water Extractor", + "className": "Recipe_WaterPump_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CopperSheet_C", + "amount": 20.0 + }, + { + "item": "Desc_IronPlateReinforced_C", + "amount": 10.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_WaterPump_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ResourceSink_C": { + "slug": "recipe-resourcesink-c", + "name": "AWESOME Sink", + "className": "Recipe_ResourceSink_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 15.0 + }, + { + "item": "Desc_Cable_C", + "amount": 30.0 + }, + { + "item": "Desc_Cement_C", + "amount": 45.0 + } + ], + "products": [ + { + "item": "Desc_ResourceSink_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ResourceSinkShop_C": { + "slug": "recipe-resourcesinkshop-c", + "name": "AWESOME Shop", + "className": "Recipe_ResourceSinkShop_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronScrew_C", + "amount": 200.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 10.0 + }, + { + "item": "Desc_Cable_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_ResourceSinkShop_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RocketFuel_C": { + "slug": "recipe-rocketfuel-c", + "name": "Rocket Fuel", + "className": "Recipe_RocketFuel_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_LiquidTurboFuel_C", + "amount": 6.0 + }, + { + "item": "Desc_NitricAcid_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_RocketFuel_C", + "amount": 10.0 + }, + { + "item": "Desc_CompactedCoal_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_Blender_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PackagedRocketFuel_C": { + "slug": "recipe-packagedrocketfuel-c", + "name": "Packaged Rocket Fuel", + "className": "Recipe_PackagedRocketFuel_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_RocketFuel_C", + "amount": 2.0 + }, + { + "item": "Desc_GasTank_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_PackagedRocketFuel_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_UnpackageRocketFuel_C": { + "slug": "recipe-unpackagerocketfuel-c", + "name": "Unpackage Rocket Fuel", + "className": "Recipe_UnpackageRocketFuel_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_PackagedRocketFuel_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_RocketFuel_C", + "amount": 2.0 + }, + { + "item": "Desc_GasTank_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_IonizedFuel_Dark_C": { + "slug": "recipe-alternate-ionizedfuel-dark-c", + "name": "Alternate: Dark-Ion Fuel", + "className": "Recipe_Alternate_IonizedFuel_Dark_C", + "alternate": true, + "time": 3.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 99.0, + "ingredients": [ + { + "item": "Desc_PackagedRocketFuel_C", + "amount": 12.0 + }, + { + "item": "Desc_DarkMatter_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_IonizedFuel_C", + "amount": 10.0 + }, + { + "item": "Desc_CompactedCoal_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_Converter_C" + ], + "isVariablePower": true, + "minPower": 100, + "maxPower": 400 + }, + "Recipe_QuantumEncoder_C": { + "slug": "recipe-quantumencoder-c", + "name": "Quantum Encoder", + "className": "Recipe_QuantumEncoder_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_MotorLightweight_C", + "amount": 20.0 + }, + { + "item": "Desc_ComputerSuper_C", + "amount": 20.0 + }, + { + "item": "Desc_CoolingSystem_C", + "amount": 50.0 + }, + { + "item": "Desc_TimeCrystal_C", + "amount": 50.0 + }, + { + "item": "Desc_FicsiteMesh_C", + "amount": 100.0 + } + ], + "products": [ + { + "item": "Desc_QuantumEncoder_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_DarkEnergy_C": { + "slug": "recipe-darkenergy-c", + "name": "Dark Matter Residue", + "className": "Recipe_DarkEnergy_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SAMIngot_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_DarkEnergy_C", + "amount": 10.0 + } + ], + "producedIn": [ + "Desc_Converter_C" + ], + "isVariablePower": true, + "minPower": 100, + "maxPower": 400 + }, + "Recipe_QuantumEnergy_C": { + "slug": "recipe-quantumenergy-c", + "name": "Excited Photonic Matter", + "className": "Recipe_QuantumEnergy_C", + "alternate": false, + "time": 3.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 2.0, + "ingredients": [], + "products": [ + { + "item": "Desc_QuantumEnergy_C", + "amount": 10.0 + } + ], + "producedIn": [ + "Desc_Converter_C" + ], + "isVariablePower": true, + "minPower": 100, + "maxPower": 400 + }, + "Recipe_DarkMatter_C": { + "slug": "recipe-darkmatter-c", + "name": "Dark Matter Crystal", + "className": "Recipe_DarkMatter_C", + "alternate": false, + "time": 2.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Diamond_C", + "amount": 1.0 + }, + { + "item": "Desc_DarkEnergy_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_DarkMatter_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_HadronCollider_C" + ], + "isVariablePower": true, + "minPower": 500, + "maxPower": 1500 + }, + "Recipe_SuperpositionOscillator_C": { + "slug": "recipe-superpositionoscillator-c", + "name": "Superposition Oscillator", + "className": "Recipe_SuperpositionOscillator_C", + "alternate": false, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_DarkMatter_C", + "amount": 6.0 + }, + { + "item": "Desc_CrystalOscillator_C", + "amount": 1.0 + }, + { + "item": "Desc_AluminumPlate_C", + "amount": 9.0 + }, + { + "item": "Desc_QuantumEnergy_C", + "amount": 25.0 + } + ], + "products": [ + { + "item": "Desc_QuantumOscillator_C", + "amount": 1.0 + }, + { + "item": "Desc_DarkEnergy_C", + "amount": 25.0 + } + ], + "producedIn": [ + "Desc_QuantumEncoder_C" + ], + "isVariablePower": true, + "minPower": 0, + "maxPower": 2000 + }, + "Recipe_TemporalProcessor_C": { + "slug": "recipe-temporalprocessor-c", + "name": "Neural-Quantum Processor", + "className": "Recipe_TemporalProcessor_C", + "alternate": false, + "time": 20.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_TimeCrystal_C", + "amount": 5.0 + }, + { + "item": "Desc_ComputerSuper_C", + "amount": 1.0 + }, + { + "item": "Desc_FicsiteMesh_C", + "amount": 15.0 + }, + { + "item": "Desc_QuantumEnergy_C", + "amount": 25.0 + } + ], + "products": [ + { + "item": "Desc_TemporalProcessor_C", + "amount": 1.0 + }, + { + "item": "Desc_DarkEnergy_C", + "amount": 25.0 + } + ], + "producedIn": [ + "Desc_QuantumEncoder_C" + ], + "isVariablePower": true, + "minPower": 0, + "maxPower": 2000 + }, + "Recipe_SpaceElevatorPart_12_C": { + "slug": "recipe-spaceelevatorpart-12-c", + "name": "AI Expansion Server", + "className": "Recipe_SpaceElevatorPart_12_C", + "alternate": false, + "time": 15.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SpaceElevatorPart_6_C", + "amount": 1.0 + }, + { + "item": "Desc_TemporalProcessor_C", + "amount": 1.0 + }, + { + "item": "Desc_QuantumOscillator_C", + "amount": 1.0 + }, + { + "item": "Desc_QuantumEnergy_C", + "amount": 25.0 + } + ], + "products": [ + { + "item": "Desc_SpaceElevatorPart_12_C", + "amount": 1.0 + }, + { + "item": "Desc_DarkEnergy_C", + "amount": 25.0 + } + ], + "producedIn": [ + "Desc_QuantumEncoder_C" + ], + "isVariablePower": true, + "minPower": 0, + "maxPower": 2000 + }, + "Recipe_IonizedFuel_C": { + "slug": "recipe-ionizedfuel-c", + "name": "Ionized Fuel", + "className": "Recipe_IonizedFuel_C", + "alternate": false, + "time": 24.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_RocketFuel_C", + "amount": 16.0 + }, + { + "item": "Desc_CrystalShard_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_IonizedFuel_C", + "amount": 16.0 + }, + { + "item": "Desc_CompactedCoal_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PackagedIonizedFuel_C": { + "slug": "recipe-packagedionizedfuel-c", + "name": "Packaged Ionized Fuel", + "className": "Recipe_PackagedIonizedFuel_C", + "alternate": false, + "time": 3.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IonizedFuel_C", + "amount": 4.0 + }, + { + "item": "Desc_GasTank_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_PackagedIonizedFuel_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_UnpackageIonizedFuel_C": { + "slug": "recipe-unpackageionizedfuel-c", + "name": "Unpackage Ionized Fuel", + "className": "Recipe_UnpackageIonizedFuel_C", + "alternate": false, + "time": 3.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_PackagedIonizedFuel_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_IonizedFuel_C", + "amount": 4.0 + }, + { + "item": "Desc_GasTank_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Diamond_Turbo_C": { + "slug": "recipe-alternate-diamond-turbo-c", + "name": "Alternate: Turbo Diamonds", + "className": "Recipe_Alternate_Diamond_Turbo_C", + "alternate": true, + "time": 3.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 99.0, + "ingredients": [ + { + "item": "Desc_Coal_C", + "amount": 30.0 + }, + { + "item": "Desc_TurboFuel_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Diamond_C", + "amount": 3.0 + } + ], + "producedIn": [ + "Desc_HadronCollider_C" + ], + "isVariablePower": true, + "minPower": 250, + "maxPower": 750 + }, + "Recipe_SAMFluctuator_C": { + "slug": "recipe-samfluctuator-c", + "name": "SAM Fluctuator", + "className": "Recipe_SAMFluctuator_C", + "alternate": false, + "time": 6.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SAMIngot_C", + "amount": 6.0 + }, + { + "item": "Desc_Wire_C", + "amount": 5.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_SAMFluctuator_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Converter_C": { + "slug": "recipe-converter-c", + "name": "Converter", + "className": "Recipe_Converter_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrameFused_C", + "amount": 10.0 + }, + { + "item": "Desc_CoolingSystem_C", + "amount": 25.0 + }, + { + "item": "Desc_ModularFrameLightweight_C", + "amount": 50.0 + }, + { + "item": "Desc_SAMFluctuator_C", + "amount": 100.0 + } + ], + "products": [ + { + "item": "Desc_Converter_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_FicsiteMesh_C": { + "slug": "recipe-ficsitemesh-c", + "name": "Ficsite Trigon", + "className": "Recipe_FicsiteMesh_C", + "alternate": false, + "time": 6.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_FicsiteIngot_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_FicsiteMesh_C", + "amount": 3.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_FicsiteIngot_Iron_C": { + "slug": "recipe-ficsiteingot-iron-c", + "name": "Ficsite Ingot (Iron)", + "className": "Recipe_FicsiteIngot_Iron_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SAMIngot_C", + "amount": 4.0 + }, + { + "item": "Desc_IronIngot_C", + "amount": 24.0 + } + ], + "products": [ + { + "item": "Desc_FicsiteIngot_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_Converter_C" + ], + "isVariablePower": true, + "minPower": 100, + "maxPower": 400 + }, + "Recipe_TimeCrystal_C": { + "slug": "recipe-timecrystal-c", + "name": "Time Crystal", + "className": "Recipe_TimeCrystal_C", + "alternate": false, + "time": 10.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Diamond_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_TimeCrystal_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_Converter_C" + ], + "isVariablePower": true, + "minPower": 100, + "maxPower": 400 + }, + "Recipe_Diamond_C": { + "slug": "recipe-diamond-c", + "name": "Diamonds", + "className": "Recipe_Diamond_C", + "alternate": false, + "time": 2.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Coal_C", + "amount": 20.0 + } + ], + "products": [ + { + "item": "Desc_Diamond_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_HadronCollider_C" + ], + "isVariablePower": true, + "minPower": 250, + "maxPower": 750 + }, + "Recipe_IngotSAM_C": { + "slug": "recipe-ingotsam-c", + "name": "Reanimated SAM", + "className": "Recipe_IngotSAM_C", + "alternate": false, + "time": 2.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SAM_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_SAMIngot_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SpaceElevatorPart_10_C": { + "slug": "recipe-spaceelevatorpart-10-c", + "name": "Biochemical Sculptor", + "className": "Recipe_SpaceElevatorPart_10_C", + "alternate": false, + "time": 120.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SpaceElevatorPart_7_C", + "amount": 1.0 + }, + { + "item": "Desc_FicsiteMesh_C", + "amount": 80.0 + }, + { + "item": "Desc_Water_C", + "amount": 20.0 + } + ], + "products": [ + { + "item": "Desc_SpaceElevatorPart_10_C", + "amount": 4.0 + } + ], + "producedIn": [ + "Desc_Blender_C" + ], + "isVariablePower": true, + "minPower": 500, + "maxPower": 1500 + }, + "Recipe_FicsiteIngot_AL_C": { + "slug": "recipe-ficsiteingot-al-c", + "name": "Ficsite Ingot (Aluminum)", + "className": "Recipe_FicsiteIngot_AL_C", + "alternate": false, + "time": 2.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SAMIngot_C", + "amount": 2.0 + }, + { + "item": "Desc_AluminumIngot_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_FicsiteIngot_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_Converter_C" + ], + "isVariablePower": true, + "minPower": 100, + "maxPower": 400 + }, + "Recipe_FicsiteIngot_CAT_C": { + "slug": "recipe-ficsiteingot-cat-c", + "name": "Ficsite Ingot (Caterium)", + "className": "Recipe_FicsiteIngot_CAT_C", + "alternate": false, + "time": 4.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SAMIngot_C", + "amount": 3.0 + }, + { + "item": "Desc_GoldIngot_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_FicsiteIngot_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_Converter_C" + ], + "isVariablePower": true, + "minPower": 100, + "maxPower": 400 + }, + "Recipe_Bauxite_Caterium_C": { + "slug": "recipe-bauxite-caterium-c", + "name": "Bauxite (Caterium)", + "className": "Recipe_Bauxite_Caterium_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SAMIngot_C", + "amount": 1.0 + }, + { + "item": "Desc_OreGold_C", + "amount": 15.0 + } + ], + "products": [ + { + "item": "Desc_OreBauxite_C", + "amount": 12.0 + } + ], + "producedIn": [ + "Desc_Converter_C" + ], + "isVariablePower": true, + "minPower": 100, + "maxPower": 400 + }, + "Recipe_Bauxite_Copper_C": { + "slug": "recipe-bauxite-copper-c", + "name": "Bauxite (Copper)", + "className": "Recipe_Bauxite_Copper_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SAMIngot_C", + "amount": 1.0 + }, + { + "item": "Desc_OreCopper_C", + "amount": 18.0 + } + ], + "products": [ + { + "item": "Desc_OreBauxite_C", + "amount": 12.0 + } + ], + "producedIn": [ + "Desc_Converter_C" + ], + "isVariablePower": true, + "minPower": 100, + "maxPower": 400 + }, + "Recipe_Caterium_Copper_C": { + "slug": "recipe-caterium-copper-c", + "name": "Caterium Ore (Copper)", + "className": "Recipe_Caterium_Copper_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SAMIngot_C", + "amount": 1.0 + }, + { + "item": "Desc_OreCopper_C", + "amount": 15.0 + } + ], + "products": [ + { + "item": "Desc_OreGold_C", + "amount": 12.0 + } + ], + "producedIn": [ + "Desc_Converter_C" + ], + "isVariablePower": true, + "minPower": 100, + "maxPower": 400 + }, + "Recipe_Caterium_Quartz_C": { + "slug": "recipe-caterium-quartz-c", + "name": "Caterium Ore (Quartz)", + "className": "Recipe_Caterium_Quartz_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SAMIngot_C", + "amount": 1.0 + }, + { + "item": "Desc_RawQuartz_C", + "amount": 12.0 + } + ], + "products": [ + { + "item": "Desc_OreGold_C", + "amount": 12.0 + } + ], + "producedIn": [ + "Desc_Converter_C" + ], + "isVariablePower": true, + "minPower": 100, + "maxPower": 400 + }, + "Recipe_Coal_Iron_C": { + "slug": "recipe-coal-iron-c", + "name": "Coal (Iron)", + "className": "Recipe_Coal_Iron_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SAMIngot_C", + "amount": 1.0 + }, + { + "item": "Desc_OreIron_C", + "amount": 18.0 + } + ], + "products": [ + { + "item": "Desc_Coal_C", + "amount": 12.0 + } + ], + "producedIn": [ + "Desc_Converter_C" + ], + "isVariablePower": true, + "minPower": 100, + "maxPower": 400 + }, + "Recipe_Coal_Limestone_C": { + "slug": "recipe-coal-limestone-c", + "name": "Coal (Limestone)", + "className": "Recipe_Coal_Limestone_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SAMIngot_C", + "amount": 1.0 + }, + { + "item": "Desc_Stone_C", + "amount": 36.0 + } + ], + "products": [ + { + "item": "Desc_Coal_C", + "amount": 12.0 + } + ], + "producedIn": [ + "Desc_Converter_C" + ], + "isVariablePower": true, + "minPower": 100, + "maxPower": 400 + }, + "Recipe_Copper_Quartz_C": { + "slug": "recipe-copper-quartz-c", + "name": "Copper Ore (Quartz)", + "className": "Recipe_Copper_Quartz_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SAMIngot_C", + "amount": 1.0 + }, + { + "item": "Desc_RawQuartz_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_OreCopper_C", + "amount": 12.0 + } + ], + "producedIn": [ + "Desc_Converter_C" + ], + "isVariablePower": true, + "minPower": 100, + "maxPower": 400 + }, + "Recipe_Copper_Sulfur_C": { + "slug": "recipe-copper-sulfur-c", + "name": "Copper Ore (Sulfur)", + "className": "Recipe_Copper_Sulfur_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SAMIngot_C", + "amount": 1.0 + }, + { + "item": "Desc_Sulfur_C", + "amount": 12.0 + } + ], + "products": [ + { + "item": "Desc_OreCopper_C", + "amount": 12.0 + } + ], + "producedIn": [ + "Desc_Converter_C" + ], + "isVariablePower": true, + "minPower": 100, + "maxPower": 400 + }, + "Recipe_Iron_Limestone_C": { + "slug": "recipe-iron-limestone-c", + "name": "Iron Ore (Limestone)", + "className": "Recipe_Iron_Limestone_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SAMIngot_C", + "amount": 1.0 + }, + { + "item": "Desc_Stone_C", + "amount": 24.0 + } + ], + "products": [ + { + "item": "Desc_OreIron_C", + "amount": 12.0 + } + ], + "producedIn": [ + "Desc_Converter_C" + ], + "isVariablePower": true, + "minPower": 100, + "maxPower": 400 + }, + "Recipe_Limestone_Sulfur_C": { + "slug": "recipe-limestone-sulfur-c", + "name": "Limestone (Sulfur)", + "className": "Recipe_Limestone_Sulfur_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SAMIngot_C", + "amount": 1.0 + }, + { + "item": "Desc_Sulfur_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Stone_C", + "amount": 12.0 + } + ], + "producedIn": [ + "Desc_Converter_C" + ], + "isVariablePower": true, + "minPower": 100, + "maxPower": 400 + }, + "Recipe_Nitrogen_Bauxite_C": { + "slug": "recipe-nitrogen-bauxite-c", + "name": "Nitrogen Gas (Bauxite)", + "className": "Recipe_Nitrogen_Bauxite_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SAMIngot_C", + "amount": 1.0 + }, + { + "item": "Desc_OreBauxite_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_NitrogenGas_C", + "amount": 12.0 + } + ], + "producedIn": [ + "Desc_Converter_C" + ], + "isVariablePower": true, + "minPower": 100, + "maxPower": 400 + }, + "Recipe_Nitrogen_Caterium_C": { + "slug": "recipe-nitrogen-caterium-c", + "name": "Nitrogen Gas (Caterium)", + "className": "Recipe_Nitrogen_Caterium_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SAMIngot_C", + "amount": 1.0 + }, + { + "item": "Desc_OreGold_C", + "amount": 12.0 + } + ], + "products": [ + { + "item": "Desc_NitrogenGas_C", + "amount": 12.0 + } + ], + "producedIn": [ + "Desc_Converter_C" + ], + "isVariablePower": true, + "minPower": 100, + "maxPower": 400 + }, + "Recipe_Quartz_Bauxite_C": { + "slug": "recipe-quartz-bauxite-c", + "name": "Raw Quartz (Bauxite)", + "className": "Recipe_Quartz_Bauxite_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SAMIngot_C", + "amount": 1.0 + }, + { + "item": "Desc_OreBauxite_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_RawQuartz_C", + "amount": 12.0 + } + ], + "producedIn": [ + "Desc_Converter_C" + ], + "isVariablePower": true, + "minPower": 100, + "maxPower": 400 + }, + "Recipe_Quartz_Coal_C": { + "slug": "recipe-quartz-coal-c", + "name": "Raw Quartz (Coal)", + "className": "Recipe_Quartz_Coal_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SAMIngot_C", + "amount": 1.0 + }, + { + "item": "Desc_Coal_C", + "amount": 24.0 + } + ], + "products": [ + { + "item": "Desc_RawQuartz_C", + "amount": 12.0 + } + ], + "producedIn": [ + "Desc_Converter_C" + ], + "isVariablePower": true, + "minPower": 100, + "maxPower": 400 + }, + "Recipe_Sulfur_Coal_C": { + "slug": "recipe-sulfur-coal-c", + "name": "Sulfur (Coal)", + "className": "Recipe_Sulfur_Coal_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SAMIngot_C", + "amount": 1.0 + }, + { + "item": "Desc_Coal_C", + "amount": 20.0 + } + ], + "products": [ + { + "item": "Desc_Sulfur_C", + "amount": 12.0 + } + ], + "producedIn": [ + "Desc_Converter_C" + ], + "isVariablePower": true, + "minPower": 100, + "maxPower": 400 + }, + "Recipe_Sulfur_Iron_C": { + "slug": "recipe-sulfur-iron-c", + "name": "Sulfur (Iron)", + "className": "Recipe_Sulfur_Iron_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SAMIngot_C", + "amount": 1.0 + }, + { + "item": "Desc_OreIron_C", + "amount": 30.0 + } + ], + "products": [ + { + "item": "Desc_Sulfur_C", + "amount": 12.0 + } + ], + "producedIn": [ + "Desc_Converter_C" + ], + "isVariablePower": true, + "minPower": 100, + "maxPower": 400 + }, + "Recipe_Uranium_Bauxite_C": { + "slug": "recipe-uranium-bauxite-c", + "name": "Uranium Ore (Bauxite)", + "className": "Recipe_Uranium_Bauxite_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SAMIngot_C", + "amount": 1.0 + }, + { + "item": "Desc_OreBauxite_C", + "amount": 48.0 + } + ], + "products": [ + { + "item": "Desc_OreUranium_C", + "amount": 12.0 + } + ], + "producedIn": [ + "Desc_Converter_C" + ], + "isVariablePower": true, + "minPower": 100, + "maxPower": 400 + }, + "Recipe_Alternate_Turbofuel_C": { + "slug": "recipe-alternate-turbofuel-c", + "name": "Turbofuel", + "className": "Recipe_Alternate_Turbofuel_C", + "alternate": true, + "time": 16.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_LiquidFuel_C", + "amount": 6.0 + }, + { + "item": "Desc_CompactedCoal_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_LiquidTurboFuel_C", + "amount": 5.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PackagedTurboFuel_C": { + "slug": "recipe-packagedturbofuel-c", + "name": "Packaged Turbofuel", + "className": "Recipe_PackagedTurboFuel_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_LiquidTurboFuel_C", + "amount": 2.0 + }, + { + "item": "Desc_FluidCanister_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_TurboFuel_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_UnpackageTurboFuel_C": { + "slug": "recipe-unpackageturbofuel-c", + "name": "Unpackage Turbofuel", + "className": "Recipe_UnpackageTurboFuel_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_TurboFuel_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_LiquidTurboFuel_C", + "amount": 2.0 + }, + { + "item": "Desc_FluidCanister_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Coal_1_C": { + "slug": "recipe-alternate-coal-1-c", + "name": "Alternate: Charcoal", + "className": "Recipe_Alternate_Coal_1_C", + "alternate": true, + "time": 4.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Wood_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_Coal_C", + "amount": 10.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Coal_2_C": { + "slug": "recipe-alternate-coal-2-c", + "name": "Alternate: Biocoal", + "className": "Recipe_Alternate_Coal_2_C", + "alternate": true, + "time": 8.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_GenericBiomass_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Coal_C", + "amount": 6.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_EnrichedCoal_C": { + "slug": "recipe-alternate-enrichedcoal-c", + "name": "Alternate: Compacted Coal", + "className": "Recipe_Alternate_EnrichedCoal_C", + "alternate": true, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Coal_C", + "amount": 5.0 + }, + { + "item": "Desc_Sulfur_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_CompactedCoal_C", + "amount": 5.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_CircuitBoard_C": { + "slug": "recipe-circuitboard-c", + "name": "Circuit Board", + "className": "Recipe_CircuitBoard_C", + "alternate": false, + "time": 8.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.5, + "ingredients": [ + { + "item": "Desc_CopperSheet_C", + "amount": 2.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_CircuitBoard_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_OilPump_C": { + "slug": "recipe-oilpump-c", + "name": "Oil Extractor", + "className": "Recipe_OilPump_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Motor_C", + "amount": 15.0 + }, + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 20.0 + }, + { + "item": "Desc_Cable_C", + "amount": 60.0 + } + ], + "products": [ + { + "item": "Desc_OilPump_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_OilRefinery_C": { + "slug": "recipe-oilrefinery-c", + "name": "Refinery", + "className": "Recipe_OilRefinery_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Motor_C", + "amount": 10.0 + }, + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 10.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 30.0 + }, + { + "item": "Desc_CopperSheet_C", + "amount": 20.0 + } + ], + "products": [ + { + "item": "Desc_OilRefinery_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Valve_C": { + "slug": "recipe-valve-c", + "name": "Valve", + "className": "Recipe_Valve_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Rubber_C", + "amount": 4.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_Valve_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_LiquidFuel_C": { + "slug": "recipe-liquidfuel-c", + "name": "Fuel", + "className": "Recipe_LiquidFuel_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_LiquidOil_C", + "amount": 6.0 + } + ], + "products": [ + { + "item": "Desc_LiquidFuel_C", + "amount": 4.0 + }, + { + "item": "Desc_PolymerResin_C", + "amount": 3.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PetroleumCoke_C": { + "slug": "recipe-petroleumcoke-c", + "name": "Petroleum Coke", + "className": "Recipe_PetroleumCoke_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HeavyOilResidue_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_PetroleumCoke_C", + "amount": 12.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Plastic_C": { + "slug": "recipe-plastic-c", + "name": "Plastic", + "className": "Recipe_Plastic_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_LiquidOil_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Plastic_C", + "amount": 2.0 + }, + { + "item": "Desc_HeavyOilResidue_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Rubber_C": { + "slug": "recipe-rubber-c", + "name": "Rubber", + "className": "Recipe_Rubber_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_LiquidOil_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Rubber_C", + "amount": 2.0 + }, + { + "item": "Desc_HeavyOilResidue_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ResidualFuel_C": { + "slug": "recipe-residualfuel-c", + "name": "Residual Fuel", + "className": "Recipe_ResidualFuel_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HeavyOilResidue_C", + "amount": 6.0 + } + ], + "products": [ + { + "item": "Desc_LiquidFuel_C", + "amount": 4.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ResidualPlastic_C": { + "slug": "recipe-residualplastic-c", + "name": "Residual Plastic", + "className": "Recipe_ResidualPlastic_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_PolymerResin_C", + "amount": 6.0 + }, + { + "item": "Desc_Water_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Plastic_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ResidualRubber_C": { + "slug": "recipe-residualrubber-c", + "name": "Residual Rubber", + "className": "Recipe_ResidualRubber_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_PolymerResin_C", + "amount": 4.0 + }, + { + "item": "Desc_Water_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_Rubber_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Diamond_Pink_C": { + "slug": "recipe-alternate-diamond-pink-c", + "name": "Alternate: Pink Diamonds", + "className": "Recipe_Alternate_Diamond_Pink_C", + "alternate": true, + "time": 4.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 99.0, + "ingredients": [ + { + "item": "Desc_Coal_C", + "amount": 8.0 + }, + { + "item": "Desc_QuartzCrystal_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Diamond_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_Converter_C" + ], + "isVariablePower": true, + "minPower": 100, + "maxPower": 400 + }, + "Recipe_Alternate_Diamond_Petroleum_C": { + "slug": "recipe-alternate-diamond-petroleum-c", + "name": "Alternate: Petroleum Diamonds", + "className": "Recipe_Alternate_Diamond_Petroleum_C", + "alternate": true, + "time": 2.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 99.0, + "ingredients": [ + { + "item": "Desc_PetroleumCoke_C", + "amount": 24.0 + } + ], + "products": [ + { + "item": "Desc_Diamond_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_HadronCollider_C" + ], + "isVariablePower": true, + "minPower": 250, + "maxPower": 750 + }, + "Recipe_Alternate_Diamond_OilBased_C": { + "slug": "recipe-alternate-diamond-oilbased-c", + "name": "Alternate: Oil-Based Diamonds", + "className": "Recipe_Alternate_Diamond_OilBased_C", + "alternate": true, + "time": 3.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 99.0, + "ingredients": [ + { + "item": "Desc_LiquidOil_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_Diamond_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_HadronCollider_C" + ], + "isVariablePower": true, + "minPower": 250, + "maxPower": 750 + }, + "Recipe_Alternate_Diamond_Cloudy_C": { + "slug": "recipe-alternate-diamond-cloudy-c", + "name": "Alternate: Cloudy Diamonds", + "className": "Recipe_Alternate_Diamond_Cloudy_C", + "alternate": true, + "time": 3.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 99.0, + "ingredients": [ + { + "item": "Desc_Coal_C", + "amount": 12.0 + }, + { + "item": "Desc_Stone_C", + "amount": 24.0 + } + ], + "products": [ + { + "item": "Desc_Diamond_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_HadronCollider_C" + ], + "isVariablePower": true, + "minPower": 250, + "maxPower": 750 + }, + "Recipe_Alternate_DarkMatter_Trap_C": { + "slug": "recipe-alternate-darkmatter-trap-c", + "name": "Alternate: Dark Matter Trap", + "className": "Recipe_Alternate_DarkMatter_Trap_C", + "alternate": true, + "time": 2.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 99.0, + "ingredients": [ + { + "item": "Desc_TimeCrystal_C", + "amount": 1.0 + }, + { + "item": "Desc_DarkEnergy_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_DarkMatter_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_HadronCollider_C" + ], + "isVariablePower": true, + "minPower": 500, + "maxPower": 1500 + }, + "Recipe_Alternate_DarkMatter_Crystallization_C": { + "slug": "recipe-alternate-darkmatter-crystallization-c", + "name": "Alternate: Dark Matter Crystallization", + "className": "Recipe_Alternate_DarkMatter_Crystallization_C", + "alternate": true, + "time": 3.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 99.0, + "ingredients": [ + { + "item": "Desc_DarkEnergy_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_DarkMatter_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_HadronCollider_C" + ], + "isVariablePower": true, + "minPower": 500, + "maxPower": 1500 + }, + "Recipe_Alternate_WetConcrete_C": { + "slug": "recipe-alternate-wetconcrete-c", + "name": "Alternate: Wet Concrete", + "className": "Recipe_Alternate_WetConcrete_C", + "alternate": true, + "time": 3.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Stone_C", + "amount": 6.0 + }, + { + "item": "Desc_Water_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Cement_C", + "amount": 4.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_TurboHeavyFuel_C": { + "slug": "recipe-alternate-turboheavyfuel-c", + "name": "Alternate: Turbo Heavy Fuel", + "className": "Recipe_Alternate_TurboHeavyFuel_C", + "alternate": true, + "time": 8.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HeavyOilResidue_C", + "amount": 5.0 + }, + { + "item": "Desc_CompactedCoal_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_LiquidTurboFuel_C", + "amount": 4.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_SteelRod_C": { + "slug": "recipe-alternate-steelrod-c", + "name": "Alternate: Steel Rod", + "className": "Recipe_Alternate_SteelRod_C", + "alternate": true, + "time": 5.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelIngot_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_IronRod_C", + "amount": 4.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SmelterMk1_C": { + "slug": "recipe-smeltermk1-c", + "name": "Foundry", + "className": "Recipe_SmelterMk1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrame_C", + "amount": 10.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 10.0 + }, + { + "item": "Desc_Cement_C", + "amount": 20.0 + } + ], + "products": [ + { + "item": "Desc_FoundryMk1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SteelBeam_C": { + "slug": "recipe-steelbeam-c", + "name": "Steel Beam", + "className": "Recipe_SteelBeam_C", + "alternate": false, + "time": 4.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelIngot_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_SteelPlate_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SteelPipe_C": { + "slug": "recipe-steelpipe-c", + "name": "Steel Pipe", + "className": "Recipe_SteelPipe_C", + "alternate": false, + "time": 6.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelIngot_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_SteelPipe_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_IngotSteel_C": { + "slug": "recipe-ingotsteel-c", + "name": "Steel Ingot", + "className": "Recipe_IngotSteel_C", + "alternate": false, + "time": 4.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 3.0, + "ingredients": [ + { + "item": "Desc_OreIron_C", + "amount": 3.0 + }, + { + "item": "Desc_Coal_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_SteelIngot_C", + "amount": 3.0 + } + ], + "producedIn": [ + "Desc_FoundryMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SpaceElevatorPart_2_C": { + "slug": "recipe-spaceelevatorpart-2-c", + "name": "Versatile Framework", + "className": "Recipe_SpaceElevatorPart_2_C", + "alternate": false, + "time": 24.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrame_C", + "amount": 1.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 12.0 + } + ], + "products": [ + { + "item": "Desc_SpaceElevatorPart_2_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_SteelCanister_C": { + "slug": "recipe-alternate-steelcanister-c", + "name": "Alternate: Steel Canister", + "className": "Recipe_Alternate_SteelCanister_C", + "alternate": true, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelIngot_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_FluidCanister_C", + "amount": 4.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Packager_C": { + "slug": "recipe-packager-c", + "name": "Packager", + "className": "Recipe_Packager_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlate_C", + "amount": 20.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 10.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_Packager_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_FluidCanister_C": { + "slug": "recipe-fluidcanister-c", + "name": "Empty Canister", + "className": "Recipe_FluidCanister_C", + "alternate": false, + "time": 4.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Plastic_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_FluidCanister_C", + "amount": 4.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Fuel_C": { + "slug": "recipe-fuel-c", + "name": "Packaged Fuel", + "className": "Recipe_Fuel_C", + "alternate": false, + "time": 3.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_LiquidFuel_C", + "amount": 2.0 + }, + { + "item": "Desc_FluidCanister_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Fuel_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_LiquidBiofuel_C": { + "slug": "recipe-liquidbiofuel-c", + "name": "Liquid Biofuel", + "className": "Recipe_LiquidBiofuel_C", + "alternate": false, + "time": 4.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Biofuel_C", + "amount": 6.0 + }, + { + "item": "Desc_Water_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_LiquidBiofuel_C", + "amount": 4.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PackagedBiofuel_C": { + "slug": "recipe-packagedbiofuel-c", + "name": "Packaged Liquid Biofuel", + "className": "Recipe_PackagedBiofuel_C", + "alternate": false, + "time": 3.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_LiquidBiofuel_C", + "amount": 2.0 + }, + { + "item": "Desc_FluidCanister_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_PackagedBiofuel_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PackagedCrudeOil_C": { + "slug": "recipe-packagedcrudeoil-c", + "name": "Packaged Oil", + "className": "Recipe_PackagedCrudeOil_C", + "alternate": false, + "time": 4.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_LiquidOil_C", + "amount": 2.0 + }, + { + "item": "Desc_FluidCanister_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_PackagedOil_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PackagedOilResidue_C": { + "slug": "recipe-packagedoilresidue-c", + "name": "Packaged Heavy Oil Residue", + "className": "Recipe_PackagedOilResidue_C", + "alternate": false, + "time": 4.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HeavyOilResidue_C", + "amount": 2.0 + }, + { + "item": "Desc_FluidCanister_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_PackagedOilResidue_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PackagedWater_C": { + "slug": "recipe-packagedwater-c", + "name": "Packaged Water", + "className": "Recipe_PackagedWater_C", + "alternate": false, + "time": 2.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Water_C", + "amount": 2.0 + }, + { + "item": "Desc_FluidCanister_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_PackagedWater_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_UnpackageBioFuel_C": { + "slug": "recipe-unpackagebiofuel-c", + "name": "Unpackage Liquid Biofuel", + "className": "Recipe_UnpackageBioFuel_C", + "alternate": false, + "time": 2.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_PackagedBiofuel_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_LiquidBiofuel_C", + "amount": 2.0 + }, + { + "item": "Desc_FluidCanister_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_UnpackageFuel_C": { + "slug": "recipe-unpackagefuel-c", + "name": "Unpackage Fuel", + "className": "Recipe_UnpackageFuel_C", + "alternate": false, + "time": 2.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Fuel_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_LiquidFuel_C", + "amount": 2.0 + }, + { + "item": "Desc_FluidCanister_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_UnpackageOil_C": { + "slug": "recipe-unpackageoil-c", + "name": "Unpackage Oil", + "className": "Recipe_UnpackageOil_C", + "alternate": false, + "time": 2.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_PackagedOil_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_LiquidOil_C", + "amount": 2.0 + }, + { + "item": "Desc_FluidCanister_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_UnpackageOilResidue_C": { + "slug": "recipe-unpackageoilresidue-c", + "name": "Unpackage Heavy Oil Residue", + "className": "Recipe_UnpackageOilResidue_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_PackagedOilResidue_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_HeavyOilResidue_C", + "amount": 2.0 + }, + { + "item": "Desc_FluidCanister_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_UnpackageWater_C": { + "slug": "recipe-unpackagewater-c", + "name": "Unpackage Water", + "className": "Recipe_UnpackageWater_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_PackagedWater_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Water_C", + "amount": 2.0 + }, + { + "item": "Desc_FluidCanister_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_SteamedCopperSheet_C": { + "slug": "recipe-alternate-steamedcoppersheet-c", + "name": "Alternate: Steamed Copper Sheet", + "className": "Recipe_Alternate_SteamedCopperSheet_C", + "alternate": true, + "time": 8.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CopperIngot_C", + "amount": 3.0 + }, + { + "item": "Desc_Water_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_CopperSheet_C", + "amount": 3.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_RubberConcrete_C": { + "slug": "recipe-alternate-rubberconcrete-c", + "name": "Alternate: Rubber Concrete", + "className": "Recipe_Alternate_RubberConcrete_C", + "alternate": true, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Stone_C", + "amount": 10.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Cement_C", + "amount": 9.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_RecycledRubber_C": { + "slug": "recipe-alternate-recycledrubber-c", + "name": "Alternate: Recycled Rubber", + "className": "Recipe_Alternate_RecycledRubber_C", + "alternate": true, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Plastic_C", + "amount": 6.0 + }, + { + "item": "Desc_LiquidFuel_C", + "amount": 6.0 + } + ], + "products": [ + { + "item": "Desc_Rubber_C", + "amount": 12.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_PureQuartzCrystal_C": { + "slug": "recipe-alternate-purequartzcrystal-c", + "name": "Alternate: Pure Quartz Crystal", + "className": "Recipe_Alternate_PureQuartzCrystal_C", + "alternate": true, + "time": 8.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_RawQuartz_C", + "amount": 9.0 + }, + { + "item": "Desc_Water_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuartzCrystal_C", + "amount": 7.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuartzCrystal_C": { + "slug": "recipe-quartzcrystal-c", + "name": "Quartz Crystal", + "className": "Recipe_QuartzCrystal_C", + "alternate": false, + "time": 8.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 2.0, + "ingredients": [ + { + "item": "Desc_RawQuartz_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuartzCrystal_C", + "amount": 3.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_PureIronIngot_C": { + "slug": "recipe-alternate-pureironingot-c", + "name": "Alternate: Pure Iron Ingot", + "className": "Recipe_Alternate_PureIronIngot_C", + "alternate": true, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_OreIron_C", + "amount": 7.0 + }, + { + "item": "Desc_Water_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_IronIngot_C", + "amount": 13.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_PureCopperIngot_C": { + "slug": "recipe-alternate-purecopperingot-c", + "name": "Alternate: Pure Copper Ingot", + "className": "Recipe_Alternate_PureCopperIngot_C", + "alternate": true, + "time": 24.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_OreCopper_C", + "amount": 6.0 + }, + { + "item": "Desc_Water_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_CopperIngot_C", + "amount": 15.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_PureCateriumIngot_C": { + "slug": "recipe-alternate-purecateriumingot-c", + "name": "Alternate: Pure Caterium Ingot", + "className": "Recipe_Alternate_PureCateriumIngot_C", + "alternate": true, + "time": 5.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_OreGold_C", + "amount": 2.0 + }, + { + "item": "Desc_Water_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_GoldIngot_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PureAluminumIngot_C": { + "slug": "recipe-purealuminumingot-c", + "name": "Alternate: Pure Aluminum Ingot", + "className": "Recipe_PureAluminumIngot_C", + "alternate": true, + "time": 2.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_AluminumScrap_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_AluminumIngot_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_SmelterMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_AluminumCasing_C": { + "slug": "recipe-aluminumcasing-c", + "name": "Aluminum Casing", + "className": "Recipe_AluminumCasing_C", + "alternate": false, + "time": 2.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 2.0, + "ingredients": [ + { + "item": "Desc_AluminumIngot_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_AluminumCasing_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_AluminumSheet_C": { + "slug": "recipe-aluminumsheet-c", + "name": "Alclad Aluminum Sheet", + "className": "Recipe_AluminumSheet_C", + "alternate": false, + "time": 6.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 2.0, + "ingredients": [ + { + "item": "Desc_AluminumIngot_C", + "amount": 3.0 + }, + { + "item": "Desc_CopperIngot_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_AluminumPlate_C", + "amount": 3.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_AluminaSolution_C": { + "slug": "recipe-aluminasolution-c", + "name": "Alumina Solution", + "className": "Recipe_AluminaSolution_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_OreBauxite_C", + "amount": 12.0 + }, + { + "item": "Desc_Water_C", + "amount": 18.0 + } + ], + "products": [ + { + "item": "Desc_AluminaSolution_C", + "amount": 12.0 + }, + { + "item": "Desc_Silica_C", + "amount": 5.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_AluminumScrap_C": { + "slug": "recipe-aluminumscrap-c", + "name": "Aluminum Scrap", + "className": "Recipe_AluminumScrap_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_AluminaSolution_C", + "amount": 4.0 + }, + { + "item": "Desc_Coal_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_AluminumScrap_C", + "amount": 6.0 + }, + { + "item": "Desc_Water_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PackagedAlumina_C": { + "slug": "recipe-packagedalumina-c", + "name": "Packaged Alumina Solution", + "className": "Recipe_PackagedAlumina_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_AluminaSolution_C", + "amount": 2.0 + }, + { + "item": "Desc_FluidCanister_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_PackagedAlumina_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_IngotAluminum_C": { + "slug": "recipe-ingotaluminum-c", + "name": "Aluminum Ingot", + "className": "Recipe_IngotAluminum_C", + "alternate": false, + "time": 4.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 3.0, + "ingredients": [ + { + "item": "Desc_AluminumScrap_C", + "amount": 6.0 + }, + { + "item": "Desc_Silica_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_AluminumIngot_C", + "amount": 4.0 + } + ], + "producedIn": [ + "Desc_FoundryMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Silica_C": { + "slug": "recipe-silica-c", + "name": "Silica", + "className": "Recipe_Silica_C", + "alternate": false, + "time": 8.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 2.0, + "ingredients": [ + { + "item": "Desc_RawQuartz_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Silica_C", + "amount": 5.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_CrystalOscillator_C": { + "slug": "recipe-crystaloscillator-c", + "name": "Crystal Oscillator", + "className": "Recipe_CrystalOscillator_C", + "alternate": false, + "time": 120.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 0.3, + "ingredients": [ + { + "item": "Desc_QuartzCrystal_C", + "amount": 36.0 + }, + { + "item": "Desc_Cable_C", + "amount": 28.0 + }, + { + "item": "Desc_IronPlateReinforced_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_CrystalOscillator_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_UnpackageAlumina_C": { + "slug": "recipe-unpackagealumina-c", + "name": "Unpackage Alumina Solution", + "className": "Recipe_UnpackageAlumina_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_PackagedAlumina_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_AluminaSolution_C", + "amount": 2.0 + }, + { + "item": "Desc_FluidCanister_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_PolymerResin_C": { + "slug": "recipe-alternate-polymerresin-c", + "name": "Alternate: Polymer Resin", + "className": "Recipe_Alternate_PolymerResin_C", + "alternate": true, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_LiquidOil_C", + "amount": 6.0 + } + ], + "products": [ + { + "item": "Desc_PolymerResin_C", + "amount": 13.0 + }, + { + "item": "Desc_HeavyOilResidue_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_PlasticSmartPlating_C": { + "slug": "recipe-alternate-plasticsmartplating-c", + "name": "Alternate: Plastic Smart Plating", + "className": "Recipe_Alternate_PlasticSmartPlating_C", + "alternate": true, + "time": 24.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 1.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 1.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_SpaceElevatorPart_1_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_HighSpeedWiring_C": { + "slug": "recipe-alternate-highspeedwiring-c", + "name": "Alternate: Automated Speed Wiring", + "className": "Recipe_Alternate_HighSpeedWiring_C", + "alternate": true, + "time": 32.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Stator_C", + "amount": 2.0 + }, + { + "item": "Desc_Wire_C", + "amount": 40.0 + }, + { + "item": "Desc_HighSpeedConnector_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_SpaceElevatorPart_3_C", + "amount": 4.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_EncasedIndustrialBeam_C": { + "slug": "recipe-encasedindustrialbeam-c", + "name": "Encased Industrial Beam", + "className": "Recipe_EncasedIndustrialBeam_C", + "alternate": false, + "time": 10.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlate_C", + "amount": 3.0 + }, + { + "item": "Desc_Cement_C", + "amount": 6.0 + } + ], + "products": [ + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Motor_C": { + "slug": "recipe-motor-c", + "name": "Motor", + "className": "Recipe_Motor_C", + "alternate": false, + "time": 12.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 2.0, + "ingredients": [ + { + "item": "Desc_Rotor_C", + "amount": 2.0 + }, + { + "item": "Desc_Stator_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Motor_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Stator_C": { + "slug": "recipe-stator-c", + "name": "Stator", + "className": "Recipe_Stator_C", + "alternate": false, + "time": 12.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.5, + "ingredients": [ + { + "item": "Desc_SteelPipe_C", + "amount": 3.0 + }, + { + "item": "Desc_Wire_C", + "amount": 8.0 + } + ], + "products": [ + { + "item": "Desc_Stator_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_MinerMk2_C": { + "slug": "recipe-minermk2-c", + "name": "Miner Mk.2", + "className": "Recipe_MinerMk2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "BP_ItemDescriptorPortableMiner_C", + "amount": 2.0 + }, + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 10.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 20.0 + }, + { + "item": "Desc_ModularFrame_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_MinerMk2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SpaceElevatorPart_3_C": { + "slug": "recipe-spaceelevatorpart-3-c", + "name": "Automated Wiring", + "className": "Recipe_SpaceElevatorPart_3_C", + "alternate": false, + "time": 24.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Stator_C", + "amount": 1.0 + }, + { + "item": "Desc_Cable_C", + "amount": 20.0 + } + ], + "products": [ + { + "item": "Desc_SpaceElevatorPart_3_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_AILimiter_C": { + "slug": "recipe-ailimiter-c", + "name": "AI Limiter", + "className": "Recipe_AILimiter_C", + "alternate": false, + "time": 12.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CopperSheet_C", + "amount": 5.0 + }, + { + "item": "Desc_HighSpeedWire_C", + "amount": 20.0 + } + ], + "products": [ + { + "item": "Desc_CircuitBoardHighSpeed_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_HeavyOilResidue_C": { + "slug": "recipe-alternate-heavyoilresidue-c", + "name": "Alternate: Heavy Oil Residue", + "className": "Recipe_Alternate_HeavyOilResidue_C", + "alternate": true, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_LiquidOil_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_HeavyOilResidue_C", + "amount": 4.0 + }, + { + "item": "Desc_PolymerResin_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_HeavyFlexibleFrame_C": { + "slug": "recipe-alternate-heavyflexibleframe-c", + "name": "Alternate: Heavy Flexible Frame", + "className": "Recipe_Alternate_HeavyFlexibleFrame_C", + "alternate": true, + "time": 16.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrame_C", + "amount": 5.0 + }, + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 3.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 20.0 + }, + { + "item": "Desc_IronScrew_C", + "amount": 104.0 + } + ], + "products": [ + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ManufacturerMk1_C": { + "slug": "recipe-manufacturermk1-c", + "name": "Manufacturer", + "className": "Recipe_ManufacturerMk1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Motor_C", + "amount": 10.0 + }, + { + "item": "Desc_ModularFrame_C", + "amount": 20.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 50.0 + }, + { + "item": "Desc_Cable_C", + "amount": 50.0 + } + ], + "products": [ + { + "item": "Desc_ManufacturerMk1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Computer_C": { + "slug": "recipe-computer-c", + "name": "Computer", + "className": "Recipe_Computer_C", + "alternate": false, + "time": 24.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.5, + "ingredients": [ + { + "item": "Desc_CircuitBoard_C", + "amount": 4.0 + }, + { + "item": "Desc_Cable_C", + "amount": 8.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 16.0 + } + ], + "products": [ + { + "item": "Desc_Computer_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ModularFrameHeavy_C": { + "slug": "recipe-modularframeheavy-c", + "name": "Heavy Modular Frame", + "className": "Recipe_ModularFrameHeavy_C", + "alternate": false, + "time": 30.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 0.6, + "ingredients": [ + { + "item": "Desc_ModularFrame_C", + "amount": 5.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 20.0 + }, + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 5.0 + }, + { + "item": "Desc_IronScrew_C", + "amount": 120.0 + } + ], + "products": [ + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SpaceElevatorPart_4_C": { + "slug": "recipe-spaceelevatorpart-4-c", + "name": "Modular Engine", + "className": "Recipe_SpaceElevatorPart_4_C", + "alternate": false, + "time": 60.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Motor_C", + "amount": 2.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 15.0 + }, + { + "item": "Desc_SpaceElevatorPart_1_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_SpaceElevatorPart_4_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SpaceElevatorPart_5_C": { + "slug": "recipe-spaceelevatorpart-5-c", + "name": "Adaptive Control Unit", + "className": "Recipe_SpaceElevatorPart_5_C", + "alternate": false, + "time": 60.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SpaceElevatorPart_3_C", + "amount": 5.0 + }, + { + "item": "Desc_CircuitBoard_C", + "amount": 5.0 + }, + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 1.0 + }, + { + "item": "Desc_Computer_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_SpaceElevatorPart_5_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_FusedWire_C": { + "slug": "recipe-alternate-fusedwire-c", + "name": "Alternate: Fused Wire", + "className": "Recipe_Alternate_FusedWire_C", + "alternate": true, + "time": 20.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CopperIngot_C", + "amount": 4.0 + }, + { + "item": "Desc_GoldIngot_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_Wire_C", + "amount": 30.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_FlexibleFramework_C": { + "slug": "recipe-alternate-flexibleframework-c", + "name": "Alternate: Flexible Framework", + "className": "Recipe_Alternate_FlexibleFramework_C", + "alternate": true, + "time": 16.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrame_C", + "amount": 1.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 6.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 8.0 + } + ], + "products": [ + { + "item": "Desc_SpaceElevatorPart_2_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_ElectrodeCircuitBoard_C": { + "slug": "recipe-alternate-electrodecircuitboard-c", + "name": "Alternate: Electrode Circuit Board", + "className": "Recipe_Alternate_ElectrodeCircuitBoard_C", + "alternate": true, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Rubber_C", + "amount": 4.0 + }, + { + "item": "Desc_PetroleumCoke_C", + "amount": 8.0 + } + ], + "products": [ + { + "item": "Desc_CircuitBoard_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_ElectroAluminumScrap_C": { + "slug": "recipe-alternate-electroaluminumscrap-c", + "name": "Alternate: Electrode Aluminum Scrap", + "className": "Recipe_Alternate_ElectroAluminumScrap_C", + "alternate": true, + "time": 4.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_AluminaSolution_C", + "amount": 12.0 + }, + { + "item": "Desc_PetroleumCoke_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_AluminumScrap_C", + "amount": 20.0 + }, + { + "item": "Desc_Water_C", + "amount": 7.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_DilutedPackagedFuel_C": { + "slug": "recipe-alternate-dilutedpackagedfuel-c", + "name": "Alternate: Diluted Packaged Fuel", + "className": "Recipe_Alternate_DilutedPackagedFuel_C", + "alternate": true, + "time": 2.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HeavyOilResidue_C", + "amount": 1.0 + }, + { + "item": "Desc_PackagedWater_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Fuel_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_CopperRotor_C": { + "slug": "recipe-alternate-copperrotor-c", + "name": "Alternate: Copper Rotor", + "className": "Recipe_Alternate_CopperRotor_C", + "alternate": true, + "time": 16.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CopperSheet_C", + "amount": 6.0 + }, + { + "item": "Desc_IronScrew_C", + "amount": 52.0 + } + ], + "products": [ + { + "item": "Desc_Rotor_C", + "amount": 3.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ModularFrame_C": { + "slug": "recipe-modularframe-c", + "name": "Modular Frame", + "className": "Recipe_ModularFrame_C", + "alternate": false, + "time": 60.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 0.5, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 3.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 12.0 + } + ], + "products": [ + { + "item": "Desc_ModularFrame_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Rotor_C": { + "slug": "recipe-rotor-c", + "name": "Rotor", + "className": "Recipe_Rotor_C", + "alternate": false, + "time": 15.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 0.8, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 5.0 + }, + { + "item": "Desc_IronScrew_C", + "amount": 25.0 + } + ], + "products": [ + { + "item": "Desc_Rotor_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_AssemblerMk1_C": { + "slug": "recipe-assemblermk1-c", + "name": "Assembler", + "className": "Recipe_AssemblerMk1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 8.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 4.0 + }, + { + "item": "Desc_Cable_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_AssemblerMk1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_CopperSheet_C": { + "slug": "recipe-coppersheet-c", + "name": "Copper Sheet", + "className": "Recipe_CopperSheet_C", + "alternate": false, + "time": 6.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CopperIngot_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_CopperSheet_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SpaceElevatorPart_1_C": { + "slug": "recipe-spaceelevatorpart-1-c", + "name": "Smart Plating", + "className": "Recipe_SpaceElevatorPart_1_C", + "alternate": false, + "time": 30.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 1.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_SpaceElevatorPart_1_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_CopperAlloyIngot_C": { + "slug": "recipe-alternate-copperalloyingot-c", + "name": "Alternate: Copper Alloy Ingot", + "className": "Recipe_Alternate_CopperAlloyIngot_C", + "alternate": true, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_OreCopper_C", + "amount": 5.0 + }, + { + "item": "Desc_OreIron_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_CopperIngot_C", + "amount": 10.0 + } + ], + "producedIn": [ + "Desc_FoundryMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_CokeSteelIngot_C": { + "slug": "recipe-alternate-cokesteelingot-c", + "name": "Alternate: Coke Steel Ingot", + "className": "Recipe_Alternate_CokeSteelIngot_C", + "alternate": true, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_OreIron_C", + "amount": 15.0 + }, + { + "item": "Desc_PetroleumCoke_C", + "amount": 15.0 + } + ], + "products": [ + { + "item": "Desc_SteelIngot_C", + "amount": 20.0 + } + ], + "producedIn": [ + "Desc_FoundryMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_CoatedIronPlate_C": { + "slug": "recipe-alternate-coatedironplate-c", + "name": "Alternate: Coated Iron Plate", + "className": "Recipe_Alternate_CoatedIronPlate_C", + "alternate": true, + "time": 8.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronIngot_C", + "amount": 5.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_IronPlate_C", + "amount": 10.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_CoatedIronCanister_C": { + "slug": "recipe-alternate-coatedironcanister-c", + "name": "Alternate: Coated Iron Canister", + "className": "Recipe_Alternate_CoatedIronCanister_C", + "alternate": true, + "time": 4.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 2.0 + }, + { + "item": "Desc_CopperSheet_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_FluidCanister_C", + "amount": 4.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_CoatedCable_C": { + "slug": "recipe-alternate-coatedcable-c", + "name": "Alternate: Coated Cable", + "className": "Recipe_Alternate_CoatedCable_C", + "alternate": true, + "time": 8.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Wire_C", + "amount": 5.0 + }, + { + "item": "Desc_HeavyOilResidue_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Cable_C", + "amount": 9.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_BoltedFrame_C": { + "slug": "recipe-alternate-boltedframe-c", + "name": "Alternate: Bolted Frame", + "className": "Recipe_Alternate_BoltedFrame_C", + "alternate": true, + "time": 24.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 3.0 + }, + { + "item": "Desc_IronScrew_C", + "amount": 56.0 + } + ], + "products": [ + { + "item": "Desc_ModularFrame_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_AdheredIronPlate_C": { + "slug": "recipe-alternate-adheredironplate-c", + "name": "Alternate: Adhered Iron Plate", + "className": "Recipe_Alternate_AdheredIronPlate_C", + "alternate": true, + "time": 16.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 3.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_TurboPressureMotor_C": { + "slug": "recipe-alternate-turbopressuremotor-c", + "name": "Alternate: Turbo Pressure Motor", + "className": "Recipe_Alternate_TurboPressureMotor_C", + "alternate": true, + "time": 32.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Motor_C", + "amount": 4.0 + }, + { + "item": "Desc_PressureConversionCube_C", + "amount": 1.0 + }, + { + "item": "Desc_PackagedNitrogenGas_C", + "amount": 24.0 + }, + { + "item": "Desc_Stator_C", + "amount": 8.0 + } + ], + "products": [ + { + "item": "Desc_MotorLightweight_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PlutoniumCell_C": { + "slug": "recipe-plutoniumcell-c", + "name": "Encased Plutonium Cell", + "className": "Recipe_PlutoniumCell_C", + "alternate": false, + "time": 12.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 0.5, + "ingredients": [ + { + "item": "Desc_PlutoniumPellet_C", + "amount": 2.0 + }, + { + "item": "Desc_Cement_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_PlutoniumCell_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PressureConversionCube_C": { + "slug": "recipe-pressureconversioncube-c", + "name": "Pressure Conversion Cube", + "className": "Recipe_PressureConversionCube_C", + "alternate": false, + "time": 60.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 2.0, + "ingredients": [ + { + "item": "Desc_ModularFrameFused_C", + "amount": 1.0 + }, + { + "item": "Desc_ModularFrameLightweight_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_PressureConversionCube_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_NitricAcid_C": { + "slug": "recipe-nitricacid-c", + "name": "Nitric Acid", + "className": "Recipe_NitricAcid_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_NitrogenGas_C", + "amount": 12.0 + }, + { + "item": "Desc_Water_C", + "amount": 3.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_NitricAcid_C", + "amount": 3.0 + } + ], + "producedIn": [ + "Desc_Blender_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_NonFissileUranium_C": { + "slug": "recipe-nonfissileuranium-c", + "name": "Non-Fissile Uranium", + "className": "Recipe_NonFissileUranium_C", + "alternate": false, + "time": 24.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_NuclearWaste_C", + "amount": 15.0 + }, + { + "item": "Desc_Silica_C", + "amount": 10.0 + }, + { + "item": "Desc_NitricAcid_C", + "amount": 6.0 + }, + { + "item": "Desc_SulfuricAcid_C", + "amount": 6.0 + } + ], + "products": [ + { + "item": "Desc_NonFissibleUranium_C", + "amount": 20.0 + }, + { + "item": "Desc_Water_C", + "amount": 6.0 + } + ], + "producedIn": [ + "Desc_Blender_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_HadronCollider_C": { + "slug": "recipe-hadroncollider-c", + "name": "Particle Accelerator", + "className": "Recipe_HadronCollider_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_MotorLightweight_C", + "amount": 10.0 + }, + { + "item": "Desc_ComputerSuper_C", + "amount": 10.0 + }, + { + "item": "Desc_ModularFrameFused_C", + "amount": 25.0 + }, + { + "item": "Desc_CoolingSystem_C", + "amount": 50.0 + }, + { + "item": "Desc_HighSpeedWire_C", + "amount": 500.0 + } + ], + "products": [ + { + "item": "Desc_HadronCollider_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_CopperDust_C": { + "slug": "recipe-copperdust-c", + "name": "Copper Powder", + "className": "Recipe_CopperDust_C", + "alternate": false, + "time": 6.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CopperIngot_C", + "amount": 30.0 + } + ], + "products": [ + { + "item": "Desc_CopperDust_C", + "amount": 5.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Plutonium_C": { + "slug": "recipe-plutonium-c", + "name": "Plutonium Pellet", + "className": "Recipe_Plutonium_C", + "alternate": false, + "time": 60.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_NonFissibleUranium_C", + "amount": 100.0 + }, + { + "item": "Desc_NuclearWaste_C", + "amount": 25.0 + } + ], + "products": [ + { + "item": "Desc_PlutoniumPellet_C", + "amount": 30.0 + } + ], + "producedIn": [ + "Desc_HadronCollider_C" + ], + "isVariablePower": true, + "minPower": 250, + "maxPower": 750 + }, + "Recipe_PlutoniumFuelRod_C": { + "slug": "recipe-plutoniumfuelrod-c", + "name": "Plutonium Fuel Rod", + "className": "Recipe_PlutoniumFuelRod_C", + "alternate": false, + "time": 240.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_PlutoniumCell_C", + "amount": 30.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 18.0 + }, + { + "item": "Desc_ElectromagneticControlRod_C", + "amount": 6.0 + }, + { + "item": "Desc_AluminumPlateReinforced_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_PlutoniumFuelRod_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PackagedNitricAcid_C": { + "slug": "recipe-packagednitricacid-c", + "name": "Packaged Nitric Acid", + "className": "Recipe_PackagedNitricAcid_C", + "alternate": false, + "time": 2.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_NitricAcid_C", + "amount": 1.0 + }, + { + "item": "Desc_GasTank_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_PackagedNitricAcid_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SpaceElevatorPart_9_C": { + "slug": "recipe-spaceelevatorpart-9-c", + "name": "Nuclear Pasta", + "className": "Recipe_SpaceElevatorPart_9_C", + "alternate": false, + "time": 120.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CopperDust_C", + "amount": 200.0 + }, + { + "item": "Desc_PressureConversionCube_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_SpaceElevatorPart_9_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_HadronCollider_C" + ], + "isVariablePower": true, + "minPower": 500, + "maxPower": 1500 + }, + "Recipe_UnpackageNitricAcid_C": { + "slug": "recipe-unpackagenitricacid-c", + "name": "Unpackage Nitric Acid", + "className": "Recipe_UnpackageNitricAcid_C", + "alternate": false, + "time": 3.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_PackagedNitricAcid_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_NitricAcid_C", + "amount": 1.0 + }, + { + "item": "Desc_GasTank_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_TurboBlendFuel_C": { + "slug": "recipe-alternate-turboblendfuel-c", + "name": "Alternate: Turbo Blend Fuel", + "className": "Recipe_Alternate_TurboBlendFuel_C", + "alternate": true, + "time": 8.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_LiquidFuel_C", + "amount": 2.0 + }, + { + "item": "Desc_HeavyOilResidue_C", + "amount": 4.0 + }, + { + "item": "Desc_Sulfur_C", + "amount": 3.0 + }, + { + "item": "Desc_PetroleumCoke_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_LiquidTurboFuel_C", + "amount": 6.0 + } + ], + "producedIn": [ + "Desc_Blender_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_UraniumCell_C": { + "slug": "recipe-uraniumcell-c", + "name": "Encased Uranium Cell", + "className": "Recipe_UraniumCell_C", + "alternate": false, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 0.5, + "ingredients": [ + { + "item": "Desc_OreUranium_C", + "amount": 10.0 + }, + { + "item": "Desc_Cement_C", + "amount": 3.0 + }, + { + "item": "Desc_SulfuricAcid_C", + "amount": 8.0 + } + ], + "products": [ + { + "item": "Desc_UraniumCell_C", + "amount": 5.0 + }, + { + "item": "Desc_SulfuricAcid_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_Blender_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_CoolingSystem_C": { + "slug": "recipe-coolingsystem-c", + "name": "Cooling System", + "className": "Recipe_CoolingSystem_C", + "alternate": false, + "time": 10.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_AluminumPlateReinforced_C", + "amount": 2.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 2.0 + }, + { + "item": "Desc_Water_C", + "amount": 5.0 + }, + { + "item": "Desc_NitrogenGas_C", + "amount": 25.0 + } + ], + "products": [ + { + "item": "Desc_CoolingSystem_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_Blender_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Blender_C": { + "slug": "recipe-blender-c", + "name": "Blender", + "className": "Recipe_Blender_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Computer_C", + "amount": 10.0 + }, + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 10.0 + }, + { + "item": "Desc_Motor_C", + "amount": 20.0 + }, + { + "item": "Desc_AluminumCasing_C", + "amount": 50.0 + } + ], + "products": [ + { + "item": "Desc_Blender_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Battery_C": { + "slug": "recipe-battery-c", + "name": "Battery", + "className": "Recipe_Battery_C", + "alternate": false, + "time": 3.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SulfuricAcid_C", + "amount": 2.5 + }, + { + "item": "Desc_AluminaSolution_C", + "amount": 2.0 + }, + { + "item": "Desc_AluminumCasing_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_Battery_C", + "amount": 1.0 + }, + { + "item": "Desc_Water_C", + "amount": 1.5 + } + ], + "producedIn": [ + "Desc_Blender_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ComputerSuper_C": { + "slug": "recipe-computersuper-c", + "name": "Supercomputer", + "className": "Recipe_ComputerSuper_C", + "alternate": false, + "time": 32.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.5, + "ingredients": [ + { + "item": "Desc_Computer_C", + "amount": 4.0 + }, + { + "item": "Desc_CircuitBoardHighSpeed_C", + "amount": 2.0 + }, + { + "item": "Desc_HighSpeedConnector_C", + "amount": 3.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 28.0 + } + ], + "products": [ + { + "item": "Desc_ComputerSuper_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RadioControlUnit_C": { + "slug": "recipe-radiocontrolunit-c", + "name": "Radio Control Unit", + "className": "Recipe_RadioControlUnit_C", + "alternate": false, + "time": 48.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_AluminumCasing_C", + "amount": 32.0 + }, + { + "item": "Desc_CrystalOscillator_C", + "amount": 1.0 + }, + { + "item": "Desc_Computer_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_ModularFrameLightweight_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SulfuricAcid_C": { + "slug": "recipe-sulfuricacid-c", + "name": "Sulfuric Acid", + "className": "Recipe_SulfuricAcid_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Sulfur_C", + "amount": 5.0 + }, + { + "item": "Desc_Water_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_SulfuricAcid_C", + "amount": 5.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PackagedSulfuricAcid_C": { + "slug": "recipe-packagedsulfuricacid-c", + "name": "Packaged Sulfuric Acid", + "className": "Recipe_PackagedSulfuricAcid_C", + "alternate": false, + "time": 3.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SulfuricAcid_C", + "amount": 2.0 + }, + { + "item": "Desc_FluidCanister_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_PackagedSulfuricAcid_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SpaceElevatorPart_7_C": { + "slug": "recipe-spaceelevatorpart-7-c", + "name": "Assembly Director System", + "className": "Recipe_SpaceElevatorPart_7_C", + "alternate": false, + "time": 80.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SpaceElevatorPart_5_C", + "amount": 2.0 + }, + { + "item": "Desc_ComputerSuper_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_SpaceElevatorPart_7_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_HighSpeedConnector_C": { + "slug": "recipe-highspeedconnector-c", + "name": "High-Speed Connector", + "className": "Recipe_HighSpeedConnector_C", + "alternate": false, + "time": 16.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 56.0 + }, + { + "item": "Desc_Cable_C", + "amount": 10.0 + }, + { + "item": "Desc_CircuitBoard_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_HighSpeedConnector_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_UnpackageSulfuricAcid_C": { + "slug": "recipe-unpackagesulfuricacid-c", + "name": "Unpackage Sulfuric Acid", + "className": "Recipe_UnpackageSulfuricAcid_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_PackagedSulfuricAcid_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_SulfuricAcid_C", + "amount": 1.0 + }, + { + "item": "Desc_FluidCanister_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_SuperStateComputer_C": { + "slug": "recipe-alternate-superstatecomputer-c", + "name": "Alternate: Super-State Computer", + "className": "Recipe_Alternate_SuperStateComputer_C", + "alternate": true, + "time": 25.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Computer_C", + "amount": 3.0 + }, + { + "item": "Desc_ElectromagneticControlRod_C", + "amount": 1.0 + }, + { + "item": "Desc_Battery_C", + "amount": 10.0 + }, + { + "item": "Desc_Wire_C", + "amount": 25.0 + } + ], + "products": [ + { + "item": "Desc_ComputerSuper_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ElectromagneticControlRod_C": { + "slug": "recipe-electromagneticcontrolrod-c", + "name": "Electromagnetic Control Rod", + "className": "Recipe_ElectromagneticControlRod_C", + "alternate": false, + "time": 30.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Stator_C", + "amount": 3.0 + }, + { + "item": "Desc_CircuitBoardHighSpeed_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_ElectromagneticControlRod_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_GeneratorNuclear_C": { + "slug": "recipe-generatornuclear-c", + "name": "Nuclear Power Plant", + "className": "Recipe_GeneratorNuclear_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ComputerSuper_C", + "amount": 10.0 + }, + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 25.0 + }, + { + "item": "Desc_AluminumPlate_C", + "amount": 100.0 + }, + { + "item": "Desc_Cable_C", + "amount": 200.0 + }, + { + "item": "Desc_Cement_C", + "amount": 250.0 + } + ], + "products": [ + { + "item": "Desc_GeneratorNuclear_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_NuclearFuelRod_C": { + "slug": "recipe-nuclearfuelrod-c", + "name": "Uranium Fuel Rod", + "className": "Recipe_NuclearFuelRod_C", + "alternate": false, + "time": 150.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_UraniumCell_C", + "amount": 50.0 + }, + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 3.0 + }, + { + "item": "Desc_ElectromagneticControlRod_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_NuclearFuelRod_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SpaceElevatorPart_6_C": { + "slug": "recipe-spaceelevatorpart-6-c", + "name": "Magnetic Field Generator", + "className": "Recipe_SpaceElevatorPart_6_C", + "alternate": false, + "time": 120.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SpaceElevatorPart_2_C", + "amount": 5.0 + }, + { + "item": "Desc_ElectromagneticControlRod_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_SpaceElevatorPart_6_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_SloppyAlumina_C": { + "slug": "recipe-alternate-sloppyalumina-c", + "name": "Alternate: Sloppy Alumina", + "className": "Recipe_Alternate_SloppyAlumina_C", + "alternate": true, + "time": 3.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_OreBauxite_C", + "amount": 10.0 + }, + { + "item": "Desc_Water_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_AluminaSolution_C", + "amount": 12.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_RadioControlSystem_C": { + "slug": "recipe-alternate-radiocontrolsystem-c", + "name": "Alternate: Radio Control System", + "className": "Recipe_Alternate_RadioControlSystem_C", + "alternate": true, + "time": 40.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CrystalOscillator_C", + "amount": 1.0 + }, + { + "item": "Desc_CircuitBoard_C", + "amount": 10.0 + }, + { + "item": "Desc_AluminumCasing_C", + "amount": 60.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 30.0 + } + ], + "products": [ + { + "item": "Desc_ModularFrameLightweight_C", + "amount": 3.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_PlutoniumFuelUnit_C": { + "slug": "recipe-alternate-plutoniumfuelunit-c", + "name": "Alternate: Plutonium Fuel Unit", + "className": "Recipe_Alternate_PlutoniumFuelUnit_C", + "alternate": true, + "time": 120.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_PlutoniumCell_C", + "amount": 20.0 + }, + { + "item": "Desc_PressureConversionCube_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_PlutoniumFuelRod_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_OCSupercomputer_C": { + "slug": "recipe-alternate-ocsupercomputer-c", + "name": "Alternate: OC Supercomputer", + "className": "Recipe_Alternate_OCSupercomputer_C", + "alternate": true, + "time": 20.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrameLightweight_C", + "amount": 2.0 + }, + { + "item": "Desc_CoolingSystem_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_ComputerSuper_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_HeatSink_C": { + "slug": "recipe-heatsink-c", + "name": "Heat Sink", + "className": "Recipe_HeatSink_C", + "alternate": false, + "time": 8.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.5, + "ingredients": [ + { + "item": "Desc_AluminumPlate_C", + "amount": 5.0 + }, + { + "item": "Desc_CopperSheet_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_AluminumPlateReinforced_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_FusedModularFrame_C": { + "slug": "recipe-fusedmodularframe-c", + "name": "Fused Modular Frame", + "className": "Recipe_FusedModularFrame_C", + "alternate": false, + "time": 40.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 1.0 + }, + { + "item": "Desc_AluminumCasing_C", + "amount": 50.0 + }, + { + "item": "Desc_NitrogenGas_C", + "amount": 25.0 + } + ], + "products": [ + { + "item": "Desc_ModularFrameFused_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_Blender_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_FrackingExtractor_C": { + "slug": "recipe-frackingextractor-c", + "name": "Resource Well Extractor", + "className": "Recipe_FrackingExtractor_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlate_C", + "amount": 10.0 + }, + { + "item": "Desc_AluminumCasing_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_FrackingExtractor_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_FrackingSmasher_C": { + "slug": "recipe-frackingsmasher-c", + "name": "Resource Well Pressurizer", + "className": "Recipe_FrackingSmasher_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrameLightweight_C", + "amount": 10.0 + }, + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 25.0 + }, + { + "item": "Desc_Motor_C", + "amount": 50.0 + }, + { + "item": "Desc_AluminumPlate_C", + "amount": 50.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 100.0 + } + ], + "products": [ + { + "item": "Desc_FrackingSmasher_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_GasTank_C": { + "slug": "recipe-gastank-c", + "name": "Empty Fluid Tank", + "className": "Recipe_GasTank_C", + "alternate": false, + "time": 1.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_AluminumIngot_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_GasTank_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PackagedNitrogen_C": { + "slug": "recipe-packagednitrogen-c", + "name": "Packaged Nitrogen Gas", + "className": "Recipe_PackagedNitrogen_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_NitrogenGas_C", + "amount": 4.0 + }, + { + "item": "Desc_GasTank_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_PackagedNitrogenGas_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_UnpackageNitrogen_C": { + "slug": "recipe-unpackagenitrogen-c", + "name": "Unpackage Nitrogen Gas", + "className": "Recipe_UnpackageNitrogen_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_PackagedNitrogenGas_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_NitrogenGas_C", + "amount": 4.0 + }, + { + "item": "Desc_GasTank_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_InstantScrap_C": { + "slug": "recipe-alternate-instantscrap-c", + "name": "Alternate: Instant Scrap", + "className": "Recipe_Alternate_InstantScrap_C", + "alternate": true, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_OreBauxite_C", + "amount": 15.0 + }, + { + "item": "Desc_Coal_C", + "amount": 10.0 + }, + { + "item": "Desc_SulfuricAcid_C", + "amount": 5.0 + }, + { + "item": "Desc_Water_C", + "amount": 6.0 + } + ], + "products": [ + { + "item": "Desc_AluminumScrap_C", + "amount": 30.0 + }, + { + "item": "Desc_Water_C", + "amount": 5.0 + } + ], + "producedIn": [ + "Desc_Blender_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_InstantPlutoniumCell_C": { + "slug": "recipe-alternate-instantplutoniumcell-c", + "name": "Alternate: Instant Plutonium Cell", + "className": "Recipe_Alternate_InstantPlutoniumCell_C", + "alternate": true, + "time": 120.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_NonFissibleUranium_C", + "amount": 150.0 + }, + { + "item": "Desc_AluminumCasing_C", + "amount": 20.0 + } + ], + "products": [ + { + "item": "Desc_PlutoniumCell_C", + "amount": 20.0 + } + ], + "producedIn": [ + "Desc_HadronCollider_C" + ], + "isVariablePower": true, + "minPower": 250, + "maxPower": 750 + }, + "Recipe_Alternate_HeatFusedFrame_C": { + "slug": "recipe-alternate-heatfusedframe-c", + "name": "Alternate: Heat-Fused Frame", + "className": "Recipe_Alternate_HeatFusedFrame_C", + "alternate": true, + "time": 20.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 1.0 + }, + { + "item": "Desc_AluminumIngot_C", + "amount": 50.0 + }, + { + "item": "Desc_NitricAcid_C", + "amount": 8.0 + }, + { + "item": "Desc_LiquidFuel_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_ModularFrameFused_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_Blender_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_FertileUranium_C": { + "slug": "recipe-alternate-fertileuranium-c", + "name": "Alternate: Fertile Uranium", + "className": "Recipe_Alternate_FertileUranium_C", + "alternate": true, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_OreUranium_C", + "amount": 5.0 + }, + { + "item": "Desc_NuclearWaste_C", + "amount": 5.0 + }, + { + "item": "Desc_NitricAcid_C", + "amount": 3.0 + }, + { + "item": "Desc_SulfuricAcid_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_NonFissibleUranium_C", + "amount": 20.0 + }, + { + "item": "Desc_Water_C", + "amount": 8.0 + } + ], + "producedIn": [ + "Desc_Blender_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_ElectricMotor_C": { + "slug": "recipe-alternate-electricmotor-c", + "name": "Alternate: Electric Motor", + "className": "Recipe_Alternate_ElectricMotor_C", + "alternate": true, + "time": 16.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ElectromagneticControlRod_C", + "amount": 1.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Motor_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_DilutedFuel_C": { + "slug": "recipe-alternate-dilutedfuel-c", + "name": "Alternate: Diluted Fuel", + "className": "Recipe_Alternate_DilutedFuel_C", + "alternate": true, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HeavyOilResidue_C", + "amount": 5.0 + }, + { + "item": "Desc_Water_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_LiquidFuel_C", + "amount": 10.0 + } + ], + "producedIn": [ + "Desc_Blender_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_CoolingDevice_C": { + "slug": "recipe-alternate-coolingdevice-c", + "name": "Alternate: Cooling Device", + "className": "Recipe_Alternate_CoolingDevice_C", + "alternate": true, + "time": 24.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_AluminumPlateReinforced_C", + "amount": 4.0 + }, + { + "item": "Desc_Motor_C", + "amount": 1.0 + }, + { + "item": "Desc_NitrogenGas_C", + "amount": 24.0 + } + ], + "products": [ + { + "item": "Desc_CoolingSystem_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_Blender_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_ClassicBattery_C": { + "slug": "recipe-alternate-classicbattery-c", + "name": "Alternate: Classic Battery", + "className": "Recipe_Alternate_ClassicBattery_C", + "alternate": true, + "time": 8.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Sulfur_C", + "amount": 6.0 + }, + { + "item": "Desc_AluminumPlate_C", + "amount": 7.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 8.0 + }, + { + "item": "Desc_Wire_C", + "amount": 12.0 + } + ], + "products": [ + { + "item": "Desc_Battery_C", + "amount": 4.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_AutomatedMiner_C": { + "slug": "recipe-alternate-automatedminer-c", + "name": "Alternate: Automated Miner", + "className": "Recipe_Alternate_AutomatedMiner_C", + "alternate": true, + "time": 60.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPipe_C", + "amount": 4.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "BP_ItemDescriptorPortableMiner_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_AlcladCasing_C": { + "slug": "recipe-alternate-alcladcasing-c", + "name": "Alternate: Alclad Casing", + "className": "Recipe_Alternate_AlcladCasing_C", + "alternate": true, + "time": 8.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_AluminumIngot_C", + "amount": 20.0 + }, + { + "item": "Desc_CopperIngot_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_AluminumCasing_C", + "amount": 15.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_SteelPipe_Molded_C": { + "slug": "recipe-alternate-steelpipe-molded-c", + "name": "Alternate: Molded Steel Pipe", + "className": "Recipe_Alternate_SteelPipe_Molded_C", + "alternate": true, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 99.0, + "ingredients": [ + { + "item": "Desc_SteelIngot_C", + "amount": 5.0 + }, + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_SteelPipe_C", + "amount": 5.0 + } + ], + "producedIn": [ + "Desc_FoundryMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_SteelPipe_Iron_C": { + "slug": "recipe-alternate-steelpipe-iron-c", + "name": "Alternate: Iron Pipe", + "className": "Recipe_Alternate_SteelPipe_Iron_C", + "alternate": true, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 99.0, + "ingredients": [ + { + "item": "Desc_IronIngot_C", + "amount": 20.0 + } + ], + "products": [ + { + "item": "Desc_SteelPipe_C", + "amount": 5.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_SteelCastedPlate_C": { + "slug": "recipe-alternate-steelcastedplate-c", + "name": "Alternate: Steel Cast Plate", + "className": "Recipe_Alternate_SteelCastedPlate_C", + "alternate": true, + "time": 4.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 99.0, + "ingredients": [ + { + "item": "Desc_IronIngot_C", + "amount": 1.0 + }, + { + "item": "Desc_SteelIngot_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_IronPlate_C", + "amount": 3.0 + } + ], + "producedIn": [ + "Desc_FoundryMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_SteelBeam_Molded_C": { + "slug": "recipe-alternate-steelbeam-molded-c", + "name": "Alternate: Molded Beam", + "className": "Recipe_Alternate_SteelBeam_Molded_C", + "alternate": true, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 99.0, + "ingredients": [ + { + "item": "Desc_SteelIngot_C", + "amount": 24.0 + }, + { + "item": "Desc_Cement_C", + "amount": 16.0 + } + ], + "products": [ + { + "item": "Desc_SteelPlate_C", + "amount": 9.0 + } + ], + "producedIn": [ + "Desc_FoundryMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_SteelBeam_Aluminum_C": { + "slug": "recipe-alternate-steelbeam-aluminum-c", + "name": "Alternate: Aluminum Beam", + "className": "Recipe_Alternate_SteelBeam_Aluminum_C", + "alternate": true, + "time": 8.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 99.0, + "ingredients": [ + { + "item": "Desc_AluminumIngot_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_SteelPlate_C", + "amount": 3.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_AluminumRod_C": { + "slug": "recipe-alternate-aluminumrod-c", + "name": "Alternate: Aluminum Rod", + "className": "Recipe_Alternate_AluminumRod_C", + "alternate": true, + "time": 8.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 99.0, + "ingredients": [ + { + "item": "Desc_AluminumIngot_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_IronRod_C", + "amount": 7.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_AILimiter_Plastic_C": { + "slug": "recipe-alternate-ailimiter-plastic-c", + "name": "Alternate: Plastic AI Limiter", + "className": "Recipe_Alternate_AILimiter_Plastic_C", + "alternate": true, + "time": 15.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 99.0, + "ingredients": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 30.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 7.0 + } + ], + "products": [ + { + "item": "Desc_CircuitBoardHighSpeed_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Silica_Distilled_C": { + "slug": "recipe-alternate-silica-distilled-c", + "name": "Alternate: Distilled Silica", + "className": "Recipe_Alternate_Silica_Distilled_C", + "alternate": true, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 99.0, + "ingredients": [ + { + "item": "Desc_DissolvedSilica_C", + "amount": 12.0 + }, + { + "item": "Desc_Stone_C", + "amount": 5.0 + }, + { + "item": "Desc_Water_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_Silica_C", + "amount": 27.0 + }, + { + "item": "Desc_Water_C", + "amount": 8.0 + } + ], + "producedIn": [ + "Desc_Blender_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Quartz_Purified_C": { + "slug": "recipe-alternate-quartz-purified-c", + "name": "Alternate: Quartz Purification", + "className": "Recipe_Alternate_Quartz_Purified_C", + "alternate": true, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 99.0, + "ingredients": [ + { + "item": "Desc_RawQuartz_C", + "amount": 24.0 + }, + { + "item": "Desc_NitricAcid_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_QuartzCrystal_C", + "amount": 15.0 + }, + { + "item": "Desc_DissolvedSilica_C", + "amount": 12.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Quartz_Fused_C": { + "slug": "recipe-alternate-quartz-fused-c", + "name": "Alternate: Fused Quartz Crystal", + "className": "Recipe_Alternate_Quartz_Fused_C", + "alternate": true, + "time": 20.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 99.0, + "ingredients": [ + { + "item": "Desc_RawQuartz_C", + "amount": 25.0 + }, + { + "item": "Desc_Coal_C", + "amount": 12.0 + } + ], + "products": [ + { + "item": "Desc_QuartzCrystal_C", + "amount": 18.0 + } + ], + "producedIn": [ + "Desc_FoundryMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_IronIngot_Leached_C": { + "slug": "recipe-alternate-ironingot-leached-c", + "name": "Alternate: Leached Iron ingot", + "className": "Recipe_Alternate_IronIngot_Leached_C", + "alternate": true, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 99.0, + "ingredients": [ + { + "item": "Desc_OreIron_C", + "amount": 5.0 + }, + { + "item": "Desc_SulfuricAcid_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_IronIngot_C", + "amount": 10.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_IronIngot_Basic_C": { + "slug": "recipe-alternate-ironingot-basic-c", + "name": "Alternate: Basic Iron Ingot", + "className": "Recipe_Alternate_IronIngot_Basic_C", + "alternate": true, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 99.0, + "ingredients": [ + { + "item": "Desc_OreIron_C", + "amount": 5.0 + }, + { + "item": "Desc_Stone_C", + "amount": 8.0 + } + ], + "products": [ + { + "item": "Desc_IronIngot_C", + "amount": 10.0 + } + ], + "producedIn": [ + "Desc_FoundryMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_CopperIngot_Tempered_C": { + "slug": "recipe-alternate-copperingot-tempered-c", + "name": "Alternate: Tempered Copper Ingot", + "className": "Recipe_Alternate_CopperIngot_Tempered_C", + "alternate": true, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 99.0, + "ingredients": [ + { + "item": "Desc_OreCopper_C", + "amount": 5.0 + }, + { + "item": "Desc_PetroleumCoke_C", + "amount": 8.0 + } + ], + "products": [ + { + "item": "Desc_CopperIngot_C", + "amount": 12.0 + } + ], + "producedIn": [ + "Desc_FoundryMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_CopperIngot_Leached_C": { + "slug": "recipe-alternate-copperingot-leached-c", + "name": "Alternate: Leached Copper Ingot", + "className": "Recipe_Alternate_CopperIngot_Leached_C", + "alternate": true, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 99.0, + "ingredients": [ + { + "item": "Desc_OreCopper_C", + "amount": 9.0 + }, + { + "item": "Desc_SulfuricAcid_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_CopperIngot_C", + "amount": 22.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_CateriumIngot_Tempered_C": { + "slug": "recipe-alternate-cateriumingot-tempered-c", + "name": "Alternate: Tempered Caterium Ingot", + "className": "Recipe_Alternate_CateriumIngot_Tempered_C", + "alternate": true, + "time": 8.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 99.0, + "ingredients": [ + { + "item": "Desc_OreGold_C", + "amount": 6.0 + }, + { + "item": "Desc_PetroleumCoke_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_GoldIngot_C", + "amount": 3.0 + } + ], + "producedIn": [ + "Desc_FoundryMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_CateriumIngot_Leached_C": { + "slug": "recipe-alternate-cateriumingot-leached-c", + "name": "Alternate: Leached Caterium Ingot", + "className": "Recipe_Alternate_CateriumIngot_Leached_C", + "alternate": true, + "time": 10.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 99.0, + "ingredients": [ + { + "item": "Desc_OreGold_C", + "amount": 9.0 + }, + { + "item": "Desc_SulfuricAcid_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_GoldIngot_C", + "amount": 6.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Wire_2_C": { + "slug": "recipe-alternate-wire-2-c", + "name": "Alternate: Caterium Wire", + "className": "Recipe_Alternate_Wire_2_C", + "alternate": true, + "time": 4.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_GoldIngot_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_Wire_C", + "amount": 8.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Wire_1_C": { + "slug": "recipe-alternate-wire-1-c", + "name": "Alternate: Iron Wire", + "className": "Recipe_Alternate_Wire_1_C", + "alternate": true, + "time": 24.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronIngot_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Wire_C", + "amount": 9.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_UraniumCell_1_C": { + "slug": "recipe-alternate-uraniumcell-1-c", + "name": "Alternate: Infused Uranium Cell", + "className": "Recipe_Alternate_UraniumCell_1_C", + "alternate": true, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_OreUranium_C", + "amount": 5.0 + }, + { + "item": "Desc_Silica_C", + "amount": 3.0 + }, + { + "item": "Desc_Sulfur_C", + "amount": 5.0 + }, + { + "item": "Desc_HighSpeedWire_C", + "amount": 15.0 + } + ], + "products": [ + { + "item": "Desc_UraniumCell_C", + "amount": 4.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_DroneStation_C": { + "slug": "recipe-dronestation-c", + "name": "Drone Port", + "className": "Recipe_DroneStation_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 20.0 + }, + { + "item": "Desc_HighSpeedConnector_C", + "amount": 20.0 + }, + { + "item": "Desc_AluminumPlate_C", + "amount": 50.0 + }, + { + "item": "Desc_AluminumCasing_C", + "amount": 50.0 + }, + { + "item": "Desc_ModularFrameLightweight_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_DroneStation_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_DroneTransport_C": { + "slug": "recipe-dronetransport-c", + "name": "Drone", + "className": "Recipe_DroneTransport_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Motor_C", + "amount": 4.0 + }, + { + "item": "Desc_AluminumPlate_C", + "amount": 10.0 + }, + { + "item": "Desc_ModularFrameLightweight_C", + "amount": 1.0 + }, + { + "item": "Desc_CircuitBoardHighSpeed_C", + "amount": 2.0 + }, + { + "item": "BP_ItemDescriptorPortableMiner_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_DroneTransport_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_IngotCaterium_C": { + "slug": "recipe-ingotcaterium-c", + "name": "Caterium Ingot", + "className": "Recipe_IngotCaterium_C", + "alternate": false, + "time": 4.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 2.0, + "ingredients": [ + { + "item": "Desc_OreGold_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_GoldIngot_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_SmelterMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_TurboMotor_1_C": { + "slug": "recipe-alternate-turbomotor-1-c", + "name": "Alternate: Turbo Electric Motor", + "className": "Recipe_Alternate_TurboMotor_1_C", + "alternate": true, + "time": 64.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Motor_C", + "amount": 7.0 + }, + { + "item": "Desc_ModularFrameLightweight_C", + "amount": 9.0 + }, + { + "item": "Desc_ElectromagneticControlRod_C", + "amount": 5.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 7.0 + } + ], + "products": [ + { + "item": "Desc_MotorLightweight_C", + "amount": 3.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConveyorBeltMk5_C": { + "slug": "recipe-conveyorbeltmk5-c", + "name": "Conveyor Belt Mk.5", + "className": "Recipe_ConveyorBeltMk5_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_AluminumPlate_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_ConveyorBeltMk5_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConveyorLiftMk5_C": { + "slug": "recipe-conveyorliftmk5-c", + "name": "Conveyor Lift Mk.5", + "className": "Recipe_ConveyorLiftMk5_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_AluminumPlate_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_ConveyorLiftMk5_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_MinerMk3_C": { + "slug": "recipe-minermk3-c", + "name": "Miner Mk.3", + "className": "Recipe_MinerMk3_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "BP_ItemDescriptorPortableMiner_C", + "amount": 3.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 50.0 + }, + { + "item": "Desc_ComputerSuper_C", + "amount": 5.0 + }, + { + "item": "Desc_ModularFrameFused_C", + "amount": 10.0 + }, + { + "item": "Desc_MotorLightweight_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_MinerMk3_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_MotorTurbo_C": { + "slug": "recipe-motorturbo-c", + "name": "Turbo Motor", + "className": "Recipe_MotorTurbo_C", + "alternate": false, + "time": 32.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 2.0, + "ingredients": [ + { + "item": "Desc_CoolingSystem_C", + "amount": 4.0 + }, + { + "item": "Desc_ModularFrameLightweight_C", + "amount": 2.0 + }, + { + "item": "Desc_Motor_C", + "amount": 4.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 24.0 + } + ], + "products": [ + { + "item": "Desc_MotorLightweight_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SpaceElevatorPart_8_C": { + "slug": "recipe-spaceelevatorpart-8-c", + "name": "Thermal Propulsion Rocket", + "className": "Recipe_SpaceElevatorPart_8_C", + "alternate": false, + "time": 120.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SpaceElevatorPart_4_C", + "amount": 5.0 + }, + { + "item": "Desc_MotorLightweight_C", + "amount": 2.0 + }, + { + "item": "Desc_CoolingSystem_C", + "amount": 6.0 + }, + { + "item": "Desc_ModularFrameFused_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_SpaceElevatorPart_8_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Stator_C": { + "slug": "recipe-alternate-stator-c", + "name": "Alternate: Quickwire Stator", + "className": "Recipe_Alternate_Stator_C", + "alternate": true, + "time": 15.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPipe_C", + "amount": 4.0 + }, + { + "item": "Desc_HighSpeedWire_C", + "amount": 15.0 + } + ], + "products": [ + { + "item": "Desc_Stator_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Silica_C": { + "slug": "recipe-alternate-silica-c", + "name": "Alternate: Cheap Silica", + "className": "Recipe_Alternate_Silica_C", + "alternate": true, + "time": 8.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_RawQuartz_C", + "amount": 3.0 + }, + { + "item": "Desc_Stone_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Silica_C", + "amount": 7.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Screw_2_C": { + "slug": "recipe-alternate-screw-2-c", + "name": "Alternate: Steel Screw", + "className": "Recipe_Alternate_Screw_2_C", + "alternate": true, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlate_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_IronScrew_C", + "amount": 52.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Screw_C": { + "slug": "recipe-alternate-screw-c", + "name": "Alternate: Cast Screw", + "className": "Recipe_Alternate_Screw_C", + "alternate": true, + "time": 24.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronIngot_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_IronScrew_C", + "amount": 20.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Rotor_C": { + "slug": "recipe-alternate-rotor-c", + "name": "Alternate: Steel Rotor", + "className": "Recipe_Alternate_Rotor_C", + "alternate": true, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPipe_C", + "amount": 2.0 + }, + { + "item": "Desc_Wire_C", + "amount": 6.0 + } + ], + "products": [ + { + "item": "Desc_Rotor_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_EncasedIndustrialBeam_C": { + "slug": "recipe-alternate-encasedindustrialbeam-c", + "name": "Alternate: Encased Industrial Pipe", + "className": "Recipe_Alternate_EncasedIndustrialBeam_C", + "alternate": true, + "time": 15.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPipe_C", + "amount": 6.0 + }, + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_ReinforcedIronPlate_2_C": { + "slug": "recipe-alternate-reinforcedironplate-2-c", + "name": "Alternate: Stitched Iron Plate", + "className": "Recipe_Alternate_ReinforcedIronPlate_2_C", + "alternate": true, + "time": 32.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 10.0 + }, + { + "item": "Desc_Wire_C", + "amount": 20.0 + } + ], + "products": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 3.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_ReinforcedIronPlate_1_C": { + "slug": "recipe-alternate-reinforcedironplate-1-c", + "name": "Alternate: Bolted Iron Plate", + "className": "Recipe_Alternate_ReinforcedIronPlate_1_C", + "alternate": true, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 18.0 + }, + { + "item": "Desc_IronScrew_C", + "amount": 50.0 + } + ], + "products": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 3.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_RadioControlUnit_1_C": { + "slug": "recipe-alternate-radiocontrolunit-1-c", + "name": "Alternate: Radio Connection Unit", + "className": "Recipe_Alternate_RadioControlUnit_1_C", + "alternate": true, + "time": 16.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_AluminumPlateReinforced_C", + "amount": 4.0 + }, + { + "item": "Desc_HighSpeedConnector_C", + "amount": 2.0 + }, + { + "item": "Desc_QuartzCrystal_C", + "amount": 12.0 + } + ], + "products": [ + { + "item": "Desc_ModularFrameLightweight_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Quickwire_C": { + "slug": "recipe-alternate-quickwire-c", + "name": "Alternate: Fused Quickwire", + "className": "Recipe_Alternate_Quickwire_C", + "alternate": true, + "time": 8.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_GoldIngot_C", + "amount": 1.0 + }, + { + "item": "Desc_CopperIngot_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 12.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Plastic_1_C": { + "slug": "recipe-alternate-plastic-1-c", + "name": "Alternate: Recycled Plastic", + "className": "Recipe_Alternate_Plastic_1_C", + "alternate": true, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Rubber_C", + "amount": 6.0 + }, + { + "item": "Desc_LiquidFuel_C", + "amount": 6.0 + } + ], + "products": [ + { + "item": "Desc_Plastic_C", + "amount": 12.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_NuclearFuelRod_1_C": { + "slug": "recipe-alternate-nuclearfuelrod-1-c", + "name": "Alternate: Uranium Fuel Unit", + "className": "Recipe_Alternate_NuclearFuelRod_1_C", + "alternate": true, + "time": 300.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_UraniumCell_C", + "amount": 100.0 + }, + { + "item": "Desc_ElectromagneticControlRod_C", + "amount": 10.0 + }, + { + "item": "Desc_CrystalOscillator_C", + "amount": 3.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_NuclearFuelRod_C", + "amount": 3.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Motor_1_C": { + "slug": "recipe-alternate-motor-1-c", + "name": "Alternate: Rigor Motor", + "className": "Recipe_Alternate_Motor_1_C", + "alternate": true, + "time": 48.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Rotor_C", + "amount": 3.0 + }, + { + "item": "Desc_Stator_C", + "amount": 3.0 + }, + { + "item": "Desc_CrystalOscillator_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_Motor_C", + "amount": 6.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_ModularFrame_C": { + "slug": "recipe-alternate-modularframe-c", + "name": "Alternate: Steeled Frame", + "className": "Recipe_Alternate_ModularFrame_C", + "alternate": true, + "time": 60.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 2.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_ModularFrame_C", + "amount": 3.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_IngotSteel_2_C": { + "slug": "recipe-alternate-ingotsteel-2-c", + "name": "Alternate: Compacted Steel Ingot", + "className": "Recipe_Alternate_IngotSteel_2_C", + "alternate": true, + "time": 24.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_OreIron_C", + "amount": 2.0 + }, + { + "item": "Desc_CompactedCoal_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_SteelIngot_C", + "amount": 4.0 + } + ], + "producedIn": [ + "Desc_FoundryMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_IngotSteel_1_C": { + "slug": "recipe-alternate-ingotsteel-1-c", + "name": "Alternate: Solid Steel Ingot", + "className": "Recipe_Alternate_IngotSteel_1_C", + "alternate": true, + "time": 3.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronIngot_C", + "amount": 2.0 + }, + { + "item": "Desc_Coal_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_SteelIngot_C", + "amount": 3.0 + } + ], + "producedIn": [ + "Desc_FoundryMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_IngotIron_C": { + "slug": "recipe-alternate-ingotiron-c", + "name": "Alternate: Iron Alloy Ingot", + "className": "Recipe_Alternate_IngotIron_C", + "alternate": true, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_OreIron_C", + "amount": 8.0 + }, + { + "item": "Desc_OreCopper_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_IronIngot_C", + "amount": 15.0 + } + ], + "producedIn": [ + "Desc_FoundryMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_HighSpeedConnector_C": { + "slug": "recipe-alternate-highspeedconnector-c", + "name": "Alternate: Silicon High-Speed Connector", + "className": "Recipe_Alternate_HighSpeedConnector_C", + "alternate": true, + "time": 40.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 60.0 + }, + { + "item": "Desc_Silica_C", + "amount": 25.0 + }, + { + "item": "Desc_CircuitBoard_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_HighSpeedConnector_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_ModularFrameHeavy_C": { + "slug": "recipe-alternate-modularframeheavy-c", + "name": "Alternate: Heavy Encased Frame", + "className": "Recipe_Alternate_ModularFrameHeavy_C", + "alternate": true, + "time": 64.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrame_C", + "amount": 8.0 + }, + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 10.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 36.0 + }, + { + "item": "Desc_Cement_C", + "amount": 22.0 + } + ], + "products": [ + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 3.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_HeatSink_1_C": { + "slug": "recipe-alternate-heatsink-1-c", + "name": "Alternate: Heat Exchanger", + "className": "Recipe_Alternate_HeatSink_1_C", + "alternate": true, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_AluminumCasing_C", + "amount": 3.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_AluminumPlateReinforced_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Gunpowder_1_C": { + "slug": "recipe-alternate-gunpowder-1-c", + "name": "Alternate: Fine Black Powder", + "className": "Recipe_Alternate_Gunpowder_1_C", + "alternate": true, + "time": 8.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Sulfur_C", + "amount": 1.0 + }, + { + "item": "Desc_CompactedCoal_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Gunpowder_C", + "amount": 6.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_ElectromagneticControlRod_1_C": { + "slug": "recipe-alternate-electromagneticcontrolrod-1-c", + "name": "Alternate: Electromagnetic Connection Rod", + "className": "Recipe_Alternate_ElectromagneticControlRod_1_C", + "alternate": true, + "time": 15.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Stator_C", + "amount": 2.0 + }, + { + "item": "Desc_HighSpeedConnector_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_ElectromagneticControlRod_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_CrystalOscillator_C": { + "slug": "recipe-alternate-crystaloscillator-c", + "name": "Alternate: Insulated Crystal Oscillator", + "className": "Recipe_Alternate_CrystalOscillator_C", + "alternate": true, + "time": 32.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_QuartzCrystal_C", + "amount": 10.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 7.0 + }, + { + "item": "Desc_CircuitBoardHighSpeed_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_CrystalOscillator_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Concrete_C": { + "slug": "recipe-alternate-concrete-c", + "name": "Alternate: Fine Concrete", + "className": "Recipe_Alternate_Concrete_C", + "alternate": true, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Silica_C", + "amount": 3.0 + }, + { + "item": "Desc_Stone_C", + "amount": 12.0 + } + ], + "products": [ + { + "item": "Desc_Cement_C", + "amount": 10.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Computer_2_C": { + "slug": "recipe-alternate-computer-2-c", + "name": "Alternate: Crystal Computer", + "className": "Recipe_Alternate_Computer_2_C", + "alternate": true, + "time": 36.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CircuitBoard_C", + "amount": 3.0 + }, + { + "item": "Desc_CrystalOscillator_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_Computer_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Computer_1_C": { + "slug": "recipe-alternate-computer-1-c", + "name": "Alternate: Caterium Computer", + "className": "Recipe_Alternate_Computer_1_C", + "alternate": true, + "time": 16.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CircuitBoard_C", + "amount": 4.0 + }, + { + "item": "Desc_HighSpeedWire_C", + "amount": 14.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 6.0 + } + ], + "products": [ + { + "item": "Desc_Computer_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_CircuitBoard_2_C": { + "slug": "recipe-alternate-circuitboard-2-c", + "name": "Alternate: Caterium Circuit Board", + "className": "Recipe_Alternate_CircuitBoard_2_C", + "alternate": true, + "time": 48.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Plastic_C", + "amount": 10.0 + }, + { + "item": "Desc_HighSpeedWire_C", + "amount": 30.0 + } + ], + "products": [ + { + "item": "Desc_CircuitBoard_C", + "amount": 7.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_CircuitBoard_1_C": { + "slug": "recipe-alternate-circuitboard-1-c", + "name": "Alternate: Silicon Circuit Board", + "className": "Recipe_Alternate_CircuitBoard_1_C", + "alternate": true, + "time": 24.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CopperSheet_C", + "amount": 11.0 + }, + { + "item": "Desc_Silica_C", + "amount": 11.0 + } + ], + "products": [ + { + "item": "Desc_CircuitBoard_C", + "amount": 5.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Cable_2_C": { + "slug": "recipe-alternate-cable-2-c", + "name": "Alternate: Quickwire Cable", + "className": "Recipe_Alternate_Cable_2_C", + "alternate": true, + "time": 24.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 3.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Cable_C", + "amount": 11.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Cable_1_C": { + "slug": "recipe-alternate-cable-1-c", + "name": "Alternate: Insulated Cable", + "className": "Recipe_Alternate_Cable_1_C", + "alternate": true, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Wire_C", + "amount": 9.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 6.0 + } + ], + "products": [ + { + "item": "Desc_Cable_C", + "amount": 20.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConveyorBeltMk6_C": { + "slug": "recipe-conveyorbeltmk6-c", + "name": "Conveyor Belt Mk.6", + "className": "Recipe_ConveyorBeltMk6_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_FicsiteMesh_C", + "amount": 1.0 + }, + { + "item": "Desc_TimeCrystal_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_ConveyorBeltMk6_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConveyorLiftMk6_C": { + "slug": "recipe-conveyorliftmk6-c", + "name": "Conveyor Lift Mk.6", + "className": "Recipe_ConveyorLiftMk6_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_FicsiteMesh_C", + "amount": 2.0 + }, + { + "item": "Desc_TimeCrystal_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_ConveyorLiftMk6_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ficsonium_C": { + "slug": "recipe-ficsonium-c", + "name": "Ficsonium", + "className": "Recipe_Ficsonium_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 0.0, + "ingredients": [ + { + "item": "Desc_PlutoniumWaste_C", + "amount": 1.0 + }, + { + "item": "Desc_SingularityCell_C", + "amount": 1.0 + }, + { + "item": "Desc_DarkEnergy_C", + "amount": 20.0 + } + ], + "products": [ + { + "item": "Desc_Ficsonium_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_HadronCollider_C" + ], + "isVariablePower": true, + "minPower": 500, + "maxPower": 1500 + }, + "Recipe_FicsoniumFuelRod_C": { + "slug": "recipe-ficsoniumfuelrod-c", + "name": "Ficsonium Fuel Rod", + "className": "Recipe_FicsoniumFuelRod_C", + "alternate": false, + "time": 24.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Ficsonium_C", + "amount": 2.0 + }, + { + "item": "Desc_ElectromagneticControlRod_C", + "amount": 2.0 + }, + { + "item": "Desc_FicsiteMesh_C", + "amount": 40.0 + }, + { + "item": "Desc_QuantumEnergy_C", + "amount": 20.0 + } + ], + "products": [ + { + "item": "Desc_FicsoniumFuelRod_C", + "amount": 1.0 + }, + { + "item": "Desc_DarkEnergy_C", + "amount": 20.0 + } + ], + "producedIn": [ + "Desc_QuantumEncoder_C" + ], + "isVariablePower": true, + "minPower": 0, + "maxPower": 2000 + }, + "Recipe_Portal_C": { + "slug": "recipe-portal-c", + "name": "Main Portal", + "className": "Recipe_Portal_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_MotorLightweight_C", + "amount": 5.0 + }, + { + "item": "Desc_ModularFrameLightweight_C", + "amount": 10.0 + }, + { + "item": "Desc_QuantumOscillator_C", + "amount": 15.0 + }, + { + "item": "Desc_SAMFluctuator_C", + "amount": 25.0 + }, + { + "item": "Desc_FicsiteMesh_C", + "amount": 50.0 + } + ], + "products": [ + { + "item": "Desc_Portal_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PortalSatellite_C": { + "slug": "recipe-portalsatellite-c", + "name": "Satellite Portal", + "className": "Recipe_PortalSatellite_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrameLightweight_C", + "amount": 5.0 + }, + { + "item": "Desc_QuantumOscillator_C", + "amount": 10.0 + }, + { + "item": "Desc_SAMFluctuator_C", + "amount": 25.0 + }, + { + "item": "Desc_FicsiteMesh_C", + "amount": 25.0 + } + ], + "products": [ + { + "item": "Desc_PortalSatellite_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SingularityCell_C": { + "slug": "recipe-singularitycell-c", + "name": "Singularity Cell", + "className": "Recipe_SingularityCell_C", + "alternate": false, + "time": 60.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SpaceElevatorPart_9_C", + "amount": 1.0 + }, + { + "item": "Desc_DarkMatter_C", + "amount": 20.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 100.0 + }, + { + "item": "Desc_Cement_C", + "amount": 200.0 + } + ], + "products": [ + { + "item": "Desc_SingularityCell_C", + "amount": 10.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": true, + "minPower": 0, + "maxPower": 0 + }, + "Recipe_SpaceElevatorPart_11_C": { + "slug": "recipe-spaceelevatorpart-11-c", + "name": "Ballistic Warp Drive", + "className": "Recipe_SpaceElevatorPart_11_C", + "alternate": false, + "time": 60.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SpaceElevatorPart_8_C", + "amount": 1.0 + }, + { + "item": "Desc_SingularityCell_C", + "amount": 5.0 + }, + { + "item": "Desc_QuantumOscillator_C", + "amount": 2.0 + }, + { + "item": "Desc_DarkMatter_C", + "amount": 40.0 + } + ], + "products": [ + { + "item": "Desc_SpaceElevatorPart_11_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": true, + "minPower": 500, + "maxPower": 1500 + }, + "Recipe_BlueprintDesigner_Mk3_C": { + "slug": "recipe-blueprintdesigner-mk3-c", + "name": "Blueprint Designer Mk.3", + "className": "Recipe_BlueprintDesigner_Mk3_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_TemporalProcessor_C", + "amount": 10.0 + }, + { + "item": "Desc_ModularFrameFused_C", + "amount": 20.0 + }, + { + "item": "Desc_TimeCrystal_C", + "amount": 50.0 + }, + { + "item": "Desc_FicsiteMesh_C", + "amount": 100.0 + } + ], + "products": [ + { + "item": "Desc_BlueprintDesigner_MK3_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Hoverpack_C": { + "slug": "recipe-hoverpack-c", + "name": "Hoverpack", + "className": "Recipe_Hoverpack_C", + "alternate": false, + "time": 120.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Motor_C", + "amount": 8.0 + }, + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 4.0 + }, + { + "item": "Desc_Computer_C", + "amount": 8.0 + }, + { + "item": "Desc_AluminumPlate_C", + "amount": 40.0 + } + ], + "products": [ + { + "item": "BP_EquipmentDescriptorHoverPack_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_FilterHazmat_C": { + "slug": "recipe-filterhazmat-c", + "name": "Iodine-Infused Filter", + "className": "Recipe_FilterHazmat_C", + "alternate": false, + "time": 16.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Filter_C", + "amount": 1.0 + }, + { + "item": "Desc_HighSpeedWire_C", + "amount": 8.0 + }, + { + "item": "Desc_AluminumCasing_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_HazmatFilter_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_HazmatSuit_C": { + "slug": "recipe-hazmatsuit-c", + "name": "Hazmat Suit", + "className": "Recipe_HazmatSuit_C", + "alternate": false, + "time": 120.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Rubber_C", + "amount": 50.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 50.0 + }, + { + "item": "Desc_AluminumPlate_C", + "amount": 50.0 + }, + { + "item": "Desc_Fabric_C", + "amount": 50.0 + } + ], + "products": [ + { + "item": "BP_EquipmentDescriptorHazmatSuit_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RailroadBlockSignal_C": { + "slug": "recipe-railroadblocksignal-c", + "name": "Block Signal", + "className": "Recipe_RailroadBlockSignal_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPipe_C", + "amount": 2.0 + }, + { + "item": "Desc_Computer_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_RailroadBlockSignal_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RailroadPathSignal_C": { + "slug": "recipe-railroadpathsignal-c", + "name": "Path Signal", + "className": "Recipe_RailroadPathSignal_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPipe_C", + "amount": 2.0 + }, + { + "item": "Desc_Computer_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_RailroadPathSignal_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_BlueprintDesigner_Mk2_C": { + "slug": "recipe-blueprintdesigner-mk2-c", + "name": "Blueprint Designer Mk.2", + "className": "Recipe_BlueprintDesigner_Mk2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 10.0 + }, + { + "item": "Desc_Computer_C", + "amount": 20.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 100.0 + }, + { + "item": "Desc_Cement_C", + "amount": 100.0 + } + ], + "products": [ + { + "item": "Desc_BlueprintDesigner_MK2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PipelineMK2_C": { + "slug": "recipe-pipelinemk2-c", + "name": "Pipeline Mk.2", + "className": "Recipe_PipelineMK2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CopperSheet_C", + "amount": 2.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_PipelineMK2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PipelinePumpMK2_C": { + "slug": "recipe-pipelinepumpmk2-c", + "name": "Pipeline Pump Mk.2", + "className": "Recipe_PipelinePumpMK2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 1.0 + }, + { + "item": "Desc_Motor_C", + "amount": 2.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_PipelinePumpMk2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_TrainDockingStation_C": { + "slug": "recipe-traindockingstation-c", + "name": "Freight Platform", + "className": "Recipe_TrainDockingStation_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Motor_C", + "amount": 5.0 + }, + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 10.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 25.0 + }, + { + "item": "Desc_Cement_C", + "amount": 50.0 + }, + { + "item": "Desc_Wire_C", + "amount": 100.0 + } + ], + "products": [ + { + "item": "Desc_TrainDockingStation_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_TrainDockingStationLiquid_C": { + "slug": "recipe-traindockingstationliquid-c", + "name": "Fluid Freight Platform", + "className": "Recipe_TrainDockingStationLiquid_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Motor_C", + "amount": 5.0 + }, + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 10.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 25.0 + }, + { + "item": "Desc_Cement_C", + "amount": 50.0 + }, + { + "item": "Desc_Wire_C", + "amount": 100.0 + } + ], + "products": [ + { + "item": "Desc_TrainDockingStationLiquid_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_TrainPlatformEmpty_C": { + "slug": "recipe-trainplatformempty-c", + "name": "Empty Platform", + "className": "Recipe_TrainPlatformEmpty_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 10.0 + }, + { + "item": "Desc_Cement_C", + "amount": 50.0 + } + ], + "products": [ + { + "item": "Desc_TrainPlatformEmpty_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_TrainPlatformEmpty_02_C": { + "slug": "recipe-trainplatformempty-02-c", + "name": "Empty Platform With Catwalk", + "className": "Recipe_TrainPlatformEmpty_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 10.0 + }, + { + "item": "Desc_Cement_C", + "amount": 50.0 + } + ], + "products": [ + { + "item": "Desc_TrainPlatformEmpty_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_TrainStation_C": { + "slug": "recipe-trainstation-c", + "name": "Train Station", + "className": "Recipe_TrainStation_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 10.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 50.0 + }, + { + "item": "Desc_Cement_C", + "amount": 50.0 + }, + { + "item": "Desc_Wire_C", + "amount": 200.0 + } + ], + "products": [ + { + "item": "Desc_TrainStation_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RailroadTrack_C": { + "slug": "recipe-railroadtrack-c", + "name": "Railway", + "className": "Recipe_RailroadTrack_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPipe_C", + "amount": 1.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_RailroadTrack_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_FreightWagon_C": { + "slug": "recipe-freightwagon-c", + "name": "Freight Car", + "className": "Recipe_FreightWagon_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrame_C", + "amount": 5.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 10.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_FreightWagon_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Locomotive_C": { + "slug": "recipe-locomotive-c", + "name": "Electric Locomotive", + "className": "Recipe_Locomotive_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrame_C", + "amount": 5.0 + }, + { + "item": "Desc_Motor_C", + "amount": 10.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 20.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 20.0 + }, + { + "item": "Desc_Wire_C", + "amount": 50.0 + } + ], + "products": [ + { + "item": "Desc_Locomotive_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_JetPack_C": { + "slug": "recipe-jetpack-c", + "name": "Jetpack", + "className": "Recipe_JetPack_C", + "alternate": false, + "time": 60.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Motor_C", + "amount": 5.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 10.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 25.0 + }, + { + "item": "Desc_Wire_C", + "amount": 50.0 + } + ], + "products": [ + { + "item": "BP_EquipmentDescriptorJetPack_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConveyorBeltMk4_C": { + "slug": "recipe-conveyorbeltmk4-c", + "name": "Conveyor Belt Mk.4", + "className": "Recipe_ConveyorBeltMk4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_ConveyorBeltMk4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConveyorLiftMk4_C": { + "slug": "recipe-conveyorliftmk4-c", + "name": "Conveyor Lift Mk.4", + "className": "Recipe_ConveyorLiftMk4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_ConveyorLiftMk4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Truck_C": { + "slug": "recipe-truck-c", + "name": "Truck", + "className": "Recipe_Truck_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Motor_C", + "amount": 15.0 + }, + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 20.0 + }, + { + "item": "Desc_ModularFrame_C", + "amount": 20.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 50.0 + } + ], + "products": [ + { + "item": "Desc_Truck_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_GeneratorFuel_C": { + "slug": "recipe-generatorfuel-c", + "name": "Fuel-Powered Generator", + "className": "Recipe_GeneratorFuel_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Motor_C", + "amount": 15.0 + }, + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 15.0 + }, + { + "item": "Desc_CopperSheet_C", + "amount": 30.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 50.0 + }, + { + "item": "Desc_HighSpeedWire_C", + "amount": 50.0 + } + ], + "products": [ + { + "item": "Desc_GeneratorFuel_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_IndustrialTank_C": { + "slug": "recipe-industrialtank-c", + "name": "Industrial Fluid Buffer", + "className": "Recipe_IndustrialTank_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 5.0 + }, + { + "item": "Desc_CopperSheet_C", + "amount": 10.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 25.0 + } + ], + "products": [ + { + "item": "Desc_IndustrialTank_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Quickwire_C": { + "slug": "recipe-quickwire-c", + "name": "Quickwire", + "className": "Recipe_Quickwire_C", + "alternate": false, + "time": 5.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 2.0, + "ingredients": [ + { + "item": "Desc_GoldIngot_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 5.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConveyorBeltMk3_C": { + "slug": "recipe-conveyorbeltmk3-c", + "name": "Conveyor Belt Mk.3", + "className": "Recipe_ConveyorBeltMk3_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlate_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_ConveyorBeltMk3_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConveyorLiftMk3_C": { + "slug": "recipe-conveyorliftmk3-c", + "name": "Conveyor Lift Mk.3", + "className": "Recipe_ConveyorLiftMk3_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlate_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_ConveyorLiftMk3_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PipeSupportStackable_C": { + "slug": "recipe-pipesupportstackable-c", + "name": "Stackable Pipeline Support", + "className": "Recipe_PipeSupportStackable_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 4.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 2.0 + }, + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_PipeSupportStackable_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_StorageContainerMk2_C": { + "slug": "recipe-storagecontainermk2-c", + "name": "Industrial Storage Container", + "className": "Recipe_StorageContainerMk2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlate_C", + "amount": 20.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 20.0 + } + ], + "products": [ + { + "item": "Desc_StorageContainerMk2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_BlueprintDesigner_C": { + "slug": "recipe-blueprintdesigner-c", + "name": "Blueprint Designer Mk.1", + "className": "Recipe_BlueprintDesigner_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrame_C", + "amount": 15.0 + }, + { + "item": "Desc_Cable_C", + "amount": 25.0 + }, + { + "item": "Desc_Cement_C", + "amount": 100.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 100.0 + } + ], + "products": [ + { + "item": "Desc_BlueprintDesigner_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PipeHyperStart_C": { + "slug": "recipe-pipehyperstart-c", + "name": "Hypertube Entrance", + "className": "Recipe_PipeHyperStart_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 4.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 4.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_PipeHyperStart_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_HyperPoleStackable_C": { + "slug": "recipe-hyperpolestackable-c", + "name": "Stackable Hypertube Support", + "className": "Recipe_HyperPoleStackable_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 4.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 2.0 + }, + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_HyperPoleStackable_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_HyperTubeWallSupport_C": { + "slug": "recipe-hypertubewallsupport-c", + "name": "Hypertube Wall Support", + "className": "Recipe_HyperTubeWallSupport_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 2.0 + }, + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_HyperTubeWallSupport_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PipeHyperSupport_C": { + "slug": "recipe-pipehypersupport-c", + "name": "Hypertube Support", + "className": "Recipe_PipeHyperSupport_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 2.0 + }, + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_PipeHyperSupport_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PipeHyper_C": { + "slug": "recipe-pipehyper-c", + "name": "Hypertube", + "className": "Recipe_PipeHyper_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CopperSheet_C", + "amount": 1.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_PipeHyper_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PowerStorageMk1_C": { + "slug": "recipe-powerstoragemk1-c", + "name": "Power Storage", + "className": "Recipe_PowerStorageMk1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 5.0 + }, + { + "item": "Desc_ModularFrame_C", + "amount": 10.0 + }, + { + "item": "Desc_Wire_C", + "amount": 100.0 + } + ], + "products": [ + { + "item": "Desc_PowerStorageMk1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PowerTower_C": { + "slug": "recipe-powertower-c", + "name": "Power Tower", + "className": "Recipe_PowerTower_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 10.0 + }, + { + "item": "Desc_Wire_C", + "amount": 20.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 20.0 + } + ], + "products": [ + { + "item": "Desc_PowerTower_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PowerTowerPlatform_C": { + "slug": "recipe-powertowerplatform-c", + "name": "Power Tower Platform", + "className": "Recipe_PowerTowerPlatform_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 10.0 + }, + { + "item": "Desc_Wire_C", + "amount": 20.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 20.0 + } + ], + "products": [ + { + "item": "Desc_PowerTowerPlatform_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_XenoBasher_C": { + "slug": "recipe-xenobasher-c", + "name": "Xeno-Basher", + "className": "Recipe_XenoBasher_C", + "alternate": false, + "time": 80.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "BP_EquipmentDescriptorShockShank_C", + "amount": 2.0 + }, + { + "item": "Desc_ModularFrame_C", + "amount": 5.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 25.0 + }, + { + "item": "Desc_Wire_C", + "amount": 500.0 + } + ], + "products": [ + { + "item": "BP_EquipmentDescriptorStunSpear_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_TruckStation_C": { + "slug": "recipe-truckstation-c", + "name": "Truck Station", + "className": "Recipe_TruckStation_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrame_C", + "amount": 15.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 20.0 + }, + { + "item": "Desc_Cable_C", + "amount": 50.0 + } + ], + "products": [ + { + "item": "Desc_TruckStation_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Tractor_C": { + "slug": "recipe-tractor-c", + "name": "Tractor", + "className": "Recipe_Tractor_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrame_C", + "amount": 5.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 5.0 + }, + { + "item": "Desc_IronPlateReinforced_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_Tractor_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConveyorBeltMk2_C": { + "slug": "recipe-conveyorbeltmk2-c", + "name": "Conveyor Belt Mk.2", + "className": "Recipe_ConveyorBeltMk2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_ConveyorBeltMk2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConveyorLiftMk2_C": { + "slug": "recipe-conveyorliftmk2-c", + "name": "Conveyor Lift Mk.2", + "className": "Recipe_ConveyorLiftMk2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_ConveyorLiftMk2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConveyorPoleStackable_C": { + "slug": "recipe-conveyorpolestackable-c", + "name": "Stackable Conveyor Pole", + "className": "Recipe_ConveyorPoleStackable_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 2.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 2.0 + }, + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_ConveyorPoleStackable_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_JumpPadAdjustable_C": { + "slug": "recipe-jumppadadjustable-c", + "name": "Jump Pad", + "className": "Recipe_JumpPadAdjustable_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Rotor_C", + "amount": 2.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 15.0 + }, + { + "item": "Desc_Cable_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_JumpPadAdjustable_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_UJellyLandingPad_C": { + "slug": "recipe-ujellylandingpad-c", + "name": "U-Jelly Landing Pad", + "className": "Recipe_UJellyLandingPad_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Rotor_C", + "amount": 2.0 + }, + { + "item": "Desc_Cable_C", + "amount": 20.0 + }, + { + "item": "Desc_GenericBiomass_C", + "amount": 200.0 + } + ], + "products": [ + { + "item": "Desc_LandingPad_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Biofuel_C": { + "slug": "recipe-biofuel-c", + "name": "Solid Biofuel", + "className": "Recipe_Biofuel_C", + "alternate": false, + "time": 4.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 5.0, + "ingredients": [ + { + "item": "Desc_GenericBiomass_C", + "amount": 8.0 + } + ], + "products": [ + { + "item": "Desc_Biofuel_C", + "amount": 4.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Chainsaw_C": { + "slug": "recipe-chainsaw-c", + "name": "Chainsaw", + "className": "Recipe_Chainsaw_C", + "alternate": false, + "time": 60.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 5.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 25.0 + }, + { + "item": "Desc_IronScrew_C", + "amount": 160.0 + }, + { + "item": "Desc_Cable_C", + "amount": 15.0 + } + ], + "products": [ + { + "item": "Desc_Chainsaw_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Protein_Hog_C": { + "slug": "recipe-protein-hog-c", + "name": "Hog Protein", + "className": "Recipe_Protein_Hog_C", + "alternate": false, + "time": 3.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.333333, + "ingredients": [ + { + "item": "Desc_HogParts_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_AlienProtein_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Protein_Spitter_C": { + "slug": "recipe-protein-spitter-c", + "name": "Spitter Protein", + "className": "Recipe_Protein_Spitter_C", + "alternate": false, + "time": 3.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.333333, + "ingredients": [ + { + "item": "Desc_SpitterParts_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_AlienProtein_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Biomass_Mycelia_C": { + "slug": "recipe-biomass-mycelia-c", + "name": "Biomass (Mycelia)", + "className": "Recipe_Biomass_Mycelia_C", + "alternate": false, + "time": 4.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 0.5, + "ingredients": [ + { + "item": "Desc_Mycelia_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_GenericBiomass_C", + "amount": 10.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PowerCrystalShard_1_C": { + "slug": "recipe-powercrystalshard-1-c", + "name": "Power Shard (1)", + "className": "Recipe_PowerCrystalShard_1_C", + "alternate": false, + "time": 8.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Crystal_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_CrystalShard_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Gunpowder_C": { + "slug": "recipe-gunpowder-c", + "name": "Black Powder", + "className": "Recipe_Gunpowder_C", + "alternate": false, + "time": 4.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": true, + "manualTimeMultiplier": 2.0, + "ingredients": [ + { + "item": "Desc_Coal_C", + "amount": 1.0 + }, + { + "item": "Desc_Sulfur_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_Gunpowder_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_AlienPowerFuel_C": { + "slug": "recipe-alienpowerfuel-c", + "name": "Alien Power Matrix", + "className": "Recipe_AlienPowerFuel_C", + "alternate": false, + "time": 24.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SAMFluctuator_C", + "amount": 5.0 + }, + { + "item": "Desc_CrystalShard_C", + "amount": 3.0 + }, + { + "item": "Desc_QuantumOscillator_C", + "amount": 3.0 + }, + { + "item": "Desc_QuantumEnergy_C", + "amount": 24.0 + } + ], + "products": [ + { + "item": "Desc_AlienPowerFuel_C", + "amount": 1.0 + }, + { + "item": "Desc_DarkEnergy_C", + "amount": 24.0 + } + ], + "producedIn": [ + "Desc_QuantumEncoder_C" + ], + "isVariablePower": true, + "minPower": 0, + "maxPower": 2000 + }, + "Recipe_Mam_C": { + "slug": "recipe-mam-c", + "name": "MAM", + "className": "Recipe_Mam_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 5.0 + }, + { + "item": "Desc_Cable_C", + "amount": 15.0 + }, + { + "item": "Desc_Wire_C", + "amount": 45.0 + } + ], + "products": [ + { + "item": "Desc_Mam_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_StoragePlayer_C": { + "slug": "recipe-storageplayer-c", + "name": "Personal Storage Box", + "className": "Recipe_StoragePlayer_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 6.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 6.0 + } + ], + "products": [ + { + "item": "Desc_StoragePlayer_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ObjectScanner_C": { + "slug": "recipe-objectscanner-c", + "name": "Object Scanner", + "className": "Recipe_ObjectScanner_C", + "alternate": false, + "time": 40.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 4.0 + }, + { + "item": "Desc_Wire_C", + "amount": 20.0 + }, + { + "item": "Desc_IronScrew_C", + "amount": 50.0 + } + ], + "products": [ + { + "item": "BP_EquipmentDescriptorObjectScanner_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConveyorAttachmentMerger_C": { + "slug": "recipe-conveyorattachmentmerger-c", + "name": "Conveyor Merger", + "className": "Recipe_ConveyorAttachmentMerger_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 2.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_ConveyorAttachmentMerger_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConveyorAttachmentSplitter_C": { + "slug": "recipe-conveyorattachmentsplitter-c", + "name": "Conveyor Splitter", + "className": "Recipe_ConveyorAttachmentSplitter_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 2.0 + }, + { + "item": "Desc_Cable_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_ConveyorAttachmentSplitter_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConveyorLiftMk1_C": { + "slug": "recipe-conveyorliftmk1-c", + "name": "Conveyor Lift Mk.1", + "className": "Recipe_ConveyorLiftMk1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_ConveyorLiftMk1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddle_Ficsit_4x1_C": { + "slug": "recipe-quarterpipemiddle-ficsit-4x1-c", + "name": "Half Foundation (1 m)", + "className": "Recipe_QuarterPipeMiddle_Ficsit_4x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddle_Ficsit_4x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddle_Ficsit_4x2_C": { + "slug": "recipe-quarterpipemiddle-ficsit-4x2-c", + "name": "Half Foundation (2 m)", + "className": "Recipe_QuarterPipeMiddle_Ficsit_4x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddle_Ficsit_4x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddle_Ficsit_4x4_C": { + "slug": "recipe-quarterpipemiddle-ficsit-4x4-c", + "name": "Half Foundation (4 m)", + "className": "Recipe_QuarterPipeMiddle_Ficsit_4x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddle_Ficsit_4x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleInCorner_Ficsit_8x1_C": { + "slug": "recipe-quarterpipemiddleincorner-ficsit-8x1-c", + "name": "Inner Corner Extension (1 m)", + "className": "Recipe_QuarterPipeMiddleInCorner_Ficsit_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleInCorner_Ficsit_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleInCorner_Ficsit_8x2_C": { + "slug": "recipe-quarterpipemiddleincorner-ficsit-8x2-c", + "name": "Inner Corner Extension (2 m)", + "className": "Recipe_QuarterPipeMiddleInCorner_Ficsit_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleInCorner_Ficsit_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleInCorner_Ficsit_8x4_C": { + "slug": "recipe-quarterpipemiddleincorner-ficsit-8x4-c", + "name": "Inner Corner Extension (4 m)", + "className": "Recipe_QuarterPipeMiddleInCorner_Ficsit_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleInCorner_Ficsit_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleOutCorner_Ficsit_4x1_C": { + "slug": "recipe-quarterpipemiddleoutcorner-ficsit-4x1-c", + "name": "Outer Corner Extension (1 m)", + "className": "Recipe_QuarterPipeMiddleOutCorner_Ficsit_4x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleOutCorner_Ficsit_4x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleOutCorner_Ficsit_4x2_C": { + "slug": "recipe-quarterpipemiddleoutcorner-ficsit-4x2-c", + "name": "Outer Corner Extension (2 m)", + "className": "Recipe_QuarterPipeMiddleOutCorner_Ficsit_4x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleOutCorner_Ficsit_4x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleOutCorner_Ficsit_4x4_C": { + "slug": "recipe-quarterpipemiddleoutcorner-ficsit-4x4-c", + "name": "Outer Corner Extension (4 m)", + "className": "Recipe_QuarterPipeMiddleOutCorner_Ficsit_4x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleOutCorner_Ficsit_4x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Stair_FicsitSet_8x1_01_C": { + "slug": "recipe-stair-ficsitset-8x1-01-c", + "name": "Foundation Stairs (1 m)", + "className": "Recipe_Stair_FicsitSet_8x1_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Stair_FicsitSet_8x1_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Stair_FicsitSet_8x2_01_C": { + "slug": "recipe-stair-ficsitset-8x2-01-c", + "name": "Foundation Stairs (2 m)", + "className": "Recipe_Stair_FicsitSet_8x2_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Stair_FicsitSet_8x2_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Stair_FicsitSet_8x4_01_C": { + "slug": "recipe-stair-ficsitset-8x4-01-c", + "name": "Foundation Stairs (4 m)", + "className": "Recipe_Stair_FicsitSet_8x4_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Stair_FicsitSet_8x4_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Foundation_8x1_01_C": { + "slug": "recipe-foundation-8x1-01-c", + "name": "Foundation (1 m)", + "className": "Recipe_Foundation_8x1_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Foundation_8x1_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Foundation_8x2_01_C": { + "slug": "recipe-foundation-8x2-01-c", + "name": "Foundation (2 m)", + "className": "Recipe_Foundation_8x2_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Foundation_8x2_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Foundation_8x4_01_C": { + "slug": "recipe-foundation-8x4-01-c", + "name": "Foundation (4 m)", + "className": "Recipe_Foundation_8x4_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Foundation_8x4_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipe_C": { + "slug": "recipe-quarterpipe-c", + "name": "Quarter Pipe", + "className": "Recipe_QuarterPipe_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipe_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipe_02_C": { + "slug": "recipe-quarterpipe-02-c", + "name": "Inverted Quarter Pipe", + "className": "Recipe_QuarterPipe_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipe_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeCorner_01_C": { + "slug": "recipe-quarterpipecorner-01-c", + "name": "Inner Corner Quarter Pipe", + "className": "Recipe_QuarterPipeCorner_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeCorner_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeCorner_02_C": { + "slug": "recipe-quarterpipecorner-02-c", + "name": "Inverted Inner Corner Quarter Pipe", + "className": "Recipe_QuarterPipeCorner_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeCorner_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeCorner_03_C": { + "slug": "recipe-quarterpipecorner-03-c", + "name": "Outer Corner Quarter Pipe", + "className": "Recipe_QuarterPipeCorner_03_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeCorner_03_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeCorner_04_C": { + "slug": "recipe-quarterpipecorner-04-c", + "name": "Inverted Outer Corner Quarter Pipe", + "className": "Recipe_QuarterPipeCorner_04_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeCorner_04_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_8x1_01_C": { + "slug": "recipe-ramp-8x1-01-c", + "name": "Ramp (1 m)", + "className": "Recipe_Ramp_8x1_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_8x1_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_8x2_01_C": { + "slug": "recipe-ramp-8x2-01-c", + "name": "Ramp (2 m)", + "className": "Recipe_Ramp_8x2_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_8x2_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_8x4_01_C": { + "slug": "recipe-ramp-8x4-01-c", + "name": "Ramp (4 m)", + "className": "Recipe_Ramp_8x4_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_8x4_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_8x4_Inverted_01_C": { + "slug": "recipe-ramp-8x4-inverted-01-c", + "name": "Inverted Ramp (4 m)", + "className": "Recipe_Ramp_8x4_Inverted_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_8x4_Inverted_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_8x8x8_C": { + "slug": "recipe-ramp-8x8x8-c", + "name": "Double Ramp (8 m)", + "className": "Recipe_Ramp_8x8x8_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_8x8x8_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Diagonal_8x1_01_C": { + "slug": "recipe-ramp-diagonal-8x1-01-c", + "name": "Down Corner Ramp (1 m)", + "className": "Recipe_Ramp_Diagonal_8x1_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Diagonal_8x1_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Diagonal_8x1_02_C": { + "slug": "recipe-ramp-diagonal-8x1-02-c", + "name": "Up Corner Ramp (1 m)", + "className": "Recipe_Ramp_Diagonal_8x1_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Diagonal_8x1_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Diagonal_8x2_01_C": { + "slug": "recipe-ramp-diagonal-8x2-01-c", + "name": "Down Corner Ramp (2 m)", + "className": "Recipe_Ramp_Diagonal_8x2_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Diagonal_8x2_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Diagonal_8x2_02_C": { + "slug": "recipe-ramp-diagonal-8x2-02-c", + "name": "Up Corner Ramp (2 m)", + "className": "Recipe_Ramp_Diagonal_8x2_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Diagonal_8x2_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Diagonal_8x4_01_C": { + "slug": "recipe-ramp-diagonal-8x4-01-c", + "name": "Down Corner Ramp (4 m)", + "className": "Recipe_Ramp_Diagonal_8x4_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Diagonal_8x4_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Diagonal_8x4_02_C": { + "slug": "recipe-ramp-diagonal-8x4-02-c", + "name": "Up Corner Ramp (4 m)", + "className": "Recipe_Ramp_Diagonal_8x4_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Diagonal_8x4_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampDouble_C": { + "slug": "recipe-rampdouble-c", + "name": "Double Ramp (4 m)", + "className": "Recipe_RampDouble_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampDouble_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampDouble_8x1_C": { + "slug": "recipe-rampdouble-8x1-c", + "name": "Double Ramp (2 m)", + "className": "Recipe_RampDouble_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampDouble_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampInverted_8x1_C": { + "slug": "recipe-rampinverted-8x1-c", + "name": "Inverted Ramp (1 m)", + "className": "Recipe_RampInverted_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampInverted_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampInverted_8x1_Corner_01_C": { + "slug": "recipe-rampinverted-8x1-corner-01-c", + "name": "Inverted Up Corner (1 m)", + "className": "Recipe_RampInverted_8x1_Corner_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampInverted_8x1_Corner_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampInverted_8x1_Corner_02_C": { + "slug": "recipe-rampinverted-8x1-corner-02-c", + "name": "Inverted Down Corner (1 m)", + "className": "Recipe_RampInverted_8x1_Corner_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampInverted_8x1_Corner_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampInverted_8x2_01_C": { + "slug": "recipe-rampinverted-8x2-01-c", + "name": "Inverted Ramp (2 m)", + "className": "Recipe_RampInverted_8x2_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampInverted_8x2_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampInverted_8x2_Corner_01_C": { + "slug": "recipe-rampinverted-8x2-corner-01-c", + "name": "Inverted Up Corner (2 m)", + "className": "Recipe_RampInverted_8x2_Corner_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampInverted_8x2_Corner_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampInverted_8x2_Corner_02_C": { + "slug": "recipe-rampinverted-8x2-corner-02-c", + "name": "Inverted Down Corner (2 m)", + "className": "Recipe_RampInverted_8x2_Corner_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampInverted_8x2_Corner_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampInverted_8x4_Corner_01_C": { + "slug": "recipe-rampinverted-8x4-corner-01-c", + "name": "Inverted Up Corner (4 m)", + "className": "Recipe_RampInverted_8x4_Corner_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampInverted_8x4_Corner_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampInverted_8x4_Corner_02_C": { + "slug": "recipe-rampinverted-8x4-corner-02-c", + "name": "Inverted Down Corner (4 m)", + "className": "Recipe_RampInverted_8x4_Corner_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampInverted_8x4_Corner_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_LookoutTower_C": { + "slug": "recipe-lookouttower-c", + "name": "Lookout Tower", + "className": "Recipe_LookoutTower_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 5.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_LookoutTower_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_DownQuarterPipe_Concrete_8x4_C": { + "slug": "recipe-downquarterpipe-concrete-8x4-c", + "name": "Inverted Quarter Pipe", + "className": "Recipe_DownQuarterPipe_Concrete_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_DownQuarterPipe_Concrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_DownQuarterPipe_ConcreteInCorner_8x4_C": { + "slug": "recipe-downquarterpipe-concreteincorner-8x4-c", + "name": "Inverted Inner Corner Quarter Pipe", + "className": "Recipe_DownQuarterPipe_ConcreteInCorner_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_DownQuarterPipeInCorner_Concrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_DownQuarterPipe_ConcreteOutCorner_8x4_C": { + "slug": "recipe-downquarterpipe-concreteoutcorner-8x4-c", + "name": "Inverted Outer Corner Quarter Pipe", + "className": "Recipe_DownQuarterPipe_ConcreteOutCorner_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_DownQuarterPipeOutCorner_Concrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Foundation_Concrete_8x1_C": { + "slug": "recipe-foundation-concrete-8x1-c", + "name": "Foundation (1 m)", + "className": "Recipe_Foundation_Concrete_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Foundation_Concrete_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Foundation_Concrete_8x2_C": { + "slug": "recipe-foundation-concrete-8x2-c", + "name": "Foundation (2 m)", + "className": "Recipe_Foundation_Concrete_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Foundation_Concrete_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Foundation_Concrete_8x4_C": { + "slug": "recipe-foundation-concrete-8x4-c", + "name": "Foundation (4 m)", + "className": "Recipe_Foundation_Concrete_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Foundation_Concrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_Concrete_8x1_C": { + "slug": "recipe-invertedramp-concrete-8x1-c", + "name": "Inverted Ramp (1 m)", + "className": "Recipe_InvertedRamp_Concrete_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_Concrete_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_Concrete_8x2_C": { + "slug": "recipe-invertedramp-concrete-8x2-c", + "name": "Inverted Ramp (2 m)", + "className": "Recipe_InvertedRamp_Concrete_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_Concrete_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_Concrete_8x4_C": { + "slug": "recipe-invertedramp-concrete-8x4-c", + "name": "Inverted Ramp (4 m)", + "className": "Recipe_InvertedRamp_Concrete_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_Concrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_DCorner_Concrete_8x1_C": { + "slug": "recipe-invertedramp-dcorner-concrete-8x1-c", + "name": "Inverted Down Corner (1 m)", + "className": "Recipe_InvertedRamp_DCorner_Concrete_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_DCorner_Concrete_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_DCorner_Concrete_8x2_C": { + "slug": "recipe-invertedramp-dcorner-concrete-8x2-c", + "name": "Inverted Down Corner (2 m)", + "className": "Recipe_InvertedRamp_DCorner_Concrete_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_DCorner_Concrete_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_DCorner_Concrete_8x4_C": { + "slug": "recipe-invertedramp-dcorner-concrete-8x4-c", + "name": "Inverted Down Corner (4 m)", + "className": "Recipe_InvertedRamp_DCorner_Concrete_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_DCorner_Concrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_UCorner_Concrete_8x1_C": { + "slug": "recipe-invertedramp-ucorner-concrete-8x1-c", + "name": "Inverted Up Corner (1 m)", + "className": "Recipe_InvertedRamp_UCorner_Concrete_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_UCorner_Concrete_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_UCorner_Concrete_8x2_C": { + "slug": "recipe-invertedramp-ucorner-concrete-8x2-c", + "name": "Inverted Up Corner (2 m)", + "className": "Recipe_InvertedRamp_UCorner_Concrete_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_UCorner_Concrete_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_UCorner_Concrete_8x4_C": { + "slug": "recipe-invertedramp-ucorner-concrete-8x4-c", + "name": "Inverted Up Corner (4 m)", + "className": "Recipe_InvertedRamp_UCorner_Concrete_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_UCorner_Concrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipe_Concrete_8x4_C": { + "slug": "recipe-quarterpipe-concrete-8x4-c", + "name": "Quarter Pipe", + "className": "Recipe_QuarterPipe_Concrete_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipe_Concrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeInCorner_Concrete_8x4_C": { + "slug": "recipe-quarterpipeincorner-concrete-8x4-c", + "name": "Inner Corner Quarter Pipe", + "className": "Recipe_QuarterPipeInCorner_Concrete_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeInCorner_Concrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddle_Concrete_8x1_C": { + "slug": "recipe-quarterpipemiddle-concrete-8x1-c", + "name": "Half Foundation (1 m)", + "className": "Recipe_QuarterPipeMiddle_Concrete_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddle_Concrete_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddle_Concrete_8x2_C": { + "slug": "recipe-quarterpipemiddle-concrete-8x2-c", + "name": "Half Foundation (2 m)", + "className": "Recipe_QuarterPipeMiddle_Concrete_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddle_Concrete_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddle_Concrete_8x4_C": { + "slug": "recipe-quarterpipemiddle-concrete-8x4-c", + "name": "Half Foundation (4 m)", + "className": "Recipe_QuarterPipeMiddle_Concrete_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddle_Concrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleInCorner_Concrete_8x1_C": { + "slug": "recipe-quarterpipemiddleincorner-concrete-8x1-c", + "name": "Inner Corner Extension (1 m)", + "className": "Recipe_QuarterPipeMiddleInCorner_Concrete_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleInCorner_Concrete_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleInCorner_Concrete_8x2_C": { + "slug": "recipe-quarterpipemiddleincorner-concrete-8x2-c", + "name": "Inner Corner Extension (2 m)", + "className": "Recipe_QuarterPipeMiddleInCorner_Concrete_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleInCorner_Concrete_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleInCorner_Concrete_8x4_C": { + "slug": "recipe-quarterpipemiddleincorner-concrete-8x4-c", + "name": "Inner Corner Extension (4 m)", + "className": "Recipe_QuarterPipeMiddleInCorner_Concrete_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleInCorner_Concrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleOutCorner_Concrete_4x1_C": { + "slug": "recipe-quarterpipemiddleoutcorner-concrete-4x1-c", + "name": "Outer Corner Extension (1 m)", + "className": "Recipe_QuarterPipeMiddleOutCorner_Concrete_4x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleOutCorner_Concrete_4x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleOutCorner_Concrete_4x2_C": { + "slug": "recipe-quarterpipemiddleoutcorner-concrete-4x2-c", + "name": "Outer Corner Extension (2 m)", + "className": "Recipe_QuarterPipeMiddleOutCorner_Concrete_4x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleOutCorner_Concrete_4x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleOutCorner_Concrete_4x4_C": { + "slug": "recipe-quarterpipemiddleoutcorner-concrete-4x4-c", + "name": "Outer Corner Extension (4 m)", + "className": "Recipe_QuarterPipeMiddleOutCorner_Concrete_4x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleOutCorner_Concrete_4x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeOutCorner_Concrete_8x4_C": { + "slug": "recipe-quarterpipeoutcorner-concrete-8x4-c", + "name": "Outer Corner Quarter Pipe", + "className": "Recipe_QuarterPipeOutCorner_Concrete_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeOutCorner_Concrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Concrete_8x1_C": { + "slug": "recipe-ramp-concrete-8x1-c", + "name": "Ramp (1 m)", + "className": "Recipe_Ramp_Concrete_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Concrete_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Concrete_8x2_C": { + "slug": "recipe-ramp-concrete-8x2-c", + "name": "Ramp (2 m)", + "className": "Recipe_Ramp_Concrete_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Concrete_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Concrete_8x4_C": { + "slug": "recipe-ramp-concrete-8x4-c", + "name": "Ramp (4 m)", + "className": "Recipe_Ramp_Concrete_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Concrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_DownCorner_Concrete_8x1_C": { + "slug": "recipe-ramp-downcorner-concrete-8x1-c", + "name": "Down Corner Ramp (1 m)", + "className": "Recipe_Ramp_DownCorner_Concrete_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_DownCorner_Concrete_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_DownCorner_Concrete_8x2_C": { + "slug": "recipe-ramp-downcorner-concrete-8x2-c", + "name": "Down Corner Ramp (2 m)", + "className": "Recipe_Ramp_DownCorner_Concrete_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_DownCorner_Concrete_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_DownCorner_Concrete_8x4_C": { + "slug": "recipe-ramp-downcorner-concrete-8x4-c", + "name": "Down Corner Ramp (4 m)", + "className": "Recipe_Ramp_DownCorner_Concrete_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_DownCorner_Concrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_UpCorner_Concrete_8x1_C": { + "slug": "recipe-ramp-upcorner-concrete-8x1-c", + "name": "Up Corner Ramp (1 m)", + "className": "Recipe_Ramp_UpCorner_Concrete_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_UpCorner_Concrete_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_UpCorner_Concrete_8x2_C": { + "slug": "recipe-ramp-upcorner-concrete-8x2-c", + "name": "Up Corner Ramp (2 m)", + "className": "Recipe_Ramp_UpCorner_Concrete_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_UpCorner_Concrete_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_UpCorner_Concrete_8x4_C": { + "slug": "recipe-ramp-upcorner-concrete-8x4-c", + "name": "Up Corner Ramp (4 m)", + "className": "Recipe_Ramp_UpCorner_Concrete_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_UpCorner_Concrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampDouble_Concrete_8x1_C": { + "slug": "recipe-rampdouble-concrete-8x1-c", + "name": "Double Ramp (2 m)", + "className": "Recipe_RampDouble_Concrete_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampDouble_Concrete_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampDouble_Concrete_8x2_C": { + "slug": "recipe-rampdouble-concrete-8x2-c", + "name": "Double Ramp (4 m)", + "className": "Recipe_RampDouble_Concrete_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampDouble_Concrete_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampDouble_Concrete_8x4_C": { + "slug": "recipe-rampdouble-concrete-8x4-c", + "name": "Double Ramp (8 m)", + "className": "Recipe_RampDouble_Concrete_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampDouble_Concrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Stair_Concrete_8x1_C": { + "slug": "recipe-stair-concrete-8x1-c", + "name": "Foundation Stairs (1 m)", + "className": "Recipe_Stair_Concrete_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Stair_Concrete_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Stair_Concrete_8x2_C": { + "slug": "recipe-stair-concrete-8x2-c", + "name": "Foundation Stairs (2 m)", + "className": "Recipe_Stair_Concrete_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Stair_Concrete_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Stair_Concrete_8x4_C": { + "slug": "recipe-stair-concrete-8x4-c", + "name": "Foundation Stairs (4 m)", + "className": "Recipe_Stair_Concrete_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Stair_Concrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_DownQuarterPipe_Grip_8x4_C": { + "slug": "recipe-downquarterpipe-grip-8x4-c", + "name": "Inverted Quarter Pipe", + "className": "Recipe_DownQuarterPipe_Grip_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_DownQuarterPipe_Grip_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_DownQuarterPipe_GripInCorner_8x4_C": { + "slug": "recipe-downquarterpipe-gripincorner-8x4-c", + "name": "Inverted Inner Corner Quarter Pipe", + "className": "Recipe_DownQuarterPipe_GripInCorner_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_DownQuarterPipeInCorner_Grip_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_DownQuarterPipe_GripOutCorner_8x4_C": { + "slug": "recipe-downquarterpipe-gripoutcorner-8x4-c", + "name": "Inverted Outer Corner Quarter Pipe", + "className": "Recipe_DownQuarterPipe_GripOutCorner_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_DownQuarterPipeOutCorner_Grip_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Foundation_Metal_8x1_C": { + "slug": "recipe-foundation-metal-8x1-c", + "name": "Foundation (1 m)", + "className": "Recipe_Foundation_Metal_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Foundation_Metal_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Foundation_Metal_8x2_C": { + "slug": "recipe-foundation-metal-8x2-c", + "name": "Foundation (2 m)", + "className": "Recipe_Foundation_Metal_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Foundation_Metal_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Foundation_Metal_8x4_C": { + "slug": "recipe-foundation-metal-8x4-c", + "name": "Foundation (4 m)", + "className": "Recipe_Foundation_Metal_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Foundation_Metal_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_DCorner_Metal_8x1_C": { + "slug": "recipe-invertedramp-dcorner-metal-8x1-c", + "name": "Inverted Down Corner (1 m)", + "className": "Recipe_InvertedRamp_DCorner_Metal_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_DCorner_Metal_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_DCorner_Metal_8x2_C": { + "slug": "recipe-invertedramp-dcorner-metal-8x2-c", + "name": "Inverted Down Corner (2 m)", + "className": "Recipe_InvertedRamp_DCorner_Metal_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_DCorner_Metal_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_DCorner_Metal_8x4_C": { + "slug": "recipe-invertedramp-dcorner-metal-8x4-c", + "name": "Inverted Down Corner (4 m)", + "className": "Recipe_InvertedRamp_DCorner_Metal_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_DCorner_Metal_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_Metal_8x1_C": { + "slug": "recipe-invertedramp-metal-8x1-c", + "name": "Inverted Ramp (1 m)", + "className": "Recipe_InvertedRamp_Metal_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_Metal_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_Metal_8x2_C": { + "slug": "recipe-invertedramp-metal-8x2-c", + "name": "Inverted Ramp (2 m)", + "className": "Recipe_InvertedRamp_Metal_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_Metal_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_Metal_8x4_C": { + "slug": "recipe-invertedramp-metal-8x4-c", + "name": "Inverted Ramp (4 m)", + "className": "Recipe_InvertedRamp_Metal_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_Metal_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_UCorner_Metal_8x1_C": { + "slug": "recipe-invertedramp-ucorner-metal-8x1-c", + "name": "Inverted Up Corner (1 m)", + "className": "Recipe_InvertedRamp_UCorner_Metal_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_UCorner_Metal_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_UCorner_Metal_8x2_C": { + "slug": "recipe-invertedramp-ucorner-metal-8x2-c", + "name": "Inverted Up Corner (2 m)", + "className": "Recipe_InvertedRamp_UCorner_Metal_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_UCorner_Metal_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_UCorner_Metal_8x4_C": { + "slug": "recipe-invertedramp-ucorner-metal-8x4-c", + "name": "Inverted Up Corner (4 m)", + "className": "Recipe_InvertedRamp_UCorner_Metal_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_UCorner_Metal_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipe_Grip_8x4_C": { + "slug": "recipe-quarterpipe-grip-8x4-c", + "name": "Quarter Pipe", + "className": "Recipe_QuarterPipe_Grip_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipe_Grip_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeInCorner_Grip_8x4_C": { + "slug": "recipe-quarterpipeincorner-grip-8x4-c", + "name": "Inner Corner Quarter Pipe", + "className": "Recipe_QuarterPipeInCorner_Grip_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeInCorner_Grip_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddle_Grip_8x1_C": { + "slug": "recipe-quarterpipemiddle-grip-8x1-c", + "name": "Half Foundation (1 m)", + "className": "Recipe_QuarterPipeMiddle_Grip_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddle_Grip_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddle_Grip_8x2_C": { + "slug": "recipe-quarterpipemiddle-grip-8x2-c", + "name": "Half Foundation (2 m)", + "className": "Recipe_QuarterPipeMiddle_Grip_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddle_Grip_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddle_Grip_8x4_C": { + "slug": "recipe-quarterpipemiddle-grip-8x4-c", + "name": "Half Foundation (4 m)", + "className": "Recipe_QuarterPipeMiddle_Grip_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddle_Grip_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleInCorner_Grip_8x1_C": { + "slug": "recipe-quarterpipemiddleincorner-grip-8x1-c", + "name": "Inner Corner Extension (1 m)", + "className": "Recipe_QuarterPipeMiddleInCorner_Grip_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleInCorner_Grip_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleInCorner_Grip_8x2_C": { + "slug": "recipe-quarterpipemiddleincorner-grip-8x2-c", + "name": "Inner Corner Extension (2 m)", + "className": "Recipe_QuarterPipeMiddleInCorner_Grip_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleInCorner_Grip_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleInCorner_Grip_8x4_C": { + "slug": "recipe-quarterpipemiddleincorner-grip-8x4-c", + "name": "Inner Corner Extension (4 m)", + "className": "Recipe_QuarterPipeMiddleInCorner_Grip_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleInCorner_Grip_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleOutCorner_Grip_4x1_C": { + "slug": "recipe-quarterpipemiddleoutcorner-grip-4x1-c", + "name": "Outer Corner Extension (1 m)", + "className": "Recipe_QuarterPipeMiddleOutCorner_Grip_4x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleOutCorner_Grip_4x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleOutCorner_Grip_4x2_C": { + "slug": "recipe-quarterpipemiddleoutcorner-grip-4x2-c", + "name": "Outer Corner Extension (2 m)", + "className": "Recipe_QuarterPipeMiddleOutCorner_Grip_4x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleOutCorner_Grip_4x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleOutCorner_Grip_4x4_C": { + "slug": "recipe-quarterpipemiddleoutcorner-grip-4x4-c", + "name": "Outer Corner Extension (4 m)", + "className": "Recipe_QuarterPipeMiddleOutCorner_Grip_4x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleOutCorner_Grip_4x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeOutCorner_Grip_8x4_C": { + "slug": "recipe-quarterpipeoutcorner-grip-8x4-c", + "name": "Outer Corner Quarter Pipe", + "className": "Recipe_QuarterPipeOutCorner_Grip_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeOutCorner_Grip_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_DownCorner_Metal_8x1_C": { + "slug": "recipe-ramp-downcorner-metal-8x1-c", + "name": "Down Corner Ramp (1 m)", + "className": "Recipe_Ramp_DownCorner_Metal_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_DownCorner_Metal_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_DownCorner_Metal_8x2_C": { + "slug": "recipe-ramp-downcorner-metal-8x2-c", + "name": "Down Corner Ramp (2 m)", + "className": "Recipe_Ramp_DownCorner_Metal_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_DownCorner_Metal_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_DownCorner_Metal_8x4_C": { + "slug": "recipe-ramp-downcorner-metal-8x4-c", + "name": "Down Corner Ramp (4 m)", + "className": "Recipe_Ramp_DownCorner_Metal_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_DownCorner_Metal_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Metal_8x1_C": { + "slug": "recipe-ramp-metal-8x1-c", + "name": "Ramp (1 m)", + "className": "Recipe_Ramp_Metal_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Metal_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Metal_8x2_C": { + "slug": "recipe-ramp-metal-8x2-c", + "name": "Ramp (2 m)", + "className": "Recipe_Ramp_Metal_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Metal_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Metal_8x4_C": { + "slug": "recipe-ramp-metal-8x4-c", + "name": "Ramp (4 m)", + "className": "Recipe_Ramp_Metal_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Metal_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_UpCorner_Metal_8x1_C": { + "slug": "recipe-ramp-upcorner-metal-8x1-c", + "name": "Up Corner Ramp (1 m)", + "className": "Recipe_Ramp_UpCorner_Metal_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_UpCorner_Metal_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_UpCorner_Metal_8x2_C": { + "slug": "recipe-ramp-upcorner-metal-8x2-c", + "name": "Up Corner Ramp (2 m)", + "className": "Recipe_Ramp_UpCorner_Metal_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_UpCorner_Metal_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_UpCorner_Metal_8x4_C": { + "slug": "recipe-ramp-upcorner-metal-8x4-c", + "name": "Up Corner Ramp (4 m)", + "className": "Recipe_Ramp_UpCorner_Metal_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_UpCorner_Metal_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampDouble_Metal_8x1_C": { + "slug": "recipe-rampdouble-metal-8x1-c", + "name": "Double Ramp (2 m)", + "className": "Recipe_RampDouble_Metal_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampDouble_Metal_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampDouble_Metal_8x2_C": { + "slug": "recipe-rampdouble-metal-8x2-c", + "name": "Double Ramp (4 m)", + "className": "Recipe_RampDouble_Metal_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampDouble_Metal_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampDouble_Metal_8x4_C": { + "slug": "recipe-rampdouble-metal-8x4-c", + "name": "Double Ramp (8 m)", + "className": "Recipe_RampDouble_Metal_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampDouble_Metal_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Stair_GripMetal_8x1_C": { + "slug": "recipe-stair-gripmetal-8x1-c", + "name": "Foundation Stairs (1 m)", + "className": "Recipe_Stair_GripMetal_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Stair_GripMetal_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Stair_GripMetal_8x2_C": { + "slug": "recipe-stair-gripmetal-8x2-c", + "name": "Foundation Stairs (2 m)", + "className": "Recipe_Stair_GripMetal_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Stair_GripMetal_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Stair_GripMetal_8x4_C": { + "slug": "recipe-stair-gripmetal-8x4-c", + "name": "Foundation Stairs (4 m)", + "className": "Recipe_Stair_GripMetal_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Stair_GripMetal_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_DownQuarterPipe_ConcretePolished_8x4_C": { + "slug": "recipe-downquarterpipe-concretepolished-8x4-c", + "name": "Inverted Quarter Pipe", + "className": "Recipe_DownQuarterPipe_ConcretePolished_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_DownQuarterPipe_ConcretePolished_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_DownQuarterPipe_ConcretePolishedInCorner_8x4_C": { + "slug": "recipe-downquarterpipe-concretepolishedincorner-8x4-c", + "name": "Inverted Inner Corner Quarter Pipe", + "className": "Recipe_DownQuarterPipe_ConcretePolishedInCorner_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_DownQuarterPipeInCorner_ConcretePolished_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_DownQuarterPipe_ConcretePolishedOutCorner_8x4_C": { + "slug": "recipe-downquarterpipe-concretepolishedoutcorner-8x4-c", + "name": "Inverted Outer Corner Quarter Pipe", + "className": "Recipe_DownQuarterPipe_ConcretePolishedOutCorner_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_DownQuarterPipeOutCorner_ConcretePolished_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Foundation_ConcretePolished_8x1_C": { + "slug": "recipe-foundation-concretepolished-8x1-c", + "name": "Foundation (1 m)", + "className": "Recipe_Foundation_ConcretePolished_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Foundation_ConcretePolished_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_DCorner_Polished_8x1_C": { + "slug": "recipe-invertedramp-dcorner-polished-8x1-c", + "name": "Inverted Down Corner (1 m)", + "className": "Recipe_InvertedRamp_DCorner_Polished_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_DCorner_Polished_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_DCorner_Polished_8x2_C": { + "slug": "recipe-invertedramp-dcorner-polished-8x2-c", + "name": "Inverted Down Corner (2 m)", + "className": "Recipe_InvertedRamp_DCorner_Polished_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_DCorner_Polished_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_DCorner_Polished_8x4_C": { + "slug": "recipe-invertedramp-dcorner-polished-8x4-c", + "name": "Inverted Down Corner (4 m)", + "className": "Recipe_InvertedRamp_DCorner_Polished_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_DCorner_Polished_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_Polished_8x1_C": { + "slug": "recipe-invertedramp-polished-8x1-c", + "name": "Inverted Ramp (1 m)", + "className": "Recipe_InvertedRamp_Polished_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_Polished_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_Polished_8x2_C": { + "slug": "recipe-invertedramp-polished-8x2-c", + "name": "Inverted Ramp (2 m)", + "className": "Recipe_InvertedRamp_Polished_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_Polished_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_Polished_8x4_C": { + "slug": "recipe-invertedramp-polished-8x4-c", + "name": "Inverted Ramp (4 m)", + "className": "Recipe_InvertedRamp_Polished_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_Polished_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_UCorner_Polished_8x1_C": { + "slug": "recipe-invertedramp-ucorner-polished-8x1-c", + "name": "Inverted Up Corner (1 m)", + "className": "Recipe_InvertedRamp_UCorner_Polished_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_UCorner_Polished_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_UCorner_Polished_8x2_C": { + "slug": "recipe-invertedramp-ucorner-polished-8x2-c", + "name": "Inverted Up Corner (2 m)", + "className": "Recipe_InvertedRamp_UCorner_Polished_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_UCorner_Polished_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_UCorner_Polished_8x4_C": { + "slug": "recipe-invertedramp-ucorner-polished-8x4-c", + "name": "Inverted Up Corner (4 m)", + "className": "Recipe_InvertedRamp_UCorner_Polished_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_UCorner_Polished_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipe_ConcretePolished_8x4_C": { + "slug": "recipe-quarterpipe-concretepolished-8x4-c", + "name": "Quarter Pipe", + "className": "Recipe_QuarterPipe_ConcretePolished_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipe_ConcretePolished_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeInCorner_ConcretePolished_8x4_C": { + "slug": "recipe-quarterpipeincorner-concretepolished-8x4-c", + "name": "Inner Corner Quarter Pipe", + "className": "Recipe_QuarterPipeInCorner_ConcretePolished_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeInCorner_ConcretePolished_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddle_PolishedConcrete_8x1_C": { + "slug": "recipe-quarterpipemiddle-polishedconcrete-8x1-c", + "name": "Half Foundation (1 m)", + "className": "Recipe_QuarterPipeMiddle_PolishedConcrete_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddle_PolishedConcrete_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddle_PolishedConcrete_8x2_C": { + "slug": "recipe-quarterpipemiddle-polishedconcrete-8x2-c", + "name": "Half Foundation (2 m)", + "className": "Recipe_QuarterPipeMiddle_PolishedConcrete_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddle_PolishedConcrete_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddle_PolishedConcrete_8x4_C": { + "slug": "recipe-quarterpipemiddle-polishedconcrete-8x4-c", + "name": "Half Foundation (4 m)", + "className": "Recipe_QuarterPipeMiddle_PolishedConcrete_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddle_PolishedConcrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleInCorner_PolishedConcrete_8x1_C": { + "slug": "recipe-quarterpipemiddleincorner-polishedconcrete-8x1-c", + "name": "Inner Corner Extension (1 m)", + "className": "Recipe_QuarterPipeMiddleInCorner_PolishedConcrete_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleInCorner_PolishedConcrete_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleInCorner_PolishedConcrete_8x2_C": { + "slug": "recipe-quarterpipemiddleincorner-polishedconcrete-8x2-c", + "name": "Inner Corner Extension (2 m)", + "className": "Recipe_QuarterPipeMiddleInCorner_PolishedConcrete_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleInCorner_PolishedConcrete_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleInCorner_PolishedConcrete_8x4_C": { + "slug": "recipe-quarterpipemiddleincorner-polishedconcrete-8x4-c", + "name": "Inner Corner Extension (4 m)", + "className": "Recipe_QuarterPipeMiddleInCorner_PolishedConcrete_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleInCorner_PolishedConcrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleOutCorner_PolishedConcrete_4x1_C": { + "slug": "recipe-quarterpipemiddleoutcorner-polishedconcrete-4x1-c", + "name": "Outer Corner Extension (1 m)", + "className": "Recipe_QuarterPipeMiddleOutCorner_PolishedConcrete_4x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleOutCorner_PolishedConcrete_4x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleOutCorner_PolishedConcrete_4x2_C": { + "slug": "recipe-quarterpipemiddleoutcorner-polishedconcrete-4x2-c", + "name": "Outer Corner Extension (2 m)", + "className": "Recipe_QuarterPipeMiddleOutCorner_PolishedConcrete_4x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleOutCorner_PolishedConcrete_4x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleOutCorner_PolishedConcrete_4x4_C": { + "slug": "recipe-quarterpipemiddleoutcorner-polishedconcrete-4x4-c", + "name": "Outer Corner Extension (4 m)", + "className": "Recipe_QuarterPipeMiddleOutCorner_PolishedConcrete_4x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleOutCorner_PolishedConcrete_4x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeOutCorner_ConcretePolished_8x4_C": { + "slug": "recipe-quarterpipeoutcorner-concretepolished-8x4-c", + "name": "Outer Corner Quarter Pipe", + "className": "Recipe_QuarterPipeOutCorner_ConcretePolished_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeOutCorner_ConcretePolished_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_DownCorner_Polished_8x1_C": { + "slug": "recipe-ramp-downcorner-polished-8x1-c", + "name": "Down Corner Ramp (1 m)", + "className": "Recipe_Ramp_DownCorner_Polished_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_DownCorner_Polished_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_DownCorner_Polished_8x2_C": { + "slug": "recipe-ramp-downcorner-polished-8x2-c", + "name": "Down Corner Ramp (2 m)", + "className": "Recipe_Ramp_DownCorner_Polished_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_DownCorner_Polished_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_DownCorner_Polished_8x4_C": { + "slug": "recipe-ramp-downcorner-polished-8x4-c", + "name": "Down Corner Ramp (4 m)", + "className": "Recipe_Ramp_DownCorner_Polished_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_DownCorner_Polished_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Polished_8x1_C": { + "slug": "recipe-ramp-polished-8x1-c", + "name": "Ramp (1 m)", + "className": "Recipe_Ramp_Polished_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Polished_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Polished_8x2_C": { + "slug": "recipe-ramp-polished-8x2-c", + "name": "Ramp (2 m)", + "className": "Recipe_Ramp_Polished_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Polished_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Polished_8x4_C": { + "slug": "recipe-ramp-polished-8x4-c", + "name": "Ramp (4 m)", + "className": "Recipe_Ramp_Polished_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Polished_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_UpCorner_Polished_8x1_C": { + "slug": "recipe-ramp-upcorner-polished-8x1-c", + "name": "Up Corner Ramp (1 m)", + "className": "Recipe_Ramp_UpCorner_Polished_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_UpCorner_Polished_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_UpCorner_Polished_8x2_C": { + "slug": "recipe-ramp-upcorner-polished-8x2-c", + "name": "Up Corner Ramp (2 m)", + "className": "Recipe_Ramp_UpCorner_Polished_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_UpCorner_Polished_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_UpCorner_Polished_8x4_C": { + "slug": "recipe-ramp-upcorner-polished-8x4-c", + "name": "Up Corner Ramp (4 m)", + "className": "Recipe_Ramp_UpCorner_Polished_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_UpCorner_Polished_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampDouble_Polished_8x1_C": { + "slug": "recipe-rampdouble-polished-8x1-c", + "name": "Double Ramp (2 m)", + "className": "Recipe_RampDouble_Polished_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampDouble_Polished_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampDouble_Polished_8x2_C": { + "slug": "recipe-rampdouble-polished-8x2-c", + "name": "Double Ramp (4 m)", + "className": "Recipe_RampDouble_Polished_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampDouble_Polished_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampDouble_Polished_8x4_C": { + "slug": "recipe-rampdouble-polished-8x4-c", + "name": "Double Ramp (8 m)", + "className": "Recipe_RampDouble_Polished_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampDouble_Polished_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Stair_PolishedConcrete_8x1_C": { + "slug": "recipe-stair-polishedconcrete-8x1-c", + "name": "Foundation Stairs (1 m)", + "className": "Recipe_Stair_PolishedConcrete_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Stair_PolishedConcrete_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Stair_PolishedConcrete_8x2_C": { + "slug": "recipe-stair-polishedconcrete-8x2-c", + "name": "Foundation Stairs (2 m)", + "className": "Recipe_Stair_PolishedConcrete_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Stair_PolishedConcrete_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Stair_PolishedConcrete_8x4_C": { + "slug": "recipe-stair-polishedconcrete-8x4-c", + "name": "Foundation Stairs (4 m)", + "className": "Recipe_Stair_PolishedConcrete_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Stair_PolishedConcrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_DownQuarterPipe_Asphalt_8x4_C": { + "slug": "recipe-downquarterpipe-asphalt-8x4-c", + "name": "Inverted Quarter Pipe", + "className": "Recipe_DownQuarterPipe_Asphalt_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_DownQuarterPipe_Asphalt_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_DownQuarterPipe_AsphaltInCorner_8x4_C": { + "slug": "recipe-downquarterpipe-asphaltincorner-8x4-c", + "name": "Inverted Inner Corner Quarter Pipe", + "className": "Recipe_DownQuarterPipe_AsphaltInCorner_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_DownQuarterPipeInCorner_Asphalt_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_DownQuarterPipe_AsphaltOutCorner_8x4_C": { + "slug": "recipe-downquarterpipe-asphaltoutcorner-8x4-c", + "name": "Inverted Outer Corner Quarter Pipe", + "className": "Recipe_DownQuarterPipe_AsphaltOutCorner_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_DownQuarterPipeOutCorner_Asphalt_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Foundation_Asphalt_8x1_C": { + "slug": "recipe-foundation-asphalt-8x1-c", + "name": "Foundation (1 m)", + "className": "Recipe_Foundation_Asphalt_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Foundation_Asphalt_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Foundation_Asphalt_8x2_C": { + "slug": "recipe-foundation-asphalt-8x2-c", + "name": "Foundation (2 m)", + "className": "Recipe_Foundation_Asphalt_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Foundation_Asphalt_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Foundation_Asphalt_8x4_C": { + "slug": "recipe-foundation-asphalt-8x4-c", + "name": "Foundation (4 m)", + "className": "Recipe_Foundation_Asphalt_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Foundation_Asphalt_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_Asphalt_8x1_C": { + "slug": "recipe-invertedramp-asphalt-8x1-c", + "name": "Inverted Ramp (1 m)", + "className": "Recipe_InvertedRamp_Asphalt_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_Asphalt_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_Asphalt_8x2_C": { + "slug": "recipe-invertedramp-asphalt-8x2-c", + "name": "Inverted Ramp (2 m)", + "className": "Recipe_InvertedRamp_Asphalt_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_Asphalt_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_Asphalt_8x4_C": { + "slug": "recipe-invertedramp-asphalt-8x4-c", + "name": "Inverted Ramp (4 m)", + "className": "Recipe_InvertedRamp_Asphalt_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_Asphalt_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_DCorner_Asphalt_8x1_C": { + "slug": "recipe-invertedramp-dcorner-asphalt-8x1-c", + "name": "Inverted Down Corner (1 m)", + "className": "Recipe_InvertedRamp_DCorner_Asphalt_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_DCorner_Asphalt_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_DCorner_Asphalt_8x2_C": { + "slug": "recipe-invertedramp-dcorner-asphalt-8x2-c", + "name": "Inverted Down Corner (2 m)", + "className": "Recipe_InvertedRamp_DCorner_Asphalt_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_DCorner_Asphalt_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_DCorner_Asphalt_8x4_C": { + "slug": "recipe-invertedramp-dcorner-asphalt-8x4-c", + "name": "Inverted Down Corner (4 m)", + "className": "Recipe_InvertedRamp_DCorner_Asphalt_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_DCorner_Asphalt_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_UCorner_Asphalt_8x1_C": { + "slug": "recipe-invertedramp-ucorner-asphalt-8x1-c", + "name": "Inverted Up Corner (1 m)", + "className": "Recipe_InvertedRamp_UCorner_Asphalt_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_UCorner_Asphalt_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_UCorner_Asphalt_8x2_C": { + "slug": "recipe-invertedramp-ucorner-asphalt-8x2-c", + "name": "Inverted Up Corner (2 m)", + "className": "Recipe_InvertedRamp_UCorner_Asphalt_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_UCorner_Asphalt_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_UCorner_Asphalt_8x4_C": { + "slug": "recipe-invertedramp-ucorner-asphalt-8x4-c", + "name": "Inverted Up Corner (4 m)", + "className": "Recipe_InvertedRamp_UCorner_Asphalt_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_UCorner_Asphalt_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipe_Asphalt_8x4_C": { + "slug": "recipe-quarterpipe-asphalt-8x4-c", + "name": "Quarter Pipe", + "className": "Recipe_QuarterPipe_Asphalt_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipe_Asphalt_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeInCorner_Asphalt_8x4_C": { + "slug": "recipe-quarterpipeincorner-asphalt-8x4-c", + "name": "Inner Corner Quarter Pipe", + "className": "Recipe_QuarterPipeInCorner_Asphalt_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeInCorner_Asphalt_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddle_Asphalt_8x1_C": { + "slug": "recipe-quarterpipemiddle-asphalt-8x1-c", + "name": "Half Foundation (1 m)", + "className": "Recipe_QuarterPipeMiddle_Asphalt_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddle_Asphalt_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddle_Asphalt_8x2_C": { + "slug": "recipe-quarterpipemiddle-asphalt-8x2-c", + "name": "Half Foundation (2 m)", + "className": "Recipe_QuarterPipeMiddle_Asphalt_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddle_Asphalt_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddle_Asphalt_8x4_C": { + "slug": "recipe-quarterpipemiddle-asphalt-8x4-c", + "name": "Half Foundation (4 m)", + "className": "Recipe_QuarterPipeMiddle_Asphalt_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddle_Asphalt_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleInCorner_Asphalt_8x1_C": { + "slug": "recipe-quarterpipemiddleincorner-asphalt-8x1-c", + "name": "Inner Corner Extension (1 m)", + "className": "Recipe_QuarterPipeMiddleInCorner_Asphalt_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleInCorner_Asphalt_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleInCorner_Asphalt_8x2_C": { + "slug": "recipe-quarterpipemiddleincorner-asphalt-8x2-c", + "name": "Inner Corner Extension (2 m)", + "className": "Recipe_QuarterPipeMiddleInCorner_Asphalt_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleInCorner_Asphalt_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleInCorner_Asphalt_8x4_C": { + "slug": "recipe-quarterpipemiddleincorner-asphalt-8x4-c", + "name": "Inner Corner Extension (4 m)", + "className": "Recipe_QuarterPipeMiddleInCorner_Asphalt_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleInCorner_Asphalt_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleOutCorner_Asphalt_4x1_C": { + "slug": "recipe-quarterpipemiddleoutcorner-asphalt-4x1-c", + "name": "Outer Corner Extension (1 m)", + "className": "Recipe_QuarterPipeMiddleOutCorner_Asphalt_4x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleOutCorner_Asphalt_4x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleOutCorner_Asphalt_4x2_C": { + "slug": "recipe-quarterpipemiddleoutcorner-asphalt-4x2-c", + "name": "Outer Corner Extension (2 m)", + "className": "Recipe_QuarterPipeMiddleOutCorner_Asphalt_4x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleOutCorner_Asphalt_4x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleOutCorner_Asphalt_4x4_C": { + "slug": "recipe-quarterpipemiddleoutcorner-asphalt-4x4-c", + "name": "Outer Corner Extension (4 m)", + "className": "Recipe_QuarterPipeMiddleOutCorner_Asphalt_4x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleOutCorner_Asphalt_4x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeOutCorner_Asphalt_8x4_C": { + "slug": "recipe-quarterpipeoutcorner-asphalt-8x4-c", + "name": "Outer Corner Quarter Pipe", + "className": "Recipe_QuarterPipeOutCorner_Asphalt_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeOutCorner_Asphalt_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Asphalt_8x1_C": { + "slug": "recipe-ramp-asphalt-8x1-c", + "name": "Ramp (1 m)", + "className": "Recipe_Ramp_Asphalt_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Asphalt_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Asphalt_8x2_C": { + "slug": "recipe-ramp-asphalt-8x2-c", + "name": "Ramp (2 m)", + "className": "Recipe_Ramp_Asphalt_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Asphalt_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Asphalt_8x4_C": { + "slug": "recipe-ramp-asphalt-8x4-c", + "name": "Ramp (4 m)", + "className": "Recipe_Ramp_Asphalt_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Asphalt_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_DownCorner_Asphalt_8x1_C": { + "slug": "recipe-ramp-downcorner-asphalt-8x1-c", + "name": "Down Corner Ramp (1 m)", + "className": "Recipe_Ramp_DownCorner_Asphalt_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_DownCorner_Asphalt_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_DownCorner_Asphalt_8x2_C": { + "slug": "recipe-ramp-downcorner-asphalt-8x2-c", + "name": "Down Corner Ramp (2 m)", + "className": "Recipe_Ramp_DownCorner_Asphalt_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_DownCorner_Asphalt_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_DownCorner_Asphalt_8x4_C": { + "slug": "recipe-ramp-downcorner-asphalt-8x4-c", + "name": "Down Corner Ramp (4 m)", + "className": "Recipe_Ramp_DownCorner_Asphalt_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_DownCorner_Asphalt_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_UpCorner_Asphalt_8x1_C": { + "slug": "recipe-ramp-upcorner-asphalt-8x1-c", + "name": "Up Corner Ramp (1 m)", + "className": "Recipe_Ramp_UpCorner_Asphalt_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_UpCorner_Asphalt_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_UpCorner_Asphalt_8x2_C": { + "slug": "recipe-ramp-upcorner-asphalt-8x2-c", + "name": "Up Corner Ramp (2 m)", + "className": "Recipe_Ramp_UpCorner_Asphalt_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_UpCorner_Asphalt_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_UpCorner_Asphalt_8x4_C": { + "slug": "recipe-ramp-upcorner-asphalt-8x4-c", + "name": "Up Corner Ramp (4 m)", + "className": "Recipe_Ramp_UpCorner_Asphalt_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_UpCorner_Asphalt_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampDouble_Asphalt_8x1_C": { + "slug": "recipe-rampdouble-asphalt-8x1-c", + "name": "Double Ramp (2 m)", + "className": "Recipe_RampDouble_Asphalt_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampDouble_Asphalt_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampDouble_Asphalt_8x2_C": { + "slug": "recipe-rampdouble-asphalt-8x2-c", + "name": "Double Ramp (4 m)", + "className": "Recipe_RampDouble_Asphalt_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampDouble_Asphalt_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampDouble_Asphalt_8x4_C": { + "slug": "recipe-rampdouble-asphalt-8x4-c", + "name": "Double Ramp (8 m)", + "className": "Recipe_RampDouble_Asphalt_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampDouble_Asphalt_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Stair_Asphalt_8x1_C": { + "slug": "recipe-stair-asphalt-8x1-c", + "name": "Foundation Stairs (1 m)", + "className": "Recipe_Stair_Asphalt_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Stair_Asphalt_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Stair_Asphalt_8x2_C": { + "slug": "recipe-stair-asphalt-8x2-c", + "name": "Foundation Stairs (2 m)", + "className": "Recipe_Stair_Asphalt_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Stair_Asphalt_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Stair_Asphalt_8x4_C": { + "slug": "recipe-stair-asphalt-8x4-c", + "name": "Foundation Stairs (4 m)", + "className": "Recipe_Stair_Asphalt_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Stair_Asphalt_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Protein_Stinger_C": { + "slug": "recipe-protein-stinger-c", + "name": "Stinger Protein", + "className": "Recipe_Protein_Stinger_C", + "alternate": false, + "time": 3.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.333333, + "ingredients": [ + { + "item": "Desc_StingerParts_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_AlienProtein_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Protein_Crab_C": { + "slug": "recipe-protein-crab-c", + "name": "Hatcher Protein", + "className": "Recipe_Protein_Crab_C", + "alternate": false, + "time": 3.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.333333, + "ingredients": [ + { + "item": "Desc_HatcherParts_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_AlienProtein_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_AlienDNACapsule_C": { + "slug": "recipe-aliendnacapsule-c", + "name": "Alien DNA Capsule", + "className": "Recipe_AlienDNACapsule_C", + "alternate": false, + "time": 6.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.333333, + "ingredients": [ + { + "item": "Desc_AlienProtein_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_AlienDNACapsule_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Biomass_AlienProtein_C": { + "slug": "recipe-biomass-alienprotein-c", + "name": "Biomass (Alien Protein)", + "className": "Recipe_Biomass_AlienProtein_C", + "alternate": false, + "time": 4.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_AlienProtein_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_GenericBiomass_C", + "amount": 100.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_MedicinalInhalerAlienOrgans_C": { + "slug": "recipe-medicinalinhaleralienorgans-c", + "name": "Protein Inhaler", + "className": "Recipe_MedicinalInhalerAlienOrgans_C", + "alternate": false, + "time": 20.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_AlienProtein_C", + "amount": 1.0 + }, + { + "item": "Desc_Nut_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_Medkit_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SpikedRebar_C": { + "slug": "recipe-spikedrebar-c", + "name": "Iron Rebar", + "className": "Recipe_SpikedRebar_C", + "alternate": false, + "time": 4.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_SpikedRebar_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RebarGun_C": { + "slug": "recipe-rebargun-c", + "name": "Rebar Gun", + "className": "Recipe_RebarGun_C", + "alternate": false, + "time": 60.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 6.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 16.0 + }, + { + "item": "Desc_IronScrew_C", + "amount": 100.0 + } + ], + "products": [ + { + "item": "Desc_RebarGunProjectile_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_AlienPowerBuilding_C": { + "slug": "recipe-alienpowerbuilding-c", + "name": "Alien Power Augmenter", + "className": "Recipe_AlienPowerBuilding_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_WAT1_C", + "amount": 10.0 + }, + { + "item": "Desc_SAMFluctuator_C", + "amount": 50.0 + }, + { + "item": "Desc_Cable_C", + "amount": 100.0 + }, + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 50.0 + }, + { + "item": "Desc_Motor_C", + "amount": 25.0 + }, + { + "item": "Desc_Computer_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_AlienPowerBuilding_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_CentralStorage_C": { + "slug": "recipe-centralstorage-c", + "name": "Dimensional Depot Uploader", + "className": "Recipe_CentralStorage_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_WAT2_C", + "amount": 1.0 + }, + { + "item": "Desc_SAMFluctuator_C", + "amount": 10.0 + }, + { + "item": "Desc_ModularFrame_C", + "amount": 10.0 + }, + { + "item": "Desc_Wire_C", + "amount": 100.0 + } + ], + "products": [ + { + "item": "Desc_CentralStorage_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_GeneratorGeoThermal_C": { + "slug": "recipe-generatorgeothermal-c", + "name": "Geothermal Generator", + "className": "Recipe_GeneratorGeoThermal_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Motor_C", + "amount": 10.0 + }, + { + "item": "Desc_ModularFrame_C", + "amount": 25.0 + }, + { + "item": "Desc_HighSpeedConnector_C", + "amount": 25.0 + }, + { + "item": "Desc_CopperSheet_C", + "amount": 50.0 + }, + { + "item": "Desc_Wire_C", + "amount": 250.0 + } + ], + "products": [ + { + "item": "Desc_GeneratorGeoThermal_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConveyorAttachmentSplitterProgrammable_C": { + "slug": "recipe-conveyorattachmentsplitterprogrammable-c", + "name": "Programmable Splitter", + "className": "Recipe_ConveyorAttachmentSplitterProgrammable_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 1.0 + }, + { + "item": "Desc_Computer_C", + "amount": 2.0 + }, + { + "item": "Desc_CircuitBoardHighSpeed_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_ConveyorAttachmentSplitterProgrammable_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_CartridgeSmart_C": { + "slug": "recipe-cartridgesmart-c", + "name": "Homing Rifle Ammo", + "className": "Recipe_CartridgeSmart_C", + "alternate": false, + "time": 24.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": true, + "manualTimeMultiplier": 0.666667, + "ingredients": [ + { + "item": "Desc_CartridgeStandard_C", + "amount": 20.0 + }, + { + "item": "Desc_HighSpeedConnector_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_CartridgeSmartProjectile_C", + "amount": 10.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PowerPoleMk3_C": { + "slug": "recipe-powerpolemk3-c", + "name": "Power Pole Mk.3", + "className": "Recipe_PowerPoleMk3_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HighSpeedConnector_C", + "amount": 2.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 2.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_PowerPoleMk3_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PriorityPowerSwitch_C": { + "slug": "recipe-prioritypowerswitch-c", + "name": "Priority Power Switch", + "className": "Recipe_PriorityPowerSwitch_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HighSpeedConnector_C", + "amount": 2.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 6.0 + }, + { + "item": "Desc_HighSpeedWire_C", + "amount": 50.0 + } + ], + "products": [ + { + "item": "Desc_PriorityPowerSwitch_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_BladeRunners_C": { + "slug": "recipe-bladerunners-c", + "name": "Blade Runners", + "className": "Recipe_BladeRunners_C", + "alternate": false, + "time": 60.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Silica_C", + "amount": 20.0 + }, + { + "item": "Desc_ModularFrame_C", + "amount": 3.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "BP_EquipmentDescriptorJumpingStilts_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PowerPoleMk2_C": { + "slug": "recipe-powerpolemk2-c", + "name": "Power Pole Mk.2", + "className": "Recipe_PowerPoleMk2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 6.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 2.0 + }, + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_PowerPoleMk2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PowerSwitch_C": { + "slug": "recipe-powerswitch-c", + "name": "Power Switch", + "className": "Recipe_PowerSwitch_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 20.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 4.0 + }, + { + "item": "Desc_CircuitBoardHighSpeed_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_PowerSwitch_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConveyorAttachmentSplitterSmart_C": { + "slug": "recipe-conveyorattachmentsplittersmart-c", + "name": "Smart Splitter", + "className": "Recipe_ConveyorAttachmentSplitterSmart_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 2.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 2.0 + }, + { + "item": "Desc_CircuitBoardHighSpeed_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_ConveyorAttachmentSplitterSmart_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Rebar_Stunshot_C": { + "slug": "recipe-rebar-stunshot-c", + "name": "Stun Rebar", + "className": "Recipe_Rebar_Stunshot_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": true, + "manualTimeMultiplier": 1.333333, + "ingredients": [ + { + "item": "Desc_SpikedRebar_C", + "amount": 1.0 + }, + { + "item": "Desc_HighSpeedWire_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Rebar_Stunshot_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ZipLine_C": { + "slug": "recipe-zipline-c", + "name": "Zipline", + "className": "Recipe_ZipLine_C", + "alternate": false, + "time": 40.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "BP_EquipmentDescriptorShockShank_C", + "amount": 1.0 + }, + { + "item": "Desc_HighSpeedWire_C", + "amount": 30.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 3.0 + }, + { + "item": "Desc_Cable_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "BP_EqDescZipLine_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_FilterGasMask_C": { + "slug": "recipe-filtergasmask-c", + "name": "Gas Filter", + "className": "Recipe_FilterGasMask_C", + "alternate": false, + "time": 8.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Fabric_C", + "amount": 2.0 + }, + { + "item": "Desc_Coal_C", + "amount": 4.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Filter_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Gasmask_C": { + "slug": "recipe-gasmask-c", + "name": "Gas Mask", + "className": "Recipe_Gasmask_C", + "alternate": false, + "time": 60.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Fabric_C", + "amount": 50.0 + }, + { + "item": "Desc_CopperSheet_C", + "amount": 10.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "BP_EquipmentDescriptorGasmask_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_NobeliskGas_C": { + "slug": "recipe-nobeliskgas-c", + "name": "Gas Nobelisk", + "className": "Recipe_NobeliskGas_C", + "alternate": false, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": true, + "manualTimeMultiplier": 0.666667, + "ingredients": [ + { + "item": "Desc_NobeliskExplosive_C", + "amount": 1.0 + }, + { + "item": "Desc_GenericBiomass_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_NobeliskGas_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_TherapeuticInhaler_C": { + "slug": "recipe-therapeuticinhaler-c", + "name": "Therapeutic Inhaler", + "className": "Recipe_TherapeuticInhaler_C", + "alternate": false, + "time": 20.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Mycelia_C", + "amount": 15.0 + }, + { + "item": "Desc_AlienProtein_C", + "amount": 1.0 + }, + { + "item": "Desc_Shroom_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_Medkit_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_MedicinalInhaler_C": { + "slug": "recipe-medicinalinhaler-c", + "name": "Vitamin Inhaler", + "className": "Recipe_MedicinalInhaler_C", + "alternate": false, + "time": 20.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Mycelia_C", + "amount": 10.0 + }, + { + "item": "Desc_Berry_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Medkit_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Parachute_C": { + "slug": "recipe-parachute-c", + "name": "Parachute", + "className": "Recipe_Parachute_C", + "alternate": false, + "time": 40.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Fabric_C", + "amount": 20.0 + }, + { + "item": "Desc_Cable_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_Parachute_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_PolyesterFabric_C": { + "slug": "recipe-alternate-polyesterfabric-c", + "name": "Alternate: Polyester Fabric", + "className": "Recipe_Alternate_PolyesterFabric_C", + "alternate": true, + "time": 2.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_PolymerResin_C", + "amount": 1.0 + }, + { + "item": "Desc_Water_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_Fabric_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Fabric_C": { + "slug": "recipe-fabric-c", + "name": "Fabric", + "className": "Recipe_Fabric_C", + "alternate": false, + "time": 4.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Mycelia_C", + "amount": 1.0 + }, + { + "item": "Desc_GenericBiomass_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Fabric_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_NutritionalInhaler_C": { + "slug": "recipe-nutritionalinhaler-c", + "name": "Nutritional Inhaler", + "className": "Recipe_NutritionalInhaler_C", + "alternate": false, + "time": 20.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Shroom_C", + "amount": 1.0 + }, + { + "item": "Desc_Berry_C", + "amount": 2.0 + }, + { + "item": "Desc_Nut_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Medkit_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SyntheticPowerShard_C": { + "slug": "recipe-syntheticpowershard-c", + "name": "Synthetic Power Shard", + "className": "Recipe_SyntheticPowerShard_C", + "alternate": false, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_TimeCrystal_C", + "amount": 2.0 + }, + { + "item": "Desc_DarkMatter_C", + "amount": 2.0 + }, + { + "item": "Desc_QuartzCrystal_C", + "amount": 12.0 + }, + { + "item": "Desc_QuantumEnergy_C", + "amount": 12.0 + } + ], + "products": [ + { + "item": "Desc_CrystalShard_C", + "amount": 1.0 + }, + { + "item": "Desc_DarkEnergy_C", + "amount": 12.0 + } + ], + "producedIn": [ + "Desc_QuantumEncoder_C" + ], + "isVariablePower": true, + "minPower": 0, + "maxPower": 2000 + }, + "Recipe_PowerCrystalShard_3_C": { + "slug": "recipe-powercrystalshard-3-c", + "name": "Power Shard (5)", + "className": "Recipe_PowerCrystalShard_3_C", + "alternate": false, + "time": 24.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Crystal_mk3_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_CrystalShard_C", + "amount": 5.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PowerCrystalShard_2_C": { + "slug": "recipe-powercrystalshard-2-c", + "name": "Power Shard (2)", + "className": "Recipe_PowerCrystalShard_2_C", + "alternate": false, + "time": 12.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Crystal_mk2_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_CrystalShard_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RadarTower_C": { + "slug": "recipe-radartower-c", + "name": "Radar Tower", + "className": "Recipe_RadarTower_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Computer_C", + "amount": 10.0 + }, + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 20.0 + }, + { + "item": "Desc_CrystalOscillator_C", + "amount": 25.0 + }, + { + "item": "Desc_Cable_C", + "amount": 100.0 + } + ], + "products": [ + { + "item": "Desc_RadarTower_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_NobeliskShockwave_C": { + "slug": "recipe-nobeliskshockwave-c", + "name": "Pulse Nobelisk", + "className": "Recipe_NobeliskShockwave_C", + "alternate": false, + "time": 60.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": true, + "manualTimeMultiplier": 0.666666, + "ingredients": [ + { + "item": "Desc_NobeliskExplosive_C", + "amount": 5.0 + }, + { + "item": "Desc_CrystalOscillator_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_NobeliskShockwave_C", + "amount": 5.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Explorer_C": { + "slug": "recipe-explorer-c", + "name": "Explorer", + "className": "Recipe_Explorer_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CrystalOscillator_C", + "amount": 5.0 + }, + { + "item": "Desc_Motor_C", + "amount": 5.0 + }, + { + "item": "Desc_ModularFrame_C", + "amount": 10.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 15.0 + } + ], + "products": [ + { + "item": "Desc_Explorer_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Rebar_Spreadshot_C": { + "slug": "recipe-rebar-spreadshot-c", + "name": "Shatter Rebar", + "className": "Recipe_Rebar_Spreadshot_C", + "alternate": false, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SpikedRebar_C", + "amount": 2.0 + }, + { + "item": "Desc_QuartzCrystal_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Rebar_Spreadshot_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_CartridgeChaos_Packaged_C": { + "slug": "recipe-cartridgechaos-packaged-c", + "name": "Turbo Rifle Ammo", + "className": "Recipe_CartridgeChaos_Packaged_C", + "alternate": false, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": true, + "manualTimeMultiplier": 3.333333, + "ingredients": [ + { + "item": "Desc_CartridgeStandard_C", + "amount": 25.0 + }, + { + "item": "Desc_AluminumCasing_C", + "amount": 3.0 + }, + { + "item": "Desc_TurboFuel_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_CartridgeChaos_C", + "amount": 50.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_CartridgeChaos_C": { + "slug": "recipe-cartridgechaos-c", + "name": "Turbo Rifle Ammo", + "className": "Recipe_CartridgeChaos_C", + "alternate": false, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 3.333333, + "ingredients": [ + { + "item": "Desc_CartridgeStandard_C", + "amount": 25.0 + }, + { + "item": "Desc_AluminumCasing_C", + "amount": 3.0 + }, + { + "item": "Desc_LiquidTurboFuel_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_CartridgeChaos_C", + "amount": 50.0 + } + ], + "producedIn": [ + "Desc_Blender_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_NobeliskNuke_C": { + "slug": "recipe-nobelisknuke-c", + "name": "Nuke Nobelisk", + "className": "Recipe_NobeliskNuke_C", + "alternate": false, + "time": 120.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": true, + "manualTimeMultiplier": 0.5, + "ingredients": [ + { + "item": "Desc_NobeliskExplosive_C", + "amount": 5.0 + }, + { + "item": "Desc_UraniumCell_C", + "amount": 20.0 + }, + { + "item": "Desc_GunpowderMK2_C", + "amount": 10.0 + }, + { + "item": "Desc_CircuitBoardHighSpeed_C", + "amount": 6.0 + } + ], + "products": [ + { + "item": "Desc_NobeliskNuke_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Cartridge_C": { + "slug": "recipe-cartridge-c", + "name": "Rifle Ammo", + "className": "Recipe_Cartridge_C", + "alternate": false, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CopperSheet_C", + "amount": 3.0 + }, + { + "item": "Desc_GunpowderMK2_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_CartridgeStandard_C", + "amount": 15.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Rebar_Explosive_C": { + "slug": "recipe-rebar-explosive-c", + "name": "Explosive Rebar", + "className": "Recipe_Rebar_Explosive_C", + "alternate": false, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": true, + "manualTimeMultiplier": 1.333333, + "ingredients": [ + { + "item": "Desc_SpikedRebar_C", + "amount": 2.0 + }, + { + "item": "Desc_GunpowderMK2_C", + "amount": 2.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Rebar_Explosive_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SpaceRifleMk1_C": { + "slug": "recipe-spaceriflemk1-c", + "name": "Rifle", + "className": "Recipe_SpaceRifleMk1_C", + "alternate": false, + "time": 120.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Motor_C", + "amount": 2.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 10.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 25.0 + }, + { + "item": "Desc_IronScrew_C", + "amount": 250.0 + } + ], + "products": [ + { + "item": "BP_EquipmentDescriptorRifle_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_NobeliskCluster_C": { + "slug": "recipe-nobeliskcluster-c", + "name": "Cluster Nobelisk", + "className": "Recipe_NobeliskCluster_C", + "alternate": false, + "time": 24.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": true, + "manualTimeMultiplier": 0.666667, + "ingredients": [ + { + "item": "Desc_NobeliskExplosive_C", + "amount": 3.0 + }, + { + "item": "Desc_GunpowderMK2_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_NobeliskCluster_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Nobelisk_C": { + "slug": "recipe-nobelisk-c", + "name": "Nobelisk", + "className": "Recipe_Nobelisk_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": true, + "manualTimeMultiplier": 1.333333, + "ingredients": [ + { + "item": "Desc_Gunpowder_C", + "amount": 2.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_NobeliskExplosive_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_NobeliskDetonator_C": { + "slug": "recipe-nobeliskdetonator-c", + "name": "Nobelisk Detonator", + "className": "Recipe_NobeliskDetonator_C", + "alternate": false, + "time": 80.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "BP_EquipmentDescriptorObjectScanner_C", + "amount": 1.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 10.0 + }, + { + "item": "Desc_Cable_C", + "amount": 50.0 + } + ], + "products": [ + { + "item": "BP_EquipmentDescriptorNobeliskDetonator_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_GunpowderMK2_C": { + "slug": "recipe-gunpowdermk2-c", + "name": "Smokeless Powder", + "className": "Recipe_GunpowderMK2_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 0.5, + "ingredients": [ + { + "item": "Desc_Gunpowder_C", + "amount": 2.0 + }, + { + "item": "Desc_HeavyOilResidue_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_GunpowderMK2_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_XmasWreath_C": { + "slug": "recipe-xmaswreath-c", + "name": "FICSMAS Wreath", + "className": "Recipe_XmasWreath_C", + "alternate": false, + "time": 60.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_XmasBranch_C", + "amount": 15.0 + }, + { + "item": "Desc_XmasBallCluster_C", + "amount": 6.0 + } + ], + "products": [ + { + "item": "Desc_XmasWreath_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Snowball_C": { + "slug": "recipe-snowball-c", + "name": "Snowball", + "className": "Recipe_Snowball_C", + "alternate": false, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Snow_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_SnowballProjectile_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_WreathDecor_C": { + "slug": "recipe-wreathdecor-c", + "name": "FICSMAS Decoration", + "className": "Recipe_WreathDecor_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_XmasWreath_C", + "amount": 1.0 + }, + { + "item": "Desc_XmasBow_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_WreathDecor_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_XmasStar_C": { + "slug": "recipe-xmasstar-c", + "name": "FICSMAS Wonder Star", + "className": "Recipe_XmasStar_C", + "alternate": false, + "time": 60.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_XmasWreath_C", + "amount": 5.0 + }, + { + "item": "Desc_CandyCane_C", + "amount": 20.0 + } + ], + "products": [ + { + "item": "Desc_XmasStar_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_XmasBall3_C": { + "slug": "recipe-xmasball3-c", + "name": "Copper FICSMAS Ornament", + "className": "Recipe_XmasBall3_C", + "alternate": false, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_XmasBall1_C", + "amount": 2.0 + }, + { + "item": "Desc_CopperIngot_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_XmasBall3_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_FoundryMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_XmasBall4_C": { + "slug": "recipe-xmasball4-c", + "name": "Iron FICSMAS Ornament", + "className": "Recipe_XmasBall4_C", + "alternate": false, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_XmasBall2_C", + "amount": 3.0 + }, + { + "item": "Desc_IronIngot_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_XmasBall4_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_FoundryMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SnowCannon_C": { + "slug": "recipe-snowcannon-c", + "name": "FICSMAS Snow Cannon", + "className": "Recipe_SnowCannon_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_XmasBow_C", + "amount": 10.0 + }, + { + "item": "Desc_Snow_C", + "amount": 100.0 + }, + { + "item": "Desc_XmasBall3_C", + "amount": 20.0 + } + ], + "products": [ + { + "item": "Desc_SnowCannon_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SnowDispenser_C": { + "slug": "recipe-snowdispenser-c", + "name": "FICSMAS Snow Dispenser", + "className": "Recipe_SnowDispenser_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CandyCane_C", + "amount": 10.0 + }, + { + "item": "Desc_Snow_C", + "amount": 100.0 + }, + { + "item": "Desc_XmasBall4_C", + "amount": 20.0 + } + ], + "products": [ + { + "item": "Desc_SnowDispenser_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_xmassLights_C": { + "slug": "recipe-xmasslights-c", + "name": "FICSMAS Power Light", + "className": "Recipe_xmassLights_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cable_C", + "amount": 1.0 + }, + { + "item": "Desc_XmasBallCluster_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_xmassLights_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_XmasBallCluster_C": { + "slug": "recipe-xmasballcluster-c", + "name": "FICSMAS Ornament Bundle", + "className": "Recipe_XmasBallCluster_C", + "alternate": false, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_XmasBall3_C", + "amount": 1.0 + }, + { + "item": "Desc_XmasBall4_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_XmasBallCluster_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_XmasBall1_C": { + "slug": "recipe-xmasball1-c", + "name": "Red FICSMAS Ornament", + "className": "Recipe_XmasBall1_C", + "alternate": false, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Gift_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_XmasBall1_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_SmelterMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_XmasBall2_C": { + "slug": "recipe-xmasball2-c", + "name": "Blue FICSMAS Ornament", + "className": "Recipe_XmasBall2_C", + "alternate": false, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Gift_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_XmasBall2_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_SmelterMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_TreeGiftProducer_C": { + "slug": "recipe-treegiftproducer-c", + "name": "FICSMAS Gift Tree", + "className": "Recipe_TreeGiftProducer_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Gift_C", + "amount": 50.0 + }, + { + "item": "Desc_XmasBranch_C", + "amount": 100.0 + }, + { + "item": "Desc_XmasBall1_C", + "amount": 30.0 + }, + { + "item": "Desc_XmasBall2_C", + "amount": 30.0 + } + ], + "products": [ + { + "item": "Desc_TreeGiftProducer_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Snowman_C": { + "slug": "recipe-snowman-c", + "name": "FICSMAS Snowman", + "className": "Recipe_Snowman_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Snow_C", + "amount": 50.0 + }, + { + "item": "Desc_CandyCane_C", + "amount": 3.0 + }, + { + "item": "Desc_XmasBow_C", + "amount": 1.0 + }, + { + "item": "Desc_XmasBall1_C", + "amount": 3.0 + }, + { + "item": "Desc_XmasBall2_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Snowman_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Snow_C": { + "slug": "recipe-snow-c", + "name": "FICSMAS Actual Snow", + "className": "Recipe_Snow_C", + "alternate": false, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Gift_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Snow_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_XMassTree_C": { + "slug": "recipe-xmasstree-c", + "name": "Giant FICSMAS Tree", + "className": "Recipe_XMassTree_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_XmasBranch_C", + "amount": 100.0 + }, + { + "item": "Desc_IronPlateReinforced_C", + "amount": 50.0 + }, + { + "item": "Desc_Cement_C", + "amount": 500.0 + } + ], + "products": [ + { + "item": "Desc_XMassTree_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_XmasBranch_C": { + "slug": "recipe-xmasbranch-c", + "name": "FICSMAS Tree Branch", + "className": "Recipe_XmasBranch_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Gift_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_XmasBranch_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_CandyCaneDecor_C": { + "slug": "recipe-candycanedecor-c", + "name": "FICSMAS Candy Cane", + "className": "Recipe_CandyCaneDecor_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CandyCane_C", + "amount": 10.0 + }, + { + "item": "Desc_XmasBow_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_CandyCaneDecor_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_XmasBow_C": { + "slug": "recipe-xmasbow-c", + "name": "FICSMAS Bow", + "className": "Recipe_XmasBow_C", + "alternate": false, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Gift_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_XmasBow_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_CandyCane_C": { + "slug": "recipe-candycane-c", + "name": "Candy Cane", + "className": "Recipe_CandyCane_C", + "alternate": false, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Gift_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_CandyCane_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_CandyCaneBasher_C": { + "slug": "recipe-candycanebasher-c", + "name": "Candy Cane Basher", + "className": "Recipe_CandyCaneBasher_C", + "alternate": false, + "time": 80.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "BP_EquipmentDescriptorShockShank_C", + "amount": 2.0 + }, + { + "item": "Desc_CandyCane_C", + "amount": 25.0 + }, + { + "item": "Desc_Gift_C", + "amount": 15.0 + } + ], + "products": [ + { + "item": "BP_EquipmentDescriptorCandyCane_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Flat_Frame_01_C": { + "slug": "recipe-flat-frame-01-c", + "name": "Frame Floor", + "className": "Recipe_Flat_Frame_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlate_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Flat_Frame_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Foundation_Frame_01_C": { + "slug": "recipe-foundation-frame-01-c", + "name": "Frame Foundation", + "className": "Recipe_Foundation_Frame_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlate_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Foundation_Frame_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_FoundationGlass_01_C": { + "slug": "recipe-foundationglass-01-c", + "name": "Glass Frame Foundation", + "className": "Recipe_FoundationGlass_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlate_C", + "amount": 2.0 + }, + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_FoundationGlass_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Frame_01_C": { + "slug": "recipe-ramp-frame-01-c", + "name": "Frame Ramp", + "className": "Recipe_Ramp_Frame_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlate_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Frame_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Frame_Inverted_01_C": { + "slug": "recipe-ramp-frame-inverted-01-c", + "name": "Inverted Frame Ramp", + "className": "Recipe_Ramp_Frame_Inverted_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlate_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Frame_Inverted_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Frame_01_C": { + "slug": "recipe-wall-frame-01-c", + "name": "Frame Wall", + "className": "Recipe_Wall_Frame_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlate_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Frame_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Railing_01_C": { + "slug": "recipe-railing-01-c", + "name": "Modern Railing", + "className": "Recipe_Railing_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Railing_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Pillar_Small_Metal_C": { + "slug": "recipe-pillar-small-metal-c", + "name": "Small Metal Pillar", + "className": "Recipe_Pillar_Small_Metal_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 1.0 + }, + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Pillar_Small_Metal_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PillarBase_Small_C": { + "slug": "recipe-pillarbase-small-c", + "name": "Small Pillar Support", + "className": "Recipe_PillarBase_Small_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_PillarBase_Small_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PillarBase_C": { + "slug": "recipe-pillarbase-c", + "name": "Big Pillar Support", + "className": "Recipe_PillarBase_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_PillarBase_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PillarMiddle_C": { + "slug": "recipe-pillarmiddle-c", + "name": "Big Metal Pillar", + "className": "Recipe_PillarMiddle_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 2.0 + }, + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_PillarMiddle_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ladder_C": { + "slug": "recipe-ladder-c", + "name": "Ladder", + "className": "Recipe_Ladder_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Ladder_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_FactoryCart_C": { + "slug": "recipe-factorycart-c", + "name": "Factory Cart™", + "className": "Recipe_FactoryCart_C", + "alternate": false, + "time": 20.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 2.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 4.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 4.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_GolfCart_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_CyberWagon_C": { + "slug": "recipe-cyberwagon-c", + "name": "Cyber Wagon", + "className": "Recipe_CyberWagon_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_CyberWagon_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Gate_Automated_8x4_C": { + "slug": "recipe-gate-automated-8x4-c", + "name": "Automated Gate", + "className": "Recipe_Gate_Automated_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 6.0 + } + ], + "products": [ + { + "item": "Desc_Gate_Automated_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_HyperTubeWallHole_C": { + "slug": "recipe-hypertubewallhole-c", + "name": "Hypertube Wall Hole", + "className": "Recipe_HyperTubeWallHole_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 2.0 + }, + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_HyperTubeWallHole_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PipeSupportWallHole_C": { + "slug": "recipe-pipesupportwallhole-c", + "name": "Pipeline Wall Hole", + "className": "Recipe_PipeSupportWallHole_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 2.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 1.0 + }, + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_PipelineSupportWallHole_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_FoundationPassthrough_Pipe_C": { + "slug": "recipe-foundationpassthrough-pipe-c", + "name": "Pipeline Floor Hole", + "className": "Recipe_FoundationPassthrough_Pipe_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 2.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 2.0 + }, + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_FoundationPassthrough_Pipe_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PowerPoleWallDouble_C": { + "slug": "recipe-powerpolewalldouble-c", + "name": "Double Wall Outlet Mk.1", + "className": "Recipe_PowerPoleWallDouble_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Wire_C", + "amount": 8.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_PowerPoleWallDouble_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PowerPoleWallDoubleMk2_C": { + "slug": "recipe-powerpolewalldoublemk2-c", + "name": "Double Wall Outlet Mk.2", + "className": "Recipe_PowerPoleWallDoubleMk2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 16.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_PowerPoleWallDoubleMk2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PowerPoleWallMk2_C": { + "slug": "recipe-powerpolewallmk2-c", + "name": "Wall Outlet Mk.2", + "className": "Recipe_PowerPoleWallMk2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 8.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_PowerPoleWallMk2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PowerPoleWallDoubleMk3_C": { + "slug": "recipe-powerpolewalldoublemk3-c", + "name": "Double Wall Outlet Mk.3", + "className": "Recipe_PowerPoleWallDoubleMk3_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HighSpeedConnector_C", + "amount": 6.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 6.0 + } + ], + "products": [ + { + "item": "Desc_PowerPoleWallDoubleMk3_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PowerPoleWallMk3_C": { + "slug": "recipe-powerpolewallmk3-c", + "name": "Wall Outlet Mk.3", + "className": "Recipe_PowerPoleWallMk3_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HighSpeedConnector_C", + "amount": 3.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_PowerPoleWallMk3_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_StreetLight_C": { + "slug": "recipe-streetlight-c", + "name": "Street Light", + "className": "Recipe_StreetLight_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 10.0 + }, + { + "item": "Desc_Wire_C", + "amount": 4.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_StreetLight_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_CeilingLight_C": { + "slug": "recipe-ceilinglight-c", + "name": "Ceiling Light", + "className": "Recipe_CeilingLight_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 50.0 + }, + { + "item": "Desc_Wire_C", + "amount": 16.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 6.0 + } + ], + "products": [ + { + "item": "Desc_CeilingLight_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_FloodlightPole_C": { + "slug": "recipe-floodlightpole-c", + "name": "Flood Light Tower", + "className": "Recipe_FloodlightPole_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 25.0 + }, + { + "item": "Desc_CopperSheet_C", + "amount": 4.0 + }, + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 8.0 + } + ], + "products": [ + { + "item": "Desc_FloodlightPole_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_FloodlightWall_C": { + "slug": "recipe-floodlightwall-c", + "name": "Wall-Mounted Flood Light", + "className": "Recipe_FloodlightWall_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 25.0 + }, + { + "item": "Desc_CopperSheet_C", + "amount": 4.0 + }, + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_FloodlightWall_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Orange_01_C": { + "slug": "recipe-roof-orange-01-c", + "name": "Flat Roof", + "className": "Recipe_Roof_Orange_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Orange_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Orange_02_C": { + "slug": "recipe-roof-orange-02-c", + "name": "Roof (1 m)", + "className": "Recipe_Roof_Orange_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Orange_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Orange_03_C": { + "slug": "recipe-roof-orange-03-c", + "name": "Roof (2 m)", + "className": "Recipe_Roof_Orange_03_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Orange_03_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Orange_04_C": { + "slug": "recipe-roof-orange-04-c", + "name": "Roof (4 m)", + "className": "Recipe_Roof_Orange_04_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Orange_04_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Orange_InCorner_01_C": { + "slug": "recipe-roof-orange-incorner-01-c", + "name": "Inner Corner Roof (1 m)", + "className": "Recipe_Roof_Orange_InCorner_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Orange_InCorner_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Orange_InCorner_02_C": { + "slug": "recipe-roof-orange-incorner-02-c", + "name": "Inner Corner Roof (2 m)", + "className": "Recipe_Roof_Orange_InCorner_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Orange_InCorner_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Orange_InCorner_03_C": { + "slug": "recipe-roof-orange-incorner-03-c", + "name": "Inner Corner Roof (4 m)", + "className": "Recipe_Roof_Orange_InCorner_03_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Orange_InCorner_03_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Orange_OutCorner_01_C": { + "slug": "recipe-roof-orange-outcorner-01-c", + "name": "Outer Corner Roof (1 m)", + "className": "Recipe_Roof_Orange_OutCorner_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Orange_OutCorner_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Orange_OutCorner_02_C": { + "slug": "recipe-roof-orange-outcorner-02-c", + "name": "Outer Corner Roof (2 m)", + "className": "Recipe_Roof_Orange_OutCorner_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Orange_OutCorner_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Orange_OutCorner_03_C": { + "slug": "recipe-roof-orange-outcorner-03-c", + "name": "Outer Corner Roof (4 m)", + "className": "Recipe_Roof_Orange_OutCorner_03_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Orange_OutCorner_03_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Window_01_C": { + "slug": "recipe-roof-window-01-c", + "name": "Flat Roof", + "className": "Recipe_Roof_Window_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Window_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Window_02_C": { + "slug": "recipe-roof-window-02-c", + "name": "Roof (1 m)", + "className": "Recipe_Roof_Window_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Window_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Window_03_C": { + "slug": "recipe-roof-window-03-c", + "name": "Roof (2 m)", + "className": "Recipe_Roof_Window_03_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Window_03_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Window_04_C": { + "slug": "recipe-roof-window-04-c", + "name": "Roof (4 m)", + "className": "Recipe_Roof_Window_04_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Window_04_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Window_InCorner_01_C": { + "slug": "recipe-roof-window-incorner-01-c", + "name": "Inner Corner Roof (1 m)", + "className": "Recipe_Roof_Window_InCorner_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Window_InCorner_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Window_InCorner_02_C": { + "slug": "recipe-roof-window-incorner-02-c", + "name": "Inner Corner Roof (2 m)", + "className": "Recipe_Roof_Window_InCorner_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Window_InCorner_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Window_InCorner_03_C": { + "slug": "recipe-roof-window-incorner-03-c", + "name": "Inner Corner Roof (4 m)", + "className": "Recipe_Roof_Window_InCorner_03_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Window_InCorner_03_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Window_OutCorner_01_C": { + "slug": "recipe-roof-window-outcorner-01-c", + "name": "Outer Corner Roof (1 m)", + "className": "Recipe_Roof_Window_OutCorner_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Window_OutCorner_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Window_OutCorner_02_C": { + "slug": "recipe-roof-window-outcorner-02-c", + "name": "Outer Corner Roof (2 m)", + "className": "Recipe_Roof_Window_OutCorner_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Window_OutCorner_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Window_OutCorner_03_C": { + "slug": "recipe-roof-window-outcorner-03-c", + "name": "Outer Corner Roof (4 m)", + "className": "Recipe_Roof_Window_OutCorner_03_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Window_OutCorner_03_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_A_01_C": { + "slug": "recipe-roof-a-01-c", + "name": "Flat Roof", + "className": "Recipe_Roof_A_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_A_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_A_02_C": { + "slug": "recipe-roof-a-02-c", + "name": "Roof (1 m)", + "className": "Recipe_Roof_A_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_A_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_A_03_C": { + "slug": "recipe-roof-a-03-c", + "name": "Roof (2 m)", + "className": "Recipe_Roof_A_03_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_A_03_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_A_04_C": { + "slug": "recipe-roof-a-04-c", + "name": "Roof (4 m)", + "className": "Recipe_Roof_A_04_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_A_04_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Metal_InCorner_01_C": { + "slug": "recipe-roof-metal-incorner-01-c", + "name": "Inner Corner Roof (1 m)", + "className": "Recipe_Roof_Metal_InCorner_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Metal_InCorner_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Metal_InCorner_02_C": { + "slug": "recipe-roof-metal-incorner-02-c", + "name": "Inner Corner Roof (2 m)", + "className": "Recipe_Roof_Metal_InCorner_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Metal_InCorner_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Metal_InCorner_03_C": { + "slug": "recipe-roof-metal-incorner-03-c", + "name": "Inner Corner Roof (4 m)", + "className": "Recipe_Roof_Metal_InCorner_03_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Metal_InCorner_03_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Metal_OutCorner_01_C": { + "slug": "recipe-roof-metal-outcorner-01-c", + "name": "Outer Corner Roof (1 m)", + "className": "Recipe_Roof_Metal_OutCorner_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Metal_OutCorner_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Metal_OutCorner_02_C": { + "slug": "recipe-roof-metal-outcorner-02-c", + "name": "Outer Corner Roof (2 m)", + "className": "Recipe_Roof_Metal_OutCorner_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Metal_OutCorner_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Metal_OutCorner_03_C": { + "slug": "recipe-roof-metal-outcorner-03-c", + "name": "Outer Corner Roof (4 m)", + "className": "Recipe_Roof_Metal_OutCorner_03_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Metal_OutCorner_03_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Tar_01_C": { + "slug": "recipe-roof-tar-01-c", + "name": "Flat Roof", + "className": "Recipe_Roof_Tar_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Tar_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Tar_02_C": { + "slug": "recipe-roof-tar-02-c", + "name": "Roof (1 m)", + "className": "Recipe_Roof_Tar_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Tar_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Tar_03_C": { + "slug": "recipe-roof-tar-03-c", + "name": "Roof (2 m)", + "className": "Recipe_Roof_Tar_03_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Tar_03_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Tar_04_C": { + "slug": "recipe-roof-tar-04-c", + "name": "Roof (4 m)", + "className": "Recipe_Roof_Tar_04_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Tar_04_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Tar_InCorner_01_C": { + "slug": "recipe-roof-tar-incorner-01-c", + "name": "Inner Corner Roof (1 m)", + "className": "Recipe_Roof_Tar_InCorner_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Tar_InCorner_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Tar_InCorner_02_C": { + "slug": "recipe-roof-tar-incorner-02-c", + "name": "Inner Corner Roof (2 m)", + "className": "Recipe_Roof_Tar_InCorner_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Tar_InCorner_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Tar_InCorner_03_C": { + "slug": "recipe-roof-tar-incorner-03-c", + "name": "Inner Corner Roof (4 m)", + "className": "Recipe_Roof_Tar_InCorner_03_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Tar_InCorner_03_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Tar_OutCorner_01_C": { + "slug": "recipe-roof-tar-outcorner-01-c", + "name": "Outer Corner Roof (1 m)", + "className": "Recipe_Roof_Tar_OutCorner_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Tar_OutCorner_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Tar_OutCorner_02_C": { + "slug": "recipe-roof-tar-outcorner-02-c", + "name": "Outer Corner Roof (2 m)", + "className": "Recipe_Roof_Tar_OutCorner_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Tar_OutCorner_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Tar_OutCorner_03_C": { + "slug": "recipe-roof-tar-outcorner-03-c", + "name": "Outer Corner Roof (4 m)", + "className": "Recipe_Roof_Tar_OutCorner_03_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Tar_OutCorner_03_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PipelineMK2_NoIndicator_C": { + "slug": "recipe-pipelinemk2-noindicator-c", + "name": "Clean Pipeline Mk.2", + "className": "Recipe_PipelineMK2_NoIndicator_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CopperSheet_C", + "amount": 2.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_PipelineMK2_NoIndicator_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Pipeline_NoIndicator_C": { + "slug": "recipe-pipeline-noindicator-c", + "name": "Clean Pipeline Mk.1", + "className": "Recipe_Pipeline_NoIndicator_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CopperSheet_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_Pipeline_NoIndicator_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_StorageMedkit_C": { + "slug": "recipe-storagemedkit-c", + "name": "Medical Storage Box", + "className": "Recipe_StorageMedkit_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 6.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 6.0 + } + ], + "products": [ + { + "item": "Desc_StorageMedkit_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_LightsControlPanel_C": { + "slug": "recipe-lightscontrolpanel-c", + "name": "Light Control Panel", + "className": "Recipe_LightsControlPanel_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cable_C", + "amount": 10.0 + }, + { + "item": "Desc_IronPlateReinforced_C", + "amount": 5.0 + }, + { + "item": "Desc_CircuitBoardHighSpeed_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_LightsControlPanel_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_StandaloneWidgetSign_Small_C": { + "slug": "recipe-standalonewidgetsign-small-c", + "name": "Label Sign (2 m)", + "className": "Recipe_StandaloneWidgetSign_Small_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 2.0 + }, + { + "item": "Desc_QuartzCrystal_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_StandaloneWidgetSign_Small_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_StandaloneWidgetSign_SmallVeryWide_C": { + "slug": "recipe-standalonewidgetsign-smallverywide-c", + "name": "Label Sign (4 m)", + "className": "Recipe_StandaloneWidgetSign_SmallVeryWide_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 4.0 + }, + { + "item": "Desc_QuartzCrystal_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_StandaloneWidgetSign_SmallVeryWide_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_StandaloneWidgetSign_SmallWide_C": { + "slug": "recipe-standalonewidgetsign-smallwide-c", + "name": "Label Sign (3 m)", + "className": "Recipe_StandaloneWidgetSign_SmallWide_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 3.0 + }, + { + "item": "Desc_QuartzCrystal_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_StandaloneWidgetSign_SmallWide_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_StandaloneWidgetSign_Square_Tiny_C": { + "slug": "recipe-standalonewidgetsign-square-tiny-c", + "name": "Square Sign (0.5 m)", + "className": "Recipe_StandaloneWidgetSign_Square_Tiny_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 1.0 + }, + { + "item": "Desc_QuartzCrystal_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_StandaloneWidgetSign_Square_Tiny_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_FoundationPassthrough_Hypertube_C": { + "slug": "recipe-foundationpassthrough-hypertube-c", + "name": "Hypertube Floor Hole", + "className": "Recipe_FoundationPassthrough_Hypertube_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 2.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 2.0 + }, + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_FoundationPassthrough_Hypertube_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_StorageHazard_C": { + "slug": "recipe-storagehazard-c", + "name": "Hazard Storage Box", + "className": "Recipe_StorageHazard_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 6.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 6.0 + } + ], + "products": [ + { + "item": "Desc_StorageHazard_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_GoldenCart_C": { + "slug": "recipe-goldencart-c", + "name": "Golden Factory Cart™", + "className": "Recipe_GoldenCart_C", + "alternate": false, + "time": 20.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 2.0, + "ingredients": [ + { + "item": "Desc_GoldIngot_C", + "amount": 15.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 4.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_GolfCartGold_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Window_8x4_05_C": { + "slug": "recipe-wall-window-8x4-05-c", + "name": "Angled Frame Window", + "className": "Recipe_Wall_Window_8x4_05_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Silica_C", + "amount": 2.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Window_8x4_05_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Window_8x4_06_C": { + "slug": "recipe-wall-window-8x4-06-c", + "name": "Honeycomb Frame Window", + "className": "Recipe_Wall_Window_8x4_06_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Silica_C", + "amount": 2.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Window_8x4_06_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Window_8x4_07_C": { + "slug": "recipe-wall-window-8x4-07-c", + "name": "Triple Frame Window", + "className": "Recipe_Wall_Window_8x4_07_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Silica_C", + "amount": 2.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Window_8x4_07_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Window_Thin_8x4_01_C": { + "slug": "recipe-wall-window-thin-8x4-01-c", + "name": "Full Frame Window", + "className": "Recipe_Wall_Window_Thin_8x4_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Silica_C", + "amount": 2.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Window_Thin_8x4_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Window_Thin_8x4_02_C": { + "slug": "recipe-wall-window-thin-8x4-02-c", + "name": "Hex Frame Window", + "className": "Recipe_Wall_Window_Thin_8x4_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Silica_C", + "amount": 2.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Window_Thin_8x4_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Pillar_Small_Frame_C": { + "slug": "recipe-pillar-small-frame-c", + "name": "Small Frame Pillar", + "className": "Recipe_Pillar_Small_Frame_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlate_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Pillar_Small_Frame_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PillarMiddle_Frame_C": { + "slug": "recipe-pillarmiddle-frame-c", + "name": "Big Frame Pillar", + "className": "Recipe_PillarMiddle_Frame_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlate_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_PillarMiddle_Frame_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ChainLinkFence_C": { + "slug": "recipe-chainlinkfence-c", + "name": "Construction Fence", + "className": "Recipe_ChainLinkFence_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_ChainLinkFence_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_TarpFence_C": { + "slug": "recipe-tarpfence-c", + "name": "Tarp Construction Fence", + "className": "Recipe_TarpFence_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_TarpFence_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Barrier_Low_01_C": { + "slug": "recipe-barrier-low-01-c", + "name": "Low Barrier", + "className": "Recipe_Barrier_Low_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 1.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_Barrier_Low_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Barrier_Tall_01_C": { + "slug": "recipe-barrier-tall-01-c", + "name": "High Barrier", + "className": "Recipe_Barrier_Tall_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 1.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_Barrier_Tall_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Concrete_Barrier_01_C": { + "slug": "recipe-concrete-barrier-01-c", + "name": "Road Barrier", + "className": "Recipe_Concrete_Barrier_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Concrete_Barrier_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_StandaloneWidgetSign_Medium_C": { + "slug": "recipe-standalonewidgetsign-medium-c", + "name": "Display Sign", + "className": "Recipe_StandaloneWidgetSign_Medium_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 2.0 + }, + { + "item": "Desc_QuartzCrystal_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_StandaloneWidgetSign_Medium_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_StandaloneWidgetSign_Portrait_C": { + "slug": "recipe-standalonewidgetsign-portrait-c", + "name": "Portrait Sign", + "className": "Recipe_StandaloneWidgetSign_Portrait_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 4.0 + }, + { + "item": "Desc_QuartzCrystal_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_StandaloneWidgetSign_Portrait_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_StandaloneWidgetSign_Square_C": { + "slug": "recipe-standalonewidgetsign-square-c", + "name": "Square Sign (2 m)", + "className": "Recipe_StandaloneWidgetSign_Square_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 3.0 + }, + { + "item": "Desc_QuartzCrystal_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_StandaloneWidgetSign_Square_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_StandaloneWidgetSign_Square_Small_C": { + "slug": "recipe-standalonewidgetsign-square-small-c", + "name": "Square Sign (1 m)", + "className": "Recipe_StandaloneWidgetSign_Square_Small_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 1.0 + }, + { + "item": "Desc_QuartzCrystal_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_StandaloneWidgetSign_Square_Small_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_FoundationPassthrough_Lift_C": { + "slug": "recipe-foundationpassthrough-lift-c", + "name": "Conveyor Lift Floor Hole", + "className": "Recipe_FoundationPassthrough_Lift_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 2.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 2.0 + }, + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_FoundationPassthrough_Lift_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Pillar_Small_Concrete_C": { + "slug": "recipe-pillar-small-concrete-c", + "name": "Small Concrete Pillar", + "className": "Recipe_Pillar_Small_Concrete_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Pillar_Small_Concrete_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PillarMiddle_Concrete_C": { + "slug": "recipe-pillarmiddle-concrete-c", + "name": "Big Concrete Pillar", + "className": "Recipe_PillarMiddle_Concrete_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_PillarMiddle_Concrete_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Catwalk_Cross_C": { + "slug": "recipe-catwalk-cross-c", + "name": "Catwalk Intersection", + "className": "Recipe_Catwalk_Cross_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 2.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_CatwalkCross_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Catwalk_Ramp_C": { + "slug": "recipe-catwalk-ramp-c", + "name": "Catwalk Ramp", + "className": "Recipe_Catwalk_Ramp_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 2.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_CatwalkRamp_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Catwalk_Stairs_C": { + "slug": "recipe-catwalk-stairs-c", + "name": "Catwalk Stairs", + "className": "Recipe_Catwalk_Stairs_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 2.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_CatwalkStairs_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Catwalk_Straight_C": { + "slug": "recipe-catwalk-straight-c", + "name": "Straight Catwalk", + "className": "Recipe_Catwalk_Straight_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 2.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_CatwalkStraight_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Catwalk_T_C": { + "slug": "recipe-catwalk-t-c", + "name": "Catwalk T-Junction", + "className": "Recipe_Catwalk_T_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 2.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_CatwalkT_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Catwalk_Turn_C": { + "slug": "recipe-catwalk-turn-c", + "name": "Catwalk Corner", + "className": "Recipe_Catwalk_Turn_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 2.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_CatwalkTurn_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_StandaloneWidgetSign_Huge_C": { + "slug": "recipe-standalonewidgetsign-huge-c", + "name": "Large Billboard", + "className": "Recipe_StandaloneWidgetSign_Huge_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 12.0 + }, + { + "item": "Desc_CopperSheet_C", + "amount": 20.0 + }, + { + "item": "Desc_CrystalOscillator_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_StandaloneWidgetSign_Huge_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_StandaloneWidgetSign_Large_C": { + "slug": "recipe-standalonewidgetsign-large-c", + "name": "Small Billboard", + "className": "Recipe_StandaloneWidgetSign_Large_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 3.0 + }, + { + "item": "Desc_CopperSheet_C", + "amount": 4.0 + }, + { + "item": "Desc_CrystalOscillator_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_StandaloneWidgetSign_Large_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Beam_C": { + "slug": "recipe-beam-c", + "name": "Metal Beam", + "className": "Recipe_Beam_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlate_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_Beam_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Beam_Connector_C": { + "slug": "recipe-beam-connector-c", + "name": "Beam Connector", + "className": "Recipe_Beam_Connector_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Beam_Connector_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Beam_Connector_Double_C": { + "slug": "recipe-beam-connector-double-c", + "name": "Double Beam Connector", + "className": "Recipe_Beam_Connector_Double_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Beam_Connector_Double_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Beam_Painted_C": { + "slug": "recipe-beam-painted-c", + "name": "Painted Beam", + "className": "Recipe_Beam_Painted_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlate_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_Beam_Painted_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Beam_Support_C": { + "slug": "recipe-beam-support-c", + "name": "Beam Support", + "className": "Recipe_Beam_Support_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Beam_Support_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_GeneratorBiomass_Automated_C": { + "slug": "recipe-generatorbiomass-automated-c", + "name": "Biomass Burner", + "className": "Recipe_GeneratorBiomass_Automated_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 15.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 15.0 + }, + { + "item": "Desc_Wire_C", + "amount": 25.0 + } + ], + "products": [ + { + "item": "Desc_GeneratorBiomass_Automated_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SpaceElevator_C": { + "slug": "recipe-spaceelevator-c", + "name": "Space Elevator", + "className": "Recipe_SpaceElevator_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 500.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 250.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 400.0 + }, + { + "item": "Desc_Wire_C", + "amount": 1500.0 + } + ], + "products": [ + { + "item": "Desc_SpaceElevator_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Biomass_Leaves_C": { + "slug": "recipe-biomass-leaves-c", + "name": "Biomass (Leaves)", + "className": "Recipe_Biomass_Leaves_C", + "alternate": false, + "time": 5.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 0.4, + "ingredients": [ + { + "item": "Desc_Leaves_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_GenericBiomass_C", + "amount": 5.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Biomass_Wood_C": { + "slug": "recipe-biomass-wood-c", + "name": "Biomass (Wood)", + "className": "Recipe_Biomass_Wood_C", + "alternate": false, + "time": 4.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Wood_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_GenericBiomass_C", + "amount": 20.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_MinerMk1_C": { + "slug": "recipe-minermk1-c", + "name": "Miner Mk.1", + "className": "Recipe_MinerMk1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "BP_ItemDescriptorPortableMiner_C", + "amount": 1.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 10.0 + }, + { + "item": "Desc_Cement_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_MinerMk1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_StorageContainerMk1_C": { + "slug": "recipe-storagecontainermk1-c", + "name": "Storage Container", + "className": "Recipe_StorageContainerMk1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 10.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_StorageContainerMk1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_IronPlateReinforced_C": { + "slug": "recipe-ironplatereinforced-c", + "name": "Reinforced Iron Plate", + "className": "Recipe_IronPlateReinforced_C", + "alternate": false, + "time": 12.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 6.0 + }, + { + "item": "Desc_IronScrew_C", + "amount": 12.0 + } + ], + "products": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConstructorMk1_C": { + "slug": "recipe-constructormk1-c", + "name": "Constructor", + "className": "Recipe_ConstructorMk1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 2.0 + }, + { + "item": "Desc_Cable_C", + "amount": 8.0 + } + ], + "products": [ + { + "item": "Desc_ConstructorMk1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Concrete_C": { + "slug": "recipe-concrete-c", + "name": "Concrete", + "className": "Recipe_Concrete_C", + "alternate": false, + "time": 4.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Stone_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Cement_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Screw_C": { + "slug": "recipe-screw-c", + "name": "Screw", + "className": "Recipe_Screw_C", + "alternate": false, + "time": 6.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_IronScrew_C", + "amount": 4.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SmelterBasicMk1_C": { + "slug": "recipe-smelterbasicmk1-c", + "name": "Smelter", + "className": "Recipe_SmelterBasicMk1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 5.0 + }, + { + "item": "Desc_Wire_C", + "amount": 8.0 + } + ], + "products": [ + { + "item": "Desc_SmelterMk1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Cable_C": { + "slug": "recipe-cable-c", + "name": "Cable", + "className": "Recipe_Cable_C", + "alternate": false, + "time": 2.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Wire_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Cable_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wire_C": { + "slug": "recipe-wire-c", + "name": "Wire", + "className": "Recipe_Wire_C", + "alternate": false, + "time": 4.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CopperIngot_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_Wire_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_IngotCopper_C": { + "slug": "recipe-ingotcopper-c", + "name": "Copper Ingot", + "className": "Recipe_IngotCopper_C", + "alternate": false, + "time": 2.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 3.0, + "ingredients": [ + { + "item": "Desc_OreCopper_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_CopperIngot_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_SmelterMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Workshop_C": { + "slug": "recipe-workshop-c", + "name": "Equipment Workshop", + "className": "Recipe_Workshop_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 6.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_Workshop_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PortableMiner_C": { + "slug": "recipe-portableminer-c", + "name": "Portable Miner", + "className": "Recipe_PortableMiner_C", + "alternate": false, + "time": 40.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 2.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "BP_ItemDescriptorPortableMiner_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Fireworks_01_C": { + "slug": "recipe-fireworks-01-c", + "name": "Sweet Fireworks", + "className": "Recipe_Fireworks_01_C", + "alternate": false, + "time": 24.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_XmasBranch_C", + "amount": 6.0 + }, + { + "item": "Desc_CandyCane_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Fireworks_Projectile_01_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Fireworks_02_C": { + "slug": "recipe-fireworks-02-c", + "name": "Fancy Fireworks", + "className": "Recipe_Fireworks_02_C", + "alternate": false, + "time": 24.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_XmasBranch_C", + "amount": 4.0 + }, + { + "item": "Desc_XmasBow_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Fireworks_Projectile_02_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Fireworks_03_C": { + "slug": "recipe-fireworks-03-c", + "name": "Sparkly Fireworks", + "className": "Recipe_Fireworks_03_C", + "alternate": false, + "time": 24.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_XmasBranch_C", + "amount": 3.0 + }, + { + "item": "Desc_Snow_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Fireworks_Projectile_03_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Fake_Recipe_Gift_C": { + "slug": "fake-recipe-gift-c", + "name": "FCISMAS Gift", + "className": "Fake_Recipe_Gift_C", + "alternate": false, + "time": 4, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 0, + "ingredients": [], + "products": [ + { + "item": "Desc_Gift_C", + "amount": 1 + } + ], + "producedIn": [ + "Desc_TreeGiftProducer_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + } + }, + "schematics": { + "ResourceSink_Checkmark_C": { + "className": "ResourceSink_Checkmark_C", + "type": "EST_ResourceSink", + "name": "FICSIT Checkmark™", + "slug": "ficsit-checkmarktm", + "icon": "resourcesink-checkmark-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 8.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_CyberWagon_Unlock_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": false + }, + "Schematic_2-5_C": { + "className": "Schematic_2-5_C", + "type": "EST_Milestone", + "name": "Resource Sink Bonus Program", + "slug": "resource-sink-bonus-program", + "icon": "schematic-2-5-c", + "cost": [ + { + "item": "Desc_Cement_C", + "amount": 400.0 + }, + { + "item": "Desc_Wire_C", + "amount": 500.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 200.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 200.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_ResourceSink_C", + "Recipe_ResourceSinkShop_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 2, + "time": 300.0, + "mam": false, + "alternate": false + }, + "Schematic_3-1_C": { + "className": "Schematic_3-1_C", + "type": "EST_Milestone", + "name": "Coal Power", + "slug": "coal-power", + "icon": "schematic-3-1-c", + "cost": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 150.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 50.0 + }, + { + "item": "Desc_Cable_C", + "amount": 500.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_GeneratorCoal_C", + "Recipe_WaterPump_C", + "Recipe_Pipeline_C", + "Recipe_PipeSupport_C", + "Recipe_PipelineJunction_Cross_C", + "Recipe_PipelinePump_C", + "Recipe_PipeStorageTank_C" + ], + "scannerResources": [ + "" + ], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 480.0, + "mam": false, + "alternate": false + }, + "Research_Quartz_4_1_C": { + "className": "Research_Quartz_4_1_C", + "type": "EST_MAM", + "name": "Radio Signal Scanning", + "slug": "radio-signal-scanning", + "icon": "research-quartz-4-1-c", + "cost": [ + { + "item": "Desc_CrystalOscillator_C", + "amount": 100.0 + }, + { + "item": "Desc_Motor_C", + "amount": 100.0 + }, + { + "item": "BP_EquipmentDescriptorObjectScanner_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Sulfur_RocketFuel_C": { + "className": "Research_Sulfur_RocketFuel_C", + "type": "EST_MAM", + "name": "Rocket Fuel", + "slug": "rocket-fuel", + "icon": "research-sulfur-rocketfuel-c", + "cost": [ + { + "item": "Desc_HardDrive_C", + "amount": 1.0 + }, + { + "item": "Desc_GasTank_C", + "amount": 10.0 + }, + { + "item": "Desc_TurboFuel_C", + "amount": 100.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_RocketFuel_C", + "Recipe_PackagedRocketFuel_C", + "Recipe_UnpackageRocketFuel_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Schematic_Alternate_RocketFuel_Nitro_C": { + "className": "Schematic_Alternate_RocketFuel_Nitro_C", + "type": "EST_Alternate", + "name": "Alternate: Nitro Rocket Fuel", + "slug": "alternate-nitro-rocket-fuel", + "icon": "schematic-alternate-rocketfuel-nitro-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_RocketFuel_Nitro_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Sulfur_RocketFuel_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_9-2_C": { + "className": "Schematic_9-2_C", + "type": "EST_Milestone", + "name": "Quantum Encoding", + "slug": "quantum-encoding", + "icon": "schematic-9-2-c", + "cost": [ + { + "item": "Desc_TimeCrystal_C", + "amount": 50.0 + }, + { + "item": "Desc_FicsiteMesh_C", + "amount": 100.0 + }, + { + "item": "Desc_MotorLightweight_C", + "amount": 200.0 + }, + { + "item": "Desc_ComputerSuper_C", + "amount": 400.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_QuantumEncoder_C", + "Recipe_QuantumEnergy_C", + "Recipe_DarkEnergy_C", + "Recipe_DarkMatter_C", + "Recipe_SuperpositionOscillator_C", + "Recipe_TemporalProcessor_C", + "Recipe_SpaceElevatorPart_12_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 9, + "time": 1200.0, + "mam": false, + "alternate": false + }, + "Research_Sulfur_IonizedFuel_C": { + "className": "Research_Sulfur_IonizedFuel_C", + "type": "EST_MAM", + "name": "Ionized Fuel", + "slug": "ionized-fuel", + "icon": "research-sulfur-ionizedfuel-c", + "cost": [ + { + "item": "Desc_HardDrive_C", + "amount": 1.0 + }, + { + "item": "Desc_CrystalShard_C", + "amount": 100.0 + }, + { + "item": "Desc_PackagedRocketFuel_C", + "amount": 200.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_IonizedFuel_C", + "Recipe_PackagedIonizedFuel_C", + "Recipe_UnpackageIonizedFuel_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Schematic_Alternate_IonizedFuel_Dark_C": { + "className": "Schematic_Alternate_IonizedFuel_Dark_C", + "type": "EST_Alternate", + "name": "Alternate: Dark-Ion Fuel", + "slug": "alternate-dark-ion-fuel", + "icon": "schematic-alternate-ionizedfuel-dark-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_IonizedFuel_Dark_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_9-2_C", + "Research_Sulfur_IonizedFuel_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_9-1_C": { + "className": "Schematic_9-1_C", + "type": "EST_Milestone", + "name": "Matter Conversion", + "slug": "matter-conversion", + "icon": "schematic-9-1-c", + "cost": [ + { + "item": "Desc_ModularFrameFused_C", + "amount": 100.0 + }, + { + "item": "Desc_ModularFrameLightweight_C", + "amount": 250.0 + }, + { + "item": "Desc_CoolingSystem_C", + "amount": 500.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Converter_C", + "Recipe_FicsiteIngot_Iron_C", + "Recipe_FicsiteMesh_C", + "Recipe_Diamond_C", + "Recipe_TimeCrystal_C", + "Recipe_SpaceElevatorPart_10_C", + "Recipe_IngotSAM_C", + "Recipe_SAMFluctuator_C" + ], + "scannerResources": [ + "" + ], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 9, + "time": 900.0, + "mam": false, + "alternate": false + }, + "Research_Sulfur_0_C": { + "className": "Research_Sulfur_0_C", + "type": "EST_MAM", + "name": "Sulfur", + "slug": "sulfur", + "icon": "research-sulfur-0-c", + "cost": [ + { + "item": "Desc_Sulfur_C", + "amount": 10.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [ + "Desc_Sulfur_C" + ], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Schematic_5-1_C": { + "className": "Schematic_5-1_C", + "type": "EST_Milestone", + "name": "Oil Processing", + "slug": "oil-processing", + "icon": "schematic-5-1-c", + "cost": [ + { + "item": "Desc_Motor_C", + "amount": 50.0 + }, + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 100.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 500.0 + }, + { + "item": "Desc_CopperSheet_C", + "amount": 500.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PetroleumCoke_C", + "Recipe_CircuitBoard_C", + "Recipe_OilPump_C", + "Recipe_OilRefinery_C", + "Recipe_Valve_C", + "Recipe_Plastic_C", + "Recipe_Rubber_C", + "Recipe_LiquidFuel_C" + ], + "scannerResources": [ + "" + ], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 5, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Research_Sulfur_TurboFuel_C": { + "className": "Research_Sulfur_TurboFuel_C", + "type": "EST_MAM", + "name": "Turbofuel", + "slug": "turbofuel", + "icon": "research-sulfur-turbofuel-c", + "cost": [ + { + "item": "Desc_HardDrive_C", + "amount": 1.0 + }, + { + "item": "Desc_CompactedCoal_C", + "amount": 15.0 + }, + { + "item": "Desc_Fuel_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Alternate_Turbofuel_C", + "Recipe_PackagedTurboFuel_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Schematic_Alternate_Diamond_Turbo_C": { + "className": "Schematic_Alternate_Diamond_Turbo_C", + "type": "EST_Alternate", + "name": "Alternate: Turbo Diamonds", + "slug": "alternate-turbo-diamonds", + "icon": "schematic-alternate-diamond-turbo-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Diamond_Turbo_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_9-1_C", + "Research_Sulfur_TurboFuel_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Diamond_Pink_C": { + "className": "Schematic_Alternate_Diamond_Pink_C", + "type": "EST_Alternate", + "name": "Alternate: Pink Diamonds", + "slug": "alternate-pink-diamonds", + "icon": "schematic-alternate-diamond-pink-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Diamond_Pink_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_9-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Diamond_Petroleum_C": { + "className": "Schematic_Alternate_Diamond_Petroleum_C", + "type": "EST_Alternate", + "name": "Alternate: Petroleum Diamonds", + "slug": "alternate-petroleum-diamonds", + "icon": "schematic-alternate-diamond-petroleum-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Diamond_Petroleum_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_9-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Diamond_OilBased_C": { + "className": "Schematic_Alternate_Diamond_OilBased_C", + "type": "EST_Alternate", + "name": "Alternate: Oil-Based Diamonds", + "slug": "alternate-oil-based-diamonds", + "icon": "schematic-alternate-diamond-oilbased-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Diamond_OilBased_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_9-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Diamond_Cloudy_C": { + "className": "Schematic_Alternate_Diamond_Cloudy_C", + "type": "EST_Alternate", + "name": "Alternate: Cloudy Diamonds", + "slug": "alternate-cloudy-diamonds", + "icon": "schematic-alternate-diamond-cloudy-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Diamond_Cloudy_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_9-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_DarkMatter_Trap_C": { + "className": "Schematic_Alternate_DarkMatter_Trap_C", + "type": "EST_Alternate", + "name": "Alternate: Dark Matter Trap", + "slug": "alternate-dark-matter-trap", + "icon": "schematic-alternate-darkmatter-trap-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_DarkMatter_Trap_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_9-2_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_DarkMatter_Crystallization_C": { + "className": "Schematic_Alternate_DarkMatter_Crystallization_C", + "type": "EST_Alternate", + "name": "Alternate: Dark Matter Crystallization", + "slug": "alternate-dark-matter-crystallization", + "icon": "schematic-alternate-darkmatter-crystallization-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_DarkMatter_Crystallization_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_9-2_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_WetConcrete_C": { + "className": "Schematic_Alternate_WetConcrete_C", + "type": "EST_Alternate", + "name": "Alternate: Wet Concrete", + "slug": "alternate-wet-concrete", + "icon": "schematic-alternate-wetconcrete-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_WetConcrete_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_TurboHeavyFuel_C": { + "className": "Schematic_Alternate_TurboHeavyFuel_C", + "type": "EST_Alternate", + "name": "Alternate: Turbo Heavy Fuel", + "slug": "alternate-turbo-heavy-fuel", + "icon": "schematic-alternate-turboheavyfuel-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_TurboHeavyFuel_C", + "Recipe_PackagedTurboFuel_C", + "Recipe_UnpackageTurboFuel_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C", + "Schematic_Alternate_EnrichedCoal_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_3-4_C": { + "className": "Schematic_3-4_C", + "type": "EST_Milestone", + "name": "Basic Steel Production", + "slug": "basic-steel-production", + "icon": "schematic-3-4-c", + "cost": [ + { + "item": "Desc_ModularFrame_C", + "amount": 50.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 150.0 + }, + { + "item": "Desc_Cement_C", + "amount": 500.0 + }, + { + "item": "Desc_Wire_C", + "amount": 1000.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_SmelterMk1_C", + "Recipe_IngotSteel_C", + "Recipe_SteelBeam_C", + "Recipe_SteelPipe_C", + "Recipe_SpaceElevatorPart_2_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 480.0, + "mam": false, + "alternate": false + }, + "Schematic_Alternate_SteelRod_C": { + "className": "Schematic_Alternate_SteelRod_C", + "type": "EST_Alternate", + "name": "Alternate: Steel Rod", + "slug": "alternate-steel-rod", + "icon": "schematic-alternate-steelrod-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_SteelRod_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-4_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_5-4_C": { + "className": "Schematic_5-4_C", + "type": "EST_Milestone", + "name": "Fluid Packaging", + "slug": "fluid-packaging", + "icon": "schematic-5-4-c", + "cost": [ + { + "item": "Desc_Plastic_C", + "amount": 200.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 400.0 + }, + { + "item": "Desc_CopperSheet_C", + "amount": 1000.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Packager_C", + "Recipe_FluidCanister_C", + "Recipe_PackagedWater_C", + "Recipe_PackagedCrudeOil_C", + "Recipe_Fuel_C", + "Recipe_PackagedOilResidue_C", + "Recipe_PackagedBiofuel_C", + "Recipe_LiquidBiofuel_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 5, + "time": 300.0, + "mam": false, + "alternate": false + }, + "Schematic_Alternate_SteelCanister_C": { + "className": "Schematic_Alternate_SteelCanister_C", + "type": "EST_Alternate", + "name": "Alternate: Steel Canister", + "slug": "alternate-steel-canister", + "icon": "schematic-alternate-steelcanister-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_SteelCanister_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-4_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_SteamedCopperSheet_C": { + "className": "Schematic_Alternate_SteamedCopperSheet_C", + "type": "EST_Alternate", + "name": "Alternate: Steamed Copper Sheet", + "slug": "alternate-steamed-copper-sheet", + "icon": "schematic-alternate-steamedcoppersheet-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_SteamedCopperSheet_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_RubberConcrete_C": { + "className": "Schematic_Alternate_RubberConcrete_C", + "type": "EST_Alternate", + "name": "Alternate: Rubber Concrete", + "slug": "alternate-rubber-concrete", + "icon": "schematic-alternate-rubberconcrete-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_RubberConcrete_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_RecycledRubber_C": { + "className": "Schematic_Alternate_RecycledRubber_C", + "type": "EST_Alternate", + "name": "Alternate: Recycled Rubber", + "slug": "alternate-recycled-rubber", + "icon": "schematic-alternate-recycledrubber-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_RecycledRubber_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Research_Quartz_1_1_C": { + "className": "Research_Quartz_1_1_C", + "type": "EST_MAM", + "name": "Quartz Crystals", + "slug": "quartz-crystals", + "icon": "research-quartz-1-1-c", + "cost": [ + { + "item": "Desc_RawQuartz_C", + "amount": 20.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_QuartzCrystal_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Schematic_Alternate_PureQuartzCrystal_C": { + "className": "Schematic_Alternate_PureQuartzCrystal_C", + "type": "EST_Alternate", + "name": "Alternate: Pure Quartz Crystal", + "slug": "alternate-pure-quartz-crystal", + "icon": "schematic-alternate-purequartzcrystal-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_PureQuartzCrystal_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Quartz_1_1_C", + "Schematic_5-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_PureIronIngot_C": { + "className": "Schematic_Alternate_PureIronIngot_C", + "type": "EST_Alternate", + "name": "Alternate: Pure Iron Ingot", + "slug": "alternate-pure-iron-ingot", + "icon": "schematic-alternate-pureironingot-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_PureIronIngot_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_PureCopperIngot_C": { + "className": "Schematic_Alternate_PureCopperIngot_C", + "type": "EST_Alternate", + "name": "Alternate: Pure Copper Ingot", + "slug": "alternate-pure-copper-ingot", + "icon": "schematic-alternate-purecopperingot-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_PureCopperIngot_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Research_Caterium_0_C": { + "className": "Research_Caterium_0_C", + "type": "EST_MAM", + "name": "Caterium", + "slug": "caterium", + "icon": "research-caterium-0-c", + "cost": [ + { + "item": "Desc_OreGold_C", + "amount": 10.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [ + "Desc_OreGold_C" + ], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Schematic_Alternate_PureCateriumIngot_C": { + "className": "Schematic_Alternate_PureCateriumIngot_C", + "type": "EST_Alternate", + "name": "Alternate: Pure Caterium Ingot", + "slug": "alternate-pure-caterium-ingot", + "icon": "schematic-alternate-purecateriumingot-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_PureCateriumIngot_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Caterium_0_C", + "Schematic_5-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_7-1_C": { + "className": "Schematic_7-1_C", + "type": "EST_Milestone", + "name": "Bauxite Refinement", + "slug": "bauxite-refinement", + "icon": "schematic-7-1-c", + "cost": [ + { + "item": "Desc_Computer_C", + "amount": 100.0 + }, + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 100.0 + }, + { + "item": "Desc_Motor_C", + "amount": 250.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 500.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_AluminaSolution_C", + "Recipe_PackagedAlumina_C", + "Recipe_AluminumScrap_C", + "Recipe_IngotAluminum_C", + "Recipe_AluminumSheet_C", + "Recipe_AluminumCasing_C" + ], + "scannerResources": [ + "Desc_OreBauxite_C", + "Desc_RawQuartz_C" + ], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 7, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_Alternate_PureAluminumIngot_C": { + "className": "Schematic_Alternate_PureAluminumIngot_C", + "type": "EST_Alternate", + "name": "Alternate: Pure Aluminum Ingot", + "slug": "alternate-pure-aluminum-ingot", + "icon": "schematic-alternate-purealuminumingot-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_PureAluminumIngot_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_7-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_PolymerResin_C": { + "className": "Schematic_Alternate_PolymerResin_C", + "type": "EST_Alternate", + "name": "Alternate: Polymer Resin", + "slug": "alternate-polymer-resin", + "icon": "schematic-alternate-polymerresin-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_PolymerResin_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_PlasticSmartPlating_C": { + "className": "Schematic_Alternate_PlasticSmartPlating_C", + "type": "EST_Alternate", + "name": "Alternate: Plastic Smart Plating", + "slug": "alternate-plastic-smart-plating", + "icon": "schematic-alternate-plasticsmartplating-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_PlasticSmartPlating_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_4-1_C": { + "className": "Schematic_4-1_C", + "type": "EST_Milestone", + "name": "Advanced Steel Production", + "slug": "advanced-steel-production", + "icon": "schematic-4-1-c", + "cost": [ + { + "item": "Desc_SteelPipe_C", + "amount": 100.0 + }, + { + "item": "Desc_ModularFrame_C", + "amount": 100.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 200.0 + }, + { + "item": "Desc_Cement_C", + "amount": 500.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_MinerMk2_C", + "Recipe_EncasedIndustrialBeam_C", + "Recipe_Stator_C", + "Recipe_Motor_C", + "Recipe_SpaceElevatorPart_3_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 4, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Research_Caterium_4_1_C": { + "className": "Research_Caterium_4_1_C", + "type": "EST_MAM", + "name": "AI Limiter", + "slug": "ai-limiter", + "icon": "research-caterium-4-1-c", + "cost": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 200.0 + }, + { + "item": "Desc_CopperSheet_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_AILimiter_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Schematic_Alternate_HighSpeedWiring_C": { + "className": "Schematic_Alternate_HighSpeedWiring_C", + "type": "EST_Alternate", + "name": "Alternate: Automated Speed Wiring", + "slug": "alternate-automated-speed-wiring", + "icon": "schematic-alternate-highspeedwiring-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_HighSpeedWiring_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_4-1_C", + "Research_Caterium_4_1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_HeavyOilResidue_C": { + "className": "Schematic_Alternate_HeavyOilResidue_C", + "type": "EST_Alternate", + "name": "Alternate: Heavy Oil Residue", + "slug": "alternate-heavy-oil-residue", + "icon": "schematic-alternate-heavyoilresidue-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_HeavyOilResidue_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_5-2_C": { + "className": "Schematic_5-2_C", + "type": "EST_Milestone", + "name": "Industrial Manufacturing", + "slug": "industrial-manufacturing", + "icon": "schematic-5-2-c", + "cost": [ + { + "item": "Desc_Motor_C", + "amount": 200.0 + }, + { + "item": "Desc_ModularFrame_C", + "amount": 200.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 400.0 + }, + { + "item": "Desc_Cable_C", + "amount": 1000.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_ManufacturerMk1_C", + "Recipe_Computer_C", + "Recipe_ModularFrameHeavy_C", + "Recipe_SpaceElevatorPart_4_C", + "Recipe_SpaceElevatorPart_5_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 6, + "time": 900.0, + "mam": false, + "alternate": false + }, + "Schematic_Alternate_HeavyFlexibleFrame_C": { + "className": "Schematic_Alternate_HeavyFlexibleFrame_C", + "type": "EST_Alternate", + "name": "Alternate: Heavy Flexible Frame", + "slug": "alternate-heavy-flexible-frame", + "icon": "schematic-alternate-heavyflexibleframe-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_HeavyFlexibleFrame_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-2_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_FusedWire_C": { + "className": "Schematic_Alternate_FusedWire_C", + "type": "EST_Alternate", + "name": "Alternate: Fused Wire", + "slug": "alternate-fused-wire", + "icon": "schematic-alternate-fusedwire-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_FusedWire_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Caterium_0_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_FlexibleFramework_C": { + "className": "Schematic_Alternate_FlexibleFramework_C", + "type": "EST_Alternate", + "name": "Alternate: Flexible Framework", + "slug": "alternate-flexible-framework", + "icon": "schematic-alternate-flexibleframework-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_FlexibleFramework_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_ElectrodeCircuitBoard_C": { + "className": "Schematic_Alternate_ElectrodeCircuitBoard_C", + "type": "EST_Alternate", + "name": "Alternate: Electrode Circuit Board", + "slug": "alternate-electrode-circuit-board", + "icon": "schematic-alternate-electrodecircuitboard-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_ElectrodeCircuitBoard_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_ElectroAluminumScrap_C": { + "className": "Schematic_Alternate_ElectroAluminumScrap_C", + "type": "EST_Alternate", + "name": "Alternate: Electrode Aluminum Scrap", + "slug": "alternate-electrode-aluminum-scrap", + "icon": "schematic-alternate-electroaluminumscrap-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_ElectroAluminumScrap_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_7-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_DilutedPackagedFuel_C": { + "className": "Schematic_Alternate_DilutedPackagedFuel_C", + "type": "EST_Alternate", + "name": "Alternate: Diluted Packaged Fuel", + "slug": "alternate-diluted-packaged-fuel", + "icon": "schematic-alternate-dilutedpackagedfuel-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_DilutedPackagedFuel_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_2-1_C": { + "className": "Schematic_2-1_C", + "type": "EST_Milestone", + "name": "Part Assembly", + "slug": "part-assembly", + "icon": "schematic-2-1-c", + "cost": [ + { + "item": "Desc_Cable_C", + "amount": 200.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 200.0 + }, + { + "item": "Desc_IronScrew_C", + "amount": 500.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 300.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_AssemblerMk1_C", + "Recipe_CopperSheet_C", + "Recipe_Rotor_C", + "Recipe_ModularFrame_C", + "Recipe_SpaceElevatorPart_1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 2, + "time": 360.0, + "mam": false, + "alternate": false + }, + "Schematic_Alternate_CopperRotor_C": { + "className": "Schematic_Alternate_CopperRotor_C", + "type": "EST_Alternate", + "name": "Alternate: Copper Rotor", + "slug": "alternate-copper-rotor", + "icon": "schematic-alternate-copperrotor-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_CopperRotor_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_2-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_CopperAlloyIngot_C": { + "className": "Schematic_Alternate_CopperAlloyIngot_C", + "type": "EST_Alternate", + "name": "Alternate: Copper Alloy Ingot", + "slug": "alternate-copper-alloy-ingot", + "icon": "schematic-alternate-copperalloyingot-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_CopperAlloyIngot_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-4_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_CokeSteelIngot_C": { + "className": "Schematic_Alternate_CokeSteelIngot_C", + "type": "EST_Alternate", + "name": "Alternate: Coke Steel Ingot", + "slug": "alternate-coke-steel-ingot", + "icon": "schematic-alternate-cokesteelingot-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_CokeSteelIngot_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_CoatedIronPlate_C": { + "className": "Schematic_Alternate_CoatedIronPlate_C", + "type": "EST_Alternate", + "name": "Alternate: Coated Iron Plate", + "slug": "alternate-coated-iron-plate", + "icon": "schematic-alternate-coatedironplate-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_CoatedIronPlate_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_CoatedIronCanister_C": { + "className": "Schematic_Alternate_CoatedIronCanister_C", + "type": "EST_Alternate", + "name": "Alternate: Coated Iron Canister", + "slug": "alternate-coated-iron-canister", + "icon": "schematic-alternate-coatedironcanister-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_CoatedIronCanister_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-4_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_CoatedCable_C": { + "className": "Schematic_Alternate_CoatedCable_C", + "type": "EST_Alternate", + "name": "Alternate: Coated Cable", + "slug": "alternate-coated-cable", + "icon": "schematic-alternate-coatedcable-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_CoatedCable_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_BoltedFrame_C": { + "className": "Schematic_Alternate_BoltedFrame_C", + "type": "EST_Alternate", + "name": "Alternate: Bolted Frame", + "slug": "alternate-bolted-frame", + "icon": "schematic-alternate-boltedframe-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_BoltedFrame_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_2-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_AdheredIronPlate_C": { + "className": "Schematic_Alternate_AdheredIronPlate_C", + "type": "EST_Alternate", + "name": "Alternate: Adhered Iron Plate", + "slug": "alternate-adhered-iron-plate", + "icon": "schematic-alternate-adheredironplate-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_AdheredIronPlate_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_8-5_C": { + "className": "Schematic_8-5_C", + "type": "EST_Milestone", + "name": "Particle Enrichment", + "slug": "particle-enrichment", + "icon": "schematic-8-5-c", + "cost": [ + { + "item": "Desc_MotorLightweight_C", + "amount": 50.0 + }, + { + "item": "Desc_ModularFrameFused_C", + "amount": 100.0 + }, + { + "item": "Desc_CoolingSystem_C", + "amount": 200.0 + }, + { + "item": "Desc_HighSpeedWire_C", + "amount": 2500.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_NitricAcid_C", + "Recipe_PackagedNitricAcid_C", + "Recipe_NonFissileUranium_C", + "Recipe_Plutonium_C", + "Recipe_PlutoniumCell_C", + "Recipe_PlutoniumFuelRod_C", + "Recipe_HadronCollider_C", + "Recipe_CopperDust_C", + "Recipe_PressureConversionCube_C", + "Recipe_SpaceElevatorPart_9_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 8, + "time": 1200.0, + "mam": false, + "alternate": false + }, + "Schematic_Alternate_TurboPressureMotor_C": { + "className": "Schematic_Alternate_TurboPressureMotor_C", + "type": "EST_Alternate", + "name": "Alternate: Turbo Pressure Motor", + "slug": "alternate-turbo-pressure-motor", + "icon": "schematic-alternate-turbopressuremotor-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_TurboPressureMotor_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_8-5_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_7-5_C": { + "className": "Schematic_7-5_C", + "type": "EST_Milestone", + "name": "Control System Development", + "slug": "control-system-development", + "icon": "schematic-7-5-c", + "cost": [ + { + "item": "Desc_AluminumPlate_C", + "amount": 200.0 + }, + { + "item": "Desc_AluminumCasing_C", + "amount": 400.0 + }, + { + "item": "Desc_Computer_C", + "amount": 200.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 1000.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_SulfuricAcid_C", + "Recipe_PackagedSulfuricAcid_C", + "Recipe_Battery_C", + "Recipe_RadioControlUnit_C", + "Recipe_ComputerSuper_C", + "Recipe_SpaceElevatorPart_7_C", + "Recipe_Blender_C" + ], + "scannerResources": [ + "" + ], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 7, + "time": 900.0, + "mam": false, + "alternate": false + }, + "Schematic_Alternate_TurboBlendFuel_C": { + "className": "Schematic_Alternate_TurboBlendFuel_C", + "type": "EST_Alternate", + "name": "Alternate: Turbo Blend Fuel", + "slug": "alternate-turbo-blend-fuel", + "icon": "schematic-alternate-turboblendfuel-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_TurboBlendFuel_C", + "Recipe_PackagedTurboFuel_C", + "Recipe_UnpackageTurboFuel_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_7-5_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_8-1_C": { + "className": "Schematic_8-1_C", + "type": "EST_Milestone", + "name": "Nuclear Power", + "slug": "nuclear-power", + "icon": "schematic-8-1-c", + "cost": [ + { + "item": "Desc_ComputerSuper_C", + "amount": 50.0 + }, + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 200.0 + }, + { + "item": "Desc_Cable_C", + "amount": 1000.0 + }, + { + "item": "Desc_Cement_C", + "amount": 2000.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_UraniumCell_C", + "Recipe_ElectromagneticControlRod_C", + "Recipe_NuclearFuelRod_C", + "Recipe_GeneratorNuclear_C", + "Recipe_SpaceElevatorPart_6_C" + ], + "scannerResources": [ + "" + ], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 8, + "time": 900.0, + "mam": false, + "alternate": false + }, + "Schematic_Alternate_SuperStateComputer_C": { + "className": "Schematic_Alternate_SuperStateComputer_C", + "type": "EST_Alternate", + "name": "Alternate: Super-State Computer", + "slug": "alternate-super-state-computer", + "icon": "schematic-alternate-superstatecomputer-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_SuperStateComputer_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_8-1_C", + "Schematic_7-5_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_SloppyAlumina_C": { + "className": "Schematic_Alternate_SloppyAlumina_C", + "type": "EST_Alternate", + "name": "Alternate: Sloppy Alumina", + "slug": "alternate-sloppy-alumina", + "icon": "schematic-alternate-sloppyalumina-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_SloppyAlumina_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_7-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_RadioControlSystem_C": { + "className": "Schematic_Alternate_RadioControlSystem_C", + "type": "EST_Alternate", + "name": "Alternate: Radio Control System", + "slug": "alternate-radio-control-system", + "icon": "schematic-alternate-radiocontrolsystem-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_RadioControlSystem_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_7-5_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_PlutoniumFuelUnit_C": { + "className": "Schematic_Alternate_PlutoniumFuelUnit_C", + "type": "EST_Alternate", + "name": "Alternate: Plutonium Fuel Unit", + "slug": "alternate-plutonium-fuel-unit", + "icon": "schematic-alternate-plutoniumfuelunit-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_PlutoniumFuelUnit_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_8-5_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_8-2_C": { + "className": "Schematic_8-2_C", + "type": "EST_Milestone", + "name": "Advanced Aluminum Production", + "slug": "advanced-aluminum-production", + "icon": "schematic-8-2-c", + "cost": [ + { + "item": "Desc_ModularFrameLightweight_C", + "amount": 50.0 + }, + { + "item": "Desc_AluminumCasing_C", + "amount": 200.0 + }, + { + "item": "Desc_AluminumPlate_C", + "amount": 400.0 + }, + { + "item": "Desc_Wire_C", + "amount": 3000.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_FrackingSmasher_C", + "Recipe_FrackingExtractor_C", + "Recipe_GasTank_C", + "Recipe_PackagedNitrogen_C", + "Recipe_HeatSink_C", + "Recipe_CoolingSystem_C", + "Recipe_FusedModularFrame_C" + ], + "scannerResources": [ + "" + ], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 8, + "time": 900.0, + "mam": false, + "alternate": false + }, + "Schematic_Alternate_OCSupercomputer_C": { + "className": "Schematic_Alternate_OCSupercomputer_C", + "type": "EST_Alternate", + "name": "Alternate: OC Supercomputer", + "slug": "alternate-oc-supercomputer", + "icon": "schematic-alternate-ocsupercomputer-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_OCSupercomputer_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_7-5_C", + "Schematic_8-2_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_InstantScrap_C": { + "className": "Schematic_Alternate_InstantScrap_C", + "type": "EST_Alternate", + "name": "Alternate: Instant Scrap", + "slug": "alternate-instant-scrap", + "icon": "schematic-alternate-instantscrap-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_InstantScrap_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_7-1_C", + "Schematic_7-5_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_InstantPlutoniumCell_C": { + "className": "Schematic_Alternate_InstantPlutoniumCell_C", + "type": "EST_Alternate", + "name": "Alternate: Instant Plutonium Cell", + "slug": "alternate-instant-plutonium-cell", + "icon": "schematic-alternate-instantplutoniumcell-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_InstantPlutoniumCell_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_8-5_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_HeatFusedFrame_C": { + "className": "Schematic_Alternate_HeatFusedFrame_C", + "type": "EST_Alternate", + "name": "Alternate: Heat-Fused Frame", + "slug": "alternate-heat-fused-frame", + "icon": "schematic-alternate-heatfusedframe-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_HeatFusedFrame_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_8-5_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_FertileUranium_C": { + "className": "Schematic_Alternate_FertileUranium_C", + "type": "EST_Alternate", + "name": "Alternate: Fertile Uranium", + "slug": "alternate-fertile-uranium", + "icon": "schematic-alternate-fertileuranium-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_FertileUranium_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_8-5_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_ElectricMotor_C": { + "className": "Schematic_Alternate_ElectricMotor_C", + "type": "EST_Alternate", + "name": "Alternate: Electric Motor", + "slug": "alternate-electric-motor", + "icon": "schematic-alternate-electricmotor-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_ElectricMotor_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_8-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_DilutedFuel_C": { + "className": "Schematic_Alternate_DilutedFuel_C", + "type": "EST_Alternate", + "name": "Alternate: Diluted Fuel", + "slug": "alternate-diluted-fuel", + "icon": "schematic-alternate-dilutedfuel-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_DilutedFuel_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_7-5_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_CoolingDevice_C": { + "className": "Schematic_Alternate_CoolingDevice_C", + "type": "EST_Alternate", + "name": "Alternate: Cooling Device", + "slug": "alternate-cooling-device", + "icon": "schematic-alternate-coolingdevice-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_CoolingDevice_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_8-2_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_ClassicBattery_C": { + "className": "Schematic_Alternate_ClassicBattery_C", + "type": "EST_Alternate", + "name": "Alternate: Classic Battery", + "slug": "alternate-classic-battery", + "icon": "schematic-alternate-classicbattery-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_ClassicBattery_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_7-5_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_AutomatedMiner_C": { + "className": "Schematic_Alternate_AutomatedMiner_C", + "type": "EST_Alternate", + "name": "Alternate: Automated Miner", + "slug": "alternate-automated-miner", + "icon": "schematic-alternate-automatedminer-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_AutomatedMiner_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-4_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_AlcladCasing_C": { + "className": "Schematic_Alternate_AlcladCasing_C", + "type": "EST_Alternate", + "name": "Alternate: Alclad Casing", + "slug": "alternate-alclad-casing", + "icon": "schematic-alternate-alcladcasing-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_AlcladCasing_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_7-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_SteelPipe_Molded_C": { + "className": "Schematic_Alternate_SteelPipe_Molded_C", + "type": "EST_Alternate", + "name": "Alternate: Molded Steel Pipe", + "slug": "alternate-molded-steel-pipe", + "icon": "schematic-alternate-steelpipe-molded-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_SteelPipe_Molded_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-4_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_SteelPipe_Iron_C": { + "className": "Schematic_Alternate_SteelPipe_Iron_C", + "type": "EST_Alternate", + "name": "Alternate: Iron Pipe", + "slug": "alternate-iron-pipe", + "icon": "schematic-alternate-steelpipe-iron-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_SteelPipe_Iron_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-4_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_SteelCastedPlate_C": { + "className": "Schematic_Alternate_SteelCastedPlate_C", + "type": "EST_Alternate", + "name": "Alternate: Steel Cast Plate", + "slug": "alternate-steel-cast-plate", + "icon": "schematic-alternate-steelcastedplate-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_SteelCastedPlate_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-4_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_SteelBeam_Molded_C": { + "className": "Schematic_Alternate_SteelBeam_Molded_C", + "type": "EST_Alternate", + "name": "Alternate: Molded Beam", + "slug": "alternate-molded-beam", + "icon": "schematic-alternate-steelbeam-molded-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_SteelBeam_Molded_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-4_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_SteelBeam_Aluminum_C": { + "className": "Schematic_Alternate_SteelBeam_Aluminum_C", + "type": "EST_Alternate", + "name": "Alternate: Aluminum Beam", + "slug": "alternate-aluminum-beam", + "icon": "schematic-alternate-steelbeam-aluminum-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_SteelBeam_Aluminum_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_7-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_AluminumRod_C": { + "className": "Schematic_Alternate_AluminumRod_C", + "type": "EST_Alternate", + "name": "Alternate: Aluminum Rod", + "slug": "alternate-aluminum-rod", + "icon": "schematic-alternate-aluminumrod-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_AluminumRod_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_7-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_AILimiter_Plastic_C": { + "className": "Schematic_Alternate_AILimiter_Plastic_C", + "type": "EST_Alternate", + "name": "Alternate: Plastic AI Limiter", + "slug": "alternate-plastic-ai-limiter", + "icon": "schematic-alternate-ailimiter-plastic-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_AILimiter_Plastic_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Caterium_4_1_C", + "Schematic_5-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Quartz_Purified_C": { + "className": "Schematic_Alternate_Quartz_Purified_C", + "type": "EST_Alternate", + "name": "Alternate: Quartz Purification", + "slug": "alternate-quartz-purification", + "icon": "schematic-alternate-quartz-purified-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Quartz_Purified_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_7-5_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Quartz_Fused_C": { + "className": "Schematic_Alternate_Quartz_Fused_C", + "type": "EST_Alternate", + "name": "Alternate: Fused Quartz Crystal", + "slug": "alternate-fused-quartz-crystal", + "icon": "schematic-alternate-quartz-fused-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Quartz_Fused_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Quartz_1_1_C", + "Schematic_3-4_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_IronIngot_Leached_C": { + "className": "Schematic_Alternate_IronIngot_Leached_C", + "type": "EST_Alternate", + "name": "Alternate: Leached Iron ingot", + "slug": "alternate-leached-iron-ingot", + "icon": "schematic-alternate-ironingot-leached-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_IronIngot_Leached_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_7-5_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_IronIngot_Basic_C": { + "className": "Schematic_Alternate_IronIngot_Basic_C", + "type": "EST_Alternate", + "name": "Alternate: Basic Iron Ingot", + "slug": "alternate-basic-iron-ingot", + "icon": "schematic-alternate-ironingot-basic-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_IronIngot_Basic_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-4_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_CopperIngot_Tempered_C": { + "className": "Schematic_Alternate_CopperIngot_Tempered_C", + "type": "EST_Alternate", + "name": "Alternate: Tempered Copper Ingot", + "slug": "alternate-tempered-copper-ingot", + "icon": "schematic-alternate-copperingot-tempered-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_CopperIngot_Tempered_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_CopperIngot_Leached_C": { + "className": "Schematic_Alternate_CopperIngot_Leached_C", + "type": "EST_Alternate", + "name": "Alternate: Leached Copper Ingot", + "slug": "alternate-leached-copper-ingot", + "icon": "schematic-alternate-copperingot-leached-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_CopperIngot_Leached_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_7-5_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_CateriumIngot_Tempered_C": { + "className": "Schematic_Alternate_CateriumIngot_Tempered_C", + "type": "EST_Alternate", + "name": "Alternate: Tempered Caterium Ingot", + "slug": "alternate-tempered-caterium-ingot", + "icon": "schematic-alternate-cateriumingot-tempered-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_CateriumIngot_Tempered_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_CateriumIngot_Leached_C": { + "className": "Schematic_Alternate_CateriumIngot_Leached_C", + "type": "EST_Alternate", + "name": "Alternate: Leached Caterium Ingot", + "slug": "alternate-leached-caterium-ingot", + "icon": "schematic-alternate-cateriumingot-leached-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_CateriumIngot_Leached_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_7-5_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Wire2_C": { + "className": "Schematic_Alternate_Wire2_C", + "type": "EST_Alternate", + "name": "Alternate: Caterium Wire", + "slug": "alternate-caterium-wire", + "icon": "schematic-alternate-wire2-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Wire_2_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Caterium_0_C" + ], + "tier": 3, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Wire1_C": { + "className": "Schematic_Alternate_Wire1_C", + "type": "EST_Alternate", + "name": "Alternate: Iron Wire", + "slug": "alternate-iron-wire", + "icon": "schematic-alternate-wire1-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Wire_1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_7-4_C": { + "className": "Schematic_7-4_C", + "type": "EST_Milestone", + "name": "Aeronautical Engineering", + "slug": "aeronautical-engineering", + "icon": "schematic-7-4-c", + "cost": [ + { + "item": "Desc_ModularFrameLightweight_C", + "amount": 50.0 + }, + { + "item": "Desc_AluminumPlate_C", + "amount": 100.0 + }, + { + "item": "Desc_AluminumCasing_C", + "amount": 200.0 + }, + { + "item": "Desc_Motor_C", + "amount": 300.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_DroneTransport_C", + "Recipe_DroneStation_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 8, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Research_Caterium_1_C": { + "className": "Research_Caterium_1_C", + "type": "EST_MAM", + "name": "Caterium Ingots", + "slug": "caterium-ingots", + "icon": "research-caterium-1-c", + "cost": [ + { + "item": "Desc_OreGold_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_IngotCaterium_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Quartz_0_C": { + "className": "Research_Quartz_0_C", + "type": "EST_MAM", + "name": "Quartz", + "slug": "quartz", + "icon": "research-quartz-0-c", + "cost": [ + { + "item": "Desc_RawQuartz_C", + "amount": 10.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [ + "Desc_RawQuartz_C" + ], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Schematic_Alternate_UraniumCell1_C": { + "className": "Schematic_Alternate_UraniumCell1_C", + "type": "EST_Alternate", + "name": "Alternate: Infused Uranium Cell", + "slug": "alternate-infused-uranium-cell", + "icon": "schematic-alternate-uraniumcell1-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_UraniumCell_1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_8-1_C", + "Research_Caterium_1_C", + "Research_Quartz_0_C", + "Research_Sulfur_0_C" + ], + "tier": 7, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_7-2_C": { + "className": "Schematic_7-2_C", + "type": "EST_Milestone", + "name": "Logistics Mk.5", + "slug": "logistics-mk-5", + "icon": "schematic-7-2-c", + "cost": [ + { + "item": "Desc_AluminumPlate_C", + "amount": 200.0 + }, + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 400.0 + }, + { + "item": "Desc_IronPlateReinforced_C", + "amount": 600.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_ConveyorBeltMk5_C", + "Recipe_ConveyorLiftMk5_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 7, + "time": 300.0, + "mam": false, + "alternate": false + }, + "Schematic_8-4_C": { + "className": "Schematic_8-4_C", + "type": "EST_Milestone", + "name": "Leading-Edge Production", + "slug": "leading-edge-production", + "icon": "schematic-8-4-c", + "cost": [ + { + "item": "Desc_ModularFrameFused_C", + "amount": 50.0 + }, + { + "item": "Desc_ComputerSuper_C", + "amount": 100.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 1000.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_MotorTurbo_C", + "Recipe_MinerMk3_C", + "Recipe_SpaceElevatorPart_8_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 8, + "time": 300.0, + "mam": false, + "alternate": false + }, + "Research_Caterium_3_C": { + "className": "Research_Caterium_3_C", + "type": "EST_MAM", + "name": "Caterium Electronics", + "slug": "caterium-electronics", + "icon": "research-caterium-3-c", + "cost": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 100.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Schematic_Alternate_TurboMotor1_C": { + "className": "Schematic_Alternate_TurboMotor1_C", + "type": "EST_Alternate", + "name": "Alternate: Turbo Electric Motor", + "slug": "alternate-turbo-electric-motor", + "icon": "schematic-alternate-turbomotor1-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_TurboMotor_1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_8-4_C", + "Schematic_8-1_C" + ], + "tier": 7, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Stator_C": { + "className": "Schematic_Alternate_Stator_C", + "type": "EST_Alternate", + "name": "Alternate: Quickwire Stator", + "slug": "alternate-quickwire-stator", + "icon": "schematic-alternate-stator-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Stator_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_4-1_C", + "Research_Caterium_1_C" + ], + "tier": 4, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Research_Quartz_1_2_C": { + "className": "Research_Quartz_1_2_C", + "type": "EST_MAM", + "name": "Silica", + "slug": "silica", + "icon": "research-quartz-1-2-c", + "cost": [ + { + "item": "Desc_RawQuartz_C", + "amount": 20.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Silica_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Schematic_Alternate_Silica_C": { + "className": "Schematic_Alternate_Silica_C", + "type": "EST_Alternate", + "name": "Alternate: Cheap Silica", + "slug": "alternate-cheap-silica", + "icon": "schematic-alternate-silica-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Silica_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Quartz_1_2_C" + ], + "tier": 4, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Screw2_C": { + "className": "Schematic_Alternate_Screw2_C", + "type": "EST_Alternate", + "name": "Alternate: Steel Screw", + "slug": "alternate-steel-screw", + "icon": "schematic-alternate-screw2-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Screw_2_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-4_C" + ], + "tier": 4, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Screw_C": { + "className": "Schematic_Alternate_Screw_C", + "type": "EST_Alternate", + "name": "Alternate: Cast Screw", + "slug": "alternate-cast-screw", + "icon": "schematic-alternate-screw-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Screw_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Rotor_C": { + "className": "Schematic_Alternate_Rotor_C", + "type": "EST_Alternate", + "name": "Alternate: Steel Rotor", + "slug": "alternate-steel-rotor", + "icon": "schematic-alternate-rotor-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Rotor_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-4_C" + ], + "tier": 4, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_ReinforcedSteelPlate_C": { + "className": "Schematic_Alternate_ReinforcedSteelPlate_C", + "type": "EST_Alternate", + "name": "Alternate: Encased Industrial Pipe", + "slug": "alternate-encased-industrial-pipe", + "icon": "schematic-alternate-reinforcedsteelplate-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_EncasedIndustrialBeam_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_4-1_C" + ], + "tier": 4, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_ReinforcedIronPlate2_C": { + "className": "Schematic_Alternate_ReinforcedIronPlate2_C", + "type": "EST_Alternate", + "name": "Alternate: Stitched Iron Plate", + "slug": "alternate-stitched-iron-plate", + "icon": "schematic-alternate-reinforcedironplate2-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_ReinforcedIronPlate_2_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_2-1_C" + ], + "tier": 2, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_ReinforcedIronPlate1_C": { + "className": "Schematic_Alternate_ReinforcedIronPlate1_C", + "type": "EST_Alternate", + "name": "Alternate: Bolted Iron Plate", + "slug": "alternate-bolted-iron-plate", + "icon": "schematic-alternate-reinforcedironplate1-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_ReinforcedIronPlate_1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_2-1_C" + ], + "tier": 2, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Research_Caterium_5_C": { + "className": "Research_Caterium_5_C", + "type": "EST_MAM", + "name": "High-Speed Connector", + "slug": "high-speed-connector", + "icon": "research-caterium-5-c", + "cost": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 500.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_HighSpeedConnector_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Schematic_Alternate_RadioControlUnit1_C": { + "className": "Schematic_Alternate_RadioControlUnit1_C", + "type": "EST_Alternate", + "name": "Alternate: Radio Connection Unit", + "slug": "alternate-radio-connection-unit", + "icon": "schematic-alternate-radiocontrolunit1-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_RadioControlUnit_1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_8-2_C", + "Research_Caterium_4_1_C" + ], + "tier": 7, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Quickwire_C": { + "className": "Schematic_Alternate_Quickwire_C", + "type": "EST_Alternate", + "name": "Alternate: Fused Quickwire", + "slug": "alternate-fused-quickwire", + "icon": "schematic-alternate-quickwire-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Quickwire_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Caterium_1_C" + ], + "tier": 3, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Plastic1_C": { + "className": "Schematic_Alternate_Plastic1_C", + "type": "EST_Alternate", + "name": "Alternate: Recycled Plastic", + "slug": "alternate-recycled-plastic", + "icon": "schematic-alternate-plastic1-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Plastic_1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 5, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_NuclearFuelRod1_C": { + "className": "Schematic_Alternate_NuclearFuelRod1_C", + "type": "EST_Alternate", + "name": "Alternate: Uranium Fuel Unit", + "slug": "alternate-uranium-fuel-unit", + "icon": "schematic-alternate-nuclearfuelrod1-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_NuclearFuelRod_1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_8-1_C", + "Research_Quartz_1_1_C" + ], + "tier": 7, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Motor1_C": { + "className": "Schematic_Alternate_Motor1_C", + "type": "EST_Alternate", + "name": "Alternate: Rigor Motor", + "slug": "alternate-rigor-motor", + "icon": "schematic-alternate-motor1-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Motor_1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_4-1_C", + "Research_Quartz_1_1_C" + ], + "tier": 4, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_ModularFrame_C": { + "className": "Schematic_Alternate_ModularFrame_C", + "type": "EST_Alternate", + "name": "Alternate: Steeled Frame", + "slug": "alternate-steeled-frame", + "icon": "schematic-alternate-modularframe-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_ModularFrame_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-4_C" + ], + "tier": 4, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_IngotSteel2_C": { + "className": "Schematic_Alternate_IngotSteel2_C", + "type": "EST_Alternate", + "name": "Alternate: Compacted Steel Ingot", + "slug": "alternate-compacted-steel-ingot", + "icon": "schematic-alternate-ingotsteel2-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_IngotSteel_2_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_Alternate_EnrichedCoal_C", + "Schematic_3-4_C" + ], + "tier": 4, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_IngotSteel1_C": { + "className": "Schematic_Alternate_IngotSteel1_C", + "type": "EST_Alternate", + "name": "Alternate: Solid Steel Ingot", + "slug": "alternate-solid-steel-ingot", + "icon": "schematic-alternate-ingotsteel1-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_IngotSteel_1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-4_C" + ], + "tier": 4, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_IngotIron_C": { + "className": "Schematic_Alternate_IngotIron_C", + "type": "EST_Alternate", + "name": "Alternate: Iron Alloy Ingot", + "slug": "alternate-iron-alloy-ingot", + "icon": "schematic-alternate-ingotiron-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_IngotIron_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_HighSpeedConnector_C": { + "className": "Schematic_Alternate_HighSpeedConnector_C", + "type": "EST_Alternate", + "name": "Alternate: Silicon High-Speed Connector", + "slug": "alternate-silicon-high-speed-connector", + "icon": "schematic-alternate-highspeedconnector-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_HighSpeedConnector_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Caterium_5_C", + "Schematic_5-1_C", + "Research_Quartz_0_C" + ], + "tier": 5, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_HeavyModularFrame_C": { + "className": "Schematic_Alternate_HeavyModularFrame_C", + "type": "EST_Alternate", + "name": "Alternate: Heavy Encased Frame", + "slug": "alternate-heavy-encased-frame", + "icon": "schematic-alternate-heavymodularframe-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_ModularFrameHeavy_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-2_C" + ], + "tier": 4, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_HeatSink1_C": { + "className": "Schematic_Alternate_HeatSink1_C", + "type": "EST_Alternate", + "name": "Alternate: Heat Exchanger", + "slug": "alternate-heat-exchanger", + "icon": "schematic-alternate-heatsink1-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_HeatSink_1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_8-2_C" + ], + "tier": 7, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Gunpowder1_C": { + "className": "Schematic_Alternate_Gunpowder1_C", + "type": "EST_Alternate", + "name": "Alternate: Fine Black Powder", + "slug": "alternate-fine-black-powder", + "icon": "schematic-alternate-gunpowder1-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Gunpowder_1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_Alternate_EnrichedCoal_C" + ], + "tier": 4, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_ElectromagneticControlRod1_C": { + "className": "Schematic_Alternate_ElectromagneticControlRod1_C", + "type": "EST_Alternate", + "name": "Alternate: Electromagnetic Connection Rod", + "slug": "alternate-electromagnetic-connection-rod", + "icon": "schematic-alternate-electromagneticcontrolrod1-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_ElectromagneticControlRod_1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_8-1_C", + "Research_Caterium_4_1_C" + ], + "tier": 7, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Research_Quartz_2_C": { + "className": "Research_Quartz_2_C", + "type": "EST_MAM", + "name": "Crystal Oscillator", + "slug": "crystal-oscillator", + "icon": "research-quartz-2-c", + "cost": [ + { + "item": "Desc_QuartzCrystal_C", + "amount": 100.0 + }, + { + "item": "Desc_IronPlateReinforced_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_CrystalOscillator_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Schematic_Alternate_CrystalOscillator_C": { + "className": "Schematic_Alternate_CrystalOscillator_C", + "type": "EST_Alternate", + "name": "Alternate: Insulated Crystal Oscillator", + "slug": "alternate-insulated-crystal-oscillator", + "icon": "schematic-alternate-crystaloscillator-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_CrystalOscillator_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Quartz_2_C", + "Research_Caterium_3_C", + "Schematic_5-1_C" + ], + "tier": 5, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Concrete_C": { + "className": "Schematic_Alternate_Concrete_C", + "type": "EST_Alternate", + "name": "Alternate: Fine Concrete", + "slug": "alternate-fine-concrete", + "icon": "schematic-alternate-concrete-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Concrete_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Quartz_0_C" + ], + "tier": 4, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Computer2_C": { + "className": "Schematic_Alternate_Computer2_C", + "type": "EST_Alternate", + "name": "Alternate: Crystal Computer", + "slug": "alternate-crystal-computer", + "icon": "schematic-alternate-computer2-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Computer_2_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-2_C", + "Research_Quartz_1_1_C" + ], + "tier": 5, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Computer1_C": { + "className": "Schematic_Alternate_Computer1_C", + "type": "EST_Alternate", + "name": "Alternate: Caterium Computer", + "slug": "alternate-caterium-computer", + "icon": "schematic-alternate-computer1-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Computer_1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-2_C", + "Research_Caterium_1_C" + ], + "tier": 5, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Coal2_C": { + "className": "Schematic_Alternate_Coal2_C", + "type": "EST_Alternate", + "name": "Alternate: Biocoal", + "slug": "alternate-biocoal", + "icon": "schematic-alternate-coal2-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Coal_2_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-1_C" + ], + "tier": 3, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Coal1_C": { + "className": "Schematic_Alternate_Coal1_C", + "type": "EST_Alternate", + "name": "Alternate: Charcoal", + "slug": "alternate-charcoal", + "icon": "schematic-alternate-coal1-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Coal_1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-1_C" + ], + "tier": 3, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_CircuitBoard2_C": { + "className": "Schematic_Alternate_CircuitBoard2_C", + "type": "EST_Alternate", + "name": "Alternate: Caterium Circuit Board", + "slug": "alternate-caterium-circuit-board", + "icon": "schematic-alternate-circuitboard2-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_CircuitBoard_2_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C", + "Research_Caterium_1_C" + ], + "tier": 5, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_CircuitBoard1_C": { + "className": "Schematic_Alternate_CircuitBoard1_C", + "type": "EST_Alternate", + "name": "Alternate: Silicon Circuit Board", + "slug": "alternate-silicon-circuit-board", + "icon": "schematic-alternate-circuitboard1-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_CircuitBoard_1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C", + "Research_Quartz_0_C" + ], + "tier": 5, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Cable2_C": { + "className": "Schematic_Alternate_Cable2_C", + "type": "EST_Alternate", + "name": "Alternate: Quickwire Cable", + "slug": "alternate-quickwire-cable", + "icon": "schematic-alternate-cable2-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Cable_2_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C", + "Research_Caterium_1_C" + ], + "tier": 5, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Cable1_C": { + "className": "Schematic_Alternate_Cable1_C", + "type": "EST_Alternate", + "name": "Alternate: Insulated Cable", + "slug": "alternate-insulated-cable", + "icon": "schematic-alternate-cable1-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Cable_1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 5, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_InventorySlots2_C": { + "className": "Schematic_Alternate_InventorySlots2_C", + "type": "EST_Alternate", + "name": "Inflated Pocket Dimension", + "slug": "inflated-pocket-dimension", + "icon": "schematic-alternate-inventoryslots2-c", + "cost": [], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 6, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-2_C" + ], + "tier": 5, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_InventorySlots1_C": { + "className": "Schematic_Alternate_InventorySlots1_C", + "type": "EST_Alternate", + "name": "Inflated Pocket Dimension", + "slug": "inflated-pocket-dimension", + "icon": "schematic-alternate-inventoryslots1-c", + "cost": [], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 6, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 2, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Skin_Buildgun_Striped_C": { + "className": "Schematic_Skin_Buildgun_Striped_C", + "type": "EST_Customization", + "name": "Striped Build Gun", + "slug": "striped-build-gun", + "icon": "schematic-skin-buildgun-striped-c", + "cost": [], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_Skin_Buildgun_HalfNHalf_C": { + "className": "Schematic_Skin_Buildgun_HalfNHalf_C", + "type": "EST_Customization", + "name": "FICSIT Half 'n' Half Build Gun", + "slug": "ficsit-half-n-half-build-gun", + "icon": "schematic-skin-buildgun-halfnhalf-c", + "cost": [], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_Skin_Buildgun_Golden_C": { + "className": "Schematic_Skin_Buildgun_Golden_C", + "type": "EST_Customization", + "name": "Golden Build Gun", + "slug": "golden-build-gun", + "icon": "schematic-skin-buildgun-golden-c", + "cost": [], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_Skin_Buildgun_Default_C": { + "className": "Schematic_Skin_Buildgun_Default_C", + "type": "EST_Customization", + "name": "Standard FICSIT Build Gun", + "slug": "standard-ficsit-build-gun", + "icon": "schematic-skin-buildgun-default-c", + "cost": [], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_Skin_Buildgun_ColoredSides_C": { + "className": "Schematic_Skin_Buildgun_ColoredSides_C", + "type": "EST_Customization", + "name": "Alternative FICSIT Build Gun", + "slug": "alternative-ficsit-build-gun", + "icon": "schematic-skin-buildgun-coloredsides-c", + "cost": [], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_Skin_Buildgun_Camo_C": { + "className": "Schematic_Skin_Buildgun_Camo_C", + "type": "EST_Customization", + "name": "Camo Build Gun", + "slug": "camo-build-gun", + "icon": "schematic-skin-buildgun-camo-c", + "cost": [], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_Helmet_Welder_C": { + "className": "Schematic_Helmet_Welder_C", + "type": "EST_Customization", + "name": "Welder Helmet", + "slug": "welder-helmet", + "icon": "schematic-helmet-welder-c", + "cost": [], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_Helmet_Scout_C": { + "className": "Schematic_Helmet_Scout_C", + "type": "EST_Customization", + "name": "Scout Helmet", + "slug": "scout-helmet", + "icon": "schematic-helmet-scout-c", + "cost": [], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_Helmet_Golden_C": { + "className": "Schematic_Helmet_Golden_C", + "type": "EST_Customization", + "name": "Golden Helmet", + "slug": "golden-helmet", + "icon": "schematic-helmet-golden-c", + "cost": [], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_Helmet_Ficsmas_C": { + "className": "Schematic_Helmet_Ficsmas_C", + "type": "EST_Customization", + "name": "FICSMAS Hat", + "slug": "ficsmas-hat", + "icon": "schematic-helmet-ficsmas-c", + "cost": [], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_Helmet_Default_C": { + "className": "Schematic_Helmet_Default_C", + "type": "EST_Customization", + "name": "Standard FICSIT Helmet", + "slug": "standard-ficsit-helmet", + "icon": "schematic-helmet-default-c", + "cost": [], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_Helmet_Bobble_C": { + "className": "Schematic_Helmet_Bobble_C", + "type": "EST_Customization", + "name": "Bobblehead Helmet", + "slug": "bobblehead-helmet", + "icon": "schematic-helmet-bobble-c", + "cost": [], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_Helmet_Beta_C": { + "className": "Schematic_Helmet_Beta_C", + "type": "EST_Customization", + "name": "B-374 Helmet", + "slug": "b-374-helmet", + "icon": "schematic-helmet-beta-c", + "cost": [], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_Trinket_Somersloop_C": { + "className": "Schematic_Trinket_Somersloop_C", + "type": "EST_Customization", + "name": "Somersloop Trinket", + "slug": "somersloop-trinket", + "icon": "schematic-trinket-somersloop-c", + "cost": [], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_Trinket_Nut_C": { + "className": "Schematic_Trinket_Nut_C", + "type": "EST_Customization", + "name": "Golden Nut Trinket", + "slug": "golden-nut-trinket", + "icon": "schematic-trinket-nut-c", + "cost": [], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_Trinket_NuclearWaste_C": { + "className": "Schematic_Trinket_NuclearWaste_C", + "type": "EST_Customization", + "name": "Nuclear Waste Trinket", + "slug": "nuclear-waste-trinket", + "icon": "schematic-trinket-nuclearwaste-c", + "cost": [], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_Trinket_FicsmasStar_C": { + "className": "Schematic_Trinket_FicsmasStar_C", + "type": "EST_Customization", + "name": "Wonder Star Trinket", + "slug": "wonder-star-trinket", + "icon": "schematic-trinket-ficsmasstar-c", + "cost": [], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_Trinket_FicsmasBall_C": { + "className": "Schematic_Trinket_FicsmasBall_C", + "type": "EST_Customization", + "name": "Red Ornament Trinket", + "slug": "red-ornament-trinket", + "icon": "schematic-trinket-ficsmasball-c", + "cost": [], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_Trinket_FicsitCoupon_C": { + "className": "Schematic_Trinket_FicsitCoupon_C", + "type": "EST_Customization", + "name": "Coupon Trinket", + "slug": "coupon-trinket", + "icon": "schematic-trinket-ficsitcoupon-c", + "cost": [], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_Trinket_Default_C": { + "className": "Schematic_Trinket_Default_C", + "type": "EST_Customization", + "name": "Wrench Trinket", + "slug": "wrench-trinket", + "icon": "schematic-trinket-default-c", + "cost": [], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_Trinket_Checkit_C": { + "className": "Schematic_Trinket_Checkit_C", + "type": "EST_Customization", + "name": "Checkit Trinket", + "slug": "checkit-trinket", + "icon": "schematic-trinket-checkit-c", + "cost": [], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_Trinket_AirFreshener_C": { + "className": "Schematic_Trinket_AirFreshener_C", + "type": "EST_Customization", + "name": "Fresh Factory Trinket", + "slug": "fresh-factory-trinket", + "icon": "schematic-trinket-airfreshener-c", + "cost": [], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_9-5_C": { + "className": "Schematic_9-5_C", + "type": "EST_Milestone", + "name": "Peak Efficiency", + "slug": "peak-efficiency", + "icon": "schematic-9-5-c", + "cost": [ + { + "item": "Desc_TimeCrystal_C", + "amount": 250.0 + }, + { + "item": "Desc_FicsiteMesh_C", + "amount": 250.0 + }, + { + "item": "Desc_AluminumPlate_C", + "amount": 5000.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 10000.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_ConveyorBeltMk6_C", + "Recipe_ConveyorLiftMk6_C", + "Recipe_Ficsonium_C", + "Recipe_FicsoniumFuelRod_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 9, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_9-4_C": { + "className": "Schematic_9-4_C", + "type": "EST_Milestone", + "name": "Spatial Energy Regulation", + "slug": "spatial-energy-regulation", + "icon": "schematic-9-4-c", + "cost": [ + { + "item": "Desc_QuantumOscillator_C", + "amount": 100.0 + }, + { + "item": "Desc_MotorLightweight_C", + "amount": 250.0 + }, + { + "item": "Desc_ModularFrameLightweight_C", + "amount": 500.0 + }, + { + "item": "Desc_SAMFluctuator_C", + "amount": 1000.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Portal_C", + "Recipe_PortalSatellite_C", + "Recipe_SingularityCell_C", + "Recipe_SpaceElevatorPart_11_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 9, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_9-3_C": { + "className": "Schematic_9-3_C", + "type": "EST_Milestone", + "name": "FICSIT Blueprints Mk.3", + "slug": "ficsit-blueprints-mk-3", + "icon": "schematic-9-3-c", + "cost": [ + { + "item": "Desc_TemporalProcessor_C", + "amount": 100.0 + }, + { + "item": "Desc_TimeCrystal_C", + "amount": 250.0 + }, + { + "item": "Desc_FicsiteMesh_C", + "amount": 500.0 + }, + { + "item": "Desc_ModularFrameFused_C", + "amount": 500.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_BlueprintDesigner_Mk3_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 9, + "time": 900.0, + "mam": false, + "alternate": false + }, + "Schematic_8-3_C": { + "className": "Schematic_8-3_C", + "type": "EST_Milestone", + "name": "Hoverpack", + "slug": "hoverpack", + "icon": "schematic-8-3-c", + "cost": [ + { + "item": "Desc_AluminumPlate_C", + "amount": 100.0 + }, + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 100.0 + }, + { + "item": "Desc_Computer_C", + "amount": 100.0 + }, + { + "item": "Desc_Motor_C", + "amount": 250.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Hoverpack_C" + ], + "scannerResources": [], + "inventorySlots": 3, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 7, + "time": 300.0, + "mam": false, + "alternate": false + }, + "Schematic_7-3_C": { + "className": "Schematic_7-3_C", + "type": "EST_Milestone", + "name": "Hazmat Suit", + "slug": "hazmat-suit", + "icon": "schematic-7-3-c", + "cost": [ + { + "item": "Desc_Filter_C", + "amount": 50.0 + }, + { + "item": "Desc_AluminumCasing_C", + "amount": 100.0 + }, + { + "item": "Desc_HighSpeedWire_C", + "amount": 500.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_HazmatSuit_C", + "Recipe_FilterHazmat_C" + ], + "scannerResources": [], + "inventorySlots": 3, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 7, + "time": 300.0, + "mam": false, + "alternate": false + }, + "Schematic_6-7_C": { + "className": "Schematic_6-7_C", + "type": "EST_Milestone", + "name": "Railway Signalling", + "slug": "railway-signalling", + "icon": "schematic-6-7-c", + "cost": [ + { + "item": "Desc_Computer_C", + "amount": 50.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 400.0 + }, + { + "item": "Desc_CopperSheet_C", + "amount": 1000.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_RailroadBlockSignal_C", + "Recipe_RailroadPathSignal_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 6, + "time": 300.0, + "mam": false, + "alternate": false + }, + "Schematic_6-6_C": { + "className": "Schematic_6-6_C", + "type": "EST_Milestone", + "name": "FICSIT Blueprints Mk.2", + "slug": "ficsit-blueprints-mk-2", + "icon": "schematic-6-6-c", + "cost": [ + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 100.0 + }, + { + "item": "Desc_Computer_C", + "amount": 100.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 400.0 + }, + { + "item": "Desc_Cement_C", + "amount": 1500.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_BlueprintDesigner_Mk2_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 6, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_6-5_C": { + "className": "Schematic_6-5_C", + "type": "EST_Milestone", + "name": "Pipeline Engineering Mk.2", + "slug": "pipeline-engineering-mk-2", + "icon": "schematic-6-5-c", + "cost": [ + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 50.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 1000.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 1000.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PipelineMK2_C", + "Recipe_PipelinePumpMK2_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 6, + "time": 300.0, + "mam": false, + "alternate": false + }, + "Schematic_6-3_C": { + "className": "Schematic_6-3_C", + "type": "EST_Milestone", + "name": "Monorail Train Technology", + "slug": "monorail-train-technology", + "icon": "schematic-6-3-c", + "cost": [ + { + "item": "Desc_Motor_C", + "amount": 250.0 + }, + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 500.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 1000.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 1000.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Locomotive_C", + "Recipe_FreightWagon_C", + "Recipe_RailroadTrack_C", + "Recipe_TrainStation_C", + "Recipe_TrainDockingStation_C", + "Recipe_TrainDockingStationLiquid_C", + "Recipe_TrainPlatformEmpty_C", + "Recipe_TrainPlatformEmpty_02_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 6, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_6-2_C": { + "className": "Schematic_6-2_C", + "type": "EST_Milestone", + "name": "Jetpack", + "slug": "jetpack", + "icon": "schematic-6-2-c", + "cost": [ + { + "item": "Desc_Motor_C", + "amount": 50.0 + }, + { + "item": "Desc_Cable_C", + "amount": 1000.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 1000.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_JetPack_C" + ], + "scannerResources": [], + "inventorySlots": 3, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 5, + "time": 300.0, + "mam": false, + "alternate": false + }, + "Schematic_6-1_C": { + "className": "Schematic_6-1_C", + "type": "EST_Milestone", + "name": "Logistics Mk.4", + "slug": "logistics-mk-4", + "icon": "schematic-6-1-c", + "cost": [ + { + "item": "Desc_Rubber_C", + "amount": 200.0 + }, + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 300.0 + }, + { + "item": "Desc_ModularFrame_C", + "amount": 400.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_ConveyorBeltMk4_C", + "Recipe_ConveyorLiftMk4_C", + "Recipe_Truck_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 5, + "time": 300.0, + "mam": false, + "alternate": false + }, + "Schematic_5-5_C": { + "className": "Schematic_5-5_C", + "type": "EST_Milestone", + "name": "Petroleum Power", + "slug": "petroleum-power", + "icon": "schematic-5-5-c", + "cost": [ + { + "item": "Desc_Motor_C", + "amount": 100.0 + }, + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 100.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 200.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 200.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_GeneratorFuel_C", + "Recipe_IndustrialTank_C" + ], + "scannerResources": [ + "Desc_OreGold_C" + ], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 5, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_5-3_C": { + "className": "Schematic_5-3_C", + "type": "EST_Milestone", + "name": "Logistics Mk.3", + "slug": "logistics-mk-3", + "icon": "schematic-5-3-c", + "cost": [ + { + "item": "Desc_SteelPlate_C", + "amount": 200.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 200.0 + }, + { + "item": "Desc_IronPlateReinforced_C", + "amount": 400.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_StorageContainerMk2_C", + "Recipe_ConveyorBeltMk3_C", + "Recipe_ConveyorLiftMk3_C", + "Recipe_PipeSupportStackable_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 4, + "time": 300.0, + "mam": false, + "alternate": false + }, + "Schematic_4-5_C": { + "className": "Schematic_4-5_C", + "type": "EST_Milestone", + "name": "FICSIT Blueprints", + "slug": "ficsit-blueprints", + "icon": "schematic-4-5-c", + "cost": [ + { + "item": "Desc_ModularFrame_C", + "amount": 100.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 200.0 + }, + { + "item": "Desc_Cable_C", + "amount": 500.0 + }, + { + "item": "Desc_Cement_C", + "amount": 1000.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_BlueprintDesigner_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 4, + "time": 300.0, + "mam": false, + "alternate": false + }, + "Schematic_4-4_C": { + "className": "Schematic_4-4_C", + "type": "EST_Milestone", + "name": "Hypertubes", + "slug": "hypertubes", + "icon": "schematic-4-4-c", + "cost": [ + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 50.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 300.0 + }, + { + "item": "Desc_CopperSheet_C", + "amount": 500.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PipeHyperStart_C", + "Recipe_PipeHyper_C", + "Recipe_PipeHyperSupport_C", + "Recipe_HyperPoleStackable_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 4, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_4-3_C": { + "className": "Schematic_4-3_C", + "type": "EST_Milestone", + "name": "Expanded Power Infrastructure", + "slug": "expanded-power-infrastructure", + "icon": "schematic-4-3-c", + "cost": [ + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 50.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 100.0 + }, + { + "item": "Desc_ModularFrame_C", + "amount": 200.0 + }, + { + "item": "Desc_Wire_C", + "amount": 2000.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PowerStorageMk1_C", + "Recipe_PowerTower_C", + "Recipe_PowerTowerPlatform_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 4, + "time": 300.0, + "mam": false, + "alternate": false + }, + "Schematic_4-2_C": { + "className": "Schematic_4-2_C", + "type": "EST_Milestone", + "name": "Enhanced Asset Security", + "slug": "enhanced-asset-security", + "icon": "schematic-4-2-c", + "cost": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 100.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 600.0 + }, + { + "item": "Desc_Wire_C", + "amount": 1500.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_XenoBasher_C" + ], + "scannerResources": [], + "inventorySlots": 3, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 180.0, + "mam": false, + "alternate": false + }, + "Schematic_3-3_C": { + "className": "Schematic_3-3_C", + "type": "EST_Milestone", + "name": "Vehicular Transport", + "slug": "vehicular-transport", + "icon": "schematic-3-3-c", + "cost": [ + { + "item": "Desc_ModularFrame_C", + "amount": 25.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 100.0 + }, + { + "item": "Desc_Cable_C", + "amount": 200.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 400.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Tractor_C", + "Recipe_TruckStation_C" + ], + "scannerResources": [], + "inventorySlots": 3, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 240.0, + "mam": false, + "alternate": false + }, + "Schematic_3-2_C": { + "className": "Schematic_3-2_C", + "type": "EST_Milestone", + "name": "Logistics Mk.2", + "slug": "logistics-mk-2", + "icon": "schematic-3-2-c", + "cost": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 50.0 + }, + { + "item": "Desc_Cement_C", + "amount": 200.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 300.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 300.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_ConveyorBeltMk2_C", + "Recipe_ConveyorPoleStackable_C", + "Recipe_ConveyorLiftMk2_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 2, + "time": 360.0, + "mam": false, + "alternate": false + }, + "Schematic_2-3_C": { + "className": "Schematic_2-3_C", + "type": "EST_Milestone", + "name": "Jump Pads", + "slug": "jump-pads", + "icon": "schematic-2-3-c", + "cost": [ + { + "item": "Desc_Rotor_C", + "amount": 50.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 300.0 + }, + { + "item": "Desc_Cable_C", + "amount": 150.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_JumpPadAdjustable_C", + "Recipe_UJellyLandingPad_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 2, + "time": 240.0, + "mam": false, + "alternate": false + }, + "Schematic_2-2_C": { + "className": "Schematic_2-2_C", + "type": "EST_Milestone", + "name": "Obstacle Clearing", + "slug": "obstacle-clearing", + "icon": "schematic-2-2-c", + "cost": [ + { + "item": "Desc_IronScrew_C", + "amount": 500.0 + }, + { + "item": "Desc_Cable_C", + "amount": 100.0 + }, + { + "item": "Desc_Cement_C", + "amount": 100.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Chainsaw_C", + "Recipe_Biofuel_C" + ], + "scannerResources": [], + "inventorySlots": 3, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 2, + "time": 180.0, + "mam": false, + "alternate": false + }, + "Research_ACarapace_0_C": { + "className": "Research_ACarapace_0_C", + "type": "EST_MAM", + "name": "Hog Research", + "slug": "hog-research", + "icon": "research-acarapace-0-c", + "cost": [ + { + "item": "Desc_HogParts_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Protein_Hog_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_AOrgans_0_C": { + "className": "Research_AOrgans_0_C", + "type": "EST_MAM", + "name": "Spitter Research", + "slug": "spitter-research", + "icon": "research-aorgans-0-c", + "cost": [ + { + "item": "Desc_SpitterParts_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Protein_Spitter_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Alien_Somersloop_C": { + "className": "Research_Alien_Somersloop_C", + "type": "EST_MAM", + "name": "Somersloop Analysis", + "slug": "somersloop-analysis", + "icon": "research-alien-somersloop-c", + "cost": [ + { + "item": "Desc_WAT1_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Mycelia_1_C": { + "className": "Research_Mycelia_1_C", + "type": "EST_MAM", + "name": "Mycelia", + "slug": "mycelia", + "icon": "research-mycelia-1-c", + "cost": [ + { + "item": "Desc_Mycelia_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Biomass_Mycelia_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Nutrients_0_C": { + "className": "Research_Nutrients_0_C", + "type": "EST_MAM", + "name": "Paleberry", + "slug": "paleberry", + "icon": "research-nutrients-0-c", + "cost": [ + { + "item": "Desc_Berry_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_PowerSlugs_3_C": { + "className": "Research_PowerSlugs_3_C", + "type": "EST_MAM", + "name": "Slug Scanning", + "slug": "slug-scanning", + "icon": "research-powerslugs-3-c", + "cost": [ + { + "item": "Desc_IronRod_C", + "amount": 50.0 + }, + { + "item": "Desc_Wire_C", + "amount": 100.0 + }, + { + "item": "Desc_IronScrew_C", + "amount": 200.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_PowerSlugs_1_C": { + "className": "Research_PowerSlugs_1_C", + "type": "EST_MAM", + "name": "Blue Power Slugs", + "slug": "blue-power-slugs", + "icon": "research-powerslugs-1-c", + "cost": [ + { + "item": "Desc_Crystal_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PowerCrystalShard_1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Sulfur_1_C": { + "className": "Research_Sulfur_1_C", + "type": "EST_MAM", + "name": "Black Powder", + "slug": "black-powder", + "icon": "research-sulfur-1-c", + "cost": [ + { + "item": "Desc_Sulfur_C", + "amount": 50.0 + }, + { + "item": "Desc_Coal_C", + "amount": 25.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Gunpowder_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_HardDrive_0_C": { + "className": "Research_HardDrive_0_C", + "type": "EST_HardDrive", + "name": "Hard Drives", + "slug": "hard-drives", + "icon": "research-harddrive-0-c", + "cost": [ + { + "item": "Desc_HardDrive_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_1-3_C": { + "className": "Schematic_1-3_C", + "type": "EST_Milestone", + "name": "Field Research", + "slug": "field-research", + "icon": "schematic-1-3-c", + "cost": [ + { + "item": "Desc_Wire_C", + "amount": 300.0 + }, + { + "item": "Desc_IronScrew_C", + "amount": 300.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 100.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Mam_C", + "Recipe_ObjectScanner_C", + "Recipe_StoragePlayer_C" + ], + "scannerResources": [], + "inventorySlots": 3, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 180.0, + "mam": false, + "alternate": false + }, + "Schematic_1-2_C": { + "className": "Schematic_1-2_C", + "type": "EST_Milestone", + "name": "Logistics", + "slug": "logistics", + "icon": "schematic-1-2-c", + "cost": [ + { + "item": "Desc_IronPlate_C", + "amount": 150.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 150.0 + }, + { + "item": "Desc_Wire_C", + "amount": 300.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_ConveyorAttachmentSplitter_C", + "Recipe_ConveyorAttachmentMerger_C", + "Recipe_ConveyorLiftMk1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 240.0, + "mam": false, + "alternate": false + }, + "Schematic_1-1_C": { + "className": "Schematic_1-1_C", + "type": "EST_Milestone", + "name": "Base Building", + "slug": "base-building", + "icon": "schematic-1-1-c", + "cost": [ + { + "item": "Desc_Cement_C", + "amount": 200.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 100.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 100.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_LookoutTower_C", + "Recipe_Foundation_8x1_01_C", + "Recipe_Foundation_8x2_01_C", + "Recipe_Foundation_8x4_01_C", + "Recipe_Ramp_8x1_01_C", + "Recipe_Ramp_8x2_01_C", + "Recipe_Ramp_8x4_01_C", + "Recipe_Wall_8x4_01_C", + "Recipe_Wall_Orange_8x1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 120.0, + "mam": false, + "alternate": false + }, + "Research_AO_Stinger_C": { + "className": "Research_AO_Stinger_C", + "type": "EST_MAM", + "name": "Stinger Research", + "slug": "stinger-research", + "icon": "research-ao-stinger-c", + "cost": [ + { + "item": "Desc_StingerParts_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Protein_Stinger_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_AO_Pre_Rebar_C": { + "className": "Research_AO_Pre_Rebar_C", + "type": "EST_MAM", + "name": "Structural Analysis", + "slug": "structural-analysis", + "icon": "research-ao-pre-rebar-c", + "cost": [ + { + "item": "Desc_AlienDNACapsule_C", + "amount": 5.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 100.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_AO_Hatcher_C": { + "className": "Research_AO_Hatcher_C", + "type": "EST_MAM", + "name": "Hatcher Research", + "slug": "hatcher-research", + "icon": "research-ao-hatcher-c", + "cost": [ + { + "item": "Desc_HatcherParts_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Protein_Crab_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_AO_DNACapsule_C": { + "className": "Research_AO_DNACapsule_C", + "type": "EST_MAM", + "name": "Bio-Organic Properties", + "slug": "bio-organic-properties", + "icon": "research-ao-dnacapsule-c", + "cost": [ + { + "item": "Desc_AlienProtein_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_AlienDNACapsule_C", + "Recipe_Biomass_AlienProtein_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_AOrgans_3_C": { + "className": "Research_AOrgans_3_C", + "type": "EST_MAM", + "name": "Inflated Pocket Dimension", + "slug": "inflated-pocket-dimension", + "icon": "research-aorgans-3-c", + "cost": [ + { + "item": "Desc_AlienProtein_C", + "amount": 3.0 + }, + { + "item": "Desc_Cable_C", + "amount": 1000.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 6, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_AOrgans_2_C": { + "className": "Research_AOrgans_2_C", + "type": "EST_MAM", + "name": "Protein Inhaler", + "slug": "protein-inhaler", + "icon": "research-aorgans-2-c", + "cost": [ + { + "item": "Desc_AlienProtein_C", + "amount": 2.0 + }, + { + "item": "Desc_Nut_C", + "amount": 20.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_MedicinalInhalerAlienOrgans_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_AOrganisms_2_C": { + "className": "Research_AOrganisms_2_C", + "type": "EST_MAM", + "name": "Hostile Organism Detection", + "slug": "hostile-organism-detection", + "icon": "research-aorganisms-2-c", + "cost": [ + { + "item": "Desc_AlienDNACapsule_C", + "amount": 10.0 + }, + { + "item": "Desc_CrystalOscillator_C", + "amount": 5.0 + }, + { + "item": "Desc_HighSpeedConnector_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_ACarapace_3_C": { + "className": "Research_ACarapace_3_C", + "type": "EST_MAM", + "name": "Expanded Toolbelt", + "slug": "expanded-toolbelt", + "icon": "research-acarapace-3-c", + "cost": [ + { + "item": "Desc_AlienDNACapsule_C", + "amount": 5.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 500.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_ACarapace_2_C": { + "className": "Research_ACarapace_2_C", + "type": "EST_MAM", + "name": "The Rebar Gun", + "slug": "the-rebar-gun", + "icon": "research-acarapace-2-c", + "cost": [ + { + "item": "Desc_Rotor_C", + "amount": 25.0 + }, + { + "item": "Desc_IronPlateReinforced_C", + "amount": 50.0 + }, + { + "item": "Desc_IronScrew_C", + "amount": 500.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_RebarGun_C", + "Recipe_SpikedRebar_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Alien_SAMFluctuator_C": { + "className": "Research_Alien_SAMFluctuator_C", + "type": "EST_MAM", + "name": "SAM Fluctuator", + "slug": "sam-fluctuator", + "icon": "research-alien-samfluctuator-c", + "cost": [ + { + "item": "Desc_SAMIngot_C", + "amount": 10.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 100.0 + }, + { + "item": "Desc_Wire_C", + "amount": 200.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_SAMFluctuator_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Alien_SAM_C": { + "className": "Research_Alien_SAM_C", + "type": "EST_MAM", + "name": "SAM Analysis", + "slug": "sam-analysis", + "icon": "research-alien-sam-c", + "cost": [ + { + "item": "Desc_SAM_C", + "amount": 10.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [ + "" + ], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Alien_ProductionBooster_C": { + "className": "Research_Alien_ProductionBooster_C", + "type": "EST_MAM", + "name": "Production Amplifier", + "slug": "production-amplifier", + "icon": "research-alien-productionbooster-c", + "cost": [ + { + "item": "Desc_WAT1_C", + "amount": 1.0 + }, + { + "item": "Desc_SAMFluctuator_C", + "amount": 100.0 + }, + { + "item": "Desc_CircuitBoard_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Alien_BoosterFuel_C": { + "className": "Research_Alien_BoosterFuel_C", + "type": "EST_MAM", + "name": "Alien Power Matrix", + "slug": "alien-power-matrix", + "icon": "research-alien-boosterfuel-c", + "cost": [ + { + "item": "Desc_SingularityCell_C", + "amount": 50.0 + }, + { + "item": "Desc_CrystalShard_C", + "amount": 100.0 + }, + { + "item": "Desc_SAMFluctuator_C", + "amount": 500.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_AlienPowerFuel_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Alien_PowerBooster_C": { + "className": "Research_Alien_PowerBooster_C", + "type": "EST_MAM", + "name": "Power Augmenter", + "slug": "power-augmenter", + "icon": "research-alien-powerbooster-c", + "cost": [ + { + "item": "Desc_WAT1_C", + "amount": 1.0 + }, + { + "item": "Desc_SAMFluctuator_C", + "amount": 100.0 + }, + { + "item": "Desc_Computer_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_AlienPowerBuilding_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Alien_MercerSphere_C": { + "className": "Research_Alien_MercerSphere_C", + "type": "EST_MAM", + "name": "Mercer Sphere Analysis", + "slug": "mercer-sphere-analysis", + "icon": "research-alien-mercersphere-c", + "cost": [ + { + "item": "Desc_WAT2_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Alien_CentralUploadBoost_04_C": { + "className": "Research_Alien_CentralUploadBoost_04_C", + "type": "EST_MAM", + "name": "Upload Upgrade: 240/min", + "slug": "upload-upgrade-240-min", + "icon": "research-alien-centraluploadboost-04-c", + "cost": [ + { + "item": "Desc_WAT2_C", + "amount": 23.0 + }, + { + "item": "Desc_SAMFluctuator_C", + "amount": 199.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Alien_CentralUploadBoost_03_C": { + "className": "Research_Alien_CentralUploadBoost_03_C", + "type": "EST_MAM", + "name": "Upload Upgrade: 120/min", + "slug": "upload-upgrade-120-min", + "icon": "research-alien-centraluploadboost-03-c", + "cost": [ + { + "item": "Desc_WAT2_C", + "amount": 13.0 + }, + { + "item": "Desc_SAMFluctuator_C", + "amount": 151.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Alien_CentralUploadBoost_02_C": { + "className": "Research_Alien_CentralUploadBoost_02_C", + "type": "EST_MAM", + "name": "Upload Upgrade: 60/min", + "slug": "upload-upgrade-60-min", + "icon": "research-alien-centraluploadboost-02-c", + "cost": [ + { + "item": "Desc_WAT2_C", + "amount": 7.0 + }, + { + "item": "Desc_SAMFluctuator_C", + "amount": 103.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Alien_CentralUploadBoost_01_C": { + "className": "Research_Alien_CentralUploadBoost_01_C", + "type": "EST_MAM", + "name": "Upload Upgrade: 30/min", + "slug": "upload-upgrade-30-min", + "icon": "research-alien-centraluploadboost-01-c", + "cost": [ + { + "item": "Desc_WAT2_C", + "amount": 3.0 + }, + { + "item": "Desc_SAMFluctuator_C", + "amount": 47.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Alien_CentralStorage_C": { + "className": "Research_Alien_CentralStorage_C", + "type": "EST_MAM", + "name": "Dimensional Depot", + "slug": "dimensional-depot", + "icon": "research-alien-centralstorage-c", + "cost": [ + { + "item": "Desc_WAT2_C", + "amount": 1.0 + }, + { + "item": "Desc_SAMFluctuator_C", + "amount": 11.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_CentralStorage_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Alien_CentralStackExpansion_04_C": { + "className": "Research_Alien_CentralStackExpansion_04_C", + "type": "EST_MAM", + "name": "Depot Expansion (500%)", + "slug": "depot-expansion-500", + "icon": "research-alien-centralstackexpansion-04-c", + "cost": [ + { + "item": "Desc_WAT2_C", + "amount": 23.0 + }, + { + "item": "Desc_SAMFluctuator_C", + "amount": 199.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Alien_CentralStackExpansion_03_C": { + "className": "Research_Alien_CentralStackExpansion_03_C", + "type": "EST_MAM", + "name": "Depot Expansion (400%)", + "slug": "depot-expansion-400", + "icon": "research-alien-centralstackexpansion-03-c", + "cost": [ + { + "item": "Desc_WAT2_C", + "amount": 13.0 + }, + { + "item": "Desc_SAMFluctuator_C", + "amount": 151.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Alien_CentralStackExpansion_02_C": { + "className": "Research_Alien_CentralStackExpansion_02_C", + "type": "EST_MAM", + "name": "Depot Expansion (300%)", + "slug": "depot-expansion-300", + "icon": "research-alien-centralstackexpansion-02-c", + "cost": [ + { + "item": "Desc_WAT2_C", + "amount": 7.0 + }, + { + "item": "Desc_SAMFluctuator_C", + "amount": 103.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Alien_CentralStackExpansion_01_C": { + "className": "Research_Alien_CentralStackExpansion_01_C", + "type": "EST_MAM", + "name": "Depot Expansion (200%)", + "slug": "depot-expansion-200", + "icon": "research-alien-centralstackexpansion-01-c", + "cost": [ + { + "item": "Desc_WAT2_C", + "amount": 3.0 + }, + { + "item": "Desc_SAMFluctuator_C", + "amount": 47.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Alien_CentralInventory_C": { + "className": "Research_Alien_CentralInventory_C", + "type": "EST_MAM", + "name": "Manual Depot Uploader", + "slug": "manual-depot-uploader", + "icon": "research-alien-centralinventory-c", + "cost": [ + { + "item": "Desc_WAT2_C", + "amount": 3.0 + }, + { + "item": "Desc_Computer_C", + "amount": 17.0 + }, + { + "item": "Desc_SAMFluctuator_C", + "amount": 29.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Alien_BoosterBlocker_C": { + "className": "Research_Alien_BoosterBlocker_C", + "type": "EST_MAM", + "name": "Alien Energy Harnessing", + "slug": "alien-energy-harnessing", + "icon": "research-alien-boosterblocker-c", + "cost": [ + { + "item": "Desc_SAMFluctuator_C", + "amount": 10.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Alien_ActiveSAM_C": { + "className": "Research_Alien_ActiveSAM_C", + "type": "EST_MAM", + "name": "SAM Reanimation", + "slug": "sam-reanimation", + "icon": "research-alien-activesam-c", + "cost": [ + { + "item": "Desc_SAM_C", + "amount": 20.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_IngotSAM_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Caterium_7_2_C": { + "className": "Research_Caterium_7_2_C", + "type": "EST_MAM", + "name": "Geothermal Generator", + "slug": "geothermal-generator", + "icon": "research-caterium-7-2-c", + "cost": [ + { + "item": "Desc_HighSpeedConnector_C", + "amount": 100.0 + }, + { + "item": "Desc_HighSpeedWire_C", + "amount": 1000.0 + }, + { + "item": "Desc_Motor_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_GeneratorGeoThermal_C" + ], + "scannerResources": [ + "Desc_Geyser_C" + ], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Caterium_7_1_C": { + "className": "Research_Caterium_7_1_C", + "type": "EST_MAM", + "name": "Programmable Splitter", + "slug": "programmable-splitter", + "icon": "research-caterium-7-1-c", + "cost": [ + { + "item": "Desc_CircuitBoardHighSpeed_C", + "amount": 100.0 + }, + { + "item": "Desc_Computer_C", + "amount": 50.0 + }, + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_ConveyorAttachmentSplitterProgrammable_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Caterium_6_3_C": { + "className": "Research_Caterium_6_3_C", + "type": "EST_MAM", + "name": "Bullet Guidance System", + "slug": "bullet-guidance-system", + "icon": "research-caterium-6-3-c", + "cost": [ + { + "item": "Desc_HighSpeedConnector_C", + "amount": 10.0 + }, + { + "item": "Desc_CartridgeStandard_C", + "amount": 500.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_CartridgeSmart_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Caterium_6_2_C": { + "className": "Research_Caterium_6_2_C", + "type": "EST_MAM", + "name": "Power Poles Mk.3", + "slug": "power-poles-mk-3", + "icon": "research-caterium-6-2-c", + "cost": [ + { + "item": "Desc_HighSpeedConnector_C", + "amount": 50.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 200.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PowerPoleMk3_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Caterium_5_1_C": { + "className": "Research_Caterium_5_1_C", + "type": "EST_MAM", + "name": "Priority Power Switch", + "slug": "priority-power-switch", + "icon": "research-caterium-5-1-c", + "cost": [ + { + "item": "Desc_HighSpeedConnector_C", + "amount": 25.0 + }, + { + "item": "Desc_HighSpeedWire_C", + "amount": 500.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PriorityPowerSwitch_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Caterium_4_3_C": { + "className": "Research_Caterium_4_3_C", + "type": "EST_MAM", + "name": "Blade Runners", + "slug": "blade-runners", + "icon": "research-caterium-4-3-c", + "cost": [ + { + "item": "Desc_Silica_C", + "amount": 50.0 + }, + { + "item": "Desc_ModularFrame_C", + "amount": 10.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_BladeRunners_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Caterium_4_2_C": { + "className": "Research_Caterium_4_2_C", + "type": "EST_MAM", + "name": "Power Poles Mk.2", + "slug": "power-poles-mk-2", + "icon": "research-caterium-4-2-c", + "cost": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 300.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PowerPoleMk2_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Caterium_4_1_2_C": { + "className": "Research_Caterium_4_1_2_C", + "type": "EST_MAM", + "name": "Power Switch", + "slug": "power-switch", + "icon": "research-caterium-4-1-2-c", + "cost": [ + { + "item": "Desc_SteelPlate_C", + "amount": 100.0 + }, + { + "item": "Desc_CircuitBoardHighSpeed_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PowerSwitch_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Caterium_4_1_1_C": { + "className": "Research_Caterium_4_1_1_C", + "type": "EST_MAM", + "name": "Smart Splitter", + "slug": "smart-splitter", + "icon": "research-caterium-4-1-1-c", + "cost": [ + { + "item": "Desc_CircuitBoardHighSpeed_C", + "amount": 10.0 + }, + { + "item": "Desc_IronPlateReinforced_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_ConveyorAttachmentSplitterSmart_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Caterium_3_2_C": { + "className": "Research_Caterium_3_2_C", + "type": "EST_MAM", + "name": "Stun Rebar", + "slug": "stun-rebar", + "icon": "research-caterium-3-2-c", + "cost": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 50.0 + }, + { + "item": "Desc_SpikedRebar_C", + "amount": 10.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Rebar_Stunshot_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Caterium_3_1_C": { + "className": "Research_Caterium_3_1_C", + "type": "EST_MAM", + "name": "Inflated Pocket Dimension", + "slug": "inflated-pocket-dimension", + "icon": "research-caterium-3-1-c", + "cost": [ + { + "item": "Desc_Silica_C", + "amount": 200.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 6, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Caterium_2_1_C": { + "className": "Research_Caterium_2_1_C", + "type": "EST_MAM", + "name": "Zipline", + "slug": "zipline", + "icon": "research-caterium-2-1-c", + "cost": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 100.0 + }, + { + "item": "Desc_Cable_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_ZipLine_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Caterium_2_C": { + "className": "Research_Caterium_2_C", + "type": "EST_MAM", + "name": "Quickwire", + "slug": "quickwire", + "icon": "research-caterium-2-c", + "cost": [ + { + "item": "Desc_GoldIngot_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Quickwire_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Mycelia_GasMask_C": { + "className": "Research_Mycelia_GasMask_C", + "type": "EST_MAM", + "name": "Gas Mask", + "slug": "gas-mask", + "icon": "research-mycelia-gasmask-c", + "cost": [ + { + "item": "Desc_Coal_C", + "amount": 10.0 + }, + { + "item": "Desc_Fabric_C", + "amount": 50.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Gasmask_C", + "Recipe_FilterGasMask_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Mycelia_8_C": { + "className": "Research_Mycelia_8_C", + "type": "EST_MAM", + "name": "Toxic Cellular Modification", + "slug": "toxic-cellular-modification", + "icon": "research-mycelia-8-c", + "cost": [ + { + "item": "Desc_NobeliskExplosive_C", + "amount": 10.0 + }, + { + "item": "Desc_Mycelia_C", + "amount": 100.0 + }, + { + "item": "Desc_GenericBiomass_C", + "amount": 200.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_NobeliskGas_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Mycelia_7_C": { + "className": "Research_Mycelia_7_C", + "type": "EST_MAM", + "name": "Expanded Toolbelt", + "slug": "expanded-toolbelt", + "icon": "research-mycelia-7-c", + "cost": [ + { + "item": "Desc_Fabric_C", + "amount": 50.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 100.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Nutrients_2_C": { + "className": "Research_Nutrients_2_C", + "type": "EST_MAM", + "name": "Bacon Agaric", + "slug": "bacon-agaric", + "icon": "research-nutrients-2-c", + "cost": [ + { + "item": "Desc_Shroom_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Mycelia_6_C": { + "className": "Research_Mycelia_6_C", + "type": "EST_MAM", + "name": "Therapeutic Inhaler", + "slug": "therapeutic-inhaler", + "icon": "research-mycelia-6-c", + "cost": [ + { + "item": "Desc_Mycelia_C", + "amount": 15.0 + }, + { + "item": "Desc_Shroom_C", + "amount": 1.0 + }, + { + "item": "Desc_AlienProtein_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_TherapeuticInhaler_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Mycelia_5_C": { + "className": "Research_Mycelia_5_C", + "type": "EST_MAM", + "name": "Vitamin Inhaler", + "slug": "vitamin-inhaler", + "icon": "research-mycelia-5-c", + "cost": [ + { + "item": "Desc_Mycelia_C", + "amount": 10.0 + }, + { + "item": "Desc_Berry_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_MedicinalInhaler_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Mycelia_4_C": { + "className": "Research_Mycelia_4_C", + "type": "EST_MAM", + "name": "Medical Properties", + "slug": "medical-properties", + "icon": "research-mycelia-4-c", + "cost": [ + { + "item": "Desc_Mycelia_C", + "amount": 25.0 + }, + { + "item": "Desc_Stator_C", + "amount": 10.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Mycelia_3_C": { + "className": "Research_Mycelia_3_C", + "type": "EST_MAM", + "name": "Parachute", + "slug": "parachute", + "icon": "research-mycelia-3-c", + "cost": [ + { + "item": "Desc_Fabric_C", + "amount": 10.0 + }, + { + "item": "Desc_Cable_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Parachute_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Mycelia_2_1_C": { + "className": "Research_Mycelia_2_1_C", + "type": "EST_MAM", + "name": "Synthetic Polyester Fabric", + "slug": "synthetic-polyester-fabric", + "icon": "research-mycelia-2-1-c", + "cost": [ + { + "item": "Desc_Fabric_C", + "amount": 25.0 + }, + { + "item": "Desc_PolymerResin_C", + "amount": 100.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Alternate_PolyesterFabric_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Mycelia_2_C": { + "className": "Research_Mycelia_2_C", + "type": "EST_MAM", + "name": "Fabric", + "slug": "fabric", + "icon": "research-mycelia-2-c", + "cost": [ + { + "item": "Desc_Mycelia_C", + "amount": 25.0 + }, + { + "item": "Desc_GenericBiomass_C", + "amount": 100.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Fabric_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Nutrients_4_C": { + "className": "Research_Nutrients_4_C", + "type": "EST_MAM", + "name": "Nutritional Inhaler", + "slug": "nutritional-inhaler", + "icon": "research-nutrients-4-c", + "cost": [ + { + "item": "Desc_Shroom_C", + "amount": 2.0 + }, + { + "item": "Desc_Berry_C", + "amount": 4.0 + }, + { + "item": "Desc_Nut_C", + "amount": 10.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_NutritionalInhaler_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Nutrients_3_C": { + "className": "Research_Nutrients_3_C", + "type": "EST_MAM", + "name": "Nutritional Processor", + "slug": "nutritional-processor", + "icon": "research-nutrients-3-c", + "cost": [ + { + "item": "Desc_ModularFrame_C", + "amount": 25.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 50.0 + }, + { + "item": "Desc_Wire_C", + "amount": 500.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Nutrients_1_C": { + "className": "Research_Nutrients_1_C", + "type": "EST_MAM", + "name": "Beryl Nut", + "slug": "beryl-nut", + "icon": "research-nutrients-1-c", + "cost": [ + { + "item": "Desc_Nut_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_PowerSlugs_6_C": { + "className": "Research_PowerSlugs_6_C", + "type": "EST_MAM", + "name": "Synthetic Power Shards", + "slug": "synthetic-power-shards", + "icon": "research-powerslugs-6-c", + "cost": [ + { + "item": "Desc_CrystalShard_C", + "amount": 10.0 + }, + { + "item": "Desc_TimeCrystal_C", + "amount": 100.0 + }, + { + "item": "Desc_QuartzCrystal_C", + "amount": 200.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_SyntheticPowerShard_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_PowerSlugs_5_C": { + "className": "Research_PowerSlugs_5_C", + "type": "EST_MAM", + "name": "Purple Power Slugs", + "slug": "purple-power-slugs", + "icon": "research-powerslugs-5-c", + "cost": [ + { + "item": "Desc_Crystal_mk3_C", + "amount": 1.0 + }, + { + "item": "Desc_ModularFrame_C", + "amount": 25.0 + }, + { + "item": "Desc_CopperSheet_C", + "amount": 100.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PowerCrystalShard_3_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_PowerSlugs_4_C": { + "className": "Research_PowerSlugs_4_C", + "type": "EST_MAM", + "name": "Yellow Power Slugs", + "slug": "yellow-power-slugs", + "icon": "research-powerslugs-4-c", + "cost": [ + { + "item": "Desc_Crystal_mk2_C", + "amount": 1.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 25.0 + }, + { + "item": "Desc_Cable_C", + "amount": 100.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PowerCrystalShard_2_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_PowerSlugs_2_C": { + "className": "Research_PowerSlugs_2_C", + "type": "EST_MAM", + "name": "Overclock Production", + "slug": "overclock-production", + "icon": "research-powerslugs-2-c", + "cost": [ + { + "item": "Desc_CrystalShard_C", + "amount": 1.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 50.0 + }, + { + "item": "Desc_Wire_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Quartz_4_C": { + "className": "Research_Quartz_4_C", + "type": "EST_MAM", + "name": "Radar Technology", + "slug": "radar-technology", + "icon": "research-quartz-4-c", + "cost": [ + { + "item": "Desc_CrystalOscillator_C", + "amount": 50.0 + }, + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 50.0 + }, + { + "item": "Desc_Computer_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_RadarTower_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Quartz_3_4_C": { + "className": "Research_Quartz_3_4_C", + "type": "EST_MAM", + "name": "Explosive Resonance Application", + "slug": "explosive-resonance-application", + "icon": "research-quartz-3-4-c", + "cost": [ + { + "item": "Desc_CrystalOscillator_C", + "amount": 5.0 + }, + { + "item": "Desc_NobeliskExplosive_C", + "amount": 100.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_NobeliskShockwave_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Quartz_3_1_C": { + "className": "Research_Quartz_3_1_C", + "type": "EST_MAM", + "name": "The Explorer", + "slug": "the-explorer", + "icon": "research-quartz-3-1-c", + "cost": [ + { + "item": "Desc_CrystalOscillator_C", + "amount": 10.0 + }, + { + "item": "Desc_ModularFrame_C", + "amount": 100.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Explorer_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Quartz_3_C": { + "className": "Research_Quartz_3_C", + "type": "EST_MAM", + "name": "Signal Systems", + "slug": "signal-systems", + "icon": "research-quartz-3-c", + "cost": [ + { + "item": "Desc_CrystalOscillator_C", + "amount": 5.0 + }, + { + "item": "Desc_CircuitBoard_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Quartz_2_1_C": { + "className": "Research_Quartz_2_1_C", + "type": "EST_MAM", + "name": "Shatter Rebar", + "slug": "shatter-rebar", + "icon": "research-quartz-2-1-c", + "cost": [ + { + "item": "Desc_QuartzCrystal_C", + "amount": 30.0 + }, + { + "item": "Desc_SpikedRebar_C", + "amount": 150.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Rebar_Spreadshot_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Sulfur_ExperimentalPower_C": { + "className": "Research_Sulfur_ExperimentalPower_C", + "type": "EST_MAM", + "name": "Experimental Power Generation", + "slug": "experimental-power-generation", + "icon": "research-sulfur-experimentalpower-c", + "cost": [ + { + "item": "Desc_Sulfur_C", + "amount": 25.0 + }, + { + "item": "Desc_ModularFrame_C", + "amount": 50.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 100.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Sulfur_CompactedCoal_C": { + "className": "Research_Sulfur_CompactedCoal_C", + "type": "EST_MAM", + "name": "Compacted Coal", + "slug": "compacted-coal", + "icon": "research-sulfur-compactedcoal-c", + "cost": [ + { + "item": "Desc_HardDrive_C", + "amount": 1.0 + }, + { + "item": "Desc_Sulfur_C", + "amount": 25.0 + }, + { + "item": "Desc_Coal_C", + "amount": 25.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Alternate_EnrichedCoal_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Sulfur_6_C": { + "className": "Research_Sulfur_6_C", + "type": "EST_MAM", + "name": "Inflated Pocket Dimension", + "slug": "inflated-pocket-dimension", + "icon": "research-sulfur-6-c", + "cost": [ + { + "item": "Desc_GunpowderMK2_C", + "amount": 50.0 + }, + { + "item": "Desc_Computer_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 6, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Sulfur_5_2_C": { + "className": "Research_Sulfur_5_2_C", + "type": "EST_MAM", + "name": "Turbo Rifle Ammo", + "slug": "turbo-rifle-ammo", + "icon": "research-sulfur-5-2-c", + "cost": [ + { + "item": "Desc_CartridgeStandard_C", + "amount": 1000.0 + }, + { + "item": "Desc_TurboFuel_C", + "amount": 50.0 + }, + { + "item": "Desc_AluminumCasing_C", + "amount": 100.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_CartridgeChaos_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Sulfur_5_1_C": { + "className": "Research_Sulfur_5_1_C", + "type": "EST_MAM", + "name": "Nuclear Deterrent Development", + "slug": "nuclear-deterrent-development", + "icon": "research-sulfur-5-1-c", + "cost": [ + { + "item": "Desc_NobeliskExplosive_C", + "amount": 500.0 + }, + { + "item": "Desc_UraniumCell_C", + "amount": 10.0 + }, + { + "item": "Desc_CircuitBoardHighSpeed_C", + "amount": 100.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_NobeliskNuke_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Sulfur_5_C": { + "className": "Research_Sulfur_5_C", + "type": "EST_MAM", + "name": "Expanded Toolbelt", + "slug": "expanded-toolbelt", + "icon": "research-sulfur-5-c", + "cost": [ + { + "item": "Desc_Gunpowder_C", + "amount": 100.0 + }, + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Sulfur_4_2_C": { + "className": "Research_Sulfur_4_2_C", + "type": "EST_MAM", + "name": "Explosive Rebar", + "slug": "explosive-rebar", + "icon": "research-sulfur-4-2-c", + "cost": [ + { + "item": "Desc_GunpowderMK2_C", + "amount": 200.0 + }, + { + "item": "Desc_SpikedRebar_C", + "amount": 200.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 200.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Rebar_Explosive_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Sulfur_4_1_C": { + "className": "Research_Sulfur_4_1_C", + "type": "EST_MAM", + "name": "The Rifle", + "slug": "the-rifle", + "icon": "research-sulfur-4-1-c", + "cost": [ + { + "item": "Desc_GunpowderMK2_C", + "amount": 50.0 + }, + { + "item": "Desc_Motor_C", + "amount": 100.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 200.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_SpaceRifleMk1_C", + "Recipe_Cartridge_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Sulfur_4_C": { + "className": "Research_Sulfur_4_C", + "type": "EST_MAM", + "name": "Cluster Nobelisk", + "slug": "cluster-nobelisk", + "icon": "research-sulfur-4-c", + "cost": [ + { + "item": "Desc_GunpowderMK2_C", + "amount": 100.0 + }, + { + "item": "Desc_NobeliskExplosive_C", + "amount": 200.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_NobeliskCluster_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Sulfur_3_1_C": { + "className": "Research_Sulfur_3_1_C", + "type": "EST_MAM", + "name": "The Nobelisk Detonator", + "slug": "the-nobelisk-detonator", + "icon": "research-sulfur-3-1-c", + "cost": [ + { + "item": "Desc_Gunpowder_C", + "amount": 50.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 100.0 + }, + { + "item": "Desc_Cable_C", + "amount": 200.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_NobeliskDetonator_C", + "Recipe_Nobelisk_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Sulfur_3_C": { + "className": "Research_Sulfur_3_C", + "type": "EST_MAM", + "name": "Smokeless Powder", + "slug": "smokeless-powder", + "icon": "research-sulfur-3-c", + "cost": [ + { + "item": "Desc_Gunpowder_C", + "amount": 100.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_GunpowderMK2_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Sulfur_2_C": { + "className": "Research_Sulfur_2_C", + "type": "EST_MAM", + "name": "Volatile Applications", + "slug": "volatile-applications", + "icon": "research-sulfur-2-c", + "cost": [ + { + "item": "Desc_Gunpowder_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_XMas_5_C": { + "className": "Research_XMas_5_C", + "type": "EST_MAM", + "name": "Giant FICSMAS Tree: Upgrade 4", + "slug": "giant-ficsmas-tree-upgrade-4", + "icon": "research-xmas-5-c", + "cost": [ + { + "item": "Desc_XmasStar_C", + "amount": 500.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_XMas_4_C": { + "className": "Research_XMas_4_C", + "type": "EST_MAM", + "name": "Giant FICSMAS Tree: Upgrade 3", + "slug": "giant-ficsmas-tree-upgrade-3", + "icon": "research-xmas-4-c", + "cost": [ + { + "item": "Desc_XmasDataCartridge4_C", + "amount": 1.0 + }, + { + "item": "Desc_XmasBranch_C", + "amount": 200.0 + }, + { + "item": "Desc_XmasBallCluster_C", + "amount": 400.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_XmasWreath_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_XMas_4-2_C": { + "className": "Research_XMas_4-2_C", + "type": "EST_MAM", + "name": "Snowfight!", + "slug": "snowfight", + "icon": "research-xmas-4-2-c", + "cost": [ + { + "item": "Desc_Snow_C", + "amount": 500.0 + }, + { + "item": "Desc_CandyCane_C", + "amount": 500.0 + }, + { + "item": "Desc_XmasBow_C", + "amount": 500.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Snowball_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_XMas_4-1_C": { + "className": "Research_XMas_4-1_C", + "type": "EST_MAM", + "name": "FICSMAS Decoration", + "slug": "ficsmas-decoration", + "icon": "research-xmas-4-1-c", + "cost": [ + { + "item": "Desc_XmasWreath_C", + "amount": 100.0 + }, + { + "item": "Desc_XmasBallCluster_C", + "amount": 200.0 + }, + { + "item": "Desc_XmasBow_C", + "amount": 500.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_WreathDecor_C", + "Recipe_XmasStar_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_XMas_3_C": { + "className": "Research_XMas_3_C", + "type": "EST_MAM", + "name": "Giant FICSMAS Tree: Upgrade 2", + "slug": "giant-ficsmas-tree-upgrade-2", + "icon": "research-xmas-3-c", + "cost": [ + { + "item": "Desc_XmasDataCartridge3_C", + "amount": 1.0 + }, + { + "item": "Desc_XmasBall1_C", + "amount": 200.0 + }, + { + "item": "Desc_XmasBall2_C", + "amount": 200.0 + }, + { + "item": "Desc_Gift_C", + "amount": 100.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_XmasBall3_C", + "Recipe_XmasBall4_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_XMas_3-2_C": { + "className": "Research_XMas_3-2_C", + "type": "EST_MAM", + "name": "It's Snowing!", + "slug": "it-s-snowing", + "icon": "research-xmas-3-2-c", + "cost": [ + { + "item": "Desc_Snow_C", + "amount": 100.0 + }, + { + "item": "Desc_XmasBall3_C", + "amount": 200.0 + }, + { + "item": "Desc_XmasBall4_C", + "amount": 200.0 + }, + { + "item": "Desc_CandyCane_C", + "amount": 200.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_SnowDispenser_C", + "Recipe_SnowCannon_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_XMas_3-1_C": { + "className": "Research_XMas_3-1_C", + "type": "EST_MAM", + "name": "FICSMAS Lights", + "slug": "ficsmas-lights", + "icon": "research-xmas-3-1-c", + "cost": [ + { + "item": "Desc_XmasBall1_C", + "amount": 100.0 + }, + { + "item": "Desc_XmasBall2_C", + "amount": 100.0 + }, + { + "item": "Desc_XmasBall3_C", + "amount": 50.0 + }, + { + "item": "Desc_XmasBall4_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_xmassLights_C", + "Recipe_XmasBallCluster_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_XMas_2_C": { + "className": "Research_XMas_2_C", + "type": "EST_MAM", + "name": "Giant FICSMAS Tree: Upgrade 1", + "slug": "giant-ficsmas-tree-upgrade-1", + "icon": "research-xmas-2-c", + "cost": [ + { + "item": "Desc_XmasDataCartridge2_C", + "amount": 1.0 + }, + { + "item": "Desc_CandyCane_C", + "amount": 20.0 + }, + { + "item": "Desc_XmasBow_C", + "amount": 30.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_XmasBall1_C", + "Recipe_XmasBall2_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_XMas_2-2_C": { + "className": "Research_XMas_2-2_C", + "type": "EST_MAM", + "name": "FICSMAS Gift Tree", + "slug": "ficsmas-gift-tree", + "icon": "research-xmas-2-2-c", + "cost": [ + { + "item": "Desc_XmasBall1_C", + "amount": 50.0 + }, + { + "item": "Desc_XmasBall2_C", + "amount": 50.0 + }, + { + "item": "Desc_XmasBranch_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_TreeGiftProducer_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_XMas_2-1_C": { + "className": "Research_XMas_2-1_C", + "type": "EST_MAM", + "name": "A Friend", + "slug": "a-friend", + "icon": "research-xmas-2-1-c", + "cost": [ + { + "item": "Desc_CandyCane_C", + "amount": 50.0 + }, + { + "item": "Desc_XmasBow_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Snowman_C", + "Recipe_Snow_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_XMas_1_C": { + "className": "Research_XMas_1_C", + "type": "EST_MAM", + "name": "FICSMAS Tree Base", + "slug": "ficsmas-tree-base", + "icon": "research-xmas-1-c", + "cost": [ + { + "item": "Desc_XmasDataCartridge1_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_XMassTree_C", + "Recipe_XmasBranch_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_XMas_1-2_C": { + "className": "Research_XMas_1-2_C", + "type": "EST_MAM", + "name": "Candy Cane Decor", + "slug": "candy-cane-decor", + "icon": "research-xmas-1-2-c", + "cost": [ + { + "item": "Desc_CandyCane_C", + "amount": 10.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_CandyCaneDecor_C", + "Recipe_XmasBow_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_XMas_1-1_C": { + "className": "Research_XMas_1-1_C", + "type": "EST_MAM", + "name": "Candy Cane Basher", + "slug": "candy-cane-basher", + "icon": "research-xmas-1-1-c", + "cost": [ + { + "item": "Desc_XmasBranch_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_CandyCaneBasher_C", + "Recipe_CandyCane_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "ResourceSink_Customizer_ConcreteWallMaterial_C": { + "className": "ResourceSink_Customizer_ConcreteWallMaterial_C", + "type": "EST_ResourceSink", + "name": "Concrete Wall Material", + "slug": "concrete-wall-material", + "icon": "resourcesink-customizer-concretewallmaterial-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Material_Wall_Concrete_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_1-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Customizer_SteelWallMaterial_C": { + "className": "ResourceSink_Customizer_SteelWallMaterial_C", + "type": "EST_ResourceSink", + "name": "Steel Wall Material", + "slug": "steel-wall-material", + "icon": "resourcesink-customizer-steelwallmaterial-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Material_Wall_Steel_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-4_C", + "Schematic_1-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Diagonal_Down_Wallset_C": { + "className": "ResourceSink_Diagonal_Down_Wallset_C", + "type": "EST_ResourceSink", + "name": "Inverted Ramp Wall Bundle", + "slug": "inverted-ramp-wall-bundle", + "icon": "resourcesink-diagonal-down-wallset-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Wall_Orange_FlipTris_8x1_C", + "Recipe_Wall_Orange_FlipTris_8x2_C", + "Recipe_Wall_Orange_FlipTris_8x4_C", + "Recipe_Wall_Orange_FlipTris_8x8_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Diagonal_Up_WallSet_C": { + "className": "ResourceSink_Diagonal_Up_WallSet_C", + "type": "EST_ResourceSink", + "name": "Ramp Wall Bundle", + "slug": "ramp-wall-bundle", + "icon": "resourcesink-diagonal-up-wallset-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 4.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Wall_Orange_Tris_8x1_C", + "Recipe_Wall_Orange_Tris_8x2_C", + "Recipe_Wall_Orange_Tris_8x4_C", + "Recipe_Wall_Orange_Tris_8x8_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_DoorWalls_Normal_C": { + "className": "ResourceSink_DoorWalls_Normal_C", + "type": "EST_ResourceSink", + "name": "Door Walls", + "slug": "door-walls", + "icon": "resourcesink-doorwalls-normal-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Wall_Door_8x4_01_C", + "Recipe_Wall_Door_8x4_03_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_FactoryRailing_C": { + "className": "ResourceSink_FactoryRailing_C", + "type": "EST_ResourceSink", + "name": "Industrial Railing", + "slug": "industrial-railing", + "icon": "resourcesink-factoryrailing-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Fence_01_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_FactoryFence_C": { + "className": "ResourceSink_FactoryFence_C", + "type": "EST_ResourceSink", + "name": "Modern Railing", + "slug": "modern-railing", + "icon": "resourcesink-factoryfence-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Railing_01_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_FrameworkFoundations_C": { + "className": "ResourceSink_FrameworkFoundations_C", + "type": "EST_ResourceSink", + "name": "Structural Frame Set", + "slug": "structural-frame-set", + "icon": "resourcesink-frameworkfoundations-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 10.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Flat_Frame_01_C", + "Recipe_FoundationGlass_01_C", + "Recipe_Foundation_Frame_01_C", + "Recipe_Wall_Frame_01_C", + "Recipe_Ramp_Frame_01_C", + "Recipe_Ramp_Frame_Inverted_01_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_FoudationPillar_C": { + "className": "ResourceSink_FoudationPillar_C", + "type": "EST_ResourceSink", + "name": "Metal Pillar Set", + "slug": "metal-pillar-set", + "icon": "resourcesink-foudationpillar-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PillarMiddle_C", + "Recipe_PillarBase_C", + "Recipe_Pillar_Small_Metal_C", + "Recipe_PillarBase_Small_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Customizer_Asphalt_FoundationMaterial_C": { + "className": "ResourceSink_Customizer_Asphalt_FoundationMaterial_C", + "type": "EST_ResourceSink", + "name": "Asphalt Foundation Material", + "slug": "asphalt-foundation-material", + "icon": "resourcesink-customizer-asphalt-foundationmaterial-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 4.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Material_Foundation_Asphalt_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_1-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_DiagonalRamps_C": { + "className": "ResourceSink_DiagonalRamps_C", + "type": "EST_ResourceSink", + "name": "Corner Ramp Pack", + "slug": "corner-ramp-pack", + "icon": "resourcesink-diagonalramps-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Ramp_Diagonal_8x1_02_C", + "Recipe_Ramp_Diagonal_8x2_02_C", + "Recipe_Ramp_Diagonal_8x4_02_C", + "Recipe_Ramp_Diagonal_8x1_01_C", + "Recipe_Ramp_Diagonal_8x2_01_C", + "Recipe_Ramp_Diagonal_8x4_01_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Customizer_Concrete_FoundationMaterial_C": { + "className": "ResourceSink_Customizer_Concrete_FoundationMaterial_C", + "type": "EST_ResourceSink", + "name": "Concrete Foundation Material", + "slug": "concrete-foundation-material", + "icon": "resourcesink-customizer-concrete-foundationmaterial-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Material_Foundation_Concrete_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_1-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_FoundationExpansionPack_C": { + "className": "ResourceSink_FoundationExpansionPack_C", + "type": "EST_ResourceSink", + "name": "Double Ramp Set", + "slug": "double-ramp-set", + "icon": "resourcesink-foundationexpansionpack-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_RampDouble_8x1_C", + "Recipe_RampDouble_C", + "Recipe_Ramp_8x8x8_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Customizer_GripMetal_FoundationMaterial_C": { + "className": "ResourceSink_Customizer_GripMetal_FoundationMaterial_C", + "type": "EST_ResourceSink", + "name": "Grip Metal Foundation Material", + "slug": "grip-metal-foundation-material", + "icon": "resourcesink-customizer-gripmetal-foundationmaterial-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Material_Foundation_GripMetal_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-4_C", + "Schematic_1-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_InvertedCornerRamps_C": { + "className": "ResourceSink_InvertedCornerRamps_C", + "type": "EST_ResourceSink", + "name": "Inverted Corner Ramp Pack", + "slug": "inverted-corner-ramp-pack", + "icon": "resourcesink-invertedcornerramps-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_RampInverted_8x1_Corner_01_C", + "Recipe_RampInverted_8x2_Corner_01_C", + "Recipe_RampInverted_8x4_Corner_01_C", + "Recipe_RampInverted_8x1_Corner_02_C", + "Recipe_RampInverted_8x2_Corner_02_C", + "Recipe_RampInverted_8x4_Corner_02_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Customizer_PolishedConcrete_FoundationMaterial_C": { + "className": "ResourceSink_Customizer_PolishedConcrete_FoundationMaterial_C", + "type": "EST_ResourceSink", + "name": "Coated Concrete Foundation Material", + "slug": "coated-concrete-foundation-material", + "icon": "resourcesink-customizer-polishedconcrete-foundationmaterial-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 6.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Material_Foundation_PolishedConcrete_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C", + "Schematic_1-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_InvertedRampPack_C": { + "className": "ResourceSink_InvertedRampPack_C", + "type": "EST_ResourceSink", + "name": "Inverted Ramp Set", + "slug": "inverted-ramp-set", + "icon": "resourcesink-invertedramppack-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_RampInverted_8x1_C", + "Recipe_RampInverted_8x2_01_C", + "Recipe_Ramp_8x4_Inverted_01_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Ladders_C": { + "className": "ResourceSink_Ladders_C", + "type": "EST_ResourceSink", + "name": "Factory Ladder", + "slug": "factory-ladder", + "icon": "resourcesink-ladders-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Ladder_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Walkways_C": { + "className": "ResourceSink_Walkways_C", + "type": "EST_ResourceSink", + "name": "Industrial Walkways", + "slug": "industrial-walkways", + "icon": "resourcesink-walkways-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Walkway_Straight_C", + "Recipe_Walkway_Cross_C", + "Recipe_Walkway_T_C", + "Recipe_Walkway_Turn_C", + "Recipe_Walkway_Ramp_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_CurvedFoundationPack_C": { + "className": "ResourceSink_CurvedFoundationPack_C", + "type": "EST_ResourceSink", + "name": "Quarter Pipes Pack", + "slug": "quarter-pipes-pack", + "icon": "resourcesink-curvedfoundationpack-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 6.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_QuarterPipe_C", + "Recipe_QuarterPipe_02_C", + "Recipe_QuarterPipeCorner_01_C", + "Recipe_QuarterPipeCorner_02_C", + "Recipe_QuarterPipeCorner_03_C", + "Recipe_QuarterPipeCorner_04_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_FactoryCart_C": { + "className": "ResourceSink_FactoryCart_C", + "type": "EST_ResourceSink", + "name": "FICSIT Factory Cart™", + "slug": "ficsit-factory-carttm", + "icon": "resourcesink-factorycart-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 10.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_FactoryCart_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_CyberWagon_C": { + "className": "ResourceSink_CyberWagon_C", + "type": "EST_ResourceSink", + "name": "Cyber Wagon", + "slug": "cyber-wagon", + "icon": "resourcesink-cyberwagon-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 20.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_CyberWagon_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_CyberWagon_Unlock_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_HalfFoundations_C": { + "className": "ResourceSink_HalfFoundations_C", + "type": "EST_ResourceSink", + "name": "Half Foundation Set", + "slug": "half-foundation-set", + "icon": "resourcesink-halffoundations-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 4.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_QuarterPipeMiddle_Ficsit_4x1_C", + "Recipe_QuarterPipeMiddle_Ficsit_4x2_C", + "Recipe_QuarterPipeMiddle_Ficsit_4x4_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_QuarterPipeExtensions_C": { + "className": "ResourceSink_QuarterPipeExtensions_C", + "type": "EST_ResourceSink", + "name": "Quarter Pipe Extensions Pack", + "slug": "quarter-pipe-extensions-pack", + "icon": "resourcesink-quarterpipeextensions-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_QuarterPipeMiddleInCorner_Ficsit_8x1_C", + "Recipe_QuarterPipeMiddleInCorner_Ficsit_8x2_C", + "Recipe_QuarterPipeMiddleInCorner_Ficsit_8x4_C", + "Recipe_QuarterPipeMiddleOutCorner_Ficsit_4x1_C", + "Recipe_QuarterPipeMiddleOutCorner_Ficsit_4x2_C", + "Recipe_QuarterPipeMiddleOutCorner_Ficsit_4x4_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_FoundationStairs_C": { + "className": "ResourceSink_FoundationStairs_C", + "type": "EST_ResourceSink", + "name": "Foundation Stairs Set", + "slug": "foundation-stairs-set", + "icon": "resourcesink-foundationstairs-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Stair_FicsitSet_8x1_01_C", + "Recipe_Stair_FicsitSet_8x2_01_C", + "Recipe_Stair_FicsitSet_8x4_01_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_WindowedWalls_C": { + "className": "ResourceSink_WindowedWalls_C", + "type": "EST_ResourceSink", + "name": "Windowed Walls", + "slug": "windowed-walls", + "icon": "resourcesink-windowedwalls-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 6.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Wall_Window_8x4_01_C", + "Recipe_Wall_Window_8x4_02_C", + "Recipe_Wall_Window_8x4_03_C", + "Recipe_Wall_Window_8x4_04_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Quartz_1_2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_GateWalls_C": { + "className": "ResourceSink_GateWalls_C", + "type": "EST_ResourceSink", + "name": "Gates", + "slug": "gates", + "icon": "resourcesink-gatewalls-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Wall_Gate_8x4_01_C", + "Recipe_Gate_Automated_8x4_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Tilted_Walls_C": { + "className": "ResourceSink_Tilted_Walls_C", + "type": "EST_ResourceSink", + "name": "Tilted Walls", + "slug": "tilted-walls", + "icon": "resourcesink-tilted-walls-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Wall_Orange_Angular_8x4_C", + "Recipe_Wall_Orange_Angular_8x8_C", + "Recipe_Wall_Orange_8x4_Corner_01_C", + "Recipe_Wall_Orange_8x8_Corner_01_C", + "Recipe_Wall_Orange_8x4_Corner_02_C", + "Recipe_Wall_Orange_8x8_Corner_02_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_ConveryWalls_Normal_C": { + "className": "ResourceSink_ConveryWalls_Normal_C", + "type": "EST_ResourceSink", + "name": "Conveyor Walls", + "slug": "conveyor-walls", + "icon": "resourcesink-converywalls-normal-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Wall_Conveyor_8x4_01_C", + "Recipe_Wall_Conveyor_8x4_02_C", + "Recipe_Wall_Conveyor_8x4_03_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_ConveyorWallMount_C": { + "className": "ResourceSink_ConveyorWallMount_C", + "type": "EST_ResourceSink", + "name": "Conveyor Wall Mount", + "slug": "conveyor-wall-mount", + "icon": "resourcesink-conveyorwallmount-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_ConveyorPoleWall_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_ConveyorCeilingMount_C": { + "className": "ResourceSink_ConveyorCeilingMount_C", + "type": "EST_ResourceSink", + "name": "Conveyor Ceiling Mount", + "slug": "conveyor-ceiling-mount", + "icon": "resourcesink-conveyorceilingmount-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_ConveyorCeilingAttachment_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_HyperTubeWallAttachements_C": { + "className": "ResourceSink_HyperTubeWallAttachements_C", + "type": "EST_ResourceSink", + "name": "Hypertube Wall Attachments", + "slug": "hypertube-wall-attachments", + "icon": "resourcesink-hypertubewallattachements-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_HyperTubeWallSupport_C", + "Recipe_HyperTubeWallHole_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_4-4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_PipelineWallAttachments_C": { + "className": "ResourceSink_PipelineWallAttachments_C", + "type": "EST_ResourceSink", + "name": "Pipeline Wall Attachments", + "slug": "pipeline-wall-attachments", + "icon": "resourcesink-pipelinewallattachments-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PipeSupportWall_C", + "Recipe_PipeSupportWallHole_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_PipelineFloorHole_C": { + "className": "ResourceSink_PipelineFloorHole_C", + "type": "EST_ResourceSink", + "name": "Pipeline Floor Hole", + "slug": "pipeline-floor-hole", + "icon": "resourcesink-pipelinefloorhole-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_FoundationPassthrough_Pipe_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_WallPowerPoles_C": { + "className": "ResourceSink_WallPowerPoles_C", + "type": "EST_ResourceSink", + "name": "Wall Power Outlets Mk.1", + "slug": "wall-power-outlets-mk-1", + "icon": "resourcesink-wallpowerpoles-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PowerPoleWall_C", + "Recipe_PowerPoleWallDouble_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_WallPowerPolesMK2_C": { + "className": "ResourceSink_WallPowerPolesMK2_C", + "type": "EST_ResourceSink", + "name": "Wall Power Outlets Mk.2", + "slug": "wall-power-outlets-mk-2", + "icon": "resourcesink-wallpowerpolesmk2-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 4.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PowerPoleWallMk2_C", + "Recipe_PowerPoleWallDoubleMk2_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Caterium_4_2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_WallPowerPolesMK3_C": { + "className": "ResourceSink_WallPowerPolesMK3_C", + "type": "EST_ResourceSink", + "name": "Wall Power Outlets Mk.3", + "slug": "wall-power-outlets-mk-3", + "icon": "resourcesink-wallpowerpolesmk3-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PowerPoleWallMk3_C", + "Recipe_PowerPoleWallDoubleMk3_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Caterium_6_2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_CeilingLight_C": { + "className": "ResourceSink_CeilingLight_C", + "type": "EST_ResourceSink", + "name": "Indoor Lighting", + "slug": "indoor-lighting", + "icon": "resourcesink-ceilinglight-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_CeilingLight_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Caterium_2_C", + "Schematic_3-4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_LightTower_C": { + "className": "ResourceSink_LightTower_C", + "type": "EST_ResourceSink", + "name": "Flood Lights", + "slug": "flood-lights", + "icon": "resourcesink-lighttower-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_FloodlightPole_C", + "Recipe_FloodlightWall_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Caterium_2_C", + "Schematic_4-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_StreetLight_C": { + "className": "ResourceSink_StreetLight_C", + "type": "EST_ResourceSink", + "name": "Street Light", + "slug": "street-light", + "icon": "resourcesink-streetlight-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_StreetLight_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Caterium_2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Statue_Hoggo_C": { + "className": "ResourceSink_Statue_Hoggo_C", + "type": "EST_ResourceSink", + "name": "Silver Hog (purchase)", + "slug": "silver-hog-purchase", + "icon": "resourcesink-statue-hoggo-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Hog_Statue_C", + "amount": 1.0 + } + ] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_StatueLizardDoggo_C": { + "className": "ResourceSink_StatueLizardDoggo_C", + "type": "EST_ResourceSink", + "name": "Lizard Doggo (purchase)", + "slug": "lizard-doggo-purchase", + "icon": "resourcesink-statuelizarddoggo-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 100.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_DoggoStatue_C", + "amount": 1.0 + } + ] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_StatueSpaceGiraffe_C": { + "className": "ResourceSink_StatueSpaceGiraffe_C", + "type": "EST_ResourceSink", + "name": "Confusing Creature (purchase)", + "slug": "confusing-creature-purchase", + "icon": "resourcesink-statuespacegiraffe-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 200.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_SpaceGiraffeStatue_C", + "amount": 1.0 + } + ] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_StatueBronzePioneer_C": { + "className": "ResourceSink_StatueBronzePioneer_C", + "type": "EST_ResourceSink", + "name": "Adequate Pioneering (purchase)", + "slug": "adequate-pioneering-purchase", + "icon": "resourcesink-statuebronzepioneer-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 25.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_CharacterRunStatue_C", + "amount": 1.0 + } + ] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_StatueGoldPioneer_C": { + "className": "ResourceSink_StatueGoldPioneer_C", + "type": "EST_ResourceSink", + "name": "Satisfactory Pioneering (purchase)", + "slug": "satisfactory-pioneering-purchase", + "icon": "resourcesink-statuegoldpioneer-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 150.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_CharacterSpin_Statue_C", + "amount": 1.0 + } + ] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_StatueSilverPioneer_C": { + "className": "ResourceSink_StatueSilverPioneer_C", + "type": "EST_ResourceSink", + "name": "Pretty Good Pioneering (purchase)", + "slug": "pretty-good-pioneering-purchase", + "icon": "resourcesink-statuesilverpioneer-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_CharacterClap_Statue_C", + "amount": 1.0 + } + ] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_StatueGoldenNut_C": { + "className": "ResourceSink_StatueGoldenNut_C", + "type": "EST_ResourceSink", + "name": "Golden Nut (purchase)", + "slug": "golden-nut-purchase", + "icon": "resourcesink-statuegoldennut-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1000.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_GoldenNut_Statue_C", + "amount": 1.0 + } + ] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Customizer_GlassRoofMaterial_C": { + "className": "ResourceSink_Customizer_GlassRoofMaterial_C", + "type": "EST_ResourceSink", + "name": "Glass Roof Material", + "slug": "glass-roof-material", + "icon": "resourcesink-customizer-glassroofmaterial-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Material_Roof_Glass_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_Roofs_Basic_C", + "Research_Quartz_1_2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Roofs_Basic_C": { + "className": "ResourceSink_Roofs_Basic_C", + "type": "EST_ResourceSink", + "name": "FICSIT Roofs", + "slug": "ficsit-roofs", + "icon": "resourcesink-roofs-basic-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 6.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Roof_Orange_01_C", + "Recipe_Roof_Orange_02_C", + "Recipe_Roof_Orange_03_C", + "Recipe_Roof_Orange_04_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Roofs_Corners_C": { + "className": "ResourceSink_Roofs_Corners_C", + "type": "EST_ResourceSink", + "name": "FICSIT Roof Corners", + "slug": "ficsit-roof-corners", + "icon": "resourcesink-roofs-corners-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 4.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Roof_Orange_InCorner_01_C", + "Recipe_Roof_Orange_InCorner_02_C", + "Recipe_Roof_Orange_InCorner_03_C", + "Recipe_Roof_Orange_OutCorner_01_C", + "Recipe_Roof_Orange_OutCorner_02_C", + "Recipe_Roof_Orange_OutCorner_03_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Customizer_SteelRoofMaterial_C": { + "className": "ResourceSink_Customizer_SteelRoofMaterial_C", + "type": "EST_ResourceSink", + "name": "Metal Roof Material", + "slug": "metal-roof-material", + "icon": "resourcesink-customizer-steelroofmaterial-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Material_Roof_Metal_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_Roofs_Basic_C", + "Schematic_3-4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Customizer_TarRoofMaterial_C": { + "className": "ResourceSink_Customizer_TarRoofMaterial_C", + "type": "EST_ResourceSink", + "name": "Tar Roof Material", + "slug": "tar-roof-material", + "icon": "resourcesink-customizer-tarroofmaterial-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Material_Roof_Tar_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_Roofs_Basic_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_NoIndicator_PipelineMK2_C": { + "className": "ResourceSink_NoIndicator_PipelineMK2_C", + "type": "EST_ResourceSink", + "name": "Clean Pipeline Mk.2", + "slug": "clean-pipeline-mk-2", + "icon": "resourcesink-noindicator-pipelinemk2-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PipelineMK2_NoIndicator_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_6-5_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_NoIndicator_PipelineMK1_C": { + "className": "ResourceSink_NoIndicator_PipelineMK1_C", + "type": "EST_ResourceSink", + "name": "Clean Pipeline Mk.1", + "slug": "clean-pipeline-mk-1", + "icon": "resourcesink-noindicator-pipelinemk1-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Pipeline_NoIndicator_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_MedicalBoxSkin_C": { + "className": "ResourceSink_MedicalBoxSkin_C", + "type": "EST_ResourceSink", + "name": "Medical Box - Personal Storage Skin", + "slug": "medical-box-personal-storage-skin", + "icon": "resourcesink-medicalboxskin-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_StorageMedkit_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_LightControlPanel_C": { + "className": "ResourceSink_LightControlPanel_C", + "type": "EST_ResourceSink", + "name": "Light Control Panel", + "slug": "light-control-panel", + "icon": "resourcesink-lightcontrolpanel-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_LightsControlPanel_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Caterium_2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_LabelSigns_C": { + "className": "ResourceSink_LabelSigns_C", + "type": "EST_ResourceSink", + "name": "Label Sign Bundle", + "slug": "label-sign-bundle", + "icon": "resourcesink-labelsigns-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_StandaloneWidgetSign_Small_C", + "Recipe_StandaloneWidgetSign_SmallWide_C", + "Recipe_StandaloneWidgetSign_SmallVeryWide_C", + "Recipe_StandaloneWidgetSign_Square_Tiny_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Quartz_1_1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_HyperTubeFloorHole_C": { + "className": "ResourceSink_HyperTubeFloorHole_C", + "type": "EST_ResourceSink", + "name": "Hypertube Floor Hole", + "slug": "hypertube-floor-hole", + "icon": "resourcesink-hypertubefloorhole-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_FoundationPassthrough_Hypertube_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_4-4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_HazardBoxSkin_C": { + "className": "ResourceSink_HazardBoxSkin_C", + "type": "EST_ResourceSink", + "name": "Hazard Box - Personal Storage Skin", + "slug": "hazard-box-personal-storage-skin", + "icon": "resourcesink-hazardboxskin-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_StorageHazard_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_GoldenCup_C": { + "className": "ResourceSink_GoldenCup_C", + "type": "EST_ResourceSink", + "name": "'Employee of the Planet' Cup (purchase)", + "slug": "employee-of-the-planet-cup-purchase", + "icon": "resourcesink-goldencup-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "BP_EquipmentDescriptorCupGold_C", + "amount": 1.0 + } + ] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_GoldenCart_C": { + "className": "ResourceSink_GoldenCart_C", + "type": "EST_ResourceSink", + "name": "Golden FICSIT Factory Cart™", + "slug": "golden-ficsit-factory-carttm", + "icon": "resourcesink-goldencart-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_GoldenCart_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_GoldenCart_Unlock_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_FrameWindows_C": { + "className": "ResourceSink_FrameWindows_C", + "type": "EST_ResourceSink", + "name": "Steel-Framed Windows", + "slug": "steel-framed-windows", + "icon": "resourcesink-framewindows-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 6.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Wall_Window_Thin_8x4_01_C", + "Recipe_Wall_Window_Thin_8x4_02_C", + "Recipe_Wall_Window_8x4_06_C", + "Recipe_Wall_Window_8x4_07_C", + "Recipe_Wall_Window_8x4_05_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Quartz_1_2_C", + "Schematic_3-4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_FramePillarSet_C": { + "className": "ResourceSink_FramePillarSet_C", + "type": "EST_ResourceSink", + "name": "Frame Pillar Set", + "slug": "frame-pillar-set", + "icon": "resourcesink-framepillarset-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PillarMiddle_Frame_C", + "Recipe_PillarBase_C", + "Recipe_Pillar_Small_Frame_C", + "Recipe_PillarBase_Small_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Fences_C": { + "className": "ResourceSink_Fences_C", + "type": "EST_ResourceSink", + "name": "Construction Fences", + "slug": "construction-fences", + "icon": "resourcesink-fences-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_TarpFence_C", + "Recipe_ChainLinkFence_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_FactoryBarrier2_C": { + "className": "ResourceSink_FactoryBarrier2_C", + "type": "EST_ResourceSink", + "name": "Metal Barriers", + "slug": "metal-barriers", + "icon": "resourcesink-factorybarrier2-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Barrier_Low_01_C", + "Recipe_Barrier_Tall_01_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_FactoryBarrier_C": { + "className": "ResourceSink_FactoryBarrier_C", + "type": "EST_ResourceSink", + "name": "Road Barrier", + "slug": "road-barrier", + "icon": "resourcesink-factorybarrier-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Concrete_Barrier_01_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_DisplaySigns_C": { + "className": "ResourceSink_DisplaySigns_C", + "type": "EST_ResourceSink", + "name": "Display Sign Bundle", + "slug": "display-sign-bundle", + "icon": "resourcesink-displaysigns-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_StandaloneWidgetSign_Medium_C", + "Recipe_StandaloneWidgetSign_Portrait_C", + "Recipe_StandaloneWidgetSign_Square_Small_C", + "Recipe_StandaloneWidgetSign_Square_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Quartz_1_1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_ConveyorLiftHole_C": { + "className": "ResourceSink_ConveyorLiftHole_C", + "type": "EST_ResourceSink", + "name": "Conveyor Lift Floor Hole", + "slug": "conveyor-lift-floor-hole", + "icon": "resourcesink-conveyorlifthole-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_FoundationPassthrough_Lift_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_ConcretePillarSet_C": { + "className": "ResourceSink_ConcretePillarSet_C", + "type": "EST_ResourceSink", + "name": "Concrete Pillar Set", + "slug": "concrete-pillar-set", + "icon": "resourcesink-concretepillarset-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PillarMiddle_Concrete_C", + "Recipe_PillarBase_C", + "Recipe_Pillar_Small_Concrete_C", + "Recipe_PillarBase_Small_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Catwalks_C": { + "className": "ResourceSink_Catwalks_C", + "type": "EST_ResourceSink", + "name": "Modern Catwalks", + "slug": "modern-catwalks", + "icon": "resourcesink-catwalks-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Catwalk_Straight_C", + "Recipe_Catwalk_Cross_C", + "Recipe_Catwalk_T_C", + "Recipe_Catwalk_Turn_C", + "Recipe_Catwalk_Ramp_C", + "Recipe_Catwalk_Stairs_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Boombox_C": { + "className": "ResourceSink_Boombox_C", + "type": "EST_ResourceSink", + "name": "Boombox (purchase)", + "slug": "boombox-purchase", + "icon": "resourcesink-boombox-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_BoomBox_C", + "amount": 1.0 + } + ] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_BillboardSigns_C": { + "className": "ResourceSink_BillboardSigns_C", + "type": "EST_ResourceSink", + "name": "Billboard Set", + "slug": "billboard-set", + "icon": "resourcesink-billboardsigns-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 10.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_StandaloneWidgetSign_Large_C", + "Recipe_StandaloneWidgetSign_Huge_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Quartz_1_1_C", + "Schematic_4-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_BeamSet_C": { + "className": "ResourceSink_BeamSet_C", + "type": "EST_ResourceSink", + "name": "Structural Beam Pack", + "slug": "structural-beam-pack", + "icon": "resourcesink-beamset-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 4.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Beam_C", + "Recipe_Beam_Painted_C", + "Recipe_Beam_Support_C", + "Recipe_Beam_Connector_C", + "Recipe_Beam_Connector_Double_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Purchasable_HardDrive_C": { + "className": "ResourceSink_Purchasable_HardDrive_C", + "type": "EST_ResourceSink", + "name": "Hard Drive (purchase)", + "slug": "hard-drive-purchase", + "icon": "resourcesink-purchasable-harddrive-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 100.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_HardDrive_C", + "amount": 1.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_8-5_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_RifleAmmoTurbo_C": { + "className": "ResourceSink_RifleAmmoTurbo_C", + "type": "EST_ResourceSink", + "name": "Turbo Rifle Ammo Pack (purchase)", + "slug": "turbo-rifle-ammo-pack-purchase", + "icon": "resourcesink-rifleammoturbo-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_CartridgeChaos_C", + "amount": 250.0 + } + ] + }, + "requiredSchematics": [ + "Research_Sulfur_5_2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_RifleAmmoHoming_C": { + "className": "ResourceSink_RifleAmmoHoming_C", + "type": "EST_ResourceSink", + "name": "Homing Rifle Ammo Pack (purchase)", + "slug": "homing-rifle-ammo-pack-purchase", + "icon": "resourcesink-rifleammohoming-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_CartridgeSmartProjectile_C", + "amount": 250.0 + } + ] + }, + "requiredSchematics": [ + "Research_Caterium_6_3_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_RebarStun_C": { + "className": "ResourceSink_RebarStun_C", + "type": "EST_ResourceSink", + "name": "Stun Rebar Pack (purchase)", + "slug": "stun-rebar-pack-purchase", + "icon": "resourcesink-rebarstun-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Rebar_Stunshot_C", + "amount": 50.0 + } + ] + }, + "requiredSchematics": [ + "Research_Caterium_3_2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_RebarShatter_C": { + "className": "ResourceSink_RebarShatter_C", + "type": "EST_ResourceSink", + "name": "Shatter Rebar Pack (purchase)", + "slug": "shatter-rebar-pack-purchase", + "icon": "resourcesink-rebarshatter-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Rebar_Spreadshot_C", + "amount": 50.0 + } + ] + }, + "requiredSchematics": [ + "Research_Quartz_2_1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_RebarExplosive_C": { + "className": "ResourceSink_RebarExplosive_C", + "type": "EST_ResourceSink", + "name": "Explosive Rebar Pack (purchase)", + "slug": "explosive-rebar-pack-purchase", + "icon": "resourcesink-rebarexplosive-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Rebar_Explosive_C", + "amount": 50.0 + } + ] + }, + "requiredSchematics": [ + "Research_Sulfur_4_2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_RadiationFilters_C": { + "className": "ResourceSink_RadiationFilters_C", + "type": "EST_ResourceSink", + "name": "Radiation Filters (purchase)", + "slug": "radiation-filters-purchase", + "icon": "resourcesink-radiationfilters-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_HazmatFilter_C", + "amount": 10.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_7-3_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_NobeliskPulse_C": { + "className": "ResourceSink_NobeliskPulse_C", + "type": "EST_ResourceSink", + "name": "Pulse Nobelisk Pack (purchase)", + "slug": "pulse-nobelisk-pack-purchase", + "icon": "resourcesink-nobeliskpulse-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_NobeliskShockwave_C", + "amount": 25.0 + } + ] + }, + "requiredSchematics": [ + "Research_Quartz_3_4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_NobeliskGas_C": { + "className": "ResourceSink_NobeliskGas_C", + "type": "EST_ResourceSink", + "name": "Gas Nobelisk Pack (purchase)", + "slug": "gas-nobelisk-pack-purchase", + "icon": "resourcesink-nobeliskgas-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_NobeliskGas_C", + "amount": 25.0 + } + ] + }, + "requiredSchematics": [ + "Research_Mycelia_8_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_NobeliskCluster_C": { + "className": "ResourceSink_NobeliskCluster_C", + "type": "EST_ResourceSink", + "name": "Cluster Nobelisk Pack (purchase)", + "slug": "cluster-nobelisk-pack-purchase", + "icon": "resourcesink-nobeliskcluster-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_NobeliskCluster_C", + "amount": 25.0 + } + ] + }, + "requiredSchematics": [ + "Research_Sulfur_4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_HealthPack_C": { + "className": "ResourceSink_HealthPack_C", + "type": "EST_ResourceSink", + "name": "Health Pack (purchase)", + "slug": "health-pack-purchase", + "icon": "resourcesink-healthpack-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Medkit_C", + "amount": 5.0 + } + ] + }, + "requiredSchematics": [ + "Research_AOrgans_2_C", + "Research_Nutrients_4_C", + "Research_Mycelia_5_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_GasFilters_C": { + "className": "ResourceSink_GasFilters_C", + "type": "EST_ResourceSink", + "name": "Gas Filters (purchase)", + "slug": "gas-filters-purchase", + "icon": "resourcesink-gasfilters-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Filter_C", + "amount": 25.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_6-4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Explosives_C": { + "className": "ResourceSink_Explosives_C", + "type": "EST_ResourceSink", + "name": "Nobelisk Pack (purchase)", + "slug": "nobelisk-pack-purchase", + "icon": "resourcesink-explosives-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_NobeliskExplosive_C", + "amount": 25.0 + } + ] + }, + "requiredSchematics": [ + "Research_Sulfur_3_1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_CoffeeCup_C": { + "className": "ResourceSink_CoffeeCup_C", + "type": "EST_ResourceSink", + "name": "FICSIT™ Coffee Cup (purchase)", + "slug": "ficsittm-coffee-cup-purchase", + "icon": "resourcesink-coffeecup-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "BP_EquipmentDescriptorCup_C", + "amount": 1.0 + } + ] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_AmmoPack_C": { + "className": "ResourceSink_AmmoPack_C", + "type": "EST_ResourceSink", + "name": "Iron Rebar Pack (purchase)", + "slug": "iron-rebar-pack-purchase", + "icon": "resourcesink-ammopack-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_SpikedRebar_C", + "amount": 50.0 + } + ] + }, + "requiredSchematics": [ + "Research_ACarapace_2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_AdvancedAmmoPack_C": { + "className": "ResourceSink_AdvancedAmmoPack_C", + "type": "EST_ResourceSink", + "name": "Rifle Ammo Pack (purchase)", + "slug": "rifle-ammo-pack-purchase", + "icon": "resourcesink-advancedammopack-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_CartridgeStandard_C", + "amount": 250.0 + } + ] + }, + "requiredSchematics": [ + "Research_Sulfur_4_1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Wire_C": { + "className": "ResourceSink_Wire_C", + "type": "EST_ResourceSink", + "name": "Wire (purchase)", + "slug": "wire-purchase", + "icon": "resourcesink-wire-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Wire_C", + "amount": 500.0 + } + ] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Screw_C": { + "className": "ResourceSink_Screw_C", + "type": "EST_ResourceSink", + "name": "Screw (purchase)", + "slug": "screw-purchase", + "icon": "resourcesink-screw-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_IronScrew_C", + "amount": 500.0 + } + ] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Rod_C": { + "className": "ResourceSink_Rod_C", + "type": "EST_ResourceSink", + "name": "Iron Rod (purchase)", + "slug": "iron-rod-purchase", + "icon": "resourcesink-rod-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_IronRod_C", + "amount": 200.0 + } + ] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_QuartzCrystal_C": { + "className": "ResourceSink_QuartzCrystal_C", + "type": "EST_ResourceSink", + "name": "Quartz Crystal (purchase)", + "slug": "quartz-crystal-purchase", + "icon": "resourcesink-quartzcrystal-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_QuartzCrystal_C", + "amount": 200.0 + } + ] + }, + "requiredSchematics": [ + "Research_Quartz_1_1_C", + "Schematic_7-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Plate_C": { + "className": "ResourceSink_Plate_C", + "type": "EST_ResourceSink", + "name": "Iron Plate (purchase)", + "slug": "iron-plate-purchase", + "icon": "resourcesink-plate-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_IronPlate_C", + "amount": 200.0 + } + ] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Concrete_C": { + "className": "ResourceSink_Concrete_C", + "type": "EST_ResourceSink", + "name": "Concrete (purchase)", + "slug": "concrete-purchase", + "icon": "resourcesink-concrete-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Cement_C", + "amount": 500.0 + } + ] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Cable_C": { + "className": "ResourceSink_Cable_C", + "type": "EST_ResourceSink", + "name": "Cable (purchase)", + "slug": "cable-purchase", + "icon": "resourcesink-cable-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Cable_C", + "amount": 200.0 + } + ] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Biomass_C": { + "className": "ResourceSink_Biomass_C", + "type": "EST_ResourceSink", + "name": "Biomass (purchase)", + "slug": "biomass-purchase", + "icon": "resourcesink-biomass-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_GenericBiomass_C", + "amount": 200.0 + } + ] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Rotor_C": { + "className": "ResourceSink_Rotor_C", + "type": "EST_ResourceSink", + "name": "Rotor (purchase)", + "slug": "rotor-purchase", + "icon": "resourcesink-rotor-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Rotor_C", + "amount": 100.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_2-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_ReinforcedIronPlate_C": { + "className": "ResourceSink_ReinforcedIronPlate_C", + "type": "EST_ResourceSink", + "name": "Reinforced Iron Plate (purchase)", + "slug": "reinforced-iron-plate-purchase", + "icon": "resourcesink-reinforcedironplate-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 100.0 + } + ] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Quickwire_C": { + "className": "ResourceSink_Quickwire_C", + "type": "EST_ResourceSink", + "name": "Quickwire (purchase)", + "slug": "quickwire-purchase", + "icon": "resourcesink-quickwire-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 500.0 + } + ] + }, + "requiredSchematics": [ + "Research_Caterium_2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_ModularFrame_C": { + "className": "ResourceSink_ModularFrame_C", + "type": "EST_ResourceSink", + "name": "Modular Frame (purchase)", + "slug": "modular-frame-purchase", + "icon": "resourcesink-modularframe-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 4.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_ModularFrame_C", + "amount": 50.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_2-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Fabric_C": { + "className": "ResourceSink_Fabric_C", + "type": "EST_ResourceSink", + "name": "Fabric (purchase)", + "slug": "fabric-purchase", + "icon": "resourcesink-fabric-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Fabric_C", + "amount": 100.0 + } + ] + }, + "requiredSchematics": [ + "Research_Mycelia_2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_CopperSheet_C": { + "className": "ResourceSink_CopperSheet_C", + "type": "EST_ResourceSink", + "name": "Copper Sheet (purchase)", + "slug": "copper-sheet-purchase", + "icon": "resourcesink-coppersheet-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_CopperSheet_C", + "amount": 200.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_2-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Biofuel_C": { + "className": "ResourceSink_Biofuel_C", + "type": "EST_ResourceSink", + "name": "Biofuel (purchase)", + "slug": "biofuel-purchase", + "icon": "resourcesink-biofuel-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Biofuel_C", + "amount": 200.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_2-2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_AILimiter_C": { + "className": "ResourceSink_AILimiter_C", + "type": "EST_ResourceSink", + "name": "AI Limiter (purchase)", + "slug": "ai-limiter-purchase", + "icon": "resourcesink-ailimiter-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_CircuitBoardHighSpeed_C", + "amount": 100.0 + } + ] + }, + "requiredSchematics": [ + "Research_Caterium_4_1_C", + "Schematic_7-4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_SteelPipe_C": { + "className": "ResourceSink_SteelPipe_C", + "type": "EST_ResourceSink", + "name": "Steel Pipe (purchase)", + "slug": "steel-pipe-purchase", + "icon": "resourcesink-steelpipe-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_SteelPipe_C", + "amount": 200.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_3-4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_SteelBeam_C": { + "className": "ResourceSink_SteelBeam_C", + "type": "EST_ResourceSink", + "name": "Steel Beam (purchase)", + "slug": "steel-beam-purchase", + "icon": "resourcesink-steelbeam-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_SteelPlate_C", + "amount": 200.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_3-4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_BlackPowder_C": { + "className": "ResourceSink_BlackPowder_C", + "type": "EST_ResourceSink", + "name": "Black Powder (purchase)", + "slug": "black-powder-purchase", + "icon": "resourcesink-blackpowder-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Gunpowder_C", + "amount": 200.0 + } + ] + }, + "requiredSchematics": [ + "Research_Sulfur_1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Stator_C": { + "className": "ResourceSink_Stator_C", + "type": "EST_ResourceSink", + "name": "Stator (purchase)", + "slug": "stator-purchase", + "icon": "resourcesink-stator-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Stator_C", + "amount": 100.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_4-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_EncasedIndustrialBeam_C": { + "className": "ResourceSink_EncasedIndustrialBeam_C", + "type": "EST_ResourceSink", + "name": "Encased Industrial Beam (purchase)", + "slug": "encased-industrial-beam-purchase", + "icon": "resourcesink-encasedindustrialbeam-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 100.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_4-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_CompactedCoal_C": { + "className": "ResourceSink_CompactedCoal_C", + "type": "EST_ResourceSink", + "name": "Compacted Coal (purchase)", + "slug": "compacted-coal-purchase", + "icon": "resourcesink-compactedcoal-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_CompactedCoal_C", + "amount": 100.0 + } + ] + }, + "requiredSchematics": [ + "Research_Sulfur_CompactedCoal_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_SmokelessPowder_C": { + "className": "ResourceSink_SmokelessPowder_C", + "type": "EST_ResourceSink", + "name": "Smokeless Powder (purchase)", + "slug": "smokeless-powder-purchase", + "icon": "resourcesink-smokelesspowder-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_GunpowderMK2_C", + "amount": 100.0 + } + ] + }, + "requiredSchematics": [ + "Research_Sulfur_3_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Rubber_C": { + "className": "ResourceSink_Rubber_C", + "type": "EST_ResourceSink", + "name": "Rubber (purchase)", + "slug": "rubber-purchase", + "icon": "resourcesink-rubber-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Rubber_C", + "amount": 200.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Plastic_C": { + "className": "ResourceSink_Plastic_C", + "type": "EST_ResourceSink", + "name": "Plastic (purchase)", + "slug": "plastic-purchase", + "icon": "resourcesink-plastic-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Plastic_C", + "amount": 200.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Motor_C": { + "className": "ResourceSink_Motor_C", + "type": "EST_ResourceSink", + "name": "Motor (purchase)", + "slug": "motor-purchase", + "icon": "resourcesink-motor-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Motor_C", + "amount": 50.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_4-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_HighSpeedConnector_C": { + "className": "ResourceSink_HighSpeedConnector_C", + "type": "EST_ResourceSink", + "name": "High-Speed Connector (purchase)", + "slug": "high-speed-connector-purchase", + "icon": "resourcesink-highspeedconnector-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 4.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_HighSpeedConnector_C", + "amount": 100.0 + } + ] + }, + "requiredSchematics": [ + "Research_Caterium_5_C", + "Schematic_7-4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_EmptyCanister_C": { + "className": "ResourceSink_EmptyCanister_C", + "type": "EST_ResourceSink", + "name": "Empty Canister (purchase)", + "slug": "empty-canister-purchase", + "icon": "resourcesink-emptycanister-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_FluidCanister_C", + "amount": 100.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_CrystalOscillator_C": { + "className": "ResourceSink_CrystalOscillator_C", + "type": "EST_ResourceSink", + "name": "Crystal Oscillator (purchase)", + "slug": "crystal-oscillator-purchase", + "icon": "resourcesink-crystaloscillator-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 4.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_CrystalOscillator_C", + "amount": 100.0 + } + ] + }, + "requiredSchematics": [ + "Research_Quartz_2_C", + "Schematic_7-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_CircuitBoard_C": { + "className": "ResourceSink_CircuitBoard_C", + "type": "EST_ResourceSink", + "name": "Circuit Board (purchase)", + "slug": "circuit-board-purchase", + "icon": "resourcesink-circuitboard-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_CircuitBoard_C", + "amount": 200.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_PackagedTurboFuel_C": { + "className": "ResourceSink_PackagedTurboFuel_C", + "type": "EST_ResourceSink", + "name": "Packaged Turbofuel (purchase)", + "slug": "packaged-turbofuel-purchase", + "icon": "resourcesink-packagedturbofuel-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 4.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_TurboFuel_C", + "amount": 100.0 + } + ] + }, + "requiredSchematics": [ + "Research_Sulfur_TurboFuel_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_PackagedFuel_C": { + "className": "ResourceSink_PackagedFuel_C", + "type": "EST_ResourceSink", + "name": "Packaged Fuel (purchase)", + "slug": "packaged-fuel-purchase", + "icon": "resourcesink-packagedfuel-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Fuel_C", + "amount": 100.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_5-4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_PackagedBiofuel_C": { + "className": "ResourceSink_PackagedBiofuel_C", + "type": "EST_ResourceSink", + "name": "Packaged Liquid Biofuel (purchase)", + "slug": "packaged-liquid-biofuel-purchase", + "icon": "resourcesink-packagedbiofuel-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_PackagedBiofuel_C", + "amount": 100.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_5-4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_HeavyModularFrame_C": { + "className": "ResourceSink_HeavyModularFrame_C", + "type": "EST_ResourceSink", + "name": "Heavy Modular Frame (purchase)", + "slug": "heavy-modular-frame-purchase", + "icon": "resourcesink-heavymodularframe-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 6.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 50.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_5-2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Computer_C": { + "className": "ResourceSink_Computer_C", + "type": "EST_ResourceSink", + "name": "Computer (purchase)", + "slug": "computer-purchase", + "icon": "resourcesink-computer-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 6.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Computer_C", + "amount": 50.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_5-2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_TurboMotor_C": { + "className": "ResourceSink_TurboMotor_C", + "type": "EST_ResourceSink", + "name": "Turbo Motor (purchase)", + "slug": "turbo-motor-purchase", + "icon": "resourcesink-turbomotor-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 8.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_MotorLightweight_C", + "amount": 50.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_8-4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_SuperComputer_C": { + "className": "ResourceSink_SuperComputer_C", + "type": "EST_ResourceSink", + "name": "Supercomputer (purchase)", + "slug": "supercomputer-purchase", + "icon": "resourcesink-supercomputer-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 8.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_ComputerSuper_C", + "amount": 50.0 + } + ] + }, + "requiredSchematics": [ + "Research_Caterium_6_1_C", + "Schematic_7-4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Silica_C": { + "className": "ResourceSink_Silica_C", + "type": "EST_ResourceSink", + "name": "Silica (purchase)", + "slug": "silica-purchase", + "icon": "resourcesink-silica-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Silica_C", + "amount": 200.0 + } + ] + }, + "requiredSchematics": [ + "Research_Quartz_1_2_C", + "Schematic_7-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_RadioControlUnit_C": { + "className": "ResourceSink_RadioControlUnit_C", + "type": "EST_ResourceSink", + "name": "Radio Control Unit (purchase)", + "slug": "radio-control-unit-purchase", + "icon": "resourcesink-radiocontrolunit-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 7.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_ModularFrameLightweight_C", + "amount": 50.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_7-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_HeatSink_C": { + "className": "ResourceSink_HeatSink_C", + "type": "EST_ResourceSink", + "name": "Heat Sink (purchase)", + "slug": "heat-sink-purchase", + "icon": "resourcesink-heatsink-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_AluminumPlateReinforced_C", + "amount": 100.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_8-2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Battery_C": { + "className": "ResourceSink_Battery_C", + "type": "EST_ResourceSink", + "name": "Battery (purchase)", + "slug": "battery-purchase", + "icon": "resourcesink-battery-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Battery_C", + "amount": 200.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_7-4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_AluminumCasing_C": { + "className": "ResourceSink_AluminumCasing_C", + "type": "EST_ResourceSink", + "name": "Aluminum Casing (purchase)", + "slug": "aluminum-casing-purchase", + "icon": "resourcesink-aluminumcasing-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_AluminumCasing_C", + "amount": 200.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_7-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_AlcladSheet_C": { + "className": "ResourceSink_AlcladSheet_C", + "type": "EST_ResourceSink", + "name": "Alclad Aluminum Sheet (purchase)", + "slug": "alclad-aluminum-sheet-purchase", + "icon": "resourcesink-alcladsheet-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_AluminumPlate_C", + "amount": 200.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_7-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_PressureConversionCube_C": { + "className": "ResourceSink_PressureConversionCube_C", + "type": "EST_ResourceSink", + "name": "Pressure Conversion Cube (purchase)", + "slug": "pressure-conversion-cube-purchase", + "icon": "resourcesink-pressureconversioncube-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 8.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_PressureConversionCube_C", + "amount": 50.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_8-5_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_FusedModularFrame_C": { + "className": "ResourceSink_FusedModularFrame_C", + "type": "EST_ResourceSink", + "name": "Fused Modular Frame (purchase)", + "slug": "fused-modular-frame-purchase", + "icon": "resourcesink-fusedmodularframe-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 7.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_ModularFrameFused_C", + "amount": 50.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_8-2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_EmptyFluidTank_C": { + "className": "ResourceSink_EmptyFluidTank_C", + "type": "EST_ResourceSink", + "name": "Empty Fluid Tank (purchase)", + "slug": "empty-fluid-tank-purchase", + "icon": "resourcesink-emptyfluidtank-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_GasTank_C", + "amount": 100.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_8-2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_ElectromagneticControlRod_C": { + "className": "ResourceSink_ElectromagneticControlRod_C", + "type": "EST_ResourceSink", + "name": "Electromagnetic Control Rod (purchase)", + "slug": "electromagnetic-control-rod-purchase", + "icon": "resourcesink-electromagneticcontrolrod-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 4.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_ElectromagneticControlRod_C", + "amount": 100.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_8-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_CopperPowder_C": { + "className": "ResourceSink_CopperPowder_C", + "type": "EST_ResourceSink", + "name": "Copper Powder (purchase)", + "slug": "copper-powder-purchase", + "icon": "resourcesink-copperpowder-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_CopperDust_C", + "amount": 500.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_8-5_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_CoolingSystem_C": { + "className": "ResourceSink_CoolingSystem_C", + "type": "EST_ResourceSink", + "name": "Cooling System (purchase)", + "slug": "cooling-system-purchase", + "icon": "resourcesink-coolingsystem-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_CoolingSystem_C", + "amount": 100.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_8-2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_TimeCrystal_C": { + "className": "ResourceSink_TimeCrystal_C", + "type": "EST_ResourceSink", + "name": "Time Crystal (purchase)", + "slug": "time-crystal-purchase", + "icon": "resourcesink-timecrystal-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_TimeCrystal_C", + "amount": 200.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_9-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_SyntheticPowerShard_C": { + "className": "ResourceSink_SyntheticPowerShard_C", + "type": "EST_ResourceSink", + "name": "Synthetic Power Shard (purchase)", + "slug": "synthetic-power-shard-purchase", + "icon": "resourcesink-syntheticpowershard-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 10.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_CrystalShard_C", + "amount": 10.0 + } + ] + }, + "requiredSchematics": [ + "Research_PowerSlugs_6_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_SuperPositionOscillator_C": { + "className": "ResourceSink_SuperPositionOscillator_C", + "type": "EST_ResourceSink", + "name": "Superposition Oscillator (purchase)", + "slug": "superposition-oscillator-purchase", + "icon": "resourcesink-superpositionoscillator-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 9.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_QuantumOscillator_C", + "amount": 50.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_9-2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_RocketFuel_C": { + "className": "ResourceSink_RocketFuel_C", + "type": "EST_ResourceSink", + "name": "Packaged Rocket Fuel (purchase)", + "slug": "packaged-rocket-fuel-purchase", + "icon": "resourcesink-rocketfuel-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 6.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_PackagedRocketFuel_C", + "amount": 100.0 + } + ] + }, + "requiredSchematics": [ + "Research_Sulfur_RocketFuel_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_NeuralQuantumProcessor_C": { + "className": "ResourceSink_NeuralQuantumProcessor_C", + "type": "EST_ResourceSink", + "name": "Neural-Quantum Processor (purchase)", + "slug": "neural-quantum-processor-purchase", + "icon": "resourcesink-neuralquantumprocessor-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 10.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_TemporalProcessor_C", + "amount": 50.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_9-2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_IonizedFuel_C": { + "className": "ResourceSink_IonizedFuel_C", + "type": "EST_ResourceSink", + "name": "Packaged Ionized Fuel (purchase)", + "slug": "packaged-ionized-fuel-purchase", + "icon": "resourcesink-ionizedfuel-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 8.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_PackagedIonizedFuel_C", + "amount": 100.0 + } + ] + }, + "requiredSchematics": [ + "Research_Sulfur_IonizedFuel_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_FicsiteTrigon_C": { + "className": "ResourceSink_FicsiteTrigon_C", + "type": "EST_ResourceSink", + "name": "Ficsite Trigon (purchase)", + "slug": "ficsite-trigon-purchase", + "icon": "resourcesink-ficsitetrigon-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_FicsiteMesh_C", + "amount": 200.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_9-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Zones_FoundationPatterns_C": { + "className": "ResourceSink_Zones_FoundationPatterns_C", + "type": "EST_ResourceSink", + "name": "Factory Zone Patterns", + "slug": "factory-zone-patterns", + "icon": "resourcesink-zones-foundationpatterns-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Pattern_ZoneFull_C", + "Recipe_Pattern_ZoneHalf_C", + "Recipe_Pattern_ZoneQuarter_C", + "Recipe_Pattern_ZoneLine_C", + "Recipe_Pattern_Remover_Zones_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_UnPainted_PaintFinish_C": { + "className": "ResourceSink_UnPainted_PaintFinish_C", + "type": "EST_ResourceSink", + "name": "Unpainted Finish", + "slug": "unpainted-finish", + "icon": "resourcesink-unpainted-paintfinish-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PaintFinish_UnPainted_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Pathways_FoundationPatterns_C": { + "className": "ResourceSink_Pathways_FoundationPatterns_C", + "type": "EST_ResourceSink", + "name": "Pathway Patterns", + "slug": "pathway-patterns", + "icon": "resourcesink-pathways-foundationpatterns-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 6.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Pattern_PathStraight_C", + "Recipe_Pattern_PathCorner_C", + "Recipe_Pattern_PathSplit_C", + "Recipe_Pattern_PathCross_C", + "Recipe_Pattern_PathPioneer_C", + "Recipe_Pattern_PathCart_C", + "Recipe_Pattern_PathZebra_C", + "Recipe_Pattern_Remover_Paths_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Number_FoundationPatterns_C": { + "className": "ResourceSink_Number_FoundationPatterns_C", + "type": "EST_ResourceSink", + "name": "Number Patterns", + "slug": "number-patterns", + "icon": "resourcesink-number-foundationpatterns-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Pattern_Number0_C", + "Recipe_Pattern_Number1_C", + "Recipe_Pattern_Number2_C", + "Recipe_Pattern_Number3_C", + "Recipe_Pattern_Number4_C", + "Recipe_Pattern_Number5_C", + "Recipe_Pattern_Number6_C", + "Recipe_Pattern_Number7_C", + "Recipe_Pattern_Number8_C", + "Recipe_Pattern_Number9_C", + "Recipe_Pattern_Remover_Numbers_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_IconsTransport_FoundationPatterns_C": { + "className": "ResourceSink_IconsTransport_FoundationPatterns_C", + "type": "EST_ResourceSink", + "name": "Transportation Icon Patterns", + "slug": "transportation-icon-patterns", + "icon": "resourcesink-iconstransport-foundationpatterns-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Pattern_Icon_Tractor_C", + "Recipe_Pattern_Icon_Truck_C", + "Recipe_Pattern_Icon_Explorer_C", + "Recipe_Pattern_Icon_Cart_C", + "Recipe_Pattern_NO_Cart_C", + "Recipe_Pattern_Icon_Parking_C", + "Recipe_Pattern_NO_Parking_C", + "Recipe_Pattern_FullZebra_C", + "Recipe_Pattern_Remover_Icons_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_IconsFactory_FoundationPatterns_C": { + "className": "ResourceSink_IconsFactory_FoundationPatterns_C", + "type": "EST_ResourceSink", + "name": "Factory Icon Patterns", + "slug": "factory-icon-patterns", + "icon": "resourcesink-iconsfactory-foundationpatterns-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Pattern_Icon_Factory_C", + "Recipe_Pattern_Icon_Power_C", + "Recipe_Pattern_Icon_Storage_C", + "Recipe_Pattern_Icon_Nuclear_C", + "Recipe_Pattern_Icon_Liquid_C", + "Recipe_Pattern_Icon_StopCross_C", + "Recipe_Pattern_Icon_Pioneer_C", + "Recipe_Pattern_NO_Pioneer_C", + "Recipe_Pattern_Remover_Icons_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_FullLines_FoundationPatterns_C": { + "className": "ResourceSink_FullLines_FoundationPatterns_C", + "type": "EST_ResourceSink", + "name": "Solid Line Patterns", + "slug": "solid-line-patterns", + "icon": "resourcesink-fulllines-foundationpatterns-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Pattern_LineCentre_C", + "Recipe_Pattern_LineCentreCorner_C", + "Recipe_Pattern_LineSplit_C", + "Recipe_Pattern_LineCross_C", + "Recipe_Pattern_LineSide_C", + "Recipe_Pattern_LineSideCorner_C", + "Recipe_Pattern_LineDouble_C", + "Recipe_Pattern_Remover_Lines_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_DotLines_FoundationPatterns_C": { + "className": "ResourceSink_DotLines_FoundationPatterns_C", + "type": "EST_ResourceSink", + "name": "Dotted Line Patterns", + "slug": "dotted-line-patterns", + "icon": "resourcesink-dotlines-foundationpatterns-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 4.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Pattern_DottedCentre_C", + "Recipe_Pattern_DottedCentreCorner_C", + "Recipe_Pattern_DottedSplit_C", + "Recipe_Pattern_DottedCross_C", + "Recipe_Pattern_DottedSide_C", + "Recipe_Pattern_DottedSideCorner_C", + "Recipe_Pattern_DottedDouble_C", + "Recipe_Pattern_Remover_Lines_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Copper_PaintFinish_C": { + "className": "ResourceSink_Copper_PaintFinish_C", + "type": "EST_ResourceSink", + "name": "Copper Paint Finish", + "slug": "copper-paint-finish", + "icon": "resourcesink-copper-paintfinish-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PaintFinish_Copper_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Chrome_PaintFinish_C": { + "className": "ResourceSink_Chrome_PaintFinish_C", + "type": "EST_ResourceSink", + "name": "Chrome Paint Finish", + "slug": "chrome-paint-finish", + "icon": "resourcesink-chrome-paintfinish-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PaintFinish_Chrome_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Caterium_PaintFinish_C": { + "className": "ResourceSink_Caterium_PaintFinish_C", + "type": "EST_ResourceSink", + "name": "Caterium Paint Finish", + "slug": "caterium-paint-finish", + "icon": "resourcesink-caterium-paintfinish-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 10.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PaintFinish_Caterium_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Caterium_2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_CarbonSteel_PaintFinish_C": { + "className": "ResourceSink_CarbonSteel_PaintFinish_C", + "type": "EST_ResourceSink", + "name": "Carbon Steel Finish", + "slug": "carbon-steel-finish", + "icon": "resourcesink-carbonsteel-paintfinish-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 8.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PaintFinish_CarbonSteel_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Arrows_FoundationPatterns_C": { + "className": "ResourceSink_Arrows_FoundationPatterns_C", + "type": "EST_ResourceSink", + "name": "Arrow Patterns", + "slug": "arrow-patterns", + "icon": "resourcesink-arrows-foundationpatterns-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Pattern_ArrowStraight_C", + "Recipe_Pattern_ArrowLeft_C", + "Recipe_Pattern_ArrowRight_C", + "Recipe_Pattern_ArrowBack_C", + "Recipe_Pattern_NO_ArrowStraight_C", + "Recipe_Pattern_NO_ArrowLeft_C", + "Recipe_Pattern_NO_ArrowRight_C", + "Recipe_Pattern_Remover_Arrows_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "Schematic_Sanctum2_C": { + "className": "Schematic_Sanctum2_C", + "type": "EST_ResourceSink", + "name": "Sanctum 2 Boombox Tape", + "slug": "sanctum-2-boombox-tape", + "icon": "schematic-sanctum2-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_Sanctum_C": { + "className": "Schematic_Sanctum_C", + "type": "EST_ResourceSink", + "name": "Sanctum Boombox Tape", + "slug": "sanctum-boombox-tape", + "icon": "schematic-sanctum-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_LeMichael_C": { + "className": "Schematic_LeMichael_C", + "type": "EST_ResourceSink", + "name": "Le Michael Boombox Tape", + "slug": "le-michael-boombox-tape", + "icon": "schematic-lemichael-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_JoelSyntholm_C": { + "className": "Schematic_JoelSyntholm_C", + "type": "EST_ResourceSink", + "name": "Joel Syntholm Boombox Tape", + "slug": "joel-syntholm-boombox-tape", + "icon": "schematic-joelsyntholm-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_Goat_C": { + "className": "Schematic_Goat_C", + "type": "EST_ResourceSink", + "name": "Goat Music Boombox Tape", + "slug": "goat-music-boombox-tape", + "icon": "schematic-goat-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_AbsoluteFicsit_C": { + "className": "Schematic_AbsoluteFicsit_C", + "type": "EST_ResourceSink", + "name": "Absolute FICSIT Boombox Tape", + "slug": "absolute-ficsit-boombox-tape", + "icon": "schematic-absoluteficsit-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_Tutorial1_C": { + "className": "Schematic_Tutorial1_C", + "type": "EST_Tutorial", + "name": "HUB Upgrade 1", + "slug": "hub-upgrade-1", + "icon": "schematic-tutorial1-c", + "cost": [ + { + "item": "Desc_IronRod_C", + "amount": 10.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Workshop_C", + "Recipe_PortableMiner_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": false + }, + "Schematic_Tutorial1_5_C": { + "className": "Schematic_Tutorial1_5_C", + "type": "EST_Tutorial", + "name": "HUB Upgrade 2", + "slug": "hub-upgrade-2", + "icon": "schematic-tutorial1-5-c", + "cost": [ + { + "item": "Desc_IronRod_C", + "amount": 20.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 10.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_SmelterBasicMk1_C", + "Recipe_PowerLine_C", + "Recipe_IngotCopper_C", + "Recipe_Wire_C", + "Recipe_Cable_C" + ], + "scannerResources": [ + "Desc_OreCopper_C" + ], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_Tutorial1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": false + }, + "Schematic_Tutorial2_C": { + "className": "Schematic_Tutorial2_C", + "type": "EST_Tutorial", + "name": "HUB Upgrade 3", + "slug": "hub-upgrade-3", + "icon": "schematic-tutorial2-c", + "cost": [ + { + "item": "Desc_IronPlate_C", + "amount": 20.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 20.0 + }, + { + "item": "Desc_Wire_C", + "amount": 20.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_ConstructorMk1_C", + "Recipe_PowerPoleMk1_C", + "Recipe_Concrete_C", + "Recipe_Screw_C", + "Recipe_IronPlateReinforced_C" + ], + "scannerResources": [ + "Desc_Stone_C" + ], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_Tutorial1_5_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": false + }, + "Schematic_Tutorial3_C": { + "className": "Schematic_Tutorial3_C", + "type": "EST_Tutorial", + "name": "HUB Upgrade 4", + "slug": "hub-upgrade-4", + "icon": "schematic-tutorial3-c", + "cost": [ + { + "item": "Desc_IronPlate_C", + "amount": 75.0 + }, + { + "item": "Desc_Cable_C", + "amount": 20.0 + }, + { + "item": "Desc_Cement_C", + "amount": 10.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_ConveyorPole_C", + "Recipe_ConveyorBeltMk1_C" + ], + "scannerResources": [], + "inventorySlots": 3, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_Tutorial2_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": false + }, + "Schematic_Tutorial4_C": { + "className": "Schematic_Tutorial4_C", + "type": "EST_Tutorial", + "name": "HUB Upgrade 5", + "slug": "hub-upgrade-5", + "icon": "schematic-tutorial4-c", + "cost": [ + { + "item": "Desc_IronRod_C", + "amount": 75.0 + }, + { + "item": "Desc_Cable_C", + "amount": 50.0 + }, + { + "item": "Desc_Cement_C", + "amount": 20.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_MinerMk1_C", + "Recipe_StorageContainerMk1_C" + ], + "scannerResources": [], + "inventorySlots": 3, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_Tutorial3_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": false + }, + "Schematic_Tutorial5_C": { + "className": "Schematic_Tutorial5_C", + "type": "EST_Tutorial", + "name": "HUB Upgrade 6", + "slug": "hub-upgrade-6", + "icon": "schematic-tutorial5-c", + "cost": [ + { + "item": "Desc_IronRod_C", + "amount": 100.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 100.0 + }, + { + "item": "Desc_Wire_C", + "amount": 100.0 + }, + { + "item": "Desc_Cement_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_SpaceElevator_C", + "Recipe_Biomass_Wood_C", + "Recipe_Biomass_Leaves_C", + "Recipe_GeneratorBiomass_Automated_C" + ], + "scannerResources": [], + "inventorySlots": 3, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_Tutorial4_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": false + } + }, + "generators": { + "Desc_GeneratorCoal_C": { + "className": "Desc_GeneratorCoal_C", + "fuel": [ + "Desc_Coal_C", + "Desc_CompactedCoal_C", + "Desc_PetroleumCoke_C" + ], + "powerProduction": 75, + "powerProductionExponent": 1.6, + "waterToPowerRatio": 10.0 + }, + "Desc_GeneratorNuclear_C": { + "className": "Desc_GeneratorNuclear_C", + "fuel": [ + "Desc_NuclearFuelRod_C", + "Desc_PlutoniumFuelRod_C", + "Desc_FicsoniumFuelRod_C" + ], + "powerProduction": 2500, + "powerProductionExponent": 1.6, + "waterToPowerRatio": 1.6 + }, + "Desc_GeneratorFuel_C": { + "className": "Desc_GeneratorFuel_C", + "fuel": [ + "Desc_LiquidFuel_C", + "Desc_LiquidTurboFuel_C", + "Desc_LiquidBiofuel_C", + "Desc_RocketFuel_C", + "Desc_IonizedFuel_C" + ], + "powerProduction": 250, + "powerProductionExponent": 1.6, + "waterToPowerRatio": 0.0 + }, + "Desc_GeneratorBiomass_Automated_C": { + "className": "Desc_GeneratorBiomass_Automated_C", + "fuel": [ + "Desc_Leaves_C", + "Desc_Wood_C", + "Desc_Mycelia_C", + "Desc_GenericBiomass_C", + "Desc_Biofuel_C", + "Desc_PackagedBiofuel_C" + ], + "powerProduction": 30, + "powerProductionExponent": 1.6, + "waterToPowerRatio": 0.0 + } + }, + "resources": { + "Desc_OreIron_C": { + "item": "Desc_OreIron_C", + "pingColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + }, + "speed": 1 + }, + "Desc_Water_C": { + "item": "Desc_Water_C", + "pingColor": { + "r": 122, + "g": 176, + "b": 212, + "a": 0 + }, + "speed": 1 + }, + "Desc_Coal_C": { + "item": "Desc_Coal_C", + "pingColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + }, + "speed": 1 + }, + "Desc_NitrogenGas_C": { + "item": "Desc_NitrogenGas_C", + "pingColor": { + "r": 89, + "g": 89, + "b": 89, + "a": 0 + }, + "speed": 1 + }, + "Desc_Sulfur_C": { + "item": "Desc_Sulfur_C", + "pingColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + }, + "speed": 1 + }, + "Desc_SAM_C": { + "item": "Desc_SAM_C", + "pingColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + }, + "speed": 1 + }, + "Desc_OreBauxite_C": { + "item": "Desc_OreBauxite_C", + "pingColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + }, + "speed": 1 + }, + "Desc_OreGold_C": { + "item": "Desc_OreGold_C", + "pingColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + }, + "speed": 1 + }, + "Desc_OreCopper_C": { + "item": "Desc_OreCopper_C", + "pingColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + }, + "speed": 1 + }, + "Desc_RawQuartz_C": { + "item": "Desc_RawQuartz_C", + "pingColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + }, + "speed": 1 + }, + "Desc_Stone_C": { + "item": "Desc_Stone_C", + "pingColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + }, + "speed": 1 + }, + "Desc_OreUranium_C": { + "item": "Desc_OreUranium_C", + "pingColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + }, + "speed": 1 + }, + "Desc_LiquidOil_C": { + "item": "Desc_LiquidOil_C", + "pingColor": { + "r": 25, + "g": 0, + "b": 25, + "a": 0 + }, + "speed": 1 + } + }, + "miners": { + "Desc_OilPump_C": { + "className": "Desc_OilPump_C", + "allowedResources": [ + "Desc_LiquidOil_C" + ], + "allowLiquids": true, + "allowSolids": false, + "itemsPerCycle": 2000, + "extractCycleTime": 1.0 + }, + "Desc_MinerMk2_C": { + "className": "Desc_MinerMk2_C", + "allowedResources": [ + "Desc_OreIron_C", + "Desc_Coal_C", + "Desc_Sulfur_C", + "Desc_SAM_C", + "Desc_OreBauxite_C", + "Desc_OreGold_C", + "Desc_OreCopper_C", + "Desc_RawQuartz_C", + "Desc_Stone_C", + "Desc_OreUranium_C" + ], + "allowLiquids": false, + "allowSolids": true, + "itemsPerCycle": 1, + "extractCycleTime": 0.5 + }, + "Desc_FrackingExtractor_C": { + "className": "Desc_FrackingExtractor_C", + "allowedResources": [ + "Desc_LiquidOil_C", + "Desc_NitrogenGas_C", + "Desc_Water_C" + ], + "allowLiquids": true, + "allowSolids": false, + "itemsPerCycle": 1000, + "extractCycleTime": 1.0 + }, + "Desc_MinerMk3_C": { + "className": "Desc_MinerMk3_C", + "allowedResources": [ + "Desc_OreIron_C", + "Desc_Coal_C", + "Desc_Sulfur_C", + "Desc_SAM_C", + "Desc_OreBauxite_C", + "Desc_OreGold_C", + "Desc_OreCopper_C", + "Desc_RawQuartz_C", + "Desc_Stone_C", + "Desc_OreUranium_C" + ], + "allowLiquids": false, + "allowSolids": true, + "itemsPerCycle": 1, + "extractCycleTime": 0.25 + }, + "Desc_MinerMk1_C": { + "className": "Desc_MinerMk1_C", + "allowedResources": [ + "Desc_OreIron_C", + "Desc_Coal_C", + "Desc_Sulfur_C", + "Desc_SAM_C", + "Desc_OreBauxite_C", + "Desc_OreGold_C", + "Desc_OreCopper_C", + "Desc_RawQuartz_C", + "Desc_Stone_C", + "Desc_OreUranium_C" + ], + "allowLiquids": false, + "allowSolids": true, + "itemsPerCycle": 1, + "extractCycleTime": 1.0 + } + }, + "buildings": { + "Desc_RailroadTrack_C": { + "slug": "railway", + "icon": "desc-railroadtrack-c", + "name": "Railway", + "description": "Carries trains reliably and quickly.\nHas a wide turn angle, so make sure to plan it out properly.", + "className": "Desc_RailroadTrack_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_8x4_01_C": { + "slug": "basic-wall-4m", + "icon": "desc-wall-8x4-01-c", + "name": "Basic Wall (4 m)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_8x4_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_8x4_02_C": { + "slug": "basic-wall-4m-steel", + "icon": "desc-wall-8x4-02-c", + "name": "Basic Wall (4 m) (Steel)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_8x4_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Conveyor_8x4_01_Steel_C": { + "slug": "conveyor-wall-x3-steel", + "icon": "desc-wall-conveyor-8x4-01-steel-c", + "name": "Conveyor Wall x 3 (Steel)", + "description": "Has 3 Conveyor Belt connections.\nSnaps to Foundations and other Walls.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Conveyor_8x4_01_Steel_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Gate_8x4_01_C": { + "slug": "gate-hole-wall", + "icon": "desc-wall-gate-8x4-01-c", + "name": "Gate Hole Wall", + "description": "Allows pioneers to pass through a Wall.\nSnaps to Foundations and other Walls.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Gate_8x4_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Window_8x4_01_C": { + "slug": "single-window-window", + "icon": "desc-wall-window-8x4-01-c", + "name": "Single Window (Window)", + "description": "Snaps to Foundations and other Walls.\nThe windows allow pioneers to see through a wall.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Window_8x4_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Window_8x4_02_C": { + "slug": "frame-window-window", + "icon": "desc-wall-window-8x4-02-c", + "name": "Frame Window (Window)", + "description": "Snaps to Foundations and other Walls.\nThe windows allow pioneers to see through a wall.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Window_8x4_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Window_8x4_03_C": { + "slug": "panel-window-window", + "icon": "desc-wall-window-8x4-03-c", + "name": "Panel Window (Window)", + "description": "Snaps to Foundations and other Walls.\nThe windows allow pioneers to see through a wall.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Window_8x4_03_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Window_8x4_04_C": { + "slug": "reinforced-window-window", + "icon": "desc-wall-window-8x4-04-c", + "name": "Reinforced Window (Window)", + "description": "Snaps to Foundations and other Walls.\nThe windows allow pioneers to see through a wall.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Window_8x4_04_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x1_C": { + "slug": "basic-wall-1m-concrete", + "icon": "desc-wall-concrete-8x1-c", + "name": "Basic Wall (1 m) (Concrete)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 1 m", + "className": "Desc_Wall_Concrete_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x4_C": { + "slug": "basic-wall-4m-concrete", + "icon": "desc-wall-concrete-8x4-c", + "name": "Basic Wall (4 m) (Concrete)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Concrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x4_ConveyorHole_01_C": { + "slug": "conveyor-wall-x1-concrete", + "icon": "desc-wall-concrete-8x4-conveyorhole-01-c", + "name": "Conveyor Wall x 1 (Concrete)", + "description": "Has 1 Conveyor Belt connection.\nSnaps to Foundations and other Walls.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Concrete_8x4_ConveyorHole_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x4_ConveyorHole_02_C": { + "slug": "conveyor-wall-x2-concrete", + "icon": "desc-wall-concrete-8x4-conveyorhole-02-c", + "name": "Conveyor Wall x 2 (Concrete)", + "description": "Has 2 Conveyor Belt connections.\nSnaps to Foundations and other Walls.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Concrete_8x4_ConveyorHole_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x4_Window_01_C": { + "slug": "single-window-concrete", + "icon": "desc-wall-concrete-8x4-window-01-c", + "name": "Single Window (Concrete)", + "description": "Snaps to Foundations and other Walls.\nThe windows allow pioneers to see through a wall.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Concrete_8x4_Window_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x4_Window_02_C": { + "slug": "frame-window-concrete", + "icon": "desc-wall-concrete-8x4-window-02-c", + "name": "Frame Window (Concrete)", + "description": "Snaps to Foundations and other Walls.\nThe windows allow pioneers to see through a wall.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Concrete_8x4_Window_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x4_Window_03_C": { + "slug": "panel-window-concrete", + "icon": "desc-wall-concrete-8x4-window-03-c", + "name": "Panel Window (Concrete)", + "description": "Snaps to Foundations and other Walls.\nThe windows allow pioneers to see through a wall.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Concrete_8x4_Window_03_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x4_Window_04_C": { + "slug": "reinforced-window-concrete", + "icon": "desc-wall-concrete-8x4-window-04-c", + "name": "Reinforced Window (Concrete)", + "description": "Snaps to Foundations and other Walls.\nThe windows allow pioneers to see through a wall.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Concrete_8x4_Window_04_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_Angular_8x4_C": { + "slug": "tilted-wall-4m-concrete", + "icon": "desc-wall-concrete-angular-8x4-c", + "name": "Tilted Wall (4 m) (Concrete)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Concrete_Angular_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_Angular_8x8_C": { + "slug": "tilted-wall-8m-concrete", + "icon": "desc-wall-concrete-angular-8x8-c", + "name": "Tilted Wall (8 m) (Concrete)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 8 m", + "className": "Desc_Wall_Concrete_Angular_8x8_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x1_FlipTris_C": { + "slug": "inverted-ramp-wall-1m-concrete", + "icon": "desc-wall-concrete-8x1-fliptris-c", + "name": "Inverted Ramp Wall (1 m) (Concrete)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 1 m", + "className": "Desc_Wall_Concrete_8x1_FlipTris_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x2_FlipTris_C": { + "slug": "inverted-ramp-wall-2m-concrete", + "icon": "desc-wall-concrete-8x2-fliptris-c", + "name": "Inverted Ramp Wall (2 m) (Concrete)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 2 m", + "className": "Desc_Wall_Concrete_8x2_FlipTris_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x4_FlipTris_C": { + "slug": "inverted-ramp-wall-4m-concrete", + "icon": "desc-wall-concrete-8x4-fliptris-c", + "name": "Inverted Ramp Wall (4 m) (Concrete)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Concrete_8x4_FlipTris_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x8_FlipTris_C": { + "slug": "inverted-ramp-wall-8m-concrete", + "icon": "desc-wall-concrete-8x8-fliptris-c", + "name": "Inverted Ramp Wall (8 m) (Concrete)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 8 m", + "className": "Desc_Wall_Concrete_8x8_FlipTris_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_Gate_8x4_C": { + "slug": "gate-hole-wall-concrete", + "icon": "desc-wall-concrete-gate-8x4-c", + "name": "Gate Hole Wall (Concrete)", + "description": "Allows pioneers to pass through a Wall.\nSnaps to Foundations and other Walls.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Concrete_Gate_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x1_Tris_C": { + "slug": "ramp-wall-1m-concrete", + "icon": "desc-wall-concrete-8x1-tris-c", + "name": "Ramp Wall (1 m) (Concrete)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 1 m", + "className": "Desc_Wall_Concrete_8x1_Tris_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x2_Tris_C": { + "slug": "ramp-wall-2m-concrete", + "icon": "desc-wall-concrete-8x2-tris-c", + "name": "Ramp Wall (2 m) (Concrete)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 2 m", + "className": "Desc_Wall_Concrete_8x2_Tris_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x4_Tris_C": { + "slug": "ramp-wall-4m-concrete", + "icon": "desc-wall-concrete-8x4-tris-c", + "name": "Ramp Wall (4 m) (Concrete)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Concrete_8x4_Tris_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x8_Tris_C": { + "slug": "ramp-wall-8m-concrete", + "icon": "desc-wall-concrete-8x8-tris-c", + "name": "Ramp Wall (8 m) (Concrete)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 8 m", + "className": "Desc_Wall_Concrete_8x8_Tris_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Orange_8x1_C": { + "slug": "basic-wall-1m", + "icon": "desc-wall-orange-8x1-c", + "name": "Basic Wall (1 m)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 1 m", + "className": "Desc_Wall_Orange_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Orange_Angular_8x4_C": { + "slug": "tilted-wall-4m", + "icon": "desc-wall-orange-angular-8x4-c", + "name": "Tilted Wall (4 m)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Orange_Angular_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Orange_Angular_8x8_C": { + "slug": "tilted-wall-8m", + "icon": "desc-wall-orange-angular-8x8-c", + "name": "Tilted Wall (8 m)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 8 m", + "className": "Desc_Wall_Orange_Angular_8x8_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Orange_8x1_FlipTris_C": { + "slug": "inverted-ramp-wall-1m", + "icon": "desc-wall-orange-8x1-fliptris-c", + "name": "Inverted Ramp Wall (1 m)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 1 m", + "className": "Desc_Wall_Orange_8x1_FlipTris_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Orange_8x2_FlipTris_C": { + "slug": "inverted-ramp-wall-2m", + "icon": "desc-wall-orange-8x2-fliptris-c", + "name": "Inverted Ramp Wall (2 m)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 2 m", + "className": "Desc_Wall_Orange_8x2_FlipTris_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Orange_8x4_FlipTris_C": { + "slug": "inverted-ramp-wall-4m", + "icon": "desc-wall-orange-8x4-fliptris-c", + "name": "Inverted Ramp Wall (4 m)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Orange_8x4_FlipTris_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Orange_8x8_FlipTris_C": { + "slug": "inverted-ramp-wall-8m", + "icon": "desc-wall-orange-8x8-fliptris-c", + "name": "Inverted Ramp Wall (8 m)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 8 m", + "className": "Desc_Wall_Orange_8x8_FlipTris_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Orange_8x1_Tris_C": { + "slug": "ramp-wall-1m", + "icon": "desc-wall-orange-8x1-tris-c", + "name": "Ramp Wall (1 m)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 1 m", + "className": "Desc_Wall_Orange_8x1_Tris_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Orange_8x2_Tris_C": { + "slug": "ramp-wall-2m", + "icon": "desc-wall-orange-8x2-tris-c", + "name": "Ramp Wall (2 m)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 2 m", + "className": "Desc_Wall_Orange_8x2_Tris_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Orange_8x4_Tris_C": { + "slug": "ramp-wall-4m", + "icon": "desc-wall-orange-8x4-tris-c", + "name": "Ramp Wall (4 m)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Orange_8x4_Tris_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Orange_8x8_Tris_C": { + "slug": "ramp-wall-8m", + "icon": "desc-wall-orange-8x8-tris-c", + "name": "Ramp Wall (8 m)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 8 m", + "className": "Desc_Wall_Orange_8x8_Tris_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_SteelWall_8x1_C": { + "slug": "basic-wall-1m-steel", + "icon": "desc-steelwall-8x1-c", + "name": "Basic Wall (1 m) (Steel)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 1 m", + "className": "Desc_SteelWall_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_SteelWall_8x4_Gate_01_C": { + "slug": "gate-hole-wall-steel", + "icon": "desc-steelwall-8x4-gate-01-c", + "name": "Gate Hole Wall (Steel)", + "description": "Allows pioneers to pass through a Wall.\nSnaps to Foundations and other Walls.\n\nSize: 8 m x 4 m", + "className": "Desc_SteelWall_8x4_Gate_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_SteelWall_8x4_Window_01_C": { + "slug": "single-window-steel", + "icon": "desc-steelwall-8x4-window-01-c", + "name": "Single Window (Steel)", + "description": "Snaps to Foundations and other Walls.\nThe windows allow pioneers to see through a wall.\n\nSize: 8 m x 4 m", + "className": "Desc_SteelWall_8x4_Window_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_SteelWall_8x4_Window_02_C": { + "slug": "reinforced-window-steel", + "icon": "desc-steelwall-8x4-window-02-c", + "name": "Reinforced Window (Steel)", + "description": "Snaps to Foundations and other Walls.\nThe windows allow pioneers to see through a wall.\n\nSize: 8 m x 4 m", + "className": "Desc_SteelWall_8x4_Window_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_SteelWall_8x4_Window_03_C": { + "slug": "frame-window-steel", + "icon": "desc-steelwall-8x4-window-03-c", + "name": "Frame Window (Steel)", + "description": "Snaps to Foundations and other Walls.\nThe windows allow pioneers to see through a wall.\n\nSize: 8 m x 4 m", + "className": "Desc_SteelWall_8x4_Window_03_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_SteelWall_8x4_Window_04_C": { + "slug": "panel-window-steel", + "icon": "desc-steelwall-8x4-window-04-c", + "name": "Panel Window (Steel)", + "description": "Snaps to Foundations and other Walls.\nThe windows allow pioneers to see through a wall.\n\nSize: 8 m x 4 m", + "className": "Desc_SteelWall_8x4_Window_04_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_SteelWall_FlipTris_8x1_C": { + "slug": "inverted-ramp-wall-1m-steel", + "icon": "desc-steelwall-fliptris-8x1-c", + "name": "Inverted Ramp Wall (1 m) (Steel)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 1 m", + "className": "Desc_SteelWall_FlipTris_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_SteelWall_FlipTris_8x2_C": { + "slug": "inverted-ramp-wall-2m-steel", + "icon": "desc-steelwall-fliptris-8x2-c", + "name": "Inverted Ramp Wall (2 m) (Steel)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 2 m", + "className": "Desc_SteelWall_FlipTris_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_SteelWall_FlipTris_8x4_C": { + "slug": "inverted-ramp-wall-4m-steel", + "icon": "desc-steelwall-fliptris-8x4-c", + "name": "Inverted Ramp Wall (4 m) (Steel)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 4 m", + "className": "Desc_SteelWall_FlipTris_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_SteelWall_Tris_8x1_C": { + "slug": "ramp-wall-1m-steel", + "icon": "desc-steelwall-tris-8x1-c", + "name": "Ramp Wall (1 m) (Steel)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 1 m", + "className": "Desc_SteelWall_Tris_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_SteelWall_Tris_8x2_C": { + "slug": "ramp-wall-2m-steel", + "icon": "desc-steelwall-tris-8x2-c", + "name": "Ramp Wall (2 m) (Steel)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 2 m", + "className": "Desc_SteelWall_Tris_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_SteelWall_Tris_8x4_C": { + "slug": "ramp-wall-4m-steel", + "icon": "desc-steelwall-tris-8x4-c", + "name": "Ramp Wall (4 m) (Steel)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 4 m", + "className": "Desc_SteelWall_Tris_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_SteelWall_Tris_8x8_C": { + "slug": "ramp-wall-8m-steel", + "icon": "desc-steelwall-tris-8x8-c", + "name": "Ramp Wall (8 m) (Steel)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 8 m", + "className": "Desc_SteelWall_Tris_8x8_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_WallSet_Steel_Angular_8x4_C": { + "slug": "tilted-wall-4m-steel", + "icon": "desc-wallset-steel-angular-8x4-c", + "name": "Tilted Wall (4 m) (Steel)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 4 m", + "className": "Desc_WallSet_Steel_Angular_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_WallSet_Steel_Angular_8x8_C": { + "slug": "tilted-wall-8m-steel", + "icon": "desc-wallset-steel-angular-8x8-c", + "name": "Tilted Wall (8 m) (Steel)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 8 m", + "className": "Desc_WallSet_Steel_Angular_8x8_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Window_Thin_8x4_01_C": { + "slug": "full-frame-window-window", + "icon": "desc-wall-window-thin-8x4-01-c", + "name": "Full Frame Window (Window)", + "description": "Snaps to Foundations and other Walls.\nThe windows allow pioneers to see through a wall.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Window_Thin_8x4_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Window_Thin_8x4_02_C": { + "slug": "hex-frame-window-window", + "icon": "desc-wall-window-thin-8x4-02-c", + "name": "Hex Frame Window (Window)", + "description": "Snaps to Foundations and other Walls.\nThe windows allow pioneers to see through a wall.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Window_Thin_8x4_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Frame_01_C": { + "slug": "frame-wall", + "icon": "desc-wall-frame-01-c", + "name": "Frame Wall", + "description": "Snaps to other structural buildings.\nFrames provide a more open factory aesthetic.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Frame_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Railing_01_C": { + "slug": "modern-railing", + "icon": "desc-railing-01-c", + "name": "Modern Railing", + "description": "Creates a safer working environment when built on the edge of Foundations.\n\nThis Railing is 4 m long and automatically angles itself when built on Ramps.", + "className": "Desc_Railing_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Window_8x4_05_C": { + "slug": "angled-frame-window-window", + "icon": "desc-wall-window-8x4-05-c", + "name": "Angled Frame Window (Window)", + "description": "Snaps to Foundations and other Walls.\nThe windows allow pioneers to see through a wall.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Window_8x4_05_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Window_8x4_06_C": { + "slug": "honeycomb-frame-window-window", + "icon": "desc-wall-window-8x4-06-c", + "name": "Honeycomb Frame Window (Window)", + "description": "Snaps to Foundations and other Walls.\nThe windows allow pioneers to see through a wall.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Window_8x4_06_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Window_8x4_07_C": { + "slug": "triple-frame-window-window", + "icon": "desc-wall-window-8x4-07-c", + "name": "Triple Frame Window (Window)", + "description": "Snaps to Foundations and other Walls.\nThe windows allow pioneers to see through a wall.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Window_8x4_07_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ChainLinkFence_C": { + "slug": "construction-fence", + "icon": "desc-chainlinkfence-c", + "name": "Construction Fence", + "description": "Creates a safer and more efficient working environment.", + "className": "Desc_ChainLinkFence_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_TarpFence_C": { + "slug": "tarp-construction-fence-tar", + "icon": "desc-tarpfence-c", + "name": "Tarp Construction Fence (Tar)", + "description": "Creates a safer and more efficient working environment.", + "className": "Desc_TarpFence_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Barrier_Low_01_C": { + "slug": "low-barrier", + "icon": "desc-barrier-low-01-c", + "name": "Low Barrier", + "description": "Creates a safer and more efficient working environment.", + "className": "Desc_Barrier_Low_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Barrier_Tall_01_C": { + "slug": "high-barrier", + "icon": "desc-barrier-tall-01-c", + "name": "High Barrier", + "description": "Creates a safer and more efficient working environment.", + "className": "Desc_Barrier_Tall_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Concrete_Barrier_01_C": { + "slug": "road-barrier-concrete", + "icon": "desc-concrete-barrier-01-c", + "name": "Road Barrier (Concrete)", + "description": "Creates a safer and more efficient working environment.", + "className": "Desc_Concrete_Barrier_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Conveyor_8x4_01_C": { + "slug": "conveyor-wall-x3", + "icon": "desc-wall-conveyor-8x4-01-c", + "name": "Conveyor Wall x 3", + "description": "Has 3 Conveyor Belt connections.\nSnaps to Foundations and other Walls.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Conveyor_8x4_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Conveyor_8x4_02_C": { + "slug": "conveyor-wall-x2", + "icon": "desc-wall-conveyor-8x4-02-c", + "name": "Conveyor Wall x 2", + "description": "Has 2 Conveyor Belt connections.\nSnaps to Foundations and other Walls.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Conveyor_8x4_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Conveyor_8x4_02_Steel_C": { + "slug": "conveyor-wall-x2-steel", + "icon": "desc-wall-conveyor-8x4-02-steel-c", + "name": "Conveyor Wall x 2 (Steel)", + "description": "Has 2 Conveyor Belt connections.\nSnaps to Foundations and other Walls.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Conveyor_8x4_02_Steel_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Conveyor_8x4_03_C": { + "slug": "conveyor-wall-x1", + "icon": "desc-wall-conveyor-8x4-03-c", + "name": "Conveyor Wall x 1", + "description": "Has 1 Conveyor Belt connection.\nSnaps to Foundations and other Walls.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Conveyor_8x4_03_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Conveyor_8x4_03_Steel_C": { + "slug": "conveyor-wall-x1-steel", + "icon": "desc-wall-conveyor-8x4-03-steel-c", + "name": "Conveyor Wall x 1 (Steel)", + "description": "Has 1 Conveyor Belt connection.\nSnaps to Foundations and other Walls.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Conveyor_8x4_03_Steel_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x4_ConveyorHole_03_C": { + "slug": "conveyor-wall-x3-concrete", + "icon": "desc-wall-concrete-8x4-conveyorhole-03-c", + "name": "Conveyor Wall x 3 (Concrete)", + "description": "Has 3 Conveyor Belt connections.\nSnaps to Foundations and other Walls.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Concrete_8x4_ConveyorHole_03_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_SteelWall_FlipTris_8x8_C": { + "slug": "inverted-ramp-wall-8m-steel", + "icon": "desc-steelwall-fliptris-8x8-c", + "name": "Inverted Ramp Wall (8 m) (Steel)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 8 m", + "className": "Desc_SteelWall_FlipTris_8x8_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Door_8x4_01_C": { + "slug": "center-door-wall", + "icon": "desc-wall-door-8x4-01-c", + "name": "Center Door Wall", + "description": "Allows pioneers to pass through a wall.\nDoor settings can be configured.\nSnaps to Foundations and other Walls.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Door_8x4_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Door_8x4_01_Steel_C": { + "slug": "center-door-wall-steel", + "icon": "desc-wall-door-8x4-01-steel-c", + "name": "Center Door Wall (Steel)", + "description": "Allows pioneers to pass through a wall.\nDoor settings can be configured.\nSnaps to Foundations and other Walls.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Door_8x4_01_Steel_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Door_8x4_03_C": { + "slug": "side-door-wall", + "icon": "desc-wall-door-8x4-03-c", + "name": "Side Door Wall", + "description": "Allows pioneers to pass through a wall.\nDoor settings can be configured.\nSnaps to Foundations and other Walls.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Door_8x4_03_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Door_8x4_03_Steel_C": { + "slug": "side-door-wall-steel", + "icon": "desc-wall-door-8x4-03-steel-c", + "name": "Side Door Wall (Steel)", + "description": "Allows pioneers to pass through a wall.\nDoor settings can be configured.\nSnaps to Foundations and other Walls.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Door_8x4_03_Steel_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_CDoor_8x4_C": { + "slug": "center-door-wall-concrete", + "icon": "desc-wall-concrete-cdoor-8x4-c", + "name": "Center Door Wall (Concrete)", + "description": "Allows pioneers to pass through a wall.\nDoor settings can be configured.\nSnaps to Foundations and other Walls.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Concrete_CDoor_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_SDoor_8x4_C": { + "slug": "side-door-wall-concrete", + "icon": "desc-wall-concrete-sdoor-8x4-c", + "name": "Side Door Wall (Concrete)", + "description": "Allows pioneers to pass through a wall.\nDoor settings can be configured.\nSnaps to Foundations and other Walls.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Concrete_SDoor_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Gate_Automated_8x4_C": { + "slug": "automated-gate", + "icon": "desc-gate-automated-8x4-c", + "name": "Automated Gate", + "description": "Automatically opens when living beings or vehicles approach it.\nGate settings can be configured.\nSnaps to Foundations and Walls.\n\nSize: 8 m x 4 m", + "className": "Desc_Gate_Automated_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x4_Corner_01_C": { + "slug": "tilted-corner-wall-4m-concrete", + "icon": "desc-wall-concrete-8x4-corner-01-c", + "name": "Tilted Corner Wall (4 m) (Concrete)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Concrete_8x4_Corner_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x4_Corner_2_C": { + "slug": "tilted-concave-wall-4m-concrete", + "icon": "desc-wall-concrete-8x4-corner-2-c", + "name": "Tilted Concave Wall (4 m) (Concrete)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Concrete_8x4_Corner_2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x8_Corner_01_C": { + "slug": "tilted-corner-wall-8m-concrete", + "icon": "desc-wall-concrete-8x8-corner-01-c", + "name": "Tilted Corner Wall (8 m) (Concrete)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 8 m", + "className": "Desc_Wall_Concrete_8x8_Corner_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x8_Corner_2_C": { + "slug": "tilted-concave-wall-8m-concrete", + "icon": "desc-wall-concrete-8x8-corner-2-c", + "name": "Tilted Concave Wall (8 m) (Concrete)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 8 m", + "className": "Desc_Wall_Concrete_8x8_Corner_2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Orange_8x4_Corner_01_C": { + "slug": "tilted-corner-wall-4m", + "icon": "desc-wall-orange-8x4-corner-01-c", + "name": "Tilted Corner Wall (4 m)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Orange_8x4_Corner_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Orange_8x4_Corner_02_C": { + "slug": "tilted-concave-wall-4m", + "icon": "desc-wall-orange-8x4-corner-02-c", + "name": "Tilted Concave Wall (4 m)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Orange_8x4_Corner_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Orange_8x8_Corner_01_C": { + "slug": "tilted-corner-wall-8m", + "icon": "desc-wall-orange-8x8-corner-01-c", + "name": "Tilted Corner Wall (8 m)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 8 m", + "className": "Desc_Wall_Orange_8x8_Corner_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Orange_8x8_Corner_02_C": { + "slug": "tilted-concave-wall-8m", + "icon": "desc-wall-orange-8x8-corner-02-c", + "name": "Tilted Concave Wall (8 m)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 8 m", + "className": "Desc_Wall_Orange_8x8_Corner_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Steel_8x4_Corner_01_C": { + "slug": "tilted-corner-wall-4m-steel", + "icon": "desc-wall-steel-8x4-corner-01-c", + "name": "Tilted Corner Wall (4 m) (Steel)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Steel_8x4_Corner_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Steel_8x4_Corner_2_C": { + "slug": "tilted-concave-wall-4m-steel", + "icon": "desc-wall-steel-8x4-corner-2-c", + "name": "Tilted Concave Wall (4 m) (Steel)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Steel_8x4_Corner_2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Steel_8x8_Corner_01_C": { + "slug": "tilted-corner-wall-8m-steel", + "icon": "desc-wall-steel-8x8-corner-01-c", + "name": "Tilted Corner Wall (8 m) (Steel)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 8 m", + "className": "Desc_Wall_Steel_8x8_Corner_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Steel_8x8_Corner_2_C": { + "slug": "tilted-concave-wall-8m-steel", + "icon": "desc-wall-steel-8x8-corner-2-c", + "name": "Tilted Concave Wall (8 m) (Steel)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 8 m", + "className": "Desc_Wall_Steel_8x8_Corner_2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Beam_C": { + "slug": "metal-beam", + "icon": "desc-beam-c", + "name": "Metal Beam", + "description": "Snaps to other Beams and various other structural buildings.\nBeams support multiple build modes for different use cases.", + "className": "Desc_Beam_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Beam_Painted_C": { + "slug": "painted-beam", + "icon": "desc-beam-painted-c", + "name": "Painted Beam", + "description": "Snaps to other Beams and various other structural buildings.\nBeams support multiple build modes for different use cases.", + "className": "Desc_Beam_Painted_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConveyorCeilingAttachment_C": { + "slug": "conveyor-ceiling-mount", + "icon": "desc-conveyorceilingattachment-c", + "name": "Conveyor Ceiling Mount", + "description": "Attaches to ceilings and other ceiling mounts.\nUseful for routing Conveyor Belts more precisely and over long distances.", + "className": "Desc_ConveyorCeilingAttachment_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConveyorPoleWall_C": { + "slug": "conveyor-wall-mount", + "icon": "desc-conveyorpolewall-c", + "name": "Conveyor Wall Mount", + "description": "Attaches to Walls.\nUseful for routing Conveyor Belts more precisely and over long distances.", + "className": "Desc_ConveyorPoleWall_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConveyorBeltMk1_C": { + "slug": "conveyor-belt-mk-1", + "icon": "desc-conveyorbeltmk1-c", + "name": "Conveyor Belt Mk.1", + "description": "Transports up to 60 resources per minute. Used to move resources between buildings.", + "className": "Desc_ConveyorBeltMk1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PowerLine_C": { + "slug": "power-line", + "icon": "desc-powerline-c", + "name": "Power Line", + "description": "Connects Power Poles, Power Generators, and factory buildings.", + "className": "Desc_PowerLine_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PowerPoleMk1_C": { + "slug": "power-pole-mk-1", + "icon": "desc-powerpolemk1-c", + "name": "Power Pole Mk.1", + "description": "Allows for up to 4 Power Line connections.\n\nConnect Power Poles, Power Generators, and factory buildings with Power Lines to create a power grid. The power grid supplies all connected buildings with power.", + "className": "Desc_PowerPoleMk1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PowerPoleWall_C": { + "slug": "wall-outlet-mk-1", + "icon": "desc-powerpolewall-c", + "name": "Wall Outlet Mk.1", + "description": "Functions like a Power Pole, but attaches to a wall.\n\nAllows for up to 4 Power Line connections.\n\nConnect Power Poles, Power Generators and factory buildings with Power Lines to create a power grid. The power grid supplies all connected buildings with power.", + "className": "Desc_PowerPoleWall_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_TradingPost_C": { + "slug": "the-hub", + "icon": "desc-tradingpost-c", + "name": "The HUB", + "description": "The heart of your factory. This is where you complete FICSIT milestones to unlock additional schematics for buildings, vehicles, parts, equipment, etc.", + "className": "Desc_TradingPost_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_WorkBench_C": { + "slug": "crafting-bench", + "icon": "desc-workbench-c", + "name": "Crafting Bench", + "description": "Allows you to manually craft a wide range of different parts. \nThese parts can then be used to construct various factory buildings, vehicles, and equipment.", + "className": "Desc_WorkBench_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_GeneratorCoal_C": { + "slug": "coal-powered-generator", + "icon": "desc-generatorcoal-c", + "name": "Coal-Powered Generator", + "description": "Burns Coal to boil Water. The steam produced rotates turbines that generate electricity for the power grid.\nHas Conveyor Belt and Pipeline input ports that allow the Coal and Water supply to be automated.\n\nCaution: Always generates power at the set clock speed. Shuts down if fuel requirements are not met.", + "className": "Desc_GeneratorCoal_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PipelineSupportWall_C": { + "slug": "pipeline-wall-support", + "icon": "desc-pipelinesupportwall-c", + "name": "Pipeline Wall Support", + "description": "Attaches to Walls.\nUsed to connect Pipelines over longer distances.", + "className": "Desc_PipelineSupportWall_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Pipeline_C": { + "slug": "pipeline-mk-1", + "icon": "desc-pipeline-c", + "name": "Pipeline Mk.1", + "description": "Transports fluids.\nExternal indicators show flow rate, direction, and volume.\nCapacity: 300 m³ of fluid per minute.", + "className": "Desc_Pipeline_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PipelineJunction_Cross_C": { + "slug": "pipeline-junction", + "icon": "desc-pipelinejunction-cross-c", + "name": "Pipeline Junction", + "description": "Attaches to a Pipeline, allowing it to be split up to 4 ways.", + "className": "Desc_PipelineJunction_Cross_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PipelinePump_C": { + "slug": "pipeline-pump-mk-1", + "icon": "desc-pipelinepump-c", + "name": "Pipeline Pump Mk.1", + "description": "Attaches to a Pipeline to apply Head Lift.\nMaximum Head Lift: 20 m\n(Allows fluids to be transported 20 m upwards.)\n\nNOTE: Arrows and holograms when building indicate Head Lift direction.\nNOTE: Head Lift does not stack, so space between Pumps is recommended.", + "className": "Desc_PipelinePump_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 4, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PipeStorageTank_C": { + "slug": "fluid-buffer", + "icon": "desc-pipestoragetank-c", + "name": "Fluid Buffer", + "description": "Holds up to 400 m³ of fluid.\nHas Pipeline input and output ports.", + "className": "Desc_PipeStorageTank_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_WaterPump_C": { + "slug": "water-extractor", + "icon": "desc-waterpump-c", + "name": "Water Extractor", + "description": "Extracts water from the body of water it is built on.\nNote: the water needs to be sufficiently deep, and rivers are generally not deep enough.\n\nDefault Extraction Rate: 120 m³ of water per minute.\nHead Lift: 10 m\n(Allows fluids to be transported 10 meters upwards.)", + "className": "Desc_WaterPump_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 20, + "powerConsumptionExponent": 1.321929, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ResourceSink_C": { + "slug": "awesome-sink", + "icon": "desc-resourcesink-c", + "name": "AWESOME Sink", + "description": "Got excess resources? Fear not, for FICSIT does not waste! The newly developed AWESOME Sink turns any and all useful parts into research data just as fast as you can supply them! \nParticipating pioneers will be compensated with Coupons that can be spent at the AWESOME Shop.", + "className": "Desc_ResourceSink_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 30, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ResourceSinkShop_C": { + "slug": "awesome-shop", + "icon": "desc-resourcesinkshop-c", + "name": "AWESOME Shop", + "description": "Redeem your FICSIT Coupons here! \nFor those employees going the extra kilometer we have set aside special bonus milestones and rewards! Get your Coupons in the AWESOME Sink program now!\n\n*No refunds possible.", + "className": "Desc_ResourceSinkShop_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuantumEncoder_C": { + "slug": "quantum-encoder", + "icon": "desc-quantumencoder-c", + "name": "Quantum Encoder", + "description": "The Quantum Encoder uses Excited Photonic Matter to produce the most complex of parts, controlling development up to the quantum level.\n\nWarning: Power usage is extremely high and unstable.", + "className": "Desc_QuantumEncoder_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.321929, + "manufacturingSpeed": 1 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Converter_C": { + "slug": "converter", + "icon": "desc-converter-c", + "name": "Converter", + "description": "The Converter harnesses Reanimated SAM to enable precise matter and energy transmutation.\n\nWarning: Power usage is very high and unstable.", + "className": "Desc_Converter_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.321929, + "manufacturingSpeed": 1 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_OilPump_C": { + "slug": "oil-extractor", + "icon": "desc-oilpump-c", + "name": "Oil Extractor", + "description": "Extracts Crude Oil when built on an oil node. Extraction rates vary based on node purity.\n\nDefault Extraction Rate: 120 m³ of oil per minute.\nHead Lift: 10 m\n(Allows fluids to be transported 10 meters upwards.)", + "className": "Desc_OilPump_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 40, + "powerConsumptionExponent": 1.321929, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_OilRefinery_C": { + "slug": "refinery", + "icon": "desc-oilrefinery-c", + "name": "Refinery", + "description": "Refines fluid and/or solid parts into other parts.\nHead Lift: 10 m\n(Allows fluids to be transported 10 meters upwards.)\n\nContains both Conveyor Belt and Pipeline input and output ports so that a wide range of recipes can be automated.", + "className": "Desc_OilRefinery_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 30, + "powerConsumptionExponent": 1.321929, + "manufacturingSpeed": 1 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Valve_C": { + "slug": "valve", + "icon": "desc-valve-c", + "name": "Valve", + "description": "Limits Pipeline flow rates.\nCan be attached to a Pipeline.\n\nNOTE: Has an in- and output direction.", + "className": "Desc_Valve_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_FoundryMk1_C": { + "slug": "foundry", + "icon": "desc-foundrymk1-c", + "name": "Foundry", + "description": "Smelts 2 resources into alloy ingots.\n\nCan be automated by feeding ore in via Conveyor Belts connected to the input ports. The resulting ingots can be automatically extracted by connecting a Conveyor Belt to the output port.", + "className": "Desc_FoundryMk1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 16, + "powerConsumptionExponent": 1.321929, + "manufacturingSpeed": 1 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Packager_C": { + "slug": "packager", + "icon": "desc-packager-c", + "name": "Packager", + "description": "Packages and unpackages fluids.\nHead Lift: 10 m\n(Allows fluids to be transported 10 meters upwards.)\n\nContains both Conveyor Belt and Pipeline input and output ports so that a wide range of recipes can be automated.", + "className": "Desc_Packager_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 10, + "powerConsumptionExponent": 1.321929, + "manufacturingSpeed": 1 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_MinerMk2_C": { + "slug": "miner-mk-2", + "icon": "desc-minermk2-c", + "name": "Miner Mk.2", + "description": "Extracts solid resources from the resource node it is built on. \nDefault extraction rate is 120 resources per minute. \nExtraction rate varies based on resource node purity. Outputs all extracted resources onto connected Conveyor Belts.", + "className": "Desc_MinerMk2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 15, + "powerConsumptionExponent": 1.321929, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ManufacturerMk1_C": { + "slug": "manufacturer", + "icon": "desc-manufacturermk1-c", + "name": "Manufacturer", + "description": "Crafts 3 or 4 parts into another part.\n\nCan be automated by feeding component parts in via Conveyor Belts connected to the input ports. The resulting parts can be automatically extracted by connecting a Conveyor Belt to the output port.", + "className": "Desc_ManufacturerMk1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 55, + "powerConsumptionExponent": 1.321929, + "manufacturingSpeed": 1 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_AssemblerMk1_C": { + "slug": "assembler", + "icon": "desc-assemblermk1-c", + "name": "Assembler", + "description": "Crafts 2 parts into another part.\n\nCan be automated by feeding component parts in via Conveyor Belts connected to the input ports. The resulting parts can be automatically extracted by connecting a Conveyor Belt to the output port.", + "className": "Desc_AssemblerMk1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 15, + "powerConsumptionExponent": 1.321929, + "manufacturingSpeed": 1 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_HadronCollider_C": { + "slug": "particle-accelerator", + "icon": "desc-hadroncollider-c", + "name": "Particle Accelerator", + "description": "Uses electromagnetic fields to propel particles to very high speeds and energies. The specific design allows for a variety of processes, including matter generation and conversion.\n\nWarning: Power usage is extremely high and unstable, and varies per recipe.", + "className": "Desc_HadronCollider_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.321929, + "manufacturingSpeed": 1 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Blender_C": { + "slug": "blender", + "icon": "desc-blender-c", + "name": "Blender", + "description": "Blends fluids together or combines them with solid parts in a wide variety of processes.\nHead Lift: 10 m\n(Allows fluids to be transported 10 meters upwards.)\n\nHas both Conveyor Belt and Pipeline input and output ports.", + "className": "Desc_Blender_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 75, + "powerConsumptionExponent": 1.321929, + "manufacturingSpeed": 1 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_GeneratorNuclear_C": { + "slug": "nuclear-power-plant", + "icon": "desc-generatornuclear-c", + "name": "Nuclear Power Plant", + "description": "Consumes Nuclear Fuel Rods and Water to produce electricity for the power grid.\n\nProduces Nuclear Waste, which is extracted via the Conveyor Belt output.\n\nCaution: Always generates power at the set clock speed. Shuts down if fuel requirements are not met.", + "className": "Desc_GeneratorNuclear_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_FrackingExtractor_C": { + "slug": "resource-well-extractor", + "icon": "desc-frackingextractor-c", + "name": "Resource Well Extractor", + "description": "Collects pressurized resources when placed on the activated sub-nodes of a Resource Well. Does not require power.\n\nDefault Extraction Rate: 60 m³ of fluid per minute.\nHead Lift: 10 m\n(Allows fluids to be transported 10 meters upwards.)", + "className": "Desc_FrackingExtractor_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.321929, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_FrackingSmasher_C": { + "slug": "resource-well-pressurizer", + "icon": "desc-frackingsmasher-c", + "name": "Resource Well Pressurizer", + "description": "Activates a Resource Well by pressurizing the underground resource. Must be placed on a Resource Well.\nOnce activated, Resource Well Extractors can be placed on the surrounding sub-nodes to extract the resource.\nRequires power. Overclocking increases the output potential of the entire Resource Well.", + "className": "Desc_FrackingSmasher_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 150, + "powerConsumptionExponent": 1.321929, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_DroneStation_C": { + "slug": "drone-port", + "icon": "desc-dronestation-c", + "name": "Drone Port", + "description": "Functions as home Port to a single Drone, which transports available input back and forth between its home Port and destination Port.\nDrone Ports can have one other Port assigned as their transport destination.\n\nThe Drone Port interface provides delivery details and allows management of Port connections.", + "className": "Desc_DroneStation_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 100, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConveyorBeltMk5_C": { + "slug": "conveyor-belt-mk-5", + "icon": "desc-conveyorbeltmk5-c", + "name": "Conveyor Belt Mk.5", + "description": "Transports up to 780 resources per minute. Used to move resources between buildings.", + "className": "Desc_ConveyorBeltMk5_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConveyorLiftMk5_C": { + "slug": "conveyor-lift-mk-5", + "icon": "desc-conveyorliftmk5-c", + "name": "Conveyor Lift Mk.5", + "description": "Transports up to 780 resources per minute. Used to move resources between floors.", + "className": "Desc_ConveyorLiftMk5_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_MinerMk3_C": { + "slug": "miner-mk-3", + "icon": "desc-minermk3-c", + "name": "Miner Mk.3", + "description": "Extracts solid resources from the resource node it is built on. \nDefault extraction rate is 240 resources per minute. \nExtraction rate varies based on resource node purity. Outputs all extracted resources onto connected Conveyor Belts.", + "className": "Desc_MinerMk3_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 45, + "powerConsumptionExponent": 1.321929, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConveyorBeltMk6_C": { + "slug": "conveyor-belt-mk-6", + "icon": "desc-conveyorbeltmk6-c", + "name": "Conveyor Belt Mk.6", + "description": "Transports up to 1200 resources per minute. Used to move resources between buildings.", + "className": "Desc_ConveyorBeltMk6_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConveyorLiftMk6_C": { + "slug": "conveyor-lift-mk-6", + "icon": "desc-conveyorliftmk6-c", + "name": "Conveyor Lift Mk.6", + "description": "Transports up to 1200 resources per minute. Used to move resources between floors.", + "className": "Desc_ConveyorLiftMk6_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Portal_C": { + "slug": "main-portal", + "icon": "desc-portal-c", + "name": "Main Portal", + "description": "Enables pioneer teleportation between two linked Portals.\n\nEach Portal can only have a single link. \nA link can only be made between a Main and Satellite Portal.\n\nSingularity Cells need to be supplied to the Main Portal and will be consumed to establish and maintain the Portal link.\n\nWARNINGS:\n- Massive power draw will occur during start-up and usage.\n- Power draw on use increases with travel distance.\n- Link start-up will take time. Letting the connection expire is not recommended.\n- Failure to deliver sufficient Singularity Cells will cause the link to expire.\n- FICSIT does not condone the use of wormhole technology. Any usage of wormhole technology is at the user's own risk.", + "className": "Desc_Portal_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 250, + "powerConsumptionExponent": 1.321929, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PortalSatellite_C": { + "slug": "satellite-portal", + "icon": "desc-portalsatellite-c", + "name": "Satellite Portal", + "description": "Enables pioneer teleportation between two linked Portals.\n\nEach Portal can only have a single link. \nA link can only be made between a Main and Satellite Portal.\n\nSingularity Cells need to be supplied to the Main Portal and will be consumed to establish and maintain the Portal link.\n\nWARNINGS:\n- Massive power draw will occur during start-up and usage.\n- Power draw on use increases with travel distance.\n- Link start-up will take time. Letting the connection expire is not recommended.\n- Failure to deliver sufficient Singularity Cells will cause the link to expire.\n- FICSIT does not condone the use of wormhole technology. Any usage of wormhole technology is at the user's own risk.", + "className": "Desc_PortalSatellite_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 250, + "powerConsumptionExponent": 1.321929, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_BlueprintDesigner_MK3_C": { + "slug": "blueprint-designer-mk-3", + "icon": "desc-blueprintdesigner-mk3-c", + "name": "Blueprint Designer Mk.3", + "description": "The Blueprint Designer is used to create custom factory designs and save them as Blueprints.\nBlueprints can be accessed from the Blueprint tab of the Build Menu.\n\nNote that buildings can only be placed in the Blueprint Designer if they are fully within the boundary frame.\n\nDimensions: 48 m x 48 m x 48 m", + "className": "Desc_BlueprintDesigner_MK3_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RailroadBlockSignal_C": { + "slug": "block-signal", + "icon": "desc-railroadblocksignal-c", + "name": "Block Signal", + "description": "Directs the movement of trains to avoid collisions and bottlenecks.\n\nBlock Signals can be placed on Railways to create 'Blocks' between them. When a train is occupying one of these Blocks, other trains will be unable to enter it.\n\nCaution: Signals are directional! Trains are unable to move against this direction, so be sure to set up Signals in both directions for bi-directional Railways.", + "className": "Desc_RailroadBlockSignal_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RailroadPathSignal_C": { + "slug": "path-signal", + "icon": "desc-railroadpathsignal-c", + "name": "Path Signal", + "description": "Directs the movement of trains to avoid collisions and bottlenecks.\n\nPath Signals are advanced signals that are especially useful for bi-directional Railways and complex intersections. They function similarly to Block Signals, but rather than occupying the entire Block, trains can reserve a specific path through it and will only enter the Block if their path allows them to fully pass through.\n\nCaution: Signals are directional! Trains are unable to move against this direction, so be sure to set up Signals in both directions for bi-directional Railways.", + "className": "Desc_RailroadPathSignal_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_BlueprintDesigner_MK2_C": { + "slug": "blueprint-designer-mk-2", + "icon": "desc-blueprintdesigner-mk2-c", + "name": "Blueprint Designer Mk.2", + "description": "The Blueprint Designer is used to create custom factory designs and save them as Blueprints.\nBlueprints can be accessed from the Blueprint tab of the Build Menu.\n\nNote that buildings can only be placed in the Blueprint Designer if they are fully within the boundary frame.\n\nDimensions: 40 m x 40 m x 40 m", + "className": "Desc_BlueprintDesigner_MK2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PipelineMK2_C": { + "slug": "pipeline-mk-2", + "icon": "desc-pipelinemk2-c", + "name": "Pipeline Mk.2", + "description": "Transports fluids.\nExternal indicators show flow rate, direction, and volume.\nCapacity: 600 m³ of fluid per minute.", + "className": "Desc_PipelineMK2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PipelinePumpMk2_C": { + "slug": "pipeline-pump-mk-2", + "icon": "desc-pipelinepumpmk2-c", + "name": "Pipeline Pump Mk.2", + "description": "Can be attached to a Pipeline to apply Head Lift.\nMaximum Head Lift: 50 m\n(Allows fluids to be transported 50 meters upwards.)\n\nNOTE: Arrows and holograms when building indicate Head Lift direction.\nNOTE: Head Lift does not stack, so space between Pumps is recommended.", + "className": "Desc_PipelinePumpMk2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 8, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_TrainDockingStation_C": { + "slug": "freight-platform", + "icon": "desc-traindockingstation-c", + "name": "Freight Platform", + "description": "Loads and unloads Freight Cars that stop at the Freight Platform.\nLoading and unloading options can be set by configuring the building.\nSnaps to other Platforms and Stations.\nNeeds to be connected to a powered Railway to function.", + "className": "Desc_TrainDockingStation_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 50, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_TrainDockingStationLiquid_C": { + "slug": "fluid-freight-platform", + "icon": "desc-traindockingstationliquid-c", + "name": "Fluid Freight Platform", + "description": "Loads and unloads Freight Cars that stop at the Freight Platform.\nLoading and unloading options can be set by configuring the building.\nSnaps to other Platforms and Stations.\nNeeds to be connected to a powered Railway to function.", + "className": "Desc_TrainDockingStationLiquid_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 50, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_TrainPlatformEmpty_C": { + "slug": "empty-platform", + "icon": "desc-trainplatformempty-c", + "name": "Empty Platform", + "description": "Creates empty space where necessary.", + "className": "Desc_TrainPlatformEmpty_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_TrainPlatformEmpty_02_C": { + "slug": "empty-platform-with-catwalk", + "icon": "desc-trainplatformempty-02-c", + "name": "Empty Platform With Catwalk", + "description": "Creates empty space where necessary.", + "className": "Desc_TrainPlatformEmpty_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_TrainStation_C": { + "slug": "train-station", + "icon": "desc-trainstation-c", + "name": "Train Station", + "description": "Serves as a hub for Locomotives, which can be set to navigate to and stop at a Train Station.\nYou can connect power to a Train Station to power up the trains on the Railway as well as feed power to other stations.", + "className": "Desc_TrainStation_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 50, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConveyorBeltMk4_C": { + "slug": "conveyor-belt-mk-4", + "icon": "desc-conveyorbeltmk4-c", + "name": "Conveyor Belt Mk.4", + "description": "Transports up to 480 resources per minute. Used to move resources between buildings.", + "className": "Desc_ConveyorBeltMk4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConveyorLiftMk4_C": { + "slug": "conveyor-lift-mk-4", + "icon": "desc-conveyorliftmk4-c", + "name": "Conveyor Lift Mk.4", + "description": "Transports up to 480 resources per minute. Used to move resources between floors.", + "className": "Desc_ConveyorLiftMk4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_GeneratorFuel_C": { + "slug": "fuel-powered-generator", + "icon": "desc-generatorfuel-c", + "name": "Fuel-Powered Generator", + "description": "Consumes Fuel to generate electricity for the power grid.\nHas a Pipeline input port that allows the Fuel supply to be automated.\n\nCaution: Always generates power at the set clock speed. Shuts down if fuel requirements are not met.", + "className": "Desc_GeneratorFuel_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_IndustrialTank_C": { + "slug": "industrial-fluid-buffer", + "icon": "desc-industrialtank-c", + "name": "Industrial Fluid Buffer", + "description": "Holds up to 2400 m³ of fluid.\nHas Pipeline input and output ports.", + "className": "Desc_IndustrialTank_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConveyorBeltMk3_C": { + "slug": "conveyor-belt-mk-3", + "icon": "desc-conveyorbeltmk3-c", + "name": "Conveyor Belt Mk.3", + "description": "Transports up to 270 resources per minute. Used to move resources between buildings.", + "className": "Desc_ConveyorBeltMk3_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConveyorLiftMk3_C": { + "slug": "conveyor-lift-mk-3", + "icon": "desc-conveyorliftmk3-c", + "name": "Conveyor Lift Mk.3", + "description": "Transports up to 270 resources per minute. Used to move resources between floors.", + "className": "Desc_ConveyorLiftMk3_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_StorageContainerMk2_C": { + "slug": "industrial-storage-container", + "icon": "desc-storagecontainermk2-c", + "name": "Industrial Storage Container", + "description": "Contains 48 slots for storing large amounts of items.\nHas 2 Conveyor Belt input ports and 2 Conveyor Belt output ports.", + "className": "Desc_StorageContainerMk2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_BlueprintDesigner_C": { + "slug": "blueprint-designer-mk-1", + "icon": "desc-blueprintdesigner-c", + "name": "Blueprint Designer Mk.1", + "description": "The Blueprint Designer is used to create custom factory designs and save them as Blueprints.\nBlueprints can be accessed from the Blueprint tab of the Build Menu.\n\nNote that buildings can only be placed in the Blueprint Designer if they are fully within the boundary frame.\n\nDimensions: 32 m x 32 m x 32 m", + "className": "Desc_BlueprintDesigner_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PipeHyperStart_C": { + "slug": "hypertube-entrance", + "icon": "desc-pipehyperstart-c", + "name": "Hypertube Entrance", + "description": "Powers up a Hypertube system and allows it to be entered.", + "className": "Desc_PipeHyperStart_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 10, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_HyperTubeWallSupport_C": { + "slug": "hypertube-wall-support", + "icon": "desc-hypertubewallsupport-c", + "name": "Hypertube Wall Support", + "description": "Attaches to Walls.\nSupports Hypertubes, allowing them to stretch over longer distances.", + "className": "Desc_HyperTubeWallSupport_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PipeHyper_C": { + "slug": "hypertube", + "icon": "desc-pipehyper-c", + "name": "Hypertube", + "description": "Transports FICSIT employees.\nA Hypertube system cannot be powered up or used until a Hypertube Entrance is attached.", + "className": "Desc_PipeHyper_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PowerStorageMk1_C": { + "slug": "power-storage", + "icon": "desc-powerstoragemk1-c", + "name": "Power Storage", + "description": "Connects to a power grid to store excess power produced. The stored power can be harnessed if power grid consumption exceeds production.\n\nStorage Capacity: 100 MWh (100 MW for 1 hour)\nMaximum Charge Rate: 100 MW\nMaximum Discharge Rate: Unlimited", + "className": "Desc_PowerStorageMk1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PowerTower_C": { + "slug": "power-tower", + "icon": "desc-powertower-c", + "name": "Power Tower", + "description": "Helps span Power Lines across greater distances.\nThere is an additional power connector at the bottom of the Power Tower to connect it to other buildings, such as Power Poles.", + "className": "Desc_PowerTower_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PowerTowerPlatform_C": { + "slug": "power-tower-platform", + "icon": "desc-powertowerplatform-c", + "name": "Power Tower Platform", + "description": "Helps span Power Lines across greater distances.\nThere is an additional power connector at the bottom of the Power Tower to connect it to other buildings, such as Power Poles.\n\nNote: This Power Tower variant includes a ladder and platform for improved utility.", + "className": "Desc_PowerTowerPlatform_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_TruckStation_C": { + "slug": "truck-station", + "icon": "desc-truckstation-c", + "name": "Truck Station", + "description": "Sends or receives resources to/from vehicles.\n\nHas 48 inventory slots.\n\nTransfers up to 120 stacks per minute to/from docked vehicles. \nAlways refuels vehicles if it has access to a matching fuel type.", + "className": "Desc_TruckStation_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 20, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConveyorBeltMk2_C": { + "slug": "conveyor-belt-mk-2", + "icon": "desc-conveyorbeltmk2-c", + "name": "Conveyor Belt Mk.2", + "description": "Transports up to 120 resources per minute. Used to move resources between buildings.", + "className": "Desc_ConveyorBeltMk2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConveyorLiftMk2_C": { + "slug": "conveyor-lift-mk-2", + "icon": "desc-conveyorliftmk2-c", + "name": "Conveyor Lift Mk.2", + "description": "Transports up to 120 resources per minute. Used to move resources between floors.", + "className": "Desc_ConveyorLiftMk2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_JumpPadAdjustable_C": { + "slug": "jump-pad", + "icon": "desc-jumppadadjustable-c", + "name": "Jump Pad", + "description": "Launches pioneers for quick, vertical traversal.\nThe launch angle can be adjusted while building.\nCaution: Be sure to land safely!", + "className": "Desc_JumpPadAdjustable_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 5, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_LandingPad_C": { + "slug": "u-jelly-landing-pad", + "icon": "desc-landingpad-c", + "name": "U-Jelly Landing Pad", + "description": "Generates a speed-dampening jelly.\nGuarantees a safe landing.", + "className": "Desc_LandingPad_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 5, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Mam_C": { + "slug": "mam", + "icon": "desc-mam-c", + "name": "MAM", + "description": "The Molecular Analysis Machine is used to analyze new and exotic materials found on alien planets.\nThrough the MAM, R&D will assist pioneers in turning any valuable data into usable research options and new technologies.", + "className": "Desc_Mam_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_StoragePlayer_C": { + "slug": "personal-storage-box", + "icon": "desc-storageplayer-c", + "name": "Personal Storage Box", + "description": "Contains 25 slots for storing large amounts of items.", + "className": "Desc_StoragePlayer_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConveyorAttachmentMerger_C": { + "slug": "conveyor-merger", + "icon": "desc-conveyorattachmentmerger-c", + "name": "Conveyor Merger", + "description": "Merges up to three Conveyor Belts into one.", + "className": "Desc_ConveyorAttachmentMerger_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConveyorAttachmentSplitter_C": { + "slug": "conveyor-splitter", + "icon": "desc-conveyorattachmentsplitter-c", + "name": "Conveyor Splitter", + "description": "Splits one Conveyor Belt into two or three. \nUseful for diverting parts and resources away from backlogged Conveyor Belts.", + "className": "Desc_ConveyorAttachmentSplitter_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConveyorLiftMk1_C": { + "slug": "conveyor-lift-mk-1", + "icon": "desc-conveyorliftmk1-c", + "name": "Conveyor Lift Mk.1", + "description": "Transports up to 60 resources per minute. Used to move resources between floors.", + "className": "Desc_ConveyorLiftMk1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddle_Ficsit_4x1_C": { + "slug": "half-foundation-1m-ficsit", + "icon": "desc-quarterpipemiddle-ficsit-4x1-c", + "name": "Half Foundation (1 m) (FICSIT)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_QuarterPipeMiddle_Ficsit_4x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddle_Ficsit_4x2_C": { + "slug": "half-foundation-2m-ficsit", + "icon": "desc-quarterpipemiddle-ficsit-4x2-c", + "name": "Half Foundation (2 m) (FICSIT)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_QuarterPipeMiddle_Ficsit_4x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddle_Ficsit_4x4_C": { + "slug": "half-foundation-4m-ficsit", + "icon": "desc-quarterpipemiddle-ficsit-4x4-c", + "name": "Half Foundation (4 m) (FICSIT)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_QuarterPipeMiddle_Ficsit_4x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleInCorner_Ficsit_8x1_C": { + "slug": "inner-corner-extension-1m-ficsit", + "icon": "desc-quarterpipemiddleincorner-ficsit-8x1-c", + "name": "Inner Corner Extension (1 m) (FICSIT)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 1 m", + "className": "Desc_QuarterPipeMiddleInCorner_Ficsit_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleInCorner_Ficsit_8x2_C": { + "slug": "inner-corner-extension-2m-ficsit", + "icon": "desc-quarterpipemiddleincorner-ficsit-8x2-c", + "name": "Inner Corner Extension (2 m) (FICSIT)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 2 m", + "className": "Desc_QuarterPipeMiddleInCorner_Ficsit_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleInCorner_Ficsit_8x4_C": { + "slug": "inner-corner-extension-4m-ficsit", + "icon": "desc-quarterpipemiddleincorner-ficsit-8x4-c", + "name": "Inner Corner Extension (4 m) (FICSIT)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_QuarterPipeMiddleInCorner_Ficsit_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleOutCorner_Ficsit_4x1_C": { + "slug": "outer-corner-extension-1m-ficsit", + "icon": "desc-quarterpipemiddleoutcorner-ficsit-4x1-c", + "name": "Outer Corner Extension (1 m) (FICSIT)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 4 m x 1 m", + "className": "Desc_QuarterPipeMiddleOutCorner_Ficsit_4x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleOutCorner_Ficsit_4x2_C": { + "slug": "outer-corner-extension-2m-ficsit", + "icon": "desc-quarterpipemiddleoutcorner-ficsit-4x2-c", + "name": "Outer Corner Extension (2 m) (FICSIT)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 4 m x 2 m", + "className": "Desc_QuarterPipeMiddleOutCorner_Ficsit_4x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleOutCorner_Ficsit_4x4_C": { + "slug": "outer-corner-extension-4m-ficsit", + "icon": "desc-quarterpipemiddleoutcorner-ficsit-4x4-c", + "name": "Outer Corner Extension (4 m) (FICSIT)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 4 m x 4 m", + "className": "Desc_QuarterPipeMiddleOutCorner_Ficsit_4x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Stair_FicsitSet_8x1_01_C": { + "slug": "foundation-stairs-1-m-ficsit", + "icon": "desc-stair-ficsitset-8x1-01-c", + "name": "Foundation Stairs (1 m) (FICSIT)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nFoundation Stairs are just Ramps with extra steps.\n\nSize: 8 m x 1 m", + "className": "Desc_Stair_FicsitSet_8x1_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Stair_FicsitSet_8x2_01_C": { + "slug": "foundation-stairs-2-m-ficsit", + "icon": "desc-stair-ficsitset-8x2-01-c", + "name": "Foundation Stairs (2 m) (FICSIT)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nFoundation Stairs are just Ramps with extra steps.\n\nSize: 8 m x 2 m", + "className": "Desc_Stair_FicsitSet_8x2_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Stair_FicsitSet_8x4_01_C": { + "slug": "foundation-stairs-4-m-ficsit", + "icon": "desc-stair-ficsitset-8x4-01-c", + "name": "Foundation Stairs (4 m) (FICSIT)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nFoundation Stairs are just Ramps with extra steps.\n\nSize: 8 m x 4 m", + "className": "Desc_Stair_FicsitSet_8x4_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Foundation_8x1_01_C": { + "slug": "foundation-1m", + "icon": "desc-foundation-8x1-01-c", + "name": "Foundation (1 m)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_Foundation_8x1_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Foundation_8x2_01_C": { + "slug": "foundation-2m", + "icon": "desc-foundation-8x2-01-c", + "name": "Foundation (2 m)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_Foundation_8x2_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Foundation_8x4_01_C": { + "slug": "foundation-4m", + "icon": "desc-foundation-8x4-01-c", + "name": "Foundation (4 m)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_Foundation_8x4_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipe_C": { + "slug": "quarter-pipe", + "icon": "desc-quarterpipe-c", + "name": "Quarter Pipe", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_QuarterPipe_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipe_02_C": { + "slug": "inverted-quarter-pipe", + "icon": "desc-quarterpipe-02-c", + "name": "Inverted Quarter Pipe", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_QuarterPipe_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeCorner_01_C": { + "slug": "inner-corner-quarter-pipe", + "icon": "desc-quarterpipecorner-01-c", + "name": "Inner Corner Quarter Pipe", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_QuarterPipeCorner_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeCorner_02_C": { + "slug": "inverted-inner-corner-quarter-pipe", + "icon": "desc-quarterpipecorner-02-c", + "name": "Inverted Inner Corner Quarter Pipe", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_QuarterPipeCorner_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeCorner_03_C": { + "slug": "outer-corner-quarter-pipe", + "icon": "desc-quarterpipecorner-03-c", + "name": "Outer Corner Quarter Pipe", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_QuarterPipeCorner_03_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeCorner_04_C": { + "slug": "inverted-outer-corner-quarter-pipe", + "icon": "desc-quarterpipecorner-04-c", + "name": "Inverted Outer Corner Quarter Pipe", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_QuarterPipeCorner_04_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_8x1_01_C": { + "slug": "ramp-1m", + "icon": "desc-ramp-8x1-01-c", + "name": "Ramp (1 m)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_Ramp_8x1_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_8x2_01_C": { + "slug": "ramp-2m", + "icon": "desc-ramp-8x2-01-c", + "name": "Ramp (2 m)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_Ramp_8x2_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_8x4_01_C": { + "slug": "ramp-4m", + "icon": "desc-ramp-8x4-01-c", + "name": "Ramp (4 m)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_Ramp_8x4_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_8x4_Inverted_01_C": { + "slug": "inverted-ramp-4m", + "icon": "desc-ramp-8x4-inverted-01-c", + "name": "Inverted Ramp (4 m)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_Ramp_8x4_Inverted_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_8x8x8_C": { + "slug": "double-ramp-8m", + "icon": "desc-ramp-8x8x8-c", + "name": "Double Ramp (8 m)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 8 m", + "className": "Desc_Ramp_8x8x8_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Diagonal_8x1_01_C": { + "slug": "down-corner-ramp-1m", + "icon": "desc-ramp-diagonal-8x1-01-c", + "name": "Down Corner Ramp (1 m)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_Ramp_Diagonal_8x1_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Diagonal_8x1_02_C": { + "slug": "up-corner-ramp-1m", + "icon": "desc-ramp-diagonal-8x1-02-c", + "name": "Up Corner Ramp (1 m)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_Ramp_Diagonal_8x1_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Diagonal_8x2_01_C": { + "slug": "down-corner-ramp-2m", + "icon": "desc-ramp-diagonal-8x2-01-c", + "name": "Down Corner Ramp (2 m)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_Ramp_Diagonal_8x2_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Diagonal_8x2_02_C": { + "slug": "up-corner-ramp-2m", + "icon": "desc-ramp-diagonal-8x2-02-c", + "name": "Up Corner Ramp (2 m)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_Ramp_Diagonal_8x2_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Diagonal_8x4_01_C": { + "slug": "down-corner-ramp-4m", + "icon": "desc-ramp-diagonal-8x4-01-c", + "name": "Down Corner Ramp (4 m)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_Ramp_Diagonal_8x4_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Diagonal_8x4_02_C": { + "slug": "up-corner-ramp-4m", + "icon": "desc-ramp-diagonal-8x4-02-c", + "name": "Up Corner Ramp (4 m)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_Ramp_Diagonal_8x4_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampDouble_C": { + "slug": "double-ramp-4m", + "icon": "desc-rampdouble-c", + "name": "Double Ramp (4 m)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_RampDouble_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampDouble_8x1_C": { + "slug": "double-ramp-2m", + "icon": "desc-rampdouble-8x1-c", + "name": "Double Ramp (2 m)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_RampDouble_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampInverted_8x1_C": { + "slug": "inverted-ramp-1m", + "icon": "desc-rampinverted-8x1-c", + "name": "Inverted Ramp (1 m)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_RampInverted_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampInverted_8x1_Corner_01_C": { + "slug": "inverted-up-corner-1m", + "icon": "desc-rampinverted-8x1-corner-01-c", + "name": "Inverted Up Corner (1 m)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_RampInverted_8x1_Corner_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampInverted_8x1_Corner_02_C": { + "slug": "inverted-down-corner-1m", + "icon": "desc-rampinverted-8x1-corner-02-c", + "name": "Inverted Down Corner (1 m)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_RampInverted_8x1_Corner_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampInverted_8x2_01_C": { + "slug": "inverted-ramp-2m", + "icon": "desc-rampinverted-8x2-01-c", + "name": "Inverted Ramp (2 m)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_RampInverted_8x2_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampInverted_8x2_Corner_01_C": { + "slug": "inverted-up-corner-2m", + "icon": "desc-rampinverted-8x2-corner-01-c", + "name": "Inverted Up Corner (2 m)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_RampInverted_8x2_Corner_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampInverted_8x2_Corner_02_C": { + "slug": "inverted-down-corner-2m", + "icon": "desc-rampinverted-8x2-corner-02-c", + "name": "Inverted Down Corner (2 m)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_RampInverted_8x2_Corner_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampInverted_8x4_Corner_01_C": { + "slug": "inverted-up-corner-4m", + "icon": "desc-rampinverted-8x4-corner-01-c", + "name": "Inverted Up Corner (4 m)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_RampInverted_8x4_Corner_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampInverted_8x4_Corner_02_C": { + "slug": "inverted-down-corner-4m", + "icon": "desc-rampinverted-8x4-corner-02-c", + "name": "Inverted Down Corner (4 m)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_RampInverted_8x4_Corner_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_LookoutTower_C": { + "slug": "lookout-tower", + "icon": "desc-lookouttower-c", + "name": "Lookout Tower", + "description": "Provides a good vantage point to facilitate factory construction.", + "className": "Desc_LookoutTower_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_DownQuarterPipe_Concrete_8x4_C": { + "slug": "inverted-quarter-pipe-concrete", + "icon": "desc-downquarterpipe-concrete-8x4-c", + "name": "Inverted Quarter Pipe (Concrete)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_DownQuarterPipe_Concrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_DownQuarterPipeInCorner_Concrete_8x4_C": { + "slug": "inverted-inner-corner-quarter-pipe-concrete", + "icon": "desc-downquarterpipeincorner-concrete-8x4-c", + "name": "Inverted Inner Corner Quarter Pipe (Concrete)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_DownQuarterPipeInCorner_Concrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_DownQuarterPipeOutCorner_Concrete_8x4_C": { + "slug": "inverted-outer-corner-quarter-pipe-concrete", + "icon": "desc-downquarterpipeoutcorner-concrete-8x4-c", + "name": "Inverted Outer Corner Quarter Pipe (Concrete)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_DownQuarterPipeOutCorner_Concrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Foundation_Concrete_8x1_C": { + "slug": "foundation-1m-concrete", + "icon": "desc-foundation-concrete-8x1-c", + "name": "Foundation (1 m) (Concrete)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_Foundation_Concrete_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Foundation_Concrete_8x2_C": { + "slug": "foundation-2m-concrete", + "icon": "desc-foundation-concrete-8x2-c", + "name": "Foundation (2 m) (Concrete)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_Foundation_Concrete_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Foundation_Concrete_8x4_C": { + "slug": "foundation-4m-concrete", + "icon": "desc-foundation-concrete-8x4-c", + "name": "Foundation (4 m) (Concrete)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_Foundation_Concrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_Concrete_8x1_C": { + "slug": "inverted-ramp-1m-concrete", + "icon": "desc-invertedramp-concrete-8x1-c", + "name": "Inverted Ramp (1 m) (Concrete)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_InvertedRamp_Concrete_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_Concrete_8x2_C": { + "slug": "inverted-ramp-2m-concrete", + "icon": "desc-invertedramp-concrete-8x2-c", + "name": "Inverted Ramp (2 m) (Concrete)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_InvertedRamp_Concrete_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_Concrete_8x4_C": { + "slug": "inverted-ramp-4m-concrete", + "icon": "desc-invertedramp-concrete-8x4-c", + "name": "Inverted Ramp (4 m) (Concrete)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_InvertedRamp_Concrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_DCorner_Concrete_8x1_C": { + "slug": "inverted-down-corner-1m-concrete", + "icon": "desc-invertedramp-dcorner-concrete-8x1-c", + "name": "Inverted Down Corner (1 m) (Concrete)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_InvertedRamp_DCorner_Concrete_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_DCorner_Concrete_8x2_C": { + "slug": "inverted-down-corner-2m-concrete", + "icon": "desc-invertedramp-dcorner-concrete-8x2-c", + "name": "Inverted Down Corner (2 m) (Concrete)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_InvertedRamp_DCorner_Concrete_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_DCorner_Concrete_8x4_C": { + "slug": "inverted-down-corner-4m-concrete", + "icon": "desc-invertedramp-dcorner-concrete-8x4-c", + "name": "Inverted Down Corner (4 m) (Concrete)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_InvertedRamp_DCorner_Concrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_UCorner_Concrete_8x1_C": { + "slug": "inverted-up-corner-1m-concrete", + "icon": "desc-invertedramp-ucorner-concrete-8x1-c", + "name": "Inverted Up Corner (1 m) (Concrete)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_InvertedRamp_UCorner_Concrete_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_UCorner_Concrete_8x2_C": { + "slug": "inverted-up-corner-2m-concrete", + "icon": "desc-invertedramp-ucorner-concrete-8x2-c", + "name": "Inverted Up Corner (2 m) (Concrete)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_InvertedRamp_UCorner_Concrete_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_UCorner_Concrete_8x4_C": { + "slug": "inverted-up-corner-4m-concrete", + "icon": "desc-invertedramp-ucorner-concrete-8x4-c", + "name": "Inverted Up Corner (4 m) (Concrete)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_InvertedRamp_UCorner_Concrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipe_Concrete_8x4_C": { + "slug": "quarter-pipe-concrete", + "icon": "desc-quarterpipe-concrete-8x4-c", + "name": "Quarter Pipe (Concrete)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_QuarterPipe_Concrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeInCorner_Concrete_8x4_C": { + "slug": "inner-corner-quarter-pipe-concrete", + "icon": "desc-quarterpipeincorner-concrete-8x4-c", + "name": "Inner Corner Quarter Pipe (Concrete)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_QuarterPipeInCorner_Concrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddle_Concrete_8x1_C": { + "slug": "half-foundation-1m-concrete", + "icon": "desc-quarterpipemiddle-concrete-8x1-c", + "name": "Half Foundation (1 m) (Concrete)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_QuarterPipeMiddle_Concrete_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddle_Concrete_8x2_C": { + "slug": "half-foundation-2m-concrete", + "icon": "desc-quarterpipemiddle-concrete-8x2-c", + "name": "Half Foundation (2 m) (Concrete)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_QuarterPipeMiddle_Concrete_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddle_Concrete_8x4_C": { + "slug": "half-foundation-4m-concrete", + "icon": "desc-quarterpipemiddle-concrete-8x4-c", + "name": "Half Foundation (4 m) (Concrete)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_QuarterPipeMiddle_Concrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleInCorner_Concrete_8x1_C": { + "slug": "inner-corner-extension-1m-concrete", + "icon": "desc-quarterpipemiddleincorner-concrete-8x1-c", + "name": "Inner Corner Extension (1 m) (Concrete)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 1 m", + "className": "Desc_QuarterPipeMiddleInCorner_Concrete_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleInCorner_Concrete_8x2_C": { + "slug": "inner-corner-extension-2m-concrete", + "icon": "desc-quarterpipemiddleincorner-concrete-8x2-c", + "name": "Inner Corner Extension (2 m) (Concrete)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 2 m", + "className": "Desc_QuarterPipeMiddleInCorner_Concrete_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleInCorner_Concrete_8x4_C": { + "slug": "inner-corner-extension-4m-concrete", + "icon": "desc-quarterpipemiddleincorner-concrete-8x4-c", + "name": "Inner Corner Extension (4 m) (Concrete)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_QuarterPipeMiddleInCorner_Concrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleOutCorner_Concrete_4x1_C": { + "slug": "outer-corner-extension-1m-concrete", + "icon": "desc-quarterpipemiddleoutcorner-concrete-4x1-c", + "name": "Outer Corner Extension (1 m) (Concrete)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 4 m x 1 m", + "className": "Desc_QuarterPipeMiddleOutCorner_Concrete_4x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleOutCorner_Concrete_4x2_C": { + "slug": "outer-corner-extension-2m-concrete", + "icon": "desc-quarterpipemiddleoutcorner-concrete-4x2-c", + "name": "Outer Corner Extension (2 m) (Concrete)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 4 m x 2 m", + "className": "Desc_QuarterPipeMiddleOutCorner_Concrete_4x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleOutCorner_Concrete_4x4_C": { + "slug": "outer-corner-extension-4m-concrete", + "icon": "desc-quarterpipemiddleoutcorner-concrete-4x4-c", + "name": "Outer Corner Extension (4 m) (Concrete)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 4 m x 4 m", + "className": "Desc_QuarterPipeMiddleOutCorner_Concrete_4x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeOutCorner_Concrete_8x4_C": { + "slug": "outer-corner-quarter-pipe-concrete", + "icon": "desc-quarterpipeoutcorner-concrete-8x4-c", + "name": "Outer Corner Quarter Pipe (Concrete)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_QuarterPipeOutCorner_Concrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Concrete_8x1_C": { + "slug": "ramp-1m-concrete", + "icon": "desc-ramp-concrete-8x1-c", + "name": "Ramp (1 m) (Concrete)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_Ramp_Concrete_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Concrete_8x2_C": { + "slug": "ramp-2m-concrete", + "icon": "desc-ramp-concrete-8x2-c", + "name": "Ramp (2 m) (Concrete)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_Ramp_Concrete_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Concrete_8x4_C": { + "slug": "ramp-4m-concrete", + "icon": "desc-ramp-concrete-8x4-c", + "name": "Ramp (4 m) (Concrete)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_Ramp_Concrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_DownCorner_Concrete_8x1_C": { + "slug": "down-corner-ramp-1m-concrete", + "icon": "desc-ramp-downcorner-concrete-8x1-c", + "name": "Down Corner Ramp (1 m) (Concrete)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_Ramp_DownCorner_Concrete_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_DownCorner_Concrete_8x2_C": { + "slug": "down-corner-ramp-2m-concrete", + "icon": "desc-ramp-downcorner-concrete-8x2-c", + "name": "Down Corner Ramp (2 m) (Concrete)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_Ramp_DownCorner_Concrete_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_DownCorner_Concrete_8x4_C": { + "slug": "down-corner-ramp-4m-concrete", + "icon": "desc-ramp-downcorner-concrete-8x4-c", + "name": "Down Corner Ramp (4 m) (Concrete)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_Ramp_DownCorner_Concrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_UpCorner_Concrete_8x1_C": { + "slug": "up-corner-ramp-1m-concrete", + "icon": "desc-ramp-upcorner-concrete-8x1-c", + "name": "Up Corner Ramp (1 m) (Concrete)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_Ramp_UpCorner_Concrete_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_UpCorner_Concrete_8x2_C": { + "slug": "up-corner-ramp-2m-concrete", + "icon": "desc-ramp-upcorner-concrete-8x2-c", + "name": "Up Corner Ramp (2 m) (Concrete)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_Ramp_UpCorner_Concrete_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_UpCorner_Concrete_8x4_C": { + "slug": "up-corner-ramp-4m-concrete", + "icon": "desc-ramp-upcorner-concrete-8x4-c", + "name": "Up Corner Ramp (4 m) (Concrete)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_Ramp_UpCorner_Concrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampDouble_Concrete_8x1_C": { + "slug": "double-ramp-2m-concrete", + "icon": "desc-rampdouble-concrete-8x1-c", + "name": "Double Ramp (2 m) (Concrete)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_RampDouble_Concrete_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampDouble_Concrete_8x2_C": { + "slug": "double-ramp-4m-concrete", + "icon": "desc-rampdouble-concrete-8x2-c", + "name": "Double Ramp (4 m) (Concrete)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_RampDouble_Concrete_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampDouble_Concrete_8x4_C": { + "slug": "double-ramp-8m-concrete", + "icon": "desc-rampdouble-concrete-8x4-c", + "name": "Double Ramp (8 m) (Concrete)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_RampDouble_Concrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Stair_Concrete_8x1_C": { + "slug": "foundation-stairs-1-m-concrete", + "icon": "desc-stair-concrete-8x1-c", + "name": "Foundation Stairs (1 m) (Concrete)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nFoundation Stairs are just Ramps with extra steps.\n\nSize: 8 m x 1 m", + "className": "Desc_Stair_Concrete_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Stair_Concrete_8x2_C": { + "slug": "foundation-stairs-2-m-concrete", + "icon": "desc-stair-concrete-8x2-c", + "name": "Foundation Stairs (2 m) (Concrete)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nFoundation Stairs are just Ramps with extra steps.\n\nSize: 8 m x 2 m", + "className": "Desc_Stair_Concrete_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Stair_Concrete_8x4_C": { + "slug": "foundation-stairs-4-m-concrete", + "icon": "desc-stair-concrete-8x4-c", + "name": "Foundation Stairs (4 m) (Concrete)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nFoundation Stairs are just Ramps with extra steps.\n\nSize: 8 m x 4 m", + "className": "Desc_Stair_Concrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_DownQuarterPipe_Grip_8x4_C": { + "slug": "inverted-quarter-pipe-grip", + "icon": "desc-downquarterpipe-grip-8x4-c", + "name": "Inverted Quarter Pipe (Grip)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_DownQuarterPipe_Grip_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_DownQuarterPipeInCorner_Grip_8x4_C": { + "slug": "inverted-inner-corner-quarter-pipe-grip", + "icon": "desc-downquarterpipeincorner-grip-8x4-c", + "name": "Inverted Inner Corner Quarter Pipe (Grip)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_DownQuarterPipeInCorner_Grip_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_DownQuarterPipeOutCorner_Grip_8x4_C": { + "slug": "inverted-outer-corner-quarter-pipe-grip", + "icon": "desc-downquarterpipeoutcorner-grip-8x4-c", + "name": "Inverted Outer Corner Quarter Pipe (Grip)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_DownQuarterPipeOutCorner_Grip_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Foundation_Metal_8x1_C": { + "slug": "foundation-1m-metal", + "icon": "desc-foundation-metal-8x1-c", + "name": "Foundation (1 m) (Metal)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_Foundation_Metal_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Foundation_Metal_8x2_C": { + "slug": "foundation-2m-metal", + "icon": "desc-foundation-metal-8x2-c", + "name": "Foundation (2 m) (Metal)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_Foundation_Metal_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Foundation_Metal_8x4_C": { + "slug": "foundation-4m-metal", + "icon": "desc-foundation-metal-8x4-c", + "name": "Foundation (4 m) (Metal)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_Foundation_Metal_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_DCorner_Metal_8x1_C": { + "slug": "inverted-down-corner-1m-metal", + "icon": "desc-invertedramp-dcorner-metal-8x1-c", + "name": "Inverted Down Corner (1 m) (Metal)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_InvertedRamp_DCorner_Metal_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_DCorner_Metal_8x2_C": { + "slug": "inverted-down-corner-2m-metal", + "icon": "desc-invertedramp-dcorner-metal-8x2-c", + "name": "Inverted Down Corner (2 m) (Metal)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_InvertedRamp_DCorner_Metal_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_DCorner_Metal_8x4_C": { + "slug": "inverted-down-corner-4m-metal", + "icon": "desc-invertedramp-dcorner-metal-8x4-c", + "name": "Inverted Down Corner (4 m) (Metal)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_InvertedRamp_DCorner_Metal_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_Metal_8x1_C": { + "slug": "inverted-ramp-1m-metal", + "icon": "desc-invertedramp-metal-8x1-c", + "name": "Inverted Ramp (1 m) (Metal)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_InvertedRamp_Metal_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_Metal_8x2_C": { + "slug": "inverted-ramp-2m-metal", + "icon": "desc-invertedramp-metal-8x2-c", + "name": "Inverted Ramp (2 m) (Metal)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_InvertedRamp_Metal_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_Metal_8x4_C": { + "slug": "inverted-ramp-4m-metal", + "icon": "desc-invertedramp-metal-8x4-c", + "name": "Inverted Ramp (4 m) (Metal)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_InvertedRamp_Metal_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_UCorner_Metal_8x1_C": { + "slug": "inverted-up-corner-1m-metal", + "icon": "desc-invertedramp-ucorner-metal-8x1-c", + "name": "Inverted Up Corner (1 m) (Metal)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_InvertedRamp_UCorner_Metal_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_UCorner_Metal_8x2_C": { + "slug": "inverted-up-corner-2m-metal", + "icon": "desc-invertedramp-ucorner-metal-8x2-c", + "name": "Inverted Up Corner (2 m) (Metal)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_InvertedRamp_UCorner_Metal_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_UCorner_Metal_8x4_C": { + "slug": "inverted-up-corner-4m-metal", + "icon": "desc-invertedramp-ucorner-metal-8x4-c", + "name": "Inverted Up Corner (4 m) (Metal)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_InvertedRamp_UCorner_Metal_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipe_Grip_8x4_C": { + "slug": "quarter-pipe-grip", + "icon": "desc-quarterpipe-grip-8x4-c", + "name": "Quarter Pipe (Grip)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_QuarterPipe_Grip_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeInCorner_Grip_8x4_C": { + "slug": "inner-corner-quarter-pipe-grip", + "icon": "desc-quarterpipeincorner-grip-8x4-c", + "name": "Inner Corner Quarter Pipe (Grip)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_QuarterPipeInCorner_Grip_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddle_Grip_8x1_C": { + "slug": "half-foundation-1m-grip", + "icon": "desc-quarterpipemiddle-grip-8x1-c", + "name": "Half Foundation (1 m) (Grip)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_QuarterPipeMiddle_Grip_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddle_Grip_8x2_C": { + "slug": "half-foundation-2m-grip", + "icon": "desc-quarterpipemiddle-grip-8x2-c", + "name": "Half Foundation (2 m) (Grip)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_QuarterPipeMiddle_Grip_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddle_Grip_8x4_C": { + "slug": "half-foundation-4m-grip", + "icon": "desc-quarterpipemiddle-grip-8x4-c", + "name": "Half Foundation (4 m) (Grip)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_QuarterPipeMiddle_Grip_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleInCorner_Grip_8x1_C": { + "slug": "inner-corner-extension-1m-grip", + "icon": "desc-quarterpipemiddleincorner-grip-8x1-c", + "name": "Inner Corner Extension (1 m) (Grip)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 1 m", + "className": "Desc_QuarterPipeMiddleInCorner_Grip_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleInCorner_Grip_8x2_C": { + "slug": "inner-corner-extension-2m-grip", + "icon": "desc-quarterpipemiddleincorner-grip-8x2-c", + "name": "Inner Corner Extension (2 m) (Grip)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 2 m", + "className": "Desc_QuarterPipeMiddleInCorner_Grip_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleInCorner_Grip_8x4_C": { + "slug": "inner-corner-extension-4m-grip", + "icon": "desc-quarterpipemiddleincorner-grip-8x4-c", + "name": "Inner Corner Extension (4 m) (Grip)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_QuarterPipeMiddleInCorner_Grip_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleOutCorner_Grip_4x1_C": { + "slug": "outer-corner-extension-1m-grip", + "icon": "desc-quarterpipemiddleoutcorner-grip-4x1-c", + "name": "Outer Corner Extension (1 m) (Grip)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 4 m x 1 m", + "className": "Desc_QuarterPipeMiddleOutCorner_Grip_4x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleOutCorner_Grip_4x2_C": { + "slug": "outer-corner-extension-2m-grip", + "icon": "desc-quarterpipemiddleoutcorner-grip-4x2-c", + "name": "Outer Corner Extension (2 m) (Grip)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 4 m x 2 m", + "className": "Desc_QuarterPipeMiddleOutCorner_Grip_4x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleOutCorner_Grip_4x4_C": { + "slug": "outer-corner-extension-4m-grip", + "icon": "desc-quarterpipemiddleoutcorner-grip-4x4-c", + "name": "Outer Corner Extension (4 m) (Grip)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 4 m x 4 m", + "className": "Desc_QuarterPipeMiddleOutCorner_Grip_4x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeOutCorner_Grip_8x4_C": { + "slug": "outer-corner-quarter-pipe-grip", + "icon": "desc-quarterpipeoutcorner-grip-8x4-c", + "name": "Outer Corner Quarter Pipe (Grip)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_QuarterPipeOutCorner_Grip_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_DownCorner_Metal_8x1_C": { + "slug": "down-corner-ramp-1m-metal", + "icon": "desc-ramp-downcorner-metal-8x1-c", + "name": "Down Corner Ramp (1 m) (Metal)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_Ramp_DownCorner_Metal_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_DownCorner_Metal_8x2_C": { + "slug": "down-corner-ramp-2m-metal", + "icon": "desc-ramp-downcorner-metal-8x2-c", + "name": "Down Corner Ramp (2 m) (Metal)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_Ramp_DownCorner_Metal_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_DownCorner_Metal_8x4_C": { + "slug": "down-corner-ramp-4m-metal", + "icon": "desc-ramp-downcorner-metal-8x4-c", + "name": "Down Corner Ramp (4 m) (Metal)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_Ramp_DownCorner_Metal_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Metal_8x1_C": { + "slug": "ramp-1m-metal", + "icon": "desc-ramp-metal-8x1-c", + "name": "Ramp (1 m) (Metal)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_Ramp_Metal_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Metal_8x2_C": { + "slug": "ramp-2m-metal", + "icon": "desc-ramp-metal-8x2-c", + "name": "Ramp (2 m) (Metal)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_Ramp_Metal_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Metal_8x4_C": { + "slug": "ramp-4m-metal", + "icon": "desc-ramp-metal-8x4-c", + "name": "Ramp (4 m) (Metal)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_Ramp_Metal_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_UpCorner_Metal_8x1_C": { + "slug": "up-corner-ramp-1m-metal", + "icon": "desc-ramp-upcorner-metal-8x1-c", + "name": "Up Corner Ramp (1 m) (Metal)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_Ramp_UpCorner_Metal_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_UpCorner_Metal_8x2_C": { + "slug": "up-corner-ramp-2m-metal", + "icon": "desc-ramp-upcorner-metal-8x2-c", + "name": "Up Corner Ramp (2 m) (Metal)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_Ramp_UpCorner_Metal_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_UpCorner_Metal_8x4_C": { + "slug": "up-corner-ramp-4m-metal", + "icon": "desc-ramp-upcorner-metal-8x4-c", + "name": "Up Corner Ramp (4 m) (Metal)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_Ramp_UpCorner_Metal_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampDouble_Metal_8x1_C": { + "slug": "double-ramp-2m-metal", + "icon": "desc-rampdouble-metal-8x1-c", + "name": "Double Ramp (2 m) (Metal)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_RampDouble_Metal_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampDouble_Metal_8x2_C": { + "slug": "double-ramp-4m-metal", + "icon": "desc-rampdouble-metal-8x2-c", + "name": "Double Ramp (4 m) (Metal)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_RampDouble_Metal_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampDouble_Metal_8x4_C": { + "slug": "double-ramp-8m-metal", + "icon": "desc-rampdouble-metal-8x4-c", + "name": "Double Ramp (8 m) (Metal)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_RampDouble_Metal_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Stair_GripMetal_8x1_C": { + "slug": "foundation-stairs-1-m-metal", + "icon": "desc-stair-gripmetal-8x1-c", + "name": "Foundation Stairs (1 m) (Metal)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nFoundation Stairs are just Ramps with extra steps.\n\nSize: 8 m x 1 m", + "className": "Desc_Stair_GripMetal_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Stair_GripMetal_8x2_C": { + "slug": "foundation-stairs-2-m-metal", + "icon": "desc-stair-gripmetal-8x2-c", + "name": "Foundation Stairs (2 m) (Metal)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nFoundation Stairs are just Ramps with extra steps.\n\nSize: 8 m x 2 m", + "className": "Desc_Stair_GripMetal_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Stair_GripMetal_8x4_C": { + "slug": "foundation-stairs-4-m-metal", + "icon": "desc-stair-gripmetal-8x4-c", + "name": "Foundation Stairs (4 m) (Metal)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nFoundation Stairs are just Ramps with extra steps.\n\nSize: 8 m x 4 m", + "className": "Desc_Stair_GripMetal_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_DownQuarterPipe_ConcretePolished_8x4_C": { + "slug": "inverted-quarter-pipe-polished", + "icon": "desc-downquarterpipe-concretepolished-8x4-c", + "name": "Inverted Quarter Pipe (Polished)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_DownQuarterPipe_ConcretePolished_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_DownQuarterPipeInCorner_ConcretePolished_8x4_C": { + "slug": "inverted-inner-corner-quarter-pipe-polished", + "icon": "desc-downquarterpipeincorner-concretepolished-8x4-c", + "name": "Inverted Inner Corner Quarter Pipe (Polished)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_DownQuarterPipeInCorner_ConcretePolished_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_DownQuarterPipeOutCorner_ConcretePolished_8x4_C": { + "slug": "inverted-outer-corner-quarter-pipe-polished", + "icon": "desc-downquarterpipeoutcorner-concretepolished-8x4-c", + "name": "Inverted Outer Corner Quarter Pipe (Polished)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_DownQuarterPipeOutCorner_ConcretePolished_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Foundation_ConcretePolished_8x1_C": { + "slug": "foundation-1m-polished", + "icon": "desc-foundation-concretepolished-8x1-c", + "name": "Foundation (1 m) (Polished)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_Foundation_ConcretePolished_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_DCorner_Polished_8x1_C": { + "slug": "inverted-down-corner-1m-polished", + "icon": "desc-invertedramp-dcorner-polished-8x1-c", + "name": "Inverted Down Corner (1 m) (Polished)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_InvertedRamp_DCorner_Polished_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_DCorner_Polished_8x2_C": { + "slug": "inverted-down-corner-2m-polished", + "icon": "desc-invertedramp-dcorner-polished-8x2-c", + "name": "Inverted Down Corner (2 m) (Polished)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_InvertedRamp_DCorner_Polished_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_DCorner_Polished_8x4_C": { + "slug": "inverted-down-corner-4m-polished", + "icon": "desc-invertedramp-dcorner-polished-8x4-c", + "name": "Inverted Down Corner (4 m) (Polished)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_InvertedRamp_DCorner_Polished_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_Polished_8x1_C": { + "slug": "inverted-ramp-1m-polished", + "icon": "desc-invertedramp-polished-8x1-c", + "name": "Inverted Ramp (1 m) (Polished)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_InvertedRamp_Polished_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_Polished_8x2_C": { + "slug": "inverted-ramp-2m-polished", + "icon": "desc-invertedramp-polished-8x2-c", + "name": "Inverted Ramp (2 m) (Polished)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_InvertedRamp_Polished_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_Polished_8x4_C": { + "slug": "inverted-ramp-4m-polished", + "icon": "desc-invertedramp-polished-8x4-c", + "name": "Inverted Ramp (4 m) (Polished)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_InvertedRamp_Polished_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_UCorner_Polished_8x1_C": { + "slug": "inverted-up-corner-1m-polished", + "icon": "desc-invertedramp-ucorner-polished-8x1-c", + "name": "Inverted Up Corner (1 m) (Polished)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_InvertedRamp_UCorner_Polished_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_UCorner_Polished_8x2_C": { + "slug": "inverted-up-corner-2m-polished", + "icon": "desc-invertedramp-ucorner-polished-8x2-c", + "name": "Inverted Up Corner (2 m) (Polished)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_InvertedRamp_UCorner_Polished_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_UCorner_Polished_8x4_C": { + "slug": "inverted-up-corner-4m-polished", + "icon": "desc-invertedramp-ucorner-polished-8x4-c", + "name": "Inverted Up Corner (4 m) (Polished)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_InvertedRamp_UCorner_Polished_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipe_ConcretePolished_8x4_C": { + "slug": "quarter-pipe-polished", + "icon": "desc-quarterpipe-concretepolished-8x4-c", + "name": "Quarter Pipe (Polished)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_QuarterPipe_ConcretePolished_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeInCorner_ConcretePolished_8x4_C": { + "slug": "inner-corner-quarter-pipe-polished", + "icon": "desc-quarterpipeincorner-concretepolished-8x4-c", + "name": "Inner Corner Quarter Pipe (Polished)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_QuarterPipeInCorner_ConcretePolished_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddle_PolishedConcrete_8x1_C": { + "slug": "half-foundation-1m-polished", + "icon": "desc-quarterpipemiddle-polishedconcrete-8x1-c", + "name": "Half Foundation (1 m) (Polished)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_QuarterPipeMiddle_PolishedConcrete_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddle_PolishedConcrete_8x2_C": { + "slug": "half-foundation-2m-polished", + "icon": "desc-quarterpipemiddle-polishedconcrete-8x2-c", + "name": "Half Foundation (2 m) (Polished)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_QuarterPipeMiddle_PolishedConcrete_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddle_PolishedConcrete_8x4_C": { + "slug": "half-foundation-4m-polished", + "icon": "desc-quarterpipemiddle-polishedconcrete-8x4-c", + "name": "Half Foundation (4 m) (Polished)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_QuarterPipeMiddle_PolishedConcrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleInCorner_PolishedConcrete_8x1_C": { + "slug": "inner-corner-extension-1m-polished", + "icon": "desc-quarterpipemiddleincorner-polishedconcrete-8x1-c", + "name": "Inner Corner Extension (1 m) (Polished)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 1 m", + "className": "Desc_QuarterPipeMiddleInCorner_PolishedConcrete_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleInCorner_PolishedConcrete_8x2_C": { + "slug": "inner-corner-extension-2m-polished", + "icon": "desc-quarterpipemiddleincorner-polishedconcrete-8x2-c", + "name": "Inner Corner Extension (2 m) (Polished)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 2 m", + "className": "Desc_QuarterPipeMiddleInCorner_PolishedConcrete_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleInCorner_PolishedConcrete_8x4_C": { + "slug": "inner-corner-extension-4m-polished", + "icon": "desc-quarterpipemiddleincorner-polishedconcrete-8x4-c", + "name": "Inner Corner Extension (4 m) (Polished)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_QuarterPipeMiddleInCorner_PolishedConcrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleOutCorner_PolishedConcrete_4x1_C": { + "slug": "outer-corner-extension-1m-polished", + "icon": "desc-quarterpipemiddleoutcorner-polishedconcrete-4x1-c", + "name": "Outer Corner Extension (1 m) (Polished)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 4 m x 1 m", + "className": "Desc_QuarterPipeMiddleOutCorner_PolishedConcrete_4x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleOutCorner_PolishedConcrete_4x2_C": { + "slug": "outer-corner-extension-2m-polished", + "icon": "desc-quarterpipemiddleoutcorner-polishedconcrete-4x2-c", + "name": "Outer Corner Extension (2 m) (Polished)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 4 m x 2 m", + "className": "Desc_QuarterPipeMiddleOutCorner_PolishedConcrete_4x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleOutCorner_PolishedConcrete_4x4_C": { + "slug": "outer-corner-extension-4m-polished", + "icon": "desc-quarterpipemiddleoutcorner-polishedconcrete-4x4-c", + "name": "Outer Corner Extension (4 m) (Polished)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 4 m x 4 m", + "className": "Desc_QuarterPipeMiddleOutCorner_PolishedConcrete_4x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeOutCorner_ConcretePolished_8x4_C": { + "slug": "outer-corner-quarter-pipe-polished", + "icon": "desc-quarterpipeoutcorner-concretepolished-8x4-c", + "name": "Outer Corner Quarter Pipe (Polished)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_QuarterPipeOutCorner_ConcretePolished_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_DownCorner_Polished_8x1_C": { + "slug": "down-corner-ramp-1m-polished", + "icon": "desc-ramp-downcorner-polished-8x1-c", + "name": "Down Corner Ramp (1 m) (Polished)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_Ramp_DownCorner_Polished_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_DownCorner_Polished_8x2_C": { + "slug": "down-corner-ramp-2m-polished", + "icon": "desc-ramp-downcorner-polished-8x2-c", + "name": "Down Corner Ramp (2 m) (Polished)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_Ramp_DownCorner_Polished_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_DownCorner_Polished_8x4_C": { + "slug": "down-corner-ramp-4m-polished", + "icon": "desc-ramp-downcorner-polished-8x4-c", + "name": "Down Corner Ramp (4 m) (Polished)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_Ramp_DownCorner_Polished_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Polished_8x1_C": { + "slug": "ramp-1m-polished", + "icon": "desc-ramp-polished-8x1-c", + "name": "Ramp (1 m) (Polished)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_Ramp_Polished_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Polished_8x2_C": { + "slug": "ramp-2m-polished", + "icon": "desc-ramp-polished-8x2-c", + "name": "Ramp (2 m) (Polished)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_Ramp_Polished_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Polished_8x4_C": { + "slug": "ramp-4m-polished", + "icon": "desc-ramp-polished-8x4-c", + "name": "Ramp (4 m) (Polished)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_Ramp_Polished_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_UpCorner_Polished_8x1_C": { + "slug": "up-corner-ramp-1m-polished", + "icon": "desc-ramp-upcorner-polished-8x1-c", + "name": "Up Corner Ramp (1 m) (Polished)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_Ramp_UpCorner_Polished_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_UpCorner_Polished_8x2_C": { + "slug": "up-corner-ramp-2m-polished", + "icon": "desc-ramp-upcorner-polished-8x2-c", + "name": "Up Corner Ramp (2 m) (Polished)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_Ramp_UpCorner_Polished_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_UpCorner_Polished_8x4_C": { + "slug": "up-corner-ramp-4m-polished", + "icon": "desc-ramp-upcorner-polished-8x4-c", + "name": "Up Corner Ramp (4 m) (Polished)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_Ramp_UpCorner_Polished_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampDouble_Polished_8x1_C": { + "slug": "double-ramp-2m-polished", + "icon": "desc-rampdouble-polished-8x1-c", + "name": "Double Ramp (2 m) (Polished)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_RampDouble_Polished_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampDouble_Polished_8x2_C": { + "slug": "double-ramp-4m-polished", + "icon": "desc-rampdouble-polished-8x2-c", + "name": "Double Ramp (4 m) (Polished)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_RampDouble_Polished_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampDouble_Polished_8x4_C": { + "slug": "double-ramp-8m-polished", + "icon": "desc-rampdouble-polished-8x4-c", + "name": "Double Ramp (8 m) (Polished)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_RampDouble_Polished_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Stair_PolishedConcrete_8x1_C": { + "slug": "foundation-stairs-1-m-polished", + "icon": "desc-stair-polishedconcrete-8x1-c", + "name": "Foundation Stairs (1 m) (Polished)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nFoundation Stairs are just Ramps with extra steps.\n\nSize: 8 m x 1 m", + "className": "Desc_Stair_PolishedConcrete_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Stair_PolishedConcrete_8x2_C": { + "slug": "foundation-stairs-2-m-polished", + "icon": "desc-stair-polishedconcrete-8x2-c", + "name": "Foundation Stairs (2 m) (Polished)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nFoundation Stairs are just Ramps with extra steps.\n\nSize: 8 m x 2 m", + "className": "Desc_Stair_PolishedConcrete_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Stair_PolishedConcrete_8x4_C": { + "slug": "foundation-stairs-4-m-polished", + "icon": "desc-stair-polishedconcrete-8x4-c", + "name": "Foundation Stairs (4 m) (Polished)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nFoundation Stairs are just Ramps with extra steps.\n\nSize: 8 m x 4 m", + "className": "Desc_Stair_PolishedConcrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_DownQuarterPipe_Asphalt_8x4_C": { + "slug": "inverted-quarter-pipe-asphalt", + "icon": "desc-downquarterpipe-asphalt-8x4-c", + "name": "Inverted Quarter Pipe (Asphalt)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_DownQuarterPipe_Asphalt_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_DownQuarterPipeInCorner_Asphalt_8x4_C": { + "slug": "inverted-inner-corner-quarter-pipe-asphalt", + "icon": "desc-downquarterpipeincorner-asphalt-8x4-c", + "name": "Inverted Inner Corner Quarter Pipe (Asphalt)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_DownQuarterPipeInCorner_Asphalt_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_DownQuarterPipeOutCorner_Asphalt_8x4_C": { + "slug": "inverted-outer-corner-quarter-pipe-asphalt", + "icon": "desc-downquarterpipeoutcorner-asphalt-8x4-c", + "name": "Inverted Outer Corner Quarter Pipe (Asphalt)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_DownQuarterPipeOutCorner_Asphalt_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Foundation_Asphalt_8x1_C": { + "slug": "foundation-1m-asphalt", + "icon": "desc-foundation-asphalt-8x1-c", + "name": "Foundation (1 m) (Asphalt)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_Foundation_Asphalt_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Foundation_Asphalt_8x2_C": { + "slug": "foundation-2m-asphalt", + "icon": "desc-foundation-asphalt-8x2-c", + "name": "Foundation (2 m) (Asphalt)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_Foundation_Asphalt_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Foundation_Asphalt_8x4_C": { + "slug": "foundation-4m-asphalt", + "icon": "desc-foundation-asphalt-8x4-c", + "name": "Foundation (4 m) (Asphalt)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_Foundation_Asphalt_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_Asphalt_8x1_C": { + "slug": "inverted-ramp-1m-asphalt", + "icon": "desc-invertedramp-asphalt-8x1-c", + "name": "Inverted Ramp (1 m) (Asphalt)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_InvertedRamp_Asphalt_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_Asphalt_8x2_C": { + "slug": "inverted-ramp-2m-asphalt", + "icon": "desc-invertedramp-asphalt-8x2-c", + "name": "Inverted Ramp (2 m) (Asphalt)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_InvertedRamp_Asphalt_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_Asphalt_8x4_C": { + "slug": "inverted-ramp-4m-asphalt", + "icon": "desc-invertedramp-asphalt-8x4-c", + "name": "Inverted Ramp (4 m) (Asphalt)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_InvertedRamp_Asphalt_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_DCorner_Asphalt_8x1_C": { + "slug": "inverted-down-corner-1m-asphalt", + "icon": "desc-invertedramp-dcorner-asphalt-8x1-c", + "name": "Inverted Down Corner (1 m) (Asphalt)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_InvertedRamp_DCorner_Asphalt_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_DCorner_Asphalt_8x2_C": { + "slug": "inverted-down-corner-2m-asphalt", + "icon": "desc-invertedramp-dcorner-asphalt-8x2-c", + "name": "Inverted Down Corner (2 m) (Asphalt)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_InvertedRamp_DCorner_Asphalt_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_DCorner_Asphalt_8x4_C": { + "slug": "inverted-down-corner-4m-asphalt", + "icon": "desc-invertedramp-dcorner-asphalt-8x4-c", + "name": "Inverted Down Corner (4 m) (Asphalt)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_InvertedRamp_DCorner_Asphalt_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_UCorner_Asphalt_8x1_C": { + "slug": "inverted-up-corner-1m-asphalt", + "icon": "desc-invertedramp-ucorner-asphalt-8x1-c", + "name": "Inverted Up Corner (1 m) (Asphalt)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_InvertedRamp_UCorner_Asphalt_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_UCorner_Asphalt_8x2_C": { + "slug": "inverted-up-corner-2m-asphalt", + "icon": "desc-invertedramp-ucorner-asphalt-8x2-c", + "name": "Inverted Up Corner (2 m) (Asphalt)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_InvertedRamp_UCorner_Asphalt_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_UCorner_Asphalt_8x4_C": { + "slug": "inverted-up-corner-4m-asphalt", + "icon": "desc-invertedramp-ucorner-asphalt-8x4-c", + "name": "Inverted Up Corner (4 m) (Asphalt)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_InvertedRamp_UCorner_Asphalt_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipe_Asphalt_8x4_C": { + "slug": "quarter-pipe-asphalt", + "icon": "desc-quarterpipe-asphalt-8x4-c", + "name": "Quarter Pipe (Asphalt)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_QuarterPipe_Asphalt_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeInCorner_Asphalt_8x4_C": { + "slug": "inner-corner-quarter-pipe-asphalt", + "icon": "desc-quarterpipeincorner-asphalt-8x4-c", + "name": "Inner Corner Quarter Pipe (Asphalt)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_QuarterPipeInCorner_Asphalt_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddle_Asphalt_8x1_C": { + "slug": "half-foundation-1m-asphalt", + "icon": "desc-quarterpipemiddle-asphalt-8x1-c", + "name": "Half Foundation (1 m) (Asphalt)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_QuarterPipeMiddle_Asphalt_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddle_Asphalt_8x2_C": { + "slug": "half-foundation-2m-asphalt", + "icon": "desc-quarterpipemiddle-asphalt-8x2-c", + "name": "Half Foundation (2 m) (Asphalt)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_QuarterPipeMiddle_Asphalt_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddle_Asphalt_8x4_C": { + "slug": "half-foundation-4m-asphalt", + "icon": "desc-quarterpipemiddle-asphalt-8x4-c", + "name": "Half Foundation (4 m) (Asphalt)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_QuarterPipeMiddle_Asphalt_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleInCorner_Asphalt_8x1_C": { + "slug": "inner-corner-extension-1m-asphalt", + "icon": "desc-quarterpipemiddleincorner-asphalt-8x1-c", + "name": "Inner Corner Extension (1 m) (Asphalt)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 1 m", + "className": "Desc_QuarterPipeMiddleInCorner_Asphalt_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleInCorner_Asphalt_8x2_C": { + "slug": "inner-corner-extension-2m-asphalt", + "icon": "desc-quarterpipemiddleincorner-asphalt-8x2-c", + "name": "Inner Corner Extension (2 m) (Asphalt)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 2 m", + "className": "Desc_QuarterPipeMiddleInCorner_Asphalt_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleInCorner_Asphalt_8x4_C": { + "slug": "inner-corner-extension-4m-asphalt", + "icon": "desc-quarterpipemiddleincorner-asphalt-8x4-c", + "name": "Inner Corner Extension (4 m) (Asphalt)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_QuarterPipeMiddleInCorner_Asphalt_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleOutCorner_Asphalt_4x1_C": { + "slug": "outer-corner-extension-1m-asphalt", + "icon": "desc-quarterpipemiddleoutcorner-asphalt-4x1-c", + "name": "Outer Corner Extension (1 m) (Asphalt)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 4 m x 1 m", + "className": "Desc_QuarterPipeMiddleOutCorner_Asphalt_4x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleOutCorner_Asphalt_4x2_C": { + "slug": "outer-corner-extension-2m-asphalt", + "icon": "desc-quarterpipemiddleoutcorner-asphalt-4x2-c", + "name": "Outer Corner Extension (2 m) (Asphalt)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 4 m x 2 m", + "className": "Desc_QuarterPipeMiddleOutCorner_Asphalt_4x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleOutCorner_Asphalt_4x4_C": { + "slug": "outer-corner-extension-4m-asphalt", + "icon": "desc-quarterpipemiddleoutcorner-asphalt-4x4-c", + "name": "Outer Corner Extension (4 m) (Asphalt)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 4 m x 4 m", + "className": "Desc_QuarterPipeMiddleOutCorner_Asphalt_4x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeOutCorner_Asphalt_8x4_C": { + "slug": "outer-corner-quarter-pipe-asphalt", + "icon": "desc-quarterpipeoutcorner-asphalt-8x4-c", + "name": "Outer Corner Quarter Pipe (Asphalt)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_QuarterPipeOutCorner_Asphalt_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Asphalt_8x1_C": { + "slug": "ramp-1m-asphalt", + "icon": "desc-ramp-asphalt-8x1-c", + "name": "Ramp (1 m) (Asphalt)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_Ramp_Asphalt_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Asphalt_8x2_C": { + "slug": "ramp-2m-asphalt", + "icon": "desc-ramp-asphalt-8x2-c", + "name": "Ramp (2 m) (Asphalt)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_Ramp_Asphalt_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Asphalt_8x4_C": { + "slug": "ramp-4m-asphalt", + "icon": "desc-ramp-asphalt-8x4-c", + "name": "Ramp (4 m) (Asphalt)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_Ramp_Asphalt_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_DownCorner_Asphalt_8x1_C": { + "slug": "down-corner-ramp-1m-asphalt", + "icon": "desc-ramp-downcorner-asphalt-8x1-c", + "name": "Down Corner Ramp (1 m) (Asphalt)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_Ramp_DownCorner_Asphalt_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_DownCorner_Asphalt_8x2_C": { + "slug": "down-corner-ramp-2m-asphalt", + "icon": "desc-ramp-downcorner-asphalt-8x2-c", + "name": "Down Corner Ramp (2 m) (Asphalt)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_Ramp_DownCorner_Asphalt_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_DownCorner_Asphalt_8x4_C": { + "slug": "down-corner-ramp-4m-asphalt", + "icon": "desc-ramp-downcorner-asphalt-8x4-c", + "name": "Down Corner Ramp (4 m) (Asphalt)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_Ramp_DownCorner_Asphalt_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_UpCorner_Asphalt_8x1_C": { + "slug": "up-corner-ramp-1m-asphalt", + "icon": "desc-ramp-upcorner-asphalt-8x1-c", + "name": "Up Corner Ramp (1 m) (Asphalt)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_Ramp_UpCorner_Asphalt_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_UpCorner_Asphalt_8x2_C": { + "slug": "up-corner-ramp-2m-asphalt", + "icon": "desc-ramp-upcorner-asphalt-8x2-c", + "name": "Up Corner Ramp (2 m) (Asphalt)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_Ramp_UpCorner_Asphalt_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_UpCorner_Asphalt_8x4_C": { + "slug": "up-corner-ramp-4m-asphalt", + "icon": "desc-ramp-upcorner-asphalt-8x4-c", + "name": "Up Corner Ramp (4 m) (Asphalt)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_Ramp_UpCorner_Asphalt_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampDouble_Asphalt_8x1_C": { + "slug": "double-ramp-2m-asphalt", + "icon": "desc-rampdouble-asphalt-8x1-c", + "name": "Double Ramp (2 m) (Asphalt)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_RampDouble_Asphalt_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampDouble_Asphalt_8x2_C": { + "slug": "double-ramp-4m-asphalt", + "icon": "desc-rampdouble-asphalt-8x2-c", + "name": "Double Ramp (4 m) (Asphalt)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_RampDouble_Asphalt_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampDouble_Asphalt_8x4_C": { + "slug": "double-ramp-8m-asphalt", + "icon": "desc-rampdouble-asphalt-8x4-c", + "name": "Double Ramp (8 m) (Asphalt)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 8 m", + "className": "Desc_RampDouble_Asphalt_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Stair_Asphalt_8x1_C": { + "slug": "foundation-stairs-1-m-asphalt", + "icon": "desc-stair-asphalt-8x1-c", + "name": "Foundation Stairs (1 m) (Asphalt)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nFoundation Stairs are just Ramps with extra steps.\n\nSize: 8 m x 1 m", + "className": "Desc_Stair_Asphalt_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Stair_Asphalt_8x2_C": { + "slug": "foundation-stairs-2-m-asphalt", + "icon": "desc-stair-asphalt-8x2-c", + "name": "Foundation Stairs (2 m) (Asphalt)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nFoundation Stairs are just Ramps with extra steps.\n\nSize: 8 m x 2 m", + "className": "Desc_Stair_Asphalt_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Stair_Asphalt_8x4_C": { + "slug": "foundation-stairs-4-m-asphalt", + "icon": "desc-stair-asphalt-8x4-c", + "name": "Foundation Stairs (4 m) (Asphalt)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nFoundation Stairs are just Ramps with extra steps.\n\nSize: 8 m x 4 m", + "className": "Desc_Stair_Asphalt_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_AlienPowerBuilding_C": { + "slug": "alien-power-augmenter", + "icon": "desc-alienpowerbuilding-c", + "name": "Alien Power Augmenter", + "description": "Generates power based on the total amount of power on the attached power grid.\n\nThis experimental technology is somehow able to extract power from the Somersloop by blasting it with energy.", + "className": "Desc_AlienPowerBuilding_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_CentralStorage_C": { + "slug": "dimensional-depot-uploader", + "icon": "desc-centralstorage-c", + "name": "Dimensional Depot Uploader", + "description": "The Dimensional Depot Uploader is used to upload resources to a dimensional storage deposit.\nFrom here resources can be used by the Build Gun and Crafting Stations, as if they were in the pioneer Inventory.", + "className": "Desc_CentralStorage_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_GeneratorGeoThermal_C": { + "slug": "geothermal-generator", + "icon": "desc-generatorgeothermal-c", + "name": "Geothermal Generator", + "description": "Harnesses geothermal energy to generate power. Must be built on a Geyser.\n\nCaution: Power production fluctuates.\n\nPower Production:\nImpure Geyser: 50-150 MW (100 MW average)\nNormal Geyser: 100-300 MW (200 MW average)\nPure Geyser: 200-600 MW (400 MW average)", + "className": "Desc_GeneratorGeoThermal_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConveyorAttachmentSplitterProgrammable_C": { + "slug": "programmable-splitter", + "icon": "desc-conveyorattachmentsplitterprogrammable-c", + "name": "Programmable Splitter", + "description": "Splits one Conveyor Belt into two or three. \nMultiple filters can be set for each output to allow specific parts to pass through.", + "className": "Desc_ConveyorAttachmentSplitterProgrammable_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PowerPoleMk3_C": { + "slug": "power-pole-mk-3", + "icon": "desc-powerpolemk3-c", + "name": "Power Pole Mk.3", + "description": "Allows for up to 10 Power Line connections.\n\nConnect Power Poles, Power Generators, and factory buildings with Power Lines to create a power grid. The power grid supplies all connected buildings with power.", + "className": "Desc_PowerPoleMk3_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PriorityPowerSwitch_C": { + "slug": "priority-power-switch", + "icon": "desc-prioritypowerswitch-c", + "name": "Priority Power Switch", + "description": "Priority Power Switches can be ranked by priority. When power production is too low, Switches will start turning off automatically until the power stabilizes, starting with Priority Group 8.", + "className": "Desc_PriorityPowerSwitch_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PowerPoleMk2_C": { + "slug": "power-pole-mk-2", + "icon": "desc-powerpolemk2-c", + "name": "Power Pole Mk.2", + "description": "Allows for up to 7 Power Line connections.\n\nConnect Power Poles, Power Generators, and factory buildings with Power Lines to create a power grid. The power grid supplies all connected buildings with power.", + "className": "Desc_PowerPoleMk2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PowerSwitch_C": { + "slug": "power-switch", + "icon": "desc-powerswitch-c", + "name": "Power Switch", + "description": "Enables/disables the connection between 2 power grids when switched ON/OFF.\n\nNote the A and B connector labels.", + "className": "Desc_PowerSwitch_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConveyorAttachmentSplitterSmart_C": { + "slug": "smart-splitter", + "icon": "desc-conveyorattachmentsplittersmart-c", + "name": "Smart Splitter", + "description": "Splits one Conveyor Belt into two or three.\nA filter can be set for each output to allow a specific part to pass through.", + "className": "Desc_ConveyorAttachmentSplitterSmart_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RadarTower_C": { + "slug": "radar-tower", + "icon": "desc-radartower-c", + "name": "Radar Tower", + "description": "Scans the surrounding area to display additional information on the Map.\n\nInformation revealed on the Map includes:\n- Resource node locations\n- Terrain data\n- Flora & fauna information\n- Notable signal readings", + "className": "Desc_RadarTower_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 30, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_WreathDecor_C": { + "slug": "ficsmas-decoration", + "icon": "desc-wreathdecor-c", + "name": "FICSMAS Decoration", + "description": "A wreath woven from dead plants to bring that holiday spirit to your Walls.", + "className": "Desc_WreathDecor_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_SnowCannon_C": { + "slug": "ficsmas-snow-cannon", + "icon": "desc-snowcannon-c", + "name": "FICSMAS Snow Cannon", + "description": "For those who want to aggressively celebrate the holidays.", + "className": "Desc_SnowCannon_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_SnowDispenser_C": { + "slug": "ficsmas-snow-dispenser", + "icon": "desc-snowdispenser-c", + "name": "FICSMAS Snow Dispenser", + "description": "Dispenses a mixture of water, air, and liquid nitrogen, practically identical to actual snow. Can be attached to Walls and ceilings.", + "className": "Desc_SnowDispenser_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_xmassLights_C": { + "slug": "ficsmas-power-light", + "icon": "desc-xmasslights-c", + "name": "FICSMAS Power Light", + "description": "A more festive take on the Power Line.", + "className": "Desc_xmassLights_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_TreeGiftProducer_C": { + "slug": "ficsmas-gift-tree", + "icon": "desc-treegiftproducer-c", + "name": "FICSMAS Gift Tree", + "description": "A festively disguised production building. Reminder: Nothing is ever truly free.\nProduces 15 Gifts per minute.", + "className": "Desc_TreeGiftProducer_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 1 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Snowman_C": { + "slug": "ficsmas-snowman", + "icon": "desc-snowman-c", + "name": "FICSMAS Snowman", + "description": "The closest thing you'll get to having a friend.", + "className": "Desc_Snowman_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_XMassTree_C": { + "slug": "giant-ficsmas-tree", + "icon": "desc-xmasstree-c", + "name": "Giant FICSMAS Tree", + "description": "Decorate this unique one-of-a-kind tree by progressing through the FICSMAS Holiday Event in the MAM.", + "className": "Desc_XMassTree_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_CandyCaneDecor_C": { + "slug": "ficsmas-candy-cane", + "icon": "desc-candycanedecor-c", + "name": "FICSMAS Candy Cane", + "description": "A giant Candy Cane decoration.\n\n- Not for consumption.\n- Do not inhale close to it without appropriate protection.\n- Do not put in your eyes.\n- Keep away from overly curious wildlife.", + "className": "Desc_CandyCaneDecor_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Flat_Frame_01_C": { + "slug": "frame-floor", + "icon": "desc-flat-frame-01-c", + "name": "Frame Floor", + "description": "Snaps to other structural buildings.\nFrames provide a more open factory aesthetic.\n\nSize: 8 m x 0.5 m", + "className": "Desc_Flat_Frame_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Foundation_Frame_01_C": { + "slug": "frame-foundation", + "icon": "desc-foundation-frame-01-c", + "name": "Frame Foundation", + "description": "Snaps to other structural buildings.\nFrames provide a more open factory aesthetic.\n\nSize: 8 m x 4 m", + "className": "Desc_Foundation_Frame_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_FoundationGlass_01_C": { + "slug": "glass-frame-foundation", + "icon": "desc-foundationglass-01-c", + "name": "Glass Frame Foundation", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_FoundationGlass_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Frame_01_C": { + "slug": "frame-ramp", + "icon": "desc-ramp-frame-01-c", + "name": "Frame Ramp", + "description": "Snaps to other structural buildings.\nFrames provide a more open factory aesthetic.\n\nSize: 8 m x 4 m", + "className": "Desc_Ramp_Frame_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Frame_Inverted_01_C": { + "slug": "inverted-frame-ramp", + "icon": "desc-ramp-frame-inverted-01-c", + "name": "Inverted Frame Ramp", + "description": "Snaps to other structural buildings.\nFrames provide a more open factory aesthetic.\n\nSize: 8 m x 4 m", + "className": "Desc_Ramp_Frame_Inverted_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Pillar_Small_Metal_C": { + "slug": "small-metal-pillar-metal", + "icon": "desc-pillar-small-metal-c", + "name": "Small Metal Pillar (Metal)", + "description": "Snaps to other Pillars. Can be placed on surfaces like Foundations and Walls.\n\nSize: 2 m x 4 m", + "className": "Desc_Pillar_Small_Metal_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PillarBase_Small_C": { + "slug": "small-pillar-support", + "icon": "desc-pillarbase-small-c", + "name": "Small Pillar Support", + "description": "Snaps to Pillars. Can be placed on surfaces like Foundations and Walls.", + "className": "Desc_PillarBase_Small_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PillarBase_C": { + "slug": "big-pillar-support", + "icon": "desc-pillarbase-c", + "name": "Big Pillar Support", + "description": "Snaps to Pillars. Can be placed on surfaces like Foundations and Walls.", + "className": "Desc_PillarBase_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PillarMiddle_C": { + "slug": "big-metal-pillar", + "icon": "desc-pillarmiddle-c", + "name": "Big Metal Pillar", + "description": "Snaps to other Pillars. Can be placed on surfaces like Foundations and Walls.\n\nSize: 4 m x 4 m", + "className": "Desc_PillarMiddle_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ladder_C": { + "slug": "ladder", + "icon": "desc-ladder-c", + "name": "Ladder", + "description": "Snaps to Walls and Foundations. Default height is 2 m, but it can be extended while building.", + "className": "Desc_Ladder_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_HyperTubeWallHole_C": { + "slug": "hypertube-wall-hole", + "icon": "desc-hypertubewallhole-c", + "name": "Hypertube Wall Hole", + "description": "Attaches to Walls, allowing Hypertubes to pass through.", + "className": "Desc_HyperTubeWallHole_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PipelineSupportWallHole_C": { + "slug": "pipeline-wall-hole", + "icon": "desc-pipelinesupportwallhole-c", + "name": "Pipeline Wall Hole", + "description": "Attaches to Walls, allowing Pipelines to pass through.", + "className": "Desc_PipelineSupportWallHole_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_FoundationPassthrough_Pipe_C": { + "slug": "pipeline-floor-hole", + "icon": "desc-foundationpassthrough-pipe-c", + "name": "Pipeline Floor Hole", + "description": "Attaches to Foundations, allowing Pipelines to pass through.", + "className": "Desc_FoundationPassthrough_Pipe_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PowerPoleWallDouble_C": { + "slug": "double-wall-outlet-mk-1", + "icon": "desc-powerpolewalldouble-c", + "name": "Double Wall Outlet Mk.1", + "description": "Functions like a Power Pole, but attaches to a wall. Has one connector on each side of the wall.\n\nAllows for up to 4 Power Line connections per side.\n\nConnect Power Poles, Power Generators and factory buildings with Power Lines to create a power grid. The power grid supplies all connected buildings with power.", + "className": "Desc_PowerPoleWallDouble_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PowerPoleWallDoubleMk2_C": { + "slug": "double-wall-outlet-mk-2", + "icon": "desc-powerpolewalldoublemk2-c", + "name": "Double Wall Outlet Mk.2", + "description": "Functions like a Power Pole, but attaches to a wall. Has one connector on each side of the wall.\n\nAllows for up to 7 Power Line connections per side.\n\nConnect Power Poles, Power Generators and factory buildings with Power Lines to create a power grid. The power grid supplies all connected buildings with power.", + "className": "Desc_PowerPoleWallDoubleMk2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PowerPoleWallMk2_C": { + "slug": "wall-outlet-mk-2", + "icon": "desc-powerpolewallmk2-c", + "name": "Wall Outlet Mk.2", + "description": "Functions like a Power Pole, but attaches to a wall.\n\nAllows for up to 7 Power Line connections.\n\nConnect Power Poles, Power Generators and factory buildings with Power Lines to create a power grid. The power grid supplies all connected buildings with power.", + "className": "Desc_PowerPoleWallMk2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PowerPoleWallDoubleMk3_C": { + "slug": "double-wall-outlet-mk-3", + "icon": "desc-powerpolewalldoublemk3-c", + "name": "Double Wall Outlet Mk.3", + "description": "Functions like a Power Pole, but attaches to a wall. Has one connector on each side of the wall.\n\nAllows for up to 10 Power Line connections per side.\n\nConnect Power Poles, Power Generators and factory buildings with Power Lines to create a power grid. The power grid supplies all connected buildings with power.", + "className": "Desc_PowerPoleWallDoubleMk3_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PowerPoleWallMk3_C": { + "slug": "wall-outlet-mk-3", + "icon": "desc-powerpolewallmk3-c", + "name": "Wall Outlet Mk.3", + "description": "Functions like a Power Pole, but attaches to a wall.\n\nAllows for up to 10 Power Line connections.\n\nConnect Power Poles, Power Generators and factory buildings with Power Lines to create a power grid. The power grid supplies all connected buildings with power.", + "className": "Desc_PowerPoleWallMk3_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_StreetLight_C": { + "slug": "street-light", + "icon": "desc-streetlight-c", + "name": "Street Light", + "description": "Lights up factory areas and roads.\n\nLight color and intensity can be adjusted.\nAllows for up to 2 Power Line connections.", + "className": "Desc_StreetLight_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 1, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_CeilingLight_C": { + "slug": "ceiling-light", + "icon": "desc-ceilinglight-c", + "name": "Ceiling Light", + "description": "Lights up indoor factory spaces when placed on ceilings.\n\nLight color and intensity can be adjusted via a Light Control Panel.\nAllows for up to 2 Power Line connections.", + "className": "Desc_CeilingLight_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 2, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_FloodlightPole_C": { + "slug": "flood-light-tower", + "icon": "desc-floodlightpole-c", + "name": "Flood Light Tower", + "description": "Illuminates large or outdoor spaces.\n\nLight color and intensity can be adjusted.\nAllows for up to 2 Power Line connections.", + "className": "Desc_FloodlightPole_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 6, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_FloodlightWall_C": { + "slug": "wall-mounted-flood-light", + "icon": "desc-floodlightwall-c", + "name": "Wall-Mounted Flood Light", + "description": "Attaches to Walls and Foundations to illuminate large spaces.\n\nLight color and intensity can be modified via a Light Control Panel.\nAllows for up to 2 Power Line connections.", + "className": "Desc_FloodlightWall_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 6, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Orange_01_C": { + "slug": "flat-roof", + "icon": "desc-roof-orange-01-c", + "name": "Flat Roof", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x flat", + "className": "Desc_Roof_Orange_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Orange_02_C": { + "slug": "roof-1m", + "icon": "desc-roof-orange-02-c", + "name": "Roof (1 m)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 1 m", + "className": "Desc_Roof_Orange_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Orange_03_C": { + "slug": "roof-2m", + "icon": "desc-roof-orange-03-c", + "name": "Roof (2 m)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 2 m", + "className": "Desc_Roof_Orange_03_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Orange_04_C": { + "slug": "roof-4m", + "icon": "desc-roof-orange-04-c", + "name": "Roof (4 m)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 4 m", + "className": "Desc_Roof_Orange_04_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Orange_InCorner_01_C": { + "slug": "inner-corner-roof-1m", + "icon": "desc-roof-orange-incorner-01-c", + "name": "Inner Corner Roof (1 m)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 1 m", + "className": "Desc_Roof_Orange_InCorner_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Orange_InCorner_02_C": { + "slug": "inner-corner-roof-2m", + "icon": "desc-roof-orange-incorner-02-c", + "name": "Inner Corner Roof (2 m)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 2 m", + "className": "Desc_Roof_Orange_InCorner_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Orange_InCorner_03_C": { + "slug": "inner-corner-roof-4m", + "icon": "desc-roof-orange-incorner-03-c", + "name": "Inner Corner Roof (4 m)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 4 m", + "className": "Desc_Roof_Orange_InCorner_03_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Orange_OutCorner_01_C": { + "slug": "outer-corner-roof-1m", + "icon": "desc-roof-orange-outcorner-01-c", + "name": "Outer Corner Roof (1 m)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 1 m", + "className": "Desc_Roof_Orange_OutCorner_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Orange_OutCorner_02_C": { + "slug": "outer-corner-roof-2m", + "icon": "desc-roof-orange-outcorner-02-c", + "name": "Outer Corner Roof (2 m)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 2 m", + "className": "Desc_Roof_Orange_OutCorner_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Orange_OutCorner_03_C": { + "slug": "outer-corner-roof-4m", + "icon": "desc-roof-orange-outcorner-03-c", + "name": "Outer Corner Roof (4 m)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 4 m", + "className": "Desc_Roof_Orange_OutCorner_03_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Window_01_C": { + "slug": "flat-roof-window", + "icon": "desc-roof-window-01-c", + "name": "Flat Roof (Window)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x flat", + "className": "Desc_Roof_Window_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Window_02_C": { + "slug": "roof-1m-window", + "icon": "desc-roof-window-02-c", + "name": "Roof (1 m) (Window)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 1 m", + "className": "Desc_Roof_Window_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Window_03_C": { + "slug": "roof-2m-window", + "icon": "desc-roof-window-03-c", + "name": "Roof (2 m) (Window)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 2 m", + "className": "Desc_Roof_Window_03_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Window_04_C": { + "slug": "roof-4m-window", + "icon": "desc-roof-window-04-c", + "name": "Roof (4 m) (Window)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 4 m", + "className": "Desc_Roof_Window_04_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Window_InCorner_01_C": { + "slug": "inner-corner-roof-1m-window", + "icon": "desc-roof-window-incorner-01-c", + "name": "Inner Corner Roof (1 m) (Window)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 1 m", + "className": "Desc_Roof_Window_InCorner_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Window_InCorner_02_C": { + "slug": "inner-corner-roof-2m-window", + "icon": "desc-roof-window-incorner-02-c", + "name": "Inner Corner Roof (2 m) (Window)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 2 m", + "className": "Desc_Roof_Window_InCorner_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Window_InCorner_03_C": { + "slug": "inner-corner-roof-4m-window", + "icon": "desc-roof-window-incorner-03-c", + "name": "Inner Corner Roof (4 m) (Window)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 4 m", + "className": "Desc_Roof_Window_InCorner_03_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Window_OutCorner_01_C": { + "slug": "outer-corner-roof-1m-window", + "icon": "desc-roof-window-outcorner-01-c", + "name": "Outer Corner Roof (1 m) (Window)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 1 m", + "className": "Desc_Roof_Window_OutCorner_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Window_OutCorner_02_C": { + "slug": "outer-corner-roof-2m-window", + "icon": "desc-roof-window-outcorner-02-c", + "name": "Outer Corner Roof (2 m) (Window)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 2 m", + "className": "Desc_Roof_Window_OutCorner_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Window_OutCorner_03_C": { + "slug": "outer-corner-roof-4m-window", + "icon": "desc-roof-window-outcorner-03-c", + "name": "Outer Corner Roof (4 m) (Window)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 4 m", + "className": "Desc_Roof_Window_OutCorner_03_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_A_01_C": { + "slug": "flat-roof-ficsit", + "icon": "desc-roof-a-01-c", + "name": "Flat Roof (FICSIT)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 0.5 m", + "className": "Desc_Roof_A_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_A_02_C": { + "slug": "roof-1m-ficsit", + "icon": "desc-roof-a-02-c", + "name": "Roof (1 m) (FICSIT)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 1 m", + "className": "Desc_Roof_A_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_A_03_C": { + "slug": "roof-2m-ficsit", + "icon": "desc-roof-a-03-c", + "name": "Roof (2 m) (FICSIT)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 2 m", + "className": "Desc_Roof_A_03_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_A_04_C": { + "slug": "roof-4m-ficsit", + "icon": "desc-roof-a-04-c", + "name": "Roof (4 m) (FICSIT)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 4 m", + "className": "Desc_Roof_A_04_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Metal_InCorner_01_C": { + "slug": "inner-corner-roof-1m-metal", + "icon": "desc-roof-metal-incorner-01-c", + "name": "Inner Corner Roof (1 m) (Metal)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 1 m", + "className": "Desc_Roof_Metal_InCorner_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Metal_InCorner_02_C": { + "slug": "inner-corner-roof-2m-metal", + "icon": "desc-roof-metal-incorner-02-c", + "name": "Inner Corner Roof (2 m) (Metal)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 2 m", + "className": "Desc_Roof_Metal_InCorner_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Metal_InCorner_03_C": { + "slug": "inner-corner-roof-4m-metal", + "icon": "desc-roof-metal-incorner-03-c", + "name": "Inner Corner Roof (4 m) (Metal)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 4 m", + "className": "Desc_Roof_Metal_InCorner_03_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Metal_OutCorner_01_C": { + "slug": "outer-corner-roof-1m-metal", + "icon": "desc-roof-metal-outcorner-01-c", + "name": "Outer Corner Roof (1 m) (Metal)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 1 m", + "className": "Desc_Roof_Metal_OutCorner_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Metal_OutCorner_02_C": { + "slug": "outer-corner-roof-2m-metal", + "icon": "desc-roof-metal-outcorner-02-c", + "name": "Outer Corner Roof (2 m) (Metal)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 2 m", + "className": "Desc_Roof_Metal_OutCorner_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Metal_OutCorner_03_C": { + "slug": "outer-corner-roof-4m-metal", + "icon": "desc-roof-metal-outcorner-03-c", + "name": "Outer Corner Roof (4 m) (Metal)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 4 m", + "className": "Desc_Roof_Metal_OutCorner_03_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Tar_01_C": { + "slug": "flat-roof-tar", + "icon": "desc-roof-tar-01-c", + "name": "Flat Roof (Tar)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x flat", + "className": "Desc_Roof_Tar_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Tar_02_C": { + "slug": "roof-1m-tar", + "icon": "desc-roof-tar-02-c", + "name": "Roof (1 m) (Tar)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 1 m", + "className": "Desc_Roof_Tar_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Tar_03_C": { + "slug": "roof-2m-tar", + "icon": "desc-roof-tar-03-c", + "name": "Roof (2 m) (Tar)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 2 m", + "className": "Desc_Roof_Tar_03_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Tar_04_C": { + "slug": "roof-4m-tar", + "icon": "desc-roof-tar-04-c", + "name": "Roof (4 m) (Tar)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 4 m", + "className": "Desc_Roof_Tar_04_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Tar_InCorner_01_C": { + "slug": "inner-corner-roof-1m-tar", + "icon": "desc-roof-tar-incorner-01-c", + "name": "Inner Corner Roof (1 m) (Tar)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 1 m", + "className": "Desc_Roof_Tar_InCorner_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Tar_InCorner_02_C": { + "slug": "inner-corner-roof-2m-tar", + "icon": "desc-roof-tar-incorner-02-c", + "name": "Inner Corner Roof (2 m) (Tar)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 2 m", + "className": "Desc_Roof_Tar_InCorner_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Tar_InCorner_03_C": { + "slug": "inner-corner-roof-4m-tar", + "icon": "desc-roof-tar-incorner-03-c", + "name": "Inner Corner Roof (4 m) (Tar)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 4 m", + "className": "Desc_Roof_Tar_InCorner_03_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Tar_OutCorner_01_C": { + "slug": "outer-corner-roof-1m-tar", + "icon": "desc-roof-tar-outcorner-01-c", + "name": "Outer Corner Roof (1 m) (Tar)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 1 m", + "className": "Desc_Roof_Tar_OutCorner_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Tar_OutCorner_02_C": { + "slug": "outer-corner-roof-2m-tar", + "icon": "desc-roof-tar-outcorner-02-c", + "name": "Outer Corner Roof (2 m) (Tar)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 2 m", + "className": "Desc_Roof_Tar_OutCorner_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Tar_OutCorner_03_C": { + "slug": "outer-corner-roof-4m-tar", + "icon": "desc-roof-tar-outcorner-03-c", + "name": "Outer Corner Roof (4 m) (Tar)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 4 m", + "className": "Desc_Roof_Tar_OutCorner_03_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PipelineMK2_NoIndicator_C": { + "slug": "clean-pipeline-mk-2", + "icon": "desc-pipelinemk2-noindicator-c", + "name": "Clean Pipeline Mk.2", + "description": "Transports fluids.\nCapacity: 600 m³ of fluid per minute.\n\nCaution: This version of the Pipeline does not feature an external indicator.", + "className": "Desc_PipelineMK2_NoIndicator_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Pipeline_NoIndicator_C": { + "slug": "clean-pipeline-mk-1", + "icon": "desc-pipeline-noindicator-c", + "name": "Clean Pipeline Mk.1", + "description": "Transports fluids.\nCapacity: 300 m³ of fluid per minute.\n\nCaution: This version of the Pipeline does not feature an external indicator.", + "className": "Desc_Pipeline_NoIndicator_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_StorageMedkit_C": { + "slug": "medical-storage-box", + "icon": "desc-storagemedkit-c", + "name": "Medical Storage Box", + "description": "Contains 25 slots for storing large amounts of items.", + "className": "Desc_StorageMedkit_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_LightsControlPanel_C": { + "slug": "light-control-panel", + "icon": "desc-lightscontrolpanel-c", + "name": "Light Control Panel", + "description": "Sections off a series of lights, allowing them to be adjusted as a group.\n\nControls all lights connected to the power grid via the Light Connector (yellow label).\nNote: Other Control Panels and Power Switches interrupt the connection.", + "className": "Desc_LightsControlPanel_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_StandaloneWidgetSign_Small_C": { + "slug": "label-sign-2m", + "icon": "desc-standalonewidgetsign-small-c", + "name": "Label Sign (2 m)", + "description": "Improves factory organization. The colors, icons, background, and text are customizable.\n\nCan be freestanding, placed on Walls, or attached to most buildings, including Storage Containers.\n\nSize: 2 m x 0.5 m", + "className": "Desc_StandaloneWidgetSign_Small_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_StandaloneWidgetSign_SmallVeryWide_C": { + "slug": "label-sign-4m", + "icon": "desc-standalonewidgetsign-smallverywide-c", + "name": "Label Sign (4 m)", + "description": "Improves factory organization. The colors, icons, background, and text are customizable.\n\nCan be freestanding, placed on Walls, or attached to most buildings, including Storage Containers.\n\nSize: 4 m x 0.5 m", + "className": "Desc_StandaloneWidgetSign_SmallVeryWide_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_StandaloneWidgetSign_SmallWide_C": { + "slug": "label-sign-3m", + "icon": "desc-standalonewidgetsign-smallwide-c", + "name": "Label Sign (3 m)", + "description": "Improves factory organization. The colors, icons, background, and text are customizable.\n\nCan be freestanding, placed on Walls, or attached to most buildings, including Storage Containers.\n\nSize: 3 m x 0.5 m", + "className": "Desc_StandaloneWidgetSign_SmallWide_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_StandaloneWidgetSign_Square_Tiny_C": { + "slug": "square-sign-0-5m", + "icon": "desc-standalonewidgetsign-square-tiny-c", + "name": "Square Sign (0.5 m)", + "description": "Improves factory organization. The colors, icons, background, and text are customizable.\n\nCan be freestanding, placed on Walls, or attached to most buildings, including Storage Containers.\n\nSize: 0.5 m x 0.5 m", + "className": "Desc_StandaloneWidgetSign_Square_Tiny_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_FoundationPassthrough_Hypertube_C": { + "slug": "hypertube-floor-hole", + "icon": "desc-foundationpassthrough-hypertube-c", + "name": "Hypertube Floor Hole", + "description": "Attaches to Foundations, allowing Hypertubes to pass through.", + "className": "Desc_FoundationPassthrough_Hypertube_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_StorageHazard_C": { + "slug": "hazard-storage-box", + "icon": "desc-storagehazard-c", + "name": "Hazard Storage Box", + "description": "Contains 25 slots for storing large amounts of items.", + "className": "Desc_StorageHazard_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Pillar_Small_Frame_C": { + "slug": "small-frame-pillar", + "icon": "desc-pillar-small-frame-c", + "name": "Small Frame Pillar", + "description": "Snaps to other Pillars. Can be placed on surfaces like Foundations and Walls.\n\nSize: 2 m x 4 m", + "className": "Desc_Pillar_Small_Frame_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PillarMiddle_Frame_C": { + "slug": "big-frame-pillar", + "icon": "desc-pillarmiddle-frame-c", + "name": "Big Frame Pillar", + "description": "Snaps to other Pillars. Can be placed on surfaces like Foundations and Walls.\n\nSize: 4 m x 4 m", + "className": "Desc_PillarMiddle_Frame_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_StandaloneWidgetSign_Medium_C": { + "slug": "display-sign", + "icon": "desc-standalonewidgetsign-medium-c", + "name": "Display Sign", + "description": "Improves factory organization. The colors, icons, background, and text are customizable.\n\nCan be freestanding, placed on Walls, or attached to most buildings, including Storage Containers.\n\nSize: 2 m x 1 m", + "className": "Desc_StandaloneWidgetSign_Medium_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_StandaloneWidgetSign_Portrait_C": { + "slug": "portrait-sign", + "icon": "desc-standalonewidgetsign-portrait-c", + "name": "Portrait Sign", + "description": "Improves factory organization. The colors, icons, background, and text are customizable.\n\nCan be freestanding, placed on Walls, or attached to most buildings, including Storage Containers.\n\nSize: 2 m x 3 m", + "className": "Desc_StandaloneWidgetSign_Portrait_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_StandaloneWidgetSign_Square_C": { + "slug": "square-sign-2m", + "icon": "desc-standalonewidgetsign-square-c", + "name": "Square Sign (2 m)", + "description": "Improves factory organization. The colors, icons, background, and text are customizable.\n\nCan be freestanding, placed on Walls, or attached to most buildings, including Storage Containers.\n\nSize: 2 m x 2 m", + "className": "Desc_StandaloneWidgetSign_Square_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_StandaloneWidgetSign_Square_Small_C": { + "slug": "square-sign-1m", + "icon": "desc-standalonewidgetsign-square-small-c", + "name": "Square Sign (1 m)", + "description": "Improves factory organization. The colors, icons, background, and text are customizable.\n\nCan be freestanding, placed on Walls, or attached to most buildings, including Storage Containers.\n\nSize: 1 m x 1 m", + "className": "Desc_StandaloneWidgetSign_Square_Small_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_FoundationPassthrough_Lift_C": { + "slug": "conveyor-lift-floor-hole", + "icon": "desc-foundationpassthrough-lift-c", + "name": "Conveyor Lift Floor Hole", + "description": "Attaches to Foundations, allowing Conveyor Lifts to pass through.", + "className": "Desc_FoundationPassthrough_Lift_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Pillar_Small_Concrete_C": { + "slug": "small-concrete-pillar-concrete", + "icon": "desc-pillar-small-concrete-c", + "name": "Small Concrete Pillar (Concrete)", + "description": "Snaps to other Pillars. Can be placed on surfaces like Foundations and Walls.\n\nSize: 2 m x 4 m", + "className": "Desc_Pillar_Small_Concrete_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PillarMiddle_Concrete_C": { + "slug": "big-concrete-pillar-concrete", + "icon": "desc-pillarmiddle-concrete-c", + "name": "Big Concrete Pillar (Concrete)", + "description": "Snaps to other Pillars. Can be placed on surfaces like Foundations and Walls.\n\nSize: 4 m x 4 m", + "className": "Desc_PillarMiddle_Concrete_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_CatwalkCross_C": { + "slug": "catwalk-intersection", + "icon": "desc-catwalkcross-c", + "name": "Catwalk Intersection", + "description": "Snaps to Foundations and other Walkways.\nSpecifically designed for humans to walk on.", + "className": "Desc_CatwalkCross_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_CatwalkRamp_C": { + "slug": "catwalk-ramp", + "icon": "desc-catwalkramp-c", + "name": "Catwalk Ramp", + "description": "Snaps to Foundations and other Walkways.\nSpecifically designed for humans to walk on.", + "className": "Desc_CatwalkRamp_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_CatwalkStairs_C": { + "slug": "catwalk-stairs", + "icon": "desc-catwalkstairs-c", + "name": "Catwalk Stairs", + "description": "Snaps to Foundations and other Walkways.\nSpecifically designed for humans to walk on.", + "className": "Desc_CatwalkStairs_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_CatwalkStraight_C": { + "slug": "straight-catwalk", + "icon": "desc-catwalkstraight-c", + "name": "Straight Catwalk", + "description": "Snaps to Foundations and other Walkways.\nSpecifically designed for humans to walk on.", + "className": "Desc_CatwalkStraight_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_CatwalkT_C": { + "slug": "catwalk-t-junction", + "icon": "desc-catwalkt-c", + "name": "Catwalk T-Junction", + "description": "Snaps to Foundations and other Walkways.\nSpecifically designed for humans to walk on.", + "className": "Desc_CatwalkT_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_CatwalkTurn_C": { + "slug": "catwalk-corner", + "icon": "desc-catwalkturn-c", + "name": "Catwalk Corner", + "description": "Snaps to Foundations and other Walkways.\nSpecifically designed for humans to walk on.", + "className": "Desc_CatwalkTurn_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_StandaloneWidgetSign_Huge_C": { + "slug": "large-billboard", + "icon": "desc-standalonewidgetsign-huge-c", + "name": "Large Billboard", + "description": "Improves factory organization. The colors, icons, background, and text are customizable.\n\nCan be freestanding, placed on Walls, or attached to most buildings, including Storage Containers.\n\nSize: 16 m x 8 m", + "className": "Desc_StandaloneWidgetSign_Huge_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_StandaloneWidgetSign_Large_C": { + "slug": "small-billboard", + "icon": "desc-standalonewidgetsign-large-c", + "name": "Small Billboard", + "description": "Improves factory organization. The colors, icons, background, and text are customizable.\n\nCan be freestanding, placed on Walls, or attached to most buildings, including Storage Containers.\n\nSize: 8 m x 4 m", + "className": "Desc_StandaloneWidgetSign_Large_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Beam_Connector_C": { + "slug": "beam-connector", + "icon": "desc-beam-connector-c", + "name": "Beam Connector", + "description": "Hides seams and makes Beam connections more visually pleasing.", + "className": "Desc_Beam_Connector_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Beam_Connector_Double_C": { + "slug": "double-beam-connector", + "icon": "desc-beam-connector-double-c", + "name": "Double Beam Connector", + "description": "Hides seams and makes Beam connections more visually pleasing.", + "className": "Desc_Beam_Connector_Double_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Beam_Support_C": { + "slug": "beam-support", + "icon": "desc-beam-support-c", + "name": "Beam Support", + "description": "Snaps to Beams and various other structural buildings.\nUsed to aesthetically connect beams to surfaces.", + "className": "Desc_Beam_Support_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_GeneratorBiomass_Automated_C": { + "slug": "biomass-burner", + "icon": "desc-generatorbiomass-automated-c", + "name": "Biomass Burner", + "description": "Burns various forms of Biomass to generate electricity for the power grid.\nHas a Conveyor Belt input port that allows the Biomass supply to be automated.\n\nResource consumption will automatically be lowered to meet power demands.", + "className": "Desc_GeneratorBiomass_Automated_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_SpaceElevator_C": { + "slug": "space-elevator", + "icon": "desc-spaceelevator-c", + "name": "Space Elevator", + "description": "Requires deliveries of special Project Parts to complete Project Assembly Phases.\nCompleting these Phases will unlock new Tiers in the HUB Terminal.", + "className": "Desc_SpaceElevator_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_MinerMk1_C": { + "slug": "miner-mk-1", + "icon": "desc-minermk1-c", + "name": "Miner Mk.1", + "description": "Extracts solid resources from the resource node it is built on. \nDefault extraction rate is 60 resources per minute. \nExtraction rate varies based on resource node purity. Outputs all extracted resources onto connected Conveyor Belts.", + "className": "Desc_MinerMk1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 5, + "powerConsumptionExponent": 1.321929, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_StorageContainerMk1_C": { + "slug": "storage-container", + "icon": "desc-storagecontainermk1-c", + "name": "Storage Container", + "description": "Contains 24 slots for storing large amounts of items.\nHas 1 Conveyor Belt input port and 1 Conveyor Belt output port.", + "className": "Desc_StorageContainerMk1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConstructorMk1_C": { + "slug": "constructor", + "icon": "desc-constructormk1-c", + "name": "Constructor", + "description": "Crafts 1 part into another part.\n\nCan be automated by feeding component parts in via a Conveyor Belt connected to the input port. The resulting parts can be automatically extracted by connecting a Conveyor Belt to the output port.", + "className": "Desc_ConstructorMk1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 4, + "powerConsumptionExponent": 1.321929, + "manufacturingSpeed": 1 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_SmelterMk1_C": { + "slug": "smelter", + "icon": "desc-smeltermk1-c", + "name": "Smelter", + "description": "Smelts ore into ingots.\n\nCan be automated by feeding ore in via a Conveyor Belt connected to the input port. The resulting ingots can be automatically extracted by connecting a Conveyor Belt to the output port.", + "className": "Desc_SmelterMk1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 4, + "powerConsumptionExponent": 1.321929, + "manufacturingSpeed": 1 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Workshop_C": { + "slug": "equipment-workshop", + "icon": "desc-workshop-c", + "name": "Equipment Workshop", + "description": "Used to manually craft equipment.", + "className": "Desc_Workshop_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConveyorPole_C": { + "slug": "conveyor-pole", + "icon": "desc-conveyorpole-c", + "name": "Conveyor Pole", + "description": "Connects Conveyor Belt segments. Pole height can be adjusted.\nUseful for routing Conveyor Belts more precisely and across long distances.", + "className": "Desc_ConveyorPole_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PipelineSupport_C": { + "slug": "pipeline-support", + "icon": "desc-pipelinesupport-c", + "name": "Pipeline Support", + "description": "Connects Pipeline segments. Support height can be adjusted.\nUseful for routing Pipelines more precisely and across long distances.", + "className": "Desc_PipelineSupport_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PipeSupportStackable_C": { + "slug": "stackable-pipeline-support", + "icon": "desc-pipesupportstackable-c", + "name": "Stackable Pipeline Support", + "description": "Supports Pipelines. Can be stacked on other stackable supports.", + "className": "Desc_PipeSupportStackable_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_HyperPoleStackable_C": { + "slug": "stackable-hypertube-support", + "icon": "desc-hyperpolestackable-c", + "name": "Stackable Hypertube Support", + "description": "Supports Hypertubes. Can be stacked on other stackable supports.", + "className": "Desc_HyperPoleStackable_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PipeHyperSupport_C": { + "slug": "hypertube-support", + "icon": "desc-pipehypersupport-c", + "name": "Hypertube Support", + "description": "Supports Hypertubes, allowing them to stretch over longer distances.", + "className": "Desc_PipeHyperSupport_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConveyorPoleStackable_C": { + "slug": "stackable-conveyor-pole", + "icon": "desc-conveyorpolestackable-c", + "name": "Stackable Conveyor Pole", + "description": "Supports Conveyor Belts. Can be stacked on other stackable supports.", + "className": "Desc_ConveyorPoleStackable_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_DroneTransport_C": { + "slug": "drone", + "icon": "desc-dronetransport-c", + "name": "Drone", + "description": "Transports available input back and forth between its home Port and destination Ports. Drone Status and other details can be viewed at a Drone's home Port.\nMust be built on a Drone Port.\n\nHas 9 inventory slots.\n\nCan use any fuel type.\nRefuels at any of its connected Ports if possible.", + "className": "Desc_DroneTransport_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_FreightWagon_C": { + "slug": "freight-car", + "icon": "desc-freightwagon-c", + "name": "Freight Car", + "description": "Attaches to an Electric Locomotive or other Freight Car to transport resources. Must be built on a Railway.\nResources are loaded and unloaded at Freight Platforms.\nHas a 1600 m³ or 32-slot capacity, depending on whether resources are liquid or solid.", + "className": "Desc_FreightWagon_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Locomotive_C": { + "slug": "electric-locomotive", + "icon": "desc-locomotive-c", + "name": "Electric Locomotive", + "description": "Moves Freight Cars from station to station.\nRequires between 25-110 MW of power to move. \nMust be built on a Railway.\n\nNicknamed 'Leif' by FICSIT pioneers because of its reliability.", + "className": "Desc_Locomotive_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Truck_C": { + "slug": "truck", + "icon": "desc-truck-c", + "name": "Truck", + "description": "Picks up and delivers resources at Truck Stations. This process can be automated. Nicknamed 'The Unit' by FICSIT pioneers because of its massive frame.\n\nHas 48 inventory slots and a built-in Crafting Bench.\n\nFuel: Any fuel type", + "className": "Desc_Truck_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 75, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Tractor_C": { + "slug": "tractor", + "icon": "desc-tractor-c", + "name": "Tractor", + "description": "Picks up and delivers resources at Truck Stations. This process can be automated. Nicknamed 'Sugarcube' by FICSIT pioneers with the justification “It’s pretty sweet, y’know”.\n\nHas 25 inventory slots and a built-in Crafting Bench.\n\nFuel: Any fuel type", + "className": "Desc_Tractor_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 55, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Explorer_C": { + "slug": "explorer", + "icon": "desc-explorer-c", + "name": "Explorer", + "description": "Traverses rough terrain, including near-vertical surfaces. A fast and nimble exploration vehicle.\n\nHas 12 inventory slots and a built-in Crafting Bench.\n\nFuel: Any fuel type", + "className": "Desc_Explorer_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 90, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_CyberWagon_C": { + "slug": "cyber-wagon", + "icon": "desc-cyberwagon-c", + "name": "Cyber Wagon", + "description": "Absolutely indestructible.\nNeeds no further introduction.", + "className": "Desc_CyberWagon_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 150, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + } + } +} \ No newline at end of file diff --git a/data/data1.0.json b/data/data1.0.json new file mode 100644 index 00000000..192dc9e4 --- /dev/null +++ b/data/data1.0.json @@ -0,0 +1,50843 @@ +{ + "items": { + "Desc_NuclearWaste_C": { + "slug": "uranium-waste", + "icon": "desc-nuclearwaste-c", + "name": "Uranium Waste", + "description": "The by-product of consuming Uranium Fuel Rods in a Nuclear Power Plant.\nNon-Fissile Uranium can be extracted. Handle with caution.\n\nCaution: HIGHLY Radioactive.", + "sinkPoints": 0, + "className": "Desc_NuclearWaste_C", + "stackSize": 500, + "energyValue": 0.0, + "radioactiveDecay": 10.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_PlutoniumWaste_C": { + "slug": "plutonium-waste", + "icon": "desc-plutoniumwaste-c", + "name": "Plutonium Waste", + "description": "The by-product of consuming Plutonium Fuel Rods in a Nuclear Power Plant.\nMust be stored in a safe location. Handle with caution.\n\nCaution: EXTREMELY Radioactive.", + "sinkPoints": 0, + "className": "Desc_PlutoniumWaste_C", + "stackSize": 500, + "energyValue": 0.0, + "radioactiveDecay": 200.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Cement_C": { + "slug": "concrete", + "icon": "desc-cement-c", + "name": "Concrete", + "description": "Used for building.\nGood for stable Foundations.", + "sinkPoints": 12, + "className": "Desc_Cement_C", + "stackSize": 500, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Silica_C": { + "slug": "silica", + "icon": "desc-silica-c", + "name": "Silica", + "description": "Derived from Raw Quartz. Commonly used to create glass structures, in advanced refinement processes, and for alternative production of electronics.", + "sinkPoints": 20, + "className": "Desc_Silica_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_IronPlate_C": { + "slug": "iron-plate", + "icon": "desc-ironplate-c", + "name": "Iron Plate", + "description": "Used for crafting.\nOne of the most basic parts.", + "sinkPoints": 6, + "className": "Desc_IronPlate_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_SteelPlate_C": { + "slug": "steel-beam", + "icon": "desc-steelplate-c", + "name": "Steel Beam", + "description": "Primarily used when constructing slightly more advanced buildings.", + "sinkPoints": 64, + "className": "Desc_SteelPlate_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_AluminumIngot_C": { + "slug": "aluminum-ingot", + "icon": "desc-aluminumingot-c", + "name": "Aluminum Ingot", + "description": "Smelted from Aluminum Scrap, which is refined from Alumina Solution.\nUsed to produce specialized aluminum-based parts.", + "sinkPoints": 131, + "className": "Desc_AluminumIngot_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Battery_C": { + "slug": "battery", + "icon": "desc-battery-c", + "name": "Battery", + "description": "Primarily used as fuel for Drones and vehicles.", + "sinkPoints": 465, + "className": "Desc_Battery_C", + "stackSize": 200, + "energyValue": 6000.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Fuel_C": { + "slug": "packaged-fuel", + "icon": "desc-fuel-c", + "name": "Packaged Fuel", + "description": "Fuel, packaged for alternative transport. Can be used as fuel for vehicles and the Jetpack.", + "sinkPoints": 270, + "className": "Desc_Fuel_C", + "stackSize": 100, + "energyValue": 750.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 235, + "g": 125, + "b": 21, + "a": 255 + } + }, + "Desc_PackagedIonizedFuel_C": { + "slug": "packaged-ionized-fuel", + "icon": "desc-packagedionizedfuel-c", + "name": "Packaged Ionized Fuel", + "description": "Ionized Fuel, packaged for alternative transport. Can be used as fuel for vehicles and the Jetpack.", + "sinkPoints": 5246, + "className": "Desc_PackagedIonizedFuel_C", + "stackSize": 100, + "energyValue": 10000.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_PackagedRocketFuel_C": { + "slug": "packaged-rocket-fuel", + "icon": "desc-packagedrocketfuel-c", + "name": "Packaged Rocket Fuel", + "description": "Rocket Fuel, packaged for alternative transport. Can be used as fuel for vehicles and the Jetpack.", + "sinkPoints": 1028, + "className": "Desc_PackagedRocketFuel_C", + "stackSize": 100, + "energyValue": 7200.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_TurboFuel_C": { + "slug": "packaged-turbofuel", + "icon": "desc-turbofuel-c", + "name": "Packaged Turbofuel", + "description": "Turbofuel, packaged for alternative transport. Can be used as fuel for vehicles and the Jetpack.", + "sinkPoints": 570, + "className": "Desc_TurboFuel_C", + "stackSize": 100, + "energyValue": 2000.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 212, + "g": 41, + "b": 46, + "a": 255 + } + }, + "Desc_HazmatFilter_C": { + "slug": "iodine-infused-filter", + "icon": "desc-hazmatfilter-c", + "name": "Iodine-Infused Filter", + "description": "Absorbs radioactive particles when used with the Hazmat Suit.", + "sinkPoints": 2274, + "className": "Desc_HazmatFilter_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_CompactedCoal_C": { + "slug": "compacted-coal", + "icon": "desc-compactedcoal-c", + "name": "Compacted Coal", + "description": "A much more efficient alternative to Coal. Used as fuel for vehicles and Coal-Powered Generators.", + "sinkPoints": 28, + "className": "Desc_CompactedCoal_C", + "stackSize": 100, + "energyValue": 630.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_PackagedOilResidue_C": { + "slug": "packaged-heavy-oil-residue", + "icon": "desc-packagedoilresidue-c", + "name": "Packaged Heavy Oil Residue", + "description": "Heavy Oil Residue, packaged for alternative transport. Can be used as fuel for vehicles.", + "sinkPoints": 180, + "className": "Desc_PackagedOilResidue_C", + "stackSize": 100, + "energyValue": 400.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 109, + "g": 45, + "b": 120, + "a": 255 + } + }, + "Desc_PetroleumCoke_C": { + "slug": "petroleum-coke", + "icon": "desc-petroleumcoke-c", + "name": "Petroleum Coke", + "description": "Used for crafting.\nA carbon-rich material distilled from Heavy Oil Residue. \nUsed as a less efficient Coal replacement.", + "sinkPoints": 20, + "className": "Desc_PetroleumCoke_C", + "stackSize": 200, + "energyValue": 180.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_PackagedOil_C": { + "slug": "packaged-oil", + "icon": "desc-packagedoil-c", + "name": "Packaged Oil", + "description": "Crude Oil, packaged for alternative transport. Can be used as fuel for vehicles.", + "sinkPoints": 180, + "className": "Desc_PackagedOil_C", + "stackSize": 100, + "energyValue": 320.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_IronRod_C": { + "slug": "iron-rod", + "icon": "desc-ironrod-c", + "name": "Iron Rod", + "description": "Used for crafting.\nOne of the most basic parts.", + "sinkPoints": 4, + "className": "Desc_IronRod_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Wire_C": { + "slug": "wire", + "icon": "desc-wire-c", + "name": "Wire", + "description": "Used for crafting.\nOne of the most basic parts.", + "sinkPoints": 6, + "className": "Desc_Wire_C", + "stackSize": 500, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Cable_C": { + "slug": "cable", + "icon": "desc-cable-c", + "name": "Cable", + "description": "Used for crafting.\nPrimarily used to build Power Lines.", + "sinkPoints": 24, + "className": "Desc_Cable_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_IronIngot_C": { + "slug": "iron-ingot", + "icon": "desc-ironingot-c", + "name": "Iron Ingot", + "description": "Used for crafting the most basic parts.", + "sinkPoints": 2, + "className": "Desc_IronIngot_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_IronPlateReinforced_C": { + "slug": "reinforced-iron-plate", + "icon": "desc-ironplatereinforced-c", + "name": "Reinforced Iron Plate", + "description": "Used for crafting.\nA sturdier and more durable Iron Plate.", + "sinkPoints": 120, + "className": "Desc_IronPlateReinforced_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Rotor_C": { + "slug": "rotor", + "icon": "desc-rotor-c", + "name": "Rotor", + "description": "Used for crafting.\nThe moving parts of a motor.", + "sinkPoints": 140, + "className": "Desc_Rotor_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_LiquidFuel_C": { + "slug": "fuel", + "icon": "desc-liquidfuel-c", + "name": "Fuel", + "description": "Can be used as-is to generate power, or packaged to be used as fuel for vehicles or the Jetpack.", + "sinkPoints": 75000, + "className": "Desc_LiquidFuel_C", + "stackSize": 50000, + "energyValue": 750.0, + "radioactiveDecay": 0.0, + "liquid": true, + "fluidColor": { + "r": 235, + "g": 125, + "b": 21, + "a": 0 + } + }, + "Desc_RocketFuel_C": { + "slug": "rocket-fuel", + "icon": "desc-rocketfuel-c", + "name": "Rocket Fuel", + "description": "A high-impulse compressed gas fuel.\nCan be used as-is to power Fuel-Powered Generators, or packaged to be used as fuel for vehicles or the Jetpack.", + "sinkPoints": 289000, + "className": "Desc_RocketFuel_C", + "stackSize": 50000, + "energyValue": 3600.0, + "radioactiveDecay": 0.0, + "liquid": true, + "fluidColor": { + "r": 189, + "g": 37, + "b": 26, + "a": 0 + } + }, + "Desc_CopperSheet_C": { + "slug": "copper-sheet", + "icon": "desc-coppersheet-c", + "name": "Copper Sheet", + "description": "Used for crafting.\nPrimarily used for Pipelines due to its high corrosion resistance.", + "sinkPoints": 24, + "className": "Desc_CopperSheet_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_ModularFrame_C": { + "slug": "modular-frame", + "icon": "desc-modularframe-c", + "name": "Modular Frame", + "description": "Used for crafting.\nA multipurpose building block.", + "sinkPoints": 408, + "className": "Desc_ModularFrame_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_IronScrew_C": { + "slug": "screw", + "icon": "desc-ironscrew-c", + "name": "Screw", + "description": "Used for crafting.\nOne of the most basic parts.", + "sinkPoints": 2, + "className": "Desc_IronScrew_C", + "stackSize": 500, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_NitricAcid_C": { + "slug": "nitric-acid", + "icon": "desc-nitricacid-c", + "name": "Nitric Acid", + "description": "Produced when Nitrogen Gas reacts with Water. Its high corrosiveness and oxidizing properties make it an excellent choice for refinement and fuel production processes.", + "sinkPoints": 94000, + "className": "Desc_NitricAcid_C", + "stackSize": 50000, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": true, + "fluidColor": { + "r": 217, + "g": 217, + "b": 162, + "a": 0 + } + }, + "Desc_LiquidTurboFuel_C": { + "slug": "turbofuel", + "icon": "desc-liquidturbofuel-c", + "name": "Turbofuel", + "description": "A more efficient alternative to Fuel. Can be used as-is to generate power, or packaged to be used as fuel for vehicles.", + "sinkPoints": 225000, + "className": "Desc_LiquidTurboFuel_C", + "stackSize": 50000, + "energyValue": 2000.0, + "radioactiveDecay": 0.0, + "liquid": true, + "fluidColor": { + "r": 212, + "g": 41, + "b": 46, + "a": 0 + } + }, + "Desc_GasTank_C": { + "slug": "empty-fluid-tank", + "icon": "desc-gastank-c", + "name": "Empty Fluid Tank", + "description": "Used to package gases and volatile liquids for transportation.", + "sinkPoints": 170, + "className": "Desc_GasTank_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_CrystalOscillator_C": { + "slug": "crystal-oscillator", + "icon": "desc-crystaloscillator-c", + "name": "Crystal Oscillator", + "description": "An electronic oscillator circuit that uses the mechanical resonance of a vibrating crystal to create an electrical signal with a precise frequency.", + "sinkPoints": 3072, + "className": "Desc_CrystalOscillator_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Motor_C": { + "slug": "motor", + "icon": "desc-motor-c", + "name": "Motor", + "description": "Creates a mechanical force that is used to move things from machines to vehicles.", + "sinkPoints": 1520, + "className": "Desc_Motor_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_DarkMatter_C": { + "slug": "dark-matter-crystal", + "icon": "desc-darkmatter-c", + "name": "Dark Matter Crystal", + "description": "Concentrated Dark Matter Residue that is isolated within a crystalline vessel. This form of containment allows for utilising Dark Matter reliably in other production processes.\n\nPower Usage: 500-1500 MW (1000 MW average).", + "sinkPoints": 1780, + "className": "Desc_DarkMatter_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_IonizedFuel_C": { + "slug": "ionized-fuel", + "icon": "desc-ionizedfuel-c", + "name": "Ionized Fuel", + "description": "Fuel that has been ionized, allowing it to deliver incredible output.\nCan be used as-is to power Fuel-Powered Generators, or packaged to be used as fuel for vehicles or the Jetpack.", + "sinkPoints": 2398000, + "className": "Desc_IonizedFuel_C", + "stackSize": 50000, + "energyValue": 5000.0, + "radioactiveDecay": 0.0, + "liquid": true, + "fluidColor": { + "r": 213, + "g": 95, + "b": 26, + "a": 60 + } + }, + "Desc_ComputerSuper_C": { + "slug": "supercomputer", + "icon": "desc-computersuper-c", + "name": "Supercomputer", + "description": "The next-gen version of a Computer.", + "sinkPoints": 97352, + "className": "Desc_ComputerSuper_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_CoolingSystem_C": { + "slug": "cooling-system", + "icon": "desc-coolingsystem-c", + "name": "Cooling System", + "description": "Keeps advanced parts and buildings from exceeding efficient temperature levels.", + "sinkPoints": 12006, + "className": "Desc_CoolingSystem_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_FicsiteMesh_C": { + "slug": "ficsite-trigon", + "icon": "desc-ficsitemesh-c", + "name": "Ficsite Trigon", + "description": "The Ficsite Trigon, made from Ficsite Ingots, is perfectly shaped for all construction challenges. It's performance is so exceptional, it basically solved structural engineering.", + "sinkPoints": 1291, + "className": "Desc_FicsiteMesh_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_MotorLightweight_C": { + "slug": "turbo-motor", + "icon": "desc-motorlightweight-c", + "name": "Turbo Motor", + "description": "A more complex and powerful version of the regular Motor.", + "sinkPoints": 240496, + "className": "Desc_MotorLightweight_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_TimeCrystal_C": { + "slug": "time-crystal", + "icon": "desc-timecrystal-c", + "name": "Time Crystal", + "description": "Time Crystals are Diamonds that have been reconfigured on a sub-atomic level in the Converter to retain a time-periodic self-organizing structure. This allows them to be used in the development of quantum processing and storage technologies.", + "sinkPoints": 960, + "className": "Desc_TimeCrystal_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_DarkEnergy_C": { + "slug": "dark-matter-residue", + "icon": "desc-darkenergy-c", + "name": "Dark Matter Residue", + "description": "Produced as a by-product of Quantum Encoding processes and alternatively generated in the Converter.\n\nVarious fields of science are still debating the nature and properties of Dark Matter. Meanwhile, FICSIT has found several applications for it in space-time manipulation.", + "sinkPoints": 130000, + "className": "Desc_DarkEnergy_C", + "stackSize": 50000, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": true, + "fluidColor": { + "r": 253, + "g": 175, + "b": 249, + "a": 150 + } + }, + "Desc_SAMIngot_C": { + "slug": "reanimated-sam", + "icon": "desc-samingot-c", + "name": "Reanimated SAM", + "description": "The active and contained form of the Strange Alien Matter.\n\nProper electromagnetic containment is required, as it appears to be able to manipulate the atomic bonds of any matter it comes into contact with.", + "sinkPoints": 160, + "className": "Desc_SAMIngot_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_QuantumEnergy_C": { + "slug": "excited-photonic-matter", + "icon": "desc-quantumenergy-c", + "name": "Excited Photonic Matter", + "description": "Excited Photonic Matter is essential for all production processes in the Quantum Encoder.\n\nFormed in the Converter by inducing intense photon interactions through exposure to SAM in a high-energy environment.", + "sinkPoints": 100000, + "className": "Desc_QuantumEnergy_C", + "stackSize": 50000, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": true, + "fluidColor": { + "r": 118, + "g": 245, + "b": 232, + "a": 90 + } + }, + "Desc_Diamond_C": { + "slug": "diamonds", + "icon": "desc-diamond-c", + "name": "Diamonds", + "description": "Synthetic Diamonds produced by exposing Coal to extreme heat and pressure.\n\nUsed in the production of Time Crystals and Dark Matter Crystals.\n\nPower Usage: 250-750 MW (500 MW average).", + "sinkPoints": 240, + "className": "Desc_Diamond_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_AluminumPlate_C": { + "slug": "alclad-aluminum-sheet", + "icon": "desc-aluminumplate-c", + "name": "Alclad Aluminum Sheet", + "description": "Used to make products that require high heat conduction or a high specific strength. Thin, lightweight, and highly durable.", + "sinkPoints": 266, + "className": "Desc_AluminumPlate_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_QuantumOscillator_C": { + "slug": "superposition-oscillator", + "icon": "desc-quantumoscillator-c", + "name": "Superposition Oscillator", + "description": "An oscillator circuit that uses the mechanical resonance of a vibrating crystal to create a string vibration with a precise frequency. Often used in teleportation technology and dimensional manipulation.", + "sinkPoints": 37292, + "className": "Desc_QuantumOscillator_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_TemporalProcessor_C": { + "slug": "neural-quantum-processor", + "icon": "desc-temporalprocessor-c", + "name": "Neural-Quantum Processor", + "description": "The Neural-Quantum Processor utilizes a combination of neural network architecture and quantum computing techniques to achieve unprecedented performance. This technology has enabled some of FICSIT's biggest advancements in artificial intelligence and relativistic engineering.", + "sinkPoints": 248034, + "className": "Desc_TemporalProcessor_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_SpaceElevatorPart_12_C": { + "slug": "ai-expansion-server", + "icon": "desc-spaceelevatorpart-12-c", + "name": "AI Expansion Server", + "description": "Project Part #12. Ship via the Space Elevator to complete phases of Project Assembly.\nPower Usage: 1500-2500 MW (2000 MW average).\n\nGrowth is the metric by which we measure success.", + "sinkPoints": 597652, + "className": "Desc_SpaceElevatorPart_12_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_SpaceElevatorPart_6_C": { + "slug": "magnetic-field-generator", + "icon": "desc-spaceelevatorpart-6-c", + "name": "Magnetic Field Generator", + "description": "Project Part #7. Ship via the Space Elevator to complete phases of Project Assembly.\n\nThese modular generators use superconducting magnets and vast amounts of electricity to produce a powerful and easily expandable magnetic field.", + "sinkPoints": 11000, + "className": "Desc_SpaceElevatorPart_6_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_SAMFluctuator_C": { + "slug": "sam-fluctuator", + "icon": "desc-samfluctuator-c", + "name": "SAM Fluctuator", + "description": "The SAM Fluctuator is able to regulate and direct the behaviour of Reanimated SAM through the application of electric charges with varying frequencies.\nThis control facilitates technologies such as matter-to-energy conversion and spatiotemporal matter manipulation.", + "sinkPoints": 1968, + "className": "Desc_SAMFluctuator_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_SteelPipe_C": { + "slug": "steel-pipe", + "icon": "desc-steelpipe-c", + "name": "Steel Pipe", + "description": "Primarily used when constructing slightly more advanced buildings.", + "sinkPoints": 24, + "className": "Desc_SteelPipe_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_ModularFrameFused_C": { + "slug": "fused-modular-frame", + "icon": "desc-modularframefused-c", + "name": "Fused Modular Frame", + "description": "A corrosion-resistant, nitride-hardened, highly-robust-yet-lightweight modular frame.", + "sinkPoints": 62840, + "className": "Desc_ModularFrameFused_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_ModularFrameLightweight_C": { + "slug": "radio-control-unit", + "icon": "desc-modularframelightweight-c", + "name": "Radio Control Unit", + "description": "Enhances and directs radio signals.", + "sinkPoints": 32352, + "className": "Desc_ModularFrameLightweight_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_FicsiteIngot_C": { + "slug": "ficsite-ingot", + "icon": "desc-ficsiteingot-c", + "name": "Ficsite Ingot", + "description": "Produced by reconstructing other metals on a molecular level using Strange Alien Matter.\n\nSynthesized by FICSIT to be the perfect construction material, and used in the most high-end processes.", + "sinkPoints": 1936, + "className": "Desc_FicsiteIngot_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_SpaceElevatorPart_10_C": { + "slug": "biochemical-sculptor", + "icon": "desc-spaceelevatorpart-10-c", + "name": "Biochemical Sculptor", + "description": "Project Part #10. Ship via the Space Elevator to complete phases of Project Assembly.\n\nYears ahead of the competition, this top-of-the-line 3D printer is used for the production of synthetic biological resources.", + "sinkPoints": 301778, + "className": "Desc_SpaceElevatorPart_10_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_SpaceElevatorPart_7_C": { + "slug": "assembly-director-system", + "icon": "desc-spaceelevatorpart-7-c", + "name": "Assembly Director System", + "description": "Project Part #6. Ship via the Space Elevator to complete phases of Project Assembly.\n\nThis extremely fast and precise computing system is specifically designed to direct the Project Assembly: Assembly Phase.", + "sinkPoints": 500176, + "className": "Desc_SpaceElevatorPart_7_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_GoldIngot_C": { + "slug": "caterium-ingot", + "icon": "desc-goldingot-c", + "name": "Caterium Ingot", + "description": "Smelted from Caterium Ore. Primarily used for advanced electronics.", + "sinkPoints": 42, + "className": "Desc_GoldIngot_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_FluidCanister_C": { + "slug": "empty-canister", + "icon": "desc-fluidcanister-c", + "name": "Empty Canister", + "description": "Used to package fluids for transportation.", + "sinkPoints": 60, + "className": "Desc_FluidCanister_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_CircuitBoard_C": { + "slug": "circuit-board", + "icon": "desc-circuitboard-c", + "name": "Circuit Board", + "description": "Advanced electronics that have a plethora of different uses.", + "sinkPoints": 696, + "className": "Desc_CircuitBoard_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Plastic_C": { + "slug": "plastic", + "icon": "desc-plastic-c", + "name": "Plastic", + "description": "Versatile and easy to manufacture, this material has a wide range of uses.", + "sinkPoints": 75, + "className": "Desc_Plastic_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_SteelPlateReinforced_C": { + "slug": "encased-industrial-beam", + "icon": "desc-steelplatereinforced-c", + "name": "Encased Industrial Beam", + "description": "Simultaneously utilizes the compressive strength of concrete and the tensile strength of steel.\nMostly used as a stable base for constructing buildings.", + "sinkPoints": 528, + "className": "Desc_SteelPlateReinforced_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Rubber_C": { + "slug": "rubber", + "icon": "desc-rubber-c", + "name": "Rubber", + "description": "A very flexible material that has a lot of friction.", + "sinkPoints": 60, + "className": "Desc_Rubber_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_PolymerResin_C": { + "slug": "polymer-resin", + "icon": "desc-polymerresin-c", + "name": "Polymer Resin", + "description": "A by-product of Crude Oil refinement into Fuel. Commonly used to manufacture Plastic and Rubber.", + "sinkPoints": 12, + "className": "Desc_PolymerResin_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_HeavyOilResidue_C": { + "slug": "heavy-oil-residue", + "icon": "desc-heavyoilresidue-c", + "name": "Heavy Oil Residue", + "description": "A by-product of Plastic and Rubber production. Can be further refined into Fuel and Petroleum Coke.", + "sinkPoints": 30000, + "className": "Desc_HeavyOilResidue_C", + "stackSize": 50000, + "energyValue": 400.0, + "radioactiveDecay": 0.0, + "liquid": true, + "fluidColor": { + "r": 109, + "g": 45, + "b": 120, + "a": 0 + } + }, + "Desc_QuartzCrystal_C": { + "slug": "quartz-crystal", + "icon": "desc-quartzcrystal-c", + "name": "Quartz Crystal", + "description": "Derived from Raw Quartz. Used in the production of advanced radar technology and high-quality display screens.", + "sinkPoints": 50, + "className": "Desc_QuartzCrystal_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_SteelIngot_C": { + "slug": "steel-ingot", + "icon": "desc-steelingot-c", + "name": "Steel Ingot", + "description": "Smelted from a combination of Iron Ore and Coal. Can be made into several parts used in building construction.", + "sinkPoints": 8, + "className": "Desc_SteelIngot_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_SpaceElevatorPart_2_C": { + "slug": "versatile-framework", + "icon": "desc-spaceelevatorpart-2-c", + "name": "Versatile Framework", + "description": "Project Part #2. Ship via the Space Elevator to complete phases of Project Assembly.", + "sinkPoints": 1176, + "className": "Desc_SpaceElevatorPart_2_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_PackagedWater_C": { + "slug": "packaged-water", + "icon": "desc-packagedwater-c", + "name": "Packaged Water", + "description": "Water, packaged for alternative transport.", + "sinkPoints": 130, + "className": "Desc_PackagedWater_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 122, + "g": 176, + "b": 212, + "a": 255 + } + }, + "Desc_CopperIngot_C": { + "slug": "copper-ingot", + "icon": "desc-copperingot-c", + "name": "Copper Ingot", + "description": "Used for crafting the most basic parts.", + "sinkPoints": 6, + "className": "Desc_CopperIngot_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_AluminumScrap_C": { + "slug": "aluminum-scrap", + "icon": "desc-aluminumscrap-c", + "name": "Aluminum Scrap", + "description": "Refined from Alumina. Can be smelted into Aluminum Ingots for industrial usage.", + "sinkPoints": 27, + "className": "Desc_AluminumScrap_C", + "stackSize": 500, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_AluminumCasing_C": { + "slug": "aluminum-casing", + "icon": "desc-aluminumcasing-c", + "name": "Aluminum Casing", + "description": "A versatile container cast from Aluminum Ingots.", + "sinkPoints": 393, + "className": "Desc_AluminumCasing_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_AluminaSolution_C": { + "slug": "alumina-solution", + "icon": "desc-aluminasolution-c", + "name": "Alumina Solution", + "description": "Dissolved Alumina, extracted from Bauxite. Can be further refined into Aluminum Scrap for Aluminum Ingot production.", + "sinkPoints": 20000, + "className": "Desc_AluminaSolution_C", + "stackSize": 50000, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": true, + "fluidColor": { + "r": 193, + "g": 193, + "b": 193, + "a": 0 + } + }, + "Desc_Computer_C": { + "slug": "computer", + "icon": "desc-computer-c", + "name": "Computer", + "description": "A complex logic machine that is used to control advanced behavior in other machines.", + "sinkPoints": 8352, + "className": "Desc_Computer_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_ModularFrameHeavy_C": { + "slug": "heavy-modular-frame", + "icon": "desc-modularframeheavy-c", + "name": "Heavy Modular Frame", + "description": "A more robust multipurpose frame.", + "sinkPoints": 10800, + "className": "Desc_ModularFrameHeavy_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_SpaceElevatorPart_1_C": { + "slug": "smart-plating", + "icon": "desc-spaceelevatorpart-1-c", + "name": "Smart Plating", + "description": "Project Part #1. Ship via the Space Elevator to complete phases of Project Assembly.", + "sinkPoints": 520, + "className": "Desc_SpaceElevatorPart_1_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_HighSpeedConnector_C": { + "slug": "high-speed-connector", + "icon": "desc-highspeedconnector-c", + "name": "High-Speed Connector", + "description": "Connects multiple cables and wires in a very efficient way. Uses a standard pattern, so it has many varied applications.", + "sinkPoints": 3776, + "className": "Desc_HighSpeedConnector_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_SpaceElevatorPart_3_C": { + "slug": "automated-wiring", + "icon": "desc-spaceelevatorpart-3-c", + "name": "Automated Wiring", + "description": "Project Part #3. Ship via the Space Elevator to complete phases of Project Assembly.", + "sinkPoints": 1440, + "className": "Desc_SpaceElevatorPart_3_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Stator_C": { + "slug": "stator", + "icon": "desc-stator-c", + "name": "Stator", + "description": "Used for crafting.\nThe static parts of a motor.", + "sinkPoints": 240, + "className": "Desc_Stator_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_CircuitBoardHighSpeed_C": { + "slug": "ai-limiter", + "icon": "desc-circuitboardhighspeed-c", + "name": "AI Limiter", + "description": "Controls AIs and keeps them from evolving in malicious ways. Super advanced electronics.", + "sinkPoints": 920, + "className": "Desc_CircuitBoardHighSpeed_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_HighSpeedWire_C": { + "slug": "quickwire", + "icon": "desc-highspeedwire-c", + "name": "Quickwire", + "description": "Caterium's high conductivity and resistance to corrosion make it ideal for small, advanced electronics.", + "sinkPoints": 17, + "className": "Desc_HighSpeedWire_C", + "stackSize": 500, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_SpaceElevatorPart_4_C": { + "slug": "modular-engine", + "icon": "desc-spaceelevatorpart-4-c", + "name": "Modular Engine", + "description": "Project Part #4. Ship via the Space Elevator to complete phases of Project Assembly.", + "sinkPoints": 9960, + "className": "Desc_SpaceElevatorPart_4_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_SpaceElevatorPart_5_C": { + "slug": "adaptive-control-unit", + "icon": "desc-spaceelevatorpart-5-c", + "name": "Adaptive Control Unit", + "description": "Project Part #5. Ship via the Space Elevator to complete phases of Project Assembly.", + "sinkPoints": 76368, + "className": "Desc_SpaceElevatorPart_5_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_PressureConversionCube_C": { + "slug": "pressure-conversion-cube", + "icon": "desc-pressureconversioncube-c", + "name": "Pressure Conversion Cube", + "description": "Converts outgoing force into internal pressure. Required to contain unstable, high-energy matter.", + "sinkPoints": 255088, + "className": "Desc_PressureConversionCube_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_PlutoniumCell_C": { + "slug": "encased-plutonium-cell", + "icon": "desc-plutoniumcell-c", + "name": "Encased Plutonium Cell", + "description": "Plutonium Pellets encased in concrete.\nUsed to produce Plutonium Fuel Rods for Nuclear Power production.\n\nCaution: Moderately Radioactive.", + "sinkPoints": 0, + "className": "Desc_PlutoniumCell_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 120.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_PlutoniumPellet_C": { + "slug": "plutonium-pellet", + "icon": "desc-plutoniumpellet-c", + "name": "Plutonium Pellet", + "description": "Produced in the Particle Accelerator through conversion of Non-fissile Uranium.\nUsed to produce Encased Plutonium Cells for Plutonium Fuel Rods.\n\nPower Usage: 250-750 MW (500 MW average).\nCaution: Moderately Radioactive.", + "sinkPoints": 0, + "className": "Desc_PlutoniumPellet_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 20.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_NonFissibleUranium_C": { + "slug": "non-fissile-uranium", + "icon": "desc-nonfissibleuranium-c", + "name": "Non-Fissile Uranium", + "description": "The Uranium-238 isotope is non-fissile, meaning it cannot be used for nuclear fission. It can, however, be converted into fissile Plutonium in the Particle Accelerator.\n\nCaution: Mildly Radioactive.", + "sinkPoints": 0, + "className": "Desc_NonFissibleUranium_C", + "stackSize": 500, + "energyValue": 0.0, + "radioactiveDecay": 0.75, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_SulfuricAcid_C": { + "slug": "sulfuric-acid", + "icon": "desc-sulfuricacid-c", + "name": "Sulfuric Acid", + "description": "Produced by combining Sulfur and Water in a complex reaction. Primarily used in refinement processes and Battery production.", + "sinkPoints": 16000, + "className": "Desc_SulfuricAcid_C", + "stackSize": 50000, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": true, + "fluidColor": { + "r": 255, + "g": 255, + "b": 0, + "a": 0 + } + }, + "Desc_CopperDust_C": { + "slug": "copper-powder", + "icon": "desc-copperdust-c", + "name": "Copper Powder", + "description": "Ground-up Copper Ingots.\nThe high natural density of Copper, combined with the granularity of the powder, makes this part perfect for producing Nuclear Pasta in the Particle Accelerator.", + "sinkPoints": 72, + "className": "Desc_CopperDust_C", + "stackSize": 500, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_AluminumPlateReinforced_C": { + "slug": "heat-sink", + "icon": "desc-aluminumplatereinforced-c", + "name": "Heat Sink", + "description": "Used to dissipate heat faster.", + "sinkPoints": 2804, + "className": "Desc_AluminumPlateReinforced_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_ElectromagneticControlRod_C": { + "slug": "electromagnetic-control-rod", + "icon": "desc-electromagneticcontrolrod-c", + "name": "Electromagnetic Control Rod", + "description": "Regulates power output via electromagnetism.", + "sinkPoints": 2560, + "className": "Desc_ElectromagneticControlRod_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_SpaceElevatorPart_9_C": { + "slug": "nuclear-pasta", + "icon": "desc-spaceelevatorpart-9-c", + "name": "Nuclear Pasta", + "description": "Project Part #9. Ship via the Space Elevator to complete phases of Project Assembly.\nPower Usage: 500-1500 MW (1000 MW average).\n\nNuclear Pasta is extremely dense degenerate matter, formed when extreme pressure forces protons and electrons together into neutrons. It is theorized to exist naturally within the crust of neutron stars.", + "sinkPoints": 538976, + "className": "Desc_SpaceElevatorPart_9_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_UraniumCell_C": { + "slug": "encased-uranium-cell", + "icon": "desc-uraniumcell-c", + "name": "Encased Uranium Cell", + "description": "Used to produce Uranium Fuel Rods for Nuclear Power production. Made from Uranium Ore.\n\nCaution: Mildly Radioactive.", + "sinkPoints": 147, + "className": "Desc_UraniumCell_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 0.5, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_DissolvedSilica_C": { + "slug": "dissolved-silica", + "icon": "desc-dissolvedsilica-c", + "name": "Dissolved Silica", + "description": "Silica dissolved in Water, produced as part of the alternative refinement of Raw Quartz.\nThe Silica can be extracted from the Water to complete the refinement process.", + "sinkPoints": 0, + "className": "Desc_DissolvedSilica_C", + "stackSize": 50000, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": true, + "fluidColor": { + "r": 226, + "g": 190, + "b": 238, + "a": 0 + } + }, + "Desc_SpaceElevatorPart_8_C": { + "slug": "thermal-propulsion-rocket", + "icon": "desc-spaceelevatorpart-8-c", + "name": "Thermal Propulsion Rocket", + "description": "Project Part #8. Ship via the Space Elevator to complete phases of Project Assembly.\n\nUses extreme heat to produce the high-pressure plasma required to get Project Assembly into motion.", + "sinkPoints": 728508, + "className": "Desc_SpaceElevatorPart_8_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Gunpowder_C": { + "slug": "black-powder", + "icon": "desc-gunpowder-c", + "name": "Black Powder", + "description": "An explosive powder that is commonly used to produce simple explosives.", + "sinkPoints": 14, + "className": "Desc_Gunpowder_C", + "stackSize": 200, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Ficsonium_C": { + "slug": "ficsonium", + "icon": "desc-ficsonium-c", + "name": "Ficsonium", + "description": "Usage and production of this material is strictly prohibited. On Earth, that is. There are no rules in space, only efficiency. \n\nPower Usage: 500-1500 MW (1000 MW average).", + "sinkPoints": 0, + "className": "Desc_Ficsonium_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 250.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_SingularityCell_C": { + "slug": "singularity-cell", + "icon": "desc-singularitycell-c", + "name": "Singularity Cell", + "description": "Used to break down space and time. Required to power Portals.", + "sinkPoints": 114675, + "className": "Desc_SingularityCell_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_SpaceElevatorPart_11_C": { + "slug": "ballistic-warp-drive", + "icon": "desc-spaceelevatorpart-11-c", + "name": "Ballistic Warp Drive", + "description": "Project Part #11. Ship via the Space Elevator to complete phases of Project Assembly.\nPower Usage: 1000-2000 MW (1500 MW average).\n\nA large amount of force is required for the Warp Drives to activate, so sticking them to rockets was the logical next step. Additionally, results improved immensely when the observers were further removed from the Warp Drives upon activation.", + "sinkPoints": 2895334, + "className": "Desc_SpaceElevatorPart_11_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Filter_C": { + "slug": "gas-filter", + "icon": "desc-filter-c", + "name": "Gas Filter", + "description": "Filters out toxins and pollutants from the air when used with a Gas Mask.", + "sinkPoints": 608, + "className": "Desc_Filter_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_AlienProtein_C": { + "slug": "alien-protein", + "icon": "desc-alienprotein-c", + "name": "Alien Protein", + "description": "Ground-up Alien Remains in a neat little package.\nUsed for medical purposes and to research alien organisms.", + "sinkPoints": 0, + "className": "Desc_AlienProtein_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Crystal_C": { + "slug": "blue-power-slug", + "icon": "desc-crystal-c", + "name": "Blue Power Slug", + "description": "A strange slug radiating an unknown weak power.", + "sinkPoints": 0, + "className": "Desc_Crystal_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_AlienDNACapsule_C": { + "slug": "alien-dna-capsule", + "icon": "desc-aliendnacapsule-c", + "name": "Alien DNA Capsule", + "description": "Translates organic chemicals into readable alien genetic information.\nUsed for researching alien organisms.\n\nGo the extra kilometer! Knowledge is power, and power is just efficiency with fewer steps. Depositing Alien DNA Capsules in the AWESOME Sink provides FICSIT with knowledge, and pioneers with Coupons.", + "sinkPoints": 0, + "className": "Desc_AlienDNACapsule_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_WAT2_C": { + "slug": "mercer-sphere", + "icon": "desc-wat2-c", + "name": "Mercer Sphere", + "description": "A weird alien phenomenon. While the sphere appears liquid, it behaves like a solid and does not have any detectable mass. It seems to somehow interact with and have awareness of its environment.", + "sinkPoints": 0, + "className": "Desc_WAT2_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Crystal_mk3_C": { + "slug": "purple-power-slug", + "icon": "desc-crystal-mk3-c", + "name": "Purple Power Slug", + "description": "A strange slug radiating a powerful unknown power.", + "sinkPoints": 0, + "className": "Desc_Crystal_mk3_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Crystal_mk2_C": { + "slug": "yellow-power-slug", + "icon": "desc-crystal-mk2-c", + "name": "Yellow Power Slug", + "description": "A strange slug radiating an unknown power.", + "sinkPoints": 0, + "className": "Desc_Crystal_mk2_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_GunpowderMK2_C": { + "slug": "smokeless-powder", + "icon": "desc-gunpowdermk2-c", + "name": "Smokeless Powder", + "description": "An explosive powder that is commonly used to produce modern firearms.", + "sinkPoints": 58, + "className": "Desc_GunpowderMK2_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_RebarGunProjectile_C": { + "slug": "rebar-gun", + "icon": "desc-rebargunprojectile-c", + "name": "Rebar Gun", + "description": "An improvised ranged weapon for self-defense. Has to be reloaded after each use.", + "sinkPoints": 1968, + "className": "Desc_RebarGunProjectile_C", + "stackSize": 1, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "BP_EquipmentDescriptorRifle_C": { + "slug": "rifle", + "icon": "bp-equipmentdescriptorrifle-c", + "name": "Rifle", + "description": "A long-range, rapid-fire weapon. Specifically designed to deliver adequate performance within the designated work area.", + "sinkPoints": 9480, + "className": "BP_EquipmentDescriptorRifle_C", + "stackSize": 1, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_NuclearFuelRod_C": { + "slug": "uranium-fuel-rod", + "icon": "desc-nuclearfuelrod-c", + "name": "Uranium Fuel Rod", + "description": "Used as fuel for Nuclear Power Plants.\n\nCaution: Produces radioactive Uranium Waste when consumed.\nCaution: Moderately Radioactive.", + "sinkPoints": 43468, + "className": "Desc_NuclearFuelRod_C", + "stackSize": 50, + "energyValue": 750000.0, + "radioactiveDecay": 50.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_PlutoniumFuelRod_C": { + "slug": "plutonium-fuel-rod", + "icon": "desc-plutoniumfuelrod-c", + "name": "Plutonium Fuel Rod", + "description": "Used as fuel for Nuclear Power Plants.\n\nCaution: Produces radioactive Plutonium Waste when consumed.\nCaution: HIGHLY Radioactive.", + "sinkPoints": 153184, + "className": "Desc_PlutoniumFuelRod_C", + "stackSize": 50, + "energyValue": 1500000.0, + "radioactiveDecay": 250.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_FicsoniumFuelRod_C": { + "slug": "ficsonium-fuel-rod", + "icon": "desc-ficsoniumfuelrod-c", + "name": "Ficsonium Fuel Rod", + "description": "Used as fuel for Nuclear Power Plants.\nThe power source that put FICSIT on the map. Literally. The crater is still there.\n\nCaution: Moderately Radioactive.", + "sinkPoints": 0, + "className": "Desc_FicsoniumFuelRod_C", + "stackSize": 50, + "energyValue": 150000.0, + "radioactiveDecay": 1000.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Rebar_Explosive_C": { + "slug": "explosive-rebar", + "icon": "desc-rebar-explosive-c", + "name": "Explosive Rebar", + "description": "Explodes on impact, dealing heavy damage.", + "sinkPoints": 360, + "className": "Desc_Rebar_Explosive_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Rebar_Stunshot_C": { + "slug": "stun-rebar", + "icon": "desc-rebar-stunshot-c", + "name": "Stun Rebar", + "description": "Electrocutes the target on impact, stunning it for a short time.\n\nStun Duration: 5 seconds", + "sinkPoints": 186, + "className": "Desc_Rebar_Stunshot_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_CartridgeSmartProjectile_C": { + "slug": "homing-rifle-ammo", + "icon": "desc-cartridgesmartprojectile-c", + "name": "Homing Rifle Ammo", + "description": "The bullet guidance system built into this ammunition allows it to accurately hit any target within the reticle area.\nEspecially useful when dealing with agile threats, or for pioneers who can't be bothered to aim properly.", + "sinkPoints": 855, + "className": "Desc_CartridgeSmartProjectile_C", + "stackSize": 500, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_NobeliskCluster_C": { + "slug": "cluster-nobelisk", + "icon": "desc-nobeliskcluster-c", + "name": "Cluster Nobelisk", + "description": "Detonates into multiple smaller explosions. Practical for clearing out large areas of vegetation and other inconveniences.", + "sinkPoints": 1376, + "className": "Desc_NobeliskCluster_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_NobeliskExplosive_C": { + "slug": "nobelisk", + "icon": "desc-nobeliskexplosive-c", + "name": "Nobelisk", + "description": "A simple explosive, useful for clearing boulders, vegetation, and other obstacles.", + "sinkPoints": 152, + "className": "Desc_NobeliskExplosive_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_NobeliskGas_C": { + "slug": "gas-nobelisk", + "icon": "desc-nobeliskgas-c", + "name": "Gas Nobelisk", + "description": "Creates a deadly gas cloud instead of a regular explosion.", + "sinkPoints": 544, + "className": "Desc_NobeliskGas_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_NobeliskNuke_C": { + "slug": "nuke-nobelisk", + "icon": "desc-nobelisknuke-c", + "name": "Nuke Nobelisk", + "description": "Uses a nuclear fission reaction to generate a massive explosion.\nWARNING: Ensure all FICSIT property is clear of the blast zone before detonation.", + "sinkPoints": 19600, + "className": "Desc_NobeliskNuke_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_NobeliskShockwave_C": { + "slug": "pulse-nobelisk", + "icon": "desc-nobeliskshockwave-c", + "name": "Pulse Nobelisk", + "description": "Generates a powerful shockwave instead of a regular explosion.", + "sinkPoints": 1533, + "className": "Desc_NobeliskShockwave_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_SpikedRebar_C": { + "slug": "iron-rebar", + "icon": "desc-spikedrebar-c", + "name": "Iron Rebar", + "description": "Can be shot using the Rebar Gun for self-defense purposes.", + "sinkPoints": 8, + "className": "Desc_SpikedRebar_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "BP_EquipmentDescriptorHazmatSuit_C": { + "slug": "hazmat-suit", + "icon": "bp-equipmentdescriptorhazmatsuit-c", + "name": "Hazmat Suit", + "description": "Shields pioneers from the adverse effects of radiation. \nConsumes Iodine-Infused Filters from the pioneer's inventory when worn in radioactive areas.", + "sinkPoints": 54100, + "className": "BP_EquipmentDescriptorHazmatSuit_C", + "stackSize": 1, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "BP_EquipmentDescriptorNobeliskDetonator_C": { + "slug": "nobelisk-detonator", + "icon": "bp-equipmentdescriptornobeliskdetonator-c", + "name": "Nobelisk Detonator", + "description": "A remote-control device used to handle and detonate Nobelisks.", + "sinkPoints": 6480, + "className": "BP_EquipmentDescriptorNobeliskDetonator_C", + "stackSize": 1, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_GolfCart_C": { + "slug": "factory-carttm", + "icon": "desc-golfcart-c", + "name": "Factory Cart™", + "description": "The one and only FICSIT Factory Cart™.\nNow with special FICSIT-Foundation-only Grip Wheels, for an even smoother and faster factory floor experience!", + "sinkPoints": 1552, + "className": "Desc_GolfCart_C", + "stackSize": 1, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_GolfCartGold_C": { + "slug": "golden-factory-carttm", + "icon": "desc-golfcartgold-c", + "name": "Golden Factory Cart™", + "description": "The one and only Golden FICSIT Factory Cart™\n\nYou have now officially ascended. \nGo forth now, Master of Spaghetti, God of the Factory, Sinker of Cups, Employee of the Planet... travel in STYLE!", + "sinkPoints": 1852, + "className": "Desc_GolfCartGold_C", + "stackSize": 1, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "BP_ItemDescriptorPortableMiner_C": { + "slug": "portable-miner", + "icon": "bp-itemdescriptorportableminer-c", + "name": "Portable Miner", + "description": "Automatically extracts a resource when placed on a resource node.\nNote: Has limited storage space.", + "sinkPoints": 56, + "className": "BP_ItemDescriptorPortableMiner_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "BP_EquipmentDescriptorShockShank_C": { + "slug": "xeno-zapper", + "icon": "bp-equipmentdescriptorshockshank-c", + "name": "Xeno-Zapper", + "description": "A standard issue self-defense electroshock melee weapon.", + "sinkPoints": 1880, + "className": "BP_EquipmentDescriptorShockShank_C", + "stackSize": 1, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "BP_EquipmentDescriptorObjectScanner_C": { + "slug": "object-scanner", + "icon": "bp-equipmentdescriptorobjectscanner-c", + "name": "Object Scanner", + "description": "Scans the area for a selected item. Beeps at a rate proportional to proximity and direction.", + "sinkPoints": 1400, + "className": "BP_EquipmentDescriptorObjectScanner_C", + "stackSize": 1, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "BP_EquipmentDescriptorHoverPack_C": { + "slug": "hoverpack", + "icon": "bp-equipmentdescriptorhoverpack-c", + "name": "Hoverpack", + "description": "Power Consumption: 100 MW\n\nAllows pioneers to move vertically and hover in mid-air to improve building efficiency and factory traversal. Wirelessly connects to nearby power connections, such as Power Poles and Buildings, for power consumption.\n\nSlow-Fall: Hold {PlayerMovement_Jump} after losing connection mid-air.\nDisable Hoverpack: Double tap {PlayerMovement_Crouch} while hovering.", + "sinkPoints": 265632, + "className": "BP_EquipmentDescriptorHoverPack_C", + "stackSize": 1, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "BP_EquipmentDescriptorJetPack_C": { + "slug": "jetpack", + "icon": "bp-equipmentdescriptorjetpack-c", + "name": "Jetpack", + "description": "Allows pioneers to travel through the air with increased control.\n\nFuel is automatically consumed from the pioneer's inventory to refill the Jetpack while on the ground.\nDifferent fuel types can be used and provide different levels of Jetpack efficiency. The preferred fuel type will be used if available, and can be set in the equipment inventory.", + "sinkPoints": 16580, + "className": "BP_EquipmentDescriptorJetPack_C", + "stackSize": 1, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "BP_EquipmentDescriptorStunSpear_C": { + "slug": "xeno-basher", + "icon": "bp-equipmentdescriptorstunspear-c", + "name": "Xeno-Basher", + "description": "A heavy self-defense electroshock melee weapon.", + "sinkPoints": 17800, + "className": "BP_EquipmentDescriptorStunSpear_C", + "stackSize": 1, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Chainsaw_C": { + "slug": "chainsaw", + "icon": "desc-chainsaw-c", + "name": "Chainsaw", + "description": "Clears an area of flora that is too difficult to remove by hand.\n\nFuel: Biofuel", + "sinkPoints": 2760, + "className": "Desc_Chainsaw_C", + "stackSize": 1, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "BP_EquipmentDescriptorJumpingStilts_C": { + "slug": "blade-runners", + "icon": "bp-equipmentdescriptorjumpingstilts-c", + "name": "Blade Runners", + "description": "An exoskeleton for the lower legs that assists movement, allowing pioneers to sprint faster and jump higher.\nAlso dampens the impact of landing.", + "sinkPoints": 4088, + "className": "BP_EquipmentDescriptorJumpingStilts_C", + "stackSize": 1, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "BP_EqDescZipLine_C": { + "slug": "zipline", + "icon": "bp-eqdesczipline-c", + "name": "Zipline", + "description": "Provides faster traversal of factories by allowing pioneers to zip along Power lines.\nActivate the Zipline and aim at a nearby Power Line to connect to it.", + "sinkPoints": 5284, + "className": "BP_EqDescZipLine_C", + "stackSize": 1, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "BP_EquipmentDescriptorGasmask_C": { + "slug": "gas-mask", + "icon": "bp-equipmentdescriptorgasmask-c", + "name": "Gas Mask", + "description": "Allows pioneers to breathe normally in toxic gas-filled areas.\nConsumes Gas Filters from the pioneer's inventory when in use.", + "sinkPoints": 14960, + "className": "BP_EquipmentDescriptorGasmask_C", + "stackSize": 1, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Rebar_Spreadshot_C": { + "slug": "shatter-rebar", + "icon": "desc-rebar-spreadshot-c", + "name": "Shatter Rebar", + "description": "Fractures when shot, launching deadly debris with wide spread but limited range.", + "sinkPoints": 332, + "className": "Desc_Rebar_Spreadshot_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_CartridgeChaos_C": { + "slug": "turbo-rifle-ammo", + "icon": "desc-cartridgechaos-c", + "name": "Turbo Rifle Ammo", + "description": "Lightweight, compact, and volatile. These rounds provide extreme capacity and rate of fire at the cost of accuracy.", + "sinkPoints": 120, + "className": "Desc_CartridgeChaos_C", + "stackSize": 500, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_CartridgeStandard_C": { + "slug": "rifle-ammo", + "icon": "desc-cartridgestandard-c", + "name": "Rifle Ammo", + "description": "Standard issue Rifle ammunition, useful for establishing dominance.", + "sinkPoints": 25, + "className": "Desc_CartridgeStandard_C", + "stackSize": 500, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_OreIron_C": { + "slug": "iron-ore", + "icon": "desc-oreiron-c", + "name": "Iron Ore", + "description": "Used for crafting.\nThe most essential basic resource.", + "sinkPoints": 1, + "className": "Desc_OreIron_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Coal_C": { + "slug": "coal", + "icon": "desc-coal-c", + "name": "Coal", + "description": "Mainly used as fuel for vehicles & Coal-Powered Generators, or in Steel production.", + "sinkPoints": 3, + "className": "Desc_Coal_C", + "stackSize": 100, + "energyValue": 300.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Water_C": { + "slug": "water", + "icon": "desc-water-c", + "name": "Water", + "description": "It's water.", + "sinkPoints": 5000, + "className": "Desc_Water_C", + "stackSize": 50000, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": true, + "fluidColor": { + "r": 122, + "g": 176, + "b": 212, + "a": 0 + } + }, + "Desc_NitrogenGas_C": { + "slug": "nitrogen-gas", + "icon": "desc-nitrogengas-c", + "name": "Nitrogen Gas", + "description": "Has a variety of uses, including metallurgy, cooling, and Nitric Acid production. On MASSAGE-2 (AB)b, it can be extracted from underground gas wells.", + "sinkPoints": 10000, + "className": "Desc_NitrogenGas_C", + "stackSize": 50000, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": true, + "fluidColor": { + "r": 89, + "g": 89, + "b": 89, + "a": 0 + } + }, + "Desc_Sulfur_C": { + "slug": "sulfur", + "icon": "desc-sulfur-c", + "name": "Sulfur", + "description": "Primarily used to produce Black Powder.", + "sinkPoints": 11, + "className": "Desc_Sulfur_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_SAM_C": { + "slug": "sam", + "icon": "desc-sam-c", + "name": "SAM", + "description": "Strange Alien Matter, commonly referred to as SAM, doesn't seem to follow the known laws of physics. It whispers of new possibilities.", + "sinkPoints": 20, + "className": "Desc_SAM_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_OreBauxite_C": { + "slug": "bauxite", + "icon": "desc-orebauxite-c", + "name": "Bauxite", + "description": "Used to produce Alumina, which can be further refined into the Aluminum Scrap required to produce Aluminum Ingots.", + "sinkPoints": 8, + "className": "Desc_OreBauxite_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_OreGold_C": { + "slug": "caterium-ore", + "icon": "desc-oregold-c", + "name": "Caterium Ore", + "description": "Smelted into Caterium Ingots, which are primarily used for advanced electronics.", + "sinkPoints": 7, + "className": "Desc_OreGold_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_OreCopper_C": { + "slug": "copper-ore", + "icon": "desc-orecopper-c", + "name": "Copper Ore", + "description": "Used for crafting.\nA basic resource primarily used for electricity.", + "sinkPoints": 3, + "className": "Desc_OreCopper_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_RawQuartz_C": { + "slug": "raw-quartz", + "icon": "desc-rawquartz-c", + "name": "Raw Quartz", + "description": "Can be processed into Quartz Crystals and Silica, which both offer a variety of applications.", + "sinkPoints": 15, + "className": "Desc_RawQuartz_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Stone_C": { + "slug": "limestone", + "icon": "desc-stone-c", + "name": "Limestone", + "description": "Used for crafting.\nA basic resource primarily used for stable Foundations.", + "sinkPoints": 2, + "className": "Desc_Stone_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_OreUranium_C": { + "slug": "uranium", + "icon": "desc-oreuranium-c", + "name": "Uranium", + "description": "A radioactive element. \nUsed to produce Encased Uranium Cells for Uranium Fuel Rods.\n\nCaution: Moderately Radioactive.", + "sinkPoints": 35, + "className": "Desc_OreUranium_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 15.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_LiquidOil_C": { + "slug": "crude-oil", + "icon": "desc-liquidoil-c", + "name": "Crude Oil", + "description": "Refined into all kinds of Oil-based resources, like Fuel and Plastic.", + "sinkPoints": 30000, + "className": "Desc_LiquidOil_C", + "stackSize": 50000, + "energyValue": 320.0, + "radioactiveDecay": 0.0, + "liquid": true, + "fluidColor": { + "r": 25, + "g": 0, + "b": 25, + "a": 0 + } + }, + "Desc_Medkit_C": { + "slug": "medicinal-inhaler", + "icon": "desc-medkit-c", + "name": "Medicinal Inhaler", + "description": "Fully restores health when used.\n\nThe FICSIT Medicinal Inhaler can be produced from a variety of different ingredients.", + "sinkPoints": 125, + "className": "Desc_Medkit_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Biofuel_C": { + "slug": "solid-biofuel", + "icon": "desc-biofuel-c", + "name": "Solid Biofuel", + "description": "The most energy-efficient form of solid Biomass. Can be used as fuel for the Chainsaw.", + "sinkPoints": 48, + "className": "Desc_Biofuel_C", + "stackSize": 200, + "energyValue": 450.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_PackagedBiofuel_C": { + "slug": "packaged-liquid-biofuel", + "icon": "desc-packagedbiofuel-c", + "name": "Packaged Liquid Biofuel", + "description": "Liquid Biofuel, packaged for alternative transport. Can be used as fuel for vehicles and the Jetpack.", + "sinkPoints": 370, + "className": "Desc_PackagedBiofuel_C", + "stackSize": 100, + "energyValue": 750.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 58, + "g": 83, + "b": 42, + "a": 255 + } + }, + "Desc_GenericBiomass_C": { + "slug": "biomass", + "icon": "desc-genericbiomass-c", + "name": "Biomass", + "description": "Primarily used as fuel.\nBiomass Burners and vehicles can use it for power.\nBiomass is much more energy-efficient than raw biological matter.", + "sinkPoints": 12, + "className": "Desc_GenericBiomass_C", + "stackSize": 200, + "energyValue": 180.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Leaves_C": { + "slug": "leaves", + "icon": "desc-leaves-c", + "name": "Leaves", + "description": "Primarily used as fuel.\nBiomass Burners and vehicles can use Leaves for power.", + "sinkPoints": 3, + "className": "Desc_Leaves_C", + "stackSize": 500, + "energyValue": 15.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Mycelia_C": { + "slug": "mycelia", + "icon": "desc-mycelia-c", + "name": "Mycelia", + "description": "Used for crafting.\nBiomass Burners and vehicles can also use Mycelia for power.", + "sinkPoints": 10, + "className": "Desc_Mycelia_C", + "stackSize": 200, + "energyValue": 20.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Wood_C": { + "slug": "wood", + "icon": "desc-wood-c", + "name": "Wood", + "description": "Primarily used as fuel.\nBiomass Burners and vehicles can use Wood for power.", + "sinkPoints": 30, + "className": "Desc_Wood_C", + "stackSize": 200, + "energyValue": 100.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_LiquidBiofuel_C": { + "slug": "liquid-biofuel", + "icon": "desc-liquidbiofuel-c", + "name": "Liquid Biofuel", + "description": "Liquid Biofuel can be used as-is to generate power, or packaged to be used as fuel for vehicles.", + "sinkPoints": 261000, + "className": "Desc_LiquidBiofuel_C", + "stackSize": 50000, + "energyValue": 750.0, + "radioactiveDecay": 0.0, + "liquid": true, + "fluidColor": { + "r": 59, + "g": 83, + "b": 44, + "a": 0 + } + }, + "Desc_PackagedAlumina_C": { + "slug": "packaged-alumina-solution", + "icon": "desc-packagedalumina-c", + "name": "Packaged Alumina Solution", + "description": "Alumina Solution, packaged for alternative transport.", + "sinkPoints": 160, + "className": "Desc_PackagedAlumina_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 58, + "g": 83, + "b": 42, + "a": 255 + } + }, + "Desc_PackagedNitrogenGas_C": { + "slug": "packaged-nitrogen-gas", + "icon": "desc-packagednitrogengas-c", + "name": "Packaged Nitrogen Gas", + "description": "Nitrogen Gas, packaged for alternative transport.", + "sinkPoints": 312, + "className": "Desc_PackagedNitrogenGas_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 58, + "g": 83, + "b": 42, + "a": 255 + } + }, + "Desc_PackagedNitricAcid_C": { + "slug": "packaged-nitric-acid", + "icon": "desc-packagednitricacid-c", + "name": "Packaged Nitric Acid", + "description": "Nitric Acid, packaged for alternative transport.", + "sinkPoints": 412, + "className": "Desc_PackagedNitricAcid_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 58, + "g": 83, + "b": 42, + "a": 255 + } + }, + "Desc_PackagedSulfuricAcid_C": { + "slug": "packaged-sulfuric-acid", + "icon": "desc-packagedsulfuricacid-c", + "name": "Packaged Sulfuric Acid", + "description": "Sulfuric Acid, packaged for alternative transport.", + "sinkPoints": 152, + "className": "Desc_PackagedSulfuricAcid_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 58, + "g": 83, + "b": 42, + "a": 255 + } + }, + "Desc_Fabric_C": { + "slug": "fabric", + "icon": "desc-fabric-c", + "name": "Fabric", + "description": "Used to craft equipment.\nFlexible but durable fabric.", + "sinkPoints": 140, + "className": "Desc_Fabric_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_HogParts_C": { + "slug": "hog-remains", + "icon": "desc-hogparts-c", + "name": "Hog Remains", + "description": "The carapace of an alien Hog creature.\nUsed for MAM research.", + "sinkPoints": 0, + "className": "Desc_HogParts_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_SpitterParts_C": { + "slug": "spitter-remains", + "icon": "desc-spitterparts-c", + "name": "Spitter Remains", + "description": "The remains of a plasma-spitting alien creature.\nUsed for MAM research.", + "sinkPoints": 0, + "className": "Desc_SpitterParts_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_StingerParts_C": { + "slug": "stinger-remains", + "icon": "desc-stingerparts-c", + "name": "Stinger Remains", + "description": "The remains of whatever that creepy thing was.\nUsed for MAM research.", + "sinkPoints": 0, + "className": "Desc_StingerParts_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_HatcherParts_C": { + "slug": "hatcher-remains", + "icon": "desc-hatcherparts-c", + "name": "Hatcher Remains", + "description": "The shell-like remains of an alien... thing.\nUsed for MAM research.", + "sinkPoints": 0, + "className": "Desc_HatcherParts_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_CrystalShard_C": { + "slug": "power-shard", + "icon": "desc-crystalshard-c", + "name": "Power Shard", + "description": "Power Slug mucus compressed into a solid crystal-like shard. \nIt radiates a strange power.", + "sinkPoints": 0, + "className": "Desc_CrystalShard_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_WAT1_C": { + "slug": "somersloop", + "icon": "desc-wat1-c", + "name": "Somersloop", + "description": "An odd alien object with a mind-bending, yet somehow familiar shape. It emits an unsettling energy.", + "sinkPoints": 0, + "className": "Desc_WAT1_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Berry_C": { + "slug": "paleberry", + "icon": "desc-berry-c", + "name": "Paleberry", + "description": "Consumable\n\nEat to restore 1 health segment.", + "sinkPoints": 0, + "className": "Desc_Berry_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Nut_C": { + "slug": "beryl-nut", + "icon": "desc-nut-c", + "name": "Beryl Nut", + "description": "Consumable\n\nEat to restore half a health segment.", + "sinkPoints": 0, + "className": "Desc_Nut_C", + "stackSize": 100, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Shroom_C": { + "slug": "bacon-agaric", + "icon": "desc-shroom-c", + "name": "Bacon Agaric", + "description": "Consumable\n\nEat to restore 2 health segments.", + "sinkPoints": 0, + "className": "Desc_Shroom_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_Parachute_C": { + "slug": "parachute", + "icon": "desc-parachute-c", + "name": "Parachute", + "description": "Slows down your fall when activated in mid-air.", + "sinkPoints": 6080, + "className": "Desc_Parachute_C", + "stackSize": 1, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_AlienPowerFuel_C": { + "slug": "alien-power-matrix", + "icon": "desc-alienpowerfuel-c", + "name": "Alien Power Matrix", + "description": "This intricate condensed-matter matrix is used to enhance the output of the Alien Power Augmenter. \n\nInitially developed in efforts to create a human-made Somersloop, the Alien Power Matrix cannot sustain the extra-dimensional energy connection on its own. However, it can effectively stabilize the energy stream of the Somersloop.", + "sinkPoints": 210, + "className": "Desc_AlienPowerFuel_C", + "stackSize": 50, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + } + }, + "Desc_ResourceSinkCoupon_C": { + "slug": "ficsit-coupon", + "icon": "desc-resourcesinkcoupon-c", + "name": "FICSIT Coupon", + "description": "A special FICSIT bonus program Coupon, obtained through the AWESOME Sink. Can be redeemed in the AWESOME Shop for bonus milestones and rewards.", + "sinkPoints": 0, + "className": "Desc_ResourceSinkCoupon_C", + "stackSize": 500, + "energyValue": 0.0, + "radioactiveDecay": 0.0, + "liquid": false, + "fluidColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + } + }, + "recipes": { + "Recipe_Wall_Concrete_8x1_C": { + "slug": "recipe-wall-concrete-8x1-c", + "name": "Basic Wall (1 m)", + "className": "Recipe_Wall_Concrete_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_8x4_C": { + "slug": "recipe-wall-concrete-8x4-c", + "name": "Basic Wall (4 m)", + "className": "Recipe_Wall_Concrete_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_8x4_ConveyorHole_01_C": { + "slug": "recipe-wall-concrete-8x4-conveyorhole-01-c", + "name": "Conveyor Wall x 1", + "className": "Recipe_Wall_Concrete_8x4_ConveyorHole_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x4_ConveyorHole_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_8x4_ConveyorHole_02_C": { + "slug": "recipe-wall-concrete-8x4-conveyorhole-02-c", + "name": "Conveyor Wall x 2", + "className": "Recipe_Wall_Concrete_8x4_ConveyorHole_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x4_ConveyorHole_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_8x4_ConveyorHole_03_C": { + "slug": "recipe-wall-concrete-8x4-conveyorhole-03-c", + "name": "Conveyor Wall x 3", + "className": "Recipe_Wall_Concrete_8x4_ConveyorHole_03_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x4_ConveyorHole_03_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_8x4_Corner_01_C": { + "slug": "recipe-wall-concrete-8x4-corner-01-c", + "name": "Tilted Corner Wall (4 m)", + "className": "Recipe_Wall_Concrete_8x4_Corner_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x4_Corner_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_8x4_Corner_2_C": { + "slug": "recipe-wall-concrete-8x4-corner-2-c", + "name": "Tilted Concave Wall (4 m)", + "className": "Recipe_Wall_Concrete_8x4_Corner_2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x4_Corner_2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_8x4_Window_01_C": { + "slug": "recipe-wall-concrete-8x4-window-01-c", + "name": "Single Window", + "className": "Recipe_Wall_Concrete_8x4_Window_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Silica_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x4_Window_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_8x4_Window_02_C": { + "slug": "recipe-wall-concrete-8x4-window-02-c", + "name": "Frame Window", + "className": "Recipe_Wall_Concrete_8x4_Window_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Silica_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x4_Window_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_8x4_Window_03_C": { + "slug": "recipe-wall-concrete-8x4-window-03-c", + "name": "Panel Window", + "className": "Recipe_Wall_Concrete_8x4_Window_03_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Silica_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x4_Window_03_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_8x4_Window_04_C": { + "slug": "recipe-wall-concrete-8x4-window-04-c", + "name": "Reinforced Window", + "className": "Recipe_Wall_Concrete_8x4_Window_04_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Silica_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x4_Window_04_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_8x8_Corner_01_C": { + "slug": "recipe-wall-concrete-8x8-corner-01-c", + "name": "Tilted Corner Wall (8 m)", + "className": "Recipe_Wall_Concrete_8x8_Corner_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x8_Corner_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_8x8_Corner_2_C": { + "slug": "recipe-wall-concrete-8x8-corner-2-c", + "name": "Tilted Concave Wall (8 m)", + "className": "Recipe_Wall_Concrete_8x8_Corner_2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x8_Corner_2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_Angular_8x4_C": { + "slug": "recipe-wall-concrete-angular-8x4-c", + "name": "Tilted Wall (4 m)", + "className": "Recipe_Wall_Concrete_Angular_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_Angular_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_Angular_8x8_C": { + "slug": "recipe-wall-concrete-angular-8x8-c", + "name": "Tilted Wall (8 m)", + "className": "Recipe_Wall_Concrete_Angular_8x8_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_Angular_8x8_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_CDoor_8x4_C": { + "slug": "recipe-wall-concrete-cdoor-8x4-c", + "name": "Center Door Wall", + "className": "Recipe_Wall_Concrete_CDoor_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_CDoor_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_FlipTris_8x1_C": { + "slug": "recipe-wall-concrete-fliptris-8x1-c", + "name": "Wall 1a", + "className": "Recipe_Wall_Concrete_FlipTris_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x1_FlipTris_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_FlipTris_8x2_C": { + "slug": "recipe-wall-concrete-fliptris-8x2-c", + "name": "Inverted Ramp Wall (2 m)", + "className": "Recipe_Wall_Concrete_FlipTris_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x2_FlipTris_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_FlipTris_8x4_C": { + "slug": "recipe-wall-concrete-fliptris-8x4-c", + "name": "Inverted Ramp Wall (4 m)", + "className": "Recipe_Wall_Concrete_FlipTris_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x4_FlipTris_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_FlipTris_8x8_C": { + "slug": "recipe-wall-concrete-fliptris-8x8-c", + "name": "Inverted Ramp Wall (8 m)", + "className": "Recipe_Wall_Concrete_FlipTris_8x8_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x8_FlipTris_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_Gate_8x4_C": { + "slug": "recipe-wall-concrete-gate-8x4-c", + "name": "Gate Hole Wall", + "className": "Recipe_Wall_Concrete_Gate_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_Gate_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_SDoor_8x4_C": { + "slug": "recipe-wall-concrete-sdoor-8x4-c", + "name": "Side Door Wall", + "className": "Recipe_Wall_Concrete_SDoor_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_SDoor_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_Tris_8x1_C": { + "slug": "recipe-wall-concrete-tris-8x1-c", + "name": "Ramp Wall (1 m)", + "className": "Recipe_Wall_Concrete_Tris_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x1_Tris_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_Tris_8x2_C": { + "slug": "recipe-wall-concrete-tris-8x2-c", + "name": "Ramp Wall (2 m)", + "className": "Recipe_Wall_Concrete_Tris_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x2_Tris_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_Tris_8x4_C": { + "slug": "recipe-wall-concrete-tris-8x4-c", + "name": "Ramp Wall (4 m)", + "className": "Recipe_Wall_Concrete_Tris_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x4_Tris_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Concrete_Tris_8x8_C": { + "slug": "recipe-wall-concrete-tris-8x8-c", + "name": "Ramp Wall (8 m)", + "className": "Recipe_Wall_Concrete_Tris_8x8_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Concrete_8x8_Tris_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_8x4_01_C": { + "slug": "recipe-wall-8x4-01-c", + "name": "Basic Wall (4 m)", + "className": "Recipe_Wall_8x4_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_8x4_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Conveyor_8x4_01_C": { + "slug": "recipe-wall-conveyor-8x4-01-c", + "name": "Conveyor Wall x 3", + "className": "Recipe_Wall_Conveyor_8x4_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Conveyor_8x4_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Conveyor_8x4_02_C": { + "slug": "recipe-wall-conveyor-8x4-02-c", + "name": "Conveyor Wall x 2", + "className": "Recipe_Wall_Conveyor_8x4_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Conveyor_8x4_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Conveyor_8x4_03_C": { + "slug": "recipe-wall-conveyor-8x4-03-c", + "name": "Conveyor Wall x 1", + "className": "Recipe_Wall_Conveyor_8x4_03_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Conveyor_8x4_03_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Door_8x4_01_C": { + "slug": "recipe-wall-door-8x4-01-c", + "name": "Center Door Wall", + "className": "Recipe_Wall_Door_8x4_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Door_8x4_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Door_8x4_03_C": { + "slug": "recipe-wall-door-8x4-03-c", + "name": "Side Door Wall", + "className": "Recipe_Wall_Door_8x4_03_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Door_8x4_03_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Gate_8x4_01_C": { + "slug": "recipe-wall-gate-8x4-01-c", + "name": "Gate Hole Wall", + "className": "Recipe_Wall_Gate_8x4_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Gate_8x4_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Orange_8x1_C": { + "slug": "recipe-wall-orange-8x1-c", + "name": "Basic Wall (1 m)", + "className": "Recipe_Wall_Orange_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Orange_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Orange_8x4_Corner_01_C": { + "slug": "recipe-wall-orange-8x4-corner-01-c", + "name": "Tilted Corner Wall (4 m)", + "className": "Recipe_Wall_Orange_8x4_Corner_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Orange_8x4_Corner_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Orange_8x4_Corner_02_C": { + "slug": "recipe-wall-orange-8x4-corner-02-c", + "name": "Tilted Concave Wall (4 m)", + "className": "Recipe_Wall_Orange_8x4_Corner_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Orange_8x4_Corner_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Orange_8x8_Corner_01_C": { + "slug": "recipe-wall-orange-8x8-corner-01-c", + "name": "Tilted Corner Wall (8 m)", + "className": "Recipe_Wall_Orange_8x8_Corner_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Orange_8x8_Corner_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Orange_8x8_Corner_02_C": { + "slug": "recipe-wall-orange-8x8-corner-02-c", + "name": "Tilted Concave Wall (8 m)", + "className": "Recipe_Wall_Orange_8x8_Corner_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Orange_8x8_Corner_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Orange_Angular_8x4_C": { + "slug": "recipe-wall-orange-angular-8x4-c", + "name": "Tilted Wall (4 m)", + "className": "Recipe_Wall_Orange_Angular_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Orange_Angular_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Orange_Angular_8x8_C": { + "slug": "recipe-wall-orange-angular-8x8-c", + "name": "Tilted Wall (8 m)", + "className": "Recipe_Wall_Orange_Angular_8x8_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Orange_Angular_8x8_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Orange_FlipTris_8x1_C": { + "slug": "recipe-wall-orange-fliptris-8x1-c", + "name": "Inverted Ramp Wall (1 m)", + "className": "Recipe_Wall_Orange_FlipTris_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Orange_8x1_FlipTris_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Orange_FlipTris_8x2_C": { + "slug": "recipe-wall-orange-fliptris-8x2-c", + "name": "Inverted Ramp Wall (2 m)", + "className": "Recipe_Wall_Orange_FlipTris_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Orange_8x2_FlipTris_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Orange_FlipTris_8x4_C": { + "slug": "recipe-wall-orange-fliptris-8x4-c", + "name": "Inverted Ramp Wall (4 m)", + "className": "Recipe_Wall_Orange_FlipTris_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Orange_8x4_FlipTris_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Orange_FlipTris_8x8_C": { + "slug": "recipe-wall-orange-fliptris-8x8-c", + "name": "Inverted Ramp Wall (8 m)", + "className": "Recipe_Wall_Orange_FlipTris_8x8_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Orange_8x8_FlipTris_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Orange_Tris_8x1_C": { + "slug": "recipe-wall-orange-tris-8x1-c", + "name": "Ramp Wall (1 m)", + "className": "Recipe_Wall_Orange_Tris_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Orange_8x1_Tris_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Orange_Tris_8x2_C": { + "slug": "recipe-wall-orange-tris-8x2-c", + "name": "Ramp Wall (2 m)", + "className": "Recipe_Wall_Orange_Tris_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Orange_8x2_Tris_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Orange_Tris_8x4_C": { + "slug": "recipe-wall-orange-tris-8x4-c", + "name": "Ramp Wall (4 m)", + "className": "Recipe_Wall_Orange_Tris_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Orange_8x4_Tris_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Orange_Tris_8x8_C": { + "slug": "recipe-wall-orange-tris-8x8-c", + "name": "Ramp Wall (8 m)", + "className": "Recipe_Wall_Orange_Tris_8x8_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Orange_8x8_Tris_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Window_8x4_01_C": { + "slug": "recipe-wall-window-8x4-01-c", + "name": "Single Window", + "className": "Recipe_Wall_Window_8x4_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Silica_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Window_8x4_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Window_8x4_02_C": { + "slug": "recipe-wall-window-8x4-02-c", + "name": "Frame Window", + "className": "Recipe_Wall_Window_8x4_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Silica_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Window_8x4_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Window_8x4_03_C": { + "slug": "recipe-wall-window-8x4-03-c", + "name": "Panel Window", + "className": "Recipe_Wall_Window_8x4_03_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Silica_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Window_8x4_03_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Window_8x4_04_C": { + "slug": "recipe-wall-window-8x4-04-c", + "name": "Reinforced Window", + "className": "Recipe_Wall_Window_8x4_04_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Silica_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Window_8x4_04_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SteelWall_8x4_Gate_01_C": { + "slug": "recipe-steelwall-8x4-gate-01-c", + "name": "Gate Hole Wall", + "className": "Recipe_SteelWall_8x4_Gate_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_SteelWall_8x4_Gate_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SteelWall_8x4_Window_01_C": { + "slug": "recipe-steelwall-8x4-window-01-c", + "name": "Single Window", + "className": "Recipe_SteelWall_8x4_Window_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Silica_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_SteelWall_8x4_Window_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SteelWall_8x4_Window_02_C": { + "slug": "recipe-steelwall-8x4-window-02-c", + "name": "Reinforced Window", + "className": "Recipe_SteelWall_8x4_Window_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Silica_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_SteelWall_8x4_Window_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SteelWall_8x4_Window_03_C": { + "slug": "recipe-steelwall-8x4-window-03-c", + "name": "Frame Window", + "className": "Recipe_SteelWall_8x4_Window_03_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Silica_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_SteelWall_8x4_Window_03_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SteelWall_8x4_Window_04_C": { + "slug": "recipe-steelwall-8x4-window-04-c", + "name": "Panel Window", + "className": "Recipe_SteelWall_8x4_Window_04_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Silica_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_SteelWall_8x4_Window_04_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Steel_8x4_Corner_01_C": { + "slug": "recipe-wall-steel-8x4-corner-01-c", + "name": "Tilted Corner Wall (4 m)", + "className": "Recipe_Wall_Steel_8x4_Corner_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Steel_8x4_Corner_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Steel_8x4_Corner_2_C": { + "slug": "recipe-wall-steel-8x4-corner-2-c", + "name": "Tilted Concave Wall (4 m)", + "className": "Recipe_Wall_Steel_8x4_Corner_2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Steel_8x4_Corner_2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Steel_8x8_Corner_01_C": { + "slug": "recipe-wall-steel-8x8-corner-01-c", + "name": "Tilted Corner Wall (8 m)", + "className": "Recipe_Wall_Steel_8x8_Corner_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Steel_8x8_Corner_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Steel_8x8_Corner_2_C": { + "slug": "recipe-wall-steel-8x8-corner-2-c", + "name": "Tilted Concave Wall (8 m)", + "className": "Recipe_Wall_Steel_8x8_Corner_2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Steel_8x8_Corner_2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SteelWall_8x1_C": { + "slug": "recipe-steelwall-8x1-c", + "name": "Basic Wall (1 m)", + "className": "Recipe_SteelWall_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_SteelWall_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SteelWall_FlipTris_8x1_C": { + "slug": "recipe-steelwall-fliptris-8x1-c", + "name": "Inverted Ramp Wall (1 m)", + "className": "Recipe_SteelWall_FlipTris_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_SteelWall_FlipTris_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SteelWall_FlipTris_8x2_C": { + "slug": "recipe-steelwall-fliptris-8x2-c", + "name": "Inverted Ramp Wall (2 m)", + "className": "Recipe_SteelWall_FlipTris_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_SteelWall_FlipTris_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SteelWall_FlipTris_8x4_C": { + "slug": "recipe-steelwall-fliptris-8x4-c", + "name": "Inverted Ramp Wall (4 m)", + "className": "Recipe_SteelWall_FlipTris_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_SteelWall_FlipTris_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SteelWall_FlipTris_8x8_C": { + "slug": "recipe-steelwall-fliptris-8x8-c", + "name": "Inverted Ramp Wall (8 m)", + "className": "Recipe_SteelWall_FlipTris_8x8_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_SteelWall_FlipTris_8x8_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SteelWall_Tris_8x1_C": { + "slug": "recipe-steelwall-tris-8x1-c", + "name": "Ramp Wall (1 m)", + "className": "Recipe_SteelWall_Tris_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_SteelWall_Tris_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SteelWall_Tris_8x2_C": { + "slug": "recipe-steelwall-tris-8x2-c", + "name": "Ramp Wall (2 m)", + "className": "Recipe_SteelWall_Tris_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_SteelWall_Tris_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SteelWall_Tris_8x4_C": { + "slug": "recipe-steelwall-tris-8x4-c", + "name": "Ramp Wall (4 m)", + "className": "Recipe_SteelWall_Tris_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_SteelWall_Tris_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SteelWall_Tris_8x8_C": { + "slug": "recipe-steelwall-tris-8x8-c", + "name": "Ramp Wall (8 m)", + "className": "Recipe_SteelWall_Tris_8x8_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_SteelWall_Tris_8x8_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_8x4_02_C": { + "slug": "recipe-wall-8x4-02-c", + "name": "Basic Wall (4 m)", + "className": "Recipe_Wall_8x4_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_8x4_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Conveyor_8x4_01_Steel_C": { + "slug": "recipe-wall-conveyor-8x4-01-steel-c", + "name": "Conveyor Wall x 3", + "className": "Recipe_Wall_Conveyor_8x4_01_Steel_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Conveyor_8x4_01_Steel_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Conveyor_8x4_02_Steel_C": { + "slug": "recipe-wall-conveyor-8x4-02-steel-c", + "name": "Conveyor Wall x 2", + "className": "Recipe_Wall_Conveyor_8x4_02_Steel_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Conveyor_8x4_02_Steel_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Conveyor_8x4_03_Steel_C": { + "slug": "recipe-wall-conveyor-8x4-03-steel-c", + "name": "Conveyor Wall x 1", + "className": "Recipe_Wall_Conveyor_8x4_03_Steel_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Conveyor_8x4_03_Steel_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Door_8x4_01_Steel_C": { + "slug": "recipe-wall-door-8x4-01-steel-c", + "name": "Center Door Wall", + "className": "Recipe_Wall_Door_8x4_01_Steel_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Door_8x4_01_Steel_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Door_8x4_03_Steel_C": { + "slug": "recipe-wall-door-8x4-03-steel-c", + "name": "Side Door Wall", + "className": "Recipe_Wall_Door_8x4_03_Steel_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Door_8x4_03_Steel_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_WallSet_Steel_Angular_8x4_C": { + "slug": "recipe-wallset-steel-angular-8x4-c", + "name": "Tilted Wall (4 m)", + "className": "Recipe_WallSet_Steel_Angular_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_WallSet_Steel_Angular_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_WallSet_Steel_Angular_8x8_C": { + "slug": "recipe-wallset-steel-angular-8x8-c", + "name": "Tilted Wall (8 m)", + "className": "Recipe_WallSet_Steel_Angular_8x8_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_WallSet_Steel_Angular_8x8_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConveyorCeilingAttachment_C": { + "slug": "recipe-conveyorceilingattachment-c", + "name": "Conveyor Ceiling Mount", + "className": "Recipe_ConveyorCeilingAttachment_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 2.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 2.0 + }, + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_ConveyorCeilingAttachment_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConveyorPole_C": { + "slug": "recipe-conveyorpole-c", + "name": "Conveyor Pole", + "className": "Recipe_ConveyorPole_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 1.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 1.0 + }, + { + "item": "Desc_Cement_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_ConveyorPole_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConveyorPoleWall_C": { + "slug": "recipe-conveyorpolewall-c", + "name": "Conveyor Wall Mount", + "className": "Recipe_ConveyorPoleWall_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 2.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 2.0 + }, + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_ConveyorPoleWall_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConveyorBeltMk1_C": { + "slug": "recipe-conveyorbeltmk1-c", + "name": "Conveyor Belt Mk.1", + "className": "Recipe_ConveyorBeltMk1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_ConveyorBeltMk1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PowerLine_C": { + "slug": "recipe-powerline-c", + "name": "Power Line", + "className": "Recipe_PowerLine_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cable_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_PowerLine_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PowerPoleMk1_C": { + "slug": "recipe-powerpolemk1-c", + "name": "Power Pole Mk.1", + "className": "Recipe_PowerPoleMk1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Wire_C", + "amount": 3.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 1.0 + }, + { + "item": "Desc_Cement_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_PowerPoleMk1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PowerPoleWall_C": { + "slug": "recipe-powerpolewall-c", + "name": "Wall Outlet Mk.1", + "className": "Recipe_PowerPoleWall_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Wire_C", + "amount": 4.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_PowerPoleWall_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_TradingPost_C": { + "slug": "recipe-tradingpost-c", + "name": "The HUB", + "className": "Recipe_TradingPost_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_OreIron_C", + "amount": 20.0 + } + ], + "products": [ + { + "item": "Desc_TradingPost_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_WorkBench_C": { + "slug": "recipe-workbench-c", + "name": "Crafting Bench", + "className": "Recipe_WorkBench_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 3.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_WorkBench_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_IronPlate_C": { + "slug": "recipe-ironplate-c", + "name": "Iron Plate", + "className": "Recipe_IronPlate_C", + "alternate": false, + "time": 6.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronIngot_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_IronPlate_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_IronRod_C": { + "slug": "recipe-ironrod-c", + "name": "Iron Rod", + "className": "Recipe_IronRod_C", + "alternate": false, + "time": 4.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 0.5, + "ingredients": [ + { + "item": "Desc_IronIngot_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_IronRod_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_XenoZapper_C": { + "slug": "recipe-xenozapper-c", + "name": "Xeno-Zapper", + "className": "Recipe_XenoZapper_C", + "alternate": false, + "time": 40.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 10.0 + }, + { + "item": "Desc_IronPlateReinforced_C", + "amount": 2.0 + }, + { + "item": "Desc_Cable_C", + "amount": 15.0 + }, + { + "item": "Desc_Wire_C", + "amount": 50.0 + } + ], + "products": [ + { + "item": "BP_EquipmentDescriptorShockShank_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_IngotIron_C": { + "slug": "recipe-ingotiron-c", + "name": "Iron Ingot", + "className": "Recipe_IngotIron_C", + "alternate": false, + "time": 2.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 3.0, + "ingredients": [ + { + "item": "Desc_OreIron_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_IronIngot_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_SmelterMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_RocketFuel_Nitro_C": { + "slug": "recipe-alternate-rocketfuel-nitro-c", + "name": "Alternate: Nitro Rocket Fuel", + "className": "Recipe_Alternate_RocketFuel_Nitro_C", + "alternate": true, + "time": 2.4, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 99.0, + "ingredients": [ + { + "item": "Desc_LiquidFuel_C", + "amount": 4.0 + }, + { + "item": "Desc_NitrogenGas_C", + "amount": 3.0 + }, + { + "item": "Desc_Sulfur_C", + "amount": 4.0 + }, + { + "item": "Desc_Coal_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_RocketFuel_C", + "amount": 6.0 + }, + { + "item": "Desc_CompactedCoal_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_Blender_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_GeneratorCoal_C": { + "slug": "recipe-generatorcoal-c", + "name": "Coal-Powered Generator", + "className": "Recipe_GeneratorCoal_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 20.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 10.0 + }, + { + "item": "Desc_Cable_C", + "amount": 30.0 + } + ], + "products": [ + { + "item": "Desc_GeneratorCoal_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PipeSupport_C": { + "slug": "recipe-pipesupport-c", + "name": "Pipeline Support", + "className": "Recipe_PipeSupport_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 2.0 + }, + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_PipelineSupport_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PipeSupportWall_C": { + "slug": "recipe-pipesupportwall-c", + "name": "Pipeline Wall Support", + "className": "Recipe_PipeSupportWall_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 2.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 1.0 + }, + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_PipelineSupportWall_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Pipeline_C": { + "slug": "recipe-pipeline-c", + "name": "Pipeline Mk.1", + "className": "Recipe_Pipeline_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CopperSheet_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_Pipeline_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PipelineJunction_Cross_C": { + "slug": "recipe-pipelinejunction-cross-c", + "name": "Pipeline Junction", + "className": "Recipe_PipelineJunction_Cross_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CopperSheet_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_PipelineJunction_Cross_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PipelinePump_C": { + "slug": "recipe-pipelinepump-c", + "name": "Pipeline Pump Mk.1", + "className": "Recipe_PipelinePump_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CopperSheet_C", + "amount": 2.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_PipelinePump_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PipeStorageTank_C": { + "slug": "recipe-pipestoragetank-c", + "name": "Fluid Buffer", + "className": "Recipe_PipeStorageTank_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CopperSheet_C", + "amount": 10.0 + }, + { + "item": "Desc_ModularFrame_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_PipeStorageTank_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_WaterPump_C": { + "slug": "recipe-waterpump-c", + "name": "Water Extractor", + "className": "Recipe_WaterPump_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CopperSheet_C", + "amount": 20.0 + }, + { + "item": "Desc_IronPlateReinforced_C", + "amount": 10.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_WaterPump_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ResourceSink_C": { + "slug": "recipe-resourcesink-c", + "name": "AWESOME Sink", + "className": "Recipe_ResourceSink_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 15.0 + }, + { + "item": "Desc_Cable_C", + "amount": 30.0 + }, + { + "item": "Desc_Cement_C", + "amount": 45.0 + } + ], + "products": [ + { + "item": "Desc_ResourceSink_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ResourceSinkShop_C": { + "slug": "recipe-resourcesinkshop-c", + "name": "AWESOME Shop", + "className": "Recipe_ResourceSinkShop_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronScrew_C", + "amount": 200.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 10.0 + }, + { + "item": "Desc_Cable_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_ResourceSinkShop_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RocketFuel_C": { + "slug": "recipe-rocketfuel-c", + "name": "Rocket Fuel", + "className": "Recipe_RocketFuel_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_LiquidTurboFuel_C", + "amount": 6.0 + }, + { + "item": "Desc_NitricAcid_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_RocketFuel_C", + "amount": 10.0 + }, + { + "item": "Desc_CompactedCoal_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_Blender_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PackagedRocketFuel_C": { + "slug": "recipe-packagedrocketfuel-c", + "name": "Packaged Rocket Fuel", + "className": "Recipe_PackagedRocketFuel_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_RocketFuel_C", + "amount": 2.0 + }, + { + "item": "Desc_GasTank_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_PackagedRocketFuel_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_UnpackageRocketFuel_C": { + "slug": "recipe-unpackagerocketfuel-c", + "name": "Unpackage Rocket Fuel", + "className": "Recipe_UnpackageRocketFuel_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_PackagedRocketFuel_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_RocketFuel_C", + "amount": 2.0 + }, + { + "item": "Desc_GasTank_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_IonizedFuel_Dark_C": { + "slug": "recipe-alternate-ionizedfuel-dark-c", + "name": "Alternate: Dark-Ion Fuel", + "className": "Recipe_Alternate_IonizedFuel_Dark_C", + "alternate": true, + "time": 3.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 99.0, + "ingredients": [ + { + "item": "Desc_PackagedRocketFuel_C", + "amount": 12.0 + }, + { + "item": "Desc_DarkMatter_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_IonizedFuel_C", + "amount": 10.0 + }, + { + "item": "Desc_CompactedCoal_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_Converter_C" + ], + "isVariablePower": true, + "minPower": 100, + "maxPower": 400 + }, + "Recipe_QuantumEncoder_C": { + "slug": "recipe-quantumencoder-c", + "name": "Quantum Encoder", + "className": "Recipe_QuantumEncoder_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_MotorLightweight_C", + "amount": 20.0 + }, + { + "item": "Desc_ComputerSuper_C", + "amount": 20.0 + }, + { + "item": "Desc_CoolingSystem_C", + "amount": 50.0 + }, + { + "item": "Desc_TimeCrystal_C", + "amount": 50.0 + }, + { + "item": "Desc_FicsiteMesh_C", + "amount": 100.0 + } + ], + "products": [ + { + "item": "Desc_QuantumEncoder_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_DarkEnergy_C": { + "slug": "recipe-darkenergy-c", + "name": "Dark Matter Residue", + "className": "Recipe_DarkEnergy_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SAMIngot_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_DarkEnergy_C", + "amount": 10.0 + } + ], + "producedIn": [ + "Desc_Converter_C" + ], + "isVariablePower": true, + "minPower": 100, + "maxPower": 400 + }, + "Recipe_QuantumEnergy_C": { + "slug": "recipe-quantumenergy-c", + "name": "Excited Photonic Matter", + "className": "Recipe_QuantumEnergy_C", + "alternate": false, + "time": 3.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 2.0, + "ingredients": [], + "products": [ + { + "item": "Desc_QuantumEnergy_C", + "amount": 10.0 + } + ], + "producedIn": [ + "Desc_Converter_C" + ], + "isVariablePower": true, + "minPower": 100, + "maxPower": 400 + }, + "Recipe_DarkMatter_C": { + "slug": "recipe-darkmatter-c", + "name": "Dark Matter Crystal", + "className": "Recipe_DarkMatter_C", + "alternate": false, + "time": 2.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Diamond_C", + "amount": 1.0 + }, + { + "item": "Desc_DarkEnergy_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_DarkMatter_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_HadronCollider_C" + ], + "isVariablePower": true, + "minPower": 500, + "maxPower": 1500 + }, + "Recipe_SuperpositionOscillator_C": { + "slug": "recipe-superpositionoscillator-c", + "name": "Superposition Oscillator", + "className": "Recipe_SuperpositionOscillator_C", + "alternate": false, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_DarkMatter_C", + "amount": 6.0 + }, + { + "item": "Desc_CrystalOscillator_C", + "amount": 1.0 + }, + { + "item": "Desc_AluminumPlate_C", + "amount": 9.0 + }, + { + "item": "Desc_QuantumEnergy_C", + "amount": 25.0 + } + ], + "products": [ + { + "item": "Desc_QuantumOscillator_C", + "amount": 1.0 + }, + { + "item": "Desc_DarkEnergy_C", + "amount": 25.0 + } + ], + "producedIn": [ + "Desc_QuantumEncoder_C" + ], + "isVariablePower": true, + "minPower": 0, + "maxPower": 2000 + }, + "Recipe_TemporalProcessor_C": { + "slug": "recipe-temporalprocessor-c", + "name": "Neural-Quantum Processor", + "className": "Recipe_TemporalProcessor_C", + "alternate": false, + "time": 20.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_TimeCrystal_C", + "amount": 5.0 + }, + { + "item": "Desc_ComputerSuper_C", + "amount": 1.0 + }, + { + "item": "Desc_FicsiteMesh_C", + "amount": 15.0 + }, + { + "item": "Desc_QuantumEnergy_C", + "amount": 25.0 + } + ], + "products": [ + { + "item": "Desc_TemporalProcessor_C", + "amount": 1.0 + }, + { + "item": "Desc_DarkEnergy_C", + "amount": 25.0 + } + ], + "producedIn": [ + "Desc_QuantumEncoder_C" + ], + "isVariablePower": true, + "minPower": 0, + "maxPower": 2000 + }, + "Recipe_SpaceElevatorPart_12_C": { + "slug": "recipe-spaceelevatorpart-12-c", + "name": "AI Expansion Server", + "className": "Recipe_SpaceElevatorPart_12_C", + "alternate": false, + "time": 15.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SpaceElevatorPart_6_C", + "amount": 1.0 + }, + { + "item": "Desc_TemporalProcessor_C", + "amount": 1.0 + }, + { + "item": "Desc_QuantumOscillator_C", + "amount": 1.0 + }, + { + "item": "Desc_QuantumEnergy_C", + "amount": 25.0 + } + ], + "products": [ + { + "item": "Desc_SpaceElevatorPart_12_C", + "amount": 1.0 + }, + { + "item": "Desc_DarkEnergy_C", + "amount": 25.0 + } + ], + "producedIn": [ + "Desc_QuantumEncoder_C" + ], + "isVariablePower": true, + "minPower": 0, + "maxPower": 2000 + }, + "Recipe_IonizedFuel_C": { + "slug": "recipe-ionizedfuel-c", + "name": "Ionized Fuel", + "className": "Recipe_IonizedFuel_C", + "alternate": false, + "time": 24.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_RocketFuel_C", + "amount": 16.0 + }, + { + "item": "Desc_CrystalShard_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_IonizedFuel_C", + "amount": 16.0 + }, + { + "item": "Desc_CompactedCoal_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PackagedIonizedFuel_C": { + "slug": "recipe-packagedionizedfuel-c", + "name": "Packaged Ionized Fuel", + "className": "Recipe_PackagedIonizedFuel_C", + "alternate": false, + "time": 3.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IonizedFuel_C", + "amount": 4.0 + }, + { + "item": "Desc_GasTank_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_PackagedIonizedFuel_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_UnpackageIonizedFuel_C": { + "slug": "recipe-unpackageionizedfuel-c", + "name": "Unpackage Ionized Fuel", + "className": "Recipe_UnpackageIonizedFuel_C", + "alternate": false, + "time": 3.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_PackagedIonizedFuel_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_IonizedFuel_C", + "amount": 4.0 + }, + { + "item": "Desc_GasTank_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Diamond_Turbo_C": { + "slug": "recipe-alternate-diamond-turbo-c", + "name": "Alternate: Turbo Diamonds", + "className": "Recipe_Alternate_Diamond_Turbo_C", + "alternate": true, + "time": 3.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 99.0, + "ingredients": [ + { + "item": "Desc_Coal_C", + "amount": 30.0 + }, + { + "item": "Desc_TurboFuel_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Diamond_C", + "amount": 3.0 + } + ], + "producedIn": [ + "Desc_HadronCollider_C" + ], + "isVariablePower": true, + "minPower": 250, + "maxPower": 750 + }, + "Recipe_SAMFluctuator_C": { + "slug": "recipe-samfluctuator-c", + "name": "SAM Fluctuator", + "className": "Recipe_SAMFluctuator_C", + "alternate": false, + "time": 6.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SAMIngot_C", + "amount": 6.0 + }, + { + "item": "Desc_Wire_C", + "amount": 5.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_SAMFluctuator_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Converter_C": { + "slug": "recipe-converter-c", + "name": "Converter", + "className": "Recipe_Converter_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrameFused_C", + "amount": 10.0 + }, + { + "item": "Desc_CoolingSystem_C", + "amount": 25.0 + }, + { + "item": "Desc_ModularFrameLightweight_C", + "amount": 50.0 + }, + { + "item": "Desc_SAMFluctuator_C", + "amount": 100.0 + } + ], + "products": [ + { + "item": "Desc_Converter_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_FicsiteMesh_C": { + "slug": "recipe-ficsitemesh-c", + "name": "Ficsite Trigon", + "className": "Recipe_FicsiteMesh_C", + "alternate": false, + "time": 6.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_FicsiteIngot_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_FicsiteMesh_C", + "amount": 3.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_FicsiteIngot_Iron_C": { + "slug": "recipe-ficsiteingot-iron-c", + "name": "Ficsite Ingot (Iron)", + "className": "Recipe_FicsiteIngot_Iron_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SAMIngot_C", + "amount": 4.0 + }, + { + "item": "Desc_IronIngot_C", + "amount": 24.0 + } + ], + "products": [ + { + "item": "Desc_FicsiteIngot_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_Converter_C" + ], + "isVariablePower": true, + "minPower": 100, + "maxPower": 400 + }, + "Recipe_TimeCrystal_C": { + "slug": "recipe-timecrystal-c", + "name": "Time Crystal", + "className": "Recipe_TimeCrystal_C", + "alternate": false, + "time": 10.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Diamond_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_TimeCrystal_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_Converter_C" + ], + "isVariablePower": true, + "minPower": 100, + "maxPower": 400 + }, + "Recipe_Diamond_C": { + "slug": "recipe-diamond-c", + "name": "Diamonds", + "className": "Recipe_Diamond_C", + "alternate": false, + "time": 2.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Coal_C", + "amount": 20.0 + } + ], + "products": [ + { + "item": "Desc_Diamond_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_HadronCollider_C" + ], + "isVariablePower": true, + "minPower": 250, + "maxPower": 750 + }, + "Recipe_IngotSAM_C": { + "slug": "recipe-ingotsam-c", + "name": "Reanimated SAM", + "className": "Recipe_IngotSAM_C", + "alternate": false, + "time": 2.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SAM_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_SAMIngot_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SpaceElevatorPart_10_C": { + "slug": "recipe-spaceelevatorpart-10-c", + "name": "Biochemical Sculptor", + "className": "Recipe_SpaceElevatorPart_10_C", + "alternate": false, + "time": 120.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SpaceElevatorPart_7_C", + "amount": 1.0 + }, + { + "item": "Desc_FicsiteMesh_C", + "amount": 80.0 + }, + { + "item": "Desc_Water_C", + "amount": 20.0 + } + ], + "products": [ + { + "item": "Desc_SpaceElevatorPart_10_C", + "amount": 4.0 + } + ], + "producedIn": [ + "Desc_Blender_C" + ], + "isVariablePower": true, + "minPower": 500, + "maxPower": 1500 + }, + "Recipe_FicsiteIngot_AL_C": { + "slug": "recipe-ficsiteingot-al-c", + "name": "Ficsite Ingot (Aluminum)", + "className": "Recipe_FicsiteIngot_AL_C", + "alternate": false, + "time": 2.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SAMIngot_C", + "amount": 2.0 + }, + { + "item": "Desc_AluminumIngot_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_FicsiteIngot_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_Converter_C" + ], + "isVariablePower": true, + "minPower": 100, + "maxPower": 400 + }, + "Recipe_FicsiteIngot_CAT_C": { + "slug": "recipe-ficsiteingot-cat-c", + "name": "Ficsite Ingot (Caterium)", + "className": "Recipe_FicsiteIngot_CAT_C", + "alternate": false, + "time": 4.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SAMIngot_C", + "amount": 3.0 + }, + { + "item": "Desc_GoldIngot_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_FicsiteIngot_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_Converter_C" + ], + "isVariablePower": true, + "minPower": 100, + "maxPower": 400 + }, + "Recipe_Bauxite_Caterium_C": { + "slug": "recipe-bauxite-caterium-c", + "name": "Bauxite (Caterium)", + "className": "Recipe_Bauxite_Caterium_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SAMIngot_C", + "amount": 1.0 + }, + { + "item": "Desc_OreGold_C", + "amount": 15.0 + } + ], + "products": [ + { + "item": "Desc_OreBauxite_C", + "amount": 12.0 + } + ], + "producedIn": [ + "Desc_Converter_C" + ], + "isVariablePower": true, + "minPower": 100, + "maxPower": 400 + }, + "Recipe_Bauxite_Copper_C": { + "slug": "recipe-bauxite-copper-c", + "name": "Bauxite (Copper)", + "className": "Recipe_Bauxite_Copper_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SAMIngot_C", + "amount": 1.0 + }, + { + "item": "Desc_OreCopper_C", + "amount": 18.0 + } + ], + "products": [ + { + "item": "Desc_OreBauxite_C", + "amount": 12.0 + } + ], + "producedIn": [ + "Desc_Converter_C" + ], + "isVariablePower": true, + "minPower": 100, + "maxPower": 400 + }, + "Recipe_Caterium_Copper_C": { + "slug": "recipe-caterium-copper-c", + "name": "Caterium Ore (Copper)", + "className": "Recipe_Caterium_Copper_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SAMIngot_C", + "amount": 1.0 + }, + { + "item": "Desc_OreCopper_C", + "amount": 15.0 + } + ], + "products": [ + { + "item": "Desc_OreGold_C", + "amount": 12.0 + } + ], + "producedIn": [ + "Desc_Converter_C" + ], + "isVariablePower": true, + "minPower": 100, + "maxPower": 400 + }, + "Recipe_Caterium_Quartz_C": { + "slug": "recipe-caterium-quartz-c", + "name": "Caterium Ore (Quartz)", + "className": "Recipe_Caterium_Quartz_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SAMIngot_C", + "amount": 1.0 + }, + { + "item": "Desc_RawQuartz_C", + "amount": 12.0 + } + ], + "products": [ + { + "item": "Desc_OreGold_C", + "amount": 12.0 + } + ], + "producedIn": [ + "Desc_Converter_C" + ], + "isVariablePower": true, + "minPower": 100, + "maxPower": 400 + }, + "Recipe_Coal_Iron_C": { + "slug": "recipe-coal-iron-c", + "name": "Coal (Iron)", + "className": "Recipe_Coal_Iron_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SAMIngot_C", + "amount": 1.0 + }, + { + "item": "Desc_OreIron_C", + "amount": 18.0 + } + ], + "products": [ + { + "item": "Desc_Coal_C", + "amount": 12.0 + } + ], + "producedIn": [ + "Desc_Converter_C" + ], + "isVariablePower": true, + "minPower": 100, + "maxPower": 400 + }, + "Recipe_Coal_Limestone_C": { + "slug": "recipe-coal-limestone-c", + "name": "Coal (Limestone)", + "className": "Recipe_Coal_Limestone_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SAMIngot_C", + "amount": 1.0 + }, + { + "item": "Desc_Stone_C", + "amount": 36.0 + } + ], + "products": [ + { + "item": "Desc_Coal_C", + "amount": 12.0 + } + ], + "producedIn": [ + "Desc_Converter_C" + ], + "isVariablePower": true, + "minPower": 100, + "maxPower": 400 + }, + "Recipe_Copper_Quartz_C": { + "slug": "recipe-copper-quartz-c", + "name": "Copper Ore (Quartz)", + "className": "Recipe_Copper_Quartz_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SAMIngot_C", + "amount": 1.0 + }, + { + "item": "Desc_RawQuartz_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_OreCopper_C", + "amount": 12.0 + } + ], + "producedIn": [ + "Desc_Converter_C" + ], + "isVariablePower": true, + "minPower": 100, + "maxPower": 400 + }, + "Recipe_Copper_Sulfur_C": { + "slug": "recipe-copper-sulfur-c", + "name": "Copper Ore (Sulfur)", + "className": "Recipe_Copper_Sulfur_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SAMIngot_C", + "amount": 1.0 + }, + { + "item": "Desc_Sulfur_C", + "amount": 12.0 + } + ], + "products": [ + { + "item": "Desc_OreCopper_C", + "amount": 12.0 + } + ], + "producedIn": [ + "Desc_Converter_C" + ], + "isVariablePower": true, + "minPower": 100, + "maxPower": 400 + }, + "Recipe_Iron_Limestone_C": { + "slug": "recipe-iron-limestone-c", + "name": "Iron Ore (Limestone)", + "className": "Recipe_Iron_Limestone_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SAMIngot_C", + "amount": 1.0 + }, + { + "item": "Desc_Stone_C", + "amount": 24.0 + } + ], + "products": [ + { + "item": "Desc_OreIron_C", + "amount": 12.0 + } + ], + "producedIn": [ + "Desc_Converter_C" + ], + "isVariablePower": true, + "minPower": 100, + "maxPower": 400 + }, + "Recipe_Limestone_Sulfur_C": { + "slug": "recipe-limestone-sulfur-c", + "name": "Limestone (Sulfur)", + "className": "Recipe_Limestone_Sulfur_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SAMIngot_C", + "amount": 1.0 + }, + { + "item": "Desc_Sulfur_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Stone_C", + "amount": 12.0 + } + ], + "producedIn": [ + "Desc_Converter_C" + ], + "isVariablePower": true, + "minPower": 100, + "maxPower": 400 + }, + "Recipe_Nitrogen_Bauxite_C": { + "slug": "recipe-nitrogen-bauxite-c", + "name": "Nitrogen Gas (Bauxite)", + "className": "Recipe_Nitrogen_Bauxite_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SAMIngot_C", + "amount": 1.0 + }, + { + "item": "Desc_OreBauxite_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_NitrogenGas_C", + "amount": 12.0 + } + ], + "producedIn": [ + "Desc_Converter_C" + ], + "isVariablePower": true, + "minPower": 100, + "maxPower": 400 + }, + "Recipe_Nitrogen_Caterium_C": { + "slug": "recipe-nitrogen-caterium-c", + "name": "Nitrogen Gas (Caterium)", + "className": "Recipe_Nitrogen_Caterium_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SAMIngot_C", + "amount": 1.0 + }, + { + "item": "Desc_OreGold_C", + "amount": 12.0 + } + ], + "products": [ + { + "item": "Desc_NitrogenGas_C", + "amount": 12.0 + } + ], + "producedIn": [ + "Desc_Converter_C" + ], + "isVariablePower": true, + "minPower": 100, + "maxPower": 400 + }, + "Recipe_Quartz_Bauxite_C": { + "slug": "recipe-quartz-bauxite-c", + "name": "Raw Quartz (Bauxite)", + "className": "Recipe_Quartz_Bauxite_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SAMIngot_C", + "amount": 1.0 + }, + { + "item": "Desc_OreBauxite_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_RawQuartz_C", + "amount": 12.0 + } + ], + "producedIn": [ + "Desc_Converter_C" + ], + "isVariablePower": true, + "minPower": 100, + "maxPower": 400 + }, + "Recipe_Quartz_Coal_C": { + "slug": "recipe-quartz-coal-c", + "name": "Raw Quartz (Coal)", + "className": "Recipe_Quartz_Coal_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SAMIngot_C", + "amount": 1.0 + }, + { + "item": "Desc_Coal_C", + "amount": 24.0 + } + ], + "products": [ + { + "item": "Desc_RawQuartz_C", + "amount": 12.0 + } + ], + "producedIn": [ + "Desc_Converter_C" + ], + "isVariablePower": true, + "minPower": 100, + "maxPower": 400 + }, + "Recipe_Sulfur_Coal_C": { + "slug": "recipe-sulfur-coal-c", + "name": "Sulfur (Coal)", + "className": "Recipe_Sulfur_Coal_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SAMIngot_C", + "amount": 1.0 + }, + { + "item": "Desc_Coal_C", + "amount": 20.0 + } + ], + "products": [ + { + "item": "Desc_Sulfur_C", + "amount": 12.0 + } + ], + "producedIn": [ + "Desc_Converter_C" + ], + "isVariablePower": true, + "minPower": 100, + "maxPower": 400 + }, + "Recipe_Sulfur_Iron_C": { + "slug": "recipe-sulfur-iron-c", + "name": "Sulfur (Iron)", + "className": "Recipe_Sulfur_Iron_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SAMIngot_C", + "amount": 1.0 + }, + { + "item": "Desc_OreIron_C", + "amount": 30.0 + } + ], + "products": [ + { + "item": "Desc_Sulfur_C", + "amount": 12.0 + } + ], + "producedIn": [ + "Desc_Converter_C" + ], + "isVariablePower": true, + "minPower": 100, + "maxPower": 400 + }, + "Recipe_Uranium_Bauxite_C": { + "slug": "recipe-uranium-bauxite-c", + "name": "Uranium Ore (Bauxite)", + "className": "Recipe_Uranium_Bauxite_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SAMIngot_C", + "amount": 1.0 + }, + { + "item": "Desc_OreBauxite_C", + "amount": 48.0 + } + ], + "products": [ + { + "item": "Desc_OreUranium_C", + "amount": 12.0 + } + ], + "producedIn": [ + "Desc_Converter_C" + ], + "isVariablePower": true, + "minPower": 100, + "maxPower": 400 + }, + "Recipe_Alternate_Turbofuel_C": { + "slug": "recipe-alternate-turbofuel-c", + "name": "Turbofuel", + "className": "Recipe_Alternate_Turbofuel_C", + "alternate": true, + "time": 16.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_LiquidFuel_C", + "amount": 6.0 + }, + { + "item": "Desc_CompactedCoal_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_LiquidTurboFuel_C", + "amount": 5.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PackagedTurboFuel_C": { + "slug": "recipe-packagedturbofuel-c", + "name": "Packaged Turbofuel", + "className": "Recipe_PackagedTurboFuel_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_LiquidTurboFuel_C", + "amount": 2.0 + }, + { + "item": "Desc_FluidCanister_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_TurboFuel_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_UnpackageTurboFuel_C": { + "slug": "recipe-unpackageturbofuel-c", + "name": "Unpackage Turbofuel", + "className": "Recipe_UnpackageTurboFuel_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_TurboFuel_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_LiquidTurboFuel_C", + "amount": 2.0 + }, + { + "item": "Desc_FluidCanister_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Coal_1_C": { + "slug": "recipe-alternate-coal-1-c", + "name": "Alternate: Charcoal", + "className": "Recipe_Alternate_Coal_1_C", + "alternate": true, + "time": 4.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Wood_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_Coal_C", + "amount": 10.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Coal_2_C": { + "slug": "recipe-alternate-coal-2-c", + "name": "Alternate: Biocoal", + "className": "Recipe_Alternate_Coal_2_C", + "alternate": true, + "time": 8.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_GenericBiomass_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Coal_C", + "amount": 6.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_EnrichedCoal_C": { + "slug": "recipe-alternate-enrichedcoal-c", + "name": "Alternate: Compacted Coal", + "className": "Recipe_Alternate_EnrichedCoal_C", + "alternate": true, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Coal_C", + "amount": 5.0 + }, + { + "item": "Desc_Sulfur_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_CompactedCoal_C", + "amount": 5.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_CircuitBoard_C": { + "slug": "recipe-circuitboard-c", + "name": "Circuit Board", + "className": "Recipe_CircuitBoard_C", + "alternate": false, + "time": 8.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.5, + "ingredients": [ + { + "item": "Desc_CopperSheet_C", + "amount": 2.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_CircuitBoard_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_OilPump_C": { + "slug": "recipe-oilpump-c", + "name": "Oil Extractor", + "className": "Recipe_OilPump_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Motor_C", + "amount": 15.0 + }, + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 20.0 + }, + { + "item": "Desc_Cable_C", + "amount": 60.0 + } + ], + "products": [ + { + "item": "Desc_OilPump_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_OilRefinery_C": { + "slug": "recipe-oilrefinery-c", + "name": "Refinery", + "className": "Recipe_OilRefinery_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Motor_C", + "amount": 10.0 + }, + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 10.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 30.0 + }, + { + "item": "Desc_CopperSheet_C", + "amount": 20.0 + } + ], + "products": [ + { + "item": "Desc_OilRefinery_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Valve_C": { + "slug": "recipe-valve-c", + "name": "Valve", + "className": "Recipe_Valve_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Rubber_C", + "amount": 4.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_Valve_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_LiquidFuel_C": { + "slug": "recipe-liquidfuel-c", + "name": "Fuel", + "className": "Recipe_LiquidFuel_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_LiquidOil_C", + "amount": 6.0 + } + ], + "products": [ + { + "item": "Desc_LiquidFuel_C", + "amount": 4.0 + }, + { + "item": "Desc_PolymerResin_C", + "amount": 3.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PetroleumCoke_C": { + "slug": "recipe-petroleumcoke-c", + "name": "Petroleum Coke", + "className": "Recipe_PetroleumCoke_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HeavyOilResidue_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_PetroleumCoke_C", + "amount": 12.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Plastic_C": { + "slug": "recipe-plastic-c", + "name": "Plastic", + "className": "Recipe_Plastic_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_LiquidOil_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Plastic_C", + "amount": 2.0 + }, + { + "item": "Desc_HeavyOilResidue_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Rubber_C": { + "slug": "recipe-rubber-c", + "name": "Rubber", + "className": "Recipe_Rubber_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_LiquidOil_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Rubber_C", + "amount": 2.0 + }, + { + "item": "Desc_HeavyOilResidue_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ResidualFuel_C": { + "slug": "recipe-residualfuel-c", + "name": "Residual Fuel", + "className": "Recipe_ResidualFuel_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HeavyOilResidue_C", + "amount": 6.0 + } + ], + "products": [ + { + "item": "Desc_LiquidFuel_C", + "amount": 4.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ResidualPlastic_C": { + "slug": "recipe-residualplastic-c", + "name": "Residual Plastic", + "className": "Recipe_ResidualPlastic_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_PolymerResin_C", + "amount": 6.0 + }, + { + "item": "Desc_Water_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Plastic_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ResidualRubber_C": { + "slug": "recipe-residualrubber-c", + "name": "Residual Rubber", + "className": "Recipe_ResidualRubber_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_PolymerResin_C", + "amount": 4.0 + }, + { + "item": "Desc_Water_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_Rubber_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Diamond_Pink_C": { + "slug": "recipe-alternate-diamond-pink-c", + "name": "Alternate: Pink Diamonds", + "className": "Recipe_Alternate_Diamond_Pink_C", + "alternate": true, + "time": 4.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 99.0, + "ingredients": [ + { + "item": "Desc_Coal_C", + "amount": 8.0 + }, + { + "item": "Desc_QuartzCrystal_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Diamond_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_Converter_C" + ], + "isVariablePower": true, + "minPower": 100, + "maxPower": 400 + }, + "Recipe_Alternate_Diamond_Petroleum_C": { + "slug": "recipe-alternate-diamond-petroleum-c", + "name": "Alternate: Petroleum Diamonds", + "className": "Recipe_Alternate_Diamond_Petroleum_C", + "alternate": true, + "time": 2.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 99.0, + "ingredients": [ + { + "item": "Desc_PetroleumCoke_C", + "amount": 24.0 + } + ], + "products": [ + { + "item": "Desc_Diamond_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_HadronCollider_C" + ], + "isVariablePower": true, + "minPower": 250, + "maxPower": 750 + }, + "Recipe_Alternate_Diamond_OilBased_C": { + "slug": "recipe-alternate-diamond-oilbased-c", + "name": "Alternate: Oil-Based Diamonds", + "className": "Recipe_Alternate_Diamond_OilBased_C", + "alternate": true, + "time": 3.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 99.0, + "ingredients": [ + { + "item": "Desc_LiquidOil_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_Diamond_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_HadronCollider_C" + ], + "isVariablePower": true, + "minPower": 250, + "maxPower": 750 + }, + "Recipe_Alternate_Diamond_Cloudy_C": { + "slug": "recipe-alternate-diamond-cloudy-c", + "name": "Alternate: Cloudy Diamonds", + "className": "Recipe_Alternate_Diamond_Cloudy_C", + "alternate": true, + "time": 3.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 99.0, + "ingredients": [ + { + "item": "Desc_Coal_C", + "amount": 12.0 + }, + { + "item": "Desc_Stone_C", + "amount": 24.0 + } + ], + "products": [ + { + "item": "Desc_Diamond_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_HadronCollider_C" + ], + "isVariablePower": true, + "minPower": 250, + "maxPower": 750 + }, + "Recipe_Alternate_DarkMatter_Trap_C": { + "slug": "recipe-alternate-darkmatter-trap-c", + "name": "Alternate: Dark Matter Trap", + "className": "Recipe_Alternate_DarkMatter_Trap_C", + "alternate": true, + "time": 2.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 99.0, + "ingredients": [ + { + "item": "Desc_TimeCrystal_C", + "amount": 1.0 + }, + { + "item": "Desc_DarkEnergy_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_DarkMatter_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_HadronCollider_C" + ], + "isVariablePower": true, + "minPower": 500, + "maxPower": 1500 + }, + "Recipe_Alternate_DarkMatter_Crystallization_C": { + "slug": "recipe-alternate-darkmatter-crystallization-c", + "name": "Alternate: Dark Matter Crystallization", + "className": "Recipe_Alternate_DarkMatter_Crystallization_C", + "alternate": true, + "time": 3.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 99.0, + "ingredients": [ + { + "item": "Desc_DarkEnergy_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_DarkMatter_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_HadronCollider_C" + ], + "isVariablePower": true, + "minPower": 500, + "maxPower": 1500 + }, + "Recipe_Alternate_WetConcrete_C": { + "slug": "recipe-alternate-wetconcrete-c", + "name": "Alternate: Wet Concrete", + "className": "Recipe_Alternate_WetConcrete_C", + "alternate": true, + "time": 3.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Stone_C", + "amount": 6.0 + }, + { + "item": "Desc_Water_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Cement_C", + "amount": 4.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_TurboHeavyFuel_C": { + "slug": "recipe-alternate-turboheavyfuel-c", + "name": "Alternate: Turbo Heavy Fuel", + "className": "Recipe_Alternate_TurboHeavyFuel_C", + "alternate": true, + "time": 8.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HeavyOilResidue_C", + "amount": 5.0 + }, + { + "item": "Desc_CompactedCoal_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_LiquidTurboFuel_C", + "amount": 4.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_SteelRod_C": { + "slug": "recipe-alternate-steelrod-c", + "name": "Alternate: Steel Rod", + "className": "Recipe_Alternate_SteelRod_C", + "alternate": true, + "time": 5.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelIngot_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_IronRod_C", + "amount": 4.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SmelterMk1_C": { + "slug": "recipe-smeltermk1-c", + "name": "Foundry", + "className": "Recipe_SmelterMk1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrame_C", + "amount": 10.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 10.0 + }, + { + "item": "Desc_Cement_C", + "amount": 20.0 + } + ], + "products": [ + { + "item": "Desc_FoundryMk1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SteelBeam_C": { + "slug": "recipe-steelbeam-c", + "name": "Steel Beam", + "className": "Recipe_SteelBeam_C", + "alternate": false, + "time": 4.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelIngot_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_SteelPlate_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SteelPipe_C": { + "slug": "recipe-steelpipe-c", + "name": "Steel Pipe", + "className": "Recipe_SteelPipe_C", + "alternate": false, + "time": 6.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelIngot_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_SteelPipe_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_IngotSteel_C": { + "slug": "recipe-ingotsteel-c", + "name": "Steel Ingot", + "className": "Recipe_IngotSteel_C", + "alternate": false, + "time": 4.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 3.0, + "ingredients": [ + { + "item": "Desc_OreIron_C", + "amount": 3.0 + }, + { + "item": "Desc_Coal_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_SteelIngot_C", + "amount": 3.0 + } + ], + "producedIn": [ + "Desc_FoundryMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SpaceElevatorPart_2_C": { + "slug": "recipe-spaceelevatorpart-2-c", + "name": "Versatile Framework", + "className": "Recipe_SpaceElevatorPart_2_C", + "alternate": false, + "time": 24.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrame_C", + "amount": 1.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 12.0 + } + ], + "products": [ + { + "item": "Desc_SpaceElevatorPart_2_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_SteelCanister_C": { + "slug": "recipe-alternate-steelcanister-c", + "name": "Alternate: Steel Canister", + "className": "Recipe_Alternate_SteelCanister_C", + "alternate": true, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelIngot_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_FluidCanister_C", + "amount": 4.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Packager_C": { + "slug": "recipe-packager-c", + "name": "Packager", + "className": "Recipe_Packager_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlate_C", + "amount": 20.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 10.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_Packager_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_FluidCanister_C": { + "slug": "recipe-fluidcanister-c", + "name": "Empty Canister", + "className": "Recipe_FluidCanister_C", + "alternate": false, + "time": 4.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Plastic_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_FluidCanister_C", + "amount": 4.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Fuel_C": { + "slug": "recipe-fuel-c", + "name": "Packaged Fuel", + "className": "Recipe_Fuel_C", + "alternate": false, + "time": 3.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_LiquidFuel_C", + "amount": 2.0 + }, + { + "item": "Desc_FluidCanister_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Fuel_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_LiquidBiofuel_C": { + "slug": "recipe-liquidbiofuel-c", + "name": "Liquid Biofuel", + "className": "Recipe_LiquidBiofuel_C", + "alternate": false, + "time": 4.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Biofuel_C", + "amount": 6.0 + }, + { + "item": "Desc_Water_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_LiquidBiofuel_C", + "amount": 4.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PackagedBiofuel_C": { + "slug": "recipe-packagedbiofuel-c", + "name": "Packaged Liquid Biofuel", + "className": "Recipe_PackagedBiofuel_C", + "alternate": false, + "time": 3.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_LiquidBiofuel_C", + "amount": 2.0 + }, + { + "item": "Desc_FluidCanister_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_PackagedBiofuel_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PackagedCrudeOil_C": { + "slug": "recipe-packagedcrudeoil-c", + "name": "Packaged Oil", + "className": "Recipe_PackagedCrudeOil_C", + "alternate": false, + "time": 4.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_LiquidOil_C", + "amount": 2.0 + }, + { + "item": "Desc_FluidCanister_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_PackagedOil_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PackagedOilResidue_C": { + "slug": "recipe-packagedoilresidue-c", + "name": "Packaged Heavy Oil Residue", + "className": "Recipe_PackagedOilResidue_C", + "alternate": false, + "time": 4.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HeavyOilResidue_C", + "amount": 2.0 + }, + { + "item": "Desc_FluidCanister_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_PackagedOilResidue_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PackagedWater_C": { + "slug": "recipe-packagedwater-c", + "name": "Packaged Water", + "className": "Recipe_PackagedWater_C", + "alternate": false, + "time": 2.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Water_C", + "amount": 2.0 + }, + { + "item": "Desc_FluidCanister_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_PackagedWater_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_UnpackageBioFuel_C": { + "slug": "recipe-unpackagebiofuel-c", + "name": "Unpackage Liquid Biofuel", + "className": "Recipe_UnpackageBioFuel_C", + "alternate": false, + "time": 2.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_PackagedBiofuel_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_LiquidBiofuel_C", + "amount": 2.0 + }, + { + "item": "Desc_FluidCanister_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_UnpackageFuel_C": { + "slug": "recipe-unpackagefuel-c", + "name": "Unpackage Fuel", + "className": "Recipe_UnpackageFuel_C", + "alternate": false, + "time": 2.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Fuel_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_LiquidFuel_C", + "amount": 2.0 + }, + { + "item": "Desc_FluidCanister_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_UnpackageOil_C": { + "slug": "recipe-unpackageoil-c", + "name": "Unpackage Oil", + "className": "Recipe_UnpackageOil_C", + "alternate": false, + "time": 2.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_PackagedOil_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_LiquidOil_C", + "amount": 2.0 + }, + { + "item": "Desc_FluidCanister_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_UnpackageOilResidue_C": { + "slug": "recipe-unpackageoilresidue-c", + "name": "Unpackage Heavy Oil Residue", + "className": "Recipe_UnpackageOilResidue_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_PackagedOilResidue_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_HeavyOilResidue_C", + "amount": 2.0 + }, + { + "item": "Desc_FluidCanister_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_UnpackageWater_C": { + "slug": "recipe-unpackagewater-c", + "name": "Unpackage Water", + "className": "Recipe_UnpackageWater_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_PackagedWater_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Water_C", + "amount": 2.0 + }, + { + "item": "Desc_FluidCanister_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_SteamedCopperSheet_C": { + "slug": "recipe-alternate-steamedcoppersheet-c", + "name": "Alternate: Steamed Copper Sheet", + "className": "Recipe_Alternate_SteamedCopperSheet_C", + "alternate": true, + "time": 8.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CopperIngot_C", + "amount": 3.0 + }, + { + "item": "Desc_Water_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_CopperSheet_C", + "amount": 3.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_RubberConcrete_C": { + "slug": "recipe-alternate-rubberconcrete-c", + "name": "Alternate: Rubber Concrete", + "className": "Recipe_Alternate_RubberConcrete_C", + "alternate": true, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Stone_C", + "amount": 10.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Cement_C", + "amount": 9.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_RecycledRubber_C": { + "slug": "recipe-alternate-recycledrubber-c", + "name": "Alternate: Recycled Rubber", + "className": "Recipe_Alternate_RecycledRubber_C", + "alternate": true, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Plastic_C", + "amount": 6.0 + }, + { + "item": "Desc_LiquidFuel_C", + "amount": 6.0 + } + ], + "products": [ + { + "item": "Desc_Rubber_C", + "amount": 12.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_PureQuartzCrystal_C": { + "slug": "recipe-alternate-purequartzcrystal-c", + "name": "Alternate: Pure Quartz Crystal", + "className": "Recipe_Alternate_PureQuartzCrystal_C", + "alternate": true, + "time": 8.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_RawQuartz_C", + "amount": 9.0 + }, + { + "item": "Desc_Water_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuartzCrystal_C", + "amount": 7.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuartzCrystal_C": { + "slug": "recipe-quartzcrystal-c", + "name": "Quartz Crystal", + "className": "Recipe_QuartzCrystal_C", + "alternate": false, + "time": 8.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 2.0, + "ingredients": [ + { + "item": "Desc_RawQuartz_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuartzCrystal_C", + "amount": 3.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_PureIronIngot_C": { + "slug": "recipe-alternate-pureironingot-c", + "name": "Alternate: Pure Iron Ingot", + "className": "Recipe_Alternate_PureIronIngot_C", + "alternate": true, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_OreIron_C", + "amount": 7.0 + }, + { + "item": "Desc_Water_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_IronIngot_C", + "amount": 13.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_PureCopperIngot_C": { + "slug": "recipe-alternate-purecopperingot-c", + "name": "Alternate: Pure Copper Ingot", + "className": "Recipe_Alternate_PureCopperIngot_C", + "alternate": true, + "time": 24.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_OreCopper_C", + "amount": 6.0 + }, + { + "item": "Desc_Water_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_CopperIngot_C", + "amount": 15.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_PureCateriumIngot_C": { + "slug": "recipe-alternate-purecateriumingot-c", + "name": "Alternate: Pure Caterium Ingot", + "className": "Recipe_Alternate_PureCateriumIngot_C", + "alternate": true, + "time": 5.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_OreGold_C", + "amount": 2.0 + }, + { + "item": "Desc_Water_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_GoldIngot_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PureAluminumIngot_C": { + "slug": "recipe-purealuminumingot-c", + "name": "Alternate: Pure Aluminum Ingot", + "className": "Recipe_PureAluminumIngot_C", + "alternate": true, + "time": 2.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_AluminumScrap_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_AluminumIngot_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_SmelterMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_AluminumCasing_C": { + "slug": "recipe-aluminumcasing-c", + "name": "Aluminum Casing", + "className": "Recipe_AluminumCasing_C", + "alternate": false, + "time": 2.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 2.0, + "ingredients": [ + { + "item": "Desc_AluminumIngot_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_AluminumCasing_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_AluminumSheet_C": { + "slug": "recipe-aluminumsheet-c", + "name": "Alclad Aluminum Sheet", + "className": "Recipe_AluminumSheet_C", + "alternate": false, + "time": 6.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 2.0, + "ingredients": [ + { + "item": "Desc_AluminumIngot_C", + "amount": 3.0 + }, + { + "item": "Desc_CopperIngot_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_AluminumPlate_C", + "amount": 3.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_AluminaSolution_C": { + "slug": "recipe-aluminasolution-c", + "name": "Alumina Solution", + "className": "Recipe_AluminaSolution_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_OreBauxite_C", + "amount": 12.0 + }, + { + "item": "Desc_Water_C", + "amount": 18.0 + } + ], + "products": [ + { + "item": "Desc_AluminaSolution_C", + "amount": 12.0 + }, + { + "item": "Desc_Silica_C", + "amount": 5.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_AluminumScrap_C": { + "slug": "recipe-aluminumscrap-c", + "name": "Aluminum Scrap", + "className": "Recipe_AluminumScrap_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_AluminaSolution_C", + "amount": 4.0 + }, + { + "item": "Desc_Coal_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_AluminumScrap_C", + "amount": 6.0 + }, + { + "item": "Desc_Water_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PackagedAlumina_C": { + "slug": "recipe-packagedalumina-c", + "name": "Packaged Alumina Solution", + "className": "Recipe_PackagedAlumina_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_AluminaSolution_C", + "amount": 2.0 + }, + { + "item": "Desc_FluidCanister_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_PackagedAlumina_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_IngotAluminum_C": { + "slug": "recipe-ingotaluminum-c", + "name": "Aluminum Ingot", + "className": "Recipe_IngotAluminum_C", + "alternate": false, + "time": 4.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 3.0, + "ingredients": [ + { + "item": "Desc_AluminumScrap_C", + "amount": 6.0 + }, + { + "item": "Desc_Silica_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_AluminumIngot_C", + "amount": 4.0 + } + ], + "producedIn": [ + "Desc_FoundryMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Silica_C": { + "slug": "recipe-silica-c", + "name": "Silica", + "className": "Recipe_Silica_C", + "alternate": false, + "time": 8.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 2.0, + "ingredients": [ + { + "item": "Desc_RawQuartz_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Silica_C", + "amount": 5.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_CrystalOscillator_C": { + "slug": "recipe-crystaloscillator-c", + "name": "Crystal Oscillator", + "className": "Recipe_CrystalOscillator_C", + "alternate": false, + "time": 120.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 0.3, + "ingredients": [ + { + "item": "Desc_QuartzCrystal_C", + "amount": 36.0 + }, + { + "item": "Desc_Cable_C", + "amount": 28.0 + }, + { + "item": "Desc_IronPlateReinforced_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_CrystalOscillator_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_UnpackageAlumina_C": { + "slug": "recipe-unpackagealumina-c", + "name": "Unpackage Alumina Solution", + "className": "Recipe_UnpackageAlumina_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_PackagedAlumina_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_AluminaSolution_C", + "amount": 2.0 + }, + { + "item": "Desc_FluidCanister_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_PolymerResin_C": { + "slug": "recipe-alternate-polymerresin-c", + "name": "Alternate: Polymer Resin", + "className": "Recipe_Alternate_PolymerResin_C", + "alternate": true, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_LiquidOil_C", + "amount": 6.0 + } + ], + "products": [ + { + "item": "Desc_PolymerResin_C", + "amount": 13.0 + }, + { + "item": "Desc_HeavyOilResidue_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_PlasticSmartPlating_C": { + "slug": "recipe-alternate-plasticsmartplating-c", + "name": "Alternate: Plastic Smart Plating", + "className": "Recipe_Alternate_PlasticSmartPlating_C", + "alternate": true, + "time": 24.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 1.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 1.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_SpaceElevatorPart_1_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_HighSpeedWiring_C": { + "slug": "recipe-alternate-highspeedwiring-c", + "name": "Alternate: Automated Speed Wiring", + "className": "Recipe_Alternate_HighSpeedWiring_C", + "alternate": true, + "time": 32.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Stator_C", + "amount": 2.0 + }, + { + "item": "Desc_Wire_C", + "amount": 40.0 + }, + { + "item": "Desc_HighSpeedConnector_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_SpaceElevatorPart_3_C", + "amount": 4.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_EncasedIndustrialBeam_C": { + "slug": "recipe-encasedindustrialbeam-c", + "name": "Encased Industrial Beam", + "className": "Recipe_EncasedIndustrialBeam_C", + "alternate": false, + "time": 10.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlate_C", + "amount": 3.0 + }, + { + "item": "Desc_Cement_C", + "amount": 6.0 + } + ], + "products": [ + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Motor_C": { + "slug": "recipe-motor-c", + "name": "Motor", + "className": "Recipe_Motor_C", + "alternate": false, + "time": 12.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 2.0, + "ingredients": [ + { + "item": "Desc_Rotor_C", + "amount": 2.0 + }, + { + "item": "Desc_Stator_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Motor_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Stator_C": { + "slug": "recipe-stator-c", + "name": "Stator", + "className": "Recipe_Stator_C", + "alternate": false, + "time": 12.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.5, + "ingredients": [ + { + "item": "Desc_SteelPipe_C", + "amount": 3.0 + }, + { + "item": "Desc_Wire_C", + "amount": 8.0 + } + ], + "products": [ + { + "item": "Desc_Stator_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_MinerMk2_C": { + "slug": "recipe-minermk2-c", + "name": "Miner Mk.2", + "className": "Recipe_MinerMk2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "BP_ItemDescriptorPortableMiner_C", + "amount": 2.0 + }, + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 10.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 20.0 + }, + { + "item": "Desc_ModularFrame_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_MinerMk2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SpaceElevatorPart_3_C": { + "slug": "recipe-spaceelevatorpart-3-c", + "name": "Automated Wiring", + "className": "Recipe_SpaceElevatorPart_3_C", + "alternate": false, + "time": 24.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Stator_C", + "amount": 1.0 + }, + { + "item": "Desc_Cable_C", + "amount": 20.0 + } + ], + "products": [ + { + "item": "Desc_SpaceElevatorPart_3_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_AILimiter_C": { + "slug": "recipe-ailimiter-c", + "name": "AI Limiter", + "className": "Recipe_AILimiter_C", + "alternate": false, + "time": 12.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CopperSheet_C", + "amount": 5.0 + }, + { + "item": "Desc_HighSpeedWire_C", + "amount": 20.0 + } + ], + "products": [ + { + "item": "Desc_CircuitBoardHighSpeed_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_HeavyOilResidue_C": { + "slug": "recipe-alternate-heavyoilresidue-c", + "name": "Alternate: Heavy Oil Residue", + "className": "Recipe_Alternate_HeavyOilResidue_C", + "alternate": true, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_LiquidOil_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_HeavyOilResidue_C", + "amount": 4.0 + }, + { + "item": "Desc_PolymerResin_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_HeavyFlexibleFrame_C": { + "slug": "recipe-alternate-heavyflexibleframe-c", + "name": "Alternate: Heavy Flexible Frame", + "className": "Recipe_Alternate_HeavyFlexibleFrame_C", + "alternate": true, + "time": 16.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrame_C", + "amount": 5.0 + }, + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 3.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 20.0 + }, + { + "item": "Desc_IronScrew_C", + "amount": 104.0 + } + ], + "products": [ + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ManufacturerMk1_C": { + "slug": "recipe-manufacturermk1-c", + "name": "Manufacturer", + "className": "Recipe_ManufacturerMk1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Motor_C", + "amount": 10.0 + }, + { + "item": "Desc_ModularFrame_C", + "amount": 20.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 50.0 + }, + { + "item": "Desc_Cable_C", + "amount": 50.0 + } + ], + "products": [ + { + "item": "Desc_ManufacturerMk1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Computer_C": { + "slug": "recipe-computer-c", + "name": "Computer", + "className": "Recipe_Computer_C", + "alternate": false, + "time": 24.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.5, + "ingredients": [ + { + "item": "Desc_CircuitBoard_C", + "amount": 4.0 + }, + { + "item": "Desc_Cable_C", + "amount": 8.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 16.0 + } + ], + "products": [ + { + "item": "Desc_Computer_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ModularFrameHeavy_C": { + "slug": "recipe-modularframeheavy-c", + "name": "Heavy Modular Frame", + "className": "Recipe_ModularFrameHeavy_C", + "alternate": false, + "time": 30.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 0.6, + "ingredients": [ + { + "item": "Desc_ModularFrame_C", + "amount": 5.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 20.0 + }, + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 5.0 + }, + { + "item": "Desc_IronScrew_C", + "amount": 120.0 + } + ], + "products": [ + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SpaceElevatorPart_4_C": { + "slug": "recipe-spaceelevatorpart-4-c", + "name": "Modular Engine", + "className": "Recipe_SpaceElevatorPart_4_C", + "alternate": false, + "time": 60.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Motor_C", + "amount": 2.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 15.0 + }, + { + "item": "Desc_SpaceElevatorPart_1_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_SpaceElevatorPart_4_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SpaceElevatorPart_5_C": { + "slug": "recipe-spaceelevatorpart-5-c", + "name": "Adaptive Control Unit", + "className": "Recipe_SpaceElevatorPart_5_C", + "alternate": false, + "time": 60.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SpaceElevatorPart_3_C", + "amount": 5.0 + }, + { + "item": "Desc_CircuitBoard_C", + "amount": 5.0 + }, + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 1.0 + }, + { + "item": "Desc_Computer_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_SpaceElevatorPart_5_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_FusedWire_C": { + "slug": "recipe-alternate-fusedwire-c", + "name": "Alternate: Fused Wire", + "className": "Recipe_Alternate_FusedWire_C", + "alternate": true, + "time": 20.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CopperIngot_C", + "amount": 4.0 + }, + { + "item": "Desc_GoldIngot_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_Wire_C", + "amount": 30.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_FlexibleFramework_C": { + "slug": "recipe-alternate-flexibleframework-c", + "name": "Alternate: Flexible Framework", + "className": "Recipe_Alternate_FlexibleFramework_C", + "alternate": true, + "time": 16.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrame_C", + "amount": 1.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 6.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 8.0 + } + ], + "products": [ + { + "item": "Desc_SpaceElevatorPart_2_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_ElectrodeCircuitBoard_C": { + "slug": "recipe-alternate-electrodecircuitboard-c", + "name": "Alternate: Electrode Circuit Board", + "className": "Recipe_Alternate_ElectrodeCircuitBoard_C", + "alternate": true, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Rubber_C", + "amount": 4.0 + }, + { + "item": "Desc_PetroleumCoke_C", + "amount": 8.0 + } + ], + "products": [ + { + "item": "Desc_CircuitBoard_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_ElectroAluminumScrap_C": { + "slug": "recipe-alternate-electroaluminumscrap-c", + "name": "Alternate: Electrode Aluminum Scrap", + "className": "Recipe_Alternate_ElectroAluminumScrap_C", + "alternate": true, + "time": 4.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_AluminaSolution_C", + "amount": 12.0 + }, + { + "item": "Desc_PetroleumCoke_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_AluminumScrap_C", + "amount": 20.0 + }, + { + "item": "Desc_Water_C", + "amount": 7.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_DilutedPackagedFuel_C": { + "slug": "recipe-alternate-dilutedpackagedfuel-c", + "name": "Alternate: Diluted Packaged Fuel", + "className": "Recipe_Alternate_DilutedPackagedFuel_C", + "alternate": true, + "time": 2.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HeavyOilResidue_C", + "amount": 1.0 + }, + { + "item": "Desc_PackagedWater_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Fuel_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_CopperRotor_C": { + "slug": "recipe-alternate-copperrotor-c", + "name": "Alternate: Copper Rotor", + "className": "Recipe_Alternate_CopperRotor_C", + "alternate": true, + "time": 16.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CopperSheet_C", + "amount": 6.0 + }, + { + "item": "Desc_IronScrew_C", + "amount": 52.0 + } + ], + "products": [ + { + "item": "Desc_Rotor_C", + "amount": 3.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ModularFrame_C": { + "slug": "recipe-modularframe-c", + "name": "Modular Frame", + "className": "Recipe_ModularFrame_C", + "alternate": false, + "time": 60.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 0.5, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 3.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 12.0 + } + ], + "products": [ + { + "item": "Desc_ModularFrame_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Rotor_C": { + "slug": "recipe-rotor-c", + "name": "Rotor", + "className": "Recipe_Rotor_C", + "alternate": false, + "time": 15.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 0.8, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 5.0 + }, + { + "item": "Desc_IronScrew_C", + "amount": 25.0 + } + ], + "products": [ + { + "item": "Desc_Rotor_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_AssemblerMk1_C": { + "slug": "recipe-assemblermk1-c", + "name": "Assembler", + "className": "Recipe_AssemblerMk1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 8.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 4.0 + }, + { + "item": "Desc_Cable_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_AssemblerMk1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_CopperSheet_C": { + "slug": "recipe-coppersheet-c", + "name": "Copper Sheet", + "className": "Recipe_CopperSheet_C", + "alternate": false, + "time": 6.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CopperIngot_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_CopperSheet_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SpaceElevatorPart_1_C": { + "slug": "recipe-spaceelevatorpart-1-c", + "name": "Smart Plating", + "className": "Recipe_SpaceElevatorPart_1_C", + "alternate": false, + "time": 30.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 1.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_SpaceElevatorPart_1_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_CopperAlloyIngot_C": { + "slug": "recipe-alternate-copperalloyingot-c", + "name": "Alternate: Copper Alloy Ingot", + "className": "Recipe_Alternate_CopperAlloyIngot_C", + "alternate": true, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_OreCopper_C", + "amount": 5.0 + }, + { + "item": "Desc_OreIron_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_CopperIngot_C", + "amount": 10.0 + } + ], + "producedIn": [ + "Desc_FoundryMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_CokeSteelIngot_C": { + "slug": "recipe-alternate-cokesteelingot-c", + "name": "Alternate: Coke Steel Ingot", + "className": "Recipe_Alternate_CokeSteelIngot_C", + "alternate": true, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_OreIron_C", + "amount": 15.0 + }, + { + "item": "Desc_PetroleumCoke_C", + "amount": 15.0 + } + ], + "products": [ + { + "item": "Desc_SteelIngot_C", + "amount": 20.0 + } + ], + "producedIn": [ + "Desc_FoundryMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_CoatedIronPlate_C": { + "slug": "recipe-alternate-coatedironplate-c", + "name": "Alternate: Coated Iron Plate", + "className": "Recipe_Alternate_CoatedIronPlate_C", + "alternate": true, + "time": 8.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronIngot_C", + "amount": 5.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_IronPlate_C", + "amount": 10.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_CoatedIronCanister_C": { + "slug": "recipe-alternate-coatedironcanister-c", + "name": "Alternate: Coated Iron Canister", + "className": "Recipe_Alternate_CoatedIronCanister_C", + "alternate": true, + "time": 4.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 2.0 + }, + { + "item": "Desc_CopperSheet_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_FluidCanister_C", + "amount": 4.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_CoatedCable_C": { + "slug": "recipe-alternate-coatedcable-c", + "name": "Alternate: Coated Cable", + "className": "Recipe_Alternate_CoatedCable_C", + "alternate": true, + "time": 8.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Wire_C", + "amount": 5.0 + }, + { + "item": "Desc_HeavyOilResidue_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Cable_C", + "amount": 9.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_BoltedFrame_C": { + "slug": "recipe-alternate-boltedframe-c", + "name": "Alternate: Bolted Frame", + "className": "Recipe_Alternate_BoltedFrame_C", + "alternate": true, + "time": 24.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 3.0 + }, + { + "item": "Desc_IronScrew_C", + "amount": 56.0 + } + ], + "products": [ + { + "item": "Desc_ModularFrame_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_AdheredIronPlate_C": { + "slug": "recipe-alternate-adheredironplate-c", + "name": "Alternate: Adhered Iron Plate", + "className": "Recipe_Alternate_AdheredIronPlate_C", + "alternate": true, + "time": 16.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 3.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_TurboPressureMotor_C": { + "slug": "recipe-alternate-turbopressuremotor-c", + "name": "Alternate: Turbo Pressure Motor", + "className": "Recipe_Alternate_TurboPressureMotor_C", + "alternate": true, + "time": 32.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Motor_C", + "amount": 4.0 + }, + { + "item": "Desc_PressureConversionCube_C", + "amount": 1.0 + }, + { + "item": "Desc_PackagedNitrogenGas_C", + "amount": 24.0 + }, + { + "item": "Desc_Stator_C", + "amount": 8.0 + } + ], + "products": [ + { + "item": "Desc_MotorLightweight_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PlutoniumCell_C": { + "slug": "recipe-plutoniumcell-c", + "name": "Encased Plutonium Cell", + "className": "Recipe_PlutoniumCell_C", + "alternate": false, + "time": 12.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 0.5, + "ingredients": [ + { + "item": "Desc_PlutoniumPellet_C", + "amount": 2.0 + }, + { + "item": "Desc_Cement_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_PlutoniumCell_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PressureConversionCube_C": { + "slug": "recipe-pressureconversioncube-c", + "name": "Pressure Conversion Cube", + "className": "Recipe_PressureConversionCube_C", + "alternate": false, + "time": 60.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 2.0, + "ingredients": [ + { + "item": "Desc_ModularFrameFused_C", + "amount": 1.0 + }, + { + "item": "Desc_ModularFrameLightweight_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_PressureConversionCube_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_NitricAcid_C": { + "slug": "recipe-nitricacid-c", + "name": "Nitric Acid", + "className": "Recipe_NitricAcid_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_NitrogenGas_C", + "amount": 12.0 + }, + { + "item": "Desc_Water_C", + "amount": 3.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_NitricAcid_C", + "amount": 3.0 + } + ], + "producedIn": [ + "Desc_Blender_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_NonFissileUranium_C": { + "slug": "recipe-nonfissileuranium-c", + "name": "Non-Fissile Uranium", + "className": "Recipe_NonFissileUranium_C", + "alternate": false, + "time": 24.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_NuclearWaste_C", + "amount": 15.0 + }, + { + "item": "Desc_Silica_C", + "amount": 10.0 + }, + { + "item": "Desc_NitricAcid_C", + "amount": 6.0 + }, + { + "item": "Desc_SulfuricAcid_C", + "amount": 6.0 + } + ], + "products": [ + { + "item": "Desc_NonFissibleUranium_C", + "amount": 20.0 + }, + { + "item": "Desc_Water_C", + "amount": 6.0 + } + ], + "producedIn": [ + "Desc_Blender_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_HadronCollider_C": { + "slug": "recipe-hadroncollider-c", + "name": "Particle Accelerator", + "className": "Recipe_HadronCollider_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_MotorLightweight_C", + "amount": 10.0 + }, + { + "item": "Desc_ComputerSuper_C", + "amount": 10.0 + }, + { + "item": "Desc_ModularFrameFused_C", + "amount": 25.0 + }, + { + "item": "Desc_CoolingSystem_C", + "amount": 50.0 + }, + { + "item": "Desc_HighSpeedWire_C", + "amount": 500.0 + } + ], + "products": [ + { + "item": "Desc_HadronCollider_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_CopperDust_C": { + "slug": "recipe-copperdust-c", + "name": "Copper Powder", + "className": "Recipe_CopperDust_C", + "alternate": false, + "time": 6.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CopperIngot_C", + "amount": 30.0 + } + ], + "products": [ + { + "item": "Desc_CopperDust_C", + "amount": 5.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Plutonium_C": { + "slug": "recipe-plutonium-c", + "name": "Plutonium Pellet", + "className": "Recipe_Plutonium_C", + "alternate": false, + "time": 60.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_NonFissibleUranium_C", + "amount": 100.0 + }, + { + "item": "Desc_NuclearWaste_C", + "amount": 25.0 + } + ], + "products": [ + { + "item": "Desc_PlutoniumPellet_C", + "amount": 30.0 + } + ], + "producedIn": [ + "Desc_HadronCollider_C" + ], + "isVariablePower": true, + "minPower": 250, + "maxPower": 750 + }, + "Recipe_PlutoniumFuelRod_C": { + "slug": "recipe-plutoniumfuelrod-c", + "name": "Plutonium Fuel Rod", + "className": "Recipe_PlutoniumFuelRod_C", + "alternate": false, + "time": 240.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_PlutoniumCell_C", + "amount": 30.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 18.0 + }, + { + "item": "Desc_ElectromagneticControlRod_C", + "amount": 6.0 + }, + { + "item": "Desc_AluminumPlateReinforced_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_PlutoniumFuelRod_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PackagedNitricAcid_C": { + "slug": "recipe-packagednitricacid-c", + "name": "Packaged Nitric Acid", + "className": "Recipe_PackagedNitricAcid_C", + "alternate": false, + "time": 2.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_NitricAcid_C", + "amount": 1.0 + }, + { + "item": "Desc_GasTank_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_PackagedNitricAcid_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SpaceElevatorPart_9_C": { + "slug": "recipe-spaceelevatorpart-9-c", + "name": "Nuclear Pasta", + "className": "Recipe_SpaceElevatorPart_9_C", + "alternate": false, + "time": 120.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CopperDust_C", + "amount": 200.0 + }, + { + "item": "Desc_PressureConversionCube_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_SpaceElevatorPart_9_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_HadronCollider_C" + ], + "isVariablePower": true, + "minPower": 500, + "maxPower": 1500 + }, + "Recipe_UnpackageNitricAcid_C": { + "slug": "recipe-unpackagenitricacid-c", + "name": "Unpackage Nitric Acid", + "className": "Recipe_UnpackageNitricAcid_C", + "alternate": false, + "time": 3.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_PackagedNitricAcid_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_NitricAcid_C", + "amount": 1.0 + }, + { + "item": "Desc_GasTank_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_TurboBlendFuel_C": { + "slug": "recipe-alternate-turboblendfuel-c", + "name": "Alternate: Turbo Blend Fuel", + "className": "Recipe_Alternate_TurboBlendFuel_C", + "alternate": true, + "time": 8.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_LiquidFuel_C", + "amount": 2.0 + }, + { + "item": "Desc_HeavyOilResidue_C", + "amount": 4.0 + }, + { + "item": "Desc_Sulfur_C", + "amount": 3.0 + }, + { + "item": "Desc_PetroleumCoke_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_LiquidTurboFuel_C", + "amount": 6.0 + } + ], + "producedIn": [ + "Desc_Blender_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_UraniumCell_C": { + "slug": "recipe-uraniumcell-c", + "name": "Encased Uranium Cell", + "className": "Recipe_UraniumCell_C", + "alternate": false, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 0.5, + "ingredients": [ + { + "item": "Desc_OreUranium_C", + "amount": 10.0 + }, + { + "item": "Desc_Cement_C", + "amount": 3.0 + }, + { + "item": "Desc_SulfuricAcid_C", + "amount": 8.0 + } + ], + "products": [ + { + "item": "Desc_UraniumCell_C", + "amount": 5.0 + }, + { + "item": "Desc_SulfuricAcid_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_Blender_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_CoolingSystem_C": { + "slug": "recipe-coolingsystem-c", + "name": "Cooling System", + "className": "Recipe_CoolingSystem_C", + "alternate": false, + "time": 10.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_AluminumPlateReinforced_C", + "amount": 2.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 2.0 + }, + { + "item": "Desc_Water_C", + "amount": 5.0 + }, + { + "item": "Desc_NitrogenGas_C", + "amount": 25.0 + } + ], + "products": [ + { + "item": "Desc_CoolingSystem_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_Blender_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Blender_C": { + "slug": "recipe-blender-c", + "name": "Blender", + "className": "Recipe_Blender_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Computer_C", + "amount": 10.0 + }, + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 10.0 + }, + { + "item": "Desc_Motor_C", + "amount": 20.0 + }, + { + "item": "Desc_AluminumCasing_C", + "amount": 50.0 + } + ], + "products": [ + { + "item": "Desc_Blender_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Battery_C": { + "slug": "recipe-battery-c", + "name": "Battery", + "className": "Recipe_Battery_C", + "alternate": false, + "time": 3.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SulfuricAcid_C", + "amount": 2.5 + }, + { + "item": "Desc_AluminaSolution_C", + "amount": 2.0 + }, + { + "item": "Desc_AluminumCasing_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_Battery_C", + "amount": 1.0 + }, + { + "item": "Desc_Water_C", + "amount": 1.5 + } + ], + "producedIn": [ + "Desc_Blender_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ComputerSuper_C": { + "slug": "recipe-computersuper-c", + "name": "Supercomputer", + "className": "Recipe_ComputerSuper_C", + "alternate": false, + "time": 32.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.5, + "ingredients": [ + { + "item": "Desc_Computer_C", + "amount": 4.0 + }, + { + "item": "Desc_CircuitBoardHighSpeed_C", + "amount": 2.0 + }, + { + "item": "Desc_HighSpeedConnector_C", + "amount": 3.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 28.0 + } + ], + "products": [ + { + "item": "Desc_ComputerSuper_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RadioControlUnit_C": { + "slug": "recipe-radiocontrolunit-c", + "name": "Radio Control Unit", + "className": "Recipe_RadioControlUnit_C", + "alternate": false, + "time": 48.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_AluminumCasing_C", + "amount": 32.0 + }, + { + "item": "Desc_CrystalOscillator_C", + "amount": 1.0 + }, + { + "item": "Desc_Computer_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_ModularFrameLightweight_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SulfuricAcid_C": { + "slug": "recipe-sulfuricacid-c", + "name": "Sulfuric Acid", + "className": "Recipe_SulfuricAcid_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Sulfur_C", + "amount": 5.0 + }, + { + "item": "Desc_Water_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_SulfuricAcid_C", + "amount": 5.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PackagedSulfuricAcid_C": { + "slug": "recipe-packagedsulfuricacid-c", + "name": "Packaged Sulfuric Acid", + "className": "Recipe_PackagedSulfuricAcid_C", + "alternate": false, + "time": 3.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SulfuricAcid_C", + "amount": 2.0 + }, + { + "item": "Desc_FluidCanister_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_PackagedSulfuricAcid_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SpaceElevatorPart_7_C": { + "slug": "recipe-spaceelevatorpart-7-c", + "name": "Assembly Director System", + "className": "Recipe_SpaceElevatorPart_7_C", + "alternate": false, + "time": 80.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SpaceElevatorPart_5_C", + "amount": 2.0 + }, + { + "item": "Desc_ComputerSuper_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_SpaceElevatorPart_7_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_HighSpeedConnector_C": { + "slug": "recipe-highspeedconnector-c", + "name": "High-Speed Connector", + "className": "Recipe_HighSpeedConnector_C", + "alternate": false, + "time": 16.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 56.0 + }, + { + "item": "Desc_Cable_C", + "amount": 10.0 + }, + { + "item": "Desc_CircuitBoard_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_HighSpeedConnector_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_UnpackageSulfuricAcid_C": { + "slug": "recipe-unpackagesulfuricacid-c", + "name": "Unpackage Sulfuric Acid", + "className": "Recipe_UnpackageSulfuricAcid_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_PackagedSulfuricAcid_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_SulfuricAcid_C", + "amount": 1.0 + }, + { + "item": "Desc_FluidCanister_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_SuperStateComputer_C": { + "slug": "recipe-alternate-superstatecomputer-c", + "name": "Alternate: Super-State Computer", + "className": "Recipe_Alternate_SuperStateComputer_C", + "alternate": true, + "time": 25.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Computer_C", + "amount": 3.0 + }, + { + "item": "Desc_ElectromagneticControlRod_C", + "amount": 1.0 + }, + { + "item": "Desc_Battery_C", + "amount": 10.0 + }, + { + "item": "Desc_Wire_C", + "amount": 25.0 + } + ], + "products": [ + { + "item": "Desc_ComputerSuper_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ElectromagneticControlRod_C": { + "slug": "recipe-electromagneticcontrolrod-c", + "name": "Electromagnetic Control Rod", + "className": "Recipe_ElectromagneticControlRod_C", + "alternate": false, + "time": 30.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Stator_C", + "amount": 3.0 + }, + { + "item": "Desc_CircuitBoardHighSpeed_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_ElectromagneticControlRod_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_GeneratorNuclear_C": { + "slug": "recipe-generatornuclear-c", + "name": "Nuclear Power Plant", + "className": "Recipe_GeneratorNuclear_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ComputerSuper_C", + "amount": 10.0 + }, + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 25.0 + }, + { + "item": "Desc_AluminumPlate_C", + "amount": 100.0 + }, + { + "item": "Desc_Cable_C", + "amount": 200.0 + }, + { + "item": "Desc_Cement_C", + "amount": 250.0 + } + ], + "products": [ + { + "item": "Desc_GeneratorNuclear_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_NuclearFuelRod_C": { + "slug": "recipe-nuclearfuelrod-c", + "name": "Uranium Fuel Rod", + "className": "Recipe_NuclearFuelRod_C", + "alternate": false, + "time": 150.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_UraniumCell_C", + "amount": 50.0 + }, + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 3.0 + }, + { + "item": "Desc_ElectromagneticControlRod_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_NuclearFuelRod_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SpaceElevatorPart_6_C": { + "slug": "recipe-spaceelevatorpart-6-c", + "name": "Magnetic Field Generator", + "className": "Recipe_SpaceElevatorPart_6_C", + "alternate": false, + "time": 120.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SpaceElevatorPart_2_C", + "amount": 5.0 + }, + { + "item": "Desc_ElectromagneticControlRod_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_SpaceElevatorPart_6_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_SloppyAlumina_C": { + "slug": "recipe-alternate-sloppyalumina-c", + "name": "Alternate: Sloppy Alumina", + "className": "Recipe_Alternate_SloppyAlumina_C", + "alternate": true, + "time": 3.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_OreBauxite_C", + "amount": 10.0 + }, + { + "item": "Desc_Water_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_AluminaSolution_C", + "amount": 12.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_RadioControlSystem_C": { + "slug": "recipe-alternate-radiocontrolsystem-c", + "name": "Alternate: Radio Control System", + "className": "Recipe_Alternate_RadioControlSystem_C", + "alternate": true, + "time": 40.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CrystalOscillator_C", + "amount": 1.0 + }, + { + "item": "Desc_CircuitBoard_C", + "amount": 10.0 + }, + { + "item": "Desc_AluminumCasing_C", + "amount": 60.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 30.0 + } + ], + "products": [ + { + "item": "Desc_ModularFrameLightweight_C", + "amount": 3.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_PlutoniumFuelUnit_C": { + "slug": "recipe-alternate-plutoniumfuelunit-c", + "name": "Alternate: Plutonium Fuel Unit", + "className": "Recipe_Alternate_PlutoniumFuelUnit_C", + "alternate": true, + "time": 120.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_PlutoniumCell_C", + "amount": 20.0 + }, + { + "item": "Desc_PressureConversionCube_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_PlutoniumFuelRod_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_OCSupercomputer_C": { + "slug": "recipe-alternate-ocsupercomputer-c", + "name": "Alternate: OC Supercomputer", + "className": "Recipe_Alternate_OCSupercomputer_C", + "alternate": true, + "time": 20.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrameLightweight_C", + "amount": 2.0 + }, + { + "item": "Desc_CoolingSystem_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_ComputerSuper_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_HeatSink_C": { + "slug": "recipe-heatsink-c", + "name": "Heat Sink", + "className": "Recipe_HeatSink_C", + "alternate": false, + "time": 8.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.5, + "ingredients": [ + { + "item": "Desc_AluminumPlate_C", + "amount": 5.0 + }, + { + "item": "Desc_CopperSheet_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_AluminumPlateReinforced_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_FusedModularFrame_C": { + "slug": "recipe-fusedmodularframe-c", + "name": "Fused Modular Frame", + "className": "Recipe_FusedModularFrame_C", + "alternate": false, + "time": 40.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 1.0 + }, + { + "item": "Desc_AluminumCasing_C", + "amount": 50.0 + }, + { + "item": "Desc_NitrogenGas_C", + "amount": 25.0 + } + ], + "products": [ + { + "item": "Desc_ModularFrameFused_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_Blender_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_FrackingExtractor_C": { + "slug": "recipe-frackingextractor-c", + "name": "Resource Well Extractor", + "className": "Recipe_FrackingExtractor_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlate_C", + "amount": 10.0 + }, + { + "item": "Desc_AluminumCasing_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_FrackingExtractor_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_FrackingSmasher_C": { + "slug": "recipe-frackingsmasher-c", + "name": "Resource Well Pressurizer", + "className": "Recipe_FrackingSmasher_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrameLightweight_C", + "amount": 10.0 + }, + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 25.0 + }, + { + "item": "Desc_Motor_C", + "amount": 50.0 + }, + { + "item": "Desc_AluminumPlate_C", + "amount": 50.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 100.0 + } + ], + "products": [ + { + "item": "Desc_FrackingSmasher_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_GasTank_C": { + "slug": "recipe-gastank-c", + "name": "Empty Fluid Tank", + "className": "Recipe_GasTank_C", + "alternate": false, + "time": 1.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_AluminumIngot_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_GasTank_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PackagedNitrogen_C": { + "slug": "recipe-packagednitrogen-c", + "name": "Packaged Nitrogen Gas", + "className": "Recipe_PackagedNitrogen_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_NitrogenGas_C", + "amount": 4.0 + }, + { + "item": "Desc_GasTank_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_PackagedNitrogenGas_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_UnpackageNitrogen_C": { + "slug": "recipe-unpackagenitrogen-c", + "name": "Unpackage Nitrogen Gas", + "className": "Recipe_UnpackageNitrogen_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_PackagedNitrogenGas_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_NitrogenGas_C", + "amount": 4.0 + }, + { + "item": "Desc_GasTank_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_Packager_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_InstantScrap_C": { + "slug": "recipe-alternate-instantscrap-c", + "name": "Alternate: Instant Scrap", + "className": "Recipe_Alternate_InstantScrap_C", + "alternate": true, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_OreBauxite_C", + "amount": 15.0 + }, + { + "item": "Desc_Coal_C", + "amount": 10.0 + }, + { + "item": "Desc_SulfuricAcid_C", + "amount": 5.0 + }, + { + "item": "Desc_Water_C", + "amount": 6.0 + } + ], + "products": [ + { + "item": "Desc_AluminumScrap_C", + "amount": 30.0 + }, + { + "item": "Desc_Water_C", + "amount": 5.0 + } + ], + "producedIn": [ + "Desc_Blender_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_InstantPlutoniumCell_C": { + "slug": "recipe-alternate-instantplutoniumcell-c", + "name": "Alternate: Instant Plutonium Cell", + "className": "Recipe_Alternate_InstantPlutoniumCell_C", + "alternate": true, + "time": 120.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_NonFissibleUranium_C", + "amount": 150.0 + }, + { + "item": "Desc_AluminumCasing_C", + "amount": 20.0 + } + ], + "products": [ + { + "item": "Desc_PlutoniumCell_C", + "amount": 20.0 + } + ], + "producedIn": [ + "Desc_HadronCollider_C" + ], + "isVariablePower": true, + "minPower": 250, + "maxPower": 750 + }, + "Recipe_Alternate_HeatFusedFrame_C": { + "slug": "recipe-alternate-heatfusedframe-c", + "name": "Alternate: Heat-Fused Frame", + "className": "Recipe_Alternate_HeatFusedFrame_C", + "alternate": true, + "time": 20.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 1.0 + }, + { + "item": "Desc_AluminumIngot_C", + "amount": 50.0 + }, + { + "item": "Desc_NitricAcid_C", + "amount": 8.0 + }, + { + "item": "Desc_LiquidFuel_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_ModularFrameFused_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_Blender_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_FertileUranium_C": { + "slug": "recipe-alternate-fertileuranium-c", + "name": "Alternate: Fertile Uranium", + "className": "Recipe_Alternate_FertileUranium_C", + "alternate": true, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_OreUranium_C", + "amount": 5.0 + }, + { + "item": "Desc_NuclearWaste_C", + "amount": 5.0 + }, + { + "item": "Desc_NitricAcid_C", + "amount": 3.0 + }, + { + "item": "Desc_SulfuricAcid_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_NonFissibleUranium_C", + "amount": 20.0 + }, + { + "item": "Desc_Water_C", + "amount": 8.0 + } + ], + "producedIn": [ + "Desc_Blender_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_ElectricMotor_C": { + "slug": "recipe-alternate-electricmotor-c", + "name": "Alternate: Electric Motor", + "className": "Recipe_Alternate_ElectricMotor_C", + "alternate": true, + "time": 16.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ElectromagneticControlRod_C", + "amount": 1.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Motor_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_DilutedFuel_C": { + "slug": "recipe-alternate-dilutedfuel-c", + "name": "Alternate: Diluted Fuel", + "className": "Recipe_Alternate_DilutedFuel_C", + "alternate": true, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HeavyOilResidue_C", + "amount": 5.0 + }, + { + "item": "Desc_Water_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_LiquidFuel_C", + "amount": 10.0 + } + ], + "producedIn": [ + "Desc_Blender_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_CoolingDevice_C": { + "slug": "recipe-alternate-coolingdevice-c", + "name": "Alternate: Cooling Device", + "className": "Recipe_Alternate_CoolingDevice_C", + "alternate": true, + "time": 24.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_AluminumPlateReinforced_C", + "amount": 4.0 + }, + { + "item": "Desc_Motor_C", + "amount": 1.0 + }, + { + "item": "Desc_NitrogenGas_C", + "amount": 24.0 + } + ], + "products": [ + { + "item": "Desc_CoolingSystem_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_Blender_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_ClassicBattery_C": { + "slug": "recipe-alternate-classicbattery-c", + "name": "Alternate: Classic Battery", + "className": "Recipe_Alternate_ClassicBattery_C", + "alternate": true, + "time": 8.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Sulfur_C", + "amount": 6.0 + }, + { + "item": "Desc_AluminumPlate_C", + "amount": 7.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 8.0 + }, + { + "item": "Desc_Wire_C", + "amount": 12.0 + } + ], + "products": [ + { + "item": "Desc_Battery_C", + "amount": 4.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_AutomatedMiner_C": { + "slug": "recipe-alternate-automatedminer-c", + "name": "Alternate: Automated Miner", + "className": "Recipe_Alternate_AutomatedMiner_C", + "alternate": true, + "time": 60.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPipe_C", + "amount": 4.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "BP_ItemDescriptorPortableMiner_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_AlcladCasing_C": { + "slug": "recipe-alternate-alcladcasing-c", + "name": "Alternate: Alclad Casing", + "className": "Recipe_Alternate_AlcladCasing_C", + "alternate": true, + "time": 8.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_AluminumIngot_C", + "amount": 20.0 + }, + { + "item": "Desc_CopperIngot_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_AluminumCasing_C", + "amount": 15.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_SteelPipe_Molded_C": { + "slug": "recipe-alternate-steelpipe-molded-c", + "name": "Alternate: Molded Steel Pipe", + "className": "Recipe_Alternate_SteelPipe_Molded_C", + "alternate": true, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 99.0, + "ingredients": [ + { + "item": "Desc_SteelIngot_C", + "amount": 5.0 + }, + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_SteelPipe_C", + "amount": 5.0 + } + ], + "producedIn": [ + "Desc_FoundryMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_SteelPipe_Iron_C": { + "slug": "recipe-alternate-steelpipe-iron-c", + "name": "Alternate: Iron Pipe", + "className": "Recipe_Alternate_SteelPipe_Iron_C", + "alternate": true, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 99.0, + "ingredients": [ + { + "item": "Desc_IronIngot_C", + "amount": 20.0 + } + ], + "products": [ + { + "item": "Desc_SteelPipe_C", + "amount": 5.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_SteelCastedPlate_C": { + "slug": "recipe-alternate-steelcastedplate-c", + "name": "Alternate: Steel Cast Plate", + "className": "Recipe_Alternate_SteelCastedPlate_C", + "alternate": true, + "time": 4.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 99.0, + "ingredients": [ + { + "item": "Desc_IronIngot_C", + "amount": 1.0 + }, + { + "item": "Desc_SteelIngot_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_IronPlate_C", + "amount": 3.0 + } + ], + "producedIn": [ + "Desc_FoundryMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_SteelBeam_Molded_C": { + "slug": "recipe-alternate-steelbeam-molded-c", + "name": "Alternate: Molded Beam", + "className": "Recipe_Alternate_SteelBeam_Molded_C", + "alternate": true, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 99.0, + "ingredients": [ + { + "item": "Desc_SteelIngot_C", + "amount": 24.0 + }, + { + "item": "Desc_Cement_C", + "amount": 16.0 + } + ], + "products": [ + { + "item": "Desc_SteelPlate_C", + "amount": 9.0 + } + ], + "producedIn": [ + "Desc_FoundryMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_SteelBeam_Aluminum_C": { + "slug": "recipe-alternate-steelbeam-aluminum-c", + "name": "Alternate: Aluminum Beam", + "className": "Recipe_Alternate_SteelBeam_Aluminum_C", + "alternate": true, + "time": 8.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 99.0, + "ingredients": [ + { + "item": "Desc_AluminumIngot_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_SteelPlate_C", + "amount": 3.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_AluminumRod_C": { + "slug": "recipe-alternate-aluminumrod-c", + "name": "Alternate: Aluminum Rod", + "className": "Recipe_Alternate_AluminumRod_C", + "alternate": true, + "time": 8.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 99.0, + "ingredients": [ + { + "item": "Desc_AluminumIngot_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_IronRod_C", + "amount": 7.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_AILimiter_Plastic_C": { + "slug": "recipe-alternate-ailimiter-plastic-c", + "name": "Alternate: Plastic AI Limiter", + "className": "Recipe_Alternate_AILimiter_Plastic_C", + "alternate": true, + "time": 15.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 99.0, + "ingredients": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 30.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 7.0 + } + ], + "products": [ + { + "item": "Desc_CircuitBoardHighSpeed_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Silica_Distilled_C": { + "slug": "recipe-alternate-silica-distilled-c", + "name": "Alternate: Distilled Silica", + "className": "Recipe_Alternate_Silica_Distilled_C", + "alternate": true, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 99.0, + "ingredients": [ + { + "item": "Desc_DissolvedSilica_C", + "amount": 12.0 + }, + { + "item": "Desc_Stone_C", + "amount": 5.0 + }, + { + "item": "Desc_Water_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_Silica_C", + "amount": 27.0 + }, + { + "item": "Desc_Water_C", + "amount": 8.0 + } + ], + "producedIn": [ + "Desc_Blender_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Quartz_Purified_C": { + "slug": "recipe-alternate-quartz-purified-c", + "name": "Alternate: Quartz Purification", + "className": "Recipe_Alternate_Quartz_Purified_C", + "alternate": true, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 99.0, + "ingredients": [ + { + "item": "Desc_RawQuartz_C", + "amount": 24.0 + }, + { + "item": "Desc_NitricAcid_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_QuartzCrystal_C", + "amount": 15.0 + }, + { + "item": "Desc_DissolvedSilica_C", + "amount": 12.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Quartz_Fused_C": { + "slug": "recipe-alternate-quartz-fused-c", + "name": "Alternate: Fused Quartz Crystal", + "className": "Recipe_Alternate_Quartz_Fused_C", + "alternate": true, + "time": 20.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 99.0, + "ingredients": [ + { + "item": "Desc_RawQuartz_C", + "amount": 25.0 + }, + { + "item": "Desc_Coal_C", + "amount": 12.0 + } + ], + "products": [ + { + "item": "Desc_QuartzCrystal_C", + "amount": 18.0 + } + ], + "producedIn": [ + "Desc_FoundryMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_IronIngot_Leached_C": { + "slug": "recipe-alternate-ironingot-leached-c", + "name": "Alternate: Leached Iron ingot", + "className": "Recipe_Alternate_IronIngot_Leached_C", + "alternate": true, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 99.0, + "ingredients": [ + { + "item": "Desc_OreIron_C", + "amount": 5.0 + }, + { + "item": "Desc_SulfuricAcid_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_IronIngot_C", + "amount": 10.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_IronIngot_Basic_C": { + "slug": "recipe-alternate-ironingot-basic-c", + "name": "Alternate: Basic Iron Ingot", + "className": "Recipe_Alternate_IronIngot_Basic_C", + "alternate": true, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 99.0, + "ingredients": [ + { + "item": "Desc_OreIron_C", + "amount": 5.0 + }, + { + "item": "Desc_Stone_C", + "amount": 8.0 + } + ], + "products": [ + { + "item": "Desc_IronIngot_C", + "amount": 10.0 + } + ], + "producedIn": [ + "Desc_FoundryMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_CopperIngot_Tempered_C": { + "slug": "recipe-alternate-copperingot-tempered-c", + "name": "Alternate: Tempered Copper Ingot", + "className": "Recipe_Alternate_CopperIngot_Tempered_C", + "alternate": true, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 99.0, + "ingredients": [ + { + "item": "Desc_OreCopper_C", + "amount": 5.0 + }, + { + "item": "Desc_PetroleumCoke_C", + "amount": 8.0 + } + ], + "products": [ + { + "item": "Desc_CopperIngot_C", + "amount": 12.0 + } + ], + "producedIn": [ + "Desc_FoundryMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_CopperIngot_Leached_C": { + "slug": "recipe-alternate-copperingot-leached-c", + "name": "Alternate: Leached Copper Ingot", + "className": "Recipe_Alternate_CopperIngot_Leached_C", + "alternate": true, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 99.0, + "ingredients": [ + { + "item": "Desc_OreCopper_C", + "amount": 9.0 + }, + { + "item": "Desc_SulfuricAcid_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_CopperIngot_C", + "amount": 22.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_CateriumIngot_Tempered_C": { + "slug": "recipe-alternate-cateriumingot-tempered-c", + "name": "Alternate: Tempered Caterium Ingot", + "className": "Recipe_Alternate_CateriumIngot_Tempered_C", + "alternate": true, + "time": 8.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 99.0, + "ingredients": [ + { + "item": "Desc_OreGold_C", + "amount": 6.0 + }, + { + "item": "Desc_PetroleumCoke_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_GoldIngot_C", + "amount": 3.0 + } + ], + "producedIn": [ + "Desc_FoundryMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_CateriumIngot_Leached_C": { + "slug": "recipe-alternate-cateriumingot-leached-c", + "name": "Alternate: Leached Caterium Ingot", + "className": "Recipe_Alternate_CateriumIngot_Leached_C", + "alternate": true, + "time": 10.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 99.0, + "ingredients": [ + { + "item": "Desc_OreGold_C", + "amount": 9.0 + }, + { + "item": "Desc_SulfuricAcid_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_GoldIngot_C", + "amount": 6.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Wire_2_C": { + "slug": "recipe-alternate-wire-2-c", + "name": "Alternate: Caterium Wire", + "className": "Recipe_Alternate_Wire_2_C", + "alternate": true, + "time": 4.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_GoldIngot_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_Wire_C", + "amount": 8.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Wire_1_C": { + "slug": "recipe-alternate-wire-1-c", + "name": "Alternate: Iron Wire", + "className": "Recipe_Alternate_Wire_1_C", + "alternate": true, + "time": 24.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronIngot_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Wire_C", + "amount": 9.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_UraniumCell_1_C": { + "slug": "recipe-alternate-uraniumcell-1-c", + "name": "Alternate: Infused Uranium Cell", + "className": "Recipe_Alternate_UraniumCell_1_C", + "alternate": true, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_OreUranium_C", + "amount": 5.0 + }, + { + "item": "Desc_Silica_C", + "amount": 3.0 + }, + { + "item": "Desc_Sulfur_C", + "amount": 5.0 + }, + { + "item": "Desc_HighSpeedWire_C", + "amount": 15.0 + } + ], + "products": [ + { + "item": "Desc_UraniumCell_C", + "amount": 4.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_DroneStation_C": { + "slug": "recipe-dronestation-c", + "name": "Drone Port", + "className": "Recipe_DroneStation_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 20.0 + }, + { + "item": "Desc_HighSpeedConnector_C", + "amount": 20.0 + }, + { + "item": "Desc_AluminumPlate_C", + "amount": 50.0 + }, + { + "item": "Desc_AluminumCasing_C", + "amount": 50.0 + }, + { + "item": "Desc_ModularFrameLightweight_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_DroneStation_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_DroneTransport_C": { + "slug": "recipe-dronetransport-c", + "name": "Drone", + "className": "Recipe_DroneTransport_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Motor_C", + "amount": 4.0 + }, + { + "item": "Desc_AluminumPlate_C", + "amount": 10.0 + }, + { + "item": "Desc_ModularFrameLightweight_C", + "amount": 1.0 + }, + { + "item": "Desc_CircuitBoardHighSpeed_C", + "amount": 2.0 + }, + { + "item": "BP_ItemDescriptorPortableMiner_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_DroneTransport_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_IngotCaterium_C": { + "slug": "recipe-ingotcaterium-c", + "name": "Caterium Ingot", + "className": "Recipe_IngotCaterium_C", + "alternate": false, + "time": 4.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 2.0, + "ingredients": [ + { + "item": "Desc_OreGold_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_GoldIngot_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_SmelterMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_TurboMotor_1_C": { + "slug": "recipe-alternate-turbomotor-1-c", + "name": "Alternate: Turbo Electric Motor", + "className": "Recipe_Alternate_TurboMotor_1_C", + "alternate": true, + "time": 64.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Motor_C", + "amount": 7.0 + }, + { + "item": "Desc_ModularFrameLightweight_C", + "amount": 9.0 + }, + { + "item": "Desc_ElectromagneticControlRod_C", + "amount": 5.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 7.0 + } + ], + "products": [ + { + "item": "Desc_MotorLightweight_C", + "amount": 3.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConveyorBeltMk5_C": { + "slug": "recipe-conveyorbeltmk5-c", + "name": "Conveyor Belt Mk.5", + "className": "Recipe_ConveyorBeltMk5_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_AluminumPlate_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_ConveyorBeltMk5_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConveyorLiftMk5_C": { + "slug": "recipe-conveyorliftmk5-c", + "name": "Conveyor Lift Mk.5", + "className": "Recipe_ConveyorLiftMk5_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_AluminumPlate_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_ConveyorLiftMk5_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_MinerMk3_C": { + "slug": "recipe-minermk3-c", + "name": "Miner Mk.3", + "className": "Recipe_MinerMk3_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "BP_ItemDescriptorPortableMiner_C", + "amount": 3.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 50.0 + }, + { + "item": "Desc_ComputerSuper_C", + "amount": 5.0 + }, + { + "item": "Desc_ModularFrameFused_C", + "amount": 10.0 + }, + { + "item": "Desc_MotorLightweight_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_MinerMk3_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_MotorTurbo_C": { + "slug": "recipe-motorturbo-c", + "name": "Turbo Motor", + "className": "Recipe_MotorTurbo_C", + "alternate": false, + "time": 32.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 2.0, + "ingredients": [ + { + "item": "Desc_CoolingSystem_C", + "amount": 4.0 + }, + { + "item": "Desc_ModularFrameLightweight_C", + "amount": 2.0 + }, + { + "item": "Desc_Motor_C", + "amount": 4.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 24.0 + } + ], + "products": [ + { + "item": "Desc_MotorLightweight_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SpaceElevatorPart_8_C": { + "slug": "recipe-spaceelevatorpart-8-c", + "name": "Thermal Propulsion Rocket", + "className": "Recipe_SpaceElevatorPart_8_C", + "alternate": false, + "time": 120.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SpaceElevatorPart_4_C", + "amount": 5.0 + }, + { + "item": "Desc_MotorLightweight_C", + "amount": 2.0 + }, + { + "item": "Desc_CoolingSystem_C", + "amount": 6.0 + }, + { + "item": "Desc_ModularFrameFused_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_SpaceElevatorPart_8_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Stator_C": { + "slug": "recipe-alternate-stator-c", + "name": "Alternate: Quickwire Stator", + "className": "Recipe_Alternate_Stator_C", + "alternate": true, + "time": 15.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPipe_C", + "amount": 4.0 + }, + { + "item": "Desc_HighSpeedWire_C", + "amount": 15.0 + } + ], + "products": [ + { + "item": "Desc_Stator_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Silica_C": { + "slug": "recipe-alternate-silica-c", + "name": "Alternate: Cheap Silica", + "className": "Recipe_Alternate_Silica_C", + "alternate": true, + "time": 8.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_RawQuartz_C", + "amount": 3.0 + }, + { + "item": "Desc_Stone_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Silica_C", + "amount": 7.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Screw_2_C": { + "slug": "recipe-alternate-screw-2-c", + "name": "Alternate: Steel Screw", + "className": "Recipe_Alternate_Screw_2_C", + "alternate": true, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlate_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_IronScrew_C", + "amount": 52.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Screw_C": { + "slug": "recipe-alternate-screw-c", + "name": "Alternate: Cast Screw", + "className": "Recipe_Alternate_Screw_C", + "alternate": true, + "time": 24.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronIngot_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_IronScrew_C", + "amount": 20.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Rotor_C": { + "slug": "recipe-alternate-rotor-c", + "name": "Alternate: Steel Rotor", + "className": "Recipe_Alternate_Rotor_C", + "alternate": true, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPipe_C", + "amount": 2.0 + }, + { + "item": "Desc_Wire_C", + "amount": 6.0 + } + ], + "products": [ + { + "item": "Desc_Rotor_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_EncasedIndustrialBeam_C": { + "slug": "recipe-alternate-encasedindustrialbeam-c", + "name": "Alternate: Encased Industrial Pipe", + "className": "Recipe_Alternate_EncasedIndustrialBeam_C", + "alternate": true, + "time": 15.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPipe_C", + "amount": 6.0 + }, + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_ReinforcedIronPlate_2_C": { + "slug": "recipe-alternate-reinforcedironplate-2-c", + "name": "Alternate: Stitched Iron Plate", + "className": "Recipe_Alternate_ReinforcedIronPlate_2_C", + "alternate": true, + "time": 32.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 10.0 + }, + { + "item": "Desc_Wire_C", + "amount": 20.0 + } + ], + "products": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 3.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_ReinforcedIronPlate_1_C": { + "slug": "recipe-alternate-reinforcedironplate-1-c", + "name": "Alternate: Bolted Iron Plate", + "className": "Recipe_Alternate_ReinforcedIronPlate_1_C", + "alternate": true, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 18.0 + }, + { + "item": "Desc_IronScrew_C", + "amount": 50.0 + } + ], + "products": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 3.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_RadioControlUnit_1_C": { + "slug": "recipe-alternate-radiocontrolunit-1-c", + "name": "Alternate: Radio Connection Unit", + "className": "Recipe_Alternate_RadioControlUnit_1_C", + "alternate": true, + "time": 16.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_AluminumPlateReinforced_C", + "amount": 4.0 + }, + { + "item": "Desc_HighSpeedConnector_C", + "amount": 2.0 + }, + { + "item": "Desc_QuartzCrystal_C", + "amount": 12.0 + } + ], + "products": [ + { + "item": "Desc_ModularFrameLightweight_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Quickwire_C": { + "slug": "recipe-alternate-quickwire-c", + "name": "Alternate: Fused Quickwire", + "className": "Recipe_Alternate_Quickwire_C", + "alternate": true, + "time": 8.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_GoldIngot_C", + "amount": 1.0 + }, + { + "item": "Desc_CopperIngot_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 12.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Plastic_1_C": { + "slug": "recipe-alternate-plastic-1-c", + "name": "Alternate: Recycled Plastic", + "className": "Recipe_Alternate_Plastic_1_C", + "alternate": true, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Rubber_C", + "amount": 6.0 + }, + { + "item": "Desc_LiquidFuel_C", + "amount": 6.0 + } + ], + "products": [ + { + "item": "Desc_Plastic_C", + "amount": 12.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_NuclearFuelRod_1_C": { + "slug": "recipe-alternate-nuclearfuelrod-1-c", + "name": "Alternate: Uranium Fuel Unit", + "className": "Recipe_Alternate_NuclearFuelRod_1_C", + "alternate": true, + "time": 300.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_UraniumCell_C", + "amount": 100.0 + }, + { + "item": "Desc_ElectromagneticControlRod_C", + "amount": 10.0 + }, + { + "item": "Desc_CrystalOscillator_C", + "amount": 3.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_NuclearFuelRod_C", + "amount": 3.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Motor_1_C": { + "slug": "recipe-alternate-motor-1-c", + "name": "Alternate: Rigor Motor", + "className": "Recipe_Alternate_Motor_1_C", + "alternate": true, + "time": 48.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Rotor_C", + "amount": 3.0 + }, + { + "item": "Desc_Stator_C", + "amount": 3.0 + }, + { + "item": "Desc_CrystalOscillator_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_Motor_C", + "amount": 6.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_ModularFrame_C": { + "slug": "recipe-alternate-modularframe-c", + "name": "Alternate: Steeled Frame", + "className": "Recipe_Alternate_ModularFrame_C", + "alternate": true, + "time": 60.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 2.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_ModularFrame_C", + "amount": 3.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_IngotSteel_2_C": { + "slug": "recipe-alternate-ingotsteel-2-c", + "name": "Alternate: Compacted Steel Ingot", + "className": "Recipe_Alternate_IngotSteel_2_C", + "alternate": true, + "time": 24.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_OreIron_C", + "amount": 2.0 + }, + { + "item": "Desc_CompactedCoal_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_SteelIngot_C", + "amount": 4.0 + } + ], + "producedIn": [ + "Desc_FoundryMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_IngotSteel_1_C": { + "slug": "recipe-alternate-ingotsteel-1-c", + "name": "Alternate: Solid Steel Ingot", + "className": "Recipe_Alternate_IngotSteel_1_C", + "alternate": true, + "time": 3.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronIngot_C", + "amount": 2.0 + }, + { + "item": "Desc_Coal_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_SteelIngot_C", + "amount": 3.0 + } + ], + "producedIn": [ + "Desc_FoundryMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_IngotIron_C": { + "slug": "recipe-alternate-ingotiron-c", + "name": "Alternate: Iron Alloy Ingot", + "className": "Recipe_Alternate_IngotIron_C", + "alternate": true, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_OreIron_C", + "amount": 8.0 + }, + { + "item": "Desc_OreCopper_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_IronIngot_C", + "amount": 15.0 + } + ], + "producedIn": [ + "Desc_FoundryMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_HighSpeedConnector_C": { + "slug": "recipe-alternate-highspeedconnector-c", + "name": "Alternate: Silicon High-Speed Connector", + "className": "Recipe_Alternate_HighSpeedConnector_C", + "alternate": true, + "time": 40.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 60.0 + }, + { + "item": "Desc_Silica_C", + "amount": 25.0 + }, + { + "item": "Desc_CircuitBoard_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_HighSpeedConnector_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_ModularFrameHeavy_C": { + "slug": "recipe-alternate-modularframeheavy-c", + "name": "Alternate: Heavy Encased Frame", + "className": "Recipe_Alternate_ModularFrameHeavy_C", + "alternate": true, + "time": 64.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrame_C", + "amount": 8.0 + }, + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 10.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 36.0 + }, + { + "item": "Desc_Cement_C", + "amount": 22.0 + } + ], + "products": [ + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 3.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_HeatSink_1_C": { + "slug": "recipe-alternate-heatsink-1-c", + "name": "Alternate: Heat Exchanger", + "className": "Recipe_Alternate_HeatSink_1_C", + "alternate": true, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_AluminumCasing_C", + "amount": 3.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_AluminumPlateReinforced_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Gunpowder_1_C": { + "slug": "recipe-alternate-gunpowder-1-c", + "name": "Alternate: Fine Black Powder", + "className": "Recipe_Alternate_Gunpowder_1_C", + "alternate": true, + "time": 8.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Sulfur_C", + "amount": 1.0 + }, + { + "item": "Desc_CompactedCoal_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Gunpowder_C", + "amount": 6.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_ElectromagneticControlRod_1_C": { + "slug": "recipe-alternate-electromagneticcontrolrod-1-c", + "name": "Alternate: Electromagnetic Connection Rod", + "className": "Recipe_Alternate_ElectromagneticControlRod_1_C", + "alternate": true, + "time": 15.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Stator_C", + "amount": 2.0 + }, + { + "item": "Desc_HighSpeedConnector_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_ElectromagneticControlRod_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_CrystalOscillator_C": { + "slug": "recipe-alternate-crystaloscillator-c", + "name": "Alternate: Insulated Crystal Oscillator", + "className": "Recipe_Alternate_CrystalOscillator_C", + "alternate": true, + "time": 32.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_QuartzCrystal_C", + "amount": 10.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 7.0 + }, + { + "item": "Desc_CircuitBoardHighSpeed_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_CrystalOscillator_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Concrete_C": { + "slug": "recipe-alternate-concrete-c", + "name": "Alternate: Fine Concrete", + "className": "Recipe_Alternate_Concrete_C", + "alternate": true, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Silica_C", + "amount": 3.0 + }, + { + "item": "Desc_Stone_C", + "amount": 12.0 + } + ], + "products": [ + { + "item": "Desc_Cement_C", + "amount": 10.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Computer_2_C": { + "slug": "recipe-alternate-computer-2-c", + "name": "Alternate: Crystal Computer", + "className": "Recipe_Alternate_Computer_2_C", + "alternate": true, + "time": 36.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CircuitBoard_C", + "amount": 3.0 + }, + { + "item": "Desc_CrystalOscillator_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_Computer_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Computer_1_C": { + "slug": "recipe-alternate-computer-1-c", + "name": "Alternate: Caterium Computer", + "className": "Recipe_Alternate_Computer_1_C", + "alternate": true, + "time": 16.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CircuitBoard_C", + "amount": 4.0 + }, + { + "item": "Desc_HighSpeedWire_C", + "amount": 14.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 6.0 + } + ], + "products": [ + { + "item": "Desc_Computer_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_CircuitBoard_2_C": { + "slug": "recipe-alternate-circuitboard-2-c", + "name": "Alternate: Caterium Circuit Board", + "className": "Recipe_Alternate_CircuitBoard_2_C", + "alternate": true, + "time": 48.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Plastic_C", + "amount": 10.0 + }, + { + "item": "Desc_HighSpeedWire_C", + "amount": 30.0 + } + ], + "products": [ + { + "item": "Desc_CircuitBoard_C", + "amount": 7.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_CircuitBoard_1_C": { + "slug": "recipe-alternate-circuitboard-1-c", + "name": "Alternate: Silicon Circuit Board", + "className": "Recipe_Alternate_CircuitBoard_1_C", + "alternate": true, + "time": 24.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CopperSheet_C", + "amount": 11.0 + }, + { + "item": "Desc_Silica_C", + "amount": 11.0 + } + ], + "products": [ + { + "item": "Desc_CircuitBoard_C", + "amount": 5.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Cable_2_C": { + "slug": "recipe-alternate-cable-2-c", + "name": "Alternate: Quickwire Cable", + "className": "Recipe_Alternate_Cable_2_C", + "alternate": true, + "time": 24.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 3.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Cable_C", + "amount": 11.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_Cable_1_C": { + "slug": "recipe-alternate-cable-1-c", + "name": "Alternate: Insulated Cable", + "className": "Recipe_Alternate_Cable_1_C", + "alternate": true, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Wire_C", + "amount": 9.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 6.0 + } + ], + "products": [ + { + "item": "Desc_Cable_C", + "amount": 20.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConveyorBeltMk6_C": { + "slug": "recipe-conveyorbeltmk6-c", + "name": "Conveyor Belt Mk.6", + "className": "Recipe_ConveyorBeltMk6_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_FicsiteMesh_C", + "amount": 1.0 + }, + { + "item": "Desc_TimeCrystal_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_ConveyorBeltMk6_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConveyorLiftMk6_C": { + "slug": "recipe-conveyorliftmk6-c", + "name": "Conveyor Lift Mk.6", + "className": "Recipe_ConveyorLiftMk6_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_FicsiteMesh_C", + "amount": 2.0 + }, + { + "item": "Desc_TimeCrystal_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_ConveyorLiftMk6_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ficsonium_C": { + "slug": "recipe-ficsonium-c", + "name": "Ficsonium", + "className": "Recipe_Ficsonium_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 0.0, + "ingredients": [ + { + "item": "Desc_PlutoniumWaste_C", + "amount": 1.0 + }, + { + "item": "Desc_SingularityCell_C", + "amount": 1.0 + }, + { + "item": "Desc_DarkEnergy_C", + "amount": 20.0 + } + ], + "products": [ + { + "item": "Desc_Ficsonium_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_HadronCollider_C" + ], + "isVariablePower": true, + "minPower": 500, + "maxPower": 1500 + }, + "Recipe_FicsoniumFuelRod_C": { + "slug": "recipe-ficsoniumfuelrod-c", + "name": "Ficsonium Fuel Rod", + "className": "Recipe_FicsoniumFuelRod_C", + "alternate": false, + "time": 24.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Ficsonium_C", + "amount": 2.0 + }, + { + "item": "Desc_ElectromagneticControlRod_C", + "amount": 2.0 + }, + { + "item": "Desc_FicsiteMesh_C", + "amount": 40.0 + }, + { + "item": "Desc_QuantumEnergy_C", + "amount": 20.0 + } + ], + "products": [ + { + "item": "Desc_FicsoniumFuelRod_C", + "amount": 1.0 + }, + { + "item": "Desc_DarkEnergy_C", + "amount": 20.0 + } + ], + "producedIn": [ + "Desc_QuantumEncoder_C" + ], + "isVariablePower": true, + "minPower": 0, + "maxPower": 2000 + }, + "Recipe_Portal_C": { + "slug": "recipe-portal-c", + "name": "Main Portal", + "className": "Recipe_Portal_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_MotorLightweight_C", + "amount": 5.0 + }, + { + "item": "Desc_ModularFrameLightweight_C", + "amount": 10.0 + }, + { + "item": "Desc_QuantumOscillator_C", + "amount": 15.0 + }, + { + "item": "Desc_SAMFluctuator_C", + "amount": 25.0 + }, + { + "item": "Desc_FicsiteMesh_C", + "amount": 50.0 + } + ], + "products": [ + { + "item": "Desc_Portal_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PortalSatellite_C": { + "slug": "recipe-portalsatellite-c", + "name": "Satellite Portal", + "className": "Recipe_PortalSatellite_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrameLightweight_C", + "amount": 5.0 + }, + { + "item": "Desc_QuantumOscillator_C", + "amount": 10.0 + }, + { + "item": "Desc_SAMFluctuator_C", + "amount": 25.0 + }, + { + "item": "Desc_FicsiteMesh_C", + "amount": 25.0 + } + ], + "products": [ + { + "item": "Desc_PortalSatellite_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SingularityCell_C": { + "slug": "recipe-singularitycell-c", + "name": "Singularity Cell", + "className": "Recipe_SingularityCell_C", + "alternate": false, + "time": 60.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SpaceElevatorPart_9_C", + "amount": 1.0 + }, + { + "item": "Desc_DarkMatter_C", + "amount": 20.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 100.0 + }, + { + "item": "Desc_Cement_C", + "amount": 200.0 + } + ], + "products": [ + { + "item": "Desc_SingularityCell_C", + "amount": 10.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": true, + "minPower": 0, + "maxPower": 0 + }, + "Recipe_SpaceElevatorPart_11_C": { + "slug": "recipe-spaceelevatorpart-11-c", + "name": "Ballistic Warp Drive", + "className": "Recipe_SpaceElevatorPart_11_C", + "alternate": false, + "time": 60.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SpaceElevatorPart_8_C", + "amount": 1.0 + }, + { + "item": "Desc_SingularityCell_C", + "amount": 5.0 + }, + { + "item": "Desc_QuantumOscillator_C", + "amount": 2.0 + }, + { + "item": "Desc_DarkMatter_C", + "amount": 40.0 + } + ], + "products": [ + { + "item": "Desc_SpaceElevatorPart_11_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": true, + "minPower": 500, + "maxPower": 1500 + }, + "Recipe_BlueprintDesigner_Mk3_C": { + "slug": "recipe-blueprintdesigner-mk3-c", + "name": "Blueprint Designer Mk.3", + "className": "Recipe_BlueprintDesigner_Mk3_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_TemporalProcessor_C", + "amount": 10.0 + }, + { + "item": "Desc_ModularFrameFused_C", + "amount": 20.0 + }, + { + "item": "Desc_TimeCrystal_C", + "amount": 50.0 + }, + { + "item": "Desc_FicsiteMesh_C", + "amount": 100.0 + } + ], + "products": [ + { + "item": "Desc_BlueprintDesigner_MK3_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Hoverpack_C": { + "slug": "recipe-hoverpack-c", + "name": "Hoverpack", + "className": "Recipe_Hoverpack_C", + "alternate": false, + "time": 120.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Motor_C", + "amount": 8.0 + }, + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 4.0 + }, + { + "item": "Desc_Computer_C", + "amount": 8.0 + }, + { + "item": "Desc_AluminumPlate_C", + "amount": 40.0 + } + ], + "products": [ + { + "item": "BP_EquipmentDescriptorHoverPack_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_FilterHazmat_C": { + "slug": "recipe-filterhazmat-c", + "name": "Iodine-Infused Filter", + "className": "Recipe_FilterHazmat_C", + "alternate": false, + "time": 16.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Filter_C", + "amount": 1.0 + }, + { + "item": "Desc_HighSpeedWire_C", + "amount": 8.0 + }, + { + "item": "Desc_AluminumCasing_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_HazmatFilter_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_HazmatSuit_C": { + "slug": "recipe-hazmatsuit-c", + "name": "Hazmat Suit", + "className": "Recipe_HazmatSuit_C", + "alternate": false, + "time": 120.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Rubber_C", + "amount": 50.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 50.0 + }, + { + "item": "Desc_AluminumPlate_C", + "amount": 50.0 + }, + { + "item": "Desc_Fabric_C", + "amount": 50.0 + } + ], + "products": [ + { + "item": "BP_EquipmentDescriptorHazmatSuit_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RailroadBlockSignal_C": { + "slug": "recipe-railroadblocksignal-c", + "name": "Block Signal", + "className": "Recipe_RailroadBlockSignal_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPipe_C", + "amount": 2.0 + }, + { + "item": "Desc_Computer_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_RailroadBlockSignal_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RailroadPathSignal_C": { + "slug": "recipe-railroadpathsignal-c", + "name": "Path Signal", + "className": "Recipe_RailroadPathSignal_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPipe_C", + "amount": 2.0 + }, + { + "item": "Desc_Computer_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_RailroadPathSignal_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_BlueprintDesigner_Mk2_C": { + "slug": "recipe-blueprintdesigner-mk2-c", + "name": "Blueprint Designer Mk.2", + "className": "Recipe_BlueprintDesigner_Mk2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 10.0 + }, + { + "item": "Desc_Computer_C", + "amount": 20.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 100.0 + }, + { + "item": "Desc_Cement_C", + "amount": 100.0 + } + ], + "products": [ + { + "item": "Desc_BlueprintDesigner_MK2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PipelineMK2_C": { + "slug": "recipe-pipelinemk2-c", + "name": "Pipeline Mk.2", + "className": "Recipe_PipelineMK2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CopperSheet_C", + "amount": 2.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_PipelineMK2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PipelinePumpMK2_C": { + "slug": "recipe-pipelinepumpmk2-c", + "name": "Pipeline Pump Mk.2", + "className": "Recipe_PipelinePumpMK2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 1.0 + }, + { + "item": "Desc_Motor_C", + "amount": 2.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_PipelinePumpMk2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_TrainDockingStation_C": { + "slug": "recipe-traindockingstation-c", + "name": "Freight Platform", + "className": "Recipe_TrainDockingStation_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Motor_C", + "amount": 5.0 + }, + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 10.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 25.0 + }, + { + "item": "Desc_Cement_C", + "amount": 50.0 + }, + { + "item": "Desc_Wire_C", + "amount": 100.0 + } + ], + "products": [ + { + "item": "Desc_TrainDockingStation_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_TrainDockingStationLiquid_C": { + "slug": "recipe-traindockingstationliquid-c", + "name": "Fluid Freight Platform", + "className": "Recipe_TrainDockingStationLiquid_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Motor_C", + "amount": 5.0 + }, + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 10.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 25.0 + }, + { + "item": "Desc_Cement_C", + "amount": 50.0 + }, + { + "item": "Desc_Wire_C", + "amount": 100.0 + } + ], + "products": [ + { + "item": "Desc_TrainDockingStationLiquid_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_TrainPlatformEmpty_C": { + "slug": "recipe-trainplatformempty-c", + "name": "Empty Platform", + "className": "Recipe_TrainPlatformEmpty_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 10.0 + }, + { + "item": "Desc_Cement_C", + "amount": 50.0 + } + ], + "products": [ + { + "item": "Desc_TrainPlatformEmpty_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_TrainPlatformEmpty_02_C": { + "slug": "recipe-trainplatformempty-02-c", + "name": "Empty Platform With Catwalk", + "className": "Recipe_TrainPlatformEmpty_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 10.0 + }, + { + "item": "Desc_Cement_C", + "amount": 50.0 + } + ], + "products": [ + { + "item": "Desc_TrainPlatformEmpty_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_TrainStation_C": { + "slug": "recipe-trainstation-c", + "name": "Train Station", + "className": "Recipe_TrainStation_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 10.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 50.0 + }, + { + "item": "Desc_Cement_C", + "amount": 50.0 + }, + { + "item": "Desc_Wire_C", + "amount": 200.0 + } + ], + "products": [ + { + "item": "Desc_TrainStation_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RailroadTrack_C": { + "slug": "recipe-railroadtrack-c", + "name": "Railway", + "className": "Recipe_RailroadTrack_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPipe_C", + "amount": 1.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_RailroadTrack_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_FreightWagon_C": { + "slug": "recipe-freightwagon-c", + "name": "Freight Car", + "className": "Recipe_FreightWagon_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrame_C", + "amount": 5.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 10.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_FreightWagon_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Locomotive_C": { + "slug": "recipe-locomotive-c", + "name": "Electric Locomotive", + "className": "Recipe_Locomotive_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrame_C", + "amount": 5.0 + }, + { + "item": "Desc_Motor_C", + "amount": 10.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 20.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 20.0 + }, + { + "item": "Desc_Wire_C", + "amount": 50.0 + } + ], + "products": [ + { + "item": "Desc_Locomotive_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_JetPack_C": { + "slug": "recipe-jetpack-c", + "name": "Jetpack", + "className": "Recipe_JetPack_C", + "alternate": false, + "time": 60.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Motor_C", + "amount": 5.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 10.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 25.0 + }, + { + "item": "Desc_Wire_C", + "amount": 50.0 + } + ], + "products": [ + { + "item": "BP_EquipmentDescriptorJetPack_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConveyorBeltMk4_C": { + "slug": "recipe-conveyorbeltmk4-c", + "name": "Conveyor Belt Mk.4", + "className": "Recipe_ConveyorBeltMk4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_ConveyorBeltMk4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConveyorLiftMk4_C": { + "slug": "recipe-conveyorliftmk4-c", + "name": "Conveyor Lift Mk.4", + "className": "Recipe_ConveyorLiftMk4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_ConveyorLiftMk4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Truck_C": { + "slug": "recipe-truck-c", + "name": "Truck", + "className": "Recipe_Truck_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Motor_C", + "amount": 15.0 + }, + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 20.0 + }, + { + "item": "Desc_ModularFrame_C", + "amount": 20.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 50.0 + } + ], + "products": [ + { + "item": "Desc_Truck_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_GeneratorFuel_C": { + "slug": "recipe-generatorfuel-c", + "name": "Fuel-Powered Generator", + "className": "Recipe_GeneratorFuel_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Motor_C", + "amount": 15.0 + }, + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 15.0 + }, + { + "item": "Desc_CopperSheet_C", + "amount": 30.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 50.0 + }, + { + "item": "Desc_HighSpeedWire_C", + "amount": 50.0 + } + ], + "products": [ + { + "item": "Desc_GeneratorFuel_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_IndustrialTank_C": { + "slug": "recipe-industrialtank-c", + "name": "Industrial Fluid Buffer", + "className": "Recipe_IndustrialTank_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 5.0 + }, + { + "item": "Desc_CopperSheet_C", + "amount": 10.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 25.0 + } + ], + "products": [ + { + "item": "Desc_IndustrialTank_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Quickwire_C": { + "slug": "recipe-quickwire-c", + "name": "Quickwire", + "className": "Recipe_Quickwire_C", + "alternate": false, + "time": 5.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 2.0, + "ingredients": [ + { + "item": "Desc_GoldIngot_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 5.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConveyorBeltMk3_C": { + "slug": "recipe-conveyorbeltmk3-c", + "name": "Conveyor Belt Mk.3", + "className": "Recipe_ConveyorBeltMk3_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlate_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_ConveyorBeltMk3_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConveyorLiftMk3_C": { + "slug": "recipe-conveyorliftmk3-c", + "name": "Conveyor Lift Mk.3", + "className": "Recipe_ConveyorLiftMk3_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlate_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_ConveyorLiftMk3_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PipeSupportStackable_C": { + "slug": "recipe-pipesupportstackable-c", + "name": "Stackable Pipeline Support", + "className": "Recipe_PipeSupportStackable_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 4.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 2.0 + }, + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_PipeSupportStackable_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_StorageContainerMk2_C": { + "slug": "recipe-storagecontainermk2-c", + "name": "Industrial Storage Container", + "className": "Recipe_StorageContainerMk2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlate_C", + "amount": 20.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 20.0 + } + ], + "products": [ + { + "item": "Desc_StorageContainerMk2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_BlueprintDesigner_C": { + "slug": "recipe-blueprintdesigner-c", + "name": "Blueprint Designer Mk.1", + "className": "Recipe_BlueprintDesigner_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrame_C", + "amount": 15.0 + }, + { + "item": "Desc_Cable_C", + "amount": 25.0 + }, + { + "item": "Desc_Cement_C", + "amount": 100.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 100.0 + } + ], + "products": [ + { + "item": "Desc_BlueprintDesigner_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PipeHyperStart_C": { + "slug": "recipe-pipehyperstart-c", + "name": "Hypertube Entrance", + "className": "Recipe_PipeHyperStart_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 4.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 4.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_PipeHyperStart_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_HyperPoleStackable_C": { + "slug": "recipe-hyperpolestackable-c", + "name": "Stackable Hypertube Support", + "className": "Recipe_HyperPoleStackable_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 4.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 2.0 + }, + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_HyperPoleStackable_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_HyperTubeWallSupport_C": { + "slug": "recipe-hypertubewallsupport-c", + "name": "Hypertube Wall Support", + "className": "Recipe_HyperTubeWallSupport_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 2.0 + }, + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_HyperTubeWallSupport_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PipeHyperSupport_C": { + "slug": "recipe-pipehypersupport-c", + "name": "Hypertube Support", + "className": "Recipe_PipeHyperSupport_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 2.0 + }, + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_PipeHyperSupport_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PipeHyper_C": { + "slug": "recipe-pipehyper-c", + "name": "Hypertube", + "className": "Recipe_PipeHyper_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CopperSheet_C", + "amount": 1.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_PipeHyper_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PowerStorageMk1_C": { + "slug": "recipe-powerstoragemk1-c", + "name": "Power Storage", + "className": "Recipe_PowerStorageMk1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 5.0 + }, + { + "item": "Desc_ModularFrame_C", + "amount": 10.0 + }, + { + "item": "Desc_Wire_C", + "amount": 100.0 + } + ], + "products": [ + { + "item": "Desc_PowerStorageMk1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PowerTower_C": { + "slug": "recipe-powertower-c", + "name": "Power Tower", + "className": "Recipe_PowerTower_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 10.0 + }, + { + "item": "Desc_Wire_C", + "amount": 20.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 20.0 + } + ], + "products": [ + { + "item": "Desc_PowerTower_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PowerTowerPlatform_C": { + "slug": "recipe-powertowerplatform-c", + "name": "Power Tower Platform", + "className": "Recipe_PowerTowerPlatform_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 10.0 + }, + { + "item": "Desc_Wire_C", + "amount": 20.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 20.0 + } + ], + "products": [ + { + "item": "Desc_PowerTowerPlatform_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_XenoBasher_C": { + "slug": "recipe-xenobasher-c", + "name": "Xeno-Basher", + "className": "Recipe_XenoBasher_C", + "alternate": false, + "time": 80.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "BP_EquipmentDescriptorShockShank_C", + "amount": 2.0 + }, + { + "item": "Desc_ModularFrame_C", + "amount": 5.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 25.0 + }, + { + "item": "Desc_Wire_C", + "amount": 500.0 + } + ], + "products": [ + { + "item": "BP_EquipmentDescriptorStunSpear_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_TruckStation_C": { + "slug": "recipe-truckstation-c", + "name": "Truck Station", + "className": "Recipe_TruckStation_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrame_C", + "amount": 15.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 20.0 + }, + { + "item": "Desc_Cable_C", + "amount": 50.0 + } + ], + "products": [ + { + "item": "Desc_TruckStation_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Tractor_C": { + "slug": "recipe-tractor-c", + "name": "Tractor", + "className": "Recipe_Tractor_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrame_C", + "amount": 5.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 5.0 + }, + { + "item": "Desc_IronPlateReinforced_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_Tractor_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConveyorBeltMk2_C": { + "slug": "recipe-conveyorbeltmk2-c", + "name": "Conveyor Belt Mk.2", + "className": "Recipe_ConveyorBeltMk2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_ConveyorBeltMk2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConveyorLiftMk2_C": { + "slug": "recipe-conveyorliftmk2-c", + "name": "Conveyor Lift Mk.2", + "className": "Recipe_ConveyorLiftMk2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_ConveyorLiftMk2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConveyorPoleStackable_C": { + "slug": "recipe-conveyorpolestackable-c", + "name": "Stackable Conveyor Pole", + "className": "Recipe_ConveyorPoleStackable_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 2.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 2.0 + }, + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_ConveyorPoleStackable_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_JumpPadAdjustable_C": { + "slug": "recipe-jumppadadjustable-c", + "name": "Jump Pad", + "className": "Recipe_JumpPadAdjustable_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Rotor_C", + "amount": 2.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 15.0 + }, + { + "item": "Desc_Cable_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_JumpPadAdjustable_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_UJellyLandingPad_C": { + "slug": "recipe-ujellylandingpad-c", + "name": "U-Jelly Landing Pad", + "className": "Recipe_UJellyLandingPad_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Rotor_C", + "amount": 2.0 + }, + { + "item": "Desc_Cable_C", + "amount": 20.0 + }, + { + "item": "Desc_GenericBiomass_C", + "amount": 200.0 + } + ], + "products": [ + { + "item": "Desc_LandingPad_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Biofuel_C": { + "slug": "recipe-biofuel-c", + "name": "Solid Biofuel", + "className": "Recipe_Biofuel_C", + "alternate": false, + "time": 4.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 5.0, + "ingredients": [ + { + "item": "Desc_GenericBiomass_C", + "amount": 8.0 + } + ], + "products": [ + { + "item": "Desc_Biofuel_C", + "amount": 4.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Chainsaw_C": { + "slug": "recipe-chainsaw-c", + "name": "Chainsaw", + "className": "Recipe_Chainsaw_C", + "alternate": false, + "time": 60.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 5.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 25.0 + }, + { + "item": "Desc_IronScrew_C", + "amount": 160.0 + }, + { + "item": "Desc_Cable_C", + "amount": 15.0 + } + ], + "products": [ + { + "item": "Desc_Chainsaw_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Protein_Hog_C": { + "slug": "recipe-protein-hog-c", + "name": "Hog Protein", + "className": "Recipe_Protein_Hog_C", + "alternate": false, + "time": 3.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.333333, + "ingredients": [ + { + "item": "Desc_HogParts_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_AlienProtein_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Protein_Spitter_C": { + "slug": "recipe-protein-spitter-c", + "name": "Spitter Protein", + "className": "Recipe_Protein_Spitter_C", + "alternate": false, + "time": 3.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.333333, + "ingredients": [ + { + "item": "Desc_SpitterParts_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_AlienProtein_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Biomass_Mycelia_C": { + "slug": "recipe-biomass-mycelia-c", + "name": "Biomass (Mycelia)", + "className": "Recipe_Biomass_Mycelia_C", + "alternate": false, + "time": 4.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 0.5, + "ingredients": [ + { + "item": "Desc_Mycelia_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_GenericBiomass_C", + "amount": 10.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PowerCrystalShard_1_C": { + "slug": "recipe-powercrystalshard-1-c", + "name": "Power Shard (1)", + "className": "Recipe_PowerCrystalShard_1_C", + "alternate": false, + "time": 8.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Crystal_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_CrystalShard_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Gunpowder_C": { + "slug": "recipe-gunpowder-c", + "name": "Black Powder", + "className": "Recipe_Gunpowder_C", + "alternate": false, + "time": 4.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": true, + "manualTimeMultiplier": 2.0, + "ingredients": [ + { + "item": "Desc_Coal_C", + "amount": 1.0 + }, + { + "item": "Desc_Sulfur_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_Gunpowder_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_AlienPowerFuel_C": { + "slug": "recipe-alienpowerfuel-c", + "name": "Alien Power Matrix", + "className": "Recipe_AlienPowerFuel_C", + "alternate": false, + "time": 24.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SAMFluctuator_C", + "amount": 5.0 + }, + { + "item": "Desc_CrystalShard_C", + "amount": 3.0 + }, + { + "item": "Desc_QuantumOscillator_C", + "amount": 3.0 + }, + { + "item": "Desc_QuantumEnergy_C", + "amount": 24.0 + } + ], + "products": [ + { + "item": "Desc_AlienPowerFuel_C", + "amount": 1.0 + }, + { + "item": "Desc_DarkEnergy_C", + "amount": 24.0 + } + ], + "producedIn": [ + "Desc_QuantumEncoder_C" + ], + "isVariablePower": true, + "minPower": 0, + "maxPower": 2000 + }, + "Recipe_Mam_C": { + "slug": "recipe-mam-c", + "name": "MAM", + "className": "Recipe_Mam_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 5.0 + }, + { + "item": "Desc_Cable_C", + "amount": 15.0 + }, + { + "item": "Desc_Wire_C", + "amount": 45.0 + } + ], + "products": [ + { + "item": "Desc_Mam_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_StoragePlayer_C": { + "slug": "recipe-storageplayer-c", + "name": "Personal Storage Box", + "className": "Recipe_StoragePlayer_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 6.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 6.0 + } + ], + "products": [ + { + "item": "Desc_StoragePlayer_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ObjectScanner_C": { + "slug": "recipe-objectscanner-c", + "name": "Object Scanner", + "className": "Recipe_ObjectScanner_C", + "alternate": false, + "time": 40.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 4.0 + }, + { + "item": "Desc_Wire_C", + "amount": 20.0 + }, + { + "item": "Desc_IronScrew_C", + "amount": 50.0 + } + ], + "products": [ + { + "item": "BP_EquipmentDescriptorObjectScanner_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConveyorAttachmentMerger_C": { + "slug": "recipe-conveyorattachmentmerger-c", + "name": "Conveyor Merger", + "className": "Recipe_ConveyorAttachmentMerger_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 2.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_ConveyorAttachmentMerger_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConveyorAttachmentSplitter_C": { + "slug": "recipe-conveyorattachmentsplitter-c", + "name": "Conveyor Splitter", + "className": "Recipe_ConveyorAttachmentSplitter_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 2.0 + }, + { + "item": "Desc_Cable_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_ConveyorAttachmentSplitter_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConveyorLiftMk1_C": { + "slug": "recipe-conveyorliftmk1-c", + "name": "Conveyor Lift Mk.1", + "className": "Recipe_ConveyorLiftMk1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_ConveyorLiftMk1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddle_Ficsit_4x1_C": { + "slug": "recipe-quarterpipemiddle-ficsit-4x1-c", + "name": "Half Foundation (1 m)", + "className": "Recipe_QuarterPipeMiddle_Ficsit_4x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddle_Ficsit_4x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddle_Ficsit_4x2_C": { + "slug": "recipe-quarterpipemiddle-ficsit-4x2-c", + "name": "Half Foundation (2 m)", + "className": "Recipe_QuarterPipeMiddle_Ficsit_4x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddle_Ficsit_4x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddle_Ficsit_4x4_C": { + "slug": "recipe-quarterpipemiddle-ficsit-4x4-c", + "name": "Half Foundation (4 m)", + "className": "Recipe_QuarterPipeMiddle_Ficsit_4x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddle_Ficsit_4x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleInCorner_Ficsit_8x1_C": { + "slug": "recipe-quarterpipemiddleincorner-ficsit-8x1-c", + "name": "Inner Corner Extension (1 m)", + "className": "Recipe_QuarterPipeMiddleInCorner_Ficsit_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleInCorner_Ficsit_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleInCorner_Ficsit_8x2_C": { + "slug": "recipe-quarterpipemiddleincorner-ficsit-8x2-c", + "name": "Inner Corner Extension (2 m)", + "className": "Recipe_QuarterPipeMiddleInCorner_Ficsit_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleInCorner_Ficsit_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleInCorner_Ficsit_8x4_C": { + "slug": "recipe-quarterpipemiddleincorner-ficsit-8x4-c", + "name": "Inner Corner Extension (4 m)", + "className": "Recipe_QuarterPipeMiddleInCorner_Ficsit_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleInCorner_Ficsit_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleOutCorner_Ficsit_4x1_C": { + "slug": "recipe-quarterpipemiddleoutcorner-ficsit-4x1-c", + "name": "Outer Corner Extension (1 m)", + "className": "Recipe_QuarterPipeMiddleOutCorner_Ficsit_4x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleOutCorner_Ficsit_4x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleOutCorner_Ficsit_4x2_C": { + "slug": "recipe-quarterpipemiddleoutcorner-ficsit-4x2-c", + "name": "Outer Corner Extension (2 m)", + "className": "Recipe_QuarterPipeMiddleOutCorner_Ficsit_4x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleOutCorner_Ficsit_4x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleOutCorner_Ficsit_4x4_C": { + "slug": "recipe-quarterpipemiddleoutcorner-ficsit-4x4-c", + "name": "Outer Corner Extension (4 m)", + "className": "Recipe_QuarterPipeMiddleOutCorner_Ficsit_4x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleOutCorner_Ficsit_4x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Stair_FicsitSet_8x1_01_C": { + "slug": "recipe-stair-ficsitset-8x1-01-c", + "name": "Foundation Stairs (1 m)", + "className": "Recipe_Stair_FicsitSet_8x1_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Stair_FicsitSet_8x1_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Stair_FicsitSet_8x2_01_C": { + "slug": "recipe-stair-ficsitset-8x2-01-c", + "name": "Foundation Stairs (2 m)", + "className": "Recipe_Stair_FicsitSet_8x2_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Stair_FicsitSet_8x2_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Stair_FicsitSet_8x4_01_C": { + "slug": "recipe-stair-ficsitset-8x4-01-c", + "name": "Foundation Stairs (4 m)", + "className": "Recipe_Stair_FicsitSet_8x4_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Stair_FicsitSet_8x4_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Foundation_8x1_01_C": { + "slug": "recipe-foundation-8x1-01-c", + "name": "Foundation (1 m)", + "className": "Recipe_Foundation_8x1_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Foundation_8x1_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Foundation_8x2_01_C": { + "slug": "recipe-foundation-8x2-01-c", + "name": "Foundation (2 m)", + "className": "Recipe_Foundation_8x2_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Foundation_8x2_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Foundation_8x4_01_C": { + "slug": "recipe-foundation-8x4-01-c", + "name": "Foundation (4 m)", + "className": "Recipe_Foundation_8x4_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Foundation_8x4_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipe_C": { + "slug": "recipe-quarterpipe-c", + "name": "Quarter Pipe", + "className": "Recipe_QuarterPipe_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipe_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipe_02_C": { + "slug": "recipe-quarterpipe-02-c", + "name": "Inverted Quarter Pipe", + "className": "Recipe_QuarterPipe_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipe_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeCorner_01_C": { + "slug": "recipe-quarterpipecorner-01-c", + "name": "Inner Corner Quarter Pipe", + "className": "Recipe_QuarterPipeCorner_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeCorner_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeCorner_02_C": { + "slug": "recipe-quarterpipecorner-02-c", + "name": "Inverted Inner Corner Quarter Pipe", + "className": "Recipe_QuarterPipeCorner_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeCorner_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeCorner_03_C": { + "slug": "recipe-quarterpipecorner-03-c", + "name": "Outer Corner Quarter Pipe", + "className": "Recipe_QuarterPipeCorner_03_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeCorner_03_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeCorner_04_C": { + "slug": "recipe-quarterpipecorner-04-c", + "name": "Inverted Outer Corner Quarter Pipe", + "className": "Recipe_QuarterPipeCorner_04_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeCorner_04_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_8x1_01_C": { + "slug": "recipe-ramp-8x1-01-c", + "name": "Ramp (1 m)", + "className": "Recipe_Ramp_8x1_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_8x1_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_8x2_01_C": { + "slug": "recipe-ramp-8x2-01-c", + "name": "Ramp (2 m)", + "className": "Recipe_Ramp_8x2_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_8x2_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_8x4_01_C": { + "slug": "recipe-ramp-8x4-01-c", + "name": "Ramp (4 m)", + "className": "Recipe_Ramp_8x4_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_8x4_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_8x4_Inverted_01_C": { + "slug": "recipe-ramp-8x4-inverted-01-c", + "name": "Inverted Ramp (4 m)", + "className": "Recipe_Ramp_8x4_Inverted_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_8x4_Inverted_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_8x8x8_C": { + "slug": "recipe-ramp-8x8x8-c", + "name": "Double Ramp (8 m)", + "className": "Recipe_Ramp_8x8x8_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_8x8x8_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Diagonal_8x1_01_C": { + "slug": "recipe-ramp-diagonal-8x1-01-c", + "name": "Down Corner Ramp (1 m)", + "className": "Recipe_Ramp_Diagonal_8x1_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Diagonal_8x1_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Diagonal_8x1_02_C": { + "slug": "recipe-ramp-diagonal-8x1-02-c", + "name": "Up Corner Ramp (1 m)", + "className": "Recipe_Ramp_Diagonal_8x1_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Diagonal_8x1_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Diagonal_8x2_01_C": { + "slug": "recipe-ramp-diagonal-8x2-01-c", + "name": "Down Corner Ramp (2 m)", + "className": "Recipe_Ramp_Diagonal_8x2_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Diagonal_8x2_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Diagonal_8x2_02_C": { + "slug": "recipe-ramp-diagonal-8x2-02-c", + "name": "Up Corner Ramp (2 m)", + "className": "Recipe_Ramp_Diagonal_8x2_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Diagonal_8x2_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Diagonal_8x4_01_C": { + "slug": "recipe-ramp-diagonal-8x4-01-c", + "name": "Down Corner Ramp (4 m)", + "className": "Recipe_Ramp_Diagonal_8x4_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Diagonal_8x4_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Diagonal_8x4_02_C": { + "slug": "recipe-ramp-diagonal-8x4-02-c", + "name": "Up Corner Ramp (4 m)", + "className": "Recipe_Ramp_Diagonal_8x4_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Diagonal_8x4_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampDouble_C": { + "slug": "recipe-rampdouble-c", + "name": "Double Ramp (4 m)", + "className": "Recipe_RampDouble_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampDouble_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampDouble_8x1_C": { + "slug": "recipe-rampdouble-8x1-c", + "name": "Double Ramp (2 m)", + "className": "Recipe_RampDouble_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampDouble_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampInverted_8x1_C": { + "slug": "recipe-rampinverted-8x1-c", + "name": "Inverted Ramp (1 m)", + "className": "Recipe_RampInverted_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampInverted_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampInverted_8x1_Corner_01_C": { + "slug": "recipe-rampinverted-8x1-corner-01-c", + "name": "Inverted Up Corner (1 m)", + "className": "Recipe_RampInverted_8x1_Corner_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampInverted_8x1_Corner_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampInverted_8x1_Corner_02_C": { + "slug": "recipe-rampinverted-8x1-corner-02-c", + "name": "Inverted Down Corner (1 m)", + "className": "Recipe_RampInverted_8x1_Corner_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampInverted_8x1_Corner_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampInverted_8x2_01_C": { + "slug": "recipe-rampinverted-8x2-01-c", + "name": "Inverted Ramp (2 m)", + "className": "Recipe_RampInverted_8x2_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampInverted_8x2_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampInverted_8x2_Corner_01_C": { + "slug": "recipe-rampinverted-8x2-corner-01-c", + "name": "Inverted Up Corner (2 m)", + "className": "Recipe_RampInverted_8x2_Corner_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampInverted_8x2_Corner_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampInverted_8x2_Corner_02_C": { + "slug": "recipe-rampinverted-8x2-corner-02-c", + "name": "Inverted Down Corner (2 m)", + "className": "Recipe_RampInverted_8x2_Corner_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampInverted_8x2_Corner_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampInverted_8x4_Corner_01_C": { + "slug": "recipe-rampinverted-8x4-corner-01-c", + "name": "Inverted Up Corner (4 m)", + "className": "Recipe_RampInverted_8x4_Corner_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampInverted_8x4_Corner_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampInverted_8x4_Corner_02_C": { + "slug": "recipe-rampinverted-8x4-corner-02-c", + "name": "Inverted Down Corner (4 m)", + "className": "Recipe_RampInverted_8x4_Corner_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampInverted_8x4_Corner_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_LookoutTower_C": { + "slug": "recipe-lookouttower-c", + "name": "Lookout Tower", + "className": "Recipe_LookoutTower_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 5.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_LookoutTower_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_DownQuarterPipe_Concrete_8x4_C": { + "slug": "recipe-downquarterpipe-concrete-8x4-c", + "name": "Inverted Quarter Pipe", + "className": "Recipe_DownQuarterPipe_Concrete_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_DownQuarterPipe_Concrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_DownQuarterPipe_ConcreteInCorner_8x4_C": { + "slug": "recipe-downquarterpipe-concreteincorner-8x4-c", + "name": "Inverted Inner Corner Quarter Pipe", + "className": "Recipe_DownQuarterPipe_ConcreteInCorner_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_DownQuarterPipeInCorner_Concrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_DownQuarterPipe_ConcreteOutCorner_8x4_C": { + "slug": "recipe-downquarterpipe-concreteoutcorner-8x4-c", + "name": "Inverted Outer Corner Quarter Pipe", + "className": "Recipe_DownQuarterPipe_ConcreteOutCorner_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_DownQuarterPipeOutCorner_Concrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Foundation_Concrete_8x1_C": { + "slug": "recipe-foundation-concrete-8x1-c", + "name": "Foundation (1 m)", + "className": "Recipe_Foundation_Concrete_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Foundation_Concrete_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Foundation_Concrete_8x2_C": { + "slug": "recipe-foundation-concrete-8x2-c", + "name": "Foundation (2 m)", + "className": "Recipe_Foundation_Concrete_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Foundation_Concrete_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Foundation_Concrete_8x4_C": { + "slug": "recipe-foundation-concrete-8x4-c", + "name": "Foundation (4 m)", + "className": "Recipe_Foundation_Concrete_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Foundation_Concrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_Concrete_8x1_C": { + "slug": "recipe-invertedramp-concrete-8x1-c", + "name": "Inverted Ramp (1 m)", + "className": "Recipe_InvertedRamp_Concrete_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_Concrete_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_Concrete_8x2_C": { + "slug": "recipe-invertedramp-concrete-8x2-c", + "name": "Inverted Ramp (2 m)", + "className": "Recipe_InvertedRamp_Concrete_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_Concrete_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_Concrete_8x4_C": { + "slug": "recipe-invertedramp-concrete-8x4-c", + "name": "Inverted Ramp (4 m)", + "className": "Recipe_InvertedRamp_Concrete_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_Concrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_DCorner_Concrete_8x1_C": { + "slug": "recipe-invertedramp-dcorner-concrete-8x1-c", + "name": "Inverted Down Corner (1 m)", + "className": "Recipe_InvertedRamp_DCorner_Concrete_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_DCorner_Concrete_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_DCorner_Concrete_8x2_C": { + "slug": "recipe-invertedramp-dcorner-concrete-8x2-c", + "name": "Inverted Down Corner (2 m)", + "className": "Recipe_InvertedRamp_DCorner_Concrete_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_DCorner_Concrete_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_DCorner_Concrete_8x4_C": { + "slug": "recipe-invertedramp-dcorner-concrete-8x4-c", + "name": "Inverted Down Corner (4 m)", + "className": "Recipe_InvertedRamp_DCorner_Concrete_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_DCorner_Concrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_UCorner_Concrete_8x1_C": { + "slug": "recipe-invertedramp-ucorner-concrete-8x1-c", + "name": "Inverted Up Corner (1 m)", + "className": "Recipe_InvertedRamp_UCorner_Concrete_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_UCorner_Concrete_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_UCorner_Concrete_8x2_C": { + "slug": "recipe-invertedramp-ucorner-concrete-8x2-c", + "name": "Inverted Up Corner (2 m)", + "className": "Recipe_InvertedRamp_UCorner_Concrete_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_UCorner_Concrete_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_UCorner_Concrete_8x4_C": { + "slug": "recipe-invertedramp-ucorner-concrete-8x4-c", + "name": "Inverted Up Corner (4 m)", + "className": "Recipe_InvertedRamp_UCorner_Concrete_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_UCorner_Concrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipe_Concrete_8x4_C": { + "slug": "recipe-quarterpipe-concrete-8x4-c", + "name": "Quarter Pipe", + "className": "Recipe_QuarterPipe_Concrete_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipe_Concrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeInCorner_Concrete_8x4_C": { + "slug": "recipe-quarterpipeincorner-concrete-8x4-c", + "name": "Inner Corner Quarter Pipe", + "className": "Recipe_QuarterPipeInCorner_Concrete_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeInCorner_Concrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddle_Concrete_8x1_C": { + "slug": "recipe-quarterpipemiddle-concrete-8x1-c", + "name": "Half Foundation (1 m)", + "className": "Recipe_QuarterPipeMiddle_Concrete_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddle_Concrete_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddle_Concrete_8x2_C": { + "slug": "recipe-quarterpipemiddle-concrete-8x2-c", + "name": "Half Foundation (2 m)", + "className": "Recipe_QuarterPipeMiddle_Concrete_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddle_Concrete_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddle_Concrete_8x4_C": { + "slug": "recipe-quarterpipemiddle-concrete-8x4-c", + "name": "Half Foundation (4 m)", + "className": "Recipe_QuarterPipeMiddle_Concrete_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddle_Concrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleInCorner_Concrete_8x1_C": { + "slug": "recipe-quarterpipemiddleincorner-concrete-8x1-c", + "name": "Inner Corner Extension (1 m)", + "className": "Recipe_QuarterPipeMiddleInCorner_Concrete_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleInCorner_Concrete_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleInCorner_Concrete_8x2_C": { + "slug": "recipe-quarterpipemiddleincorner-concrete-8x2-c", + "name": "Inner Corner Extension (2 m)", + "className": "Recipe_QuarterPipeMiddleInCorner_Concrete_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleInCorner_Concrete_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleInCorner_Concrete_8x4_C": { + "slug": "recipe-quarterpipemiddleincorner-concrete-8x4-c", + "name": "Inner Corner Extension (4 m)", + "className": "Recipe_QuarterPipeMiddleInCorner_Concrete_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleInCorner_Concrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleOutCorner_Concrete_4x1_C": { + "slug": "recipe-quarterpipemiddleoutcorner-concrete-4x1-c", + "name": "Outer Corner Extension (1 m)", + "className": "Recipe_QuarterPipeMiddleOutCorner_Concrete_4x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleOutCorner_Concrete_4x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleOutCorner_Concrete_4x2_C": { + "slug": "recipe-quarterpipemiddleoutcorner-concrete-4x2-c", + "name": "Outer Corner Extension (2 m)", + "className": "Recipe_QuarterPipeMiddleOutCorner_Concrete_4x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleOutCorner_Concrete_4x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleOutCorner_Concrete_4x4_C": { + "slug": "recipe-quarterpipemiddleoutcorner-concrete-4x4-c", + "name": "Outer Corner Extension (4 m)", + "className": "Recipe_QuarterPipeMiddleOutCorner_Concrete_4x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleOutCorner_Concrete_4x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeOutCorner_Concrete_8x4_C": { + "slug": "recipe-quarterpipeoutcorner-concrete-8x4-c", + "name": "Outer Corner Quarter Pipe", + "className": "Recipe_QuarterPipeOutCorner_Concrete_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeOutCorner_Concrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Concrete_8x1_C": { + "slug": "recipe-ramp-concrete-8x1-c", + "name": "Ramp (1 m)", + "className": "Recipe_Ramp_Concrete_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Concrete_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Concrete_8x2_C": { + "slug": "recipe-ramp-concrete-8x2-c", + "name": "Ramp (2 m)", + "className": "Recipe_Ramp_Concrete_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Concrete_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Concrete_8x4_C": { + "slug": "recipe-ramp-concrete-8x4-c", + "name": "Ramp (4 m)", + "className": "Recipe_Ramp_Concrete_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Concrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_DownCorner_Concrete_8x1_C": { + "slug": "recipe-ramp-downcorner-concrete-8x1-c", + "name": "Down Corner Ramp (1 m)", + "className": "Recipe_Ramp_DownCorner_Concrete_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_DownCorner_Concrete_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_DownCorner_Concrete_8x2_C": { + "slug": "recipe-ramp-downcorner-concrete-8x2-c", + "name": "Down Corner Ramp (2 m)", + "className": "Recipe_Ramp_DownCorner_Concrete_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_DownCorner_Concrete_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_DownCorner_Concrete_8x4_C": { + "slug": "recipe-ramp-downcorner-concrete-8x4-c", + "name": "Down Corner Ramp (4 m)", + "className": "Recipe_Ramp_DownCorner_Concrete_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_DownCorner_Concrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_UpCorner_Concrete_8x1_C": { + "slug": "recipe-ramp-upcorner-concrete-8x1-c", + "name": "Up Corner Ramp (1 m)", + "className": "Recipe_Ramp_UpCorner_Concrete_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_UpCorner_Concrete_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_UpCorner_Concrete_8x2_C": { + "slug": "recipe-ramp-upcorner-concrete-8x2-c", + "name": "Up Corner Ramp (2 m)", + "className": "Recipe_Ramp_UpCorner_Concrete_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_UpCorner_Concrete_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_UpCorner_Concrete_8x4_C": { + "slug": "recipe-ramp-upcorner-concrete-8x4-c", + "name": "Up Corner Ramp (4 m)", + "className": "Recipe_Ramp_UpCorner_Concrete_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_UpCorner_Concrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampDouble_Concrete_8x1_C": { + "slug": "recipe-rampdouble-concrete-8x1-c", + "name": "Double Ramp (2 m)", + "className": "Recipe_RampDouble_Concrete_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampDouble_Concrete_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampDouble_Concrete_8x2_C": { + "slug": "recipe-rampdouble-concrete-8x2-c", + "name": "Double Ramp (4 m)", + "className": "Recipe_RampDouble_Concrete_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampDouble_Concrete_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampDouble_Concrete_8x4_C": { + "slug": "recipe-rampdouble-concrete-8x4-c", + "name": "Double Ramp (8 m)", + "className": "Recipe_RampDouble_Concrete_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampDouble_Concrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Stair_Concrete_8x1_C": { + "slug": "recipe-stair-concrete-8x1-c", + "name": "Foundation Stairs (1 m)", + "className": "Recipe_Stair_Concrete_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Stair_Concrete_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Stair_Concrete_8x2_C": { + "slug": "recipe-stair-concrete-8x2-c", + "name": "Foundation Stairs (2 m)", + "className": "Recipe_Stair_Concrete_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Stair_Concrete_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Stair_Concrete_8x4_C": { + "slug": "recipe-stair-concrete-8x4-c", + "name": "Foundation Stairs (4 m)", + "className": "Recipe_Stair_Concrete_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Stair_Concrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_DownQuarterPipe_Grip_8x4_C": { + "slug": "recipe-downquarterpipe-grip-8x4-c", + "name": "Inverted Quarter Pipe", + "className": "Recipe_DownQuarterPipe_Grip_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_DownQuarterPipe_Grip_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_DownQuarterPipe_GripInCorner_8x4_C": { + "slug": "recipe-downquarterpipe-gripincorner-8x4-c", + "name": "Inverted Inner Corner Quarter Pipe", + "className": "Recipe_DownQuarterPipe_GripInCorner_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_DownQuarterPipeInCorner_Grip_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_DownQuarterPipe_GripOutCorner_8x4_C": { + "slug": "recipe-downquarterpipe-gripoutcorner-8x4-c", + "name": "Inverted Outer Corner Quarter Pipe", + "className": "Recipe_DownQuarterPipe_GripOutCorner_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_DownQuarterPipeOutCorner_Grip_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Foundation_Metal_8x1_C": { + "slug": "recipe-foundation-metal-8x1-c", + "name": "Foundation (1 m)", + "className": "Recipe_Foundation_Metal_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Foundation_Metal_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Foundation_Metal_8x2_C": { + "slug": "recipe-foundation-metal-8x2-c", + "name": "Foundation (2 m)", + "className": "Recipe_Foundation_Metal_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Foundation_Metal_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Foundation_Metal_8x4_C": { + "slug": "recipe-foundation-metal-8x4-c", + "name": "Foundation (4 m)", + "className": "Recipe_Foundation_Metal_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Foundation_Metal_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_DCorner_Metal_8x1_C": { + "slug": "recipe-invertedramp-dcorner-metal-8x1-c", + "name": "Inverted Down Corner (1 m)", + "className": "Recipe_InvertedRamp_DCorner_Metal_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_DCorner_Metal_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_DCorner_Metal_8x2_C": { + "slug": "recipe-invertedramp-dcorner-metal-8x2-c", + "name": "Inverted Down Corner (2 m)", + "className": "Recipe_InvertedRamp_DCorner_Metal_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_DCorner_Metal_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_DCorner_Metal_8x4_C": { + "slug": "recipe-invertedramp-dcorner-metal-8x4-c", + "name": "Inverted Down Corner (4 m)", + "className": "Recipe_InvertedRamp_DCorner_Metal_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_DCorner_Metal_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_Metal_8x1_C": { + "slug": "recipe-invertedramp-metal-8x1-c", + "name": "Inverted Ramp (1 m)", + "className": "Recipe_InvertedRamp_Metal_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_Metal_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_Metal_8x2_C": { + "slug": "recipe-invertedramp-metal-8x2-c", + "name": "Inverted Ramp (2 m)", + "className": "Recipe_InvertedRamp_Metal_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_Metal_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_Metal_8x4_C": { + "slug": "recipe-invertedramp-metal-8x4-c", + "name": "Inverted Ramp (4 m)", + "className": "Recipe_InvertedRamp_Metal_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_Metal_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_UCorner_Metal_8x1_C": { + "slug": "recipe-invertedramp-ucorner-metal-8x1-c", + "name": "Inverted Up Corner (1 m)", + "className": "Recipe_InvertedRamp_UCorner_Metal_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_UCorner_Metal_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_UCorner_Metal_8x2_C": { + "slug": "recipe-invertedramp-ucorner-metal-8x2-c", + "name": "Inverted Up Corner (2 m)", + "className": "Recipe_InvertedRamp_UCorner_Metal_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_UCorner_Metal_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_UCorner_Metal_8x4_C": { + "slug": "recipe-invertedramp-ucorner-metal-8x4-c", + "name": "Inverted Up Corner (4 m)", + "className": "Recipe_InvertedRamp_UCorner_Metal_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_UCorner_Metal_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipe_Grip_8x4_C": { + "slug": "recipe-quarterpipe-grip-8x4-c", + "name": "Quarter Pipe", + "className": "Recipe_QuarterPipe_Grip_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipe_Grip_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeInCorner_Grip_8x4_C": { + "slug": "recipe-quarterpipeincorner-grip-8x4-c", + "name": "Inner Corner Quarter Pipe", + "className": "Recipe_QuarterPipeInCorner_Grip_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeInCorner_Grip_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddle_Grip_8x1_C": { + "slug": "recipe-quarterpipemiddle-grip-8x1-c", + "name": "Half Foundation (1 m)", + "className": "Recipe_QuarterPipeMiddle_Grip_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddle_Grip_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddle_Grip_8x2_C": { + "slug": "recipe-quarterpipemiddle-grip-8x2-c", + "name": "Half Foundation (2 m)", + "className": "Recipe_QuarterPipeMiddle_Grip_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddle_Grip_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddle_Grip_8x4_C": { + "slug": "recipe-quarterpipemiddle-grip-8x4-c", + "name": "Half Foundation (4 m)", + "className": "Recipe_QuarterPipeMiddle_Grip_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddle_Grip_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleInCorner_Grip_8x1_C": { + "slug": "recipe-quarterpipemiddleincorner-grip-8x1-c", + "name": "Inner Corner Extension (1 m)", + "className": "Recipe_QuarterPipeMiddleInCorner_Grip_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleInCorner_Grip_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleInCorner_Grip_8x2_C": { + "slug": "recipe-quarterpipemiddleincorner-grip-8x2-c", + "name": "Inner Corner Extension (2 m)", + "className": "Recipe_QuarterPipeMiddleInCorner_Grip_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleInCorner_Grip_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleInCorner_Grip_8x4_C": { + "slug": "recipe-quarterpipemiddleincorner-grip-8x4-c", + "name": "Inner Corner Extension (4 m)", + "className": "Recipe_QuarterPipeMiddleInCorner_Grip_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleInCorner_Grip_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleOutCorner_Grip_4x1_C": { + "slug": "recipe-quarterpipemiddleoutcorner-grip-4x1-c", + "name": "Outer Corner Extension (1 m)", + "className": "Recipe_QuarterPipeMiddleOutCorner_Grip_4x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleOutCorner_Grip_4x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleOutCorner_Grip_4x2_C": { + "slug": "recipe-quarterpipemiddleoutcorner-grip-4x2-c", + "name": "Outer Corner Extension (2 m)", + "className": "Recipe_QuarterPipeMiddleOutCorner_Grip_4x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleOutCorner_Grip_4x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleOutCorner_Grip_4x4_C": { + "slug": "recipe-quarterpipemiddleoutcorner-grip-4x4-c", + "name": "Outer Corner Extension (4 m)", + "className": "Recipe_QuarterPipeMiddleOutCorner_Grip_4x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleOutCorner_Grip_4x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeOutCorner_Grip_8x4_C": { + "slug": "recipe-quarterpipeoutcorner-grip-8x4-c", + "name": "Outer Corner Quarter Pipe", + "className": "Recipe_QuarterPipeOutCorner_Grip_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeOutCorner_Grip_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_DownCorner_Metal_8x1_C": { + "slug": "recipe-ramp-downcorner-metal-8x1-c", + "name": "Down Corner Ramp (1 m)", + "className": "Recipe_Ramp_DownCorner_Metal_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_DownCorner_Metal_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_DownCorner_Metal_8x2_C": { + "slug": "recipe-ramp-downcorner-metal-8x2-c", + "name": "Down Corner Ramp (2 m)", + "className": "Recipe_Ramp_DownCorner_Metal_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_DownCorner_Metal_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_DownCorner_Metal_8x4_C": { + "slug": "recipe-ramp-downcorner-metal-8x4-c", + "name": "Down Corner Ramp (4 m)", + "className": "Recipe_Ramp_DownCorner_Metal_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_DownCorner_Metal_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Metal_8x1_C": { + "slug": "recipe-ramp-metal-8x1-c", + "name": "Ramp (1 m)", + "className": "Recipe_Ramp_Metal_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Metal_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Metal_8x2_C": { + "slug": "recipe-ramp-metal-8x2-c", + "name": "Ramp (2 m)", + "className": "Recipe_Ramp_Metal_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Metal_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Metal_8x4_C": { + "slug": "recipe-ramp-metal-8x4-c", + "name": "Ramp (4 m)", + "className": "Recipe_Ramp_Metal_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Metal_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_UpCorner_Metal_8x1_C": { + "slug": "recipe-ramp-upcorner-metal-8x1-c", + "name": "Up Corner Ramp (1 m)", + "className": "Recipe_Ramp_UpCorner_Metal_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_UpCorner_Metal_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_UpCorner_Metal_8x2_C": { + "slug": "recipe-ramp-upcorner-metal-8x2-c", + "name": "Up Corner Ramp (2 m)", + "className": "Recipe_Ramp_UpCorner_Metal_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_UpCorner_Metal_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_UpCorner_Metal_8x4_C": { + "slug": "recipe-ramp-upcorner-metal-8x4-c", + "name": "Up Corner Ramp (4 m)", + "className": "Recipe_Ramp_UpCorner_Metal_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_UpCorner_Metal_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampDouble_Metal_8x1_C": { + "slug": "recipe-rampdouble-metal-8x1-c", + "name": "Double Ramp (2 m)", + "className": "Recipe_RampDouble_Metal_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampDouble_Metal_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampDouble_Metal_8x2_C": { + "slug": "recipe-rampdouble-metal-8x2-c", + "name": "Double Ramp (4 m)", + "className": "Recipe_RampDouble_Metal_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampDouble_Metal_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampDouble_Metal_8x4_C": { + "slug": "recipe-rampdouble-metal-8x4-c", + "name": "Double Ramp (8 m)", + "className": "Recipe_RampDouble_Metal_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampDouble_Metal_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Stair_GripMetal_8x1_C": { + "slug": "recipe-stair-gripmetal-8x1-c", + "name": "Foundation Stairs (1 m)", + "className": "Recipe_Stair_GripMetal_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Stair_GripMetal_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Stair_GripMetal_8x2_C": { + "slug": "recipe-stair-gripmetal-8x2-c", + "name": "Foundation Stairs (2 m)", + "className": "Recipe_Stair_GripMetal_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Stair_GripMetal_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Stair_GripMetal_8x4_C": { + "slug": "recipe-stair-gripmetal-8x4-c", + "name": "Foundation Stairs (4 m)", + "className": "Recipe_Stair_GripMetal_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Stair_GripMetal_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_DownQuarterPipe_ConcretePolished_8x4_C": { + "slug": "recipe-downquarterpipe-concretepolished-8x4-c", + "name": "Inverted Quarter Pipe", + "className": "Recipe_DownQuarterPipe_ConcretePolished_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_DownQuarterPipe_ConcretePolished_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_DownQuarterPipe_ConcretePolishedInCorner_8x4_C": { + "slug": "recipe-downquarterpipe-concretepolishedincorner-8x4-c", + "name": "Inverted Inner Corner Quarter Pipe", + "className": "Recipe_DownQuarterPipe_ConcretePolishedInCorner_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_DownQuarterPipeInCorner_ConcretePolished_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_DownQuarterPipe_ConcretePolishedOutCorner_8x4_C": { + "slug": "recipe-downquarterpipe-concretepolishedoutcorner-8x4-c", + "name": "Inverted Outer Corner Quarter Pipe", + "className": "Recipe_DownQuarterPipe_ConcretePolishedOutCorner_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_DownQuarterPipeOutCorner_ConcretePolished_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Foundation_ConcretePolished_8x1_C": { + "slug": "recipe-foundation-concretepolished-8x1-c", + "name": "Foundation (1 m)", + "className": "Recipe_Foundation_ConcretePolished_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Foundation_ConcretePolished_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_DCorner_Polished_8x1_C": { + "slug": "recipe-invertedramp-dcorner-polished-8x1-c", + "name": "Inverted Down Corner (1 m)", + "className": "Recipe_InvertedRamp_DCorner_Polished_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_DCorner_Polished_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_DCorner_Polished_8x2_C": { + "slug": "recipe-invertedramp-dcorner-polished-8x2-c", + "name": "Inverted Down Corner (2 m)", + "className": "Recipe_InvertedRamp_DCorner_Polished_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_DCorner_Polished_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_DCorner_Polished_8x4_C": { + "slug": "recipe-invertedramp-dcorner-polished-8x4-c", + "name": "Inverted Down Corner (4 m)", + "className": "Recipe_InvertedRamp_DCorner_Polished_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_DCorner_Polished_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_Polished_8x1_C": { + "slug": "recipe-invertedramp-polished-8x1-c", + "name": "Inverted Ramp (1 m)", + "className": "Recipe_InvertedRamp_Polished_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_Polished_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_Polished_8x2_C": { + "slug": "recipe-invertedramp-polished-8x2-c", + "name": "Inverted Ramp (2 m)", + "className": "Recipe_InvertedRamp_Polished_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_Polished_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_Polished_8x4_C": { + "slug": "recipe-invertedramp-polished-8x4-c", + "name": "Inverted Ramp (4 m)", + "className": "Recipe_InvertedRamp_Polished_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_Polished_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_UCorner_Polished_8x1_C": { + "slug": "recipe-invertedramp-ucorner-polished-8x1-c", + "name": "Inverted Up Corner (1 m)", + "className": "Recipe_InvertedRamp_UCorner_Polished_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_UCorner_Polished_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_UCorner_Polished_8x2_C": { + "slug": "recipe-invertedramp-ucorner-polished-8x2-c", + "name": "Inverted Up Corner (2 m)", + "className": "Recipe_InvertedRamp_UCorner_Polished_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_UCorner_Polished_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_UCorner_Polished_8x4_C": { + "slug": "recipe-invertedramp-ucorner-polished-8x4-c", + "name": "Inverted Up Corner (4 m)", + "className": "Recipe_InvertedRamp_UCorner_Polished_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_UCorner_Polished_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipe_ConcretePolished_8x4_C": { + "slug": "recipe-quarterpipe-concretepolished-8x4-c", + "name": "Quarter Pipe", + "className": "Recipe_QuarterPipe_ConcretePolished_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipe_ConcretePolished_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeInCorner_ConcretePolished_8x4_C": { + "slug": "recipe-quarterpipeincorner-concretepolished-8x4-c", + "name": "Inner Corner Quarter Pipe", + "className": "Recipe_QuarterPipeInCorner_ConcretePolished_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeInCorner_ConcretePolished_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddle_PolishedConcrete_8x1_C": { + "slug": "recipe-quarterpipemiddle-polishedconcrete-8x1-c", + "name": "Half Foundation (1 m)", + "className": "Recipe_QuarterPipeMiddle_PolishedConcrete_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddle_PolishedConcrete_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddle_PolishedConcrete_8x2_C": { + "slug": "recipe-quarterpipemiddle-polishedconcrete-8x2-c", + "name": "Half Foundation (2 m)", + "className": "Recipe_QuarterPipeMiddle_PolishedConcrete_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddle_PolishedConcrete_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddle_PolishedConcrete_8x4_C": { + "slug": "recipe-quarterpipemiddle-polishedconcrete-8x4-c", + "name": "Half Foundation (4 m)", + "className": "Recipe_QuarterPipeMiddle_PolishedConcrete_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddle_PolishedConcrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleInCorner_PolishedConcrete_8x1_C": { + "slug": "recipe-quarterpipemiddleincorner-polishedconcrete-8x1-c", + "name": "Inner Corner Extension (1 m)", + "className": "Recipe_QuarterPipeMiddleInCorner_PolishedConcrete_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleInCorner_PolishedConcrete_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleInCorner_PolishedConcrete_8x2_C": { + "slug": "recipe-quarterpipemiddleincorner-polishedconcrete-8x2-c", + "name": "Inner Corner Extension (2 m)", + "className": "Recipe_QuarterPipeMiddleInCorner_PolishedConcrete_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleInCorner_PolishedConcrete_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleInCorner_PolishedConcrete_8x4_C": { + "slug": "recipe-quarterpipemiddleincorner-polishedconcrete-8x4-c", + "name": "Inner Corner Extension (4 m)", + "className": "Recipe_QuarterPipeMiddleInCorner_PolishedConcrete_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleInCorner_PolishedConcrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleOutCorner_PolishedConcrete_4x1_C": { + "slug": "recipe-quarterpipemiddleoutcorner-polishedconcrete-4x1-c", + "name": "Outer Corner Extension (1 m)", + "className": "Recipe_QuarterPipeMiddleOutCorner_PolishedConcrete_4x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleOutCorner_PolishedConcrete_4x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleOutCorner_PolishedConcrete_4x2_C": { + "slug": "recipe-quarterpipemiddleoutcorner-polishedconcrete-4x2-c", + "name": "Outer Corner Extension (2 m)", + "className": "Recipe_QuarterPipeMiddleOutCorner_PolishedConcrete_4x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleOutCorner_PolishedConcrete_4x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleOutCorner_PolishedConcrete_4x4_C": { + "slug": "recipe-quarterpipemiddleoutcorner-polishedconcrete-4x4-c", + "name": "Outer Corner Extension (4 m)", + "className": "Recipe_QuarterPipeMiddleOutCorner_PolishedConcrete_4x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleOutCorner_PolishedConcrete_4x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeOutCorner_ConcretePolished_8x4_C": { + "slug": "recipe-quarterpipeoutcorner-concretepolished-8x4-c", + "name": "Outer Corner Quarter Pipe", + "className": "Recipe_QuarterPipeOutCorner_ConcretePolished_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeOutCorner_ConcretePolished_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_DownCorner_Polished_8x1_C": { + "slug": "recipe-ramp-downcorner-polished-8x1-c", + "name": "Down Corner Ramp (1 m)", + "className": "Recipe_Ramp_DownCorner_Polished_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_DownCorner_Polished_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_DownCorner_Polished_8x2_C": { + "slug": "recipe-ramp-downcorner-polished-8x2-c", + "name": "Down Corner Ramp (2 m)", + "className": "Recipe_Ramp_DownCorner_Polished_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_DownCorner_Polished_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_DownCorner_Polished_8x4_C": { + "slug": "recipe-ramp-downcorner-polished-8x4-c", + "name": "Down Corner Ramp (4 m)", + "className": "Recipe_Ramp_DownCorner_Polished_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_DownCorner_Polished_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Polished_8x1_C": { + "slug": "recipe-ramp-polished-8x1-c", + "name": "Ramp (1 m)", + "className": "Recipe_Ramp_Polished_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Polished_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Polished_8x2_C": { + "slug": "recipe-ramp-polished-8x2-c", + "name": "Ramp (2 m)", + "className": "Recipe_Ramp_Polished_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Polished_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Polished_8x4_C": { + "slug": "recipe-ramp-polished-8x4-c", + "name": "Ramp (4 m)", + "className": "Recipe_Ramp_Polished_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Polished_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_UpCorner_Polished_8x1_C": { + "slug": "recipe-ramp-upcorner-polished-8x1-c", + "name": "Up Corner Ramp (1 m)", + "className": "Recipe_Ramp_UpCorner_Polished_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_UpCorner_Polished_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_UpCorner_Polished_8x2_C": { + "slug": "recipe-ramp-upcorner-polished-8x2-c", + "name": "Up Corner Ramp (2 m)", + "className": "Recipe_Ramp_UpCorner_Polished_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_UpCorner_Polished_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_UpCorner_Polished_8x4_C": { + "slug": "recipe-ramp-upcorner-polished-8x4-c", + "name": "Up Corner Ramp (4 m)", + "className": "Recipe_Ramp_UpCorner_Polished_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_UpCorner_Polished_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampDouble_Polished_8x1_C": { + "slug": "recipe-rampdouble-polished-8x1-c", + "name": "Double Ramp (2 m)", + "className": "Recipe_RampDouble_Polished_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampDouble_Polished_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampDouble_Polished_8x2_C": { + "slug": "recipe-rampdouble-polished-8x2-c", + "name": "Double Ramp (4 m)", + "className": "Recipe_RampDouble_Polished_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampDouble_Polished_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampDouble_Polished_8x4_C": { + "slug": "recipe-rampdouble-polished-8x4-c", + "name": "Double Ramp (8 m)", + "className": "Recipe_RampDouble_Polished_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampDouble_Polished_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Stair_PolishedConcrete_8x1_C": { + "slug": "recipe-stair-polishedconcrete-8x1-c", + "name": "Foundation Stairs (1 m)", + "className": "Recipe_Stair_PolishedConcrete_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Stair_PolishedConcrete_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Stair_PolishedConcrete_8x2_C": { + "slug": "recipe-stair-polishedconcrete-8x2-c", + "name": "Foundation Stairs (2 m)", + "className": "Recipe_Stair_PolishedConcrete_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Stair_PolishedConcrete_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Stair_PolishedConcrete_8x4_C": { + "slug": "recipe-stair-polishedconcrete-8x4-c", + "name": "Foundation Stairs (4 m)", + "className": "Recipe_Stair_PolishedConcrete_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Stair_PolishedConcrete_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_DownQuarterPipe_Asphalt_8x4_C": { + "slug": "recipe-downquarterpipe-asphalt-8x4-c", + "name": "Inverted Quarter Pipe", + "className": "Recipe_DownQuarterPipe_Asphalt_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_DownQuarterPipe_Asphalt_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_DownQuarterPipe_AsphaltInCorner_8x4_C": { + "slug": "recipe-downquarterpipe-asphaltincorner-8x4-c", + "name": "Inverted Inner Corner Quarter Pipe", + "className": "Recipe_DownQuarterPipe_AsphaltInCorner_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_DownQuarterPipeInCorner_Asphalt_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_DownQuarterPipe_AsphaltOutCorner_8x4_C": { + "slug": "recipe-downquarterpipe-asphaltoutcorner-8x4-c", + "name": "Inverted Outer Corner Quarter Pipe", + "className": "Recipe_DownQuarterPipe_AsphaltOutCorner_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_DownQuarterPipeOutCorner_Asphalt_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Foundation_Asphalt_8x1_C": { + "slug": "recipe-foundation-asphalt-8x1-c", + "name": "Foundation (1 m)", + "className": "Recipe_Foundation_Asphalt_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Foundation_Asphalt_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Foundation_Asphalt_8x2_C": { + "slug": "recipe-foundation-asphalt-8x2-c", + "name": "Foundation (2 m)", + "className": "Recipe_Foundation_Asphalt_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Foundation_Asphalt_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Foundation_Asphalt_8x4_C": { + "slug": "recipe-foundation-asphalt-8x4-c", + "name": "Foundation (4 m)", + "className": "Recipe_Foundation_Asphalt_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Foundation_Asphalt_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_Asphalt_8x1_C": { + "slug": "recipe-invertedramp-asphalt-8x1-c", + "name": "Inverted Ramp (1 m)", + "className": "Recipe_InvertedRamp_Asphalt_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_Asphalt_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_Asphalt_8x2_C": { + "slug": "recipe-invertedramp-asphalt-8x2-c", + "name": "Inverted Ramp (2 m)", + "className": "Recipe_InvertedRamp_Asphalt_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_Asphalt_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_Asphalt_8x4_C": { + "slug": "recipe-invertedramp-asphalt-8x4-c", + "name": "Inverted Ramp (4 m)", + "className": "Recipe_InvertedRamp_Asphalt_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_Asphalt_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_DCorner_Asphalt_8x1_C": { + "slug": "recipe-invertedramp-dcorner-asphalt-8x1-c", + "name": "Inverted Down Corner (1 m)", + "className": "Recipe_InvertedRamp_DCorner_Asphalt_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_DCorner_Asphalt_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_DCorner_Asphalt_8x2_C": { + "slug": "recipe-invertedramp-dcorner-asphalt-8x2-c", + "name": "Inverted Down Corner (2 m)", + "className": "Recipe_InvertedRamp_DCorner_Asphalt_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_DCorner_Asphalt_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_DCorner_Asphalt_8x4_C": { + "slug": "recipe-invertedramp-dcorner-asphalt-8x4-c", + "name": "Inverted Down Corner (4 m)", + "className": "Recipe_InvertedRamp_DCorner_Asphalt_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_DCorner_Asphalt_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_UCorner_Asphalt_8x1_C": { + "slug": "recipe-invertedramp-ucorner-asphalt-8x1-c", + "name": "Inverted Up Corner (1 m)", + "className": "Recipe_InvertedRamp_UCorner_Asphalt_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_UCorner_Asphalt_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_UCorner_Asphalt_8x2_C": { + "slug": "recipe-invertedramp-ucorner-asphalt-8x2-c", + "name": "Inverted Up Corner (2 m)", + "className": "Recipe_InvertedRamp_UCorner_Asphalt_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_UCorner_Asphalt_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_InvertedRamp_UCorner_Asphalt_8x4_C": { + "slug": "recipe-invertedramp-ucorner-asphalt-8x4-c", + "name": "Inverted Up Corner (4 m)", + "className": "Recipe_InvertedRamp_UCorner_Asphalt_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_InvertedRamp_UCorner_Asphalt_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipe_Asphalt_8x4_C": { + "slug": "recipe-quarterpipe-asphalt-8x4-c", + "name": "Quarter Pipe", + "className": "Recipe_QuarterPipe_Asphalt_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipe_Asphalt_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeInCorner_Asphalt_8x4_C": { + "slug": "recipe-quarterpipeincorner-asphalt-8x4-c", + "name": "Inner Corner Quarter Pipe", + "className": "Recipe_QuarterPipeInCorner_Asphalt_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeInCorner_Asphalt_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddle_Asphalt_8x1_C": { + "slug": "recipe-quarterpipemiddle-asphalt-8x1-c", + "name": "Half Foundation (1 m)", + "className": "Recipe_QuarterPipeMiddle_Asphalt_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddle_Asphalt_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddle_Asphalt_8x2_C": { + "slug": "recipe-quarterpipemiddle-asphalt-8x2-c", + "name": "Half Foundation (2 m)", + "className": "Recipe_QuarterPipeMiddle_Asphalt_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddle_Asphalt_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddle_Asphalt_8x4_C": { + "slug": "recipe-quarterpipemiddle-asphalt-8x4-c", + "name": "Half Foundation (4 m)", + "className": "Recipe_QuarterPipeMiddle_Asphalt_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddle_Asphalt_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleInCorner_Asphalt_8x1_C": { + "slug": "recipe-quarterpipemiddleincorner-asphalt-8x1-c", + "name": "Inner Corner Extension (1 m)", + "className": "Recipe_QuarterPipeMiddleInCorner_Asphalt_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleInCorner_Asphalt_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleInCorner_Asphalt_8x2_C": { + "slug": "recipe-quarterpipemiddleincorner-asphalt-8x2-c", + "name": "Inner Corner Extension (2 m)", + "className": "Recipe_QuarterPipeMiddleInCorner_Asphalt_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleInCorner_Asphalt_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleInCorner_Asphalt_8x4_C": { + "slug": "recipe-quarterpipemiddleincorner-asphalt-8x4-c", + "name": "Inner Corner Extension (4 m)", + "className": "Recipe_QuarterPipeMiddleInCorner_Asphalt_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleInCorner_Asphalt_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleOutCorner_Asphalt_4x1_C": { + "slug": "recipe-quarterpipemiddleoutcorner-asphalt-4x1-c", + "name": "Outer Corner Extension (1 m)", + "className": "Recipe_QuarterPipeMiddleOutCorner_Asphalt_4x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleOutCorner_Asphalt_4x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleOutCorner_Asphalt_4x2_C": { + "slug": "recipe-quarterpipemiddleoutcorner-asphalt-4x2-c", + "name": "Outer Corner Extension (2 m)", + "className": "Recipe_QuarterPipeMiddleOutCorner_Asphalt_4x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleOutCorner_Asphalt_4x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeMiddleOutCorner_Asphalt_4x4_C": { + "slug": "recipe-quarterpipemiddleoutcorner-asphalt-4x4-c", + "name": "Outer Corner Extension (4 m)", + "className": "Recipe_QuarterPipeMiddleOutCorner_Asphalt_4x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeMiddleOutCorner_Asphalt_4x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_QuarterPipeOutCorner_Asphalt_8x4_C": { + "slug": "recipe-quarterpipeoutcorner-asphalt-8x4-c", + "name": "Outer Corner Quarter Pipe", + "className": "Recipe_QuarterPipeOutCorner_Asphalt_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_QuarterPipeOutCorner_Asphalt_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Asphalt_8x1_C": { + "slug": "recipe-ramp-asphalt-8x1-c", + "name": "Ramp (1 m)", + "className": "Recipe_Ramp_Asphalt_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Asphalt_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Asphalt_8x2_C": { + "slug": "recipe-ramp-asphalt-8x2-c", + "name": "Ramp (2 m)", + "className": "Recipe_Ramp_Asphalt_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Asphalt_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Asphalt_8x4_C": { + "slug": "recipe-ramp-asphalt-8x4-c", + "name": "Ramp (4 m)", + "className": "Recipe_Ramp_Asphalt_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Asphalt_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_DownCorner_Asphalt_8x1_C": { + "slug": "recipe-ramp-downcorner-asphalt-8x1-c", + "name": "Down Corner Ramp (1 m)", + "className": "Recipe_Ramp_DownCorner_Asphalt_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_DownCorner_Asphalt_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_DownCorner_Asphalt_8x2_C": { + "slug": "recipe-ramp-downcorner-asphalt-8x2-c", + "name": "Down Corner Ramp (2 m)", + "className": "Recipe_Ramp_DownCorner_Asphalt_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_DownCorner_Asphalt_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_DownCorner_Asphalt_8x4_C": { + "slug": "recipe-ramp-downcorner-asphalt-8x4-c", + "name": "Down Corner Ramp (4 m)", + "className": "Recipe_Ramp_DownCorner_Asphalt_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_DownCorner_Asphalt_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_UpCorner_Asphalt_8x1_C": { + "slug": "recipe-ramp-upcorner-asphalt-8x1-c", + "name": "Up Corner Ramp (1 m)", + "className": "Recipe_Ramp_UpCorner_Asphalt_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_UpCorner_Asphalt_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_UpCorner_Asphalt_8x2_C": { + "slug": "recipe-ramp-upcorner-asphalt-8x2-c", + "name": "Up Corner Ramp (2 m)", + "className": "Recipe_Ramp_UpCorner_Asphalt_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_UpCorner_Asphalt_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_UpCorner_Asphalt_8x4_C": { + "slug": "recipe-ramp-upcorner-asphalt-8x4-c", + "name": "Up Corner Ramp (4 m)", + "className": "Recipe_Ramp_UpCorner_Asphalt_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_UpCorner_Asphalt_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampDouble_Asphalt_8x1_C": { + "slug": "recipe-rampdouble-asphalt-8x1-c", + "name": "Double Ramp (2 m)", + "className": "Recipe_RampDouble_Asphalt_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampDouble_Asphalt_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampDouble_Asphalt_8x2_C": { + "slug": "recipe-rampdouble-asphalt-8x2-c", + "name": "Double Ramp (4 m)", + "className": "Recipe_RampDouble_Asphalt_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampDouble_Asphalt_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RampDouble_Asphalt_8x4_C": { + "slug": "recipe-rampdouble-asphalt-8x4-c", + "name": "Double Ramp (8 m)", + "className": "Recipe_RampDouble_Asphalt_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_RampDouble_Asphalt_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Stair_Asphalt_8x1_C": { + "slug": "recipe-stair-asphalt-8x1-c", + "name": "Foundation Stairs (1 m)", + "className": "Recipe_Stair_Asphalt_8x1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Stair_Asphalt_8x1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Stair_Asphalt_8x2_C": { + "slug": "recipe-stair-asphalt-8x2-c", + "name": "Foundation Stairs (2 m)", + "className": "Recipe_Stair_Asphalt_8x2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Stair_Asphalt_8x2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Stair_Asphalt_8x4_C": { + "slug": "recipe-stair-asphalt-8x4-c", + "name": "Foundation Stairs (4 m)", + "className": "Recipe_Stair_Asphalt_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Stair_Asphalt_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Protein_Stinger_C": { + "slug": "recipe-protein-stinger-c", + "name": "Stinger Protein", + "className": "Recipe_Protein_Stinger_C", + "alternate": false, + "time": 3.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.333333, + "ingredients": [ + { + "item": "Desc_StingerParts_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_AlienProtein_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Protein_Crab_C": { + "slug": "recipe-protein-crab-c", + "name": "Hatcher Protein", + "className": "Recipe_Protein_Crab_C", + "alternate": false, + "time": 3.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.333333, + "ingredients": [ + { + "item": "Desc_HatcherParts_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_AlienProtein_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_AlienDNACapsule_C": { + "slug": "recipe-aliendnacapsule-c", + "name": "Alien DNA Capsule", + "className": "Recipe_AlienDNACapsule_C", + "alternate": false, + "time": 6.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.333333, + "ingredients": [ + { + "item": "Desc_AlienProtein_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_AlienDNACapsule_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Biomass_AlienProtein_C": { + "slug": "recipe-biomass-alienprotein-c", + "name": "Biomass (Alien Protein)", + "className": "Recipe_Biomass_AlienProtein_C", + "alternate": false, + "time": 4.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_AlienProtein_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_GenericBiomass_C", + "amount": 100.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_MedicinalInhalerAlienOrgans_C": { + "slug": "recipe-medicinalinhaleralienorgans-c", + "name": "Protein Inhaler", + "className": "Recipe_MedicinalInhalerAlienOrgans_C", + "alternate": false, + "time": 20.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_AlienProtein_C", + "amount": 1.0 + }, + { + "item": "Desc_Nut_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_Medkit_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SpikedRebar_C": { + "slug": "recipe-spikedrebar-c", + "name": "Iron Rebar", + "className": "Recipe_SpikedRebar_C", + "alternate": false, + "time": 4.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_SpikedRebar_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RebarGun_C": { + "slug": "recipe-rebargun-c", + "name": "Rebar Gun", + "className": "Recipe_RebarGun_C", + "alternate": false, + "time": 60.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 6.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 16.0 + }, + { + "item": "Desc_IronScrew_C", + "amount": 100.0 + } + ], + "products": [ + { + "item": "Desc_RebarGunProjectile_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_AlienPowerBuilding_C": { + "slug": "recipe-alienpowerbuilding-c", + "name": "Alien Power Augmenter", + "className": "Recipe_AlienPowerBuilding_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_WAT1_C", + "amount": 10.0 + }, + { + "item": "Desc_SAMFluctuator_C", + "amount": 50.0 + }, + { + "item": "Desc_Cable_C", + "amount": 100.0 + }, + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 50.0 + }, + { + "item": "Desc_Motor_C", + "amount": 25.0 + }, + { + "item": "Desc_Computer_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_AlienPowerBuilding_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_CentralStorage_C": { + "slug": "recipe-centralstorage-c", + "name": "Dimensional Depot Uploader", + "className": "Recipe_CentralStorage_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_WAT2_C", + "amount": 1.0 + }, + { + "item": "Desc_SAMFluctuator_C", + "amount": 10.0 + }, + { + "item": "Desc_ModularFrame_C", + "amount": 10.0 + }, + { + "item": "Desc_Wire_C", + "amount": 100.0 + } + ], + "products": [ + { + "item": "Desc_CentralStorage_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_GeneratorGeoThermal_C": { + "slug": "recipe-generatorgeothermal-c", + "name": "Geothermal Generator", + "className": "Recipe_GeneratorGeoThermal_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Motor_C", + "amount": 10.0 + }, + { + "item": "Desc_ModularFrame_C", + "amount": 25.0 + }, + { + "item": "Desc_HighSpeedConnector_C", + "amount": 25.0 + }, + { + "item": "Desc_CopperSheet_C", + "amount": 50.0 + }, + { + "item": "Desc_Wire_C", + "amount": 250.0 + } + ], + "products": [ + { + "item": "Desc_GeneratorGeoThermal_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConveyorAttachmentSplitterProgrammable_C": { + "slug": "recipe-conveyorattachmentsplitterprogrammable-c", + "name": "Programmable Splitter", + "className": "Recipe_ConveyorAttachmentSplitterProgrammable_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 1.0 + }, + { + "item": "Desc_Computer_C", + "amount": 2.0 + }, + { + "item": "Desc_CircuitBoardHighSpeed_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_ConveyorAttachmentSplitterProgrammable_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_CartridgeSmart_C": { + "slug": "recipe-cartridgesmart-c", + "name": "Homing Rifle Ammo", + "className": "Recipe_CartridgeSmart_C", + "alternate": false, + "time": 24.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": true, + "manualTimeMultiplier": 0.666667, + "ingredients": [ + { + "item": "Desc_CartridgeStandard_C", + "amount": 20.0 + }, + { + "item": "Desc_HighSpeedConnector_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_CartridgeSmartProjectile_C", + "amount": 10.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PowerPoleMk3_C": { + "slug": "recipe-powerpolemk3-c", + "name": "Power Pole Mk.3", + "className": "Recipe_PowerPoleMk3_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HighSpeedConnector_C", + "amount": 2.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 2.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_PowerPoleMk3_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PriorityPowerSwitch_C": { + "slug": "recipe-prioritypowerswitch-c", + "name": "Priority Power Switch", + "className": "Recipe_PriorityPowerSwitch_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HighSpeedConnector_C", + "amount": 2.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 6.0 + }, + { + "item": "Desc_HighSpeedWire_C", + "amount": 50.0 + } + ], + "products": [ + { + "item": "Desc_PriorityPowerSwitch_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_BladeRunners_C": { + "slug": "recipe-bladerunners-c", + "name": "Blade Runners", + "className": "Recipe_BladeRunners_C", + "alternate": false, + "time": 60.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Silica_C", + "amount": 20.0 + }, + { + "item": "Desc_ModularFrame_C", + "amount": 3.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "BP_EquipmentDescriptorJumpingStilts_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PowerPoleMk2_C": { + "slug": "recipe-powerpolemk2-c", + "name": "Power Pole Mk.2", + "className": "Recipe_PowerPoleMk2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 6.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 2.0 + }, + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_PowerPoleMk2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PowerSwitch_C": { + "slug": "recipe-powerswitch-c", + "name": "Power Switch", + "className": "Recipe_PowerSwitch_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 20.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 4.0 + }, + { + "item": "Desc_CircuitBoardHighSpeed_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_PowerSwitch_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConveyorAttachmentSplitterSmart_C": { + "slug": "recipe-conveyorattachmentsplittersmart-c", + "name": "Smart Splitter", + "className": "Recipe_ConveyorAttachmentSplitterSmart_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 2.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 2.0 + }, + { + "item": "Desc_CircuitBoardHighSpeed_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_ConveyorAttachmentSplitterSmart_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Rebar_Stunshot_C": { + "slug": "recipe-rebar-stunshot-c", + "name": "Stun Rebar", + "className": "Recipe_Rebar_Stunshot_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": true, + "manualTimeMultiplier": 1.333333, + "ingredients": [ + { + "item": "Desc_SpikedRebar_C", + "amount": 1.0 + }, + { + "item": "Desc_HighSpeedWire_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Rebar_Stunshot_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ZipLine_C": { + "slug": "recipe-zipline-c", + "name": "Zipline", + "className": "Recipe_ZipLine_C", + "alternate": false, + "time": 40.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "BP_EquipmentDescriptorShockShank_C", + "amount": 1.0 + }, + { + "item": "Desc_HighSpeedWire_C", + "amount": 30.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 3.0 + }, + { + "item": "Desc_Cable_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "BP_EqDescZipLine_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_FilterGasMask_C": { + "slug": "recipe-filtergasmask-c", + "name": "Gas Filter", + "className": "Recipe_FilterGasMask_C", + "alternate": false, + "time": 8.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Fabric_C", + "amount": 2.0 + }, + { + "item": "Desc_Coal_C", + "amount": 4.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Filter_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Gasmask_C": { + "slug": "recipe-gasmask-c", + "name": "Gas Mask", + "className": "Recipe_Gasmask_C", + "alternate": false, + "time": 60.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Fabric_C", + "amount": 50.0 + }, + { + "item": "Desc_CopperSheet_C", + "amount": 10.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "BP_EquipmentDescriptorGasmask_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_NobeliskGas_C": { + "slug": "recipe-nobeliskgas-c", + "name": "Gas Nobelisk", + "className": "Recipe_NobeliskGas_C", + "alternate": false, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": true, + "manualTimeMultiplier": 0.666667, + "ingredients": [ + { + "item": "Desc_NobeliskExplosive_C", + "amount": 1.0 + }, + { + "item": "Desc_GenericBiomass_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_NobeliskGas_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_TherapeuticInhaler_C": { + "slug": "recipe-therapeuticinhaler-c", + "name": "Therapeutic Inhaler", + "className": "Recipe_TherapeuticInhaler_C", + "alternate": false, + "time": 20.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Mycelia_C", + "amount": 15.0 + }, + { + "item": "Desc_AlienProtein_C", + "amount": 1.0 + }, + { + "item": "Desc_Shroom_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_Medkit_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_MedicinalInhaler_C": { + "slug": "recipe-medicinalinhaler-c", + "name": "Vitamin Inhaler", + "className": "Recipe_MedicinalInhaler_C", + "alternate": false, + "time": 20.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Mycelia_C", + "amount": 10.0 + }, + { + "item": "Desc_Berry_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Medkit_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Parachute_C": { + "slug": "recipe-parachute-c", + "name": "Parachute", + "className": "Recipe_Parachute_C", + "alternate": false, + "time": 40.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Fabric_C", + "amount": 20.0 + }, + { + "item": "Desc_Cable_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_Parachute_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Alternate_PolyesterFabric_C": { + "slug": "recipe-alternate-polyesterfabric-c", + "name": "Alternate: Polyester Fabric", + "className": "Recipe_Alternate_PolyesterFabric_C", + "alternate": true, + "time": 2.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_PolymerResin_C", + "amount": 1.0 + }, + { + "item": "Desc_Water_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_Fabric_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Fabric_C": { + "slug": "recipe-fabric-c", + "name": "Fabric", + "className": "Recipe_Fabric_C", + "alternate": false, + "time": 4.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Mycelia_C", + "amount": 1.0 + }, + { + "item": "Desc_GenericBiomass_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Fabric_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_NutritionalInhaler_C": { + "slug": "recipe-nutritionalinhaler-c", + "name": "Nutritional Inhaler", + "className": "Recipe_NutritionalInhaler_C", + "alternate": false, + "time": 20.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Shroom_C", + "amount": 1.0 + }, + { + "item": "Desc_Berry_C", + "amount": 2.0 + }, + { + "item": "Desc_Nut_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Medkit_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SyntheticPowerShard_C": { + "slug": "recipe-syntheticpowershard-c", + "name": "Synthetic Power Shard", + "className": "Recipe_SyntheticPowerShard_C", + "alternate": false, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_TimeCrystal_C", + "amount": 2.0 + }, + { + "item": "Desc_DarkMatter_C", + "amount": 2.0 + }, + { + "item": "Desc_QuartzCrystal_C", + "amount": 12.0 + }, + { + "item": "Desc_QuantumEnergy_C", + "amount": 12.0 + } + ], + "products": [ + { + "item": "Desc_CrystalShard_C", + "amount": 1.0 + }, + { + "item": "Desc_DarkEnergy_C", + "amount": 12.0 + } + ], + "producedIn": [ + "Desc_QuantumEncoder_C" + ], + "isVariablePower": true, + "minPower": 0, + "maxPower": 2000 + }, + "Recipe_PowerCrystalShard_3_C": { + "slug": "recipe-powercrystalshard-3-c", + "name": "Power Shard (5)", + "className": "Recipe_PowerCrystalShard_3_C", + "alternate": false, + "time": 24.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Crystal_mk3_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_CrystalShard_C", + "amount": 5.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PowerCrystalShard_2_C": { + "slug": "recipe-powercrystalshard-2-c", + "name": "Power Shard (2)", + "className": "Recipe_PowerCrystalShard_2_C", + "alternate": false, + "time": 12.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Crystal_mk2_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_CrystalShard_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_RadarTower_C": { + "slug": "recipe-radartower-c", + "name": "Radar Tower", + "className": "Recipe_RadarTower_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Computer_C", + "amount": 10.0 + }, + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 20.0 + }, + { + "item": "Desc_CrystalOscillator_C", + "amount": 25.0 + }, + { + "item": "Desc_Cable_C", + "amount": 100.0 + } + ], + "products": [ + { + "item": "Desc_RadarTower_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_NobeliskShockwave_C": { + "slug": "recipe-nobeliskshockwave-c", + "name": "Pulse Nobelisk", + "className": "Recipe_NobeliskShockwave_C", + "alternate": false, + "time": 60.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": true, + "manualTimeMultiplier": 0.666666, + "ingredients": [ + { + "item": "Desc_NobeliskExplosive_C", + "amount": 5.0 + }, + { + "item": "Desc_CrystalOscillator_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_NobeliskShockwave_C", + "amount": 5.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Explorer_C": { + "slug": "recipe-explorer-c", + "name": "Explorer", + "className": "Recipe_Explorer_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CrystalOscillator_C", + "amount": 5.0 + }, + { + "item": "Desc_Motor_C", + "amount": 5.0 + }, + { + "item": "Desc_ModularFrame_C", + "amount": 10.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 15.0 + } + ], + "products": [ + { + "item": "Desc_Explorer_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Rebar_Spreadshot_C": { + "slug": "recipe-rebar-spreadshot-c", + "name": "Shatter Rebar", + "className": "Recipe_Rebar_Spreadshot_C", + "alternate": false, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SpikedRebar_C", + "amount": 2.0 + }, + { + "item": "Desc_QuartzCrystal_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Rebar_Spreadshot_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_CartridgeChaos_Packaged_C": { + "slug": "recipe-cartridgechaos-packaged-c", + "name": "Turbo Rifle Ammo", + "className": "Recipe_CartridgeChaos_Packaged_C", + "alternate": false, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": true, + "manualTimeMultiplier": 3.333333, + "ingredients": [ + { + "item": "Desc_CartridgeStandard_C", + "amount": 25.0 + }, + { + "item": "Desc_AluminumCasing_C", + "amount": 3.0 + }, + { + "item": "Desc_TurboFuel_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_CartridgeChaos_C", + "amount": 50.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_CartridgeChaos_C": { + "slug": "recipe-cartridgechaos-c", + "name": "Turbo Rifle Ammo", + "className": "Recipe_CartridgeChaos_C", + "alternate": false, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 3.333333, + "ingredients": [ + { + "item": "Desc_CartridgeStandard_C", + "amount": 25.0 + }, + { + "item": "Desc_AluminumCasing_C", + "amount": 3.0 + }, + { + "item": "Desc_LiquidTurboFuel_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_CartridgeChaos_C", + "amount": 50.0 + } + ], + "producedIn": [ + "Desc_Blender_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_NobeliskNuke_C": { + "slug": "recipe-nobelisknuke-c", + "name": "Nuke Nobelisk", + "className": "Recipe_NobeliskNuke_C", + "alternate": false, + "time": 120.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": true, + "manualTimeMultiplier": 0.5, + "ingredients": [ + { + "item": "Desc_NobeliskExplosive_C", + "amount": 5.0 + }, + { + "item": "Desc_UraniumCell_C", + "amount": 20.0 + }, + { + "item": "Desc_GunpowderMK2_C", + "amount": 10.0 + }, + { + "item": "Desc_CircuitBoardHighSpeed_C", + "amount": 6.0 + } + ], + "products": [ + { + "item": "Desc_NobeliskNuke_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Cartridge_C": { + "slug": "recipe-cartridge-c", + "name": "Rifle Ammo", + "className": "Recipe_Cartridge_C", + "alternate": false, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CopperSheet_C", + "amount": 3.0 + }, + { + "item": "Desc_GunpowderMK2_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_CartridgeStandard_C", + "amount": 15.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Rebar_Explosive_C": { + "slug": "recipe-rebar-explosive-c", + "name": "Explosive Rebar", + "className": "Recipe_Rebar_Explosive_C", + "alternate": false, + "time": 12.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": true, + "manualTimeMultiplier": 1.333333, + "ingredients": [ + { + "item": "Desc_SpikedRebar_C", + "amount": 2.0 + }, + { + "item": "Desc_GunpowderMK2_C", + "amount": 2.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Rebar_Explosive_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ManufacturerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SpaceRifleMk1_C": { + "slug": "recipe-spaceriflemk1-c", + "name": "Rifle", + "className": "Recipe_SpaceRifleMk1_C", + "alternate": false, + "time": 120.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Motor_C", + "amount": 2.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 10.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 25.0 + }, + { + "item": "Desc_IronScrew_C", + "amount": 250.0 + } + ], + "products": [ + { + "item": "BP_EquipmentDescriptorRifle_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_NobeliskCluster_C": { + "slug": "recipe-nobeliskcluster-c", + "name": "Cluster Nobelisk", + "className": "Recipe_NobeliskCluster_C", + "alternate": false, + "time": 24.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": true, + "manualTimeMultiplier": 0.666667, + "ingredients": [ + { + "item": "Desc_NobeliskExplosive_C", + "amount": 3.0 + }, + { + "item": "Desc_GunpowderMK2_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_NobeliskCluster_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Nobelisk_C": { + "slug": "recipe-nobelisk-c", + "name": "Nobelisk", + "className": "Recipe_Nobelisk_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": true, + "manualTimeMultiplier": 1.333333, + "ingredients": [ + { + "item": "Desc_Gunpowder_C", + "amount": 2.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_NobeliskExplosive_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_NobeliskDetonator_C": { + "slug": "recipe-nobeliskdetonator-c", + "name": "Nobelisk Detonator", + "className": "Recipe_NobeliskDetonator_C", + "alternate": false, + "time": 80.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "BP_EquipmentDescriptorObjectScanner_C", + "amount": 1.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 10.0 + }, + { + "item": "Desc_Cable_C", + "amount": 50.0 + } + ], + "products": [ + { + "item": "BP_EquipmentDescriptorNobeliskDetonator_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_GunpowderMK2_C": { + "slug": "recipe-gunpowdermk2-c", + "name": "Smokeless Powder", + "className": "Recipe_GunpowderMK2_C", + "alternate": false, + "time": 6.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 0.5, + "ingredients": [ + { + "item": "Desc_Gunpowder_C", + "amount": 2.0 + }, + { + "item": "Desc_HeavyOilResidue_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_GunpowderMK2_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_OilRefinery_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Flat_Frame_01_C": { + "slug": "recipe-flat-frame-01-c", + "name": "Frame Floor", + "className": "Recipe_Flat_Frame_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlate_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Flat_Frame_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Foundation_Frame_01_C": { + "slug": "recipe-foundation-frame-01-c", + "name": "Frame Foundation", + "className": "Recipe_Foundation_Frame_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlate_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Foundation_Frame_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_FoundationGlass_01_C": { + "slug": "recipe-foundationglass-01-c", + "name": "Glass Frame Foundation", + "className": "Recipe_FoundationGlass_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlate_C", + "amount": 2.0 + }, + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_FoundationGlass_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Frame_01_C": { + "slug": "recipe-ramp-frame-01-c", + "name": "Frame Ramp", + "className": "Recipe_Ramp_Frame_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlate_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Frame_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ramp_Frame_Inverted_01_C": { + "slug": "recipe-ramp-frame-inverted-01-c", + "name": "Inverted Frame Ramp", + "className": "Recipe_Ramp_Frame_Inverted_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlate_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_Ramp_Frame_Inverted_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Frame_01_C": { + "slug": "recipe-wall-frame-01-c", + "name": "Frame Wall", + "className": "Recipe_Wall_Frame_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlate_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Frame_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Railing_01_C": { + "slug": "recipe-railing-01-c", + "name": "Modern Railing", + "className": "Recipe_Railing_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Railing_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Pillar_Small_Metal_C": { + "slug": "recipe-pillar-small-metal-c", + "name": "Small Metal Pillar", + "className": "Recipe_Pillar_Small_Metal_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 1.0 + }, + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Pillar_Small_Metal_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PillarBase_Small_C": { + "slug": "recipe-pillarbase-small-c", + "name": "Small Pillar Support", + "className": "Recipe_PillarBase_Small_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_PillarBase_Small_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PillarBase_C": { + "slug": "recipe-pillarbase-c", + "name": "Big Pillar Support", + "className": "Recipe_PillarBase_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_PillarBase_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PillarMiddle_C": { + "slug": "recipe-pillarmiddle-c", + "name": "Big Metal Pillar", + "className": "Recipe_PillarMiddle_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 2.0 + }, + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_PillarMiddle_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Ladder_C": { + "slug": "recipe-ladder-c", + "name": "Ladder", + "className": "Recipe_Ladder_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Ladder_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_FactoryCart_C": { + "slug": "recipe-factorycart-c", + "name": "Factory Cart™", + "className": "Recipe_FactoryCart_C", + "alternate": false, + "time": 20.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 2.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 4.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 4.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_GolfCart_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_CyberWagon_C": { + "slug": "recipe-cyberwagon-c", + "name": "Cyber Wagon", + "className": "Recipe_CyberWagon_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_CyberWagon_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Gate_Automated_8x4_C": { + "slug": "recipe-gate-automated-8x4-c", + "name": "Automated Gate", + "className": "Recipe_Gate_Automated_8x4_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 6.0 + } + ], + "products": [ + { + "item": "Desc_Gate_Automated_8x4_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_HyperTubeWallHole_C": { + "slug": "recipe-hypertubewallhole-c", + "name": "Hypertube Wall Hole", + "className": "Recipe_HyperTubeWallHole_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 2.0 + }, + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_HyperTubeWallHole_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PipeSupportWallHole_C": { + "slug": "recipe-pipesupportwallhole-c", + "name": "Pipeline Wall Hole", + "className": "Recipe_PipeSupportWallHole_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 2.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 1.0 + }, + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_PipelineSupportWallHole_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_FoundationPassthrough_Pipe_C": { + "slug": "recipe-foundationpassthrough-pipe-c", + "name": "Pipeline Floor Hole", + "className": "Recipe_FoundationPassthrough_Pipe_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 2.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 2.0 + }, + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_FoundationPassthrough_Pipe_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PowerPoleWallDouble_C": { + "slug": "recipe-powerpolewalldouble-c", + "name": "Double Wall Outlet Mk.1", + "className": "Recipe_PowerPoleWallDouble_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Wire_C", + "amount": 8.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_PowerPoleWallDouble_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PowerPoleWallDoubleMk2_C": { + "slug": "recipe-powerpolewalldoublemk2-c", + "name": "Double Wall Outlet Mk.2", + "className": "Recipe_PowerPoleWallDoubleMk2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 16.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_PowerPoleWallDoubleMk2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PowerPoleWallMk2_C": { + "slug": "recipe-powerpolewallmk2-c", + "name": "Wall Outlet Mk.2", + "className": "Recipe_PowerPoleWallMk2_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 8.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_PowerPoleWallMk2_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PowerPoleWallDoubleMk3_C": { + "slug": "recipe-powerpolewalldoublemk3-c", + "name": "Double Wall Outlet Mk.3", + "className": "Recipe_PowerPoleWallDoubleMk3_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HighSpeedConnector_C", + "amount": 6.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 6.0 + } + ], + "products": [ + { + "item": "Desc_PowerPoleWallDoubleMk3_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PowerPoleWallMk3_C": { + "slug": "recipe-powerpolewallmk3-c", + "name": "Wall Outlet Mk.3", + "className": "Recipe_PowerPoleWallMk3_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HighSpeedConnector_C", + "amount": 3.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_PowerPoleWallMk3_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_StreetLight_C": { + "slug": "recipe-streetlight-c", + "name": "Street Light", + "className": "Recipe_StreetLight_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 10.0 + }, + { + "item": "Desc_Wire_C", + "amount": 4.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_StreetLight_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_CeilingLight_C": { + "slug": "recipe-ceilinglight-c", + "name": "Ceiling Light", + "className": "Recipe_CeilingLight_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 50.0 + }, + { + "item": "Desc_Wire_C", + "amount": 16.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 6.0 + } + ], + "products": [ + { + "item": "Desc_CeilingLight_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_FloodlightPole_C": { + "slug": "recipe-floodlightpole-c", + "name": "Flood Light Tower", + "className": "Recipe_FloodlightPole_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 25.0 + }, + { + "item": "Desc_CopperSheet_C", + "amount": 4.0 + }, + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 8.0 + } + ], + "products": [ + { + "item": "Desc_FloodlightPole_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_FloodlightWall_C": { + "slug": "recipe-floodlightwall-c", + "name": "Wall-Mounted Flood Light", + "className": "Recipe_FloodlightWall_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 25.0 + }, + { + "item": "Desc_CopperSheet_C", + "amount": 4.0 + }, + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_FloodlightWall_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Orange_01_C": { + "slug": "recipe-roof-orange-01-c", + "name": "Flat Roof", + "className": "Recipe_Roof_Orange_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Orange_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Orange_02_C": { + "slug": "recipe-roof-orange-02-c", + "name": "Roof (1 m)", + "className": "Recipe_Roof_Orange_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Orange_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Orange_03_C": { + "slug": "recipe-roof-orange-03-c", + "name": "Roof (2 m)", + "className": "Recipe_Roof_Orange_03_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Orange_03_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Orange_04_C": { + "slug": "recipe-roof-orange-04-c", + "name": "Roof (4 m)", + "className": "Recipe_Roof_Orange_04_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Orange_04_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Orange_InCorner_01_C": { + "slug": "recipe-roof-orange-incorner-01-c", + "name": "Inner Corner Roof (1 m)", + "className": "Recipe_Roof_Orange_InCorner_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Orange_InCorner_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Orange_InCorner_02_C": { + "slug": "recipe-roof-orange-incorner-02-c", + "name": "Inner Corner Roof (2 m)", + "className": "Recipe_Roof_Orange_InCorner_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Orange_InCorner_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Orange_InCorner_03_C": { + "slug": "recipe-roof-orange-incorner-03-c", + "name": "Inner Corner Roof (4 m)", + "className": "Recipe_Roof_Orange_InCorner_03_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Orange_InCorner_03_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Orange_OutCorner_01_C": { + "slug": "recipe-roof-orange-outcorner-01-c", + "name": "Outer Corner Roof (1 m)", + "className": "Recipe_Roof_Orange_OutCorner_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Orange_OutCorner_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Orange_OutCorner_02_C": { + "slug": "recipe-roof-orange-outcorner-02-c", + "name": "Outer Corner Roof (2 m)", + "className": "Recipe_Roof_Orange_OutCorner_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Orange_OutCorner_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Orange_OutCorner_03_C": { + "slug": "recipe-roof-orange-outcorner-03-c", + "name": "Outer Corner Roof (4 m)", + "className": "Recipe_Roof_Orange_OutCorner_03_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Orange_OutCorner_03_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Window_01_C": { + "slug": "recipe-roof-window-01-c", + "name": "Flat Roof", + "className": "Recipe_Roof_Window_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Window_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Window_02_C": { + "slug": "recipe-roof-window-02-c", + "name": "Roof (1 m)", + "className": "Recipe_Roof_Window_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Window_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Window_03_C": { + "slug": "recipe-roof-window-03-c", + "name": "Roof (2 m)", + "className": "Recipe_Roof_Window_03_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Window_03_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Window_04_C": { + "slug": "recipe-roof-window-04-c", + "name": "Roof (4 m)", + "className": "Recipe_Roof_Window_04_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Window_04_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Window_InCorner_01_C": { + "slug": "recipe-roof-window-incorner-01-c", + "name": "Inner Corner Roof (1 m)", + "className": "Recipe_Roof_Window_InCorner_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Window_InCorner_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Window_InCorner_02_C": { + "slug": "recipe-roof-window-incorner-02-c", + "name": "Inner Corner Roof (2 m)", + "className": "Recipe_Roof_Window_InCorner_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Window_InCorner_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Window_InCorner_03_C": { + "slug": "recipe-roof-window-incorner-03-c", + "name": "Inner Corner Roof (4 m)", + "className": "Recipe_Roof_Window_InCorner_03_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Window_InCorner_03_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Window_OutCorner_01_C": { + "slug": "recipe-roof-window-outcorner-01-c", + "name": "Outer Corner Roof (1 m)", + "className": "Recipe_Roof_Window_OutCorner_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Window_OutCorner_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Window_OutCorner_02_C": { + "slug": "recipe-roof-window-outcorner-02-c", + "name": "Outer Corner Roof (2 m)", + "className": "Recipe_Roof_Window_OutCorner_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Window_OutCorner_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Window_OutCorner_03_C": { + "slug": "recipe-roof-window-outcorner-03-c", + "name": "Outer Corner Roof (4 m)", + "className": "Recipe_Roof_Window_OutCorner_03_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Window_OutCorner_03_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_A_01_C": { + "slug": "recipe-roof-a-01-c", + "name": "Flat Roof", + "className": "Recipe_Roof_A_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_A_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_A_02_C": { + "slug": "recipe-roof-a-02-c", + "name": "Roof (1 m)", + "className": "Recipe_Roof_A_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_A_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_A_03_C": { + "slug": "recipe-roof-a-03-c", + "name": "Roof (2 m)", + "className": "Recipe_Roof_A_03_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_A_03_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_A_04_C": { + "slug": "recipe-roof-a-04-c", + "name": "Roof (4 m)", + "className": "Recipe_Roof_A_04_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_A_04_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Metal_InCorner_01_C": { + "slug": "recipe-roof-metal-incorner-01-c", + "name": "Inner Corner Roof (1 m)", + "className": "Recipe_Roof_Metal_InCorner_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Metal_InCorner_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Metal_InCorner_02_C": { + "slug": "recipe-roof-metal-incorner-02-c", + "name": "Inner Corner Roof (2 m)", + "className": "Recipe_Roof_Metal_InCorner_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Metal_InCorner_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Metal_InCorner_03_C": { + "slug": "recipe-roof-metal-incorner-03-c", + "name": "Inner Corner Roof (4 m)", + "className": "Recipe_Roof_Metal_InCorner_03_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Metal_InCorner_03_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Metal_OutCorner_01_C": { + "slug": "recipe-roof-metal-outcorner-01-c", + "name": "Outer Corner Roof (1 m)", + "className": "Recipe_Roof_Metal_OutCorner_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Metal_OutCorner_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Metal_OutCorner_02_C": { + "slug": "recipe-roof-metal-outcorner-02-c", + "name": "Outer Corner Roof (2 m)", + "className": "Recipe_Roof_Metal_OutCorner_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Metal_OutCorner_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Metal_OutCorner_03_C": { + "slug": "recipe-roof-metal-outcorner-03-c", + "name": "Outer Corner Roof (4 m)", + "className": "Recipe_Roof_Metal_OutCorner_03_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Metal_OutCorner_03_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Tar_01_C": { + "slug": "recipe-roof-tar-01-c", + "name": "Flat Roof", + "className": "Recipe_Roof_Tar_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Tar_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Tar_02_C": { + "slug": "recipe-roof-tar-02-c", + "name": "Roof (1 m)", + "className": "Recipe_Roof_Tar_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Tar_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Tar_03_C": { + "slug": "recipe-roof-tar-03-c", + "name": "Roof (2 m)", + "className": "Recipe_Roof_Tar_03_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Tar_03_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Tar_04_C": { + "slug": "recipe-roof-tar-04-c", + "name": "Roof (4 m)", + "className": "Recipe_Roof_Tar_04_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Tar_04_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Tar_InCorner_01_C": { + "slug": "recipe-roof-tar-incorner-01-c", + "name": "Inner Corner Roof (1 m)", + "className": "Recipe_Roof_Tar_InCorner_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Tar_InCorner_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Tar_InCorner_02_C": { + "slug": "recipe-roof-tar-incorner-02-c", + "name": "Inner Corner Roof (2 m)", + "className": "Recipe_Roof_Tar_InCorner_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Tar_InCorner_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Tar_InCorner_03_C": { + "slug": "recipe-roof-tar-incorner-03-c", + "name": "Inner Corner Roof (4 m)", + "className": "Recipe_Roof_Tar_InCorner_03_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Tar_InCorner_03_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Tar_OutCorner_01_C": { + "slug": "recipe-roof-tar-outcorner-01-c", + "name": "Outer Corner Roof (1 m)", + "className": "Recipe_Roof_Tar_OutCorner_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Tar_OutCorner_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Tar_OutCorner_02_C": { + "slug": "recipe-roof-tar-outcorner-02-c", + "name": "Outer Corner Roof (2 m)", + "className": "Recipe_Roof_Tar_OutCorner_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Tar_OutCorner_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Roof_Tar_OutCorner_03_C": { + "slug": "recipe-roof-tar-outcorner-03-c", + "name": "Outer Corner Roof (4 m)", + "className": "Recipe_Roof_Tar_OutCorner_03_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Roof_Tar_OutCorner_03_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PipelineMK2_NoIndicator_C": { + "slug": "recipe-pipelinemk2-noindicator-c", + "name": "Clean Pipeline Mk.2", + "className": "Recipe_PipelineMK2_NoIndicator_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CopperSheet_C", + "amount": 2.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_PipelineMK2_NoIndicator_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Pipeline_NoIndicator_C": { + "slug": "recipe-pipeline-noindicator-c", + "name": "Clean Pipeline Mk.1", + "className": "Recipe_Pipeline_NoIndicator_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CopperSheet_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_Pipeline_NoIndicator_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_StorageMedkit_C": { + "slug": "recipe-storagemedkit-c", + "name": "Medical Storage Box", + "className": "Recipe_StorageMedkit_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 6.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 6.0 + } + ], + "products": [ + { + "item": "Desc_StorageMedkit_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_LightsControlPanel_C": { + "slug": "recipe-lightscontrolpanel-c", + "name": "Light Control Panel", + "className": "Recipe_LightsControlPanel_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cable_C", + "amount": 10.0 + }, + { + "item": "Desc_IronPlateReinforced_C", + "amount": 5.0 + }, + { + "item": "Desc_CircuitBoardHighSpeed_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_LightsControlPanel_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_StandaloneWidgetSign_Small_C": { + "slug": "recipe-standalonewidgetsign-small-c", + "name": "Label Sign (2 m)", + "className": "Recipe_StandaloneWidgetSign_Small_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 2.0 + }, + { + "item": "Desc_QuartzCrystal_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_StandaloneWidgetSign_Small_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_StandaloneWidgetSign_SmallVeryWide_C": { + "slug": "recipe-standalonewidgetsign-smallverywide-c", + "name": "Label Sign (4 m)", + "className": "Recipe_StandaloneWidgetSign_SmallVeryWide_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 4.0 + }, + { + "item": "Desc_QuartzCrystal_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_StandaloneWidgetSign_SmallVeryWide_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_StandaloneWidgetSign_SmallWide_C": { + "slug": "recipe-standalonewidgetsign-smallwide-c", + "name": "Label Sign (3 m)", + "className": "Recipe_StandaloneWidgetSign_SmallWide_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 3.0 + }, + { + "item": "Desc_QuartzCrystal_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_StandaloneWidgetSign_SmallWide_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_StandaloneWidgetSign_Square_Tiny_C": { + "slug": "recipe-standalonewidgetsign-square-tiny-c", + "name": "Square Sign (0.5 m)", + "className": "Recipe_StandaloneWidgetSign_Square_Tiny_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 1.0 + }, + { + "item": "Desc_QuartzCrystal_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_StandaloneWidgetSign_Square_Tiny_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_FoundationPassthrough_Hypertube_C": { + "slug": "recipe-foundationpassthrough-hypertube-c", + "name": "Hypertube Floor Hole", + "className": "Recipe_FoundationPassthrough_Hypertube_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 2.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 2.0 + }, + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_FoundationPassthrough_Hypertube_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_StorageHazard_C": { + "slug": "recipe-storagehazard-c", + "name": "Hazard Storage Box", + "className": "Recipe_StorageHazard_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 6.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 6.0 + } + ], + "products": [ + { + "item": "Desc_StorageHazard_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_GoldenCart_C": { + "slug": "recipe-goldencart-c", + "name": "Golden Factory Cart™", + "className": "Recipe_GoldenCart_C", + "alternate": false, + "time": 20.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 2.0, + "ingredients": [ + { + "item": "Desc_GoldIngot_C", + "amount": 15.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 4.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_GolfCartGold_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Window_8x4_05_C": { + "slug": "recipe-wall-window-8x4-05-c", + "name": "Angled Frame Window", + "className": "Recipe_Wall_Window_8x4_05_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Silica_C", + "amount": 2.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Window_8x4_05_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Window_8x4_06_C": { + "slug": "recipe-wall-window-8x4-06-c", + "name": "Honeycomb Frame Window", + "className": "Recipe_Wall_Window_8x4_06_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Silica_C", + "amount": 2.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Window_8x4_06_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Window_8x4_07_C": { + "slug": "recipe-wall-window-8x4-07-c", + "name": "Triple Frame Window", + "className": "Recipe_Wall_Window_8x4_07_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Silica_C", + "amount": 2.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Window_8x4_07_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Window_Thin_8x4_01_C": { + "slug": "recipe-wall-window-thin-8x4-01-c", + "name": "Full Frame Window", + "className": "Recipe_Wall_Window_Thin_8x4_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Silica_C", + "amount": 2.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Window_Thin_8x4_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wall_Window_Thin_8x4_02_C": { + "slug": "recipe-wall-window-thin-8x4-02-c", + "name": "Hex Frame Window", + "className": "Recipe_Wall_Window_Thin_8x4_02_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Silica_C", + "amount": 2.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Wall_Window_Thin_8x4_02_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Pillar_Small_Frame_C": { + "slug": "recipe-pillar-small-frame-c", + "name": "Small Frame Pillar", + "className": "Recipe_Pillar_Small_Frame_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlate_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Pillar_Small_Frame_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PillarMiddle_Frame_C": { + "slug": "recipe-pillarmiddle-frame-c", + "name": "Big Frame Pillar", + "className": "Recipe_PillarMiddle_Frame_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlate_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_PillarMiddle_Frame_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ChainLinkFence_C": { + "slug": "recipe-chainlinkfence-c", + "name": "Construction Fence", + "className": "Recipe_ChainLinkFence_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_ChainLinkFence_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_TarpFence_C": { + "slug": "recipe-tarpfence-c", + "name": "Tarp Construction Fence", + "className": "Recipe_TarpFence_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_TarpFence_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Barrier_Low_01_C": { + "slug": "recipe-barrier-low-01-c", + "name": "Low Barrier", + "className": "Recipe_Barrier_Low_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 1.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_Barrier_Low_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Barrier_Tall_01_C": { + "slug": "recipe-barrier-tall-01-c", + "name": "High Barrier", + "className": "Recipe_Barrier_Tall_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 1.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_Barrier_Tall_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Concrete_Barrier_01_C": { + "slug": "recipe-concrete-barrier-01-c", + "name": "Road Barrier", + "className": "Recipe_Concrete_Barrier_01_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Concrete_Barrier_01_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_StandaloneWidgetSign_Medium_C": { + "slug": "recipe-standalonewidgetsign-medium-c", + "name": "Display Sign", + "className": "Recipe_StandaloneWidgetSign_Medium_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 2.0 + }, + { + "item": "Desc_QuartzCrystal_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_StandaloneWidgetSign_Medium_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_StandaloneWidgetSign_Portrait_C": { + "slug": "recipe-standalonewidgetsign-portrait-c", + "name": "Portrait Sign", + "className": "Recipe_StandaloneWidgetSign_Portrait_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 4.0 + }, + { + "item": "Desc_QuartzCrystal_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_StandaloneWidgetSign_Portrait_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_StandaloneWidgetSign_Square_C": { + "slug": "recipe-standalonewidgetsign-square-c", + "name": "Square Sign (2 m)", + "className": "Recipe_StandaloneWidgetSign_Square_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 3.0 + }, + { + "item": "Desc_QuartzCrystal_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_StandaloneWidgetSign_Square_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_StandaloneWidgetSign_Square_Small_C": { + "slug": "recipe-standalonewidgetsign-square-small-c", + "name": "Square Sign (1 m)", + "className": "Recipe_StandaloneWidgetSign_Square_Small_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 1.0 + }, + { + "item": "Desc_QuartzCrystal_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_StandaloneWidgetSign_Square_Small_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_FoundationPassthrough_Lift_C": { + "slug": "recipe-foundationpassthrough-lift-c", + "name": "Conveyor Lift Floor Hole", + "className": "Recipe_FoundationPassthrough_Lift_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 2.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 2.0 + }, + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_FoundationPassthrough_Lift_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Pillar_Small_Concrete_C": { + "slug": "recipe-pillar-small-concrete-c", + "name": "Small Concrete Pillar", + "className": "Recipe_Pillar_Small_Concrete_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Pillar_Small_Concrete_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PillarMiddle_Concrete_C": { + "slug": "recipe-pillarmiddle-concrete-c", + "name": "Big Concrete Pillar", + "className": "Recipe_PillarMiddle_Concrete_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_PillarMiddle_Concrete_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Catwalk_Cross_C": { + "slug": "recipe-catwalk-cross-c", + "name": "Catwalk Intersection", + "className": "Recipe_Catwalk_Cross_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 2.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_CatwalkCross_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Catwalk_Ramp_C": { + "slug": "recipe-catwalk-ramp-c", + "name": "Catwalk Ramp", + "className": "Recipe_Catwalk_Ramp_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 2.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_CatwalkRamp_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Catwalk_Stairs_C": { + "slug": "recipe-catwalk-stairs-c", + "name": "Catwalk Stairs", + "className": "Recipe_Catwalk_Stairs_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 2.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_CatwalkStairs_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Catwalk_Straight_C": { + "slug": "recipe-catwalk-straight-c", + "name": "Straight Catwalk", + "className": "Recipe_Catwalk_Straight_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 2.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_CatwalkStraight_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Catwalk_T_C": { + "slug": "recipe-catwalk-t-c", + "name": "Catwalk T-Junction", + "className": "Recipe_Catwalk_T_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 2.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_CatwalkT_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Catwalk_Turn_C": { + "slug": "recipe-catwalk-turn-c", + "name": "Catwalk Corner", + "className": "Recipe_Catwalk_Turn_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 2.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_CatwalkTurn_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_StandaloneWidgetSign_Huge_C": { + "slug": "recipe-standalonewidgetsign-huge-c", + "name": "Large Billboard", + "className": "Recipe_StandaloneWidgetSign_Huge_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 12.0 + }, + { + "item": "Desc_CopperSheet_C", + "amount": 20.0 + }, + { + "item": "Desc_CrystalOscillator_C", + "amount": 5.0 + } + ], + "products": [ + { + "item": "Desc_StandaloneWidgetSign_Huge_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_StandaloneWidgetSign_Large_C": { + "slug": "recipe-standalonewidgetsign-large-c", + "name": "Small Billboard", + "className": "Recipe_StandaloneWidgetSign_Large_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 3.0 + }, + { + "item": "Desc_CopperSheet_C", + "amount": 4.0 + }, + { + "item": "Desc_CrystalOscillator_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_StandaloneWidgetSign_Large_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Beam_C": { + "slug": "recipe-beam-c", + "name": "Metal Beam", + "className": "Recipe_Beam_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlate_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_Beam_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Beam_Connector_C": { + "slug": "recipe-beam-connector-c", + "name": "Beam Connector", + "className": "Recipe_Beam_Connector_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Beam_Connector_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Beam_Connector_Double_C": { + "slug": "recipe-beam-connector-double-c", + "name": "Double Beam Connector", + "className": "Recipe_Beam_Connector_Double_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Beam_Connector_Double_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Beam_Painted_C": { + "slug": "recipe-beam-painted-c", + "name": "Painted Beam", + "className": "Recipe_Beam_Painted_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_SteelPlate_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_Beam_Painted_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Beam_Support_C": { + "slug": "recipe-beam-support-c", + "name": "Beam Support", + "className": "Recipe_Beam_Support_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Beam_Support_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_GeneratorBiomass_Automated_C": { + "slug": "recipe-generatorbiomass-automated-c", + "name": "Biomass Burner", + "className": "Recipe_GeneratorBiomass_Automated_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 15.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 15.0 + }, + { + "item": "Desc_Wire_C", + "amount": 25.0 + } + ], + "products": [ + { + "item": "Desc_GeneratorBiomass_Automated_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SpaceElevator_C": { + "slug": "recipe-spaceelevator-c", + "name": "Space Elevator", + "className": "Recipe_SpaceElevator_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Cement_C", + "amount": 500.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 250.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 400.0 + }, + { + "item": "Desc_Wire_C", + "amount": 1500.0 + } + ], + "products": [ + { + "item": "Desc_SpaceElevator_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Biomass_Leaves_C": { + "slug": "recipe-biomass-leaves-c", + "name": "Biomass (Leaves)", + "className": "Recipe_Biomass_Leaves_C", + "alternate": false, + "time": 5.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 0.4, + "ingredients": [ + { + "item": "Desc_Leaves_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_GenericBiomass_C", + "amount": 5.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Biomass_Wood_C": { + "slug": "recipe-biomass-wood-c", + "name": "Biomass (Wood)", + "className": "Recipe_Biomass_Wood_C", + "alternate": false, + "time": 4.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Wood_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_GenericBiomass_C", + "amount": 20.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_MinerMk1_C": { + "slug": "recipe-minermk1-c", + "name": "Miner Mk.1", + "className": "Recipe_MinerMk1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "BP_ItemDescriptorPortableMiner_C", + "amount": 1.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 10.0 + }, + { + "item": "Desc_Cement_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_MinerMk1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_StorageContainerMk1_C": { + "slug": "recipe-storagecontainermk1-c", + "name": "Storage Container", + "className": "Recipe_StorageContainerMk1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 10.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 10.0 + } + ], + "products": [ + { + "item": "Desc_StorageContainerMk1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_IronPlateReinforced_C": { + "slug": "recipe-ironplatereinforced-c", + "name": "Reinforced Iron Plate", + "className": "Recipe_IronPlateReinforced_C", + "alternate": false, + "time": 12.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 6.0 + }, + { + "item": "Desc_IronScrew_C", + "amount": 12.0 + } + ], + "products": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_AssemblerMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_ConstructorMk1_C": { + "slug": "recipe-constructormk1-c", + "name": "Constructor", + "className": "Recipe_ConstructorMk1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 2.0 + }, + { + "item": "Desc_Cable_C", + "amount": 8.0 + } + ], + "products": [ + { + "item": "Desc_ConstructorMk1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Concrete_C": { + "slug": "recipe-concrete-c", + "name": "Concrete", + "className": "Recipe_Concrete_C", + "alternate": false, + "time": 4.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Stone_C", + "amount": 3.0 + } + ], + "products": [ + { + "item": "Desc_Cement_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Screw_C": { + "slug": "recipe-screw-c", + "name": "Screw", + "className": "Recipe_Screw_C", + "alternate": false, + "time": 6.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_IronScrew_C", + "amount": 4.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_SmelterBasicMk1_C": { + "slug": "recipe-smelterbasicmk1-c", + "name": "Smelter", + "className": "Recipe_SmelterBasicMk1_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronRod_C", + "amount": 5.0 + }, + { + "item": "Desc_Wire_C", + "amount": 8.0 + } + ], + "products": [ + { + "item": "Desc_SmelterMk1_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Cable_C": { + "slug": "recipe-cable-c", + "name": "Cable", + "className": "Recipe_Cable_C", + "alternate": false, + "time": 2.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_Wire_C", + "amount": 2.0 + } + ], + "products": [ + { + "item": "Desc_Cable_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Wire_C": { + "slug": "recipe-wire-c", + "name": "Wire", + "className": "Recipe_Wire_C", + "alternate": false, + "time": 4.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_CopperIngot_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_Wire_C", + "amount": 2.0 + } + ], + "producedIn": [ + "Desc_ConstructorMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_IngotCopper_C": { + "slug": "recipe-ingotcopper-c", + "name": "Copper Ingot", + "className": "Recipe_IngotCopper_C", + "alternate": false, + "time": 2.0, + "inHand": true, + "forBuilding": false, + "inWorkshop": false, + "inMachine": true, + "manualTimeMultiplier": 3.0, + "ingredients": [ + { + "item": "Desc_OreCopper_C", + "amount": 1.0 + } + ], + "products": [ + { + "item": "Desc_CopperIngot_C", + "amount": 1.0 + } + ], + "producedIn": [ + "Desc_SmelterMk1_C" + ], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_Workshop_C": { + "slug": "recipe-workshop-c", + "name": "Equipment Workshop", + "className": "Recipe_Workshop_C", + "alternate": false, + "time": 1.0, + "inHand": false, + "forBuilding": true, + "inWorkshop": false, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 6.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "Desc_Workshop_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + }, + "Recipe_PortableMiner_C": { + "slug": "recipe-portableminer-c", + "name": "Portable Miner", + "className": "Recipe_PortableMiner_C", + "alternate": false, + "time": 40.0, + "inHand": false, + "forBuilding": false, + "inWorkshop": true, + "inMachine": false, + "manualTimeMultiplier": 1.0, + "ingredients": [ + { + "item": "Desc_IronPlate_C", + "amount": 2.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 4.0 + } + ], + "products": [ + { + "item": "BP_ItemDescriptorPortableMiner_C", + "amount": 1.0 + } + ], + "producedIn": [], + "isVariablePower": false, + "minPower": 0, + "maxPower": 1 + } + }, + "schematics": { + "ResourceSink_Checkmark_C": { + "className": "ResourceSink_Checkmark_C", + "type": "EST_ResourceSink", + "name": "FICSIT Checkmark™", + "slug": "ficsit-checkmarktm", + "icon": "resourcesink-checkmark-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 8.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_CyberWagon_Unlock_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": false + }, + "Schematic_2-5_C": { + "className": "Schematic_2-5_C", + "type": "EST_Milestone", + "name": "Resource Sink Bonus Program", + "slug": "resource-sink-bonus-program", + "icon": "schematic-2-5-c", + "cost": [ + { + "item": "Desc_Cement_C", + "amount": 400.0 + }, + { + "item": "Desc_Wire_C", + "amount": 500.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 200.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 200.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_ResourceSink_C", + "Recipe_ResourceSinkShop_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 2, + "time": 300.0, + "mam": false, + "alternate": false + }, + "Schematic_3-1_C": { + "className": "Schematic_3-1_C", + "type": "EST_Milestone", + "name": "Coal Power", + "slug": "coal-power", + "icon": "schematic-3-1-c", + "cost": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 150.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 50.0 + }, + { + "item": "Desc_Cable_C", + "amount": 500.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_GeneratorCoal_C", + "Recipe_WaterPump_C", + "Recipe_Pipeline_C", + "Recipe_PipeSupport_C", + "Recipe_PipelineJunction_Cross_C", + "Recipe_PipelinePump_C", + "Recipe_PipeStorageTank_C" + ], + "scannerResources": [ + "" + ], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 480.0, + "mam": false, + "alternate": false + }, + "Research_Quartz_4_1_C": { + "className": "Research_Quartz_4_1_C", + "type": "EST_MAM", + "name": "Radio Signal Scanning", + "slug": "radio-signal-scanning", + "icon": "research-quartz-4-1-c", + "cost": [ + { + "item": "Desc_CrystalOscillator_C", + "amount": 100.0 + }, + { + "item": "Desc_Motor_C", + "amount": 100.0 + }, + { + "item": "BP_EquipmentDescriptorObjectScanner_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Sulfur_RocketFuel_C": { + "className": "Research_Sulfur_RocketFuel_C", + "type": "EST_MAM", + "name": "Rocket Fuel", + "slug": "rocket-fuel", + "icon": "research-sulfur-rocketfuel-c", + "cost": [ + { + "item": "Desc_HardDrive_C", + "amount": 1.0 + }, + { + "item": "Desc_GasTank_C", + "amount": 10.0 + }, + { + "item": "Desc_TurboFuel_C", + "amount": 100.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_RocketFuel_C", + "Recipe_PackagedRocketFuel_C", + "Recipe_UnpackageRocketFuel_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Schematic_Alternate_RocketFuel_Nitro_C": { + "className": "Schematic_Alternate_RocketFuel_Nitro_C", + "type": "EST_Alternate", + "name": "Alternate: Nitro Rocket Fuel", + "slug": "alternate-nitro-rocket-fuel", + "icon": "schematic-alternate-rocketfuel-nitro-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_RocketFuel_Nitro_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Sulfur_RocketFuel_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_9-2_C": { + "className": "Schematic_9-2_C", + "type": "EST_Milestone", + "name": "Quantum Encoding", + "slug": "quantum-encoding", + "icon": "schematic-9-2-c", + "cost": [ + { + "item": "Desc_TimeCrystal_C", + "amount": 50.0 + }, + { + "item": "Desc_FicsiteMesh_C", + "amount": 100.0 + }, + { + "item": "Desc_MotorLightweight_C", + "amount": 200.0 + }, + { + "item": "Desc_ComputerSuper_C", + "amount": 400.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_QuantumEncoder_C", + "Recipe_QuantumEnergy_C", + "Recipe_DarkEnergy_C", + "Recipe_DarkMatter_C", + "Recipe_SuperpositionOscillator_C", + "Recipe_TemporalProcessor_C", + "Recipe_SpaceElevatorPart_12_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 9, + "time": 1200.0, + "mam": false, + "alternate": false + }, + "Research_Sulfur_IonizedFuel_C": { + "className": "Research_Sulfur_IonizedFuel_C", + "type": "EST_MAM", + "name": "Ionized Fuel", + "slug": "ionized-fuel", + "icon": "research-sulfur-ionizedfuel-c", + "cost": [ + { + "item": "Desc_HardDrive_C", + "amount": 1.0 + }, + { + "item": "Desc_CrystalShard_C", + "amount": 100.0 + }, + { + "item": "Desc_PackagedRocketFuel_C", + "amount": 200.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_IonizedFuel_C", + "Recipe_PackagedIonizedFuel_C", + "Recipe_UnpackageIonizedFuel_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Schematic_Alternate_IonizedFuel_Dark_C": { + "className": "Schematic_Alternate_IonizedFuel_Dark_C", + "type": "EST_Alternate", + "name": "Alternate: Dark-Ion Fuel", + "slug": "alternate-dark-ion-fuel", + "icon": "schematic-alternate-ionizedfuel-dark-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_IonizedFuel_Dark_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_9-2_C", + "Research_Sulfur_IonizedFuel_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_9-1_C": { + "className": "Schematic_9-1_C", + "type": "EST_Milestone", + "name": "Matter Conversion", + "slug": "matter-conversion", + "icon": "schematic-9-1-c", + "cost": [ + { + "item": "Desc_ModularFrameFused_C", + "amount": 100.0 + }, + { + "item": "Desc_ModularFrameLightweight_C", + "amount": 250.0 + }, + { + "item": "Desc_CoolingSystem_C", + "amount": 500.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Converter_C", + "Recipe_FicsiteIngot_Iron_C", + "Recipe_FicsiteMesh_C", + "Recipe_Diamond_C", + "Recipe_TimeCrystal_C", + "Recipe_SpaceElevatorPart_10_C", + "Recipe_IngotSAM_C", + "Recipe_SAMFluctuator_C" + ], + "scannerResources": [ + "" + ], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 9, + "time": 900.0, + "mam": false, + "alternate": false + }, + "Research_Sulfur_0_C": { + "className": "Research_Sulfur_0_C", + "type": "EST_MAM", + "name": "Sulfur", + "slug": "sulfur", + "icon": "research-sulfur-0-c", + "cost": [ + { + "item": "Desc_Sulfur_C", + "amount": 10.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [ + "Desc_Sulfur_C" + ], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Schematic_5-1_C": { + "className": "Schematic_5-1_C", + "type": "EST_Milestone", + "name": "Oil Processing", + "slug": "oil-processing", + "icon": "schematic-5-1-c", + "cost": [ + { + "item": "Desc_Motor_C", + "amount": 50.0 + }, + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 100.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 500.0 + }, + { + "item": "Desc_CopperSheet_C", + "amount": 500.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PetroleumCoke_C", + "Recipe_CircuitBoard_C", + "Recipe_OilPump_C", + "Recipe_OilRefinery_C", + "Recipe_Valve_C", + "Recipe_Plastic_C", + "Recipe_Rubber_C", + "Recipe_LiquidFuel_C" + ], + "scannerResources": [ + "" + ], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 5, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Research_Sulfur_TurboFuel_C": { + "className": "Research_Sulfur_TurboFuel_C", + "type": "EST_MAM", + "name": "Turbofuel", + "slug": "turbofuel", + "icon": "research-sulfur-turbofuel-c", + "cost": [ + { + "item": "Desc_HardDrive_C", + "amount": 1.0 + }, + { + "item": "Desc_CompactedCoal_C", + "amount": 15.0 + }, + { + "item": "Desc_Fuel_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Alternate_Turbofuel_C", + "Recipe_PackagedTurboFuel_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Schematic_Alternate_Diamond_Turbo_C": { + "className": "Schematic_Alternate_Diamond_Turbo_C", + "type": "EST_Alternate", + "name": "Alternate: Turbo Diamonds", + "slug": "alternate-turbo-diamonds", + "icon": "schematic-alternate-diamond-turbo-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Diamond_Turbo_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_9-1_C", + "Research_Sulfur_TurboFuel_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Diamond_Pink_C": { + "className": "Schematic_Alternate_Diamond_Pink_C", + "type": "EST_Alternate", + "name": "Alternate: Pink Diamonds", + "slug": "alternate-pink-diamonds", + "icon": "schematic-alternate-diamond-pink-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Diamond_Pink_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_9-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Diamond_Petroleum_C": { + "className": "Schematic_Alternate_Diamond_Petroleum_C", + "type": "EST_Alternate", + "name": "Alternate: Petroleum Diamonds", + "slug": "alternate-petroleum-diamonds", + "icon": "schematic-alternate-diamond-petroleum-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Diamond_Petroleum_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_9-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Diamond_OilBased_C": { + "className": "Schematic_Alternate_Diamond_OilBased_C", + "type": "EST_Alternate", + "name": "Alternate: Oil-Based Diamonds", + "slug": "alternate-oil-based-diamonds", + "icon": "schematic-alternate-diamond-oilbased-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Diamond_OilBased_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_9-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Diamond_Cloudy_C": { + "className": "Schematic_Alternate_Diamond_Cloudy_C", + "type": "EST_Alternate", + "name": "Alternate: Cloudy Diamonds", + "slug": "alternate-cloudy-diamonds", + "icon": "schematic-alternate-diamond-cloudy-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Diamond_Cloudy_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_9-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_DarkMatter_Trap_C": { + "className": "Schematic_Alternate_DarkMatter_Trap_C", + "type": "EST_Alternate", + "name": "Alternate: Dark Matter Trap", + "slug": "alternate-dark-matter-trap", + "icon": "schematic-alternate-darkmatter-trap-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_DarkMatter_Trap_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_9-2_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_DarkMatter_Crystallization_C": { + "className": "Schematic_Alternate_DarkMatter_Crystallization_C", + "type": "EST_Alternate", + "name": "Alternate: Dark Matter Crystallization", + "slug": "alternate-dark-matter-crystallization", + "icon": "schematic-alternate-darkmatter-crystallization-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_DarkMatter_Crystallization_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_9-2_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_WetConcrete_C": { + "className": "Schematic_Alternate_WetConcrete_C", + "type": "EST_Alternate", + "name": "Alternate: Wet Concrete", + "slug": "alternate-wet-concrete", + "icon": "schematic-alternate-wetconcrete-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_WetConcrete_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_TurboHeavyFuel_C": { + "className": "Schematic_Alternate_TurboHeavyFuel_C", + "type": "EST_Alternate", + "name": "Alternate: Turbo Heavy Fuel", + "slug": "alternate-turbo-heavy-fuel", + "icon": "schematic-alternate-turboheavyfuel-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_TurboHeavyFuel_C", + "Recipe_PackagedTurboFuel_C", + "Recipe_UnpackageTurboFuel_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C", + "Schematic_Alternate_EnrichedCoal_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_3-4_C": { + "className": "Schematic_3-4_C", + "type": "EST_Milestone", + "name": "Basic Steel Production", + "slug": "basic-steel-production", + "icon": "schematic-3-4-c", + "cost": [ + { + "item": "Desc_ModularFrame_C", + "amount": 50.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 150.0 + }, + { + "item": "Desc_Cement_C", + "amount": 500.0 + }, + { + "item": "Desc_Wire_C", + "amount": 1000.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_SmelterMk1_C", + "Recipe_IngotSteel_C", + "Recipe_SteelBeam_C", + "Recipe_SteelPipe_C", + "Recipe_SpaceElevatorPart_2_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 480.0, + "mam": false, + "alternate": false + }, + "Schematic_Alternate_SteelRod_C": { + "className": "Schematic_Alternate_SteelRod_C", + "type": "EST_Alternate", + "name": "Alternate: Steel Rod", + "slug": "alternate-steel-rod", + "icon": "schematic-alternate-steelrod-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_SteelRod_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-4_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_5-4_C": { + "className": "Schematic_5-4_C", + "type": "EST_Milestone", + "name": "Fluid Packaging", + "slug": "fluid-packaging", + "icon": "schematic-5-4-c", + "cost": [ + { + "item": "Desc_Plastic_C", + "amount": 200.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 400.0 + }, + { + "item": "Desc_CopperSheet_C", + "amount": 1000.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Packager_C", + "Recipe_FluidCanister_C", + "Recipe_PackagedWater_C", + "Recipe_PackagedCrudeOil_C", + "Recipe_Fuel_C", + "Recipe_PackagedOilResidue_C", + "Recipe_PackagedBiofuel_C", + "Recipe_LiquidBiofuel_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 5, + "time": 300.0, + "mam": false, + "alternate": false + }, + "Schematic_Alternate_SteelCanister_C": { + "className": "Schematic_Alternate_SteelCanister_C", + "type": "EST_Alternate", + "name": "Alternate: Steel Canister", + "slug": "alternate-steel-canister", + "icon": "schematic-alternate-steelcanister-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_SteelCanister_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-4_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_SteamedCopperSheet_C": { + "className": "Schematic_Alternate_SteamedCopperSheet_C", + "type": "EST_Alternate", + "name": "Alternate: Steamed Copper Sheet", + "slug": "alternate-steamed-copper-sheet", + "icon": "schematic-alternate-steamedcoppersheet-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_SteamedCopperSheet_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_RubberConcrete_C": { + "className": "Schematic_Alternate_RubberConcrete_C", + "type": "EST_Alternate", + "name": "Alternate: Rubber Concrete", + "slug": "alternate-rubber-concrete", + "icon": "schematic-alternate-rubberconcrete-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_RubberConcrete_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_RecycledRubber_C": { + "className": "Schematic_Alternate_RecycledRubber_C", + "type": "EST_Alternate", + "name": "Alternate: Recycled Rubber", + "slug": "alternate-recycled-rubber", + "icon": "schematic-alternate-recycledrubber-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_RecycledRubber_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Research_Quartz_1_1_C": { + "className": "Research_Quartz_1_1_C", + "type": "EST_MAM", + "name": "Quartz Crystals", + "slug": "quartz-crystals", + "icon": "research-quartz-1-1-c", + "cost": [ + { + "item": "Desc_RawQuartz_C", + "amount": 20.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_QuartzCrystal_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Schematic_Alternate_PureQuartzCrystal_C": { + "className": "Schematic_Alternate_PureQuartzCrystal_C", + "type": "EST_Alternate", + "name": "Alternate: Pure Quartz Crystal", + "slug": "alternate-pure-quartz-crystal", + "icon": "schematic-alternate-purequartzcrystal-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_PureQuartzCrystal_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Quartz_1_1_C", + "Schematic_5-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_PureIronIngot_C": { + "className": "Schematic_Alternate_PureIronIngot_C", + "type": "EST_Alternate", + "name": "Alternate: Pure Iron Ingot", + "slug": "alternate-pure-iron-ingot", + "icon": "schematic-alternate-pureironingot-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_PureIronIngot_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_PureCopperIngot_C": { + "className": "Schematic_Alternate_PureCopperIngot_C", + "type": "EST_Alternate", + "name": "Alternate: Pure Copper Ingot", + "slug": "alternate-pure-copper-ingot", + "icon": "schematic-alternate-purecopperingot-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_PureCopperIngot_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Research_Caterium_0_C": { + "className": "Research_Caterium_0_C", + "type": "EST_MAM", + "name": "Caterium", + "slug": "caterium", + "icon": "research-caterium-0-c", + "cost": [ + { + "item": "Desc_OreGold_C", + "amount": 10.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [ + "Desc_OreGold_C" + ], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Schematic_Alternate_PureCateriumIngot_C": { + "className": "Schematic_Alternate_PureCateriumIngot_C", + "type": "EST_Alternate", + "name": "Alternate: Pure Caterium Ingot", + "slug": "alternate-pure-caterium-ingot", + "icon": "schematic-alternate-purecateriumingot-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_PureCateriumIngot_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Caterium_0_C", + "Schematic_5-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_7-1_C": { + "className": "Schematic_7-1_C", + "type": "EST_Milestone", + "name": "Bauxite Refinement", + "slug": "bauxite-refinement", + "icon": "schematic-7-1-c", + "cost": [ + { + "item": "Desc_Computer_C", + "amount": 100.0 + }, + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 100.0 + }, + { + "item": "Desc_Motor_C", + "amount": 250.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 500.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_AluminaSolution_C", + "Recipe_PackagedAlumina_C", + "Recipe_AluminumScrap_C", + "Recipe_IngotAluminum_C", + "Recipe_AluminumSheet_C", + "Recipe_AluminumCasing_C" + ], + "scannerResources": [ + "Desc_OreBauxite_C", + "Desc_RawQuartz_C" + ], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 7, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_Alternate_PureAluminumIngot_C": { + "className": "Schematic_Alternate_PureAluminumIngot_C", + "type": "EST_Alternate", + "name": "Alternate: Pure Aluminum Ingot", + "slug": "alternate-pure-aluminum-ingot", + "icon": "schematic-alternate-purealuminumingot-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_PureAluminumIngot_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_7-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_PolymerResin_C": { + "className": "Schematic_Alternate_PolymerResin_C", + "type": "EST_Alternate", + "name": "Alternate: Polymer Resin", + "slug": "alternate-polymer-resin", + "icon": "schematic-alternate-polymerresin-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_PolymerResin_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_PlasticSmartPlating_C": { + "className": "Schematic_Alternate_PlasticSmartPlating_C", + "type": "EST_Alternate", + "name": "Alternate: Plastic Smart Plating", + "slug": "alternate-plastic-smart-plating", + "icon": "schematic-alternate-plasticsmartplating-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_PlasticSmartPlating_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_4-1_C": { + "className": "Schematic_4-1_C", + "type": "EST_Milestone", + "name": "Advanced Steel Production", + "slug": "advanced-steel-production", + "icon": "schematic-4-1-c", + "cost": [ + { + "item": "Desc_SteelPipe_C", + "amount": 100.0 + }, + { + "item": "Desc_ModularFrame_C", + "amount": 100.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 200.0 + }, + { + "item": "Desc_Cement_C", + "amount": 500.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_MinerMk2_C", + "Recipe_EncasedIndustrialBeam_C", + "Recipe_Stator_C", + "Recipe_Motor_C", + "Recipe_SpaceElevatorPart_3_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 4, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Research_Caterium_4_1_C": { + "className": "Research_Caterium_4_1_C", + "type": "EST_MAM", + "name": "AI Limiter", + "slug": "ai-limiter", + "icon": "research-caterium-4-1-c", + "cost": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 200.0 + }, + { + "item": "Desc_CopperSheet_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_AILimiter_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Schematic_Alternate_HighSpeedWiring_C": { + "className": "Schematic_Alternate_HighSpeedWiring_C", + "type": "EST_Alternate", + "name": "Alternate: Automated Speed Wiring", + "slug": "alternate-automated-speed-wiring", + "icon": "schematic-alternate-highspeedwiring-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_HighSpeedWiring_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_4-1_C", + "Research_Caterium_4_1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_HeavyOilResidue_C": { + "className": "Schematic_Alternate_HeavyOilResidue_C", + "type": "EST_Alternate", + "name": "Alternate: Heavy Oil Residue", + "slug": "alternate-heavy-oil-residue", + "icon": "schematic-alternate-heavyoilresidue-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_HeavyOilResidue_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_5-2_C": { + "className": "Schematic_5-2_C", + "type": "EST_Milestone", + "name": "Industrial Manufacturing", + "slug": "industrial-manufacturing", + "icon": "schematic-5-2-c", + "cost": [ + { + "item": "Desc_Motor_C", + "amount": 200.0 + }, + { + "item": "Desc_ModularFrame_C", + "amount": 200.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 400.0 + }, + { + "item": "Desc_Cable_C", + "amount": 1000.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_ManufacturerMk1_C", + "Recipe_Computer_C", + "Recipe_ModularFrameHeavy_C", + "Recipe_SpaceElevatorPart_4_C", + "Recipe_SpaceElevatorPart_5_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 6, + "time": 900.0, + "mam": false, + "alternate": false + }, + "Schematic_Alternate_HeavyFlexibleFrame_C": { + "className": "Schematic_Alternate_HeavyFlexibleFrame_C", + "type": "EST_Alternate", + "name": "Alternate: Heavy Flexible Frame", + "slug": "alternate-heavy-flexible-frame", + "icon": "schematic-alternate-heavyflexibleframe-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_HeavyFlexibleFrame_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-2_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_FusedWire_C": { + "className": "Schematic_Alternate_FusedWire_C", + "type": "EST_Alternate", + "name": "Alternate: Fused Wire", + "slug": "alternate-fused-wire", + "icon": "schematic-alternate-fusedwire-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_FusedWire_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Caterium_0_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_FlexibleFramework_C": { + "className": "Schematic_Alternate_FlexibleFramework_C", + "type": "EST_Alternate", + "name": "Alternate: Flexible Framework", + "slug": "alternate-flexible-framework", + "icon": "schematic-alternate-flexibleframework-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_FlexibleFramework_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_ElectrodeCircuitBoard_C": { + "className": "Schematic_Alternate_ElectrodeCircuitBoard_C", + "type": "EST_Alternate", + "name": "Alternate: Electrode Circuit Board", + "slug": "alternate-electrode-circuit-board", + "icon": "schematic-alternate-electrodecircuitboard-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_ElectrodeCircuitBoard_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_ElectroAluminumScrap_C": { + "className": "Schematic_Alternate_ElectroAluminumScrap_C", + "type": "EST_Alternate", + "name": "Alternate: Electrode Aluminum Scrap", + "slug": "alternate-electrode-aluminum-scrap", + "icon": "schematic-alternate-electroaluminumscrap-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_ElectroAluminumScrap_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_7-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_DilutedPackagedFuel_C": { + "className": "Schematic_Alternate_DilutedPackagedFuel_C", + "type": "EST_Alternate", + "name": "Alternate: Diluted Packaged Fuel", + "slug": "alternate-diluted-packaged-fuel", + "icon": "schematic-alternate-dilutedpackagedfuel-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_DilutedPackagedFuel_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_2-1_C": { + "className": "Schematic_2-1_C", + "type": "EST_Milestone", + "name": "Part Assembly", + "slug": "part-assembly", + "icon": "schematic-2-1-c", + "cost": [ + { + "item": "Desc_Cable_C", + "amount": 200.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 200.0 + }, + { + "item": "Desc_IronScrew_C", + "amount": 500.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 300.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_AssemblerMk1_C", + "Recipe_CopperSheet_C", + "Recipe_Rotor_C", + "Recipe_ModularFrame_C", + "Recipe_SpaceElevatorPart_1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 2, + "time": 360.0, + "mam": false, + "alternate": false + }, + "Schematic_Alternate_CopperRotor_C": { + "className": "Schematic_Alternate_CopperRotor_C", + "type": "EST_Alternate", + "name": "Alternate: Copper Rotor", + "slug": "alternate-copper-rotor", + "icon": "schematic-alternate-copperrotor-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_CopperRotor_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_2-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_CopperAlloyIngot_C": { + "className": "Schematic_Alternate_CopperAlloyIngot_C", + "type": "EST_Alternate", + "name": "Alternate: Copper Alloy Ingot", + "slug": "alternate-copper-alloy-ingot", + "icon": "schematic-alternate-copperalloyingot-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_CopperAlloyIngot_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-4_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_CokeSteelIngot_C": { + "className": "Schematic_Alternate_CokeSteelIngot_C", + "type": "EST_Alternate", + "name": "Alternate: Coke Steel Ingot", + "slug": "alternate-coke-steel-ingot", + "icon": "schematic-alternate-cokesteelingot-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_CokeSteelIngot_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_CoatedIronPlate_C": { + "className": "Schematic_Alternate_CoatedIronPlate_C", + "type": "EST_Alternate", + "name": "Alternate: Coated Iron Plate", + "slug": "alternate-coated-iron-plate", + "icon": "schematic-alternate-coatedironplate-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_CoatedIronPlate_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_CoatedIronCanister_C": { + "className": "Schematic_Alternate_CoatedIronCanister_C", + "type": "EST_Alternate", + "name": "Alternate: Coated Iron Canister", + "slug": "alternate-coated-iron-canister", + "icon": "schematic-alternate-coatedironcanister-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_CoatedIronCanister_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-4_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_CoatedCable_C": { + "className": "Schematic_Alternate_CoatedCable_C", + "type": "EST_Alternate", + "name": "Alternate: Coated Cable", + "slug": "alternate-coated-cable", + "icon": "schematic-alternate-coatedcable-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_CoatedCable_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_BoltedFrame_C": { + "className": "Schematic_Alternate_BoltedFrame_C", + "type": "EST_Alternate", + "name": "Alternate: Bolted Frame", + "slug": "alternate-bolted-frame", + "icon": "schematic-alternate-boltedframe-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_BoltedFrame_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_2-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_AdheredIronPlate_C": { + "className": "Schematic_Alternate_AdheredIronPlate_C", + "type": "EST_Alternate", + "name": "Alternate: Adhered Iron Plate", + "slug": "alternate-adhered-iron-plate", + "icon": "schematic-alternate-adheredironplate-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_AdheredIronPlate_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_8-5_C": { + "className": "Schematic_8-5_C", + "type": "EST_Milestone", + "name": "Particle Enrichment", + "slug": "particle-enrichment", + "icon": "schematic-8-5-c", + "cost": [ + { + "item": "Desc_MotorLightweight_C", + "amount": 50.0 + }, + { + "item": "Desc_ModularFrameFused_C", + "amount": 100.0 + }, + { + "item": "Desc_CoolingSystem_C", + "amount": 200.0 + }, + { + "item": "Desc_HighSpeedWire_C", + "amount": 2500.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_NitricAcid_C", + "Recipe_PackagedNitricAcid_C", + "Recipe_NonFissileUranium_C", + "Recipe_Plutonium_C", + "Recipe_PlutoniumCell_C", + "Recipe_PlutoniumFuelRod_C", + "Recipe_HadronCollider_C", + "Recipe_CopperDust_C", + "Recipe_PressureConversionCube_C", + "Recipe_SpaceElevatorPart_9_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 8, + "time": 1200.0, + "mam": false, + "alternate": false + }, + "Schematic_Alternate_TurboPressureMotor_C": { + "className": "Schematic_Alternate_TurboPressureMotor_C", + "type": "EST_Alternate", + "name": "Alternate: Turbo Pressure Motor", + "slug": "alternate-turbo-pressure-motor", + "icon": "schematic-alternate-turbopressuremotor-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_TurboPressureMotor_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_8-5_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_7-5_C": { + "className": "Schematic_7-5_C", + "type": "EST_Milestone", + "name": "Control System Development", + "slug": "control-system-development", + "icon": "schematic-7-5-c", + "cost": [ + { + "item": "Desc_AluminumPlate_C", + "amount": 200.0 + }, + { + "item": "Desc_AluminumCasing_C", + "amount": 400.0 + }, + { + "item": "Desc_Computer_C", + "amount": 200.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 1000.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_SulfuricAcid_C", + "Recipe_PackagedSulfuricAcid_C", + "Recipe_Battery_C", + "Recipe_RadioControlUnit_C", + "Recipe_ComputerSuper_C", + "Recipe_SpaceElevatorPart_7_C", + "Recipe_Blender_C" + ], + "scannerResources": [ + "" + ], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 7, + "time": 900.0, + "mam": false, + "alternate": false + }, + "Schematic_Alternate_TurboBlendFuel_C": { + "className": "Schematic_Alternate_TurboBlendFuel_C", + "type": "EST_Alternate", + "name": "Alternate: Turbo Blend Fuel", + "slug": "alternate-turbo-blend-fuel", + "icon": "schematic-alternate-turboblendfuel-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_TurboBlendFuel_C", + "Recipe_PackagedTurboFuel_C", + "Recipe_UnpackageTurboFuel_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_7-5_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_8-1_C": { + "className": "Schematic_8-1_C", + "type": "EST_Milestone", + "name": "Nuclear Power", + "slug": "nuclear-power", + "icon": "schematic-8-1-c", + "cost": [ + { + "item": "Desc_ComputerSuper_C", + "amount": 50.0 + }, + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 200.0 + }, + { + "item": "Desc_Cable_C", + "amount": 1000.0 + }, + { + "item": "Desc_Cement_C", + "amount": 2000.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_UraniumCell_C", + "Recipe_ElectromagneticControlRod_C", + "Recipe_NuclearFuelRod_C", + "Recipe_GeneratorNuclear_C", + "Recipe_SpaceElevatorPart_6_C" + ], + "scannerResources": [ + "" + ], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 8, + "time": 900.0, + "mam": false, + "alternate": false + }, + "Schematic_Alternate_SuperStateComputer_C": { + "className": "Schematic_Alternate_SuperStateComputer_C", + "type": "EST_Alternate", + "name": "Alternate: Super-State Computer", + "slug": "alternate-super-state-computer", + "icon": "schematic-alternate-superstatecomputer-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_SuperStateComputer_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_8-1_C", + "Schematic_7-5_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_SloppyAlumina_C": { + "className": "Schematic_Alternate_SloppyAlumina_C", + "type": "EST_Alternate", + "name": "Alternate: Sloppy Alumina", + "slug": "alternate-sloppy-alumina", + "icon": "schematic-alternate-sloppyalumina-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_SloppyAlumina_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_7-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_RadioControlSystem_C": { + "className": "Schematic_Alternate_RadioControlSystem_C", + "type": "EST_Alternate", + "name": "Alternate: Radio Control System", + "slug": "alternate-radio-control-system", + "icon": "schematic-alternate-radiocontrolsystem-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_RadioControlSystem_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_7-5_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_PlutoniumFuelUnit_C": { + "className": "Schematic_Alternate_PlutoniumFuelUnit_C", + "type": "EST_Alternate", + "name": "Alternate: Plutonium Fuel Unit", + "slug": "alternate-plutonium-fuel-unit", + "icon": "schematic-alternate-plutoniumfuelunit-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_PlutoniumFuelUnit_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_8-5_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_8-2_C": { + "className": "Schematic_8-2_C", + "type": "EST_Milestone", + "name": "Advanced Aluminum Production", + "slug": "advanced-aluminum-production", + "icon": "schematic-8-2-c", + "cost": [ + { + "item": "Desc_ModularFrameLightweight_C", + "amount": 50.0 + }, + { + "item": "Desc_AluminumCasing_C", + "amount": 200.0 + }, + { + "item": "Desc_AluminumPlate_C", + "amount": 400.0 + }, + { + "item": "Desc_Wire_C", + "amount": 3000.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_FrackingSmasher_C", + "Recipe_FrackingExtractor_C", + "Recipe_GasTank_C", + "Recipe_PackagedNitrogen_C", + "Recipe_HeatSink_C", + "Recipe_CoolingSystem_C", + "Recipe_FusedModularFrame_C" + ], + "scannerResources": [ + "" + ], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 8, + "time": 900.0, + "mam": false, + "alternate": false + }, + "Schematic_Alternate_OCSupercomputer_C": { + "className": "Schematic_Alternate_OCSupercomputer_C", + "type": "EST_Alternate", + "name": "Alternate: OC Supercomputer", + "slug": "alternate-oc-supercomputer", + "icon": "schematic-alternate-ocsupercomputer-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_OCSupercomputer_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_7-5_C", + "Schematic_8-2_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_InstantScrap_C": { + "className": "Schematic_Alternate_InstantScrap_C", + "type": "EST_Alternate", + "name": "Alternate: Instant Scrap", + "slug": "alternate-instant-scrap", + "icon": "schematic-alternate-instantscrap-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_InstantScrap_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_7-1_C", + "Schematic_7-5_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_InstantPlutoniumCell_C": { + "className": "Schematic_Alternate_InstantPlutoniumCell_C", + "type": "EST_Alternate", + "name": "Alternate: Instant Plutonium Cell", + "slug": "alternate-instant-plutonium-cell", + "icon": "schematic-alternate-instantplutoniumcell-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_InstantPlutoniumCell_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_8-5_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_HeatFusedFrame_C": { + "className": "Schematic_Alternate_HeatFusedFrame_C", + "type": "EST_Alternate", + "name": "Alternate: Heat-Fused Frame", + "slug": "alternate-heat-fused-frame", + "icon": "schematic-alternate-heatfusedframe-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_HeatFusedFrame_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_8-5_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_FertileUranium_C": { + "className": "Schematic_Alternate_FertileUranium_C", + "type": "EST_Alternate", + "name": "Alternate: Fertile Uranium", + "slug": "alternate-fertile-uranium", + "icon": "schematic-alternate-fertileuranium-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_FertileUranium_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_8-5_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_ElectricMotor_C": { + "className": "Schematic_Alternate_ElectricMotor_C", + "type": "EST_Alternate", + "name": "Alternate: Electric Motor", + "slug": "alternate-electric-motor", + "icon": "schematic-alternate-electricmotor-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_ElectricMotor_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_8-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_DilutedFuel_C": { + "className": "Schematic_Alternate_DilutedFuel_C", + "type": "EST_Alternate", + "name": "Alternate: Diluted Fuel", + "slug": "alternate-diluted-fuel", + "icon": "schematic-alternate-dilutedfuel-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_DilutedFuel_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_7-5_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_CoolingDevice_C": { + "className": "Schematic_Alternate_CoolingDevice_C", + "type": "EST_Alternate", + "name": "Alternate: Cooling Device", + "slug": "alternate-cooling-device", + "icon": "schematic-alternate-coolingdevice-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_CoolingDevice_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_8-2_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_ClassicBattery_C": { + "className": "Schematic_Alternate_ClassicBattery_C", + "type": "EST_Alternate", + "name": "Alternate: Classic Battery", + "slug": "alternate-classic-battery", + "icon": "schematic-alternate-classicbattery-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_ClassicBattery_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_7-5_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_AutomatedMiner_C": { + "className": "Schematic_Alternate_AutomatedMiner_C", + "type": "EST_Alternate", + "name": "Alternate: Automated Miner", + "slug": "alternate-automated-miner", + "icon": "schematic-alternate-automatedminer-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_AutomatedMiner_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-4_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_AlcladCasing_C": { + "className": "Schematic_Alternate_AlcladCasing_C", + "type": "EST_Alternate", + "name": "Alternate: Alclad Casing", + "slug": "alternate-alclad-casing", + "icon": "schematic-alternate-alcladcasing-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_AlcladCasing_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_7-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_SteelPipe_Molded_C": { + "className": "Schematic_Alternate_SteelPipe_Molded_C", + "type": "EST_Alternate", + "name": "Alternate: Molded Steel Pipe", + "slug": "alternate-molded-steel-pipe", + "icon": "schematic-alternate-steelpipe-molded-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_SteelPipe_Molded_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-4_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_SteelPipe_Iron_C": { + "className": "Schematic_Alternate_SteelPipe_Iron_C", + "type": "EST_Alternate", + "name": "Alternate: Iron Pipe", + "slug": "alternate-iron-pipe", + "icon": "schematic-alternate-steelpipe-iron-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_SteelPipe_Iron_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-4_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_SteelCastedPlate_C": { + "className": "Schematic_Alternate_SteelCastedPlate_C", + "type": "EST_Alternate", + "name": "Alternate: Steel Cast Plate", + "slug": "alternate-steel-cast-plate", + "icon": "schematic-alternate-steelcastedplate-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_SteelCastedPlate_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-4_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_SteelBeam_Molded_C": { + "className": "Schematic_Alternate_SteelBeam_Molded_C", + "type": "EST_Alternate", + "name": "Alternate: Molded Beam", + "slug": "alternate-molded-beam", + "icon": "schematic-alternate-steelbeam-molded-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_SteelBeam_Molded_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-4_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_SteelBeam_Aluminum_C": { + "className": "Schematic_Alternate_SteelBeam_Aluminum_C", + "type": "EST_Alternate", + "name": "Alternate: Aluminum Beam", + "slug": "alternate-aluminum-beam", + "icon": "schematic-alternate-steelbeam-aluminum-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_SteelBeam_Aluminum_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_7-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_AluminumRod_C": { + "className": "Schematic_Alternate_AluminumRod_C", + "type": "EST_Alternate", + "name": "Alternate: Aluminum Rod", + "slug": "alternate-aluminum-rod", + "icon": "schematic-alternate-aluminumrod-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_AluminumRod_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_7-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_AILimiter_Plastic_C": { + "className": "Schematic_Alternate_AILimiter_Plastic_C", + "type": "EST_Alternate", + "name": "Alternate: Plastic AI Limiter", + "slug": "alternate-plastic-ai-limiter", + "icon": "schematic-alternate-ailimiter-plastic-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_AILimiter_Plastic_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Caterium_4_1_C", + "Schematic_5-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Quartz_Purified_C": { + "className": "Schematic_Alternate_Quartz_Purified_C", + "type": "EST_Alternate", + "name": "Alternate: Quartz Purification", + "slug": "alternate-quartz-purification", + "icon": "schematic-alternate-quartz-purified-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Quartz_Purified_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_7-5_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Quartz_Fused_C": { + "className": "Schematic_Alternate_Quartz_Fused_C", + "type": "EST_Alternate", + "name": "Alternate: Fused Quartz Crystal", + "slug": "alternate-fused-quartz-crystal", + "icon": "schematic-alternate-quartz-fused-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Quartz_Fused_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Quartz_1_1_C", + "Schematic_3-4_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_IronIngot_Leached_C": { + "className": "Schematic_Alternate_IronIngot_Leached_C", + "type": "EST_Alternate", + "name": "Alternate: Leached Iron ingot", + "slug": "alternate-leached-iron-ingot", + "icon": "schematic-alternate-ironingot-leached-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_IronIngot_Leached_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_7-5_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_IronIngot_Basic_C": { + "className": "Schematic_Alternate_IronIngot_Basic_C", + "type": "EST_Alternate", + "name": "Alternate: Basic Iron Ingot", + "slug": "alternate-basic-iron-ingot", + "icon": "schematic-alternate-ironingot-basic-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_IronIngot_Basic_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-4_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_CopperIngot_Tempered_C": { + "className": "Schematic_Alternate_CopperIngot_Tempered_C", + "type": "EST_Alternate", + "name": "Alternate: Tempered Copper Ingot", + "slug": "alternate-tempered-copper-ingot", + "icon": "schematic-alternate-copperingot-tempered-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_CopperIngot_Tempered_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_CopperIngot_Leached_C": { + "className": "Schematic_Alternate_CopperIngot_Leached_C", + "type": "EST_Alternate", + "name": "Alternate: Leached Copper Ingot", + "slug": "alternate-leached-copper-ingot", + "icon": "schematic-alternate-copperingot-leached-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_CopperIngot_Leached_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_7-5_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_CateriumIngot_Tempered_C": { + "className": "Schematic_Alternate_CateriumIngot_Tempered_C", + "type": "EST_Alternate", + "name": "Alternate: Tempered Caterium Ingot", + "slug": "alternate-tempered-caterium-ingot", + "icon": "schematic-alternate-cateriumingot-tempered-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_CateriumIngot_Tempered_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_CateriumIngot_Leached_C": { + "className": "Schematic_Alternate_CateriumIngot_Leached_C", + "type": "EST_Alternate", + "name": "Alternate: Leached Caterium Ingot", + "slug": "alternate-leached-caterium-ingot", + "icon": "schematic-alternate-cateriumingot-leached-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_CateriumIngot_Leached_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_7-5_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Wire2_C": { + "className": "Schematic_Alternate_Wire2_C", + "type": "EST_Alternate", + "name": "Alternate: Caterium Wire", + "slug": "alternate-caterium-wire", + "icon": "schematic-alternate-wire2-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Wire_2_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Caterium_0_C" + ], + "tier": 3, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Wire1_C": { + "className": "Schematic_Alternate_Wire1_C", + "type": "EST_Alternate", + "name": "Alternate: Iron Wire", + "slug": "alternate-iron-wire", + "icon": "schematic-alternate-wire1-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Wire_1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_7-4_C": { + "className": "Schematic_7-4_C", + "type": "EST_Milestone", + "name": "Aeronautical Engineering", + "slug": "aeronautical-engineering", + "icon": "schematic-7-4-c", + "cost": [ + { + "item": "Desc_ModularFrameLightweight_C", + "amount": 50.0 + }, + { + "item": "Desc_AluminumPlate_C", + "amount": 100.0 + }, + { + "item": "Desc_AluminumCasing_C", + "amount": 200.0 + }, + { + "item": "Desc_Motor_C", + "amount": 300.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_DroneTransport_C", + "Recipe_DroneStation_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 8, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Research_Caterium_1_C": { + "className": "Research_Caterium_1_C", + "type": "EST_MAM", + "name": "Caterium Ingots", + "slug": "caterium-ingots", + "icon": "research-caterium-1-c", + "cost": [ + { + "item": "Desc_OreGold_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_IngotCaterium_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Quartz_0_C": { + "className": "Research_Quartz_0_C", + "type": "EST_MAM", + "name": "Quartz", + "slug": "quartz", + "icon": "research-quartz-0-c", + "cost": [ + { + "item": "Desc_RawQuartz_C", + "amount": 10.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [ + "Desc_RawQuartz_C" + ], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Schematic_Alternate_UraniumCell1_C": { + "className": "Schematic_Alternate_UraniumCell1_C", + "type": "EST_Alternate", + "name": "Alternate: Infused Uranium Cell", + "slug": "alternate-infused-uranium-cell", + "icon": "schematic-alternate-uraniumcell1-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_UraniumCell_1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_8-1_C", + "Research_Caterium_1_C", + "Research_Quartz_0_C", + "Research_Sulfur_0_C" + ], + "tier": 7, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_7-2_C": { + "className": "Schematic_7-2_C", + "type": "EST_Milestone", + "name": "Logistics Mk.5", + "slug": "logistics-mk-5", + "icon": "schematic-7-2-c", + "cost": [ + { + "item": "Desc_AluminumPlate_C", + "amount": 200.0 + }, + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 400.0 + }, + { + "item": "Desc_IronPlateReinforced_C", + "amount": 600.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_ConveyorBeltMk5_C", + "Recipe_ConveyorLiftMk5_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 7, + "time": 300.0, + "mam": false, + "alternate": false + }, + "Schematic_8-4_C": { + "className": "Schematic_8-4_C", + "type": "EST_Milestone", + "name": "Leading-Edge Production", + "slug": "leading-edge-production", + "icon": "schematic-8-4-c", + "cost": [ + { + "item": "Desc_ModularFrameFused_C", + "amount": 50.0 + }, + { + "item": "Desc_ComputerSuper_C", + "amount": 100.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 1000.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_MotorTurbo_C", + "Recipe_MinerMk3_C", + "Recipe_SpaceElevatorPart_8_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 8, + "time": 300.0, + "mam": false, + "alternate": false + }, + "Research_Caterium_3_C": { + "className": "Research_Caterium_3_C", + "type": "EST_MAM", + "name": "Caterium Electronics", + "slug": "caterium-electronics", + "icon": "research-caterium-3-c", + "cost": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 100.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Schematic_Alternate_TurboMotor1_C": { + "className": "Schematic_Alternate_TurboMotor1_C", + "type": "EST_Alternate", + "name": "Alternate: Turbo Electric Motor", + "slug": "alternate-turbo-electric-motor", + "icon": "schematic-alternate-turbomotor1-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_TurboMotor_1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_8-4_C", + "Schematic_8-1_C" + ], + "tier": 7, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Stator_C": { + "className": "Schematic_Alternate_Stator_C", + "type": "EST_Alternate", + "name": "Alternate: Quickwire Stator", + "slug": "alternate-quickwire-stator", + "icon": "schematic-alternate-stator-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Stator_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_4-1_C", + "Research_Caterium_1_C" + ], + "tier": 4, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Research_Quartz_1_2_C": { + "className": "Research_Quartz_1_2_C", + "type": "EST_MAM", + "name": "Silica", + "slug": "silica", + "icon": "research-quartz-1-2-c", + "cost": [ + { + "item": "Desc_RawQuartz_C", + "amount": 20.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Silica_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Schematic_Alternate_Silica_C": { + "className": "Schematic_Alternate_Silica_C", + "type": "EST_Alternate", + "name": "Alternate: Cheap Silica", + "slug": "alternate-cheap-silica", + "icon": "schematic-alternate-silica-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Silica_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Quartz_1_2_C" + ], + "tier": 4, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Screw2_C": { + "className": "Schematic_Alternate_Screw2_C", + "type": "EST_Alternate", + "name": "Alternate: Steel Screw", + "slug": "alternate-steel-screw", + "icon": "schematic-alternate-screw2-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Screw_2_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-4_C" + ], + "tier": 4, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Screw_C": { + "className": "Schematic_Alternate_Screw_C", + "type": "EST_Alternate", + "name": "Alternate: Cast Screw", + "slug": "alternate-cast-screw", + "icon": "schematic-alternate-screw-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Screw_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Rotor_C": { + "className": "Schematic_Alternate_Rotor_C", + "type": "EST_Alternate", + "name": "Alternate: Steel Rotor", + "slug": "alternate-steel-rotor", + "icon": "schematic-alternate-rotor-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Rotor_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-4_C" + ], + "tier": 4, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_ReinforcedSteelPlate_C": { + "className": "Schematic_Alternate_ReinforcedSteelPlate_C", + "type": "EST_Alternate", + "name": "Alternate: Encased Industrial Pipe", + "slug": "alternate-encased-industrial-pipe", + "icon": "schematic-alternate-reinforcedsteelplate-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_EncasedIndustrialBeam_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_4-1_C" + ], + "tier": 4, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_ReinforcedIronPlate2_C": { + "className": "Schematic_Alternate_ReinforcedIronPlate2_C", + "type": "EST_Alternate", + "name": "Alternate: Stitched Iron Plate", + "slug": "alternate-stitched-iron-plate", + "icon": "schematic-alternate-reinforcedironplate2-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_ReinforcedIronPlate_2_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_2-1_C" + ], + "tier": 2, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_ReinforcedIronPlate1_C": { + "className": "Schematic_Alternate_ReinforcedIronPlate1_C", + "type": "EST_Alternate", + "name": "Alternate: Bolted Iron Plate", + "slug": "alternate-bolted-iron-plate", + "icon": "schematic-alternate-reinforcedironplate1-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_ReinforcedIronPlate_1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_2-1_C" + ], + "tier": 2, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Research_Caterium_5_C": { + "className": "Research_Caterium_5_C", + "type": "EST_MAM", + "name": "High-Speed Connector", + "slug": "high-speed-connector", + "icon": "research-caterium-5-c", + "cost": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 500.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_HighSpeedConnector_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Schematic_Alternate_RadioControlUnit1_C": { + "className": "Schematic_Alternate_RadioControlUnit1_C", + "type": "EST_Alternate", + "name": "Alternate: Radio Connection Unit", + "slug": "alternate-radio-connection-unit", + "icon": "schematic-alternate-radiocontrolunit1-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_RadioControlUnit_1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_8-2_C", + "Research_Caterium_4_1_C" + ], + "tier": 7, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Quickwire_C": { + "className": "Schematic_Alternate_Quickwire_C", + "type": "EST_Alternate", + "name": "Alternate: Fused Quickwire", + "slug": "alternate-fused-quickwire", + "icon": "schematic-alternate-quickwire-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Quickwire_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Caterium_1_C" + ], + "tier": 3, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Plastic1_C": { + "className": "Schematic_Alternate_Plastic1_C", + "type": "EST_Alternate", + "name": "Alternate: Recycled Plastic", + "slug": "alternate-recycled-plastic", + "icon": "schematic-alternate-plastic1-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Plastic_1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 5, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_NuclearFuelRod1_C": { + "className": "Schematic_Alternate_NuclearFuelRod1_C", + "type": "EST_Alternate", + "name": "Alternate: Uranium Fuel Unit", + "slug": "alternate-uranium-fuel-unit", + "icon": "schematic-alternate-nuclearfuelrod1-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_NuclearFuelRod_1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_8-1_C", + "Research_Quartz_1_1_C" + ], + "tier": 7, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Motor1_C": { + "className": "Schematic_Alternate_Motor1_C", + "type": "EST_Alternate", + "name": "Alternate: Rigor Motor", + "slug": "alternate-rigor-motor", + "icon": "schematic-alternate-motor1-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Motor_1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_4-1_C", + "Research_Quartz_1_1_C" + ], + "tier": 4, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_ModularFrame_C": { + "className": "Schematic_Alternate_ModularFrame_C", + "type": "EST_Alternate", + "name": "Alternate: Steeled Frame", + "slug": "alternate-steeled-frame", + "icon": "schematic-alternate-modularframe-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_ModularFrame_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-4_C" + ], + "tier": 4, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_IngotSteel2_C": { + "className": "Schematic_Alternate_IngotSteel2_C", + "type": "EST_Alternate", + "name": "Alternate: Compacted Steel Ingot", + "slug": "alternate-compacted-steel-ingot", + "icon": "schematic-alternate-ingotsteel2-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_IngotSteel_2_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_Alternate_EnrichedCoal_C", + "Schematic_3-4_C" + ], + "tier": 4, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_IngotSteel1_C": { + "className": "Schematic_Alternate_IngotSteel1_C", + "type": "EST_Alternate", + "name": "Alternate: Solid Steel Ingot", + "slug": "alternate-solid-steel-ingot", + "icon": "schematic-alternate-ingotsteel1-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_IngotSteel_1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-4_C" + ], + "tier": 4, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_IngotIron_C": { + "className": "Schematic_Alternate_IngotIron_C", + "type": "EST_Alternate", + "name": "Alternate: Iron Alloy Ingot", + "slug": "alternate-iron-alloy-ingot", + "icon": "schematic-alternate-ingotiron-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_IngotIron_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_HighSpeedConnector_C": { + "className": "Schematic_Alternate_HighSpeedConnector_C", + "type": "EST_Alternate", + "name": "Alternate: Silicon High-Speed Connector", + "slug": "alternate-silicon-high-speed-connector", + "icon": "schematic-alternate-highspeedconnector-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_HighSpeedConnector_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Caterium_5_C", + "Schematic_5-1_C", + "Research_Quartz_0_C" + ], + "tier": 5, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_HeavyModularFrame_C": { + "className": "Schematic_Alternate_HeavyModularFrame_C", + "type": "EST_Alternate", + "name": "Alternate: Heavy Encased Frame", + "slug": "alternate-heavy-encased-frame", + "icon": "schematic-alternate-heavymodularframe-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_ModularFrameHeavy_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-2_C" + ], + "tier": 4, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_HeatSink1_C": { + "className": "Schematic_Alternate_HeatSink1_C", + "type": "EST_Alternate", + "name": "Alternate: Heat Exchanger", + "slug": "alternate-heat-exchanger", + "icon": "schematic-alternate-heatsink1-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_HeatSink_1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_8-2_C" + ], + "tier": 7, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Gunpowder1_C": { + "className": "Schematic_Alternate_Gunpowder1_C", + "type": "EST_Alternate", + "name": "Alternate: Fine Black Powder", + "slug": "alternate-fine-black-powder", + "icon": "schematic-alternate-gunpowder1-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Gunpowder_1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_Alternate_EnrichedCoal_C" + ], + "tier": 4, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_ElectromagneticControlRod1_C": { + "className": "Schematic_Alternate_ElectromagneticControlRod1_C", + "type": "EST_Alternate", + "name": "Alternate: Electromagnetic Connection Rod", + "slug": "alternate-electromagnetic-connection-rod", + "icon": "schematic-alternate-electromagneticcontrolrod1-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_ElectromagneticControlRod_1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_8-1_C", + "Research_Caterium_4_1_C" + ], + "tier": 7, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Research_Quartz_2_C": { + "className": "Research_Quartz_2_C", + "type": "EST_MAM", + "name": "Crystal Oscillator", + "slug": "crystal-oscillator", + "icon": "research-quartz-2-c", + "cost": [ + { + "item": "Desc_QuartzCrystal_C", + "amount": 100.0 + }, + { + "item": "Desc_IronPlateReinforced_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_CrystalOscillator_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Schematic_Alternate_CrystalOscillator_C": { + "className": "Schematic_Alternate_CrystalOscillator_C", + "type": "EST_Alternate", + "name": "Alternate: Insulated Crystal Oscillator", + "slug": "alternate-insulated-crystal-oscillator", + "icon": "schematic-alternate-crystaloscillator-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_CrystalOscillator_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Quartz_2_C", + "Research_Caterium_3_C", + "Schematic_5-1_C" + ], + "tier": 5, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Concrete_C": { + "className": "Schematic_Alternate_Concrete_C", + "type": "EST_Alternate", + "name": "Alternate: Fine Concrete", + "slug": "alternate-fine-concrete", + "icon": "schematic-alternate-concrete-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Concrete_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Quartz_0_C" + ], + "tier": 4, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Computer2_C": { + "className": "Schematic_Alternate_Computer2_C", + "type": "EST_Alternate", + "name": "Alternate: Crystal Computer", + "slug": "alternate-crystal-computer", + "icon": "schematic-alternate-computer2-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Computer_2_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-2_C", + "Research_Quartz_1_1_C" + ], + "tier": 5, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Computer1_C": { + "className": "Schematic_Alternate_Computer1_C", + "type": "EST_Alternate", + "name": "Alternate: Caterium Computer", + "slug": "alternate-caterium-computer", + "icon": "schematic-alternate-computer1-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Computer_1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-2_C", + "Research_Caterium_1_C" + ], + "tier": 5, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Coal2_C": { + "className": "Schematic_Alternate_Coal2_C", + "type": "EST_Alternate", + "name": "Alternate: Biocoal", + "slug": "alternate-biocoal", + "icon": "schematic-alternate-coal2-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Coal_2_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-1_C" + ], + "tier": 3, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Coal1_C": { + "className": "Schematic_Alternate_Coal1_C", + "type": "EST_Alternate", + "name": "Alternate: Charcoal", + "slug": "alternate-charcoal", + "icon": "schematic-alternate-coal1-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Coal_1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-1_C" + ], + "tier": 3, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_CircuitBoard2_C": { + "className": "Schematic_Alternate_CircuitBoard2_C", + "type": "EST_Alternate", + "name": "Alternate: Caterium Circuit Board", + "slug": "alternate-caterium-circuit-board", + "icon": "schematic-alternate-circuitboard2-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_CircuitBoard_2_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C", + "Research_Caterium_1_C" + ], + "tier": 5, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_CircuitBoard1_C": { + "className": "Schematic_Alternate_CircuitBoard1_C", + "type": "EST_Alternate", + "name": "Alternate: Silicon Circuit Board", + "slug": "alternate-silicon-circuit-board", + "icon": "schematic-alternate-circuitboard1-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_CircuitBoard_1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C", + "Research_Quartz_0_C" + ], + "tier": 5, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Cable2_C": { + "className": "Schematic_Alternate_Cable2_C", + "type": "EST_Alternate", + "name": "Alternate: Quickwire Cable", + "slug": "alternate-quickwire-cable", + "icon": "schematic-alternate-cable2-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Cable_2_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C", + "Research_Caterium_1_C" + ], + "tier": 5, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_Cable1_C": { + "className": "Schematic_Alternate_Cable1_C", + "type": "EST_Alternate", + "name": "Alternate: Insulated Cable", + "slug": "alternate-insulated-cable", + "icon": "schematic-alternate-cable1-c", + "cost": [], + "unlock": { + "recipes": [ + "Recipe_Alternate_Cable_1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 5, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_InventorySlots2_C": { + "className": "Schematic_Alternate_InventorySlots2_C", + "type": "EST_Alternate", + "name": "Inflated Pocket Dimension", + "slug": "inflated-pocket-dimension", + "icon": "schematic-alternate-inventoryslots2-c", + "cost": [], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 6, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-2_C" + ], + "tier": 5, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Alternate_InventorySlots1_C": { + "className": "Schematic_Alternate_InventorySlots1_C", + "type": "EST_Alternate", + "name": "Inflated Pocket Dimension", + "slug": "inflated-pocket-dimension", + "icon": "schematic-alternate-inventoryslots1-c", + "cost": [], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 6, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 2, + "time": 0.0, + "mam": false, + "alternate": true + }, + "Schematic_Skin_Buildgun_Striped_C": { + "className": "Schematic_Skin_Buildgun_Striped_C", + "type": "EST_Customization", + "name": "Striped Build Gun", + "slug": "striped-build-gun", + "icon": "schematic-skin-buildgun-striped-c", + "cost": [], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_Skin_Buildgun_HalfNHalf_C": { + "className": "Schematic_Skin_Buildgun_HalfNHalf_C", + "type": "EST_Customization", + "name": "FICSIT Half 'n' Half Build Gun", + "slug": "ficsit-half-n-half-build-gun", + "icon": "schematic-skin-buildgun-halfnhalf-c", + "cost": [], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_Skin_Buildgun_Golden_C": { + "className": "Schematic_Skin_Buildgun_Golden_C", + "type": "EST_Customization", + "name": "Golden Build Gun", + "slug": "golden-build-gun", + "icon": "schematic-skin-buildgun-golden-c", + "cost": [], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_Skin_Buildgun_Default_C": { + "className": "Schematic_Skin_Buildgun_Default_C", + "type": "EST_Customization", + "name": "Standard FICSIT Build Gun", + "slug": "standard-ficsit-build-gun", + "icon": "schematic-skin-buildgun-default-c", + "cost": [], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_Skin_Buildgun_ColoredSides_C": { + "className": "Schematic_Skin_Buildgun_ColoredSides_C", + "type": "EST_Customization", + "name": "Alternative FICSIT Build Gun", + "slug": "alternative-ficsit-build-gun", + "icon": "schematic-skin-buildgun-coloredsides-c", + "cost": [], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_Skin_Buildgun_Camo_C": { + "className": "Schematic_Skin_Buildgun_Camo_C", + "type": "EST_Customization", + "name": "Camo Build Gun", + "slug": "camo-build-gun", + "icon": "schematic-skin-buildgun-camo-c", + "cost": [], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_Helmet_Welder_C": { + "className": "Schematic_Helmet_Welder_C", + "type": "EST_Customization", + "name": "Welder Helmet", + "slug": "welder-helmet", + "icon": "schematic-helmet-welder-c", + "cost": [], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_Helmet_Scout_C": { + "className": "Schematic_Helmet_Scout_C", + "type": "EST_Customization", + "name": "Scout Helmet", + "slug": "scout-helmet", + "icon": "schematic-helmet-scout-c", + "cost": [], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_Helmet_Golden_C": { + "className": "Schematic_Helmet_Golden_C", + "type": "EST_Customization", + "name": "Golden Helmet", + "slug": "golden-helmet", + "icon": "schematic-helmet-golden-c", + "cost": [], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_Helmet_Default_C": { + "className": "Schematic_Helmet_Default_C", + "type": "EST_Customization", + "name": "Standard FICSIT Helmet", + "slug": "standard-ficsit-helmet", + "icon": "schematic-helmet-default-c", + "cost": [], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_Helmet_Bobble_C": { + "className": "Schematic_Helmet_Bobble_C", + "type": "EST_Customization", + "name": "Bobblehead Helmet", + "slug": "bobblehead-helmet", + "icon": "schematic-helmet-bobble-c", + "cost": [], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_Helmet_Beta_C": { + "className": "Schematic_Helmet_Beta_C", + "type": "EST_Customization", + "name": "B-374 Helmet", + "slug": "b-374-helmet", + "icon": "schematic-helmet-beta-c", + "cost": [], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_Trinket_Somersloop_C": { + "className": "Schematic_Trinket_Somersloop_C", + "type": "EST_Customization", + "name": "Somersloop Trinket", + "slug": "somersloop-trinket", + "icon": "schematic-trinket-somersloop-c", + "cost": [], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_Trinket_Nut_C": { + "className": "Schematic_Trinket_Nut_C", + "type": "EST_Customization", + "name": "Golden Nut Trinket", + "slug": "golden-nut-trinket", + "icon": "schematic-trinket-nut-c", + "cost": [], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_Trinket_NuclearWaste_C": { + "className": "Schematic_Trinket_NuclearWaste_C", + "type": "EST_Customization", + "name": "Nuclear Waste Trinket", + "slug": "nuclear-waste-trinket", + "icon": "schematic-trinket-nuclearwaste-c", + "cost": [], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_Trinket_FicsitCoupon_C": { + "className": "Schematic_Trinket_FicsitCoupon_C", + "type": "EST_Customization", + "name": "Coupon Trinket", + "slug": "coupon-trinket", + "icon": "schematic-trinket-ficsitcoupon-c", + "cost": [], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_Trinket_Default_C": { + "className": "Schematic_Trinket_Default_C", + "type": "EST_Customization", + "name": "Wrench Trinket", + "slug": "wrench-trinket", + "icon": "schematic-trinket-default-c", + "cost": [], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_Trinket_Checkit_C": { + "className": "Schematic_Trinket_Checkit_C", + "type": "EST_Customization", + "name": "Checkit Trinket", + "slug": "checkit-trinket", + "icon": "schematic-trinket-checkit-c", + "cost": [], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_9-5_C": { + "className": "Schematic_9-5_C", + "type": "EST_Milestone", + "name": "Peak Efficiency", + "slug": "peak-efficiency", + "icon": "schematic-9-5-c", + "cost": [ + { + "item": "Desc_TimeCrystal_C", + "amount": 250.0 + }, + { + "item": "Desc_FicsiteMesh_C", + "amount": 250.0 + }, + { + "item": "Desc_AluminumPlate_C", + "amount": 5000.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 10000.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_ConveyorBeltMk6_C", + "Recipe_ConveyorLiftMk6_C", + "Recipe_Ficsonium_C", + "Recipe_FicsoniumFuelRod_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 9, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_9-4_C": { + "className": "Schematic_9-4_C", + "type": "EST_Milestone", + "name": "Spatial Energy Regulation", + "slug": "spatial-energy-regulation", + "icon": "schematic-9-4-c", + "cost": [ + { + "item": "Desc_QuantumOscillator_C", + "amount": 100.0 + }, + { + "item": "Desc_MotorLightweight_C", + "amount": 250.0 + }, + { + "item": "Desc_ModularFrameLightweight_C", + "amount": 500.0 + }, + { + "item": "Desc_SAMFluctuator_C", + "amount": 1000.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Portal_C", + "Recipe_PortalSatellite_C", + "Recipe_SingularityCell_C", + "Recipe_SpaceElevatorPart_11_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 9, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_9-3_C": { + "className": "Schematic_9-3_C", + "type": "EST_Milestone", + "name": "FICSIT Blueprints Mk.3", + "slug": "ficsit-blueprints-mk-3", + "icon": "schematic-9-3-c", + "cost": [ + { + "item": "Desc_TemporalProcessor_C", + "amount": 100.0 + }, + { + "item": "Desc_TimeCrystal_C", + "amount": 250.0 + }, + { + "item": "Desc_FicsiteMesh_C", + "amount": 500.0 + }, + { + "item": "Desc_ModularFrameFused_C", + "amount": 500.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_BlueprintDesigner_Mk3_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 9, + "time": 900.0, + "mam": false, + "alternate": false + }, + "Schematic_8-3_C": { + "className": "Schematic_8-3_C", + "type": "EST_Milestone", + "name": "Hoverpack", + "slug": "hoverpack", + "icon": "schematic-8-3-c", + "cost": [ + { + "item": "Desc_AluminumPlate_C", + "amount": 100.0 + }, + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 100.0 + }, + { + "item": "Desc_Computer_C", + "amount": 100.0 + }, + { + "item": "Desc_Motor_C", + "amount": 250.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Hoverpack_C" + ], + "scannerResources": [], + "inventorySlots": 3, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 7, + "time": 300.0, + "mam": false, + "alternate": false + }, + "Schematic_7-3_C": { + "className": "Schematic_7-3_C", + "type": "EST_Milestone", + "name": "Hazmat Suit", + "slug": "hazmat-suit", + "icon": "schematic-7-3-c", + "cost": [ + { + "item": "Desc_Filter_C", + "amount": 50.0 + }, + { + "item": "Desc_AluminumCasing_C", + "amount": 100.0 + }, + { + "item": "Desc_HighSpeedWire_C", + "amount": 500.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_HazmatSuit_C", + "Recipe_FilterHazmat_C" + ], + "scannerResources": [], + "inventorySlots": 3, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 7, + "time": 300.0, + "mam": false, + "alternate": false + }, + "Schematic_6-7_C": { + "className": "Schematic_6-7_C", + "type": "EST_Milestone", + "name": "Railway Signalling", + "slug": "railway-signalling", + "icon": "schematic-6-7-c", + "cost": [ + { + "item": "Desc_Computer_C", + "amount": 50.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 400.0 + }, + { + "item": "Desc_CopperSheet_C", + "amount": 1000.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_RailroadBlockSignal_C", + "Recipe_RailroadPathSignal_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 6, + "time": 300.0, + "mam": false, + "alternate": false + }, + "Schematic_6-6_C": { + "className": "Schematic_6-6_C", + "type": "EST_Milestone", + "name": "FICSIT Blueprints Mk.2", + "slug": "ficsit-blueprints-mk-2", + "icon": "schematic-6-6-c", + "cost": [ + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 100.0 + }, + { + "item": "Desc_Computer_C", + "amount": 100.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 400.0 + }, + { + "item": "Desc_Cement_C", + "amount": 1500.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_BlueprintDesigner_Mk2_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 6, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_6-5_C": { + "className": "Schematic_6-5_C", + "type": "EST_Milestone", + "name": "Pipeline Engineering Mk.2", + "slug": "pipeline-engineering-mk-2", + "icon": "schematic-6-5-c", + "cost": [ + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 50.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 1000.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 1000.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PipelineMK2_C", + "Recipe_PipelinePumpMK2_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 6, + "time": 300.0, + "mam": false, + "alternate": false + }, + "Schematic_6-3_C": { + "className": "Schematic_6-3_C", + "type": "EST_Milestone", + "name": "Monorail Train Technology", + "slug": "monorail-train-technology", + "icon": "schematic-6-3-c", + "cost": [ + { + "item": "Desc_Motor_C", + "amount": 250.0 + }, + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 500.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 1000.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 1000.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Locomotive_C", + "Recipe_FreightWagon_C", + "Recipe_RailroadTrack_C", + "Recipe_TrainStation_C", + "Recipe_TrainDockingStation_C", + "Recipe_TrainDockingStationLiquid_C", + "Recipe_TrainPlatformEmpty_C", + "Recipe_TrainPlatformEmpty_02_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 6, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_6-2_C": { + "className": "Schematic_6-2_C", + "type": "EST_Milestone", + "name": "Jetpack", + "slug": "jetpack", + "icon": "schematic-6-2-c", + "cost": [ + { + "item": "Desc_Motor_C", + "amount": 50.0 + }, + { + "item": "Desc_Cable_C", + "amount": 1000.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 1000.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_JetPack_C" + ], + "scannerResources": [], + "inventorySlots": 3, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 5, + "time": 300.0, + "mam": false, + "alternate": false + }, + "Schematic_6-1_C": { + "className": "Schematic_6-1_C", + "type": "EST_Milestone", + "name": "Logistics Mk.4", + "slug": "logistics-mk-4", + "icon": "schematic-6-1-c", + "cost": [ + { + "item": "Desc_Rubber_C", + "amount": 200.0 + }, + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 300.0 + }, + { + "item": "Desc_ModularFrame_C", + "amount": 400.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_ConveyorBeltMk4_C", + "Recipe_ConveyorLiftMk4_C", + "Recipe_Truck_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 5, + "time": 300.0, + "mam": false, + "alternate": false + }, + "Schematic_5-5_C": { + "className": "Schematic_5-5_C", + "type": "EST_Milestone", + "name": "Petroleum Power", + "slug": "petroleum-power", + "icon": "schematic-5-5-c", + "cost": [ + { + "item": "Desc_Motor_C", + "amount": 100.0 + }, + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 100.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 200.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 200.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_GeneratorFuel_C", + "Recipe_IndustrialTank_C" + ], + "scannerResources": [ + "Desc_OreGold_C" + ], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 5, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_5-3_C": { + "className": "Schematic_5-3_C", + "type": "EST_Milestone", + "name": "Logistics Mk.3", + "slug": "logistics-mk-3", + "icon": "schematic-5-3-c", + "cost": [ + { + "item": "Desc_SteelPlate_C", + "amount": 200.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 200.0 + }, + { + "item": "Desc_IronPlateReinforced_C", + "amount": 400.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_StorageContainerMk2_C", + "Recipe_ConveyorBeltMk3_C", + "Recipe_ConveyorLiftMk3_C", + "Recipe_PipeSupportStackable_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 4, + "time": 300.0, + "mam": false, + "alternate": false + }, + "Schematic_4-5_C": { + "className": "Schematic_4-5_C", + "type": "EST_Milestone", + "name": "FICSIT Blueprints", + "slug": "ficsit-blueprints", + "icon": "schematic-4-5-c", + "cost": [ + { + "item": "Desc_ModularFrame_C", + "amount": 100.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 200.0 + }, + { + "item": "Desc_Cable_C", + "amount": 500.0 + }, + { + "item": "Desc_Cement_C", + "amount": 1000.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_BlueprintDesigner_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 4, + "time": 300.0, + "mam": false, + "alternate": false + }, + "Schematic_4-4_C": { + "className": "Schematic_4-4_C", + "type": "EST_Milestone", + "name": "Hypertubes", + "slug": "hypertubes", + "icon": "schematic-4-4-c", + "cost": [ + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 50.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 300.0 + }, + { + "item": "Desc_CopperSheet_C", + "amount": 500.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PipeHyperStart_C", + "Recipe_PipeHyper_C", + "Recipe_PipeHyperSupport_C", + "Recipe_HyperPoleStackable_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 4, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_4-3_C": { + "className": "Schematic_4-3_C", + "type": "EST_Milestone", + "name": "Expanded Power Infrastructure", + "slug": "expanded-power-infrastructure", + "icon": "schematic-4-3-c", + "cost": [ + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 50.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 100.0 + }, + { + "item": "Desc_ModularFrame_C", + "amount": 200.0 + }, + { + "item": "Desc_Wire_C", + "amount": 2000.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PowerStorageMk1_C", + "Recipe_PowerTower_C", + "Recipe_PowerTowerPlatform_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 4, + "time": 300.0, + "mam": false, + "alternate": false + }, + "Schematic_4-2_C": { + "className": "Schematic_4-2_C", + "type": "EST_Milestone", + "name": "Enhanced Asset Security", + "slug": "enhanced-asset-security", + "icon": "schematic-4-2-c", + "cost": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 100.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 600.0 + }, + { + "item": "Desc_Wire_C", + "amount": 1500.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_XenoBasher_C" + ], + "scannerResources": [], + "inventorySlots": 3, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 180.0, + "mam": false, + "alternate": false + }, + "Schematic_3-3_C": { + "className": "Schematic_3-3_C", + "type": "EST_Milestone", + "name": "Vehicular Transport", + "slug": "vehicular-transport", + "icon": "schematic-3-3-c", + "cost": [ + { + "item": "Desc_ModularFrame_C", + "amount": 25.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 100.0 + }, + { + "item": "Desc_Cable_C", + "amount": 200.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 400.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Tractor_C", + "Recipe_TruckStation_C" + ], + "scannerResources": [], + "inventorySlots": 3, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 240.0, + "mam": false, + "alternate": false + }, + "Schematic_3-2_C": { + "className": "Schematic_3-2_C", + "type": "EST_Milestone", + "name": "Logistics Mk.2", + "slug": "logistics-mk-2", + "icon": "schematic-3-2-c", + "cost": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 50.0 + }, + { + "item": "Desc_Cement_C", + "amount": 200.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 300.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 300.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_ConveyorBeltMk2_C", + "Recipe_ConveyorPoleStackable_C", + "Recipe_ConveyorLiftMk2_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 2, + "time": 360.0, + "mam": false, + "alternate": false + }, + "Schematic_2-3_C": { + "className": "Schematic_2-3_C", + "type": "EST_Milestone", + "name": "Jump Pads", + "slug": "jump-pads", + "icon": "schematic-2-3-c", + "cost": [ + { + "item": "Desc_Rotor_C", + "amount": 50.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 300.0 + }, + { + "item": "Desc_Cable_C", + "amount": 150.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_JumpPadAdjustable_C", + "Recipe_UJellyLandingPad_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 2, + "time": 240.0, + "mam": false, + "alternate": false + }, + "Schematic_2-2_C": { + "className": "Schematic_2-2_C", + "type": "EST_Milestone", + "name": "Obstacle Clearing", + "slug": "obstacle-clearing", + "icon": "schematic-2-2-c", + "cost": [ + { + "item": "Desc_IronScrew_C", + "amount": 500.0 + }, + { + "item": "Desc_Cable_C", + "amount": 100.0 + }, + { + "item": "Desc_Cement_C", + "amount": 100.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Chainsaw_C", + "Recipe_Biofuel_C" + ], + "scannerResources": [], + "inventorySlots": 3, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 2, + "time": 180.0, + "mam": false, + "alternate": false + }, + "Research_ACarapace_0_C": { + "className": "Research_ACarapace_0_C", + "type": "EST_MAM", + "name": "Hog Research", + "slug": "hog-research", + "icon": "research-acarapace-0-c", + "cost": [ + { + "item": "Desc_HogParts_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Protein_Hog_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_AOrgans_0_C": { + "className": "Research_AOrgans_0_C", + "type": "EST_MAM", + "name": "Spitter Research", + "slug": "spitter-research", + "icon": "research-aorgans-0-c", + "cost": [ + { + "item": "Desc_SpitterParts_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Protein_Spitter_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Alien_Somersloop_C": { + "className": "Research_Alien_Somersloop_C", + "type": "EST_MAM", + "name": "Somersloop Analysis", + "slug": "somersloop-analysis", + "icon": "research-alien-somersloop-c", + "cost": [ + { + "item": "Desc_WAT1_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Mycelia_1_C": { + "className": "Research_Mycelia_1_C", + "type": "EST_MAM", + "name": "Mycelia", + "slug": "mycelia", + "icon": "research-mycelia-1-c", + "cost": [ + { + "item": "Desc_Mycelia_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Biomass_Mycelia_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Nutrients_0_C": { + "className": "Research_Nutrients_0_C", + "type": "EST_MAM", + "name": "Paleberry", + "slug": "paleberry", + "icon": "research-nutrients-0-c", + "cost": [ + { + "item": "Desc_Berry_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_PowerSlugs_3_C": { + "className": "Research_PowerSlugs_3_C", + "type": "EST_MAM", + "name": "Slug Scanning", + "slug": "slug-scanning", + "icon": "research-powerslugs-3-c", + "cost": [ + { + "item": "Desc_IronRod_C", + "amount": 50.0 + }, + { + "item": "Desc_Wire_C", + "amount": 100.0 + }, + { + "item": "Desc_IronScrew_C", + "amount": 200.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_PowerSlugs_1_C": { + "className": "Research_PowerSlugs_1_C", + "type": "EST_MAM", + "name": "Blue Power Slugs", + "slug": "blue-power-slugs", + "icon": "research-powerslugs-1-c", + "cost": [ + { + "item": "Desc_Crystal_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PowerCrystalShard_1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Sulfur_1_C": { + "className": "Research_Sulfur_1_C", + "type": "EST_MAM", + "name": "Black Powder", + "slug": "black-powder", + "icon": "research-sulfur-1-c", + "cost": [ + { + "item": "Desc_Sulfur_C", + "amount": 50.0 + }, + { + "item": "Desc_Coal_C", + "amount": 25.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Gunpowder_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_HardDrive_0_C": { + "className": "Research_HardDrive_0_C", + "type": "EST_HardDrive", + "name": "Hard Drives", + "slug": "hard-drives", + "icon": "research-harddrive-0-c", + "cost": [ + { + "item": "Desc_HardDrive_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_1-3_C": { + "className": "Schematic_1-3_C", + "type": "EST_Milestone", + "name": "Field Research", + "slug": "field-research", + "icon": "schematic-1-3-c", + "cost": [ + { + "item": "Desc_Wire_C", + "amount": 300.0 + }, + { + "item": "Desc_IronScrew_C", + "amount": 300.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 100.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Mam_C", + "Recipe_ObjectScanner_C", + "Recipe_StoragePlayer_C" + ], + "scannerResources": [], + "inventorySlots": 3, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 180.0, + "mam": false, + "alternate": false + }, + "Schematic_1-2_C": { + "className": "Schematic_1-2_C", + "type": "EST_Milestone", + "name": "Logistics", + "slug": "logistics", + "icon": "schematic-1-2-c", + "cost": [ + { + "item": "Desc_IronPlate_C", + "amount": 150.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 150.0 + }, + { + "item": "Desc_Wire_C", + "amount": 300.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_ConveyorAttachmentSplitter_C", + "Recipe_ConveyorAttachmentMerger_C", + "Recipe_ConveyorLiftMk1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 240.0, + "mam": false, + "alternate": false + }, + "Schematic_1-1_C": { + "className": "Schematic_1-1_C", + "type": "EST_Milestone", + "name": "Base Building", + "slug": "base-building", + "icon": "schematic-1-1-c", + "cost": [ + { + "item": "Desc_Cement_C", + "amount": 200.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 100.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 100.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_LookoutTower_C", + "Recipe_Foundation_8x1_01_C", + "Recipe_Foundation_8x2_01_C", + "Recipe_Foundation_8x4_01_C", + "Recipe_Ramp_8x1_01_C", + "Recipe_Ramp_8x2_01_C", + "Recipe_Ramp_8x4_01_C", + "Recipe_Wall_8x4_01_C", + "Recipe_Wall_Orange_8x1_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 120.0, + "mam": false, + "alternate": false + }, + "Research_AO_Stinger_C": { + "className": "Research_AO_Stinger_C", + "type": "EST_MAM", + "name": "Stinger Research", + "slug": "stinger-research", + "icon": "research-ao-stinger-c", + "cost": [ + { + "item": "Desc_StingerParts_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Protein_Stinger_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_AO_Pre_Rebar_C": { + "className": "Research_AO_Pre_Rebar_C", + "type": "EST_MAM", + "name": "Structural Analysis", + "slug": "structural-analysis", + "icon": "research-ao-pre-rebar-c", + "cost": [ + { + "item": "Desc_AlienDNACapsule_C", + "amount": 5.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 100.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_AO_Hatcher_C": { + "className": "Research_AO_Hatcher_C", + "type": "EST_MAM", + "name": "Hatcher Research", + "slug": "hatcher-research", + "icon": "research-ao-hatcher-c", + "cost": [ + { + "item": "Desc_HatcherParts_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Protein_Crab_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_AO_DNACapsule_C": { + "className": "Research_AO_DNACapsule_C", + "type": "EST_MAM", + "name": "Bio-Organic Properties", + "slug": "bio-organic-properties", + "icon": "research-ao-dnacapsule-c", + "cost": [ + { + "item": "Desc_AlienProtein_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_AlienDNACapsule_C", + "Recipe_Biomass_AlienProtein_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_AOrgans_3_C": { + "className": "Research_AOrgans_3_C", + "type": "EST_MAM", + "name": "Inflated Pocket Dimension", + "slug": "inflated-pocket-dimension", + "icon": "research-aorgans-3-c", + "cost": [ + { + "item": "Desc_AlienProtein_C", + "amount": 3.0 + }, + { + "item": "Desc_Cable_C", + "amount": 1000.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 6, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_AOrgans_2_C": { + "className": "Research_AOrgans_2_C", + "type": "EST_MAM", + "name": "Protein Inhaler", + "slug": "protein-inhaler", + "icon": "research-aorgans-2-c", + "cost": [ + { + "item": "Desc_AlienProtein_C", + "amount": 2.0 + }, + { + "item": "Desc_Nut_C", + "amount": 20.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_MedicinalInhalerAlienOrgans_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_AOrganisms_2_C": { + "className": "Research_AOrganisms_2_C", + "type": "EST_MAM", + "name": "Hostile Organism Detection", + "slug": "hostile-organism-detection", + "icon": "research-aorganisms-2-c", + "cost": [ + { + "item": "Desc_AlienDNACapsule_C", + "amount": 10.0 + }, + { + "item": "Desc_CrystalOscillator_C", + "amount": 5.0 + }, + { + "item": "Desc_HighSpeedConnector_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_ACarapace_3_C": { + "className": "Research_ACarapace_3_C", + "type": "EST_MAM", + "name": "Expanded Toolbelt", + "slug": "expanded-toolbelt", + "icon": "research-acarapace-3-c", + "cost": [ + { + "item": "Desc_AlienDNACapsule_C", + "amount": 5.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 500.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_ACarapace_2_C": { + "className": "Research_ACarapace_2_C", + "type": "EST_MAM", + "name": "The Rebar Gun", + "slug": "the-rebar-gun", + "icon": "research-acarapace-2-c", + "cost": [ + { + "item": "Desc_Rotor_C", + "amount": 25.0 + }, + { + "item": "Desc_IronPlateReinforced_C", + "amount": 50.0 + }, + { + "item": "Desc_IronScrew_C", + "amount": 500.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_RebarGun_C", + "Recipe_SpikedRebar_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Alien_SAMFluctuator_C": { + "className": "Research_Alien_SAMFluctuator_C", + "type": "EST_MAM", + "name": "SAM Fluctuator", + "slug": "sam-fluctuator", + "icon": "research-alien-samfluctuator-c", + "cost": [ + { + "item": "Desc_SAMIngot_C", + "amount": 10.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 100.0 + }, + { + "item": "Desc_Wire_C", + "amount": 200.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_SAMFluctuator_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Alien_SAM_C": { + "className": "Research_Alien_SAM_C", + "type": "EST_MAM", + "name": "SAM Analysis", + "slug": "sam-analysis", + "icon": "research-alien-sam-c", + "cost": [ + { + "item": "Desc_SAM_C", + "amount": 10.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [ + "" + ], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Alien_ProductionBooster_C": { + "className": "Research_Alien_ProductionBooster_C", + "type": "EST_MAM", + "name": "Production Amplifier", + "slug": "production-amplifier", + "icon": "research-alien-productionbooster-c", + "cost": [ + { + "item": "Desc_WAT1_C", + "amount": 1.0 + }, + { + "item": "Desc_SAMFluctuator_C", + "amount": 100.0 + }, + { + "item": "Desc_CircuitBoard_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Alien_BoosterFuel_C": { + "className": "Research_Alien_BoosterFuel_C", + "type": "EST_MAM", + "name": "Alien Power Matrix", + "slug": "alien-power-matrix", + "icon": "research-alien-boosterfuel-c", + "cost": [ + { + "item": "Desc_SingularityCell_C", + "amount": 50.0 + }, + { + "item": "Desc_CrystalShard_C", + "amount": 100.0 + }, + { + "item": "Desc_SAMFluctuator_C", + "amount": 500.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_AlienPowerFuel_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Alien_PowerBooster_C": { + "className": "Research_Alien_PowerBooster_C", + "type": "EST_MAM", + "name": "Power Augmenter", + "slug": "power-augmenter", + "icon": "research-alien-powerbooster-c", + "cost": [ + { + "item": "Desc_WAT1_C", + "amount": 1.0 + }, + { + "item": "Desc_SAMFluctuator_C", + "amount": 100.0 + }, + { + "item": "Desc_Computer_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_AlienPowerBuilding_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Alien_MercerSphere_C": { + "className": "Research_Alien_MercerSphere_C", + "type": "EST_MAM", + "name": "Mercer Sphere Analysis", + "slug": "mercer-sphere-analysis", + "icon": "research-alien-mercersphere-c", + "cost": [ + { + "item": "Desc_WAT2_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Alien_CentralUploadBoost_04_C": { + "className": "Research_Alien_CentralUploadBoost_04_C", + "type": "EST_MAM", + "name": "Upload Upgrade: 240/min", + "slug": "upload-upgrade-240-min", + "icon": "research-alien-centraluploadboost-04-c", + "cost": [ + { + "item": "Desc_WAT2_C", + "amount": 23.0 + }, + { + "item": "Desc_SAMFluctuator_C", + "amount": 199.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Alien_CentralUploadBoost_03_C": { + "className": "Research_Alien_CentralUploadBoost_03_C", + "type": "EST_MAM", + "name": "Upload Upgrade: 120/min", + "slug": "upload-upgrade-120-min", + "icon": "research-alien-centraluploadboost-03-c", + "cost": [ + { + "item": "Desc_WAT2_C", + "amount": 13.0 + }, + { + "item": "Desc_SAMFluctuator_C", + "amount": 151.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Alien_CentralUploadBoost_02_C": { + "className": "Research_Alien_CentralUploadBoost_02_C", + "type": "EST_MAM", + "name": "Upload Upgrade: 60/min", + "slug": "upload-upgrade-60-min", + "icon": "research-alien-centraluploadboost-02-c", + "cost": [ + { + "item": "Desc_WAT2_C", + "amount": 7.0 + }, + { + "item": "Desc_SAMFluctuator_C", + "amount": 103.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Alien_CentralUploadBoost_01_C": { + "className": "Research_Alien_CentralUploadBoost_01_C", + "type": "EST_MAM", + "name": "Upload Upgrade: 30/min", + "slug": "upload-upgrade-30-min", + "icon": "research-alien-centraluploadboost-01-c", + "cost": [ + { + "item": "Desc_WAT2_C", + "amount": 3.0 + }, + { + "item": "Desc_SAMFluctuator_C", + "amount": 47.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Alien_CentralStorage_C": { + "className": "Research_Alien_CentralStorage_C", + "type": "EST_MAM", + "name": "Dimensional Depot", + "slug": "dimensional-depot", + "icon": "research-alien-centralstorage-c", + "cost": [ + { + "item": "Desc_WAT2_C", + "amount": 1.0 + }, + { + "item": "Desc_SAMFluctuator_C", + "amount": 11.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_CentralStorage_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Alien_CentralStackExpansion_04_C": { + "className": "Research_Alien_CentralStackExpansion_04_C", + "type": "EST_MAM", + "name": "Depot Expansion (500%)", + "slug": "depot-expansion-500", + "icon": "research-alien-centralstackexpansion-04-c", + "cost": [ + { + "item": "Desc_WAT2_C", + "amount": 23.0 + }, + { + "item": "Desc_SAMFluctuator_C", + "amount": 199.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Alien_CentralStackExpansion_03_C": { + "className": "Research_Alien_CentralStackExpansion_03_C", + "type": "EST_MAM", + "name": "Depot Expansion (400%)", + "slug": "depot-expansion-400", + "icon": "research-alien-centralstackexpansion-03-c", + "cost": [ + { + "item": "Desc_WAT2_C", + "amount": 13.0 + }, + { + "item": "Desc_SAMFluctuator_C", + "amount": 151.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Alien_CentralStackExpansion_02_C": { + "className": "Research_Alien_CentralStackExpansion_02_C", + "type": "EST_MAM", + "name": "Depot Expansion (300%)", + "slug": "depot-expansion-300", + "icon": "research-alien-centralstackexpansion-02-c", + "cost": [ + { + "item": "Desc_WAT2_C", + "amount": 7.0 + }, + { + "item": "Desc_SAMFluctuator_C", + "amount": 103.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Alien_CentralStackExpansion_01_C": { + "className": "Research_Alien_CentralStackExpansion_01_C", + "type": "EST_MAM", + "name": "Depot Expansion (200%)", + "slug": "depot-expansion-200", + "icon": "research-alien-centralstackexpansion-01-c", + "cost": [ + { + "item": "Desc_WAT2_C", + "amount": 3.0 + }, + { + "item": "Desc_SAMFluctuator_C", + "amount": 47.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Alien_CentralInventory_C": { + "className": "Research_Alien_CentralInventory_C", + "type": "EST_MAM", + "name": "Manual Depot Uploader", + "slug": "manual-depot-uploader", + "icon": "research-alien-centralinventory-c", + "cost": [ + { + "item": "Desc_WAT2_C", + "amount": 3.0 + }, + { + "item": "Desc_Computer_C", + "amount": 17.0 + }, + { + "item": "Desc_SAMFluctuator_C", + "amount": 29.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Alien_BoosterBlocker_C": { + "className": "Research_Alien_BoosterBlocker_C", + "type": "EST_MAM", + "name": "Alien Energy Harnessing", + "slug": "alien-energy-harnessing", + "icon": "research-alien-boosterblocker-c", + "cost": [ + { + "item": "Desc_SAMFluctuator_C", + "amount": 10.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Alien_ActiveSAM_C": { + "className": "Research_Alien_ActiveSAM_C", + "type": "EST_MAM", + "name": "SAM Reanimation", + "slug": "sam-reanimation", + "icon": "research-alien-activesam-c", + "cost": [ + { + "item": "Desc_SAM_C", + "amount": 20.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_IngotSAM_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Caterium_7_2_C": { + "className": "Research_Caterium_7_2_C", + "type": "EST_MAM", + "name": "Geothermal Generator", + "slug": "geothermal-generator", + "icon": "research-caterium-7-2-c", + "cost": [ + { + "item": "Desc_HighSpeedConnector_C", + "amount": 100.0 + }, + { + "item": "Desc_HighSpeedWire_C", + "amount": 1000.0 + }, + { + "item": "Desc_Motor_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_GeneratorGeoThermal_C" + ], + "scannerResources": [ + "Desc_Geyser_C" + ], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Caterium_7_1_C": { + "className": "Research_Caterium_7_1_C", + "type": "EST_MAM", + "name": "Programmable Splitter", + "slug": "programmable-splitter", + "icon": "research-caterium-7-1-c", + "cost": [ + { + "item": "Desc_CircuitBoardHighSpeed_C", + "amount": 100.0 + }, + { + "item": "Desc_Computer_C", + "amount": 50.0 + }, + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_ConveyorAttachmentSplitterProgrammable_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Caterium_6_3_C": { + "className": "Research_Caterium_6_3_C", + "type": "EST_MAM", + "name": "Bullet Guidance System", + "slug": "bullet-guidance-system", + "icon": "research-caterium-6-3-c", + "cost": [ + { + "item": "Desc_HighSpeedConnector_C", + "amount": 10.0 + }, + { + "item": "Desc_CartridgeStandard_C", + "amount": 500.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_CartridgeSmart_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Caterium_6_2_C": { + "className": "Research_Caterium_6_2_C", + "type": "EST_MAM", + "name": "Power Poles Mk.3", + "slug": "power-poles-mk-3", + "icon": "research-caterium-6-2-c", + "cost": [ + { + "item": "Desc_HighSpeedConnector_C", + "amount": 50.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 200.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PowerPoleMk3_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Caterium_5_1_C": { + "className": "Research_Caterium_5_1_C", + "type": "EST_MAM", + "name": "Priority Power Switch", + "slug": "priority-power-switch", + "icon": "research-caterium-5-1-c", + "cost": [ + { + "item": "Desc_HighSpeedConnector_C", + "amount": 25.0 + }, + { + "item": "Desc_HighSpeedWire_C", + "amount": 500.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PriorityPowerSwitch_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Caterium_4_3_C": { + "className": "Research_Caterium_4_3_C", + "type": "EST_MAM", + "name": "Blade Runners", + "slug": "blade-runners", + "icon": "research-caterium-4-3-c", + "cost": [ + { + "item": "Desc_Silica_C", + "amount": 50.0 + }, + { + "item": "Desc_ModularFrame_C", + "amount": 10.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_BladeRunners_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Caterium_4_2_C": { + "className": "Research_Caterium_4_2_C", + "type": "EST_MAM", + "name": "Power Poles Mk.2", + "slug": "power-poles-mk-2", + "icon": "research-caterium-4-2-c", + "cost": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 300.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PowerPoleMk2_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Caterium_4_1_2_C": { + "className": "Research_Caterium_4_1_2_C", + "type": "EST_MAM", + "name": "Power Switch", + "slug": "power-switch", + "icon": "research-caterium-4-1-2-c", + "cost": [ + { + "item": "Desc_SteelPlate_C", + "amount": 100.0 + }, + { + "item": "Desc_CircuitBoardHighSpeed_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PowerSwitch_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Caterium_4_1_1_C": { + "className": "Research_Caterium_4_1_1_C", + "type": "EST_MAM", + "name": "Smart Splitter", + "slug": "smart-splitter", + "icon": "research-caterium-4-1-1-c", + "cost": [ + { + "item": "Desc_CircuitBoardHighSpeed_C", + "amount": 10.0 + }, + { + "item": "Desc_IronPlateReinforced_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_ConveyorAttachmentSplitterSmart_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Caterium_3_2_C": { + "className": "Research_Caterium_3_2_C", + "type": "EST_MAM", + "name": "Stun Rebar", + "slug": "stun-rebar", + "icon": "research-caterium-3-2-c", + "cost": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 50.0 + }, + { + "item": "Desc_SpikedRebar_C", + "amount": 10.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Rebar_Stunshot_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Caterium_3_1_C": { + "className": "Research_Caterium_3_1_C", + "type": "EST_MAM", + "name": "Inflated Pocket Dimension", + "slug": "inflated-pocket-dimension", + "icon": "research-caterium-3-1-c", + "cost": [ + { + "item": "Desc_Silica_C", + "amount": 200.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 6, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Caterium_2_1_C": { + "className": "Research_Caterium_2_1_C", + "type": "EST_MAM", + "name": "Zipline", + "slug": "zipline", + "icon": "research-caterium-2-1-c", + "cost": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 100.0 + }, + { + "item": "Desc_Cable_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_ZipLine_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Caterium_2_C": { + "className": "Research_Caterium_2_C", + "type": "EST_MAM", + "name": "Quickwire", + "slug": "quickwire", + "icon": "research-caterium-2-c", + "cost": [ + { + "item": "Desc_GoldIngot_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Quickwire_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Mycelia_GasMask_C": { + "className": "Research_Mycelia_GasMask_C", + "type": "EST_MAM", + "name": "Gas Mask", + "slug": "gas-mask", + "icon": "research-mycelia-gasmask-c", + "cost": [ + { + "item": "Desc_Coal_C", + "amount": 10.0 + }, + { + "item": "Desc_Fabric_C", + "amount": 50.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Gasmask_C", + "Recipe_FilterGasMask_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Mycelia_8_C": { + "className": "Research_Mycelia_8_C", + "type": "EST_MAM", + "name": "Toxic Cellular Modification", + "slug": "toxic-cellular-modification", + "icon": "research-mycelia-8-c", + "cost": [ + { + "item": "Desc_NobeliskExplosive_C", + "amount": 10.0 + }, + { + "item": "Desc_Mycelia_C", + "amount": 100.0 + }, + { + "item": "Desc_GenericBiomass_C", + "amount": 200.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_NobeliskGas_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Nutrients_2_C": { + "className": "Research_Nutrients_2_C", + "type": "EST_MAM", + "name": "Bacon Agaric", + "slug": "bacon-agaric", + "icon": "research-nutrients-2-c", + "cost": [ + { + "item": "Desc_Shroom_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Mycelia_6_C": { + "className": "Research_Mycelia_6_C", + "type": "EST_MAM", + "name": "Therapeutic Inhaler", + "slug": "therapeutic-inhaler", + "icon": "research-mycelia-6-c", + "cost": [ + { + "item": "Desc_Mycelia_C", + "amount": 15.0 + }, + { + "item": "Desc_Shroom_C", + "amount": 1.0 + }, + { + "item": "Desc_AlienProtein_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_TherapeuticInhaler_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Mycelia_5_C": { + "className": "Research_Mycelia_5_C", + "type": "EST_MAM", + "name": "Vitamin Inhaler", + "slug": "vitamin-inhaler", + "icon": "research-mycelia-5-c", + "cost": [ + { + "item": "Desc_Mycelia_C", + "amount": 10.0 + }, + { + "item": "Desc_Berry_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_MedicinalInhaler_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Mycelia_4_C": { + "className": "Research_Mycelia_4_C", + "type": "EST_MAM", + "name": "Medical Properties", + "slug": "medical-properties", + "icon": "research-mycelia-4-c", + "cost": [ + { + "item": "Desc_Mycelia_C", + "amount": 25.0 + }, + { + "item": "Desc_Stator_C", + "amount": 10.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Mycelia_3_C": { + "className": "Research_Mycelia_3_C", + "type": "EST_MAM", + "name": "Parachute", + "slug": "parachute", + "icon": "research-mycelia-3-c", + "cost": [ + { + "item": "Desc_Fabric_C", + "amount": 10.0 + }, + { + "item": "Desc_Cable_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Parachute_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Mycelia_2_1_C": { + "className": "Research_Mycelia_2_1_C", + "type": "EST_MAM", + "name": "Synthetic Polyester Fabric", + "slug": "synthetic-polyester-fabric", + "icon": "research-mycelia-2-1-c", + "cost": [ + { + "item": "Desc_Fabric_C", + "amount": 25.0 + }, + { + "item": "Desc_PolymerResin_C", + "amount": 100.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Alternate_PolyesterFabric_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Mycelia_2_C": { + "className": "Research_Mycelia_2_C", + "type": "EST_MAM", + "name": "Fabric", + "slug": "fabric", + "icon": "research-mycelia-2-c", + "cost": [ + { + "item": "Desc_Mycelia_C", + "amount": 25.0 + }, + { + "item": "Desc_GenericBiomass_C", + "amount": 100.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Fabric_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Mycelia_7_C": { + "className": "Research_Mycelia_7_C", + "type": "EST_MAM", + "name": "Expanded Toolbelt", + "slug": "expanded-toolbelt", + "icon": "research-mycelia-7-c", + "cost": [ + { + "item": "Desc_Fabric_C", + "amount": 50.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 100.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Nutrients_4_C": { + "className": "Research_Nutrients_4_C", + "type": "EST_MAM", + "name": "Nutritional Inhaler", + "slug": "nutritional-inhaler", + "icon": "research-nutrients-4-c", + "cost": [ + { + "item": "Desc_Shroom_C", + "amount": 2.0 + }, + { + "item": "Desc_Berry_C", + "amount": 4.0 + }, + { + "item": "Desc_Nut_C", + "amount": 10.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_NutritionalInhaler_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Nutrients_3_C": { + "className": "Research_Nutrients_3_C", + "type": "EST_MAM", + "name": "Nutritional Processor", + "slug": "nutritional-processor", + "icon": "research-nutrients-3-c", + "cost": [ + { + "item": "Desc_ModularFrame_C", + "amount": 25.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 50.0 + }, + { + "item": "Desc_Wire_C", + "amount": 500.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Nutrients_1_C": { + "className": "Research_Nutrients_1_C", + "type": "EST_MAM", + "name": "Beryl Nut", + "slug": "beryl-nut", + "icon": "research-nutrients-1-c", + "cost": [ + { + "item": "Desc_Nut_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_PowerSlugs_6_C": { + "className": "Research_PowerSlugs_6_C", + "type": "EST_MAM", + "name": "Synthetic Power Shards", + "slug": "synthetic-power-shards", + "icon": "research-powerslugs-6-c", + "cost": [ + { + "item": "Desc_CrystalShard_C", + "amount": 10.0 + }, + { + "item": "Desc_TimeCrystal_C", + "amount": 100.0 + }, + { + "item": "Desc_QuartzCrystal_C", + "amount": 200.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_SyntheticPowerShard_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_PowerSlugs_5_C": { + "className": "Research_PowerSlugs_5_C", + "type": "EST_MAM", + "name": "Purple Power Slugs", + "slug": "purple-power-slugs", + "icon": "research-powerslugs-5-c", + "cost": [ + { + "item": "Desc_Crystal_mk3_C", + "amount": 1.0 + }, + { + "item": "Desc_ModularFrame_C", + "amount": 25.0 + }, + { + "item": "Desc_CopperSheet_C", + "amount": 100.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PowerCrystalShard_3_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_PowerSlugs_4_C": { + "className": "Research_PowerSlugs_4_C", + "type": "EST_MAM", + "name": "Yellow Power Slugs", + "slug": "yellow-power-slugs", + "icon": "research-powerslugs-4-c", + "cost": [ + { + "item": "Desc_Crystal_mk2_C", + "amount": 1.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 25.0 + }, + { + "item": "Desc_Cable_C", + "amount": 100.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PowerCrystalShard_2_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_PowerSlugs_2_C": { + "className": "Research_PowerSlugs_2_C", + "type": "EST_MAM", + "name": "Overclock Production", + "slug": "overclock-production", + "icon": "research-powerslugs-2-c", + "cost": [ + { + "item": "Desc_CrystalShard_C", + "amount": 1.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 50.0 + }, + { + "item": "Desc_Wire_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Quartz_4_C": { + "className": "Research_Quartz_4_C", + "type": "EST_MAM", + "name": "Radar Technology", + "slug": "radar-technology", + "icon": "research-quartz-4-c", + "cost": [ + { + "item": "Desc_CrystalOscillator_C", + "amount": 50.0 + }, + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 50.0 + }, + { + "item": "Desc_Computer_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_RadarTower_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Quartz_3_4_C": { + "className": "Research_Quartz_3_4_C", + "type": "EST_MAM", + "name": "Explosive Resonance Application", + "slug": "explosive-resonance-application", + "icon": "research-quartz-3-4-c", + "cost": [ + { + "item": "Desc_CrystalOscillator_C", + "amount": 5.0 + }, + { + "item": "Desc_NobeliskExplosive_C", + "amount": 100.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_NobeliskShockwave_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Quartz_3_1_C": { + "className": "Research_Quartz_3_1_C", + "type": "EST_MAM", + "name": "The Explorer", + "slug": "the-explorer", + "icon": "research-quartz-3-1-c", + "cost": [ + { + "item": "Desc_CrystalOscillator_C", + "amount": 10.0 + }, + { + "item": "Desc_ModularFrame_C", + "amount": 100.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Explorer_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Quartz_3_C": { + "className": "Research_Quartz_3_C", + "type": "EST_MAM", + "name": "Signal Systems", + "slug": "signal-systems", + "icon": "research-quartz-3-c", + "cost": [ + { + "item": "Desc_CrystalOscillator_C", + "amount": 5.0 + }, + { + "item": "Desc_CircuitBoard_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Quartz_2_1_C": { + "className": "Research_Quartz_2_1_C", + "type": "EST_MAM", + "name": "Shatter Rebar", + "slug": "shatter-rebar", + "icon": "research-quartz-2-1-c", + "cost": [ + { + "item": "Desc_QuartzCrystal_C", + "amount": 30.0 + }, + { + "item": "Desc_SpikedRebar_C", + "amount": 150.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Rebar_Spreadshot_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Sulfur_ExperimentalPower_C": { + "className": "Research_Sulfur_ExperimentalPower_C", + "type": "EST_MAM", + "name": "Experimental Power Generation", + "slug": "experimental-power-generation", + "icon": "research-sulfur-experimentalpower-c", + "cost": [ + { + "item": "Desc_Sulfur_C", + "amount": 25.0 + }, + { + "item": "Desc_ModularFrame_C", + "amount": 50.0 + }, + { + "item": "Desc_Rotor_C", + "amount": 100.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Sulfur_CompactedCoal_C": { + "className": "Research_Sulfur_CompactedCoal_C", + "type": "EST_MAM", + "name": "Compacted Coal", + "slug": "compacted-coal", + "icon": "research-sulfur-compactedcoal-c", + "cost": [ + { + "item": "Desc_HardDrive_C", + "amount": 1.0 + }, + { + "item": "Desc_Sulfur_C", + "amount": 25.0 + }, + { + "item": "Desc_Coal_C", + "amount": 25.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Alternate_EnrichedCoal_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Sulfur_6_C": { + "className": "Research_Sulfur_6_C", + "type": "EST_MAM", + "name": "Inflated Pocket Dimension", + "slug": "inflated-pocket-dimension", + "icon": "research-sulfur-6-c", + "cost": [ + { + "item": "Desc_GunpowderMK2_C", + "amount": 50.0 + }, + { + "item": "Desc_Computer_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 6, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Sulfur_5_2_C": { + "className": "Research_Sulfur_5_2_C", + "type": "EST_MAM", + "name": "Turbo Rifle Ammo", + "slug": "turbo-rifle-ammo", + "icon": "research-sulfur-5-2-c", + "cost": [ + { + "item": "Desc_CartridgeStandard_C", + "amount": 1000.0 + }, + { + "item": "Desc_TurboFuel_C", + "amount": 50.0 + }, + { + "item": "Desc_AluminumCasing_C", + "amount": 100.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_CartridgeChaos_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Sulfur_5_1_C": { + "className": "Research_Sulfur_5_1_C", + "type": "EST_MAM", + "name": "Nuclear Deterrent Development", + "slug": "nuclear-deterrent-development", + "icon": "research-sulfur-5-1-c", + "cost": [ + { + "item": "Desc_NobeliskExplosive_C", + "amount": 500.0 + }, + { + "item": "Desc_UraniumCell_C", + "amount": 10.0 + }, + { + "item": "Desc_CircuitBoardHighSpeed_C", + "amount": 100.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_NobeliskNuke_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Sulfur_5_C": { + "className": "Research_Sulfur_5_C", + "type": "EST_MAM", + "name": "Expanded Toolbelt", + "slug": "expanded-toolbelt", + "icon": "research-sulfur-5-c", + "cost": [ + { + "item": "Desc_Gunpowder_C", + "amount": 100.0 + }, + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Sulfur_4_2_C": { + "className": "Research_Sulfur_4_2_C", + "type": "EST_MAM", + "name": "Explosive Rebar", + "slug": "explosive-rebar", + "icon": "research-sulfur-4-2-c", + "cost": [ + { + "item": "Desc_GunpowderMK2_C", + "amount": 200.0 + }, + { + "item": "Desc_SpikedRebar_C", + "amount": 200.0 + }, + { + "item": "Desc_SteelPlate_C", + "amount": 200.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Rebar_Explosive_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Sulfur_4_1_C": { + "className": "Research_Sulfur_4_1_C", + "type": "EST_MAM", + "name": "The Rifle", + "slug": "the-rifle", + "icon": "research-sulfur-4-1-c", + "cost": [ + { + "item": "Desc_GunpowderMK2_C", + "amount": 50.0 + }, + { + "item": "Desc_Motor_C", + "amount": 100.0 + }, + { + "item": "Desc_Rubber_C", + "amount": 200.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_SpaceRifleMk1_C", + "Recipe_Cartridge_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Sulfur_4_C": { + "className": "Research_Sulfur_4_C", + "type": "EST_MAM", + "name": "Cluster Nobelisk", + "slug": "cluster-nobelisk", + "icon": "research-sulfur-4-c", + "cost": [ + { + "item": "Desc_GunpowderMK2_C", + "amount": 100.0 + }, + { + "item": "Desc_NobeliskExplosive_C", + "amount": 200.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_NobeliskCluster_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Sulfur_3_1_C": { + "className": "Research_Sulfur_3_1_C", + "type": "EST_MAM", + "name": "The Nobelisk Detonator", + "slug": "the-nobelisk-detonator", + "icon": "research-sulfur-3-1-c", + "cost": [ + { + "item": "Desc_Gunpowder_C", + "amount": 50.0 + }, + { + "item": "Desc_SteelPipe_C", + "amount": 100.0 + }, + { + "item": "Desc_Cable_C", + "amount": 200.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_NobeliskDetonator_C", + "Recipe_Nobelisk_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Sulfur_3_C": { + "className": "Research_Sulfur_3_C", + "type": "EST_MAM", + "name": "Smokeless Powder", + "slug": "smokeless-powder", + "icon": "research-sulfur-3-c", + "cost": [ + { + "item": "Desc_Gunpowder_C", + "amount": 100.0 + }, + { + "item": "Desc_Plastic_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_GunpowderMK2_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "Research_Sulfur_2_C": { + "className": "Research_Sulfur_2_C", + "type": "EST_MAM", + "name": "Volatile Applications", + "slug": "volatile-applications", + "icon": "research-sulfur-2-c", + "cost": [ + { + "item": "Desc_Gunpowder_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 3, + "time": 3.0, + "mam": true, + "alternate": false + }, + "ResourceSink_Customizer_ConcreteWallMaterial_C": { + "className": "ResourceSink_Customizer_ConcreteWallMaterial_C", + "type": "EST_ResourceSink", + "name": "Concrete Wall Material", + "slug": "concrete-wall-material", + "icon": "resourcesink-customizer-concretewallmaterial-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Material_Wall_Concrete_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_1-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Customizer_SteelWallMaterial_C": { + "className": "ResourceSink_Customizer_SteelWallMaterial_C", + "type": "EST_ResourceSink", + "name": "Steel Wall Material", + "slug": "steel-wall-material", + "icon": "resourcesink-customizer-steelwallmaterial-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Material_Wall_Steel_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-4_C", + "Schematic_1-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Diagonal_Down_Wallset_C": { + "className": "ResourceSink_Diagonal_Down_Wallset_C", + "type": "EST_ResourceSink", + "name": "Inverted Ramp Wall Bundle", + "slug": "inverted-ramp-wall-bundle", + "icon": "resourcesink-diagonal-down-wallset-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Wall_Orange_FlipTris_8x1_C", + "Recipe_Wall_Orange_FlipTris_8x2_C", + "Recipe_Wall_Orange_FlipTris_8x4_C", + "Recipe_Wall_Orange_FlipTris_8x8_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Diagonal_Up_WallSet_C": { + "className": "ResourceSink_Diagonal_Up_WallSet_C", + "type": "EST_ResourceSink", + "name": "Ramp Wall Bundle", + "slug": "ramp-wall-bundle", + "icon": "resourcesink-diagonal-up-wallset-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 4.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Wall_Orange_Tris_8x1_C", + "Recipe_Wall_Orange_Tris_8x2_C", + "Recipe_Wall_Orange_Tris_8x4_C", + "Recipe_Wall_Orange_Tris_8x8_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_DoorWalls_Normal_C": { + "className": "ResourceSink_DoorWalls_Normal_C", + "type": "EST_ResourceSink", + "name": "Door Walls", + "slug": "door-walls", + "icon": "resourcesink-doorwalls-normal-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Wall_Door_8x4_01_C", + "Recipe_Wall_Door_8x4_03_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_FactoryRailing_C": { + "className": "ResourceSink_FactoryRailing_C", + "type": "EST_ResourceSink", + "name": "Industrial Railing", + "slug": "industrial-railing", + "icon": "resourcesink-factoryrailing-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Fence_01_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_FactoryFence_C": { + "className": "ResourceSink_FactoryFence_C", + "type": "EST_ResourceSink", + "name": "Modern Railing", + "slug": "modern-railing", + "icon": "resourcesink-factoryfence-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Railing_01_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_FrameworkFoundations_C": { + "className": "ResourceSink_FrameworkFoundations_C", + "type": "EST_ResourceSink", + "name": "Structural Frame Set", + "slug": "structural-frame-set", + "icon": "resourcesink-frameworkfoundations-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 10.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Flat_Frame_01_C", + "Recipe_FoundationGlass_01_C", + "Recipe_Foundation_Frame_01_C", + "Recipe_Wall_Frame_01_C", + "Recipe_Ramp_Frame_01_C", + "Recipe_Ramp_Frame_Inverted_01_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_FoudationPillar_C": { + "className": "ResourceSink_FoudationPillar_C", + "type": "EST_ResourceSink", + "name": "Metal Pillar Set", + "slug": "metal-pillar-set", + "icon": "resourcesink-foudationpillar-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PillarMiddle_C", + "Recipe_PillarBase_C", + "Recipe_Pillar_Small_Metal_C", + "Recipe_PillarBase_Small_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Customizer_Asphalt_FoundationMaterial_C": { + "className": "ResourceSink_Customizer_Asphalt_FoundationMaterial_C", + "type": "EST_ResourceSink", + "name": "Asphalt Foundation Material", + "slug": "asphalt-foundation-material", + "icon": "resourcesink-customizer-asphalt-foundationmaterial-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 4.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Material_Foundation_Asphalt_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_1-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_DiagonalRamps_C": { + "className": "ResourceSink_DiagonalRamps_C", + "type": "EST_ResourceSink", + "name": "Corner Ramp Pack", + "slug": "corner-ramp-pack", + "icon": "resourcesink-diagonalramps-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Ramp_Diagonal_8x1_02_C", + "Recipe_Ramp_Diagonal_8x2_02_C", + "Recipe_Ramp_Diagonal_8x4_02_C", + "Recipe_Ramp_Diagonal_8x1_01_C", + "Recipe_Ramp_Diagonal_8x2_01_C", + "Recipe_Ramp_Diagonal_8x4_01_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Customizer_Concrete_FoundationMaterial_C": { + "className": "ResourceSink_Customizer_Concrete_FoundationMaterial_C", + "type": "EST_ResourceSink", + "name": "Concrete Foundation Material", + "slug": "concrete-foundation-material", + "icon": "resourcesink-customizer-concrete-foundationmaterial-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Material_Foundation_Concrete_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_1-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_FoundationExpansionPack_C": { + "className": "ResourceSink_FoundationExpansionPack_C", + "type": "EST_ResourceSink", + "name": "Double Ramp Set", + "slug": "double-ramp-set", + "icon": "resourcesink-foundationexpansionpack-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_RampDouble_8x1_C", + "Recipe_RampDouble_C", + "Recipe_Ramp_8x8x8_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Customizer_GripMetal_FoundationMaterial_C": { + "className": "ResourceSink_Customizer_GripMetal_FoundationMaterial_C", + "type": "EST_ResourceSink", + "name": "Grip Metal Foundation Material", + "slug": "grip-metal-foundation-material", + "icon": "resourcesink-customizer-gripmetal-foundationmaterial-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Material_Foundation_GripMetal_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-4_C", + "Schematic_1-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_InvertedCornerRamps_C": { + "className": "ResourceSink_InvertedCornerRamps_C", + "type": "EST_ResourceSink", + "name": "Inverted Corner Ramp Pack", + "slug": "inverted-corner-ramp-pack", + "icon": "resourcesink-invertedcornerramps-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_RampInverted_8x1_Corner_01_C", + "Recipe_RampInverted_8x2_Corner_01_C", + "Recipe_RampInverted_8x4_Corner_01_C", + "Recipe_RampInverted_8x1_Corner_02_C", + "Recipe_RampInverted_8x2_Corner_02_C", + "Recipe_RampInverted_8x4_Corner_02_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Customizer_PolishedConcrete_FoundationMaterial_C": { + "className": "ResourceSink_Customizer_PolishedConcrete_FoundationMaterial_C", + "type": "EST_ResourceSink", + "name": "Coated Concrete Foundation Material", + "slug": "coated-concrete-foundation-material", + "icon": "resourcesink-customizer-polishedconcrete-foundationmaterial-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 6.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Material_Foundation_PolishedConcrete_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_5-1_C", + "Schematic_1-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_InvertedRampPack_C": { + "className": "ResourceSink_InvertedRampPack_C", + "type": "EST_ResourceSink", + "name": "Inverted Ramp Set", + "slug": "inverted-ramp-set", + "icon": "resourcesink-invertedramppack-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_RampInverted_8x1_C", + "Recipe_RampInverted_8x2_01_C", + "Recipe_Ramp_8x4_Inverted_01_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Ladders_C": { + "className": "ResourceSink_Ladders_C", + "type": "EST_ResourceSink", + "name": "Factory Ladder", + "slug": "factory-ladder", + "icon": "resourcesink-ladders-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Ladder_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Walkways_C": { + "className": "ResourceSink_Walkways_C", + "type": "EST_ResourceSink", + "name": "Industrial Walkways", + "slug": "industrial-walkways", + "icon": "resourcesink-walkways-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Walkway_Straight_C", + "Recipe_Walkway_Cross_C", + "Recipe_Walkway_T_C", + "Recipe_Walkway_Turn_C", + "Recipe_Walkway_Ramp_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_CurvedFoundationPack_C": { + "className": "ResourceSink_CurvedFoundationPack_C", + "type": "EST_ResourceSink", + "name": "Quarter Pipes Pack", + "slug": "quarter-pipes-pack", + "icon": "resourcesink-curvedfoundationpack-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 6.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_QuarterPipe_C", + "Recipe_QuarterPipe_02_C", + "Recipe_QuarterPipeCorner_01_C", + "Recipe_QuarterPipeCorner_02_C", + "Recipe_QuarterPipeCorner_03_C", + "Recipe_QuarterPipeCorner_04_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_FactoryCart_C": { + "className": "ResourceSink_FactoryCart_C", + "type": "EST_ResourceSink", + "name": "FICSIT Factory Cart™", + "slug": "ficsit-factory-carttm", + "icon": "resourcesink-factorycart-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 10.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_FactoryCart_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_CyberWagon_C": { + "className": "ResourceSink_CyberWagon_C", + "type": "EST_ResourceSink", + "name": "Cyber Wagon", + "slug": "cyber-wagon", + "icon": "resourcesink-cyberwagon-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 20.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_CyberWagon_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_CyberWagon_Unlock_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_HalfFoundations_C": { + "className": "ResourceSink_HalfFoundations_C", + "type": "EST_ResourceSink", + "name": "Half Foundation Set", + "slug": "half-foundation-set", + "icon": "resourcesink-halffoundations-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 4.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_QuarterPipeMiddle_Ficsit_4x1_C", + "Recipe_QuarterPipeMiddle_Ficsit_4x2_C", + "Recipe_QuarterPipeMiddle_Ficsit_4x4_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_QuarterPipeExtensions_C": { + "className": "ResourceSink_QuarterPipeExtensions_C", + "type": "EST_ResourceSink", + "name": "Quarter Pipe Extensions Pack", + "slug": "quarter-pipe-extensions-pack", + "icon": "resourcesink-quarterpipeextensions-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_QuarterPipeMiddleInCorner_Ficsit_8x1_C", + "Recipe_QuarterPipeMiddleInCorner_Ficsit_8x2_C", + "Recipe_QuarterPipeMiddleInCorner_Ficsit_8x4_C", + "Recipe_QuarterPipeMiddleOutCorner_Ficsit_4x1_C", + "Recipe_QuarterPipeMiddleOutCorner_Ficsit_4x2_C", + "Recipe_QuarterPipeMiddleOutCorner_Ficsit_4x4_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_FoundationStairs_C": { + "className": "ResourceSink_FoundationStairs_C", + "type": "EST_ResourceSink", + "name": "Foundation Stairs Set", + "slug": "foundation-stairs-set", + "icon": "resourcesink-foundationstairs-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Stair_FicsitSet_8x1_01_C", + "Recipe_Stair_FicsitSet_8x2_01_C", + "Recipe_Stair_FicsitSet_8x4_01_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_WindowedWalls_C": { + "className": "ResourceSink_WindowedWalls_C", + "type": "EST_ResourceSink", + "name": "Windowed Walls", + "slug": "windowed-walls", + "icon": "resourcesink-windowedwalls-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 6.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Wall_Window_8x4_01_C", + "Recipe_Wall_Window_8x4_02_C", + "Recipe_Wall_Window_8x4_03_C", + "Recipe_Wall_Window_8x4_04_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Quartz_1_2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_GateWalls_C": { + "className": "ResourceSink_GateWalls_C", + "type": "EST_ResourceSink", + "name": "Gates", + "slug": "gates", + "icon": "resourcesink-gatewalls-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Wall_Gate_8x4_01_C", + "Recipe_Gate_Automated_8x4_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Tilted_Walls_C": { + "className": "ResourceSink_Tilted_Walls_C", + "type": "EST_ResourceSink", + "name": "Tilted Walls", + "slug": "tilted-walls", + "icon": "resourcesink-tilted-walls-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Wall_Orange_Angular_8x4_C", + "Recipe_Wall_Orange_Angular_8x8_C", + "Recipe_Wall_Orange_8x4_Corner_01_C", + "Recipe_Wall_Orange_8x8_Corner_01_C", + "Recipe_Wall_Orange_8x4_Corner_02_C", + "Recipe_Wall_Orange_8x8_Corner_02_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_ConveryWalls_Normal_C": { + "className": "ResourceSink_ConveryWalls_Normal_C", + "type": "EST_ResourceSink", + "name": "Conveyor Walls", + "slug": "conveyor-walls", + "icon": "resourcesink-converywalls-normal-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Wall_Conveyor_8x4_01_C", + "Recipe_Wall_Conveyor_8x4_02_C", + "Recipe_Wall_Conveyor_8x4_03_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_ConveyorWallMount_C": { + "className": "ResourceSink_ConveyorWallMount_C", + "type": "EST_ResourceSink", + "name": "Conveyor Wall Mount", + "slug": "conveyor-wall-mount", + "icon": "resourcesink-conveyorwallmount-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_ConveyorPoleWall_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_ConveyorCeilingMount_C": { + "className": "ResourceSink_ConveyorCeilingMount_C", + "type": "EST_ResourceSink", + "name": "Conveyor Ceiling Mount", + "slug": "conveyor-ceiling-mount", + "icon": "resourcesink-conveyorceilingmount-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_ConveyorCeilingAttachment_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_HyperTubeWallAttachements_C": { + "className": "ResourceSink_HyperTubeWallAttachements_C", + "type": "EST_ResourceSink", + "name": "Hypertube Wall Attachments", + "slug": "hypertube-wall-attachments", + "icon": "resourcesink-hypertubewallattachements-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_HyperTubeWallSupport_C", + "Recipe_HyperTubeWallHole_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_4-4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_PipelineWallAttachments_C": { + "className": "ResourceSink_PipelineWallAttachments_C", + "type": "EST_ResourceSink", + "name": "Pipeline Wall Attachments", + "slug": "pipeline-wall-attachments", + "icon": "resourcesink-pipelinewallattachments-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PipeSupportWall_C", + "Recipe_PipeSupportWallHole_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_PipelineFloorHole_C": { + "className": "ResourceSink_PipelineFloorHole_C", + "type": "EST_ResourceSink", + "name": "Pipeline Floor Hole", + "slug": "pipeline-floor-hole", + "icon": "resourcesink-pipelinefloorhole-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_FoundationPassthrough_Pipe_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_WallPowerPoles_C": { + "className": "ResourceSink_WallPowerPoles_C", + "type": "EST_ResourceSink", + "name": "Wall Power Outlets Mk.1", + "slug": "wall-power-outlets-mk-1", + "icon": "resourcesink-wallpowerpoles-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PowerPoleWall_C", + "Recipe_PowerPoleWallDouble_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_WallPowerPolesMK2_C": { + "className": "ResourceSink_WallPowerPolesMK2_C", + "type": "EST_ResourceSink", + "name": "Wall Power Outlets Mk.2", + "slug": "wall-power-outlets-mk-2", + "icon": "resourcesink-wallpowerpolesmk2-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 4.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PowerPoleWallMk2_C", + "Recipe_PowerPoleWallDoubleMk2_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Caterium_4_2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_WallPowerPolesMK3_C": { + "className": "ResourceSink_WallPowerPolesMK3_C", + "type": "EST_ResourceSink", + "name": "Wall Power Outlets Mk.3", + "slug": "wall-power-outlets-mk-3", + "icon": "resourcesink-wallpowerpolesmk3-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PowerPoleWallMk3_C", + "Recipe_PowerPoleWallDoubleMk3_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Caterium_6_2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_CeilingLight_C": { + "className": "ResourceSink_CeilingLight_C", + "type": "EST_ResourceSink", + "name": "Indoor Lighting", + "slug": "indoor-lighting", + "icon": "resourcesink-ceilinglight-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_CeilingLight_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Caterium_2_C", + "Schematic_3-4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_LightTower_C": { + "className": "ResourceSink_LightTower_C", + "type": "EST_ResourceSink", + "name": "Flood Lights", + "slug": "flood-lights", + "icon": "resourcesink-lighttower-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_FloodlightPole_C", + "Recipe_FloodlightWall_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Caterium_2_C", + "Schematic_4-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_StreetLight_C": { + "className": "ResourceSink_StreetLight_C", + "type": "EST_ResourceSink", + "name": "Street Light", + "slug": "street-light", + "icon": "resourcesink-streetlight-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_StreetLight_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Caterium_2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Statue_Hoggo_C": { + "className": "ResourceSink_Statue_Hoggo_C", + "type": "EST_ResourceSink", + "name": "Silver Hog (purchase)", + "slug": "silver-hog-purchase", + "icon": "resourcesink-statue-hoggo-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Hog_Statue_C", + "amount": 1.0 + } + ] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_StatueLizardDoggo_C": { + "className": "ResourceSink_StatueLizardDoggo_C", + "type": "EST_ResourceSink", + "name": "Lizard Doggo (purchase)", + "slug": "lizard-doggo-purchase", + "icon": "resourcesink-statuelizarddoggo-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 100.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_DoggoStatue_C", + "amount": 1.0 + } + ] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_StatueSpaceGiraffe_C": { + "className": "ResourceSink_StatueSpaceGiraffe_C", + "type": "EST_ResourceSink", + "name": "Confusing Creature (purchase)", + "slug": "confusing-creature-purchase", + "icon": "resourcesink-statuespacegiraffe-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 200.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_SpaceGiraffeStatue_C", + "amount": 1.0 + } + ] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_StatueBronzePioneer_C": { + "className": "ResourceSink_StatueBronzePioneer_C", + "type": "EST_ResourceSink", + "name": "Adequate Pioneering (purchase)", + "slug": "adequate-pioneering-purchase", + "icon": "resourcesink-statuebronzepioneer-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 25.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_CharacterRunStatue_C", + "amount": 1.0 + } + ] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_StatueGoldPioneer_C": { + "className": "ResourceSink_StatueGoldPioneer_C", + "type": "EST_ResourceSink", + "name": "Satisfactory Pioneering (purchase)", + "slug": "satisfactory-pioneering-purchase", + "icon": "resourcesink-statuegoldpioneer-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 150.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_CharacterSpin_Statue_C", + "amount": 1.0 + } + ] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_StatueSilverPioneer_C": { + "className": "ResourceSink_StatueSilverPioneer_C", + "type": "EST_ResourceSink", + "name": "Pretty Good Pioneering (purchase)", + "slug": "pretty-good-pioneering-purchase", + "icon": "resourcesink-statuesilverpioneer-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_CharacterClap_Statue_C", + "amount": 1.0 + } + ] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_StatueGoldenNut_C": { + "className": "ResourceSink_StatueGoldenNut_C", + "type": "EST_ResourceSink", + "name": "Golden Nut (purchase)", + "slug": "golden-nut-purchase", + "icon": "resourcesink-statuegoldennut-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1000.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_GoldenNut_Statue_C", + "amount": 1.0 + } + ] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Customizer_GlassRoofMaterial_C": { + "className": "ResourceSink_Customizer_GlassRoofMaterial_C", + "type": "EST_ResourceSink", + "name": "Glass Roof Material", + "slug": "glass-roof-material", + "icon": "resourcesink-customizer-glassroofmaterial-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Material_Roof_Glass_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_Roofs_Basic_C", + "Research_Quartz_1_2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Roofs_Basic_C": { + "className": "ResourceSink_Roofs_Basic_C", + "type": "EST_ResourceSink", + "name": "FICSIT Roofs", + "slug": "ficsit-roofs", + "icon": "resourcesink-roofs-basic-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 6.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Roof_Orange_01_C", + "Recipe_Roof_Orange_02_C", + "Recipe_Roof_Orange_03_C", + "Recipe_Roof_Orange_04_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Roofs_Corners_C": { + "className": "ResourceSink_Roofs_Corners_C", + "type": "EST_ResourceSink", + "name": "FICSIT Roof Corners", + "slug": "ficsit-roof-corners", + "icon": "resourcesink-roofs-corners-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 4.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Roof_Orange_InCorner_01_C", + "Recipe_Roof_Orange_InCorner_02_C", + "Recipe_Roof_Orange_InCorner_03_C", + "Recipe_Roof_Orange_OutCorner_01_C", + "Recipe_Roof_Orange_OutCorner_02_C", + "Recipe_Roof_Orange_OutCorner_03_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Customizer_SteelRoofMaterial_C": { + "className": "ResourceSink_Customizer_SteelRoofMaterial_C", + "type": "EST_ResourceSink", + "name": "Metal Roof Material", + "slug": "metal-roof-material", + "icon": "resourcesink-customizer-steelroofmaterial-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Material_Roof_Metal_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_Roofs_Basic_C", + "Schematic_3-4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Customizer_TarRoofMaterial_C": { + "className": "ResourceSink_Customizer_TarRoofMaterial_C", + "type": "EST_ResourceSink", + "name": "Tar Roof Material", + "slug": "tar-roof-material", + "icon": "resourcesink-customizer-tarroofmaterial-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Material_Roof_Tar_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_Roofs_Basic_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_NoIndicator_PipelineMK2_C": { + "className": "ResourceSink_NoIndicator_PipelineMK2_C", + "type": "EST_ResourceSink", + "name": "Clean Pipeline Mk.2", + "slug": "clean-pipeline-mk-2", + "icon": "resourcesink-noindicator-pipelinemk2-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PipelineMK2_NoIndicator_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_6-5_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_NoIndicator_PipelineMK1_C": { + "className": "ResourceSink_NoIndicator_PipelineMK1_C", + "type": "EST_ResourceSink", + "name": "Clean Pipeline Mk.1", + "slug": "clean-pipeline-mk-1", + "icon": "resourcesink-noindicator-pipelinemk1-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Pipeline_NoIndicator_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_MedicalBoxSkin_C": { + "className": "ResourceSink_MedicalBoxSkin_C", + "type": "EST_ResourceSink", + "name": "Medical Box - Personal Storage Skin", + "slug": "medical-box-personal-storage-skin", + "icon": "resourcesink-medicalboxskin-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_StorageMedkit_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_LightControlPanel_C": { + "className": "ResourceSink_LightControlPanel_C", + "type": "EST_ResourceSink", + "name": "Light Control Panel", + "slug": "light-control-panel", + "icon": "resourcesink-lightcontrolpanel-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_LightsControlPanel_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Caterium_2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_LabelSigns_C": { + "className": "ResourceSink_LabelSigns_C", + "type": "EST_ResourceSink", + "name": "Label Sign Bundle", + "slug": "label-sign-bundle", + "icon": "resourcesink-labelsigns-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_StandaloneWidgetSign_Small_C", + "Recipe_StandaloneWidgetSign_SmallWide_C", + "Recipe_StandaloneWidgetSign_SmallVeryWide_C", + "Recipe_StandaloneWidgetSign_Square_Tiny_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Quartz_1_1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_HyperTubeFloorHole_C": { + "className": "ResourceSink_HyperTubeFloorHole_C", + "type": "EST_ResourceSink", + "name": "Hypertube Floor Hole", + "slug": "hypertube-floor-hole", + "icon": "resourcesink-hypertubefloorhole-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_FoundationPassthrough_Hypertube_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_4-4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_HazardBoxSkin_C": { + "className": "ResourceSink_HazardBoxSkin_C", + "type": "EST_ResourceSink", + "name": "Hazard Box - Personal Storage Skin", + "slug": "hazard-box-personal-storage-skin", + "icon": "resourcesink-hazardboxskin-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_StorageHazard_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_GoldenCup_C": { + "className": "ResourceSink_GoldenCup_C", + "type": "EST_ResourceSink", + "name": "'Employee of the Planet' Cup (purchase)", + "slug": "employee-of-the-planet-cup-purchase", + "icon": "resourcesink-goldencup-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "BP_EquipmentDescriptorCupGold_C", + "amount": 1.0 + } + ] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_GoldenCart_C": { + "className": "ResourceSink_GoldenCart_C", + "type": "EST_ResourceSink", + "name": "Golden FICSIT Factory Cart™", + "slug": "golden-ficsit-factory-carttm", + "icon": "resourcesink-goldencart-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_GoldenCart_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "ResourceSink_GoldenCart_Unlock_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_FrameWindows_C": { + "className": "ResourceSink_FrameWindows_C", + "type": "EST_ResourceSink", + "name": "Steel-Framed Windows", + "slug": "steel-framed-windows", + "icon": "resourcesink-framewindows-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 6.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Wall_Window_Thin_8x4_01_C", + "Recipe_Wall_Window_Thin_8x4_02_C", + "Recipe_Wall_Window_8x4_06_C", + "Recipe_Wall_Window_8x4_07_C", + "Recipe_Wall_Window_8x4_05_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Quartz_1_2_C", + "Schematic_3-4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_FramePillarSet_C": { + "className": "ResourceSink_FramePillarSet_C", + "type": "EST_ResourceSink", + "name": "Frame Pillar Set", + "slug": "frame-pillar-set", + "icon": "resourcesink-framepillarset-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PillarMiddle_Frame_C", + "Recipe_PillarBase_C", + "Recipe_Pillar_Small_Frame_C", + "Recipe_PillarBase_Small_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Fences_C": { + "className": "ResourceSink_Fences_C", + "type": "EST_ResourceSink", + "name": "Construction Fences", + "slug": "construction-fences", + "icon": "resourcesink-fences-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_TarpFence_C", + "Recipe_ChainLinkFence_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_FactoryBarrier2_C": { + "className": "ResourceSink_FactoryBarrier2_C", + "type": "EST_ResourceSink", + "name": "Metal Barriers", + "slug": "metal-barriers", + "icon": "resourcesink-factorybarrier2-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Barrier_Low_01_C", + "Recipe_Barrier_Tall_01_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_FactoryBarrier_C": { + "className": "ResourceSink_FactoryBarrier_C", + "type": "EST_ResourceSink", + "name": "Road Barrier", + "slug": "road-barrier", + "icon": "resourcesink-factorybarrier-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Concrete_Barrier_01_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_DisplaySigns_C": { + "className": "ResourceSink_DisplaySigns_C", + "type": "EST_ResourceSink", + "name": "Display Sign Bundle", + "slug": "display-sign-bundle", + "icon": "resourcesink-displaysigns-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_StandaloneWidgetSign_Medium_C", + "Recipe_StandaloneWidgetSign_Portrait_C", + "Recipe_StandaloneWidgetSign_Square_Small_C", + "Recipe_StandaloneWidgetSign_Square_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Quartz_1_1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_ConveyorLiftHole_C": { + "className": "ResourceSink_ConveyorLiftHole_C", + "type": "EST_ResourceSink", + "name": "Conveyor Lift Floor Hole", + "slug": "conveyor-lift-floor-hole", + "icon": "resourcesink-conveyorlifthole-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_FoundationPassthrough_Lift_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_ConcretePillarSet_C": { + "className": "ResourceSink_ConcretePillarSet_C", + "type": "EST_ResourceSink", + "name": "Concrete Pillar Set", + "slug": "concrete-pillar-set", + "icon": "resourcesink-concretepillarset-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PillarMiddle_Concrete_C", + "Recipe_PillarBase_C", + "Recipe_Pillar_Small_Concrete_C", + "Recipe_PillarBase_Small_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Catwalks_C": { + "className": "ResourceSink_Catwalks_C", + "type": "EST_ResourceSink", + "name": "Modern Catwalks", + "slug": "modern-catwalks", + "icon": "resourcesink-catwalks-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Catwalk_Straight_C", + "Recipe_Catwalk_Cross_C", + "Recipe_Catwalk_T_C", + "Recipe_Catwalk_Turn_C", + "Recipe_Catwalk_Ramp_C", + "Recipe_Catwalk_Stairs_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Boombox_C": { + "className": "ResourceSink_Boombox_C", + "type": "EST_ResourceSink", + "name": "Boombox (purchase)", + "slug": "boombox-purchase", + "icon": "resourcesink-boombox-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_BoomBox_C", + "amount": 1.0 + } + ] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_BillboardSigns_C": { + "className": "ResourceSink_BillboardSigns_C", + "type": "EST_ResourceSink", + "name": "Billboard Set", + "slug": "billboard-set", + "icon": "resourcesink-billboardsigns-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 10.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_StandaloneWidgetSign_Large_C", + "Recipe_StandaloneWidgetSign_Huge_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Quartz_1_1_C", + "Schematic_4-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_BeamSet_C": { + "className": "ResourceSink_BeamSet_C", + "type": "EST_ResourceSink", + "name": "Structural Beam Pack", + "slug": "structural-beam-pack", + "icon": "resourcesink-beamset-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 4.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Beam_C", + "Recipe_Beam_Painted_C", + "Recipe_Beam_Support_C", + "Recipe_Beam_Connector_C", + "Recipe_Beam_Connector_Double_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Purchasable_HardDrive_C": { + "className": "ResourceSink_Purchasable_HardDrive_C", + "type": "EST_ResourceSink", + "name": "Hard Drive (purchase)", + "slug": "hard-drive-purchase", + "icon": "resourcesink-purchasable-harddrive-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 100.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_HardDrive_C", + "amount": 1.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_8-5_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_RifleAmmoTurbo_C": { + "className": "ResourceSink_RifleAmmoTurbo_C", + "type": "EST_ResourceSink", + "name": "Turbo Rifle Ammo Pack (purchase)", + "slug": "turbo-rifle-ammo-pack-purchase", + "icon": "resourcesink-rifleammoturbo-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_CartridgeChaos_C", + "amount": 250.0 + } + ] + }, + "requiredSchematics": [ + "Research_Sulfur_5_2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_RifleAmmoHoming_C": { + "className": "ResourceSink_RifleAmmoHoming_C", + "type": "EST_ResourceSink", + "name": "Homing Rifle Ammo Pack (purchase)", + "slug": "homing-rifle-ammo-pack-purchase", + "icon": "resourcesink-rifleammohoming-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_CartridgeSmartProjectile_C", + "amount": 250.0 + } + ] + }, + "requiredSchematics": [ + "Research_Caterium_6_3_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_RebarStun_C": { + "className": "ResourceSink_RebarStun_C", + "type": "EST_ResourceSink", + "name": "Stun Rebar Pack (purchase)", + "slug": "stun-rebar-pack-purchase", + "icon": "resourcesink-rebarstun-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Rebar_Stunshot_C", + "amount": 50.0 + } + ] + }, + "requiredSchematics": [ + "Research_Caterium_3_2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_RebarShatter_C": { + "className": "ResourceSink_RebarShatter_C", + "type": "EST_ResourceSink", + "name": "Shatter Rebar Pack (purchase)", + "slug": "shatter-rebar-pack-purchase", + "icon": "resourcesink-rebarshatter-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Rebar_Spreadshot_C", + "amount": 50.0 + } + ] + }, + "requiredSchematics": [ + "Research_Quartz_2_1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_RebarExplosive_C": { + "className": "ResourceSink_RebarExplosive_C", + "type": "EST_ResourceSink", + "name": "Explosive Rebar Pack (purchase)", + "slug": "explosive-rebar-pack-purchase", + "icon": "resourcesink-rebarexplosive-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Rebar_Explosive_C", + "amount": 50.0 + } + ] + }, + "requiredSchematics": [ + "Research_Sulfur_4_2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_RadiationFilters_C": { + "className": "ResourceSink_RadiationFilters_C", + "type": "EST_ResourceSink", + "name": "Radiation Filters (purchase)", + "slug": "radiation-filters-purchase", + "icon": "resourcesink-radiationfilters-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_HazmatFilter_C", + "amount": 10.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_7-3_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_NobeliskPulse_C": { + "className": "ResourceSink_NobeliskPulse_C", + "type": "EST_ResourceSink", + "name": "Pulse Nobelisk Pack (purchase)", + "slug": "pulse-nobelisk-pack-purchase", + "icon": "resourcesink-nobeliskpulse-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_NobeliskShockwave_C", + "amount": 25.0 + } + ] + }, + "requiredSchematics": [ + "Research_Quartz_3_4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_NobeliskGas_C": { + "className": "ResourceSink_NobeliskGas_C", + "type": "EST_ResourceSink", + "name": "Gas Nobelisk Pack (purchase)", + "slug": "gas-nobelisk-pack-purchase", + "icon": "resourcesink-nobeliskgas-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_NobeliskGas_C", + "amount": 25.0 + } + ] + }, + "requiredSchematics": [ + "Research_Mycelia_8_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_NobeliskCluster_C": { + "className": "ResourceSink_NobeliskCluster_C", + "type": "EST_ResourceSink", + "name": "Cluster Nobelisk Pack (purchase)", + "slug": "cluster-nobelisk-pack-purchase", + "icon": "resourcesink-nobeliskcluster-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_NobeliskCluster_C", + "amount": 25.0 + } + ] + }, + "requiredSchematics": [ + "Research_Sulfur_4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_HealthPack_C": { + "className": "ResourceSink_HealthPack_C", + "type": "EST_ResourceSink", + "name": "Health Pack (purchase)", + "slug": "health-pack-purchase", + "icon": "resourcesink-healthpack-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Medkit_C", + "amount": 5.0 + } + ] + }, + "requiredSchematics": [ + "Research_AOrgans_2_C", + "Research_Nutrients_4_C", + "Research_Mycelia_5_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_GasFilters_C": { + "className": "ResourceSink_GasFilters_C", + "type": "EST_ResourceSink", + "name": "Gas Filters (purchase)", + "slug": "gas-filters-purchase", + "icon": "resourcesink-gasfilters-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Filter_C", + "amount": 25.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_6-4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Explosives_C": { + "className": "ResourceSink_Explosives_C", + "type": "EST_ResourceSink", + "name": "Nobelisk Pack (purchase)", + "slug": "nobelisk-pack-purchase", + "icon": "resourcesink-explosives-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_NobeliskExplosive_C", + "amount": 25.0 + } + ] + }, + "requiredSchematics": [ + "Research_Sulfur_3_1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_CoffeeCup_C": { + "className": "ResourceSink_CoffeeCup_C", + "type": "EST_ResourceSink", + "name": "FICSIT™ Coffee Cup (purchase)", + "slug": "ficsittm-coffee-cup-purchase", + "icon": "resourcesink-coffeecup-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "BP_EquipmentDescriptorCup_C", + "amount": 1.0 + } + ] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_AmmoPack_C": { + "className": "ResourceSink_AmmoPack_C", + "type": "EST_ResourceSink", + "name": "Iron Rebar Pack (purchase)", + "slug": "iron-rebar-pack-purchase", + "icon": "resourcesink-ammopack-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_SpikedRebar_C", + "amount": 50.0 + } + ] + }, + "requiredSchematics": [ + "Research_ACarapace_2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_AdvancedAmmoPack_C": { + "className": "ResourceSink_AdvancedAmmoPack_C", + "type": "EST_ResourceSink", + "name": "Rifle Ammo Pack (purchase)", + "slug": "rifle-ammo-pack-purchase", + "icon": "resourcesink-advancedammopack-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_CartridgeStandard_C", + "amount": 250.0 + } + ] + }, + "requiredSchematics": [ + "Research_Sulfur_4_1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Wire_C": { + "className": "ResourceSink_Wire_C", + "type": "EST_ResourceSink", + "name": "Wire (purchase)", + "slug": "wire-purchase", + "icon": "resourcesink-wire-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Wire_C", + "amount": 500.0 + } + ] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Screw_C": { + "className": "ResourceSink_Screw_C", + "type": "EST_ResourceSink", + "name": "Screw (purchase)", + "slug": "screw-purchase", + "icon": "resourcesink-screw-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_IronScrew_C", + "amount": 500.0 + } + ] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Rod_C": { + "className": "ResourceSink_Rod_C", + "type": "EST_ResourceSink", + "name": "Iron Rod (purchase)", + "slug": "iron-rod-purchase", + "icon": "resourcesink-rod-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_IronRod_C", + "amount": 200.0 + } + ] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_QuartzCrystal_C": { + "className": "ResourceSink_QuartzCrystal_C", + "type": "EST_ResourceSink", + "name": "Quartz Crystal (purchase)", + "slug": "quartz-crystal-purchase", + "icon": "resourcesink-quartzcrystal-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_QuartzCrystal_C", + "amount": 200.0 + } + ] + }, + "requiredSchematics": [ + "Research_Quartz_1_1_C", + "Schematic_7-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Plate_C": { + "className": "ResourceSink_Plate_C", + "type": "EST_ResourceSink", + "name": "Iron Plate (purchase)", + "slug": "iron-plate-purchase", + "icon": "resourcesink-plate-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_IronPlate_C", + "amount": 200.0 + } + ] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Concrete_C": { + "className": "ResourceSink_Concrete_C", + "type": "EST_ResourceSink", + "name": "Concrete (purchase)", + "slug": "concrete-purchase", + "icon": "resourcesink-concrete-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Cement_C", + "amount": 500.0 + } + ] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Cable_C": { + "className": "ResourceSink_Cable_C", + "type": "EST_ResourceSink", + "name": "Cable (purchase)", + "slug": "cable-purchase", + "icon": "resourcesink-cable-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Cable_C", + "amount": 200.0 + } + ] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Biomass_C": { + "className": "ResourceSink_Biomass_C", + "type": "EST_ResourceSink", + "name": "Biomass (purchase)", + "slug": "biomass-purchase", + "icon": "resourcesink-biomass-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_GenericBiomass_C", + "amount": 200.0 + } + ] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Rotor_C": { + "className": "ResourceSink_Rotor_C", + "type": "EST_ResourceSink", + "name": "Rotor (purchase)", + "slug": "rotor-purchase", + "icon": "resourcesink-rotor-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Rotor_C", + "amount": 100.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_2-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_ReinforcedIronPlate_C": { + "className": "ResourceSink_ReinforcedIronPlate_C", + "type": "EST_ResourceSink", + "name": "Reinforced Iron Plate (purchase)", + "slug": "reinforced-iron-plate-purchase", + "icon": "resourcesink-reinforcedironplate-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_IronPlateReinforced_C", + "amount": 100.0 + } + ] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Quickwire_C": { + "className": "ResourceSink_Quickwire_C", + "type": "EST_ResourceSink", + "name": "Quickwire (purchase)", + "slug": "quickwire-purchase", + "icon": "resourcesink-quickwire-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_HighSpeedWire_C", + "amount": 500.0 + } + ] + }, + "requiredSchematics": [ + "Research_Caterium_2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_ModularFrame_C": { + "className": "ResourceSink_ModularFrame_C", + "type": "EST_ResourceSink", + "name": "Modular Frame (purchase)", + "slug": "modular-frame-purchase", + "icon": "resourcesink-modularframe-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 4.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_ModularFrame_C", + "amount": 50.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_2-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Fabric_C": { + "className": "ResourceSink_Fabric_C", + "type": "EST_ResourceSink", + "name": "Fabric (purchase)", + "slug": "fabric-purchase", + "icon": "resourcesink-fabric-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Fabric_C", + "amount": 100.0 + } + ] + }, + "requiredSchematics": [ + "Research_Mycelia_2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_CopperSheet_C": { + "className": "ResourceSink_CopperSheet_C", + "type": "EST_ResourceSink", + "name": "Copper Sheet (purchase)", + "slug": "copper-sheet-purchase", + "icon": "resourcesink-coppersheet-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_CopperSheet_C", + "amount": 200.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_2-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Biofuel_C": { + "className": "ResourceSink_Biofuel_C", + "type": "EST_ResourceSink", + "name": "Biofuel (purchase)", + "slug": "biofuel-purchase", + "icon": "resourcesink-biofuel-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Biofuel_C", + "amount": 200.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_2-2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_AILimiter_C": { + "className": "ResourceSink_AILimiter_C", + "type": "EST_ResourceSink", + "name": "AI Limiter (purchase)", + "slug": "ai-limiter-purchase", + "icon": "resourcesink-ailimiter-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_CircuitBoardHighSpeed_C", + "amount": 100.0 + } + ] + }, + "requiredSchematics": [ + "Research_Caterium_4_1_C", + "Schematic_7-4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_SteelPipe_C": { + "className": "ResourceSink_SteelPipe_C", + "type": "EST_ResourceSink", + "name": "Steel Pipe (purchase)", + "slug": "steel-pipe-purchase", + "icon": "resourcesink-steelpipe-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_SteelPipe_C", + "amount": 200.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_3-4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_SteelBeam_C": { + "className": "ResourceSink_SteelBeam_C", + "type": "EST_ResourceSink", + "name": "Steel Beam (purchase)", + "slug": "steel-beam-purchase", + "icon": "resourcesink-steelbeam-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_SteelPlate_C", + "amount": 200.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_3-4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_BlackPowder_C": { + "className": "ResourceSink_BlackPowder_C", + "type": "EST_ResourceSink", + "name": "Black Powder (purchase)", + "slug": "black-powder-purchase", + "icon": "resourcesink-blackpowder-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Gunpowder_C", + "amount": 200.0 + } + ] + }, + "requiredSchematics": [ + "Research_Sulfur_1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Stator_C": { + "className": "ResourceSink_Stator_C", + "type": "EST_ResourceSink", + "name": "Stator (purchase)", + "slug": "stator-purchase", + "icon": "resourcesink-stator-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Stator_C", + "amount": 100.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_4-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_EncasedIndustrialBeam_C": { + "className": "ResourceSink_EncasedIndustrialBeam_C", + "type": "EST_ResourceSink", + "name": "Encased Industrial Beam (purchase)", + "slug": "encased-industrial-beam-purchase", + "icon": "resourcesink-encasedindustrialbeam-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_SteelPlateReinforced_C", + "amount": 100.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_4-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_CompactedCoal_C": { + "className": "ResourceSink_CompactedCoal_C", + "type": "EST_ResourceSink", + "name": "Compacted Coal (purchase)", + "slug": "compacted-coal-purchase", + "icon": "resourcesink-compactedcoal-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_CompactedCoal_C", + "amount": 100.0 + } + ] + }, + "requiredSchematics": [ + "Research_Sulfur_CompactedCoal_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_SmokelessPowder_C": { + "className": "ResourceSink_SmokelessPowder_C", + "type": "EST_ResourceSink", + "name": "Smokeless Powder (purchase)", + "slug": "smokeless-powder-purchase", + "icon": "resourcesink-smokelesspowder-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_GunpowderMK2_C", + "amount": 100.0 + } + ] + }, + "requiredSchematics": [ + "Research_Sulfur_3_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Rubber_C": { + "className": "ResourceSink_Rubber_C", + "type": "EST_ResourceSink", + "name": "Rubber (purchase)", + "slug": "rubber-purchase", + "icon": "resourcesink-rubber-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Rubber_C", + "amount": 200.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Plastic_C": { + "className": "ResourceSink_Plastic_C", + "type": "EST_ResourceSink", + "name": "Plastic (purchase)", + "slug": "plastic-purchase", + "icon": "resourcesink-plastic-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Plastic_C", + "amount": 200.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Motor_C": { + "className": "ResourceSink_Motor_C", + "type": "EST_ResourceSink", + "name": "Motor (purchase)", + "slug": "motor-purchase", + "icon": "resourcesink-motor-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Motor_C", + "amount": 50.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_4-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_HighSpeedConnector_C": { + "className": "ResourceSink_HighSpeedConnector_C", + "type": "EST_ResourceSink", + "name": "High-Speed Connector (purchase)", + "slug": "high-speed-connector-purchase", + "icon": "resourcesink-highspeedconnector-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 4.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_HighSpeedConnector_C", + "amount": 100.0 + } + ] + }, + "requiredSchematics": [ + "Research_Caterium_5_C", + "Schematic_7-4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_EmptyCanister_C": { + "className": "ResourceSink_EmptyCanister_C", + "type": "EST_ResourceSink", + "name": "Empty Canister (purchase)", + "slug": "empty-canister-purchase", + "icon": "resourcesink-emptycanister-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_FluidCanister_C", + "amount": 100.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_CrystalOscillator_C": { + "className": "ResourceSink_CrystalOscillator_C", + "type": "EST_ResourceSink", + "name": "Crystal Oscillator (purchase)", + "slug": "crystal-oscillator-purchase", + "icon": "resourcesink-crystaloscillator-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 4.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_CrystalOscillator_C", + "amount": 100.0 + } + ] + }, + "requiredSchematics": [ + "Research_Quartz_2_C", + "Schematic_7-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_CircuitBoard_C": { + "className": "ResourceSink_CircuitBoard_C", + "type": "EST_ResourceSink", + "name": "Circuit Board (purchase)", + "slug": "circuit-board-purchase", + "icon": "resourcesink-circuitboard-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_CircuitBoard_C", + "amount": 200.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_5-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_PackagedTurboFuel_C": { + "className": "ResourceSink_PackagedTurboFuel_C", + "type": "EST_ResourceSink", + "name": "Packaged Turbofuel (purchase)", + "slug": "packaged-turbofuel-purchase", + "icon": "resourcesink-packagedturbofuel-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 4.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_TurboFuel_C", + "amount": 100.0 + } + ] + }, + "requiredSchematics": [ + "Research_Sulfur_TurboFuel_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_PackagedFuel_C": { + "className": "ResourceSink_PackagedFuel_C", + "type": "EST_ResourceSink", + "name": "Packaged Fuel (purchase)", + "slug": "packaged-fuel-purchase", + "icon": "resourcesink-packagedfuel-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Fuel_C", + "amount": 100.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_5-4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_PackagedBiofuel_C": { + "className": "ResourceSink_PackagedBiofuel_C", + "type": "EST_ResourceSink", + "name": "Packaged Liquid Biofuel (purchase)", + "slug": "packaged-liquid-biofuel-purchase", + "icon": "resourcesink-packagedbiofuel-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_PackagedBiofuel_C", + "amount": 100.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_5-4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_HeavyModularFrame_C": { + "className": "ResourceSink_HeavyModularFrame_C", + "type": "EST_ResourceSink", + "name": "Heavy Modular Frame (purchase)", + "slug": "heavy-modular-frame-purchase", + "icon": "resourcesink-heavymodularframe-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 6.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_ModularFrameHeavy_C", + "amount": 50.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_5-2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Computer_C": { + "className": "ResourceSink_Computer_C", + "type": "EST_ResourceSink", + "name": "Computer (purchase)", + "slug": "computer-purchase", + "icon": "resourcesink-computer-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 6.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Computer_C", + "amount": 50.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_5-2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_TurboMotor_C": { + "className": "ResourceSink_TurboMotor_C", + "type": "EST_ResourceSink", + "name": "Turbo Motor (purchase)", + "slug": "turbo-motor-purchase", + "icon": "resourcesink-turbomotor-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 8.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_MotorLightweight_C", + "amount": 50.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_8-4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_SuperComputer_C": { + "className": "ResourceSink_SuperComputer_C", + "type": "EST_ResourceSink", + "name": "Supercomputer (purchase)", + "slug": "supercomputer-purchase", + "icon": "resourcesink-supercomputer-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 8.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_ComputerSuper_C", + "amount": 50.0 + } + ] + }, + "requiredSchematics": [ + "Research_Caterium_6_1_C", + "Schematic_7-4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Silica_C": { + "className": "ResourceSink_Silica_C", + "type": "EST_ResourceSink", + "name": "Silica (purchase)", + "slug": "silica-purchase", + "icon": "resourcesink-silica-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Silica_C", + "amount": 200.0 + } + ] + }, + "requiredSchematics": [ + "Research_Quartz_1_2_C", + "Schematic_7-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_RadioControlUnit_C": { + "className": "ResourceSink_RadioControlUnit_C", + "type": "EST_ResourceSink", + "name": "Radio Control Unit (purchase)", + "slug": "radio-control-unit-purchase", + "icon": "resourcesink-radiocontrolunit-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 7.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_ModularFrameLightweight_C", + "amount": 50.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_7-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_HeatSink_C": { + "className": "ResourceSink_HeatSink_C", + "type": "EST_ResourceSink", + "name": "Heat Sink (purchase)", + "slug": "heat-sink-purchase", + "icon": "resourcesink-heatsink-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_AluminumPlateReinforced_C", + "amount": 100.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_8-2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Battery_C": { + "className": "ResourceSink_Battery_C", + "type": "EST_ResourceSink", + "name": "Battery (purchase)", + "slug": "battery-purchase", + "icon": "resourcesink-battery-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_Battery_C", + "amount": 200.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_7-4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_AluminumCasing_C": { + "className": "ResourceSink_AluminumCasing_C", + "type": "EST_ResourceSink", + "name": "Aluminum Casing (purchase)", + "slug": "aluminum-casing-purchase", + "icon": "resourcesink-aluminumcasing-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_AluminumCasing_C", + "amount": 200.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_7-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_AlcladSheet_C": { + "className": "ResourceSink_AlcladSheet_C", + "type": "EST_ResourceSink", + "name": "Alclad Aluminum Sheet (purchase)", + "slug": "alclad-aluminum-sheet-purchase", + "icon": "resourcesink-alcladsheet-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_AluminumPlate_C", + "amount": 200.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_7-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_PressureConversionCube_C": { + "className": "ResourceSink_PressureConversionCube_C", + "type": "EST_ResourceSink", + "name": "Pressure Conversion Cube (purchase)", + "slug": "pressure-conversion-cube-purchase", + "icon": "resourcesink-pressureconversioncube-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 8.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_PressureConversionCube_C", + "amount": 50.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_8-5_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_FusedModularFrame_C": { + "className": "ResourceSink_FusedModularFrame_C", + "type": "EST_ResourceSink", + "name": "Fused Modular Frame (purchase)", + "slug": "fused-modular-frame-purchase", + "icon": "resourcesink-fusedmodularframe-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 7.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_ModularFrameFused_C", + "amount": 50.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_8-2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_EmptyFluidTank_C": { + "className": "ResourceSink_EmptyFluidTank_C", + "type": "EST_ResourceSink", + "name": "Empty Fluid Tank (purchase)", + "slug": "empty-fluid-tank-purchase", + "icon": "resourcesink-emptyfluidtank-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_GasTank_C", + "amount": 100.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_8-2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_ElectromagneticControlRod_C": { + "className": "ResourceSink_ElectromagneticControlRod_C", + "type": "EST_ResourceSink", + "name": "Electromagnetic Control Rod (purchase)", + "slug": "electromagnetic-control-rod-purchase", + "icon": "resourcesink-electromagneticcontrolrod-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 4.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_ElectromagneticControlRod_C", + "amount": 100.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_8-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_CopperPowder_C": { + "className": "ResourceSink_CopperPowder_C", + "type": "EST_ResourceSink", + "name": "Copper Powder (purchase)", + "slug": "copper-powder-purchase", + "icon": "resourcesink-copperpowder-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_CopperDust_C", + "amount": 500.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_8-5_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_CoolingSystem_C": { + "className": "ResourceSink_CoolingSystem_C", + "type": "EST_ResourceSink", + "name": "Cooling System (purchase)", + "slug": "cooling-system-purchase", + "icon": "resourcesink-coolingsystem-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_CoolingSystem_C", + "amount": 100.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_8-2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_TimeCrystal_C": { + "className": "ResourceSink_TimeCrystal_C", + "type": "EST_ResourceSink", + "name": "Time Crystal (purchase)", + "slug": "time-crystal-purchase", + "icon": "resourcesink-timecrystal-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_TimeCrystal_C", + "amount": 200.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_9-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_SyntheticPowerShard_C": { + "className": "ResourceSink_SyntheticPowerShard_C", + "type": "EST_ResourceSink", + "name": "Synthetic Power Shard (purchase)", + "slug": "synthetic-power-shard-purchase", + "icon": "resourcesink-syntheticpowershard-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 10.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_CrystalShard_C", + "amount": 10.0 + } + ] + }, + "requiredSchematics": [ + "Research_PowerSlugs_6_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_SuperPositionOscillator_C": { + "className": "ResourceSink_SuperPositionOscillator_C", + "type": "EST_ResourceSink", + "name": "Superposition Oscillator (purchase)", + "slug": "superposition-oscillator-purchase", + "icon": "resourcesink-superpositionoscillator-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 9.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_QuantumOscillator_C", + "amount": 50.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_9-2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_RocketFuel_C": { + "className": "ResourceSink_RocketFuel_C", + "type": "EST_ResourceSink", + "name": "Packaged Rocket Fuel (purchase)", + "slug": "packaged-rocket-fuel-purchase", + "icon": "resourcesink-rocketfuel-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 6.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_PackagedRocketFuel_C", + "amount": 100.0 + } + ] + }, + "requiredSchematics": [ + "Research_Sulfur_RocketFuel_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_NeuralQuantumProcessor_C": { + "className": "ResourceSink_NeuralQuantumProcessor_C", + "type": "EST_ResourceSink", + "name": "Neural-Quantum Processor (purchase)", + "slug": "neural-quantum-processor-purchase", + "icon": "resourcesink-neuralquantumprocessor-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 10.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_TemporalProcessor_C", + "amount": 50.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_9-2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_IonizedFuel_C": { + "className": "ResourceSink_IonizedFuel_C", + "type": "EST_ResourceSink", + "name": "Packaged Ionized Fuel (purchase)", + "slug": "packaged-ionized-fuel-purchase", + "icon": "resourcesink-ionizedfuel-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 8.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_PackagedIonizedFuel_C", + "amount": 100.0 + } + ] + }, + "requiredSchematics": [ + "Research_Sulfur_IonizedFuel_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_FicsiteTrigon_C": { + "className": "ResourceSink_FicsiteTrigon_C", + "type": "EST_ResourceSink", + "name": "Ficsite Trigon (purchase)", + "slug": "ficsite-trigon-purchase", + "icon": "resourcesink-ficsitetrigon-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [ + { + "item": "Desc_FicsiteMesh_C", + "amount": 200.0 + } + ] + }, + "requiredSchematics": [ + "Schematic_9-1_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Zones_FoundationPatterns_C": { + "className": "ResourceSink_Zones_FoundationPatterns_C", + "type": "EST_ResourceSink", + "name": "Factory Zone Patterns", + "slug": "factory-zone-patterns", + "icon": "resourcesink-zones-foundationpatterns-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Pattern_ZoneFull_C", + "Recipe_Pattern_ZoneHalf_C", + "Recipe_Pattern_ZoneQuarter_C", + "Recipe_Pattern_ZoneLine_C", + "Recipe_Pattern_Remover_Zones_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_UnPainted_PaintFinish_C": { + "className": "ResourceSink_UnPainted_PaintFinish_C", + "type": "EST_ResourceSink", + "name": "Unpainted Finish", + "slug": "unpainted-finish", + "icon": "resourcesink-unpainted-paintfinish-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PaintFinish_UnPainted_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Pathways_FoundationPatterns_C": { + "className": "ResourceSink_Pathways_FoundationPatterns_C", + "type": "EST_ResourceSink", + "name": "Pathway Patterns", + "slug": "pathway-patterns", + "icon": "resourcesink-pathways-foundationpatterns-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 6.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Pattern_PathStraight_C", + "Recipe_Pattern_PathCorner_C", + "Recipe_Pattern_PathSplit_C", + "Recipe_Pattern_PathCross_C", + "Recipe_Pattern_PathPioneer_C", + "Recipe_Pattern_PathCart_C", + "Recipe_Pattern_PathZebra_C", + "Recipe_Pattern_Remover_Paths_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Number_FoundationPatterns_C": { + "className": "ResourceSink_Number_FoundationPatterns_C", + "type": "EST_ResourceSink", + "name": "Number Patterns", + "slug": "number-patterns", + "icon": "resourcesink-number-foundationpatterns-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 2.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Pattern_Number0_C", + "Recipe_Pattern_Number1_C", + "Recipe_Pattern_Number2_C", + "Recipe_Pattern_Number3_C", + "Recipe_Pattern_Number4_C", + "Recipe_Pattern_Number5_C", + "Recipe_Pattern_Number6_C", + "Recipe_Pattern_Number7_C", + "Recipe_Pattern_Number8_C", + "Recipe_Pattern_Number9_C", + "Recipe_Pattern_Remover_Numbers_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_IconsTransport_FoundationPatterns_C": { + "className": "ResourceSink_IconsTransport_FoundationPatterns_C", + "type": "EST_ResourceSink", + "name": "Transportation Icon Patterns", + "slug": "transportation-icon-patterns", + "icon": "resourcesink-iconstransport-foundationpatterns-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Pattern_Icon_Tractor_C", + "Recipe_Pattern_Icon_Truck_C", + "Recipe_Pattern_Icon_Explorer_C", + "Recipe_Pattern_Icon_Cart_C", + "Recipe_Pattern_NO_Cart_C", + "Recipe_Pattern_Icon_Parking_C", + "Recipe_Pattern_NO_Parking_C", + "Recipe_Pattern_FullZebra_C", + "Recipe_Pattern_Remover_Icons_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_IconsFactory_FoundationPatterns_C": { + "className": "ResourceSink_IconsFactory_FoundationPatterns_C", + "type": "EST_ResourceSink", + "name": "Factory Icon Patterns", + "slug": "factory-icon-patterns", + "icon": "resourcesink-iconsfactory-foundationpatterns-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 3.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Pattern_Icon_Factory_C", + "Recipe_Pattern_Icon_Power_C", + "Recipe_Pattern_Icon_Storage_C", + "Recipe_Pattern_Icon_Nuclear_C", + "Recipe_Pattern_Icon_Liquid_C", + "Recipe_Pattern_Icon_StopCross_C", + "Recipe_Pattern_Icon_Pioneer_C", + "Recipe_Pattern_NO_Pioneer_C", + "Recipe_Pattern_Remover_Icons_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_FullLines_FoundationPatterns_C": { + "className": "ResourceSink_FullLines_FoundationPatterns_C", + "type": "EST_ResourceSink", + "name": "Solid Line Patterns", + "slug": "solid-line-patterns", + "icon": "resourcesink-fulllines-foundationpatterns-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Pattern_LineCentre_C", + "Recipe_Pattern_LineCentreCorner_C", + "Recipe_Pattern_LineSplit_C", + "Recipe_Pattern_LineCross_C", + "Recipe_Pattern_LineSide_C", + "Recipe_Pattern_LineSideCorner_C", + "Recipe_Pattern_LineDouble_C", + "Recipe_Pattern_Remover_Lines_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_DotLines_FoundationPatterns_C": { + "className": "ResourceSink_DotLines_FoundationPatterns_C", + "type": "EST_ResourceSink", + "name": "Dotted Line Patterns", + "slug": "dotted-line-patterns", + "icon": "resourcesink-dotlines-foundationpatterns-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 4.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Pattern_DottedCentre_C", + "Recipe_Pattern_DottedCentreCorner_C", + "Recipe_Pattern_DottedSplit_C", + "Recipe_Pattern_DottedCross_C", + "Recipe_Pattern_DottedSide_C", + "Recipe_Pattern_DottedSideCorner_C", + "Recipe_Pattern_DottedDouble_C", + "Recipe_Pattern_Remover_Lines_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Copper_PaintFinish_C": { + "className": "ResourceSink_Copper_PaintFinish_C", + "type": "EST_ResourceSink", + "name": "Copper Paint Finish", + "slug": "copper-paint-finish", + "icon": "resourcesink-copper-paintfinish-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PaintFinish_Copper_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Chrome_PaintFinish_C": { + "className": "ResourceSink_Chrome_PaintFinish_C", + "type": "EST_ResourceSink", + "name": "Chrome Paint Finish", + "slug": "chrome-paint-finish", + "icon": "resourcesink-chrome-paintfinish-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 5.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PaintFinish_Chrome_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Caterium_PaintFinish_C": { + "className": "ResourceSink_Caterium_PaintFinish_C", + "type": "EST_ResourceSink", + "name": "Caterium Paint Finish", + "slug": "caterium-paint-finish", + "icon": "resourcesink-caterium-paintfinish-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 10.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PaintFinish_Caterium_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Research_Caterium_2_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_CarbonSteel_PaintFinish_C": { + "className": "ResourceSink_CarbonSteel_PaintFinish_C", + "type": "EST_ResourceSink", + "name": "Carbon Steel Finish", + "slug": "carbon-steel-finish", + "icon": "resourcesink-carbonsteel-paintfinish-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 8.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_PaintFinish_CarbonSteel_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_3-4_C" + ], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "ResourceSink_Arrows_FoundationPatterns_C": { + "className": "ResourceSink_Arrows_FoundationPatterns_C", + "type": "EST_ResourceSink", + "name": "Arrow Patterns", + "slug": "arrow-patterns", + "icon": "resourcesink-arrows-foundationpatterns-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Pattern_ArrowStraight_C", + "Recipe_Pattern_ArrowLeft_C", + "Recipe_Pattern_ArrowRight_C", + "Recipe_Pattern_ArrowBack_C", + "Recipe_Pattern_NO_ArrowStraight_C", + "Recipe_Pattern_NO_ArrowLeft_C", + "Recipe_Pattern_NO_ArrowRight_C", + "Recipe_Pattern_Remover_Arrows_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 1, + "time": 0.0, + "mam": false, + "alternate": false + }, + "Schematic_Sanctum2_C": { + "className": "Schematic_Sanctum2_C", + "type": "EST_ResourceSink", + "name": "Sanctum 2 Boombox Tape", + "slug": "sanctum-2-boombox-tape", + "icon": "schematic-sanctum2-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_Sanctum_C": { + "className": "Schematic_Sanctum_C", + "type": "EST_ResourceSink", + "name": "Sanctum Boombox Tape", + "slug": "sanctum-boombox-tape", + "icon": "schematic-sanctum-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_LeMichael_C": { + "className": "Schematic_LeMichael_C", + "type": "EST_ResourceSink", + "name": "Le Michael Boombox Tape", + "slug": "le-michael-boombox-tape", + "icon": "schematic-lemichael-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_JoelSyntholm_C": { + "className": "Schematic_JoelSyntholm_C", + "type": "EST_ResourceSink", + "name": "Joel Syntholm Boombox Tape", + "slug": "joel-syntholm-boombox-tape", + "icon": "schematic-joelsyntholm-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_Goat_C": { + "className": "Schematic_Goat_C", + "type": "EST_ResourceSink", + "name": "Goat Music Boombox Tape", + "slug": "goat-music-boombox-tape", + "icon": "schematic-goat-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_AbsoluteFicsit_C": { + "className": "Schematic_AbsoluteFicsit_C", + "type": "EST_ResourceSink", + "name": "Absolute FICSIT Boombox Tape", + "slug": "absolute-ficsit-boombox-tape", + "icon": "schematic-absoluteficsit-c", + "cost": [ + { + "item": "Desc_ResourceSinkCoupon_C", + "amount": 1.0 + } + ], + "unlock": { + "recipes": [], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 600.0, + "mam": false, + "alternate": false + }, + "Schematic_Tutorial1_C": { + "className": "Schematic_Tutorial1_C", + "type": "EST_Tutorial", + "name": "HUB Upgrade 1", + "slug": "hub-upgrade-1", + "icon": "schematic-tutorial1-c", + "cost": [ + { + "item": "Desc_IronRod_C", + "amount": 10.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_Workshop_C", + "Recipe_PortableMiner_C" + ], + "scannerResources": [], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": false + }, + "Schematic_Tutorial1_5_C": { + "className": "Schematic_Tutorial1_5_C", + "type": "EST_Tutorial", + "name": "HUB Upgrade 2", + "slug": "hub-upgrade-2", + "icon": "schematic-tutorial1-5-c", + "cost": [ + { + "item": "Desc_IronRod_C", + "amount": 20.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 10.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_SmelterBasicMk1_C", + "Recipe_PowerLine_C", + "Recipe_IngotCopper_C", + "Recipe_Wire_C", + "Recipe_Cable_C" + ], + "scannerResources": [ + "Desc_OreCopper_C" + ], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_Tutorial1_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": false + }, + "Schematic_Tutorial2_C": { + "className": "Schematic_Tutorial2_C", + "type": "EST_Tutorial", + "name": "HUB Upgrade 3", + "slug": "hub-upgrade-3", + "icon": "schematic-tutorial2-c", + "cost": [ + { + "item": "Desc_IronPlate_C", + "amount": 20.0 + }, + { + "item": "Desc_IronRod_C", + "amount": 20.0 + }, + { + "item": "Desc_Wire_C", + "amount": 20.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_ConstructorMk1_C", + "Recipe_PowerPoleMk1_C", + "Recipe_Concrete_C", + "Recipe_Screw_C", + "Recipe_IronPlateReinforced_C" + ], + "scannerResources": [ + "Desc_Stone_C" + ], + "inventorySlots": 0, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_Tutorial1_5_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": false + }, + "Schematic_Tutorial3_C": { + "className": "Schematic_Tutorial3_C", + "type": "EST_Tutorial", + "name": "HUB Upgrade 4", + "slug": "hub-upgrade-4", + "icon": "schematic-tutorial3-c", + "cost": [ + { + "item": "Desc_IronPlate_C", + "amount": 75.0 + }, + { + "item": "Desc_Cable_C", + "amount": 20.0 + }, + { + "item": "Desc_Cement_C", + "amount": 10.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_ConveyorPole_C", + "Recipe_ConveyorBeltMk1_C" + ], + "scannerResources": [], + "inventorySlots": 3, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_Tutorial2_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": false + }, + "Schematic_Tutorial4_C": { + "className": "Schematic_Tutorial4_C", + "type": "EST_Tutorial", + "name": "HUB Upgrade 5", + "slug": "hub-upgrade-5", + "icon": "schematic-tutorial4-c", + "cost": [ + { + "item": "Desc_IronRod_C", + "amount": 75.0 + }, + { + "item": "Desc_Cable_C", + "amount": 50.0 + }, + { + "item": "Desc_Cement_C", + "amount": 20.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_MinerMk1_C", + "Recipe_StorageContainerMk1_C" + ], + "scannerResources": [], + "inventorySlots": 3, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_Tutorial3_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": false + }, + "Schematic_Tutorial5_C": { + "className": "Schematic_Tutorial5_C", + "type": "EST_Tutorial", + "name": "HUB Upgrade 6", + "slug": "hub-upgrade-6", + "icon": "schematic-tutorial5-c", + "cost": [ + { + "item": "Desc_IronRod_C", + "amount": 100.0 + }, + { + "item": "Desc_IronPlate_C", + "amount": 100.0 + }, + { + "item": "Desc_Wire_C", + "amount": 100.0 + }, + { + "item": "Desc_Cement_C", + "amount": 50.0 + } + ], + "unlock": { + "recipes": [ + "Recipe_SpaceElevator_C", + "Recipe_Biomass_Wood_C", + "Recipe_Biomass_Leaves_C", + "Recipe_GeneratorBiomass_Automated_C" + ], + "scannerResources": [], + "inventorySlots": 3, + "giveItems": [] + }, + "requiredSchematics": [ + "Schematic_Tutorial4_C" + ], + "tier": 0, + "time": 0.0, + "mam": false, + "alternate": false + } + }, + "generators": { + "Desc_GeneratorCoal_C": { + "className": "Desc_GeneratorCoal_C", + "fuel": [ + "Desc_Coal_C", + "Desc_CompactedCoal_C", + "Desc_PetroleumCoke_C" + ], + "powerProduction": 75, + "powerProductionExponent": 1.6, + "waterToPowerRatio": 10.0 + }, + "Desc_GeneratorNuclear_C": { + "className": "Desc_GeneratorNuclear_C", + "fuel": [ + "Desc_NuclearFuelRod_C", + "Desc_PlutoniumFuelRod_C", + "Desc_FicsoniumFuelRod_C" + ], + "powerProduction": 2500, + "powerProductionExponent": 1.6, + "waterToPowerRatio": 1.6 + }, + "Desc_GeneratorFuel_C": { + "className": "Desc_GeneratorFuel_C", + "fuel": [ + "Desc_LiquidFuel_C", + "Desc_LiquidTurboFuel_C", + "Desc_LiquidBiofuel_C", + "Desc_RocketFuel_C", + "Desc_IonizedFuel_C" + ], + "powerProduction": 250, + "powerProductionExponent": 1.6, + "waterToPowerRatio": 0.0 + }, + "Desc_GeneratorBiomass_Automated_C": { + "className": "Desc_GeneratorBiomass_Automated_C", + "fuel": [ + "Desc_Leaves_C", + "Desc_Wood_C", + "Desc_Mycelia_C", + "Desc_GenericBiomass_C", + "Desc_Biofuel_C", + "Desc_PackagedBiofuel_C" + ], + "powerProduction": 30, + "powerProductionExponent": 1.6, + "waterToPowerRatio": 0.0 + } + }, + "resources": { + "Desc_OreIron_C": { + "item": "Desc_OreIron_C", + "pingColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + }, + "speed": 1 + }, + "Desc_Coal_C": { + "item": "Desc_Coal_C", + "pingColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + }, + "speed": 1 + }, + "Desc_Water_C": { + "item": "Desc_Water_C", + "pingColor": { + "r": 122, + "g": 176, + "b": 212, + "a": 0 + }, + "speed": 1 + }, + "Desc_NitrogenGas_C": { + "item": "Desc_NitrogenGas_C", + "pingColor": { + "r": 89, + "g": 89, + "b": 89, + "a": 0 + }, + "speed": 1 + }, + "Desc_Sulfur_C": { + "item": "Desc_Sulfur_C", + "pingColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + }, + "speed": 1 + }, + "Desc_SAM_C": { + "item": "Desc_SAM_C", + "pingColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + }, + "speed": 1 + }, + "Desc_OreBauxite_C": { + "item": "Desc_OreBauxite_C", + "pingColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + }, + "speed": 1 + }, + "Desc_OreGold_C": { + "item": "Desc_OreGold_C", + "pingColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + }, + "speed": 1 + }, + "Desc_OreCopper_C": { + "item": "Desc_OreCopper_C", + "pingColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + }, + "speed": 1 + }, + "Desc_RawQuartz_C": { + "item": "Desc_RawQuartz_C", + "pingColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + }, + "speed": 1 + }, + "Desc_Stone_C": { + "item": "Desc_Stone_C", + "pingColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + }, + "speed": 1 + }, + "Desc_OreUranium_C": { + "item": "Desc_OreUranium_C", + "pingColor": { + "r": 255, + "g": 255, + "b": 255, + "a": 0 + }, + "speed": 1 + }, + "Desc_LiquidOil_C": { + "item": "Desc_LiquidOil_C", + "pingColor": { + "r": 25, + "g": 0, + "b": 25, + "a": 0 + }, + "speed": 1 + } + }, + "miners": { + "Desc_OilPump_C": { + "className": "Desc_OilPump_C", + "allowedResources": [ + "Desc_LiquidOil_C" + ], + "allowLiquids": true, + "allowSolids": false, + "itemsPerCycle": 2000, + "extractCycleTime": 1.0 + }, + "Desc_MinerMk2_C": { + "className": "Desc_MinerMk2_C", + "allowedResources": [ + "Desc_OreIron_C", + "Desc_Coal_C", + "Desc_Sulfur_C", + "Desc_SAM_C", + "Desc_OreBauxite_C", + "Desc_OreGold_C", + "Desc_OreCopper_C", + "Desc_RawQuartz_C", + "Desc_Stone_C", + "Desc_OreUranium_C" + ], + "allowLiquids": false, + "allowSolids": true, + "itemsPerCycle": 1, + "extractCycleTime": 0.5 + }, + "Desc_FrackingExtractor_C": { + "className": "Desc_FrackingExtractor_C", + "allowedResources": [ + "Desc_LiquidOil_C", + "Desc_NitrogenGas_C", + "Desc_Water_C" + ], + "allowLiquids": true, + "allowSolids": false, + "itemsPerCycle": 1000, + "extractCycleTime": 1.0 + }, + "Desc_MinerMk3_C": { + "className": "Desc_MinerMk3_C", + "allowedResources": [ + "Desc_OreIron_C", + "Desc_Coal_C", + "Desc_Sulfur_C", + "Desc_SAM_C", + "Desc_OreBauxite_C", + "Desc_OreGold_C", + "Desc_OreCopper_C", + "Desc_RawQuartz_C", + "Desc_Stone_C", + "Desc_OreUranium_C" + ], + "allowLiquids": false, + "allowSolids": true, + "itemsPerCycle": 1, + "extractCycleTime": 0.25 + }, + "Desc_MinerMk1_C": { + "className": "Desc_MinerMk1_C", + "allowedResources": [ + "Desc_OreIron_C", + "Desc_Coal_C", + "Desc_Sulfur_C", + "Desc_SAM_C", + "Desc_OreBauxite_C", + "Desc_OreGold_C", + "Desc_OreCopper_C", + "Desc_RawQuartz_C", + "Desc_Stone_C", + "Desc_OreUranium_C" + ], + "allowLiquids": false, + "allowSolids": true, + "itemsPerCycle": 1, + "extractCycleTime": 1.0 + } + }, + "buildings": { + "Desc_RailroadTrack_C": { + "slug": "railway", + "icon": "desc-railroadtrack-c", + "name": "Railway", + "description": "Carries trains reliably and quickly.\nHas a wide turn angle, so make sure to plan it out properly.", + "className": "Desc_RailroadTrack_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_8x4_01_C": { + "slug": "basic-wall-4m", + "icon": "desc-wall-8x4-01-c", + "name": "Basic Wall (4 m)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_8x4_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_8x4_02_C": { + "slug": "basic-wall-4m-steel", + "icon": "desc-wall-8x4-02-c", + "name": "Basic Wall (4 m) (Steel)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_8x4_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Conveyor_8x4_01_Steel_C": { + "slug": "conveyor-wall-x3-steel", + "icon": "desc-wall-conveyor-8x4-01-steel-c", + "name": "Conveyor Wall x 3 (Steel)", + "description": "Has 3 Conveyor Belt connections.\nSnaps to Foundations and other Walls.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Conveyor_8x4_01_Steel_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Gate_8x4_01_C": { + "slug": "gate-hole-wall", + "icon": "desc-wall-gate-8x4-01-c", + "name": "Gate Hole Wall", + "description": "Allows pioneers to pass through a Wall.\nSnaps to Foundations and other Walls.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Gate_8x4_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Window_8x4_01_C": { + "slug": "single-window-window", + "icon": "desc-wall-window-8x4-01-c", + "name": "Single Window (Window)", + "description": "Snaps to Foundations and other Walls.\nThe windows allow pioneers to see through a wall.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Window_8x4_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Window_8x4_02_C": { + "slug": "frame-window-window", + "icon": "desc-wall-window-8x4-02-c", + "name": "Frame Window (Window)", + "description": "Snaps to Foundations and other Walls.\nThe windows allow pioneers to see through a wall.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Window_8x4_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Window_8x4_03_C": { + "slug": "panel-window-window", + "icon": "desc-wall-window-8x4-03-c", + "name": "Panel Window (Window)", + "description": "Snaps to Foundations and other Walls.\nThe windows allow pioneers to see through a wall.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Window_8x4_03_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Window_8x4_04_C": { + "slug": "reinforced-window-window", + "icon": "desc-wall-window-8x4-04-c", + "name": "Reinforced Window (Window)", + "description": "Snaps to Foundations and other Walls.\nThe windows allow pioneers to see through a wall.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Window_8x4_04_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x1_C": { + "slug": "basic-wall-1m-concrete", + "icon": "desc-wall-concrete-8x1-c", + "name": "Basic Wall (1 m) (Concrete)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 1 m", + "className": "Desc_Wall_Concrete_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x4_C": { + "slug": "basic-wall-4m-concrete", + "icon": "desc-wall-concrete-8x4-c", + "name": "Basic Wall (4 m) (Concrete)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Concrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x4_ConveyorHole_01_C": { + "slug": "conveyor-wall-x1-concrete", + "icon": "desc-wall-concrete-8x4-conveyorhole-01-c", + "name": "Conveyor Wall x 1 (Concrete)", + "description": "Has 1 Conveyor Belt connection.\nSnaps to Foundations and other Walls.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Concrete_8x4_ConveyorHole_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x4_ConveyorHole_02_C": { + "slug": "conveyor-wall-x2-concrete", + "icon": "desc-wall-concrete-8x4-conveyorhole-02-c", + "name": "Conveyor Wall x 2 (Concrete)", + "description": "Has 2 Conveyor Belt connections.\nSnaps to Foundations and other Walls.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Concrete_8x4_ConveyorHole_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x4_Window_01_C": { + "slug": "single-window-concrete", + "icon": "desc-wall-concrete-8x4-window-01-c", + "name": "Single Window (Concrete)", + "description": "Snaps to Foundations and other Walls.\nThe windows allow pioneers to see through a wall.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Concrete_8x4_Window_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x4_Window_02_C": { + "slug": "frame-window-concrete", + "icon": "desc-wall-concrete-8x4-window-02-c", + "name": "Frame Window (Concrete)", + "description": "Snaps to Foundations and other Walls.\nThe windows allow pioneers to see through a wall.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Concrete_8x4_Window_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x4_Window_03_C": { + "slug": "panel-window-concrete", + "icon": "desc-wall-concrete-8x4-window-03-c", + "name": "Panel Window (Concrete)", + "description": "Snaps to Foundations and other Walls.\nThe windows allow pioneers to see through a wall.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Concrete_8x4_Window_03_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x4_Window_04_C": { + "slug": "reinforced-window-concrete", + "icon": "desc-wall-concrete-8x4-window-04-c", + "name": "Reinforced Window (Concrete)", + "description": "Snaps to Foundations and other Walls.\nThe windows allow pioneers to see through a wall.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Concrete_8x4_Window_04_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_Angular_8x4_C": { + "slug": "tilted-wall-4m-concrete", + "icon": "desc-wall-concrete-angular-8x4-c", + "name": "Tilted Wall (4 m) (Concrete)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Concrete_Angular_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_Angular_8x8_C": { + "slug": "tilted-wall-8m-concrete", + "icon": "desc-wall-concrete-angular-8x8-c", + "name": "Tilted Wall (8 m) (Concrete)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 8 m", + "className": "Desc_Wall_Concrete_Angular_8x8_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x1_FlipTris_C": { + "slug": "inverted-ramp-wall-1m-concrete", + "icon": "desc-wall-concrete-8x1-fliptris-c", + "name": "Inverted Ramp Wall (1 m) (Concrete)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 1 m", + "className": "Desc_Wall_Concrete_8x1_FlipTris_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x2_FlipTris_C": { + "slug": "inverted-ramp-wall-2m-concrete", + "icon": "desc-wall-concrete-8x2-fliptris-c", + "name": "Inverted Ramp Wall (2 m) (Concrete)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 2 m", + "className": "Desc_Wall_Concrete_8x2_FlipTris_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x4_FlipTris_C": { + "slug": "inverted-ramp-wall-4m-concrete", + "icon": "desc-wall-concrete-8x4-fliptris-c", + "name": "Inverted Ramp Wall (4 m) (Concrete)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Concrete_8x4_FlipTris_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x8_FlipTris_C": { + "slug": "inverted-ramp-wall-8m-concrete", + "icon": "desc-wall-concrete-8x8-fliptris-c", + "name": "Inverted Ramp Wall (8 m) (Concrete)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 8 m", + "className": "Desc_Wall_Concrete_8x8_FlipTris_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_Gate_8x4_C": { + "slug": "gate-hole-wall-concrete", + "icon": "desc-wall-concrete-gate-8x4-c", + "name": "Gate Hole Wall (Concrete)", + "description": "Allows pioneers to pass through a Wall.\nSnaps to Foundations and other Walls.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Concrete_Gate_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x1_Tris_C": { + "slug": "ramp-wall-1m-concrete", + "icon": "desc-wall-concrete-8x1-tris-c", + "name": "Ramp Wall (1 m) (Concrete)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 1 m", + "className": "Desc_Wall_Concrete_8x1_Tris_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x2_Tris_C": { + "slug": "ramp-wall-2m-concrete", + "icon": "desc-wall-concrete-8x2-tris-c", + "name": "Ramp Wall (2 m) (Concrete)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 2 m", + "className": "Desc_Wall_Concrete_8x2_Tris_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x4_Tris_C": { + "slug": "ramp-wall-4m-concrete", + "icon": "desc-wall-concrete-8x4-tris-c", + "name": "Ramp Wall (4 m) (Concrete)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Concrete_8x4_Tris_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x8_Tris_C": { + "slug": "ramp-wall-8m-concrete", + "icon": "desc-wall-concrete-8x8-tris-c", + "name": "Ramp Wall (8 m) (Concrete)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 8 m", + "className": "Desc_Wall_Concrete_8x8_Tris_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Orange_8x1_C": { + "slug": "basic-wall-1m", + "icon": "desc-wall-orange-8x1-c", + "name": "Basic Wall (1 m)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 1 m", + "className": "Desc_Wall_Orange_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Orange_Angular_8x4_C": { + "slug": "tilted-wall-4m", + "icon": "desc-wall-orange-angular-8x4-c", + "name": "Tilted Wall (4 m)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Orange_Angular_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Orange_Angular_8x8_C": { + "slug": "tilted-wall-8m", + "icon": "desc-wall-orange-angular-8x8-c", + "name": "Tilted Wall (8 m)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 8 m", + "className": "Desc_Wall_Orange_Angular_8x8_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Orange_8x1_FlipTris_C": { + "slug": "inverted-ramp-wall-1m", + "icon": "desc-wall-orange-8x1-fliptris-c", + "name": "Inverted Ramp Wall (1 m)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 1 m", + "className": "Desc_Wall_Orange_8x1_FlipTris_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Orange_8x2_FlipTris_C": { + "slug": "inverted-ramp-wall-2m", + "icon": "desc-wall-orange-8x2-fliptris-c", + "name": "Inverted Ramp Wall (2 m)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 2 m", + "className": "Desc_Wall_Orange_8x2_FlipTris_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Orange_8x4_FlipTris_C": { + "slug": "inverted-ramp-wall-4m", + "icon": "desc-wall-orange-8x4-fliptris-c", + "name": "Inverted Ramp Wall (4 m)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Orange_8x4_FlipTris_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Orange_8x8_FlipTris_C": { + "slug": "inverted-ramp-wall-8m", + "icon": "desc-wall-orange-8x8-fliptris-c", + "name": "Inverted Ramp Wall (8 m)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 8 m", + "className": "Desc_Wall_Orange_8x8_FlipTris_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Orange_8x1_Tris_C": { + "slug": "ramp-wall-1m", + "icon": "desc-wall-orange-8x1-tris-c", + "name": "Ramp Wall (1 m)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 1 m", + "className": "Desc_Wall_Orange_8x1_Tris_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Orange_8x2_Tris_C": { + "slug": "ramp-wall-2m", + "icon": "desc-wall-orange-8x2-tris-c", + "name": "Ramp Wall (2 m)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 2 m", + "className": "Desc_Wall_Orange_8x2_Tris_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Orange_8x4_Tris_C": { + "slug": "ramp-wall-4m", + "icon": "desc-wall-orange-8x4-tris-c", + "name": "Ramp Wall (4 m)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Orange_8x4_Tris_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Orange_8x8_Tris_C": { + "slug": "ramp-wall-8m", + "icon": "desc-wall-orange-8x8-tris-c", + "name": "Ramp Wall (8 m)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 8 m", + "className": "Desc_Wall_Orange_8x8_Tris_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_SteelWall_8x1_C": { + "slug": "basic-wall-1m-steel", + "icon": "desc-steelwall-8x1-c", + "name": "Basic Wall (1 m) (Steel)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 1 m", + "className": "Desc_SteelWall_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_SteelWall_8x4_Gate_01_C": { + "slug": "gate-hole-wall-steel", + "icon": "desc-steelwall-8x4-gate-01-c", + "name": "Gate Hole Wall (Steel)", + "description": "Allows pioneers to pass through a Wall.\nSnaps to Foundations and other Walls.\n\nSize: 8 m x 4 m", + "className": "Desc_SteelWall_8x4_Gate_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_SteelWall_8x4_Window_01_C": { + "slug": "single-window-steel", + "icon": "desc-steelwall-8x4-window-01-c", + "name": "Single Window (Steel)", + "description": "Snaps to Foundations and other Walls.\nThe windows allow pioneers to see through a wall.\n\nSize: 8 m x 4 m", + "className": "Desc_SteelWall_8x4_Window_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_SteelWall_8x4_Window_02_C": { + "slug": "reinforced-window-steel", + "icon": "desc-steelwall-8x4-window-02-c", + "name": "Reinforced Window (Steel)", + "description": "Snaps to Foundations and other Walls.\nThe windows allow pioneers to see through a wall.\n\nSize: 8 m x 4 m", + "className": "Desc_SteelWall_8x4_Window_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_SteelWall_8x4_Window_03_C": { + "slug": "frame-window-steel", + "icon": "desc-steelwall-8x4-window-03-c", + "name": "Frame Window (Steel)", + "description": "Snaps to Foundations and other Walls.\nThe windows allow pioneers to see through a wall.\n\nSize: 8 m x 4 m", + "className": "Desc_SteelWall_8x4_Window_03_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_SteelWall_8x4_Window_04_C": { + "slug": "panel-window-steel", + "icon": "desc-steelwall-8x4-window-04-c", + "name": "Panel Window (Steel)", + "description": "Snaps to Foundations and other Walls.\nThe windows allow pioneers to see through a wall.\n\nSize: 8 m x 4 m", + "className": "Desc_SteelWall_8x4_Window_04_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_SteelWall_FlipTris_8x1_C": { + "slug": "inverted-ramp-wall-1m-steel", + "icon": "desc-steelwall-fliptris-8x1-c", + "name": "Inverted Ramp Wall (1 m) (Steel)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 1 m", + "className": "Desc_SteelWall_FlipTris_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_SteelWall_FlipTris_8x2_C": { + "slug": "inverted-ramp-wall-2m-steel", + "icon": "desc-steelwall-fliptris-8x2-c", + "name": "Inverted Ramp Wall (2 m) (Steel)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 2 m", + "className": "Desc_SteelWall_FlipTris_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_SteelWall_FlipTris_8x4_C": { + "slug": "inverted-ramp-wall-4m-steel", + "icon": "desc-steelwall-fliptris-8x4-c", + "name": "Inverted Ramp Wall (4 m) (Steel)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 4 m", + "className": "Desc_SteelWall_FlipTris_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_SteelWall_Tris_8x1_C": { + "slug": "ramp-wall-1m-steel", + "icon": "desc-steelwall-tris-8x1-c", + "name": "Ramp Wall (1 m) (Steel)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 1 m", + "className": "Desc_SteelWall_Tris_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_SteelWall_Tris_8x2_C": { + "slug": "ramp-wall-2m-steel", + "icon": "desc-steelwall-tris-8x2-c", + "name": "Ramp Wall (2 m) (Steel)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 2 m", + "className": "Desc_SteelWall_Tris_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_SteelWall_Tris_8x4_C": { + "slug": "ramp-wall-4m-steel", + "icon": "desc-steelwall-tris-8x4-c", + "name": "Ramp Wall (4 m) (Steel)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 4 m", + "className": "Desc_SteelWall_Tris_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_SteelWall_Tris_8x8_C": { + "slug": "ramp-wall-8m-steel", + "icon": "desc-steelwall-tris-8x8-c", + "name": "Ramp Wall (8 m) (Steel)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 8 m", + "className": "Desc_SteelWall_Tris_8x8_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_WallSet_Steel_Angular_8x4_C": { + "slug": "tilted-wall-4m-steel", + "icon": "desc-wallset-steel-angular-8x4-c", + "name": "Tilted Wall (4 m) (Steel)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 4 m", + "className": "Desc_WallSet_Steel_Angular_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_WallSet_Steel_Angular_8x8_C": { + "slug": "tilted-wall-8m-steel", + "icon": "desc-wallset-steel-angular-8x8-c", + "name": "Tilted Wall (8 m) (Steel)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 8 m", + "className": "Desc_WallSet_Steel_Angular_8x8_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Window_Thin_8x4_01_C": { + "slug": "full-frame-window-window", + "icon": "desc-wall-window-thin-8x4-01-c", + "name": "Full Frame Window (Window)", + "description": "Snaps to Foundations and other Walls.\nThe windows allow pioneers to see through a wall.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Window_Thin_8x4_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Window_Thin_8x4_02_C": { + "slug": "hex-frame-window-window", + "icon": "desc-wall-window-thin-8x4-02-c", + "name": "Hex Frame Window (Window)", + "description": "Snaps to Foundations and other Walls.\nThe windows allow pioneers to see through a wall.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Window_Thin_8x4_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Frame_01_C": { + "slug": "frame-wall", + "icon": "desc-wall-frame-01-c", + "name": "Frame Wall", + "description": "Snaps to other structural buildings.\nFrames provide a more open factory aesthetic.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Frame_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Railing_01_C": { + "slug": "modern-railing", + "icon": "desc-railing-01-c", + "name": "Modern Railing", + "description": "Creates a safer working environment when built on the edge of Foundations.\n\nThis Railing is 4 m long and automatically angles itself when built on Ramps.", + "className": "Desc_Railing_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Window_8x4_05_C": { + "slug": "angled-frame-window-window", + "icon": "desc-wall-window-8x4-05-c", + "name": "Angled Frame Window (Window)", + "description": "Snaps to Foundations and other Walls.\nThe windows allow pioneers to see through a wall.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Window_8x4_05_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Window_8x4_06_C": { + "slug": "honeycomb-frame-window-window", + "icon": "desc-wall-window-8x4-06-c", + "name": "Honeycomb Frame Window (Window)", + "description": "Snaps to Foundations and other Walls.\nThe windows allow pioneers to see through a wall.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Window_8x4_06_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Window_8x4_07_C": { + "slug": "triple-frame-window-window", + "icon": "desc-wall-window-8x4-07-c", + "name": "Triple Frame Window (Window)", + "description": "Snaps to Foundations and other Walls.\nThe windows allow pioneers to see through a wall.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Window_8x4_07_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ChainLinkFence_C": { + "slug": "construction-fence", + "icon": "desc-chainlinkfence-c", + "name": "Construction Fence", + "description": "Creates a safer and more efficient working environment.", + "className": "Desc_ChainLinkFence_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_TarpFence_C": { + "slug": "tarp-construction-fence-tar", + "icon": "desc-tarpfence-c", + "name": "Tarp Construction Fence (Tar)", + "description": "Creates a safer and more efficient working environment.", + "className": "Desc_TarpFence_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Barrier_Low_01_C": { + "slug": "low-barrier", + "icon": "desc-barrier-low-01-c", + "name": "Low Barrier", + "description": "Creates a safer and more efficient working environment.", + "className": "Desc_Barrier_Low_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Barrier_Tall_01_C": { + "slug": "high-barrier", + "icon": "desc-barrier-tall-01-c", + "name": "High Barrier", + "description": "Creates a safer and more efficient working environment.", + "className": "Desc_Barrier_Tall_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Concrete_Barrier_01_C": { + "slug": "road-barrier-concrete", + "icon": "desc-concrete-barrier-01-c", + "name": "Road Barrier (Concrete)", + "description": "Creates a safer and more efficient working environment.", + "className": "Desc_Concrete_Barrier_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Conveyor_8x4_01_C": { + "slug": "conveyor-wall-x3", + "icon": "desc-wall-conveyor-8x4-01-c", + "name": "Conveyor Wall x 3", + "description": "Has 3 Conveyor Belt connections.\nSnaps to Foundations and other Walls.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Conveyor_8x4_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Conveyor_8x4_02_C": { + "slug": "conveyor-wall-x2", + "icon": "desc-wall-conveyor-8x4-02-c", + "name": "Conveyor Wall x 2", + "description": "Has 2 Conveyor Belt connections.\nSnaps to Foundations and other Walls.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Conveyor_8x4_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Conveyor_8x4_02_Steel_C": { + "slug": "conveyor-wall-x2-steel", + "icon": "desc-wall-conveyor-8x4-02-steel-c", + "name": "Conveyor Wall x 2 (Steel)", + "description": "Has 2 Conveyor Belt connections.\nSnaps to Foundations and other Walls.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Conveyor_8x4_02_Steel_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Conveyor_8x4_03_C": { + "slug": "conveyor-wall-x1", + "icon": "desc-wall-conveyor-8x4-03-c", + "name": "Conveyor Wall x 1", + "description": "Has 1 Conveyor Belt connection.\nSnaps to Foundations and other Walls.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Conveyor_8x4_03_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Conveyor_8x4_03_Steel_C": { + "slug": "conveyor-wall-x1-steel", + "icon": "desc-wall-conveyor-8x4-03-steel-c", + "name": "Conveyor Wall x 1 (Steel)", + "description": "Has 1 Conveyor Belt connection.\nSnaps to Foundations and other Walls.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Conveyor_8x4_03_Steel_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x4_ConveyorHole_03_C": { + "slug": "conveyor-wall-x3-concrete", + "icon": "desc-wall-concrete-8x4-conveyorhole-03-c", + "name": "Conveyor Wall x 3 (Concrete)", + "description": "Has 3 Conveyor Belt connections.\nSnaps to Foundations and other Walls.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Concrete_8x4_ConveyorHole_03_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_SteelWall_FlipTris_8x8_C": { + "slug": "inverted-ramp-wall-8m-steel", + "icon": "desc-steelwall-fliptris-8x8-c", + "name": "Inverted Ramp Wall (8 m) (Steel)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 8 m", + "className": "Desc_SteelWall_FlipTris_8x8_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Door_8x4_01_C": { + "slug": "center-door-wall", + "icon": "desc-wall-door-8x4-01-c", + "name": "Center Door Wall", + "description": "Allows pioneers to pass through a wall.\nDoor settings can be configured.\nSnaps to Foundations and other Walls.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Door_8x4_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Door_8x4_01_Steel_C": { + "slug": "center-door-wall-steel", + "icon": "desc-wall-door-8x4-01-steel-c", + "name": "Center Door Wall (Steel)", + "description": "Allows pioneers to pass through a wall.\nDoor settings can be configured.\nSnaps to Foundations and other Walls.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Door_8x4_01_Steel_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Door_8x4_03_C": { + "slug": "side-door-wall", + "icon": "desc-wall-door-8x4-03-c", + "name": "Side Door Wall", + "description": "Allows pioneers to pass through a wall.\nDoor settings can be configured.\nSnaps to Foundations and other Walls.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Door_8x4_03_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Door_8x4_03_Steel_C": { + "slug": "side-door-wall-steel", + "icon": "desc-wall-door-8x4-03-steel-c", + "name": "Side Door Wall (Steel)", + "description": "Allows pioneers to pass through a wall.\nDoor settings can be configured.\nSnaps to Foundations and other Walls.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Door_8x4_03_Steel_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_CDoor_8x4_C": { + "slug": "center-door-wall-concrete", + "icon": "desc-wall-concrete-cdoor-8x4-c", + "name": "Center Door Wall (Concrete)", + "description": "Allows pioneers to pass through a wall.\nDoor settings can be configured.\nSnaps to Foundations and other Walls.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Concrete_CDoor_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_SDoor_8x4_C": { + "slug": "side-door-wall-concrete", + "icon": "desc-wall-concrete-sdoor-8x4-c", + "name": "Side Door Wall (Concrete)", + "description": "Allows pioneers to pass through a wall.\nDoor settings can be configured.\nSnaps to Foundations and other Walls.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Concrete_SDoor_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Gate_Automated_8x4_C": { + "slug": "automated-gate", + "icon": "desc-gate-automated-8x4-c", + "name": "Automated Gate", + "description": "Automatically opens when living beings or vehicles approach it.\nGate settings can be configured.\nSnaps to Foundations and Walls.\n\nSize: 8 m x 4 m", + "className": "Desc_Gate_Automated_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x4_Corner_01_C": { + "slug": "tilted-corner-wall-4m-concrete", + "icon": "desc-wall-concrete-8x4-corner-01-c", + "name": "Tilted Corner Wall (4 m) (Concrete)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Concrete_8x4_Corner_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x4_Corner_2_C": { + "slug": "tilted-concave-wall-4m-concrete", + "icon": "desc-wall-concrete-8x4-corner-2-c", + "name": "Tilted Concave Wall (4 m) (Concrete)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Concrete_8x4_Corner_2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x8_Corner_01_C": { + "slug": "tilted-corner-wall-8m-concrete", + "icon": "desc-wall-concrete-8x8-corner-01-c", + "name": "Tilted Corner Wall (8 m) (Concrete)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 8 m", + "className": "Desc_Wall_Concrete_8x8_Corner_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Concrete_8x8_Corner_2_C": { + "slug": "tilted-concave-wall-8m-concrete", + "icon": "desc-wall-concrete-8x8-corner-2-c", + "name": "Tilted Concave Wall (8 m) (Concrete)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 8 m", + "className": "Desc_Wall_Concrete_8x8_Corner_2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Orange_8x4_Corner_01_C": { + "slug": "tilted-corner-wall-4m", + "icon": "desc-wall-orange-8x4-corner-01-c", + "name": "Tilted Corner Wall (4 m)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Orange_8x4_Corner_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Orange_8x4_Corner_02_C": { + "slug": "tilted-concave-wall-4m", + "icon": "desc-wall-orange-8x4-corner-02-c", + "name": "Tilted Concave Wall (4 m)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Orange_8x4_Corner_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Orange_8x8_Corner_01_C": { + "slug": "tilted-corner-wall-8m", + "icon": "desc-wall-orange-8x8-corner-01-c", + "name": "Tilted Corner Wall (8 m)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 8 m", + "className": "Desc_Wall_Orange_8x8_Corner_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Orange_8x8_Corner_02_C": { + "slug": "tilted-concave-wall-8m", + "icon": "desc-wall-orange-8x8-corner-02-c", + "name": "Tilted Concave Wall (8 m)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 8 m", + "className": "Desc_Wall_Orange_8x8_Corner_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Steel_8x4_Corner_01_C": { + "slug": "tilted-corner-wall-4m-steel", + "icon": "desc-wall-steel-8x4-corner-01-c", + "name": "Tilted Corner Wall (4 m) (Steel)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Steel_8x4_Corner_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Steel_8x4_Corner_2_C": { + "slug": "tilted-concave-wall-4m-steel", + "icon": "desc-wall-steel-8x4-corner-2-c", + "name": "Tilted Concave Wall (4 m) (Steel)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 4 m", + "className": "Desc_Wall_Steel_8x4_Corner_2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Steel_8x8_Corner_01_C": { + "slug": "tilted-corner-wall-8m-steel", + "icon": "desc-wall-steel-8x8-corner-01-c", + "name": "Tilted Corner Wall (8 m) (Steel)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 8 m", + "className": "Desc_Wall_Steel_8x8_Corner_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Wall_Steel_8x8_Corner_2_C": { + "slug": "tilted-concave-wall-8m-steel", + "icon": "desc-wall-steel-8x8-corner-2-c", + "name": "Tilted Concave Wall (8 m) (Steel)", + "description": "Snaps to Foundations and other Walls.\nUseful for building multi-floor structures.\n\nSize: 8 m x 8 m", + "className": "Desc_Wall_Steel_8x8_Corner_2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Beam_C": { + "slug": "metal-beam", + "icon": "desc-beam-c", + "name": "Metal Beam", + "description": "Snaps to other Beams and various other structural buildings.\nBeams support multiple build modes for different use cases.", + "className": "Desc_Beam_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Beam_Painted_C": { + "slug": "painted-beam", + "icon": "desc-beam-painted-c", + "name": "Painted Beam", + "description": "Snaps to other Beams and various other structural buildings.\nBeams support multiple build modes for different use cases.", + "className": "Desc_Beam_Painted_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConveyorCeilingAttachment_C": { + "slug": "conveyor-ceiling-mount", + "icon": "desc-conveyorceilingattachment-c", + "name": "Conveyor Ceiling Mount", + "description": "Attaches to ceilings and other ceiling mounts.\nUseful for routing Conveyor Belts more precisely and over long distances.", + "className": "Desc_ConveyorCeilingAttachment_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConveyorPoleWall_C": { + "slug": "conveyor-wall-mount", + "icon": "desc-conveyorpolewall-c", + "name": "Conveyor Wall Mount", + "description": "Attaches to Walls.\nUseful for routing Conveyor Belts more precisely and over long distances.", + "className": "Desc_ConveyorPoleWall_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConveyorBeltMk1_C": { + "slug": "conveyor-belt-mk-1", + "icon": "desc-conveyorbeltmk1-c", + "name": "Conveyor Belt Mk.1", + "description": "Transports up to 60 resources per minute. Used to move resources between buildings.", + "className": "Desc_ConveyorBeltMk1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PowerLine_C": { + "slug": "power-line", + "icon": "desc-powerline-c", + "name": "Power Line", + "description": "Connects Power Poles, Power Generators, and factory buildings.", + "className": "Desc_PowerLine_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PowerPoleMk1_C": { + "slug": "power-pole-mk-1", + "icon": "desc-powerpolemk1-c", + "name": "Power Pole Mk.1", + "description": "Allows for up to 4 Power Line connections.\n\nConnect Power Poles, Power Generators, and factory buildings with Power Lines to create a power grid. The power grid supplies all connected buildings with power.", + "className": "Desc_PowerPoleMk1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PowerPoleWall_C": { + "slug": "wall-outlet-mk-1", + "icon": "desc-powerpolewall-c", + "name": "Wall Outlet Mk.1", + "description": "Functions like a Power Pole, but attaches to a wall.\n\nAllows for up to 4 Power Line connections.\n\nConnect Power Poles, Power Generators and factory buildings with Power Lines to create a power grid. The power grid supplies all connected buildings with power.", + "className": "Desc_PowerPoleWall_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_TradingPost_C": { + "slug": "the-hub", + "icon": "desc-tradingpost-c", + "name": "The HUB", + "description": "The heart of your factory. This is where you complete FICSIT milestones to unlock additional schematics for buildings, vehicles, parts, equipment, etc.", + "className": "Desc_TradingPost_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_WorkBench_C": { + "slug": "crafting-bench", + "icon": "desc-workbench-c", + "name": "Crafting Bench", + "description": "Allows you to manually craft a wide range of different parts. \nThese parts can then be used to construct various factory buildings, vehicles, and equipment.", + "className": "Desc_WorkBench_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_GeneratorCoal_C": { + "slug": "coal-powered-generator", + "icon": "desc-generatorcoal-c", + "name": "Coal-Powered Generator", + "description": "Burns Coal to boil Water. The steam produced rotates turbines that generate electricity for the power grid.\nHas Conveyor Belt and Pipeline input ports that allow the Coal and Water supply to be automated.\n\nCaution: Always generates power at the set clock speed. Shuts down if fuel requirements are not met.", + "className": "Desc_GeneratorCoal_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PipelineSupportWall_C": { + "slug": "pipeline-wall-support", + "icon": "desc-pipelinesupportwall-c", + "name": "Pipeline Wall Support", + "description": "Attaches to Walls.\nUsed to connect Pipelines over longer distances.", + "className": "Desc_PipelineSupportWall_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Pipeline_C": { + "slug": "pipeline-mk-1", + "icon": "desc-pipeline-c", + "name": "Pipeline Mk.1", + "description": "Transports fluids.\nExternal indicators show flow rate, direction, and volume.\nCapacity: 300 m³ of fluid per minute.", + "className": "Desc_Pipeline_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PipelineJunction_Cross_C": { + "slug": "pipeline-junction", + "icon": "desc-pipelinejunction-cross-c", + "name": "Pipeline Junction", + "description": "Attaches to a Pipeline, allowing it to be split up to 4 ways.", + "className": "Desc_PipelineJunction_Cross_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PipelinePump_C": { + "slug": "pipeline-pump-mk-1", + "icon": "desc-pipelinepump-c", + "name": "Pipeline Pump Mk.1", + "description": "Attaches to a Pipeline to apply Head Lift.\nMaximum Head Lift: 20 m\n(Allows fluids to be transported 20 m upwards.)\n\nNOTE: Arrows and holograms when building indicate Head Lift direction.\nNOTE: Head Lift does not stack, so space between Pumps is recommended.", + "className": "Desc_PipelinePump_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 4, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PipeStorageTank_C": { + "slug": "fluid-buffer", + "icon": "desc-pipestoragetank-c", + "name": "Fluid Buffer", + "description": "Holds up to 400 m³ of fluid.\nHas Pipeline input and output ports.", + "className": "Desc_PipeStorageTank_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_WaterPump_C": { + "slug": "water-extractor", + "icon": "desc-waterpump-c", + "name": "Water Extractor", + "description": "Extracts water from the body of water it is built on.\nNote: the water needs to be sufficiently deep, and rivers are generally not deep enough.\n\nDefault Extraction Rate: 120 m³ of water per minute.\nHead Lift: 10 m\n(Allows fluids to be transported 10 meters upwards.)", + "className": "Desc_WaterPump_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 20, + "powerConsumptionExponent": 1.321929, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ResourceSink_C": { + "slug": "awesome-sink", + "icon": "desc-resourcesink-c", + "name": "AWESOME Sink", + "description": "Got excess resources? Fear not, for FICSIT does not waste! The newly developed AWESOME Sink turns any and all useful parts into research data just as fast as you can supply them! \nParticipating pioneers will be compensated with Coupons that can be spent at the AWESOME Shop.", + "className": "Desc_ResourceSink_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 30, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ResourceSinkShop_C": { + "slug": "awesome-shop", + "icon": "desc-resourcesinkshop-c", + "name": "AWESOME Shop", + "description": "Redeem your FICSIT Coupons here! \nFor those employees going the extra kilometer we have set aside special bonus milestones and rewards! Get your Coupons in the AWESOME Sink program now!\n\n*No refunds possible.", + "className": "Desc_ResourceSinkShop_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuantumEncoder_C": { + "slug": "quantum-encoder", + "icon": "desc-quantumencoder-c", + "name": "Quantum Encoder", + "description": "The Quantum Encoder uses Excited Photonic Matter to produce the most complex of parts, controlling development up to the quantum level.\n\nWarning: Power usage is extremely high and unstable.", + "className": "Desc_QuantumEncoder_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.321929, + "manufacturingSpeed": 1 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Converter_C": { + "slug": "converter", + "icon": "desc-converter-c", + "name": "Converter", + "description": "The Converter harnesses Reanimated SAM to enable precise matter and energy transmutation.\n\nWarning: Power usage is very high and unstable.", + "className": "Desc_Converter_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.321929, + "manufacturingSpeed": 1 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_OilPump_C": { + "slug": "oil-extractor", + "icon": "desc-oilpump-c", + "name": "Oil Extractor", + "description": "Extracts Crude Oil when built on an oil node. Extraction rates vary based on node purity.\n\nDefault Extraction Rate: 120 m³ of oil per minute.\nHead Lift: 10 m\n(Allows fluids to be transported 10 meters upwards.)", + "className": "Desc_OilPump_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 40, + "powerConsumptionExponent": 1.321929, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_OilRefinery_C": { + "slug": "refinery", + "icon": "desc-oilrefinery-c", + "name": "Refinery", + "description": "Refines fluid and/or solid parts into other parts.\nHead Lift: 10 m\n(Allows fluids to be transported 10 meters upwards.)\n\nContains both Conveyor Belt and Pipeline input and output ports so that a wide range of recipes can be automated.", + "className": "Desc_OilRefinery_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 30, + "powerConsumptionExponent": 1.321929, + "manufacturingSpeed": 1 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Valve_C": { + "slug": "valve", + "icon": "desc-valve-c", + "name": "Valve", + "description": "Limits Pipeline flow rates.\nCan be attached to a Pipeline.\n\nNOTE: Has an in- and output direction.", + "className": "Desc_Valve_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_FoundryMk1_C": { + "slug": "foundry", + "icon": "desc-foundrymk1-c", + "name": "Foundry", + "description": "Smelts 2 resources into alloy ingots.\n\nCan be automated by feeding ore in via Conveyor Belts connected to the input ports. The resulting ingots can be automatically extracted by connecting a Conveyor Belt to the output port.", + "className": "Desc_FoundryMk1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 16, + "powerConsumptionExponent": 1.321929, + "manufacturingSpeed": 1 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Packager_C": { + "slug": "packager", + "icon": "desc-packager-c", + "name": "Packager", + "description": "Packages and unpackages fluids.\nHead Lift: 10 m\n(Allows fluids to be transported 10 meters upwards.)\n\nContains both Conveyor Belt and Pipeline input and output ports so that a wide range of recipes can be automated.", + "className": "Desc_Packager_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 10, + "powerConsumptionExponent": 1.321929, + "manufacturingSpeed": 1 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_MinerMk2_C": { + "slug": "miner-mk-2", + "icon": "desc-minermk2-c", + "name": "Miner Mk.2", + "description": "Extracts solid resources from the resource node it is built on. \nDefault extraction rate is 120 resources per minute. \nExtraction rate varies based on resource node purity. Outputs all extracted resources onto connected Conveyor Belts.", + "className": "Desc_MinerMk2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 15, + "powerConsumptionExponent": 1.321929, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ManufacturerMk1_C": { + "slug": "manufacturer", + "icon": "desc-manufacturermk1-c", + "name": "Manufacturer", + "description": "Crafts 3 or 4 parts into another part.\n\nCan be automated by feeding component parts in via Conveyor Belts connected to the input ports. The resulting parts can be automatically extracted by connecting a Conveyor Belt to the output port.", + "className": "Desc_ManufacturerMk1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 55, + "powerConsumptionExponent": 1.321929, + "manufacturingSpeed": 1 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_AssemblerMk1_C": { + "slug": "assembler", + "icon": "desc-assemblermk1-c", + "name": "Assembler", + "description": "Crafts 2 parts into another part.\n\nCan be automated by feeding component parts in via Conveyor Belts connected to the input ports. The resulting parts can be automatically extracted by connecting a Conveyor Belt to the output port.", + "className": "Desc_AssemblerMk1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 15, + "powerConsumptionExponent": 1.321929, + "manufacturingSpeed": 1 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_HadronCollider_C": { + "slug": "particle-accelerator", + "icon": "desc-hadroncollider-c", + "name": "Particle Accelerator", + "description": "Uses electromagnetic fields to propel particles to very high speeds and energies. The specific design allows for a variety of processes, including matter generation and conversion.\n\nWarning: Power usage is extremely high and unstable, and varies per recipe.", + "className": "Desc_HadronCollider_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.321929, + "manufacturingSpeed": 1 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Blender_C": { + "slug": "blender", + "icon": "desc-blender-c", + "name": "Blender", + "description": "Blends fluids together or combines them with solid parts in a wide variety of processes.\nHead Lift: 10 m\n(Allows fluids to be transported 10 meters upwards.)\n\nHas both Conveyor Belt and Pipeline input and output ports.", + "className": "Desc_Blender_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 75, + "powerConsumptionExponent": 1.321929, + "manufacturingSpeed": 1 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_GeneratorNuclear_C": { + "slug": "nuclear-power-plant", + "icon": "desc-generatornuclear-c", + "name": "Nuclear Power Plant", + "description": "Consumes Nuclear Fuel Rods and Water to produce electricity for the power grid.\n\nProduces Nuclear Waste, which is extracted via the Conveyor Belt output.\n\nCaution: Always generates power at the set clock speed. Shuts down if fuel requirements are not met.", + "className": "Desc_GeneratorNuclear_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_FrackingExtractor_C": { + "slug": "resource-well-extractor", + "icon": "desc-frackingextractor-c", + "name": "Resource Well Extractor", + "description": "Collects pressurized resources when placed on the activated sub-nodes of a Resource Well. Does not require power.\n\nDefault Extraction Rate: 60 m³ of fluid per minute.\nHead Lift: 10 m\n(Allows fluids to be transported 10 meters upwards.)", + "className": "Desc_FrackingExtractor_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.321929, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_FrackingSmasher_C": { + "slug": "resource-well-pressurizer", + "icon": "desc-frackingsmasher-c", + "name": "Resource Well Pressurizer", + "description": "Activates a Resource Well by pressurizing the underground resource. Must be placed on a Resource Well.\nOnce activated, Resource Well Extractors can be placed on the surrounding sub-nodes to extract the resource.\nRequires power. Overclocking increases the output potential of the entire Resource Well.", + "className": "Desc_FrackingSmasher_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 150, + "powerConsumptionExponent": 1.321929, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_DroneStation_C": { + "slug": "drone-port", + "icon": "desc-dronestation-c", + "name": "Drone Port", + "description": "Functions as home Port to a single Drone, which transports available input back and forth between its home Port and destination Ports.\nDrone Ports can have one other Port assigned as their transport destination.\n\nThe Drone Port interface provides delivery details and allows management of Port connections.", + "className": "Desc_DroneStation_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 100, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConveyorBeltMk5_C": { + "slug": "conveyor-belt-mk-5", + "icon": "desc-conveyorbeltmk5-c", + "name": "Conveyor Belt Mk.5", + "description": "Transports up to 780 resources per minute. Used to move resources between buildings.", + "className": "Desc_ConveyorBeltMk5_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConveyorLiftMk5_C": { + "slug": "conveyor-lift-mk-5", + "icon": "desc-conveyorliftmk5-c", + "name": "Conveyor Lift Mk.5", + "description": "Transports up to 780 resources per minute. Used to move resources between floors.", + "className": "Desc_ConveyorLiftMk5_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_MinerMk3_C": { + "slug": "miner-mk-3", + "icon": "desc-minermk3-c", + "name": "Miner Mk.3", + "description": "Extracts solid resources from the resource node it is built on. \nDefault extraction rate is 240 resources per minute. \nExtraction rate varies based on resource node purity. Outputs all extracted resources onto connected Conveyor Belts.", + "className": "Desc_MinerMk3_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 45, + "powerConsumptionExponent": 1.321929, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConveyorBeltMk6_C": { + "slug": "conveyor-belt-mk-6", + "icon": "desc-conveyorbeltmk6-c", + "name": "Conveyor Belt Mk.6", + "description": "Transports up to 1200 resources per minute. Used to move resources between buildings.", + "className": "Desc_ConveyorBeltMk6_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConveyorLiftMk6_C": { + "slug": "conveyor-lift-mk-6", + "icon": "desc-conveyorliftmk6-c", + "name": "Conveyor Lift Mk.6", + "description": "Transports up to 1200 resources per minute. Used to move resources between floors.", + "className": "Desc_ConveyorLiftMk6_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Portal_C": { + "slug": "main-portal", + "icon": "desc-portal-c", + "name": "Main Portal", + "description": "Enables pioneer teleportation between two linked Portals.\n\nEach Portal can only have a single link. \nA link can only be made between a Main and Satellite Portal.\n\nSingularity Cells need to be supplied to the Main Portal and will be consumed to establish and maintain the Portal link.\n\nWARNINGS:\n- Massive power draw will occur during start-up and usage.\n- Power draw on use increases with travel distance.\n- Link start-up will take time. Letting the connection expire is not recommended.\n- Failure to deliver sufficient Singularity Cells will cause the link to expire.\n- FICSIT does not condone the use of wormhole technology. Any usage of wormhole technology is at the user's own risk.", + "className": "Desc_Portal_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 250, + "powerConsumptionExponent": 1.321929, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PortalSatellite_C": { + "slug": "satellite-portal", + "icon": "desc-portalsatellite-c", + "name": "Satellite Portal", + "description": "Enables pioneer teleportation between two linked Portals.\n\nEach Portal can only have a single link. \nA link can only be made between a Main and Satellite Portal.\n\nSingularity Cells need to be supplied to the Main Portal and will be consumed to establish and maintain the Portal link.\n\nWARNINGS:\n- Massive power draw will occur during start-up and usage.\n- Power draw on use increases with travel distance.\n- Link start-up will take time. Letting the connection expire is not recommended.\n- Failure to deliver sufficient Singularity Cells will cause the link to expire.\n- FICSIT does not condone the use of wormhole technology. Any usage of wormhole technology is at the user's own risk.", + "className": "Desc_PortalSatellite_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 250, + "powerConsumptionExponent": 1.321929, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_BlueprintDesigner_MK3_C": { + "slug": "blueprint-designer-mk-3", + "icon": "desc-blueprintdesigner-mk3-c", + "name": "Blueprint Designer Mk.3", + "description": "The Blueprint Designer is used to create custom factory designs and save them as Blueprints.\nBlueprints can be accessed from the Blueprint tab of the Build Menu.\n\nNote that buildings can only be placed in the Blueprint Designer if they are fully within the boundary frame.\n\nDimensions: 48 m x 48 m x 48 m", + "className": "Desc_BlueprintDesigner_MK3_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RailroadBlockSignal_C": { + "slug": "block-signal", + "icon": "desc-railroadblocksignal-c", + "name": "Block Signal", + "description": "Directs the movement of trains to avoid collisions and bottlenecks.\n\nBlock Signals can be placed on Railways to create 'Blocks' between them. When a train is occupying one of these Blocks, other trains will be unable to enter it.\n\nCaution: Signals are directional! Trains are unable to move against this direction, so be sure to set up Signals in both directions for bi-directional Railways.", + "className": "Desc_RailroadBlockSignal_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RailroadPathSignal_C": { + "slug": "path-signal", + "icon": "desc-railroadpathsignal-c", + "name": "Path Signal", + "description": "Directs the movement of trains to avoid collisions and bottlenecks.\n\nPath Signals are advanced signals that are especially useful for bi-directional Railways and complex intersections. They function similarly to Block Signals, but rather than occupying the entire Block, trains can reserve a specific path through it and will only enter the Block if their path allows them to fully pass through.\n\nCaution: Signals are directional! Trains are unable to move against this direction, so be sure to set up Signals in both directions for bi-directional Railways.", + "className": "Desc_RailroadPathSignal_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_BlueprintDesigner_MK2_C": { + "slug": "blueprint-designer-mk-2", + "icon": "desc-blueprintdesigner-mk2-c", + "name": "Blueprint Designer Mk.2", + "description": "The Blueprint Designer is used to create custom factory designs and save them as Blueprints.\nBlueprints can be accessed from the Blueprint tab of the Build Menu.\n\nNote that buildings can only be placed in the Blueprint Designer if they are fully within the boundary frame.\n\nDimensions: 40 m x 40 m x 40 m", + "className": "Desc_BlueprintDesigner_MK2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PipelineMK2_C": { + "slug": "pipeline-mk-2", + "icon": "desc-pipelinemk2-c", + "name": "Pipeline Mk.2", + "description": "Transports fluids.\nExternal indicators show flow rate, direction, and volume.\nCapacity: 600 m³ of fluid per minute.", + "className": "Desc_PipelineMK2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PipelinePumpMk2_C": { + "slug": "pipeline-pump-mk-2", + "icon": "desc-pipelinepumpmk2-c", + "name": "Pipeline Pump Mk.2", + "description": "Can be attached to a Pipeline to apply Head Lift.\nMaximum Head Lift: 50 m\n(Allows fluids to be transported 50 meters upwards.)\n\nNOTE: Arrows and holograms when building indicate Head Lift direction.\nNOTE: Head Lift does not stack, so space between Pumps is recommended.", + "className": "Desc_PipelinePumpMk2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 8, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_TrainDockingStation_C": { + "slug": "freight-platform", + "icon": "desc-traindockingstation-c", + "name": "Freight Platform", + "description": "Loads and unloads Freight Cars that stop at the Freight Platform.\nLoading and unloading options can be set by configuring the building.\nSnaps to other Platforms and Stations.\nNeeds to be connected to a powered Railway to function.", + "className": "Desc_TrainDockingStation_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 50, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_TrainDockingStationLiquid_C": { + "slug": "fluid-freight-platform", + "icon": "desc-traindockingstationliquid-c", + "name": "Fluid Freight Platform", + "description": "Loads and unloads Freight Cars that stop at the Freight Platform.\nLoading and unloading options can be set by configuring the building.\nSnaps to other Platforms and Stations.\nNeeds to be connected to a powered Railway to function.", + "className": "Desc_TrainDockingStationLiquid_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 50, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_TrainPlatformEmpty_C": { + "slug": "empty-platform", + "icon": "desc-trainplatformempty-c", + "name": "Empty Platform", + "description": "Creates empty space where necessary.", + "className": "Desc_TrainPlatformEmpty_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_TrainPlatformEmpty_02_C": { + "slug": "empty-platform-with-catwalk", + "icon": "desc-trainplatformempty-02-c", + "name": "Empty Platform With Catwalk", + "description": "Creates empty space where necessary.", + "className": "Desc_TrainPlatformEmpty_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_TrainStation_C": { + "slug": "train-station", + "icon": "desc-trainstation-c", + "name": "Train Station", + "description": "Serves as a hub for Locomotives, which can be set to navigate to and stop at a Train Station.\nYou can connect power to a Train Station to power up the trains on the Railway as well as feed power to other stations.", + "className": "Desc_TrainStation_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 50, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConveyorBeltMk4_C": { + "slug": "conveyor-belt-mk-4", + "icon": "desc-conveyorbeltmk4-c", + "name": "Conveyor Belt Mk.4", + "description": "Transports up to 480 resources per minute. Used to move resources between buildings.", + "className": "Desc_ConveyorBeltMk4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConveyorLiftMk4_C": { + "slug": "conveyor-lift-mk-4", + "icon": "desc-conveyorliftmk4-c", + "name": "Conveyor Lift Mk.4", + "description": "Transports up to 480 resources per minute. Used to move resources between floors.", + "className": "Desc_ConveyorLiftMk4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_GeneratorFuel_C": { + "slug": "fuel-powered-generator", + "icon": "desc-generatorfuel-c", + "name": "Fuel-Powered Generator", + "description": "Consumes Fuel to generate electricity for the power grid.\nHas a Pipeline input port that allows the Fuel supply to be automated.\n\nCaution: Always generates power at the set clock speed. Shuts down if fuel requirements are not met.", + "className": "Desc_GeneratorFuel_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_IndustrialTank_C": { + "slug": "industrial-fluid-buffer", + "icon": "desc-industrialtank-c", + "name": "Industrial Fluid Buffer", + "description": "Holds up to 2400 m³ of fluid.\nHas Pipeline input and output ports.", + "className": "Desc_IndustrialTank_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConveyorBeltMk3_C": { + "slug": "conveyor-belt-mk-3", + "icon": "desc-conveyorbeltmk3-c", + "name": "Conveyor Belt Mk.3", + "description": "Transports up to 270 resources per minute. Used to move resources between buildings.", + "className": "Desc_ConveyorBeltMk3_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConveyorLiftMk3_C": { + "slug": "conveyor-lift-mk-3", + "icon": "desc-conveyorliftmk3-c", + "name": "Conveyor Lift Mk.3", + "description": "Transports up to 270 resources per minute. Used to move resources between floors.", + "className": "Desc_ConveyorLiftMk3_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_StorageContainerMk2_C": { + "slug": "industrial-storage-container", + "icon": "desc-storagecontainermk2-c", + "name": "Industrial Storage Container", + "description": "Contains 48 slots for storing large amounts of items.\nHas 2 Conveyor Belt input ports and 2 Conveyor Belt output ports.", + "className": "Desc_StorageContainerMk2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_BlueprintDesigner_C": { + "slug": "blueprint-designer-mk-1", + "icon": "desc-blueprintdesigner-c", + "name": "Blueprint Designer Mk.1", + "description": "The Blueprint Designer is used to create custom factory designs and save them as Blueprints.\nBlueprints can be accessed from the Blueprint tab of the Build Menu.\n\nNote that buildings can only be placed in the Blueprint Designer if they are fully within the boundary frame.\n\nDimensions: 32 m x 32 m x 32 m", + "className": "Desc_BlueprintDesigner_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PipeHyperStart_C": { + "slug": "hypertube-entrance", + "icon": "desc-pipehyperstart-c", + "name": "Hypertube Entrance", + "description": "Powers up a Hypertube system and allows it to be entered.", + "className": "Desc_PipeHyperStart_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 10, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_HyperTubeWallSupport_C": { + "slug": "hypertube-wall-support", + "icon": "desc-hypertubewallsupport-c", + "name": "Hypertube Wall Support", + "description": "Attaches to Walls.\nSupports Hypertubes, allowing them to stretch over longer distances.", + "className": "Desc_HyperTubeWallSupport_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PipeHyper_C": { + "slug": "hypertube", + "icon": "desc-pipehyper-c", + "name": "Hypertube", + "description": "Transports FICSIT employees.\nA Hypertube system cannot be powered up or used until a Hypertube Entrance is attached.", + "className": "Desc_PipeHyper_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PowerStorageMk1_C": { + "slug": "power-storage", + "icon": "desc-powerstoragemk1-c", + "name": "Power Storage", + "description": "Connects to a power grid to store excess power produced. The stored power can be harnessed if power grid consumption exceeds production.\n\nStorage Capacity: 100 MWh (100 MW for 1 hour)\nMaximum Charge Rate: 100 MW\nMaximum Discharge Rate: Unlimited", + "className": "Desc_PowerStorageMk1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PowerTower_C": { + "slug": "power-tower", + "icon": "desc-powertower-c", + "name": "Power Tower", + "description": "Helps span Power Lines across greater distances.\nThere is an additional power connector at the bottom of the Power Tower to connect it to other buildings, such as Power Poles.", + "className": "Desc_PowerTower_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PowerTowerPlatform_C": { + "slug": "power-tower-platform", + "icon": "desc-powertowerplatform-c", + "name": "Power Tower Platform", + "description": "Helps span Power Lines across greater distances.\nThere is an additional power connector at the bottom of the Power Tower to connect it to other buildings, such as Power Poles.\n\nNote: This Power Tower variant includes a ladder and platform for improved utility.", + "className": "Desc_PowerTowerPlatform_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_TruckStation_C": { + "slug": "truck-station", + "icon": "desc-truckstation-c", + "name": "Truck Station", + "description": "Sends or receives resources to/from vehicles.\n\nHas 48 inventory slots.\n\nTransfers up to 120 stacks per minute to/from docked vehicles. \nAlways refuels vehicles if it has access to a matching fuel type.", + "className": "Desc_TruckStation_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 20, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConveyorBeltMk2_C": { + "slug": "conveyor-belt-mk-2", + "icon": "desc-conveyorbeltmk2-c", + "name": "Conveyor Belt Mk.2", + "description": "Transports up to 120 resources per minute. Used to move resources between buildings.", + "className": "Desc_ConveyorBeltMk2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConveyorLiftMk2_C": { + "slug": "conveyor-lift-mk-2", + "icon": "desc-conveyorliftmk2-c", + "name": "Conveyor Lift Mk.2", + "description": "Transports up to 120 resources per minute. Used to move resources between floors.", + "className": "Desc_ConveyorLiftMk2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_JumpPadAdjustable_C": { + "slug": "jump-pad", + "icon": "desc-jumppadadjustable-c", + "name": "Jump Pad", + "description": "Launches pioneers for quick, vertical traversal.\nThe launch angle can be adjusted while building.\nCaution: Be sure to land safely!", + "className": "Desc_JumpPadAdjustable_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 5, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_LandingPad_C": { + "slug": "u-jelly-landing-pad", + "icon": "desc-landingpad-c", + "name": "U-Jelly Landing Pad", + "description": "Generates a speed-dampening jelly.\nGuarantees a safe landing.", + "className": "Desc_LandingPad_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 5, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Mam_C": { + "slug": "mam", + "icon": "desc-mam-c", + "name": "MAM", + "description": "The Molecular Analysis Machine is used to analyze new and exotic materials found on alien planets.\nThrough the MAM, R&D will assist pioneers in turning any valuable data into usable research options and new technologies.", + "className": "Desc_Mam_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_StoragePlayer_C": { + "slug": "personal-storage-box", + "icon": "desc-storageplayer-c", + "name": "Personal Storage Box", + "description": "Contains 25 slots for storing large amounts of items.", + "className": "Desc_StoragePlayer_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConveyorAttachmentMerger_C": { + "slug": "conveyor-merger", + "icon": "desc-conveyorattachmentmerger-c", + "name": "Conveyor Merger", + "description": "Merges up to three Conveyor Belts into one.", + "className": "Desc_ConveyorAttachmentMerger_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConveyorAttachmentSplitter_C": { + "slug": "conveyor-splitter", + "icon": "desc-conveyorattachmentsplitter-c", + "name": "Conveyor Splitter", + "description": "Splits one Conveyor Belt into two or three. \nUseful for diverting parts and resources away from backlogged Conveyor Belts.", + "className": "Desc_ConveyorAttachmentSplitter_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConveyorLiftMk1_C": { + "slug": "conveyor-lift-mk-1", + "icon": "desc-conveyorliftmk1-c", + "name": "Conveyor Lift Mk.1", + "description": "Transports up to 60 resources per minute. Used to move resources between floors.", + "className": "Desc_ConveyorLiftMk1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddle_Ficsit_4x1_C": { + "slug": "half-foundation-1m-ficsit", + "icon": "desc-quarterpipemiddle-ficsit-4x1-c", + "name": "Half Foundation (1 m) (FICSIT)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_QuarterPipeMiddle_Ficsit_4x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddle_Ficsit_4x2_C": { + "slug": "half-foundation-2m-ficsit", + "icon": "desc-quarterpipemiddle-ficsit-4x2-c", + "name": "Half Foundation (2 m) (FICSIT)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_QuarterPipeMiddle_Ficsit_4x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddle_Ficsit_4x4_C": { + "slug": "half-foundation-4m-ficsit", + "icon": "desc-quarterpipemiddle-ficsit-4x4-c", + "name": "Half Foundation (4 m) (FICSIT)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_QuarterPipeMiddle_Ficsit_4x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleInCorner_Ficsit_8x1_C": { + "slug": "inner-corner-extension-1m-ficsit", + "icon": "desc-quarterpipemiddleincorner-ficsit-8x1-c", + "name": "Inner Corner Extension (1 m) (FICSIT)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 1 m", + "className": "Desc_QuarterPipeMiddleInCorner_Ficsit_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleInCorner_Ficsit_8x2_C": { + "slug": "inner-corner-extension-2m-ficsit", + "icon": "desc-quarterpipemiddleincorner-ficsit-8x2-c", + "name": "Inner Corner Extension (2 m) (FICSIT)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 2 m", + "className": "Desc_QuarterPipeMiddleInCorner_Ficsit_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleInCorner_Ficsit_8x4_C": { + "slug": "inner-corner-extension-4m-ficsit", + "icon": "desc-quarterpipemiddleincorner-ficsit-8x4-c", + "name": "Inner Corner Extension (4 m) (FICSIT)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_QuarterPipeMiddleInCorner_Ficsit_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleOutCorner_Ficsit_4x1_C": { + "slug": "outer-corner-extension-1m-ficsit", + "icon": "desc-quarterpipemiddleoutcorner-ficsit-4x1-c", + "name": "Outer Corner Extension (1 m) (FICSIT)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 4 m x 1 m", + "className": "Desc_QuarterPipeMiddleOutCorner_Ficsit_4x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleOutCorner_Ficsit_4x2_C": { + "slug": "outer-corner-extension-2m-ficsit", + "icon": "desc-quarterpipemiddleoutcorner-ficsit-4x2-c", + "name": "Outer Corner Extension (2 m) (FICSIT)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 4 m x 2 m", + "className": "Desc_QuarterPipeMiddleOutCorner_Ficsit_4x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleOutCorner_Ficsit_4x4_C": { + "slug": "outer-corner-extension-4m-ficsit", + "icon": "desc-quarterpipemiddleoutcorner-ficsit-4x4-c", + "name": "Outer Corner Extension (4 m) (FICSIT)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 4 m x 4 m", + "className": "Desc_QuarterPipeMiddleOutCorner_Ficsit_4x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Stair_FicsitSet_8x1_01_C": { + "slug": "foundation-stairs-1-m-ficsit", + "icon": "desc-stair-ficsitset-8x1-01-c", + "name": "Foundation Stairs (1 m) (FICSIT)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nFoundation Stairs are just Ramps with extra steps.\n\nSize: 8 m x 1 m", + "className": "Desc_Stair_FicsitSet_8x1_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Stair_FicsitSet_8x2_01_C": { + "slug": "foundation-stairs-2-m-ficsit", + "icon": "desc-stair-ficsitset-8x2-01-c", + "name": "Foundation Stairs (2 m) (FICSIT)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nFoundation Stairs are just Ramps with extra steps.\n\nSize: 8 m x 2 m", + "className": "Desc_Stair_FicsitSet_8x2_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Stair_FicsitSet_8x4_01_C": { + "slug": "foundation-stairs-4-m-ficsit", + "icon": "desc-stair-ficsitset-8x4-01-c", + "name": "Foundation Stairs (4 m) (FICSIT)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nFoundation Stairs are just Ramps with extra steps.\n\nSize: 8 m x 4 m", + "className": "Desc_Stair_FicsitSet_8x4_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Foundation_8x1_01_C": { + "slug": "foundation-1m", + "icon": "desc-foundation-8x1-01-c", + "name": "Foundation (1 m)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_Foundation_8x1_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Foundation_8x2_01_C": { + "slug": "foundation-2m", + "icon": "desc-foundation-8x2-01-c", + "name": "Foundation (2 m)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_Foundation_8x2_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Foundation_8x4_01_C": { + "slug": "foundation-4m", + "icon": "desc-foundation-8x4-01-c", + "name": "Foundation (4 m)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_Foundation_8x4_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipe_C": { + "slug": "quarter-pipe", + "icon": "desc-quarterpipe-c", + "name": "Quarter Pipe", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_QuarterPipe_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipe_02_C": { + "slug": "inverted-quarter-pipe", + "icon": "desc-quarterpipe-02-c", + "name": "Inverted Quarter Pipe", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_QuarterPipe_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeCorner_01_C": { + "slug": "inner-corner-quarter-pipe", + "icon": "desc-quarterpipecorner-01-c", + "name": "Inner Corner Quarter Pipe", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_QuarterPipeCorner_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeCorner_02_C": { + "slug": "inverted-inner-corner-quarter-pipe", + "icon": "desc-quarterpipecorner-02-c", + "name": "Inverted Inner Corner Quarter Pipe", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_QuarterPipeCorner_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeCorner_03_C": { + "slug": "outer-corner-quarter-pipe", + "icon": "desc-quarterpipecorner-03-c", + "name": "Outer Corner Quarter Pipe", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_QuarterPipeCorner_03_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeCorner_04_C": { + "slug": "inverted-outer-corner-quarter-pipe", + "icon": "desc-quarterpipecorner-04-c", + "name": "Inverted Outer Corner Quarter Pipe", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_QuarterPipeCorner_04_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_8x1_01_C": { + "slug": "ramp-1m", + "icon": "desc-ramp-8x1-01-c", + "name": "Ramp (1 m)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_Ramp_8x1_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_8x2_01_C": { + "slug": "ramp-2m", + "icon": "desc-ramp-8x2-01-c", + "name": "Ramp (2 m)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_Ramp_8x2_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_8x4_01_C": { + "slug": "ramp-4m", + "icon": "desc-ramp-8x4-01-c", + "name": "Ramp (4 m)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_Ramp_8x4_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_8x4_Inverted_01_C": { + "slug": "inverted-ramp-4m", + "icon": "desc-ramp-8x4-inverted-01-c", + "name": "Inverted Ramp (4 m)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_Ramp_8x4_Inverted_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_8x8x8_C": { + "slug": "double-ramp-8m", + "icon": "desc-ramp-8x8x8-c", + "name": "Double Ramp (8 m)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 8 m", + "className": "Desc_Ramp_8x8x8_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Diagonal_8x1_01_C": { + "slug": "down-corner-ramp-1m", + "icon": "desc-ramp-diagonal-8x1-01-c", + "name": "Down Corner Ramp (1 m)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_Ramp_Diagonal_8x1_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Diagonal_8x1_02_C": { + "slug": "up-corner-ramp-1m", + "icon": "desc-ramp-diagonal-8x1-02-c", + "name": "Up Corner Ramp (1 m)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_Ramp_Diagonal_8x1_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Diagonal_8x2_01_C": { + "slug": "down-corner-ramp-2m", + "icon": "desc-ramp-diagonal-8x2-01-c", + "name": "Down Corner Ramp (2 m)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_Ramp_Diagonal_8x2_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Diagonal_8x2_02_C": { + "slug": "up-corner-ramp-2m", + "icon": "desc-ramp-diagonal-8x2-02-c", + "name": "Up Corner Ramp (2 m)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_Ramp_Diagonal_8x2_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Diagonal_8x4_01_C": { + "slug": "down-corner-ramp-4m", + "icon": "desc-ramp-diagonal-8x4-01-c", + "name": "Down Corner Ramp (4 m)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_Ramp_Diagonal_8x4_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Diagonal_8x4_02_C": { + "slug": "up-corner-ramp-4m", + "icon": "desc-ramp-diagonal-8x4-02-c", + "name": "Up Corner Ramp (4 m)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_Ramp_Diagonal_8x4_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampDouble_C": { + "slug": "double-ramp-4m", + "icon": "desc-rampdouble-c", + "name": "Double Ramp (4 m)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_RampDouble_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampDouble_8x1_C": { + "slug": "double-ramp-2m", + "icon": "desc-rampdouble-8x1-c", + "name": "Double Ramp (2 m)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_RampDouble_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampInverted_8x1_C": { + "slug": "inverted-ramp-1m", + "icon": "desc-rampinverted-8x1-c", + "name": "Inverted Ramp (1 m)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_RampInverted_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampInverted_8x1_Corner_01_C": { + "slug": "inverted-up-corner-1m", + "icon": "desc-rampinverted-8x1-corner-01-c", + "name": "Inverted Up Corner (1 m)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_RampInverted_8x1_Corner_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampInverted_8x1_Corner_02_C": { + "slug": "inverted-down-corner-1m", + "icon": "desc-rampinverted-8x1-corner-02-c", + "name": "Inverted Down Corner (1 m)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_RampInverted_8x1_Corner_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampInverted_8x2_01_C": { + "slug": "inverted-ramp-2m", + "icon": "desc-rampinverted-8x2-01-c", + "name": "Inverted Ramp (2 m)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_RampInverted_8x2_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampInverted_8x2_Corner_01_C": { + "slug": "inverted-up-corner-2m", + "icon": "desc-rampinverted-8x2-corner-01-c", + "name": "Inverted Up Corner (2 m)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_RampInverted_8x2_Corner_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampInverted_8x2_Corner_02_C": { + "slug": "inverted-down-corner-2m", + "icon": "desc-rampinverted-8x2-corner-02-c", + "name": "Inverted Down Corner (2 m)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_RampInverted_8x2_Corner_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampInverted_8x4_Corner_01_C": { + "slug": "inverted-up-corner-4m", + "icon": "desc-rampinverted-8x4-corner-01-c", + "name": "Inverted Up Corner (4 m)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_RampInverted_8x4_Corner_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampInverted_8x4_Corner_02_C": { + "slug": "inverted-down-corner-4m", + "icon": "desc-rampinverted-8x4-corner-02-c", + "name": "Inverted Down Corner (4 m)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_RampInverted_8x4_Corner_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_LookoutTower_C": { + "slug": "lookout-tower", + "icon": "desc-lookouttower-c", + "name": "Lookout Tower", + "description": "Provides a good vantage point to facilitate factory construction.", + "className": "Desc_LookoutTower_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_DownQuarterPipe_Concrete_8x4_C": { + "slug": "inverted-quarter-pipe-concrete", + "icon": "desc-downquarterpipe-concrete-8x4-c", + "name": "Inverted Quarter Pipe (Concrete)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_DownQuarterPipe_Concrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_DownQuarterPipeInCorner_Concrete_8x4_C": { + "slug": "inverted-inner-corner-quarter-pipe-concrete", + "icon": "desc-downquarterpipeincorner-concrete-8x4-c", + "name": "Inverted Inner Corner Quarter Pipe (Concrete)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_DownQuarterPipeInCorner_Concrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_DownQuarterPipeOutCorner_Concrete_8x4_C": { + "slug": "inverted-outer-corner-quarter-pipe-concrete", + "icon": "desc-downquarterpipeoutcorner-concrete-8x4-c", + "name": "Inverted Outer Corner Quarter Pipe (Concrete)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_DownQuarterPipeOutCorner_Concrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Foundation_Concrete_8x1_C": { + "slug": "foundation-1m-concrete", + "icon": "desc-foundation-concrete-8x1-c", + "name": "Foundation (1 m) (Concrete)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_Foundation_Concrete_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Foundation_Concrete_8x2_C": { + "slug": "foundation-2m-concrete", + "icon": "desc-foundation-concrete-8x2-c", + "name": "Foundation (2 m) (Concrete)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_Foundation_Concrete_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Foundation_Concrete_8x4_C": { + "slug": "foundation-4m-concrete", + "icon": "desc-foundation-concrete-8x4-c", + "name": "Foundation (4 m) (Concrete)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_Foundation_Concrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_Concrete_8x1_C": { + "slug": "inverted-ramp-1m-concrete", + "icon": "desc-invertedramp-concrete-8x1-c", + "name": "Inverted Ramp (1 m) (Concrete)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_InvertedRamp_Concrete_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_Concrete_8x2_C": { + "slug": "inverted-ramp-2m-concrete", + "icon": "desc-invertedramp-concrete-8x2-c", + "name": "Inverted Ramp (2 m) (Concrete)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_InvertedRamp_Concrete_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_Concrete_8x4_C": { + "slug": "inverted-ramp-4m-concrete", + "icon": "desc-invertedramp-concrete-8x4-c", + "name": "Inverted Ramp (4 m) (Concrete)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_InvertedRamp_Concrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_DCorner_Concrete_8x1_C": { + "slug": "inverted-down-corner-1m-concrete", + "icon": "desc-invertedramp-dcorner-concrete-8x1-c", + "name": "Inverted Down Corner (1 m) (Concrete)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_InvertedRamp_DCorner_Concrete_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_DCorner_Concrete_8x2_C": { + "slug": "inverted-down-corner-2m-concrete", + "icon": "desc-invertedramp-dcorner-concrete-8x2-c", + "name": "Inverted Down Corner (2 m) (Concrete)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_InvertedRamp_DCorner_Concrete_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_DCorner_Concrete_8x4_C": { + "slug": "inverted-down-corner-4m-concrete", + "icon": "desc-invertedramp-dcorner-concrete-8x4-c", + "name": "Inverted Down Corner (4 m) (Concrete)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_InvertedRamp_DCorner_Concrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_UCorner_Concrete_8x1_C": { + "slug": "inverted-up-corner-1m-concrete", + "icon": "desc-invertedramp-ucorner-concrete-8x1-c", + "name": "Inverted Up Corner (1 m) (Concrete)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_InvertedRamp_UCorner_Concrete_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_UCorner_Concrete_8x2_C": { + "slug": "inverted-up-corner-2m-concrete", + "icon": "desc-invertedramp-ucorner-concrete-8x2-c", + "name": "Inverted Up Corner (2 m) (Concrete)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_InvertedRamp_UCorner_Concrete_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_UCorner_Concrete_8x4_C": { + "slug": "inverted-up-corner-4m-concrete", + "icon": "desc-invertedramp-ucorner-concrete-8x4-c", + "name": "Inverted Up Corner (4 m) (Concrete)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_InvertedRamp_UCorner_Concrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipe_Concrete_8x4_C": { + "slug": "quarter-pipe-concrete", + "icon": "desc-quarterpipe-concrete-8x4-c", + "name": "Quarter Pipe (Concrete)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_QuarterPipe_Concrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeInCorner_Concrete_8x4_C": { + "slug": "inner-corner-quarter-pipe-concrete", + "icon": "desc-quarterpipeincorner-concrete-8x4-c", + "name": "Inner Corner Quarter Pipe (Concrete)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_QuarterPipeInCorner_Concrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddle_Concrete_8x1_C": { + "slug": "half-foundation-1m-concrete", + "icon": "desc-quarterpipemiddle-concrete-8x1-c", + "name": "Half Foundation (1 m) (Concrete)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_QuarterPipeMiddle_Concrete_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddle_Concrete_8x2_C": { + "slug": "half-foundation-2m-concrete", + "icon": "desc-quarterpipemiddle-concrete-8x2-c", + "name": "Half Foundation (2 m) (Concrete)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_QuarterPipeMiddle_Concrete_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddle_Concrete_8x4_C": { + "slug": "half-foundation-4m-concrete", + "icon": "desc-quarterpipemiddle-concrete-8x4-c", + "name": "Half Foundation (4 m) (Concrete)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_QuarterPipeMiddle_Concrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleInCorner_Concrete_8x1_C": { + "slug": "inner-corner-extension-1m-concrete", + "icon": "desc-quarterpipemiddleincorner-concrete-8x1-c", + "name": "Inner Corner Extension (1 m) (Concrete)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 1 m", + "className": "Desc_QuarterPipeMiddleInCorner_Concrete_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleInCorner_Concrete_8x2_C": { + "slug": "inner-corner-extension-2m-concrete", + "icon": "desc-quarterpipemiddleincorner-concrete-8x2-c", + "name": "Inner Corner Extension (2 m) (Concrete)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 2 m", + "className": "Desc_QuarterPipeMiddleInCorner_Concrete_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleInCorner_Concrete_8x4_C": { + "slug": "inner-corner-extension-4m-concrete", + "icon": "desc-quarterpipemiddleincorner-concrete-8x4-c", + "name": "Inner Corner Extension (4 m) (Concrete)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_QuarterPipeMiddleInCorner_Concrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleOutCorner_Concrete_4x1_C": { + "slug": "outer-corner-extension-1m-concrete", + "icon": "desc-quarterpipemiddleoutcorner-concrete-4x1-c", + "name": "Outer Corner Extension (1 m) (Concrete)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 4 m x 1 m", + "className": "Desc_QuarterPipeMiddleOutCorner_Concrete_4x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleOutCorner_Concrete_4x2_C": { + "slug": "outer-corner-extension-2m-concrete", + "icon": "desc-quarterpipemiddleoutcorner-concrete-4x2-c", + "name": "Outer Corner Extension (2 m) (Concrete)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 4 m x 2 m", + "className": "Desc_QuarterPipeMiddleOutCorner_Concrete_4x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleOutCorner_Concrete_4x4_C": { + "slug": "outer-corner-extension-4m-concrete", + "icon": "desc-quarterpipemiddleoutcorner-concrete-4x4-c", + "name": "Outer Corner Extension (4 m) (Concrete)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 4 m x 4 m", + "className": "Desc_QuarterPipeMiddleOutCorner_Concrete_4x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeOutCorner_Concrete_8x4_C": { + "slug": "outer-corner-quarter-pipe-concrete", + "icon": "desc-quarterpipeoutcorner-concrete-8x4-c", + "name": "Outer Corner Quarter Pipe (Concrete)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_QuarterPipeOutCorner_Concrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Concrete_8x1_C": { + "slug": "ramp-1m-concrete", + "icon": "desc-ramp-concrete-8x1-c", + "name": "Ramp (1 m) (Concrete)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_Ramp_Concrete_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Concrete_8x2_C": { + "slug": "ramp-2m-concrete", + "icon": "desc-ramp-concrete-8x2-c", + "name": "Ramp (2 m) (Concrete)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_Ramp_Concrete_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Concrete_8x4_C": { + "slug": "ramp-4m-concrete", + "icon": "desc-ramp-concrete-8x4-c", + "name": "Ramp (4 m) (Concrete)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_Ramp_Concrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_DownCorner_Concrete_8x1_C": { + "slug": "down-corner-ramp-1m-concrete", + "icon": "desc-ramp-downcorner-concrete-8x1-c", + "name": "Down Corner Ramp (1 m) (Concrete)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_Ramp_DownCorner_Concrete_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_DownCorner_Concrete_8x2_C": { + "slug": "down-corner-ramp-2m-concrete", + "icon": "desc-ramp-downcorner-concrete-8x2-c", + "name": "Down Corner Ramp (2 m) (Concrete)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_Ramp_DownCorner_Concrete_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_DownCorner_Concrete_8x4_C": { + "slug": "down-corner-ramp-4m-concrete", + "icon": "desc-ramp-downcorner-concrete-8x4-c", + "name": "Down Corner Ramp (4 m) (Concrete)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_Ramp_DownCorner_Concrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_UpCorner_Concrete_8x1_C": { + "slug": "up-corner-ramp-1m-concrete", + "icon": "desc-ramp-upcorner-concrete-8x1-c", + "name": "Up Corner Ramp (1 m) (Concrete)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_Ramp_UpCorner_Concrete_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_UpCorner_Concrete_8x2_C": { + "slug": "up-corner-ramp-2m-concrete", + "icon": "desc-ramp-upcorner-concrete-8x2-c", + "name": "Up Corner Ramp (2 m) (Concrete)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_Ramp_UpCorner_Concrete_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_UpCorner_Concrete_8x4_C": { + "slug": "up-corner-ramp-4m-concrete", + "icon": "desc-ramp-upcorner-concrete-8x4-c", + "name": "Up Corner Ramp (4 m) (Concrete)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_Ramp_UpCorner_Concrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampDouble_Concrete_8x1_C": { + "slug": "double-ramp-2m-concrete", + "icon": "desc-rampdouble-concrete-8x1-c", + "name": "Double Ramp (2 m) (Concrete)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_RampDouble_Concrete_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampDouble_Concrete_8x2_C": { + "slug": "double-ramp-4m-concrete", + "icon": "desc-rampdouble-concrete-8x2-c", + "name": "Double Ramp (4 m) (Concrete)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_RampDouble_Concrete_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampDouble_Concrete_8x4_C": { + "slug": "double-ramp-8m-concrete", + "icon": "desc-rampdouble-concrete-8x4-c", + "name": "Double Ramp (8 m) (Concrete)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_RampDouble_Concrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Stair_Concrete_8x1_C": { + "slug": "foundation-stairs-1-m-concrete", + "icon": "desc-stair-concrete-8x1-c", + "name": "Foundation Stairs (1 m) (Concrete)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nFoundation Stairs are just Ramps with extra steps.\n\nSize: 8 m x 1 m", + "className": "Desc_Stair_Concrete_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Stair_Concrete_8x2_C": { + "slug": "foundation-stairs-2-m-concrete", + "icon": "desc-stair-concrete-8x2-c", + "name": "Foundation Stairs (2 m) (Concrete)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nFoundation Stairs are just Ramps with extra steps.\n\nSize: 8 m x 2 m", + "className": "Desc_Stair_Concrete_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Stair_Concrete_8x4_C": { + "slug": "foundation-stairs-4-m-concrete", + "icon": "desc-stair-concrete-8x4-c", + "name": "Foundation Stairs (4 m) (Concrete)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nFoundation Stairs are just Ramps with extra steps.\n\nSize: 8 m x 4 m", + "className": "Desc_Stair_Concrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_DownQuarterPipe_Grip_8x4_C": { + "slug": "inverted-quarter-pipe-grip", + "icon": "desc-downquarterpipe-grip-8x4-c", + "name": "Inverted Quarter Pipe (Grip)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_DownQuarterPipe_Grip_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_DownQuarterPipeInCorner_Grip_8x4_C": { + "slug": "inverted-inner-corner-quarter-pipe-grip", + "icon": "desc-downquarterpipeincorner-grip-8x4-c", + "name": "Inverted Inner Corner Quarter Pipe (Grip)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_DownQuarterPipeInCorner_Grip_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_DownQuarterPipeOutCorner_Grip_8x4_C": { + "slug": "inverted-outer-corner-quarter-pipe-grip", + "icon": "desc-downquarterpipeoutcorner-grip-8x4-c", + "name": "Inverted Outer Corner Quarter Pipe (Grip)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_DownQuarterPipeOutCorner_Grip_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Foundation_Metal_8x1_C": { + "slug": "foundation-1m-metal", + "icon": "desc-foundation-metal-8x1-c", + "name": "Foundation (1 m) (Metal)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_Foundation_Metal_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Foundation_Metal_8x2_C": { + "slug": "foundation-2m-metal", + "icon": "desc-foundation-metal-8x2-c", + "name": "Foundation (2 m) (Metal)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_Foundation_Metal_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Foundation_Metal_8x4_C": { + "slug": "foundation-4m-metal", + "icon": "desc-foundation-metal-8x4-c", + "name": "Foundation (4 m) (Metal)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_Foundation_Metal_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_DCorner_Metal_8x1_C": { + "slug": "inverted-down-corner-1m-metal", + "icon": "desc-invertedramp-dcorner-metal-8x1-c", + "name": "Inverted Down Corner (1 m) (Metal)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_InvertedRamp_DCorner_Metal_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_DCorner_Metal_8x2_C": { + "slug": "inverted-down-corner-2m-metal", + "icon": "desc-invertedramp-dcorner-metal-8x2-c", + "name": "Inverted Down Corner (2 m) (Metal)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_InvertedRamp_DCorner_Metal_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_DCorner_Metal_8x4_C": { + "slug": "inverted-down-corner-4m-metal", + "icon": "desc-invertedramp-dcorner-metal-8x4-c", + "name": "Inverted Down Corner (4 m) (Metal)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_InvertedRamp_DCorner_Metal_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_Metal_8x1_C": { + "slug": "inverted-ramp-1m-metal", + "icon": "desc-invertedramp-metal-8x1-c", + "name": "Inverted Ramp (1 m) (Metal)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_InvertedRamp_Metal_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_Metal_8x2_C": { + "slug": "inverted-ramp-2m-metal", + "icon": "desc-invertedramp-metal-8x2-c", + "name": "Inverted Ramp (2 m) (Metal)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_InvertedRamp_Metal_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_Metal_8x4_C": { + "slug": "inverted-ramp-4m-metal", + "icon": "desc-invertedramp-metal-8x4-c", + "name": "Inverted Ramp (4 m) (Metal)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_InvertedRamp_Metal_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_UCorner_Metal_8x1_C": { + "slug": "inverted-up-corner-1m-metal", + "icon": "desc-invertedramp-ucorner-metal-8x1-c", + "name": "Inverted Up Corner (1 m) (Metal)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_InvertedRamp_UCorner_Metal_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_UCorner_Metal_8x2_C": { + "slug": "inverted-up-corner-2m-metal", + "icon": "desc-invertedramp-ucorner-metal-8x2-c", + "name": "Inverted Up Corner (2 m) (Metal)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_InvertedRamp_UCorner_Metal_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_UCorner_Metal_8x4_C": { + "slug": "inverted-up-corner-4m-metal", + "icon": "desc-invertedramp-ucorner-metal-8x4-c", + "name": "Inverted Up Corner (4 m) (Metal)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_InvertedRamp_UCorner_Metal_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipe_Grip_8x4_C": { + "slug": "quarter-pipe-grip", + "icon": "desc-quarterpipe-grip-8x4-c", + "name": "Quarter Pipe (Grip)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_QuarterPipe_Grip_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeInCorner_Grip_8x4_C": { + "slug": "inner-corner-quarter-pipe-grip", + "icon": "desc-quarterpipeincorner-grip-8x4-c", + "name": "Inner Corner Quarter Pipe (Grip)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_QuarterPipeInCorner_Grip_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddle_Grip_8x1_C": { + "slug": "half-foundation-1m-grip", + "icon": "desc-quarterpipemiddle-grip-8x1-c", + "name": "Half Foundation (1 m) (Grip)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_QuarterPipeMiddle_Grip_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddle_Grip_8x2_C": { + "slug": "half-foundation-2m-grip", + "icon": "desc-quarterpipemiddle-grip-8x2-c", + "name": "Half Foundation (2 m) (Grip)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_QuarterPipeMiddle_Grip_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddle_Grip_8x4_C": { + "slug": "half-foundation-4m-grip", + "icon": "desc-quarterpipemiddle-grip-8x4-c", + "name": "Half Foundation (4 m) (Grip)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_QuarterPipeMiddle_Grip_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleInCorner_Grip_8x1_C": { + "slug": "inner-corner-extension-1m-grip", + "icon": "desc-quarterpipemiddleincorner-grip-8x1-c", + "name": "Inner Corner Extension (1 m) (Grip)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 1 m", + "className": "Desc_QuarterPipeMiddleInCorner_Grip_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleInCorner_Grip_8x2_C": { + "slug": "inner-corner-extension-2m-grip", + "icon": "desc-quarterpipemiddleincorner-grip-8x2-c", + "name": "Inner Corner Extension (2 m) (Grip)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 2 m", + "className": "Desc_QuarterPipeMiddleInCorner_Grip_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleInCorner_Grip_8x4_C": { + "slug": "inner-corner-extension-4m-grip", + "icon": "desc-quarterpipemiddleincorner-grip-8x4-c", + "name": "Inner Corner Extension (4 m) (Grip)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_QuarterPipeMiddleInCorner_Grip_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleOutCorner_Grip_4x1_C": { + "slug": "outer-corner-extension-1m-grip", + "icon": "desc-quarterpipemiddleoutcorner-grip-4x1-c", + "name": "Outer Corner Extension (1 m) (Grip)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 4 m x 1 m", + "className": "Desc_QuarterPipeMiddleOutCorner_Grip_4x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleOutCorner_Grip_4x2_C": { + "slug": "outer-corner-extension-2m-grip", + "icon": "desc-quarterpipemiddleoutcorner-grip-4x2-c", + "name": "Outer Corner Extension (2 m) (Grip)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 4 m x 2 m", + "className": "Desc_QuarterPipeMiddleOutCorner_Grip_4x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleOutCorner_Grip_4x4_C": { + "slug": "outer-corner-extension-4m-grip", + "icon": "desc-quarterpipemiddleoutcorner-grip-4x4-c", + "name": "Outer Corner Extension (4 m) (Grip)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 4 m x 4 m", + "className": "Desc_QuarterPipeMiddleOutCorner_Grip_4x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeOutCorner_Grip_8x4_C": { + "slug": "outer-corner-quarter-pipe-grip", + "icon": "desc-quarterpipeoutcorner-grip-8x4-c", + "name": "Outer Corner Quarter Pipe (Grip)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_QuarterPipeOutCorner_Grip_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_DownCorner_Metal_8x1_C": { + "slug": "down-corner-ramp-1m-metal", + "icon": "desc-ramp-downcorner-metal-8x1-c", + "name": "Down Corner Ramp (1 m) (Metal)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_Ramp_DownCorner_Metal_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_DownCorner_Metal_8x2_C": { + "slug": "down-corner-ramp-2m-metal", + "icon": "desc-ramp-downcorner-metal-8x2-c", + "name": "Down Corner Ramp (2 m) (Metal)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_Ramp_DownCorner_Metal_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_DownCorner_Metal_8x4_C": { + "slug": "down-corner-ramp-4m-metal", + "icon": "desc-ramp-downcorner-metal-8x4-c", + "name": "Down Corner Ramp (4 m) (Metal)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_Ramp_DownCorner_Metal_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Metal_8x1_C": { + "slug": "ramp-1m-metal", + "icon": "desc-ramp-metal-8x1-c", + "name": "Ramp (1 m) (Metal)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_Ramp_Metal_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Metal_8x2_C": { + "slug": "ramp-2m-metal", + "icon": "desc-ramp-metal-8x2-c", + "name": "Ramp (2 m) (Metal)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_Ramp_Metal_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Metal_8x4_C": { + "slug": "ramp-4m-metal", + "icon": "desc-ramp-metal-8x4-c", + "name": "Ramp (4 m) (Metal)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_Ramp_Metal_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_UpCorner_Metal_8x1_C": { + "slug": "up-corner-ramp-1m-metal", + "icon": "desc-ramp-upcorner-metal-8x1-c", + "name": "Up Corner Ramp (1 m) (Metal)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_Ramp_UpCorner_Metal_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_UpCorner_Metal_8x2_C": { + "slug": "up-corner-ramp-2m-metal", + "icon": "desc-ramp-upcorner-metal-8x2-c", + "name": "Up Corner Ramp (2 m) (Metal)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_Ramp_UpCorner_Metal_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_UpCorner_Metal_8x4_C": { + "slug": "up-corner-ramp-4m-metal", + "icon": "desc-ramp-upcorner-metal-8x4-c", + "name": "Up Corner Ramp (4 m) (Metal)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_Ramp_UpCorner_Metal_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampDouble_Metal_8x1_C": { + "slug": "double-ramp-2m-metal", + "icon": "desc-rampdouble-metal-8x1-c", + "name": "Double Ramp (2 m) (Metal)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_RampDouble_Metal_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampDouble_Metal_8x2_C": { + "slug": "double-ramp-4m-metal", + "icon": "desc-rampdouble-metal-8x2-c", + "name": "Double Ramp (4 m) (Metal)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_RampDouble_Metal_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampDouble_Metal_8x4_C": { + "slug": "double-ramp-8m-metal", + "icon": "desc-rampdouble-metal-8x4-c", + "name": "Double Ramp (8 m) (Metal)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_RampDouble_Metal_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Stair_GripMetal_8x1_C": { + "slug": "foundation-stairs-1-m-metal", + "icon": "desc-stair-gripmetal-8x1-c", + "name": "Foundation Stairs (1 m) (Metal)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nFoundation Stairs are just Ramps with extra steps.\n\nSize: 8 m x 1 m", + "className": "Desc_Stair_GripMetal_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Stair_GripMetal_8x2_C": { + "slug": "foundation-stairs-2-m-metal", + "icon": "desc-stair-gripmetal-8x2-c", + "name": "Foundation Stairs (2 m) (Metal)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nFoundation Stairs are just Ramps with extra steps.\n\nSize: 8 m x 2 m", + "className": "Desc_Stair_GripMetal_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Stair_GripMetal_8x4_C": { + "slug": "foundation-stairs-4-m-metal", + "icon": "desc-stair-gripmetal-8x4-c", + "name": "Foundation Stairs (4 m) (Metal)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nFoundation Stairs are just Ramps with extra steps.\n\nSize: 8 m x 4 m", + "className": "Desc_Stair_GripMetal_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_DownQuarterPipe_ConcretePolished_8x4_C": { + "slug": "inverted-quarter-pipe-polished", + "icon": "desc-downquarterpipe-concretepolished-8x4-c", + "name": "Inverted Quarter Pipe (Polished)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_DownQuarterPipe_ConcretePolished_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_DownQuarterPipeInCorner_ConcretePolished_8x4_C": { + "slug": "inverted-inner-corner-quarter-pipe-polished", + "icon": "desc-downquarterpipeincorner-concretepolished-8x4-c", + "name": "Inverted Inner Corner Quarter Pipe (Polished)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_DownQuarterPipeInCorner_ConcretePolished_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_DownQuarterPipeOutCorner_ConcretePolished_8x4_C": { + "slug": "inverted-outer-corner-quarter-pipe-polished", + "icon": "desc-downquarterpipeoutcorner-concretepolished-8x4-c", + "name": "Inverted Outer Corner Quarter Pipe (Polished)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_DownQuarterPipeOutCorner_ConcretePolished_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Foundation_ConcretePolished_8x1_C": { + "slug": "foundation-1m-polished", + "icon": "desc-foundation-concretepolished-8x1-c", + "name": "Foundation (1 m) (Polished)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_Foundation_ConcretePolished_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_DCorner_Polished_8x1_C": { + "slug": "inverted-down-corner-1m-polished", + "icon": "desc-invertedramp-dcorner-polished-8x1-c", + "name": "Inverted Down Corner (1 m) (Polished)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_InvertedRamp_DCorner_Polished_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_DCorner_Polished_8x2_C": { + "slug": "inverted-down-corner-2m-polished", + "icon": "desc-invertedramp-dcorner-polished-8x2-c", + "name": "Inverted Down Corner (2 m) (Polished)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_InvertedRamp_DCorner_Polished_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_DCorner_Polished_8x4_C": { + "slug": "inverted-down-corner-4m-polished", + "icon": "desc-invertedramp-dcorner-polished-8x4-c", + "name": "Inverted Down Corner (4 m) (Polished)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_InvertedRamp_DCorner_Polished_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_Polished_8x1_C": { + "slug": "inverted-ramp-1m-polished", + "icon": "desc-invertedramp-polished-8x1-c", + "name": "Inverted Ramp (1 m) (Polished)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_InvertedRamp_Polished_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_Polished_8x2_C": { + "slug": "inverted-ramp-2m-polished", + "icon": "desc-invertedramp-polished-8x2-c", + "name": "Inverted Ramp (2 m) (Polished)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_InvertedRamp_Polished_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_Polished_8x4_C": { + "slug": "inverted-ramp-4m-polished", + "icon": "desc-invertedramp-polished-8x4-c", + "name": "Inverted Ramp (4 m) (Polished)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_InvertedRamp_Polished_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_UCorner_Polished_8x1_C": { + "slug": "inverted-up-corner-1m-polished", + "icon": "desc-invertedramp-ucorner-polished-8x1-c", + "name": "Inverted Up Corner (1 m) (Polished)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_InvertedRamp_UCorner_Polished_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_UCorner_Polished_8x2_C": { + "slug": "inverted-up-corner-2m-polished", + "icon": "desc-invertedramp-ucorner-polished-8x2-c", + "name": "Inverted Up Corner (2 m) (Polished)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_InvertedRamp_UCorner_Polished_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_UCorner_Polished_8x4_C": { + "slug": "inverted-up-corner-4m-polished", + "icon": "desc-invertedramp-ucorner-polished-8x4-c", + "name": "Inverted Up Corner (4 m) (Polished)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_InvertedRamp_UCorner_Polished_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipe_ConcretePolished_8x4_C": { + "slug": "quarter-pipe-polished", + "icon": "desc-quarterpipe-concretepolished-8x4-c", + "name": "Quarter Pipe (Polished)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_QuarterPipe_ConcretePolished_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeInCorner_ConcretePolished_8x4_C": { + "slug": "inner-corner-quarter-pipe-polished", + "icon": "desc-quarterpipeincorner-concretepolished-8x4-c", + "name": "Inner Corner Quarter Pipe (Polished)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_QuarterPipeInCorner_ConcretePolished_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddle_PolishedConcrete_8x1_C": { + "slug": "half-foundation-1m-polished", + "icon": "desc-quarterpipemiddle-polishedconcrete-8x1-c", + "name": "Half Foundation (1 m) (Polished)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_QuarterPipeMiddle_PolishedConcrete_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddle_PolishedConcrete_8x2_C": { + "slug": "half-foundation-2m-polished", + "icon": "desc-quarterpipemiddle-polishedconcrete-8x2-c", + "name": "Half Foundation (2 m) (Polished)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_QuarterPipeMiddle_PolishedConcrete_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddle_PolishedConcrete_8x4_C": { + "slug": "half-foundation-4m-polished", + "icon": "desc-quarterpipemiddle-polishedconcrete-8x4-c", + "name": "Half Foundation (4 m) (Polished)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_QuarterPipeMiddle_PolishedConcrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleInCorner_PolishedConcrete_8x1_C": { + "slug": "inner-corner-extension-1m-polished", + "icon": "desc-quarterpipemiddleincorner-polishedconcrete-8x1-c", + "name": "Inner Corner Extension (1 m) (Polished)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 1 m", + "className": "Desc_QuarterPipeMiddleInCorner_PolishedConcrete_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleInCorner_PolishedConcrete_8x2_C": { + "slug": "inner-corner-extension-2m-polished", + "icon": "desc-quarterpipemiddleincorner-polishedconcrete-8x2-c", + "name": "Inner Corner Extension (2 m) (Polished)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 2 m", + "className": "Desc_QuarterPipeMiddleInCorner_PolishedConcrete_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleInCorner_PolishedConcrete_8x4_C": { + "slug": "inner-corner-extension-4m-polished", + "icon": "desc-quarterpipemiddleincorner-polishedconcrete-8x4-c", + "name": "Inner Corner Extension (4 m) (Polished)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_QuarterPipeMiddleInCorner_PolishedConcrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleOutCorner_PolishedConcrete_4x1_C": { + "slug": "outer-corner-extension-1m-polished", + "icon": "desc-quarterpipemiddleoutcorner-polishedconcrete-4x1-c", + "name": "Outer Corner Extension (1 m) (Polished)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 4 m x 1 m", + "className": "Desc_QuarterPipeMiddleOutCorner_PolishedConcrete_4x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleOutCorner_PolishedConcrete_4x2_C": { + "slug": "outer-corner-extension-2m-polished", + "icon": "desc-quarterpipemiddleoutcorner-polishedconcrete-4x2-c", + "name": "Outer Corner Extension (2 m) (Polished)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 4 m x 2 m", + "className": "Desc_QuarterPipeMiddleOutCorner_PolishedConcrete_4x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleOutCorner_PolishedConcrete_4x4_C": { + "slug": "outer-corner-extension-4m-polished", + "icon": "desc-quarterpipemiddleoutcorner-polishedconcrete-4x4-c", + "name": "Outer Corner Extension (4 m) (Polished)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 4 m x 4 m", + "className": "Desc_QuarterPipeMiddleOutCorner_PolishedConcrete_4x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeOutCorner_ConcretePolished_8x4_C": { + "slug": "outer-corner-quarter-pipe-polished", + "icon": "desc-quarterpipeoutcorner-concretepolished-8x4-c", + "name": "Outer Corner Quarter Pipe (Polished)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_QuarterPipeOutCorner_ConcretePolished_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_DownCorner_Polished_8x1_C": { + "slug": "down-corner-ramp-1m-polished", + "icon": "desc-ramp-downcorner-polished-8x1-c", + "name": "Down Corner Ramp (1 m) (Polished)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_Ramp_DownCorner_Polished_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_DownCorner_Polished_8x2_C": { + "slug": "down-corner-ramp-2m-polished", + "icon": "desc-ramp-downcorner-polished-8x2-c", + "name": "Down Corner Ramp (2 m) (Polished)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_Ramp_DownCorner_Polished_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_DownCorner_Polished_8x4_C": { + "slug": "down-corner-ramp-4m-polished", + "icon": "desc-ramp-downcorner-polished-8x4-c", + "name": "Down Corner Ramp (4 m) (Polished)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_Ramp_DownCorner_Polished_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Polished_8x1_C": { + "slug": "ramp-1m-polished", + "icon": "desc-ramp-polished-8x1-c", + "name": "Ramp (1 m) (Polished)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_Ramp_Polished_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Polished_8x2_C": { + "slug": "ramp-2m-polished", + "icon": "desc-ramp-polished-8x2-c", + "name": "Ramp (2 m) (Polished)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_Ramp_Polished_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Polished_8x4_C": { + "slug": "ramp-4m-polished", + "icon": "desc-ramp-polished-8x4-c", + "name": "Ramp (4 m) (Polished)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_Ramp_Polished_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_UpCorner_Polished_8x1_C": { + "slug": "up-corner-ramp-1m-polished", + "icon": "desc-ramp-upcorner-polished-8x1-c", + "name": "Up Corner Ramp (1 m) (Polished)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_Ramp_UpCorner_Polished_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_UpCorner_Polished_8x2_C": { + "slug": "up-corner-ramp-2m-polished", + "icon": "desc-ramp-upcorner-polished-8x2-c", + "name": "Up Corner Ramp (2 m) (Polished)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_Ramp_UpCorner_Polished_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_UpCorner_Polished_8x4_C": { + "slug": "up-corner-ramp-4m-polished", + "icon": "desc-ramp-upcorner-polished-8x4-c", + "name": "Up Corner Ramp (4 m) (Polished)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_Ramp_UpCorner_Polished_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampDouble_Polished_8x1_C": { + "slug": "double-ramp-2m-polished", + "icon": "desc-rampdouble-polished-8x1-c", + "name": "Double Ramp (2 m) (Polished)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_RampDouble_Polished_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampDouble_Polished_8x2_C": { + "slug": "double-ramp-4m-polished", + "icon": "desc-rampdouble-polished-8x2-c", + "name": "Double Ramp (4 m) (Polished)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_RampDouble_Polished_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampDouble_Polished_8x4_C": { + "slug": "double-ramp-8m-polished", + "icon": "desc-rampdouble-polished-8x4-c", + "name": "Double Ramp (8 m) (Polished)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_RampDouble_Polished_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Stair_PolishedConcrete_8x1_C": { + "slug": "foundation-stairs-1-m-polished", + "icon": "desc-stair-polishedconcrete-8x1-c", + "name": "Foundation Stairs (1 m) (Polished)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nFoundation Stairs are just Ramps with extra steps.\n\nSize: 8 m x 1 m", + "className": "Desc_Stair_PolishedConcrete_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Stair_PolishedConcrete_8x2_C": { + "slug": "foundation-stairs-2-m-polished", + "icon": "desc-stair-polishedconcrete-8x2-c", + "name": "Foundation Stairs (2 m) (Polished)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nFoundation Stairs are just Ramps with extra steps.\n\nSize: 8 m x 2 m", + "className": "Desc_Stair_PolishedConcrete_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Stair_PolishedConcrete_8x4_C": { + "slug": "foundation-stairs-4-m-polished", + "icon": "desc-stair-polishedconcrete-8x4-c", + "name": "Foundation Stairs (4 m) (Polished)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nFoundation Stairs are just Ramps with extra steps.\n\nSize: 8 m x 4 m", + "className": "Desc_Stair_PolishedConcrete_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_DownQuarterPipe_Asphalt_8x4_C": { + "slug": "inverted-quarter-pipe-asphalt", + "icon": "desc-downquarterpipe-asphalt-8x4-c", + "name": "Inverted Quarter Pipe (Asphalt)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_DownQuarterPipe_Asphalt_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_DownQuarterPipeInCorner_Asphalt_8x4_C": { + "slug": "inverted-inner-corner-quarter-pipe-asphalt", + "icon": "desc-downquarterpipeincorner-asphalt-8x4-c", + "name": "Inverted Inner Corner Quarter Pipe (Asphalt)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_DownQuarterPipeInCorner_Asphalt_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_DownQuarterPipeOutCorner_Asphalt_8x4_C": { + "slug": "inverted-outer-corner-quarter-pipe-asphalt", + "icon": "desc-downquarterpipeoutcorner-asphalt-8x4-c", + "name": "Inverted Outer Corner Quarter Pipe (Asphalt)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_DownQuarterPipeOutCorner_Asphalt_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Foundation_Asphalt_8x1_C": { + "slug": "foundation-1m-asphalt", + "icon": "desc-foundation-asphalt-8x1-c", + "name": "Foundation (1 m) (Asphalt)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_Foundation_Asphalt_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Foundation_Asphalt_8x2_C": { + "slug": "foundation-2m-asphalt", + "icon": "desc-foundation-asphalt-8x2-c", + "name": "Foundation (2 m) (Asphalt)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_Foundation_Asphalt_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Foundation_Asphalt_8x4_C": { + "slug": "foundation-4m-asphalt", + "icon": "desc-foundation-asphalt-8x4-c", + "name": "Foundation (4 m) (Asphalt)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_Foundation_Asphalt_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_Asphalt_8x1_C": { + "slug": "inverted-ramp-1m-asphalt", + "icon": "desc-invertedramp-asphalt-8x1-c", + "name": "Inverted Ramp (1 m) (Asphalt)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_InvertedRamp_Asphalt_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_Asphalt_8x2_C": { + "slug": "inverted-ramp-2m-asphalt", + "icon": "desc-invertedramp-asphalt-8x2-c", + "name": "Inverted Ramp (2 m) (Asphalt)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_InvertedRamp_Asphalt_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_Asphalt_8x4_C": { + "slug": "inverted-ramp-4m-asphalt", + "icon": "desc-invertedramp-asphalt-8x4-c", + "name": "Inverted Ramp (4 m) (Asphalt)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_InvertedRamp_Asphalt_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_DCorner_Asphalt_8x1_C": { + "slug": "inverted-down-corner-1m-asphalt", + "icon": "desc-invertedramp-dcorner-asphalt-8x1-c", + "name": "Inverted Down Corner (1 m) (Asphalt)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_InvertedRamp_DCorner_Asphalt_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_DCorner_Asphalt_8x2_C": { + "slug": "inverted-down-corner-2m-asphalt", + "icon": "desc-invertedramp-dcorner-asphalt-8x2-c", + "name": "Inverted Down Corner (2 m) (Asphalt)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_InvertedRamp_DCorner_Asphalt_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_DCorner_Asphalt_8x4_C": { + "slug": "inverted-down-corner-4m-asphalt", + "icon": "desc-invertedramp-dcorner-asphalt-8x4-c", + "name": "Inverted Down Corner (4 m) (Asphalt)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_InvertedRamp_DCorner_Asphalt_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_UCorner_Asphalt_8x1_C": { + "slug": "inverted-up-corner-1m-asphalt", + "icon": "desc-invertedramp-ucorner-asphalt-8x1-c", + "name": "Inverted Up Corner (1 m) (Asphalt)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_InvertedRamp_UCorner_Asphalt_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_UCorner_Asphalt_8x2_C": { + "slug": "inverted-up-corner-2m-asphalt", + "icon": "desc-invertedramp-ucorner-asphalt-8x2-c", + "name": "Inverted Up Corner (2 m) (Asphalt)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_InvertedRamp_UCorner_Asphalt_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_InvertedRamp_UCorner_Asphalt_8x4_C": { + "slug": "inverted-up-corner-4m-asphalt", + "icon": "desc-invertedramp-ucorner-asphalt-8x4-c", + "name": "Inverted Up Corner (4 m) (Asphalt)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_InvertedRamp_UCorner_Asphalt_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipe_Asphalt_8x4_C": { + "slug": "quarter-pipe-asphalt", + "icon": "desc-quarterpipe-asphalt-8x4-c", + "name": "Quarter Pipe (Asphalt)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_QuarterPipe_Asphalt_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeInCorner_Asphalt_8x4_C": { + "slug": "inner-corner-quarter-pipe-asphalt", + "icon": "desc-quarterpipeincorner-asphalt-8x4-c", + "name": "Inner Corner Quarter Pipe (Asphalt)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_QuarterPipeInCorner_Asphalt_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddle_Asphalt_8x1_C": { + "slug": "half-foundation-1m-asphalt", + "icon": "desc-quarterpipemiddle-asphalt-8x1-c", + "name": "Half Foundation (1 m) (Asphalt)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_QuarterPipeMiddle_Asphalt_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddle_Asphalt_8x2_C": { + "slug": "half-foundation-2m-asphalt", + "icon": "desc-quarterpipemiddle-asphalt-8x2-c", + "name": "Half Foundation (2 m) (Asphalt)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_QuarterPipeMiddle_Asphalt_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddle_Asphalt_8x4_C": { + "slug": "half-foundation-4m-asphalt", + "icon": "desc-quarterpipemiddle-asphalt-8x4-c", + "name": "Half Foundation (4 m) (Asphalt)", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_QuarterPipeMiddle_Asphalt_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleInCorner_Asphalt_8x1_C": { + "slug": "inner-corner-extension-1m-asphalt", + "icon": "desc-quarterpipemiddleincorner-asphalt-8x1-c", + "name": "Inner Corner Extension (1 m) (Asphalt)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 1 m", + "className": "Desc_QuarterPipeMiddleInCorner_Asphalt_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleInCorner_Asphalt_8x2_C": { + "slug": "inner-corner-extension-2m-asphalt", + "icon": "desc-quarterpipemiddleincorner-asphalt-8x2-c", + "name": "Inner Corner Extension (2 m) (Asphalt)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 2 m", + "className": "Desc_QuarterPipeMiddleInCorner_Asphalt_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleInCorner_Asphalt_8x4_C": { + "slug": "inner-corner-extension-4m-asphalt", + "icon": "desc-quarterpipemiddleincorner-asphalt-8x4-c", + "name": "Inner Corner Extension (4 m) (Asphalt)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_QuarterPipeMiddleInCorner_Asphalt_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleOutCorner_Asphalt_4x1_C": { + "slug": "outer-corner-extension-1m-asphalt", + "icon": "desc-quarterpipemiddleoutcorner-asphalt-4x1-c", + "name": "Outer Corner Extension (1 m) (Asphalt)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 4 m x 1 m", + "className": "Desc_QuarterPipeMiddleOutCorner_Asphalt_4x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleOutCorner_Asphalt_4x2_C": { + "slug": "outer-corner-extension-2m-asphalt", + "icon": "desc-quarterpipemiddleoutcorner-asphalt-4x2-c", + "name": "Outer Corner Extension (2 m) (Asphalt)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 4 m x 2 m", + "className": "Desc_QuarterPipeMiddleOutCorner_Asphalt_4x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeMiddleOutCorner_Asphalt_4x4_C": { + "slug": "outer-corner-extension-4m-asphalt", + "icon": "desc-quarterpipemiddleoutcorner-asphalt-4x4-c", + "name": "Outer Corner Extension (4 m) (Asphalt)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 4 m x 4 m", + "className": "Desc_QuarterPipeMiddleOutCorner_Asphalt_4x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_QuarterPipeOutCorner_Asphalt_8x4_C": { + "slug": "outer-corner-quarter-pipe-asphalt", + "icon": "desc-quarterpipeoutcorner-asphalt-8x4-c", + "name": "Outer Corner Quarter Pipe (Asphalt)", + "description": "Provides an optional factory look that is smoother and offers possibilities for recreational activities. \nStill utilizes the standard Foundation building grid for improved building placement.\n\nSize: 8 m x 4 m", + "className": "Desc_QuarterPipeOutCorner_Asphalt_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Asphalt_8x1_C": { + "slug": "ramp-1m-asphalt", + "icon": "desc-ramp-asphalt-8x1-c", + "name": "Ramp (1 m) (Asphalt)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_Ramp_Asphalt_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Asphalt_8x2_C": { + "slug": "ramp-2m-asphalt", + "icon": "desc-ramp-asphalt-8x2-c", + "name": "Ramp (2 m) (Asphalt)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_Ramp_Asphalt_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Asphalt_8x4_C": { + "slug": "ramp-4m-asphalt", + "icon": "desc-ramp-asphalt-8x4-c", + "name": "Ramp (4 m) (Asphalt)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_Ramp_Asphalt_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_DownCorner_Asphalt_8x1_C": { + "slug": "down-corner-ramp-1m-asphalt", + "icon": "desc-ramp-downcorner-asphalt-8x1-c", + "name": "Down Corner Ramp (1 m) (Asphalt)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_Ramp_DownCorner_Asphalt_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_DownCorner_Asphalt_8x2_C": { + "slug": "down-corner-ramp-2m-asphalt", + "icon": "desc-ramp-downcorner-asphalt-8x2-c", + "name": "Down Corner Ramp (2 m) (Asphalt)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_Ramp_DownCorner_Asphalt_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_DownCorner_Asphalt_8x4_C": { + "slug": "down-corner-ramp-4m-asphalt", + "icon": "desc-ramp-downcorner-asphalt-8x4-c", + "name": "Down Corner Ramp (4 m) (Asphalt)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_Ramp_DownCorner_Asphalt_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_UpCorner_Asphalt_8x1_C": { + "slug": "up-corner-ramp-1m-asphalt", + "icon": "desc-ramp-upcorner-asphalt-8x1-c", + "name": "Up Corner Ramp (1 m) (Asphalt)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_Ramp_UpCorner_Asphalt_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_UpCorner_Asphalt_8x2_C": { + "slug": "up-corner-ramp-2m-asphalt", + "icon": "desc-ramp-upcorner-asphalt-8x2-c", + "name": "Up Corner Ramp (2 m) (Asphalt)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_Ramp_UpCorner_Asphalt_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_UpCorner_Asphalt_8x4_C": { + "slug": "up-corner-ramp-4m-asphalt", + "icon": "desc-ramp-upcorner-asphalt-8x4-c", + "name": "Up Corner Ramp (4 m) (Asphalt)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_Ramp_UpCorner_Asphalt_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampDouble_Asphalt_8x1_C": { + "slug": "double-ramp-2m-asphalt", + "icon": "desc-rampdouble-asphalt-8x1-c", + "name": "Double Ramp (2 m) (Asphalt)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 2 m", + "className": "Desc_RampDouble_Asphalt_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampDouble_Asphalt_8x2_C": { + "slug": "double-ramp-4m-asphalt", + "icon": "desc-rampdouble-asphalt-8x2-c", + "name": "Double Ramp (4 m) (Asphalt)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 4 m", + "className": "Desc_RampDouble_Asphalt_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RampDouble_Asphalt_8x4_C": { + "slug": "double-ramp-8m-asphalt", + "icon": "desc-rampdouble-asphalt-8x4-c", + "name": "Double Ramp (8 m) (Asphalt)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nBuildings on top of the Ramp snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 8 m", + "className": "Desc_RampDouble_Asphalt_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Stair_Asphalt_8x1_C": { + "slug": "foundation-stairs-1-m-asphalt", + "icon": "desc-stair-asphalt-8x1-c", + "name": "Foundation Stairs (1 m) (Asphalt)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nFoundation Stairs are just Ramps with extra steps.\n\nSize: 8 m x 1 m", + "className": "Desc_Stair_Asphalt_8x1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Stair_Asphalt_8x2_C": { + "slug": "foundation-stairs-2-m-asphalt", + "icon": "desc-stair-asphalt-8x2-c", + "name": "Foundation Stairs (2 m) (Asphalt)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nFoundation Stairs are just Ramps with extra steps.\n\nSize: 8 m x 2 m", + "className": "Desc_Stair_Asphalt_8x2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Stair_Asphalt_8x4_C": { + "slug": "foundation-stairs-4-m-asphalt", + "icon": "desc-stair-asphalt-8x4-c", + "name": "Foundation Stairs (4 m) (Asphalt)", + "description": "Snaps to Foundations and makes it easier to get onto them.\n\nFoundation Stairs are just Ramps with extra steps.\n\nSize: 8 m x 4 m", + "className": "Desc_Stair_Asphalt_8x4_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_AlienPowerBuilding_C": { + "slug": "alien-power-augmenter", + "icon": "desc-alienpowerbuilding-c", + "name": "Alien Power Augmenter", + "description": "Generates power based on the total amount of power on the attached power grid.\n\nThis experimental technology is somehow able to extract power from the Somersloop by blasting it with energy.", + "className": "Desc_AlienPowerBuilding_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_CentralStorage_C": { + "slug": "dimensional-depot-uploader", + "icon": "desc-centralstorage-c", + "name": "Dimensional Depot Uploader", + "description": "The Dimensional Depot Uploader is used to upload resources to a dimensional storage deposit.\nFrom here resources can be used by the Build Gun and Crafting Stations, as if they were in the pioneer Inventory.", + "className": "Desc_CentralStorage_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_GeneratorGeoThermal_C": { + "slug": "geothermal-generator", + "icon": "desc-generatorgeothermal-c", + "name": "Geothermal Generator", + "description": "Harnesses geothermal energy to generate power. Must be built on a Geyser.\n\nCaution: Power production fluctuates.\n\nPower Production:\nImpure Geyser: 50-150 MW (100 MW average)\nNormal Geyser: 100-300 MW (200 MW average)\nPure Geyser: 200-600 MW (400 MW average)", + "className": "Desc_GeneratorGeoThermal_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConveyorAttachmentSplitterProgrammable_C": { + "slug": "programmable-splitter", + "icon": "desc-conveyorattachmentsplitterprogrammable-c", + "name": "Programmable Splitter", + "description": "Splits one Conveyor Belt into two or three. \nMultiple filters can be set for each output to allow specific parts to pass through.", + "className": "Desc_ConveyorAttachmentSplitterProgrammable_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PowerPoleMk3_C": { + "slug": "power-pole-mk-3", + "icon": "desc-powerpolemk3-c", + "name": "Power Pole Mk.3", + "description": "Allows for up to 10 Power Line connections.\n\nConnect Power Poles, Power Generators, and factory buildings with Power Lines to create a power grid. The power grid supplies all connected buildings with power.", + "className": "Desc_PowerPoleMk3_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PriorityPowerSwitch_C": { + "slug": "priority-power-switch", + "icon": "desc-prioritypowerswitch-c", + "name": "Priority Power Switch", + "description": "Priority Power Switches can be ranked by priority. When power production is too low, Switches will start turning off automatically until the power stabilizes, starting with Priority Group 8.", + "className": "Desc_PriorityPowerSwitch_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PowerPoleMk2_C": { + "slug": "power-pole-mk-2", + "icon": "desc-powerpolemk2-c", + "name": "Power Pole Mk.2", + "description": "Allows for up to 7 Power Line connections.\n\nConnect Power Poles, Power Generators, and factory buildings with Power Lines to create a power grid. The power grid supplies all connected buildings with power.", + "className": "Desc_PowerPoleMk2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PowerSwitch_C": { + "slug": "power-switch", + "icon": "desc-powerswitch-c", + "name": "Power Switch", + "description": "Enables/disables the connection between 2 power grids when switched ON/OFF.\n\nNote the A and B connector labels.", + "className": "Desc_PowerSwitch_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConveyorAttachmentSplitterSmart_C": { + "slug": "smart-splitter", + "icon": "desc-conveyorattachmentsplittersmart-c", + "name": "Smart Splitter", + "description": "Splits one Conveyor Belt into two or three.\nA filter can be set for each output to allow a specific part to pass through.", + "className": "Desc_ConveyorAttachmentSplitterSmart_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_RadarTower_C": { + "slug": "radar-tower", + "icon": "desc-radartower-c", + "name": "Radar Tower", + "description": "Scans the surrounding area to display additional information on the Map.\n\nInformation revealed on the Map includes:\n- Resource node locations\n- Terrain data\n- Flora & fauna information\n- Notable signal readings", + "className": "Desc_RadarTower_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 30, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Flat_Frame_01_C": { + "slug": "frame-floor", + "icon": "desc-flat-frame-01-c", + "name": "Frame Floor", + "description": "Snaps to other structural buildings.\nFrames provide a more open factory aesthetic.\n\nSize: 8 m x 0.5 m", + "className": "Desc_Flat_Frame_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Foundation_Frame_01_C": { + "slug": "frame-foundation", + "icon": "desc-foundation-frame-01-c", + "name": "Frame Foundation", + "description": "Snaps to other structural buildings.\nFrames provide a more open factory aesthetic.\n\nSize: 8 m x 4 m", + "className": "Desc_Foundation_Frame_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_FoundationGlass_01_C": { + "slug": "glass-frame-foundation", + "icon": "desc-foundationglass-01-c", + "name": "Glass Frame Foundation", + "description": "Provides a flat floor to build your factory on.\n\nBuildings on top of the Foundation snap to a grid, making it easier to line them up with each other.\n\nSize: 8 m x 1 m", + "className": "Desc_FoundationGlass_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Frame_01_C": { + "slug": "frame-ramp", + "icon": "desc-ramp-frame-01-c", + "name": "Frame Ramp", + "description": "Snaps to other structural buildings.\nFrames provide a more open factory aesthetic.\n\nSize: 8 m x 4 m", + "className": "Desc_Ramp_Frame_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ramp_Frame_Inverted_01_C": { + "slug": "inverted-frame-ramp", + "icon": "desc-ramp-frame-inverted-01-c", + "name": "Inverted Frame Ramp", + "description": "Snaps to other structural buildings.\nFrames provide a more open factory aesthetic.\n\nSize: 8 m x 4 m", + "className": "Desc_Ramp_Frame_Inverted_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Pillar_Small_Metal_C": { + "slug": "small-metal-pillar-metal", + "icon": "desc-pillar-small-metal-c", + "name": "Small Metal Pillar (Metal)", + "description": "Snaps to other Pillars. Can be placed on surfaces like Foundations and Walls.\n\nSize: 2 m x 4 m", + "className": "Desc_Pillar_Small_Metal_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PillarBase_Small_C": { + "slug": "small-pillar-support", + "icon": "desc-pillarbase-small-c", + "name": "Small Pillar Support", + "description": "Snaps to Pillars. Can be placed on surfaces like Foundations and Walls.", + "className": "Desc_PillarBase_Small_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PillarBase_C": { + "slug": "big-pillar-support", + "icon": "desc-pillarbase-c", + "name": "Big Pillar Support", + "description": "Snaps to Pillars. Can be placed on surfaces like Foundations and Walls.", + "className": "Desc_PillarBase_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PillarMiddle_C": { + "slug": "big-metal-pillar", + "icon": "desc-pillarmiddle-c", + "name": "Big Metal Pillar", + "description": "Snaps to other Pillars. Can be placed on surfaces like Foundations and Walls.\n\nSize: 4 m x 4 m", + "className": "Desc_PillarMiddle_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Ladder_C": { + "slug": "ladder", + "icon": "desc-ladder-c", + "name": "Ladder", + "description": "Snaps to Walls and Foundations. Default height is 2 m, but it can be extended while building.", + "className": "Desc_Ladder_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_HyperTubeWallHole_C": { + "slug": "hypertube-wall-hole", + "icon": "desc-hypertubewallhole-c", + "name": "Hypertube Wall Hole", + "description": "Attaches to Walls, allowing Hypertubes to pass through.", + "className": "Desc_HyperTubeWallHole_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PipelineSupportWallHole_C": { + "slug": "pipeline-wall-hole", + "icon": "desc-pipelinesupportwallhole-c", + "name": "Pipeline Wall Hole", + "description": "Attaches to Walls, allowing Pipelines to pass through.", + "className": "Desc_PipelineSupportWallHole_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_FoundationPassthrough_Pipe_C": { + "slug": "pipeline-floor-hole", + "icon": "desc-foundationpassthrough-pipe-c", + "name": "Pipeline Floor Hole", + "description": "Attaches to Foundations, allowing Pipelines to pass through.", + "className": "Desc_FoundationPassthrough_Pipe_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PowerPoleWallDouble_C": { + "slug": "double-wall-outlet-mk-1", + "icon": "desc-powerpolewalldouble-c", + "name": "Double Wall Outlet Mk.1", + "description": "Functions like a Power Pole, but attaches to a wall. Has one connector on each side of the wall.\n\nAllows for up to 4 Power Line connections per side.\n\nConnect Power Poles, Power Generators and factory buildings with Power Lines to create a power grid. The power grid supplies all connected buildings with power.", + "className": "Desc_PowerPoleWallDouble_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PowerPoleWallDoubleMk2_C": { + "slug": "double-wall-outlet-mk-2", + "icon": "desc-powerpolewalldoublemk2-c", + "name": "Double Wall Outlet Mk.2", + "description": "Functions like a Power Pole, but attaches to a wall. Has one connector on each side of the wall.\n\nAllows for up to 7 Power Line connections per side.\n\nConnect Power Poles, Power Generators and factory buildings with Power Lines to create a power grid. The power grid supplies all connected buildings with power.", + "className": "Desc_PowerPoleWallDoubleMk2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PowerPoleWallMk2_C": { + "slug": "wall-outlet-mk-2", + "icon": "desc-powerpolewallmk2-c", + "name": "Wall Outlet Mk.2", + "description": "Functions like a Power Pole, but attaches to a wall.\n\nAllows for up to 7 Power Line connections.\n\nConnect Power Poles, Power Generators and factory buildings with Power Lines to create a power grid. The power grid supplies all connected buildings with power.", + "className": "Desc_PowerPoleWallMk2_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PowerPoleWallDoubleMk3_C": { + "slug": "double-wall-outlet-mk-3", + "icon": "desc-powerpolewalldoublemk3-c", + "name": "Double Wall Outlet Mk.3", + "description": "Functions like a Power Pole, but attaches to a wall. Has one connector on each side of the wall.\n\nAllows for up to 10 Power Line connections per side.\n\nConnect Power Poles, Power Generators and factory buildings with Power Lines to create a power grid. The power grid supplies all connected buildings with power.", + "className": "Desc_PowerPoleWallDoubleMk3_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PowerPoleWallMk3_C": { + "slug": "wall-outlet-mk-3", + "icon": "desc-powerpolewallmk3-c", + "name": "Wall Outlet Mk.3", + "description": "Functions like a Power Pole, but attaches to a wall.\n\nAllows for up to 10 Power Line connections.\n\nConnect Power Poles, Power Generators and factory buildings with Power Lines to create a power grid. The power grid supplies all connected buildings with power.", + "className": "Desc_PowerPoleWallMk3_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_StreetLight_C": { + "slug": "street-light", + "icon": "desc-streetlight-c", + "name": "Street Light", + "description": "Lights up factory areas and roads.\n\nLight color and intensity can be adjusted.\nAllows for up to 2 Power Line connections.", + "className": "Desc_StreetLight_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 1, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_CeilingLight_C": { + "slug": "ceiling-light", + "icon": "desc-ceilinglight-c", + "name": "Ceiling Light", + "description": "Lights up indoor factory spaces when placed on ceilings.\n\nLight color and intensity can be adjusted via a Light Control Panel.\nAllows for up to 2 Power Line connections.", + "className": "Desc_CeilingLight_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 2, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_FloodlightPole_C": { + "slug": "flood-light-tower", + "icon": "desc-floodlightpole-c", + "name": "Flood Light Tower", + "description": "Illuminates large or outdoor spaces.\n\nLight color and intensity can be adjusted.\nAllows for up to 2 Power Line connections.", + "className": "Desc_FloodlightPole_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 6, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_FloodlightWall_C": { + "slug": "wall-mounted-flood-light", + "icon": "desc-floodlightwall-c", + "name": "Wall-Mounted Flood Light", + "description": "Attaches to Walls and Foundations to illuminate large spaces.\n\nLight color and intensity can be modified via a Light Control Panel.\nAllows for up to 2 Power Line connections.", + "className": "Desc_FloodlightWall_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 6, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Orange_01_C": { + "slug": "flat-roof", + "icon": "desc-roof-orange-01-c", + "name": "Flat Roof", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x flat", + "className": "Desc_Roof_Orange_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Orange_02_C": { + "slug": "roof-1m", + "icon": "desc-roof-orange-02-c", + "name": "Roof (1 m)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 1 m", + "className": "Desc_Roof_Orange_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Orange_03_C": { + "slug": "roof-2m", + "icon": "desc-roof-orange-03-c", + "name": "Roof (2 m)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 2 m", + "className": "Desc_Roof_Orange_03_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Orange_04_C": { + "slug": "roof-4m", + "icon": "desc-roof-orange-04-c", + "name": "Roof (4 m)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 4 m", + "className": "Desc_Roof_Orange_04_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Orange_InCorner_01_C": { + "slug": "inner-corner-roof-1m", + "icon": "desc-roof-orange-incorner-01-c", + "name": "Inner Corner Roof (1 m)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 1 m", + "className": "Desc_Roof_Orange_InCorner_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Orange_InCorner_02_C": { + "slug": "inner-corner-roof-2m", + "icon": "desc-roof-orange-incorner-02-c", + "name": "Inner Corner Roof (2 m)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 2 m", + "className": "Desc_Roof_Orange_InCorner_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Orange_InCorner_03_C": { + "slug": "inner-corner-roof-4m", + "icon": "desc-roof-orange-incorner-03-c", + "name": "Inner Corner Roof (4 m)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 4 m", + "className": "Desc_Roof_Orange_InCorner_03_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Orange_OutCorner_01_C": { + "slug": "outer-corner-roof-1m", + "icon": "desc-roof-orange-outcorner-01-c", + "name": "Outer Corner Roof (1 m)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 1 m", + "className": "Desc_Roof_Orange_OutCorner_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Orange_OutCorner_02_C": { + "slug": "outer-corner-roof-2m", + "icon": "desc-roof-orange-outcorner-02-c", + "name": "Outer Corner Roof (2 m)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 2 m", + "className": "Desc_Roof_Orange_OutCorner_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Orange_OutCorner_03_C": { + "slug": "outer-corner-roof-4m", + "icon": "desc-roof-orange-outcorner-03-c", + "name": "Outer Corner Roof (4 m)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 4 m", + "className": "Desc_Roof_Orange_OutCorner_03_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Window_01_C": { + "slug": "flat-roof-window", + "icon": "desc-roof-window-01-c", + "name": "Flat Roof (Window)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x flat", + "className": "Desc_Roof_Window_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Window_02_C": { + "slug": "roof-1m-window", + "icon": "desc-roof-window-02-c", + "name": "Roof (1 m) (Window)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 1 m", + "className": "Desc_Roof_Window_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Window_03_C": { + "slug": "roof-2m-window", + "icon": "desc-roof-window-03-c", + "name": "Roof (2 m) (Window)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 2 m", + "className": "Desc_Roof_Window_03_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Window_04_C": { + "slug": "roof-4m-window", + "icon": "desc-roof-window-04-c", + "name": "Roof (4 m) (Window)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 4 m", + "className": "Desc_Roof_Window_04_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Window_InCorner_01_C": { + "slug": "inner-corner-roof-1m-window", + "icon": "desc-roof-window-incorner-01-c", + "name": "Inner Corner Roof (1 m) (Window)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 1 m", + "className": "Desc_Roof_Window_InCorner_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Window_InCorner_02_C": { + "slug": "inner-corner-roof-2m-window", + "icon": "desc-roof-window-incorner-02-c", + "name": "Inner Corner Roof (2 m) (Window)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 2 m", + "className": "Desc_Roof_Window_InCorner_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Window_InCorner_03_C": { + "slug": "inner-corner-roof-4m-window", + "icon": "desc-roof-window-incorner-03-c", + "name": "Inner Corner Roof (4 m) (Window)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 4 m", + "className": "Desc_Roof_Window_InCorner_03_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Window_OutCorner_01_C": { + "slug": "outer-corner-roof-1m-window", + "icon": "desc-roof-window-outcorner-01-c", + "name": "Outer Corner Roof (1 m) (Window)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 1 m", + "className": "Desc_Roof_Window_OutCorner_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Window_OutCorner_02_C": { + "slug": "outer-corner-roof-2m-window", + "icon": "desc-roof-window-outcorner-02-c", + "name": "Outer Corner Roof (2 m) (Window)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 2 m", + "className": "Desc_Roof_Window_OutCorner_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Window_OutCorner_03_C": { + "slug": "outer-corner-roof-4m-window", + "icon": "desc-roof-window-outcorner-03-c", + "name": "Outer Corner Roof (4 m) (Window)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 4 m", + "className": "Desc_Roof_Window_OutCorner_03_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_A_01_C": { + "slug": "flat-roof-ficsit", + "icon": "desc-roof-a-01-c", + "name": "Flat Roof (FICSIT)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 0.5 m", + "className": "Desc_Roof_A_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_A_02_C": { + "slug": "roof-1m-ficsit", + "icon": "desc-roof-a-02-c", + "name": "Roof (1 m) (FICSIT)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 1 m", + "className": "Desc_Roof_A_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_A_03_C": { + "slug": "roof-2m-ficsit", + "icon": "desc-roof-a-03-c", + "name": "Roof (2 m) (FICSIT)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 2 m", + "className": "Desc_Roof_A_03_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_A_04_C": { + "slug": "roof-4m-ficsit", + "icon": "desc-roof-a-04-c", + "name": "Roof (4 m) (FICSIT)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 4 m", + "className": "Desc_Roof_A_04_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Metal_InCorner_01_C": { + "slug": "inner-corner-roof-1m-metal", + "icon": "desc-roof-metal-incorner-01-c", + "name": "Inner Corner Roof (1 m) (Metal)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 1 m", + "className": "Desc_Roof_Metal_InCorner_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Metal_InCorner_02_C": { + "slug": "inner-corner-roof-2m-metal", + "icon": "desc-roof-metal-incorner-02-c", + "name": "Inner Corner Roof (2 m) (Metal)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 2 m", + "className": "Desc_Roof_Metal_InCorner_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Metal_InCorner_03_C": { + "slug": "inner-corner-roof-4m-metal", + "icon": "desc-roof-metal-incorner-03-c", + "name": "Inner Corner Roof (4 m) (Metal)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 4 m", + "className": "Desc_Roof_Metal_InCorner_03_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Metal_OutCorner_01_C": { + "slug": "outer-corner-roof-1m-metal", + "icon": "desc-roof-metal-outcorner-01-c", + "name": "Outer Corner Roof (1 m) (Metal)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 1 m", + "className": "Desc_Roof_Metal_OutCorner_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Metal_OutCorner_02_C": { + "slug": "outer-corner-roof-2m-metal", + "icon": "desc-roof-metal-outcorner-02-c", + "name": "Outer Corner Roof (2 m) (Metal)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 2 m", + "className": "Desc_Roof_Metal_OutCorner_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Metal_OutCorner_03_C": { + "slug": "outer-corner-roof-4m-metal", + "icon": "desc-roof-metal-outcorner-03-c", + "name": "Outer Corner Roof (4 m) (Metal)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 4 m", + "className": "Desc_Roof_Metal_OutCorner_03_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Tar_01_C": { + "slug": "flat-roof-tar", + "icon": "desc-roof-tar-01-c", + "name": "Flat Roof (Tar)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x flat", + "className": "Desc_Roof_Tar_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Tar_02_C": { + "slug": "roof-1m-tar", + "icon": "desc-roof-tar-02-c", + "name": "Roof (1 m) (Tar)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 1 m", + "className": "Desc_Roof_Tar_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Tar_03_C": { + "slug": "roof-2m-tar", + "icon": "desc-roof-tar-03-c", + "name": "Roof (2 m) (Tar)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 2 m", + "className": "Desc_Roof_Tar_03_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Tar_04_C": { + "slug": "roof-4m-tar", + "icon": "desc-roof-tar-04-c", + "name": "Roof (4 m) (Tar)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 4 m", + "className": "Desc_Roof_Tar_04_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Tar_InCorner_01_C": { + "slug": "inner-corner-roof-1m-tar", + "icon": "desc-roof-tar-incorner-01-c", + "name": "Inner Corner Roof (1 m) (Tar)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 1 m", + "className": "Desc_Roof_Tar_InCorner_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Tar_InCorner_02_C": { + "slug": "inner-corner-roof-2m-tar", + "icon": "desc-roof-tar-incorner-02-c", + "name": "Inner Corner Roof (2 m) (Tar)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 2 m", + "className": "Desc_Roof_Tar_InCorner_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Tar_InCorner_03_C": { + "slug": "inner-corner-roof-4m-tar", + "icon": "desc-roof-tar-incorner-03-c", + "name": "Inner Corner Roof (4 m) (Tar)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 4 m", + "className": "Desc_Roof_Tar_InCorner_03_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Tar_OutCorner_01_C": { + "slug": "outer-corner-roof-1m-tar", + "icon": "desc-roof-tar-outcorner-01-c", + "name": "Outer Corner Roof (1 m) (Tar)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 1 m", + "className": "Desc_Roof_Tar_OutCorner_01_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Tar_OutCorner_02_C": { + "slug": "outer-corner-roof-2m-tar", + "icon": "desc-roof-tar-outcorner-02-c", + "name": "Outer Corner Roof (2 m) (Tar)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 2 m", + "className": "Desc_Roof_Tar_OutCorner_02_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Roof_Tar_OutCorner_03_C": { + "slug": "outer-corner-roof-4m-tar", + "icon": "desc-roof-tar-outcorner-03-c", + "name": "Outer Corner Roof (4 m) (Tar)", + "description": "Snaps to Foundations, Walls, and other Roofs.\n\nSize: 8 m x 4 m", + "className": "Desc_Roof_Tar_OutCorner_03_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PipelineMK2_NoIndicator_C": { + "slug": "clean-pipeline-mk-2", + "icon": "desc-pipelinemk2-noindicator-c", + "name": "Clean Pipeline Mk.2", + "description": "Transports fluids.\nCapacity: 600 m³ of fluid per minute.\n\nCaution: This version of the Pipeline does not feature an external indicator.", + "className": "Desc_PipelineMK2_NoIndicator_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Pipeline_NoIndicator_C": { + "slug": "clean-pipeline-mk-1", + "icon": "desc-pipeline-noindicator-c", + "name": "Clean Pipeline Mk.1", + "description": "Transports fluids.\nCapacity: 300 m³ of fluid per minute.\n\nCaution: This version of the Pipeline does not feature an external indicator.", + "className": "Desc_Pipeline_NoIndicator_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_StorageMedkit_C": { + "slug": "medical-storage-box", + "icon": "desc-storagemedkit-c", + "name": "Medical Storage Box", + "description": "Contains 25 slots for storing large amounts of items.", + "className": "Desc_StorageMedkit_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_LightsControlPanel_C": { + "slug": "light-control-panel", + "icon": "desc-lightscontrolpanel-c", + "name": "Light Control Panel", + "description": "Sections off a series of lights, allowing them to be adjusted as a group.\n\nControls all lights connected to the power grid via the Light Connector (yellow label).\nNote: Other Control Panels and Power Switches interrupt the connection.", + "className": "Desc_LightsControlPanel_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_StandaloneWidgetSign_Small_C": { + "slug": "label-sign-2m", + "icon": "desc-standalonewidgetsign-small-c", + "name": "Label Sign (2 m)", + "description": "Improves factory organization. The colors, icons, background, and text are customizable.\n\nCan be freestanding, placed on Walls, or attached to most buildings, including Storage Containers.\n\nSize: 2 m x 0.5 m", + "className": "Desc_StandaloneWidgetSign_Small_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_StandaloneWidgetSign_SmallVeryWide_C": { + "slug": "label-sign-4m", + "icon": "desc-standalonewidgetsign-smallverywide-c", + "name": "Label Sign (4 m)", + "description": "Improves factory organization. The colors, icons, background, and text are customizable.\n\nCan be freestanding, placed on Walls, or attached to most buildings, including Storage Containers.\n\nSize: 4 m x 0.5 m", + "className": "Desc_StandaloneWidgetSign_SmallVeryWide_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_StandaloneWidgetSign_SmallWide_C": { + "slug": "label-sign-3m", + "icon": "desc-standalonewidgetsign-smallwide-c", + "name": "Label Sign (3 m)", + "description": "Improves factory organization. The colors, icons, background, and text are customizable.\n\nCan be freestanding, placed on Walls, or attached to most buildings, including Storage Containers.\n\nSize: 3 m x 0.5 m", + "className": "Desc_StandaloneWidgetSign_SmallWide_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_StandaloneWidgetSign_Square_Tiny_C": { + "slug": "square-sign-0-5m", + "icon": "desc-standalonewidgetsign-square-tiny-c", + "name": "Square Sign (0.5 m)", + "description": "Improves factory organization. The colors, icons, background, and text are customizable.\n\nCan be freestanding, placed on Walls, or attached to most buildings, including Storage Containers.\n\nSize: 0.5 m x 0.5 m", + "className": "Desc_StandaloneWidgetSign_Square_Tiny_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_FoundationPassthrough_Hypertube_C": { + "slug": "hypertube-floor-hole", + "icon": "desc-foundationpassthrough-hypertube-c", + "name": "Hypertube Floor Hole", + "description": "Attaches to Foundations, allowing Hypertubes to pass through.", + "className": "Desc_FoundationPassthrough_Hypertube_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_StorageHazard_C": { + "slug": "hazard-storage-box", + "icon": "desc-storagehazard-c", + "name": "Hazard Storage Box", + "description": "Contains 25 slots for storing large amounts of items.", + "className": "Desc_StorageHazard_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Pillar_Small_Frame_C": { + "slug": "small-frame-pillar", + "icon": "desc-pillar-small-frame-c", + "name": "Small Frame Pillar", + "description": "Snaps to other Pillars. Can be placed on surfaces like Foundations and Walls.\n\nSize: 2 m x 4 m", + "className": "Desc_Pillar_Small_Frame_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PillarMiddle_Frame_C": { + "slug": "big-frame-pillar", + "icon": "desc-pillarmiddle-frame-c", + "name": "Big Frame Pillar", + "description": "Snaps to other Pillars. Can be placed on surfaces like Foundations and Walls.\n\nSize: 4 m x 4 m", + "className": "Desc_PillarMiddle_Frame_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_StandaloneWidgetSign_Medium_C": { + "slug": "display-sign", + "icon": "desc-standalonewidgetsign-medium-c", + "name": "Display Sign", + "description": "Improves factory organization. The colors, icons, background, and text are customizable.\n\nCan be freestanding, placed on Walls, or attached to most buildings, including Storage Containers.\n\nSize: 2 m x 1 m", + "className": "Desc_StandaloneWidgetSign_Medium_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_StandaloneWidgetSign_Portrait_C": { + "slug": "portrait-sign", + "icon": "desc-standalonewidgetsign-portrait-c", + "name": "Portrait Sign", + "description": "Improves factory organization. The colors, icons, background, and text are customizable.\n\nCan be freestanding, placed on Walls, or attached to most buildings, including Storage Containers.\n\nSize: 2 m x 3 m", + "className": "Desc_StandaloneWidgetSign_Portrait_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_StandaloneWidgetSign_Square_C": { + "slug": "square-sign-2m", + "icon": "desc-standalonewidgetsign-square-c", + "name": "Square Sign (2 m)", + "description": "Improves factory organization. The colors, icons, background, and text are customizable.\n\nCan be freestanding, placed on Walls, or attached to most buildings, including Storage Containers.\n\nSize: 2 m x 2 m", + "className": "Desc_StandaloneWidgetSign_Square_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_StandaloneWidgetSign_Square_Small_C": { + "slug": "square-sign-1m", + "icon": "desc-standalonewidgetsign-square-small-c", + "name": "Square Sign (1 m)", + "description": "Improves factory organization. The colors, icons, background, and text are customizable.\n\nCan be freestanding, placed on Walls, or attached to most buildings, including Storage Containers.\n\nSize: 1 m x 1 m", + "className": "Desc_StandaloneWidgetSign_Square_Small_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_FoundationPassthrough_Lift_C": { + "slug": "conveyor-lift-floor-hole", + "icon": "desc-foundationpassthrough-lift-c", + "name": "Conveyor Lift Floor Hole", + "description": "Attaches to Foundations, allowing Conveyor Lifts to pass through.", + "className": "Desc_FoundationPassthrough_Lift_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Pillar_Small_Concrete_C": { + "slug": "small-concrete-pillar-concrete", + "icon": "desc-pillar-small-concrete-c", + "name": "Small Concrete Pillar (Concrete)", + "description": "Snaps to other Pillars. Can be placed on surfaces like Foundations and Walls.\n\nSize: 2 m x 4 m", + "className": "Desc_Pillar_Small_Concrete_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PillarMiddle_Concrete_C": { + "slug": "big-concrete-pillar-concrete", + "icon": "desc-pillarmiddle-concrete-c", + "name": "Big Concrete Pillar (Concrete)", + "description": "Snaps to other Pillars. Can be placed on surfaces like Foundations and Walls.\n\nSize: 4 m x 4 m", + "className": "Desc_PillarMiddle_Concrete_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_CatwalkCross_C": { + "slug": "catwalk-intersection", + "icon": "desc-catwalkcross-c", + "name": "Catwalk Intersection", + "description": "Snaps to Foundations and other Walkways.\nSpecifically designed for humans to walk on.", + "className": "Desc_CatwalkCross_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_CatwalkRamp_C": { + "slug": "catwalk-ramp", + "icon": "desc-catwalkramp-c", + "name": "Catwalk Ramp", + "description": "Snaps to Foundations and other Walkways.\nSpecifically designed for humans to walk on.", + "className": "Desc_CatwalkRamp_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_CatwalkStairs_C": { + "slug": "catwalk-stairs", + "icon": "desc-catwalkstairs-c", + "name": "Catwalk Stairs", + "description": "Snaps to Foundations and other Walkways.\nSpecifically designed for humans to walk on.", + "className": "Desc_CatwalkStairs_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_CatwalkStraight_C": { + "slug": "straight-catwalk", + "icon": "desc-catwalkstraight-c", + "name": "Straight Catwalk", + "description": "Snaps to Foundations and other Walkways.\nSpecifically designed for humans to walk on.", + "className": "Desc_CatwalkStraight_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_CatwalkT_C": { + "slug": "catwalk-t-junction", + "icon": "desc-catwalkt-c", + "name": "Catwalk T-Junction", + "description": "Snaps to Foundations and other Walkways.\nSpecifically designed for humans to walk on.", + "className": "Desc_CatwalkT_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_CatwalkTurn_C": { + "slug": "catwalk-corner", + "icon": "desc-catwalkturn-c", + "name": "Catwalk Corner", + "description": "Snaps to Foundations and other Walkways.\nSpecifically designed for humans to walk on.", + "className": "Desc_CatwalkTurn_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_StandaloneWidgetSign_Huge_C": { + "slug": "large-billboard", + "icon": "desc-standalonewidgetsign-huge-c", + "name": "Large Billboard", + "description": "Improves factory organization. The colors, icons, background, and text are customizable.\n\nCan be freestanding, placed on Walls, or attached to most buildings, including Storage Containers.\n\nSize: 16 m x 8 m", + "className": "Desc_StandaloneWidgetSign_Huge_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_StandaloneWidgetSign_Large_C": { + "slug": "small-billboard", + "icon": "desc-standalonewidgetsign-large-c", + "name": "Small Billboard", + "description": "Improves factory organization. The colors, icons, background, and text are customizable.\n\nCan be freestanding, placed on Walls, or attached to most buildings, including Storage Containers.\n\nSize: 8 m x 4 m", + "className": "Desc_StandaloneWidgetSign_Large_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Beam_Connector_C": { + "slug": "beam-connector", + "icon": "desc-beam-connector-c", + "name": "Beam Connector", + "description": "Hides seams and makes Beam connections more visually pleasing.", + "className": "Desc_Beam_Connector_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Beam_Connector_Double_C": { + "slug": "double-beam-connector", + "icon": "desc-beam-connector-double-c", + "name": "Double Beam Connector", + "description": "Hides seams and makes Beam connections more visually pleasing.", + "className": "Desc_Beam_Connector_Double_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Beam_Support_C": { + "slug": "beam-support", + "icon": "desc-beam-support-c", + "name": "Beam Support", + "description": "Snaps to Beams and various other structural buildings.\nUsed to aesthetically connect beams to surfaces.", + "className": "Desc_Beam_Support_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_GeneratorBiomass_Automated_C": { + "slug": "biomass-burner", + "icon": "desc-generatorbiomass-automated-c", + "name": "Biomass Burner", + "description": "Burns various forms of Biomass to generate electricity for the power grid.\nHas a Conveyor Belt input port that allows the Biomass supply to be automated.\n\nResource consumption will automatically be lowered to meet power demands.", + "className": "Desc_GeneratorBiomass_Automated_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_SpaceElevator_C": { + "slug": "space-elevator", + "icon": "desc-spaceelevator-c", + "name": "Space Elevator", + "description": "Requires deliveries of special Project Parts to complete Project Assembly Phases.\nCompleting these Phases will unlock new Tiers in the HUB Terminal.", + "className": "Desc_SpaceElevator_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_MinerMk1_C": { + "slug": "miner-mk-1", + "icon": "desc-minermk1-c", + "name": "Miner Mk.1", + "description": "Extracts solid resources from the resource node it is built on. \nDefault extraction rate is 60 resources per minute. \nExtraction rate varies based on resource node purity. Outputs all extracted resources onto connected Conveyor Belts.", + "className": "Desc_MinerMk1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 5, + "powerConsumptionExponent": 1.321929, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_StorageContainerMk1_C": { + "slug": "storage-container", + "icon": "desc-storagecontainermk1-c", + "name": "Storage Container", + "description": "Contains 24 slots for storing large amounts of items.\nHas 1 Conveyor Belt input port and 1 Conveyor Belt output port.", + "className": "Desc_StorageContainerMk1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 1.6, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConstructorMk1_C": { + "slug": "constructor", + "icon": "desc-constructormk1-c", + "name": "Constructor", + "description": "Crafts 1 part into another part.\n\nCan be automated by feeding component parts in via a Conveyor Belt connected to the input port. The resulting parts can be automatically extracted by connecting a Conveyor Belt to the output port.", + "className": "Desc_ConstructorMk1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 4, + "powerConsumptionExponent": 1.321929, + "manufacturingSpeed": 1 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_SmelterMk1_C": { + "slug": "smelter", + "icon": "desc-smeltermk1-c", + "name": "Smelter", + "description": "Smelts ore into ingots.\n\nCan be automated by feeding ore in via a Conveyor Belt connected to the input port. The resulting ingots can be automatically extracted by connecting a Conveyor Belt to the output port.", + "className": "Desc_SmelterMk1_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 4, + "powerConsumptionExponent": 1.321929, + "manufacturingSpeed": 1 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Workshop_C": { + "slug": "equipment-workshop", + "icon": "desc-workshop-c", + "name": "Equipment Workshop", + "description": "Used to manually craft equipment.", + "className": "Desc_Workshop_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConveyorPole_C": { + "slug": "conveyor-pole", + "icon": "desc-conveyorpole-c", + "name": "Conveyor Pole", + "description": "Connects Conveyor Belt segments. Pole height can be adjusted.\nUseful for routing Conveyor Belts more precisely and across long distances.", + "className": "Desc_ConveyorPole_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PipelineSupport_C": { + "slug": "pipeline-support", + "icon": "desc-pipelinesupport-c", + "name": "Pipeline Support", + "description": "Connects Pipeline segments. Support height can be adjusted.\nUseful for routing Pipelines more precisely and across long distances.", + "className": "Desc_PipelineSupport_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PipeSupportStackable_C": { + "slug": "stackable-pipeline-support", + "icon": "desc-pipesupportstackable-c", + "name": "Stackable Pipeline Support", + "description": "Supports Pipelines. Can be stacked on other stackable supports.", + "className": "Desc_PipeSupportStackable_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_HyperPoleStackable_C": { + "slug": "stackable-hypertube-support", + "icon": "desc-hyperpolestackable-c", + "name": "Stackable Hypertube Support", + "description": "Supports Hypertubes. Can be stacked on other stackable supports.", + "className": "Desc_HyperPoleStackable_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_PipeHyperSupport_C": { + "slug": "hypertube-support", + "icon": "desc-pipehypersupport-c", + "name": "Hypertube Support", + "description": "Supports Hypertubes, allowing them to stretch over longer distances.", + "className": "Desc_PipeHyperSupport_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_ConveyorPoleStackable_C": { + "slug": "stackable-conveyor-pole", + "icon": "desc-conveyorpolestackable-c", + "name": "Stackable Conveyor Pole", + "description": "Supports Conveyor Belts. Can be stacked on other stackable supports.", + "className": "Desc_ConveyorPoleStackable_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_DroneTransport_C": { + "slug": "drone", + "icon": "desc-dronetransport-c", + "name": "Drone", + "description": "Transports available input back and forth between its home Port and destination Ports. Drone Status and other details can be viewed at a Drone's home Port.\nMust be built on a Drone Port.\n\nHas 9 inventory slots.\n\nCan use any fuel type.\nRefuels at any of its connected Ports if possible.", + "className": "Desc_DroneTransport_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_FreightWagon_C": { + "slug": "freight-car", + "icon": "desc-freightwagon-c", + "name": "Freight Car", + "description": "Attaches to an Electric Locomotive or other Freight Car to transport resources. Must be built on a Railway.\nResources are loaded and unloaded at Freight Platforms.\nHas a 1600 m³ or 32-slot capacity, depending on whether resources are liquid or solid.", + "className": "Desc_FreightWagon_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Locomotive_C": { + "slug": "electric-locomotive", + "icon": "desc-locomotive-c", + "name": "Electric Locomotive", + "description": "Moves Freight Cars from station to station.\nRequires between 25-110 MW of power to move. \nMust be built on a Railway.\n\nNicknamed 'Leif' by FICSIT pioneers because of its reliability.", + "className": "Desc_Locomotive_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 0, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Truck_C": { + "slug": "truck", + "icon": "desc-truck-c", + "name": "Truck", + "description": "Picks up and delivers resources at Truck Stations. This process can be automated. Nicknamed 'The Unit' by FICSIT pioneers because of its massive frame.\n\nHas 48 inventory slots and a built-in Crafting Bench.\n\nFuel: Any fuel type", + "className": "Desc_Truck_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 75, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Tractor_C": { + "slug": "tractor", + "icon": "desc-tractor-c", + "name": "Tractor", + "description": "Picks up and delivers resources at Truck Stations. This process can be automated. Nicknamed 'Sugarcube' by FICSIT pioneers with the justification “It’s pretty sweet, y’know”.\n\nHas 25 inventory slots and a built-in Crafting Bench.\n\nFuel: Any fuel type", + "className": "Desc_Tractor_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 55, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_Explorer_C": { + "slug": "explorer", + "icon": "desc-explorer-c", + "name": "Explorer", + "description": "Traverses rough terrain, including near-vertical surfaces. A fast and nimble exploration vehicle.\n\nHas 12 inventory slots and a built-in Crafting Bench.\n\nFuel: Any fuel type", + "className": "Desc_Explorer_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 90, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + }, + "Desc_CyberWagon_C": { + "slug": "cyber-wagon", + "icon": "desc-cyberwagon-c", + "name": "Cyber Wagon", + "description": "Absolutely indestructible.\nNeeds no further introduction.", + "className": "Desc_CyberWagon_C", + "categories": [], + "buildMenuPriority": 0, + "metadata": { + "powerConsumption": 150, + "powerConsumptionExponent": 0.0, + "manufacturingSpeed": 0 + }, + "size": { + "width": 0, + "height": 0, + "length": 0 + } + } + } +} \ No newline at end of file diff --git a/package.json b/package.json index 869ea736..13ce28d8 100644 --- a/package.json +++ b/package.json @@ -5,8 +5,9 @@ "author": "greeny", "private": true, "scripts": { - "build": "webpack --mode production", - "start": "webpack --mode development --progress --color --watch", + "build": "export SET NODE_OPTIONS=--openssl-legacy-provider && webpack --mode production", + "buildCI": "webpack --mode production", + "start": "export SET NODE_OPTIONS=--openssl-legacy-provider && webpack --mode development --progress --color --watch", "parseDocs": "ts-node -r tsconfig-paths/register bin/parseDocs.ts", "parsePak": "ts-node -r tsconfig-paths/register bin/parsePak.ts", "generateImages": "ts-node -r tsconfig-paths/register bin/generateImages.ts" @@ -17,9 +18,12 @@ "@types/angular-sanitize": "^1.7.0", "@types/angular-ui-router": "^1.1.40", "@types/axios": "^0.14.0", + "@types/base-64": "^1.0.0", "@types/bootstrap": "^5.1.6", "@types/cytoscape": "^3.19.2", + "@types/file-saver": "^2.0.5", "@types/node": "^16.11.10", + "@types/pako": "^2.0.0", "@types/perfect-scrollbar": "^1.3.0", "@types/sharp": "^0.29.4", "angular-templatecache-loader": "^0.2.0", @@ -48,13 +52,16 @@ "angular-ui-router": "^1.0.25", "angular-ui-sortable": "^0.19.0", "axios": "^0.24.0", + "base-64": "^1.0.0", "bootstrap": "^4.5.3", "cytoscape": "^3.20.0", "cytoscape-elk": "^2.0.2", "cytoscape-html-node": "^2.2.0", "cytoscape-node-html-label": "^1.2.2", "elkjs": "^0.7.1", + "file-saver": "^2.0.5", "jquery": "^3.4.1", + "pako": "^2.1.0", "perfect-scrollbar": "^1.5.0", "popper.js": "^1.16.1", "ui-bootstrap4": "^3.0.6", diff --git a/src/Constants.ts b/src/Constants.ts index 9241ff38..da0e774f 100644 --- a/src/Constants.ts +++ b/src/Constants.ts @@ -23,6 +23,7 @@ export class Constants public static WATER_EXTRACTOR_CLASSNAME = 'Desc_WaterPump_C'; public static WATER_CLASSNAME = 'Desc_Water_C'; public static NUCLEAR_WASTE_CLASSNAME = 'Desc_NuclearWaste_C'; + public static PLUTONIUM_WASTE_CLASSNAME = 'Desc_PlutoniumWaste_C'; public static NUCLEAR_FUEL_ROD_CLASSNAME = 'Desc_NuclearFuelRod_C'; public static GEOTHERMAL_GENERATOR_CLASSNAME = 'Build_GeneratorGeoThermal_C'; diff --git a/src/Data/Data.ts b/src/Data/Data.ts index b89a7762..8d681355 100644 --- a/src/Data/Data.ts +++ b/src/Data/Data.ts @@ -1,5 +1,3 @@ -import rawData from '@data/data.json'; -import rawAprilData from '@data/aprilData.json'; import {IJsonSchema} from '@src/Schema/IJsonSchema'; import {IItemSchema} from '@src/Schema/IItemSchema'; import {IRecipeSchema} from '@src/Schema/IRecipeSchema'; @@ -8,16 +6,16 @@ import {ISchematicSchema} from '@src/Schema/ISchematicSchema'; import {IResourceSchema} from '@src/Schema/IResourceSchema'; import {BuildingTypes} from '@src/Types/BuildingTypes'; import {Constants} from '@src/Constants'; -import {April} from '@src/Utils/April'; +import {DataProvider} from '@src/Data/DataProvider'; export class Data { - public static resourceAmounts = { + public static resourceAmountsU8 = { Desc_OreIron_C: 70380, Desc_OreCopper_C: 28860, Desc_Stone_C: 52860, - Desc_Coal_C: 30900, + Desc_Coal_C: 30120, Desc_OreGold_C: 11040, Desc_LiquidOil_C: 11700, Desc_RawQuartz_C: 10500, @@ -28,24 +26,75 @@ export class Data Desc_Water_C: Number.MAX_SAFE_INTEGER, }; - public static resourceWeights = { - Desc_OreIron_C: 1, - Desc_OreCopper_C: 2.438669438669439, - Desc_Stone_C: 1.3314415437003406, - Desc_Coal_C: 2.277669902912621, - Desc_OreGold_C: 6.375, - Desc_LiquidOil_C: 6.015384615384615, - Desc_RawQuartz_C: 6.702857142857143, - Desc_Sulfur_C: 10.289473684210526, - Desc_OreBauxite_C: 7.196319018404908, - Desc_OreUranium_C: 33.51428571428572, - Desc_NitrogenGas_C: 5.865, - Desc_Water_C: 0, - }; + public static get resourceAmounts() + { + return DataProvider.version === '0.8' ? { + Desc_OreIron_C: 70380, + Desc_OreCopper_C: 28860, + Desc_Stone_C: 52860, + Desc_Coal_C: 30120, + Desc_OreGold_C: 11040, + Desc_LiquidOil_C: 11700, + Desc_RawQuartz_C: 10500, + Desc_Sulfur_C: 6840, + Desc_OreBauxite_C: 9780, + Desc_OreUranium_C: 2100, + Desc_NitrogenGas_C: 12000, + Desc_SAM_C: 0, + Desc_Water_C: Number.MAX_SAFE_INTEGER, + } : { + Desc_OreIron_C: 92100, + Desc_OreCopper_C: 36900, + Desc_Stone_C: 69900, + Desc_Coal_C: 42300, + Desc_OreGold_C: 15000, + Desc_LiquidOil_C: 12600, + Desc_RawQuartz_C: 13500, + Desc_Sulfur_C: 10800, + Desc_OreBauxite_C: 12300, + Desc_OreUranium_C: 2100, + Desc_NitrogenGas_C: 12000, + Desc_SAM_C: 10200, + Desc_Water_C: Number.MAX_SAFE_INTEGER, + }; + } + + public static get resourceWeights() + { + return DataProvider.version === '0.8' ? { + Desc_OreIron_C: 1, + Desc_OreCopper_C: 2.438669438669439, + Desc_Stone_C: 1.3314415437003406, + Desc_Coal_C: 2.277669902912621, + Desc_OreGold_C: 6.375, + Desc_LiquidOil_C: 6.015384615384615, + Desc_RawQuartz_C: 6.702857142857143, + Desc_Sulfur_C: 10.289473684210526, + Desc_OreBauxite_C: 7.196319018404908, + Desc_OreUranium_C: 33.51428571428572, + Desc_NitrogenGas_C: 5.865, + Desc_SAM_C: 10000, + Desc_Water_C: 0, + } : { + Desc_OreIron_C: 1, + Desc_OreCopper_C: 2.4959349593495936, + Desc_Stone_C: 1.3175965665236051, + Desc_Coal_C: 2.1773049645390072, + Desc_OreGold_C: 6.140000000000001, + Desc_LiquidOil_C: 7.30952380952381, + Desc_RawQuartz_C: 6.822222222222222, + Desc_Sulfur_C: 8.527777777777779, + Desc_OreBauxite_C: 7.487804878048781, + Desc_OreUranium_C: 43.85714285714286, + Desc_NitrogenGas_C: 7.675000000000001, + Desc_SAM_C: 9.029411764705882, + Desc_Water_C: 0, + }; + } public getRawData(): IJsonSchema { - return April.isApril() ? rawAprilData as any : rawData as any; + return DataProvider.get(); } public getAllItems(): {[key: string]: IItemSchema} @@ -302,7 +351,7 @@ export class Data if (!this.isBuilding(entity)) { return false; } - return this.getRawData().generators.hasOwnProperty(entity.className.replace('Desc', 'Build')); + return this.getRawData().generators.hasOwnProperty(entity.className); } public isManualManufacturer(entity: BuildingTypes): boolean{ @@ -320,14 +369,8 @@ export class Data if (this.isManualManufacturer(entity)) { return true; } - const acceptableCategories = [ - 'SC_Manufacturers_C', - 'SC_OilProduction_C', - 'SC_Smelters_C', - ]; - return acceptableCategories.filter((acceptableCategory: string) => { - return (entity as IBuildingSchema).categories.indexOf(acceptableCategory) >= 0; - }).length > 0; + + return entity.metadata.manufacturingSpeed !== 0; } public isExtractorBuilding(entity: BuildingTypes): boolean @@ -335,7 +378,7 @@ export class Data if (!this.isBuilding(entity)) { return false; } - return this.getRawData().miners.hasOwnProperty(entity.className.replace('Desc', 'Build')); + return this.getRawData().miners.hasOwnProperty(entity.className); } public getResources(): IResourceSchema[] @@ -347,6 +390,15 @@ export class Data }); } + public getManufacturers(): IBuildingSchema[] + { + return Object.values(this.getRawData().buildings).filter((building) => { + return this.isManufacturerBuilding(building) && !this.isManualManufacturer(building); + }).sort((a, b) => { + return a.name.localeCompare(b.name); + }); + } + } export default new Data; diff --git a/src/Data/DataProvider.ts b/src/Data/DataProvider.ts new file mode 100644 index 00000000..073c1531 --- /dev/null +++ b/src/Data/DataProvider.ts @@ -0,0 +1,32 @@ +import rawData08 from '@data/data.json'; +import rawData10 from '@data/data1.0.json'; +import rawData10Ficsmas from '@data/data1.0-ficsmas.json'; +import {IJsonSchema} from '@src/Schema/IJsonSchema'; +import model from '@src/Data/Model'; + +export class DataProvider +{ + + public static version: string; + private static data: IJsonSchema; + + public static get(): IJsonSchema + { + return DataProvider.data; + } + + public static change(version: string) + { + DataProvider.version = version; + if (version === '0.8') { + DataProvider.data = rawData08; + } else if (version === '1.0') { + DataProvider.data = rawData10; + } else if (version === '1.0-ficsmas') { + DataProvider.data = rawData10Ficsmas; + } + + model.change(DataProvider.data); + } + +} diff --git a/src/Data/Model.ts b/src/Data/Model.ts index ac4ba8bb..4ec9cadc 100644 --- a/src/Data/Model.ts +++ b/src/Data/Model.ts @@ -1,21 +1,30 @@ -import rawData from '@data/data.json'; -import rawAprilData from '@data/aprilData.json'; import {IJsonSchema} from '@src/Schema/IJsonSchema'; import {Item} from '@src/Data/Item'; import {Recipe} from '@src/Data/Recipe'; import {IMinerSchema} from '@src/Schema/IMinerSchema'; import {IItemSchema} from '@src/Schema/IItemSchema'; import {Constants} from '@src/Constants'; -import {April} from '@src/Utils/April'; export class Model { public items: {[key: string]: Item} = {}; public recipes: {[key: string]: Recipe} = {}; + public data: IJsonSchema; - public constructor(public readonly data: IJsonSchema) + public constructor(data?: IJsonSchema) { + if (data) { + this.change(data); + } + } + + public change(data: IJsonSchema): void + { + this.items = {}; + this.recipes = {}; + this.data = data; + for (const k in data.items) { if (data.items.hasOwnProperty(k)) { try { @@ -56,7 +65,7 @@ export class Model for (const l in this.recipes) { if (this.recipes.hasOwnProperty(l) && this.recipes[l].prototype.inMachine) { for (const product of this.recipes[l].products) { - if (product.item === this.items[k] || (includeWaste && k === Constants.NUCLEAR_WASTE_CLASSNAME)) { + if (product.item === this.items[k] || (includeWaste && (k === Constants.NUCLEAR_WASTE_CLASSNAME || k === Constants.PLUTONIUM_WASTE_CLASSNAME))) { items.push(this.items[k]); continue itemLoop; } @@ -75,7 +84,7 @@ export class Model public getInputableItems(): IItemSchema[] { return this.getAutomatableItems(true).filter((item) => { - return !(item.className in this.data.resources) || item.className === Constants.NUCLEAR_WASTE_CLASSNAME; + return !(item.className in this.data.resources) || item.className === Constants.NUCLEAR_WASTE_CLASSNAME || item.className === Constants.PLUTONIUM_WASTE_CLASSNAME; }); } @@ -104,4 +113,4 @@ export class Model } -export default new Model(April.isApril() ? rawAprilData as any : rawData as any); +export default new Model(); diff --git a/src/Export/FileExporter.ts b/src/Export/FileExporter.ts new file mode 100644 index 00000000..3c18c0ed --- /dev/null +++ b/src/Export/FileExporter.ts @@ -0,0 +1,52 @@ +import {IProductionData} from '@src/Tools/Production/IProductionData'; +import * as pako from 'pako'; +import {Strings} from '@src/Utils/Strings'; +import {ProductionTab} from '@src/Tools/Production/ProductionTab'; + +export class FileExporter +{ + + private static version = '0'; + + public static exportTabs(tabs: ProductionTab[]): string + { + const data: {type: string, tabs: IProductionData[]} = { + type: 'tabs', + tabs: [] + }; + + let info = ''; + + for (const tab of tabs) { + data.tabs.push(tab.data); + info += '# - ' + tab.name + '\n'; + } + + let result = '# Satisfactory Tools export (version 1)\n\n# Contains these production lines:\n' + info + '\n'; + + result += FileExporter.version + Strings.base64encode(Strings.bufferToString(pako.deflate(JSON.stringify(data)))); + + result += '\n\n# Exported on ' + new Date().toISOString() + '\n'; + + return result; + } + + public static importTabs(data: string): IProductionData[] + { + data = data.split('\n').map((line) => line.trim()).filter((line) => line !== '' && line.charAt(0) !== '#').join(); + + const version = data.charAt(0); + if (version !== FileExporter.version) { + throw new Error('Invalid version specified: ' + version); + } + const parsed = JSON.parse(pako.inflate(Strings.stringToBuffer(Strings.base64decode(data.substring(1))), {to: 'string'})) + + if (parsed.type !== 'tabs') { + throw new Error('Invalid file type'); + } + + return parsed.tabs; + } + + +} diff --git a/src/Formula.ts b/src/Formula.ts index ed413016..c4837328 100644 --- a/src/Formula.ts +++ b/src/Formula.ts @@ -36,7 +36,7 @@ export class Formula public static calculateFuelConsumption(generator: IGeneratorSchema, fuel: IItemSchema, overclock: number) { - return (((generator.powerProduction / fuel.energyValue) * 60) / (fuel.liquid ? 1000 : 1)) * Math.pow(overclock / 100, 1 / generator.powerProductionExponent); + return ((generator.powerProduction / fuel.energyValue) * 60) * overclock / 100; } public static calculateProductAmountsPerMinute(building: IManufacturerSchema, recipe: IRecipeSchema, recipeProductAmount: number, overclock: number): number diff --git a/src/Module/AppModule.ts b/src/Module/AppModule.ts index 1c779683..3731c495 100644 --- a/src/Module/AppModule.ts +++ b/src/Module/AppModule.ts @@ -1,5 +1,5 @@ -import {ILocationProvider, IModule, ISCEProvider, IScope} from 'angular'; -import {StateParams, UrlRouterProvider} from 'angular-ui-router'; +import {ILocationProvider, IModule, ISCEProvider, IScope, ITimeoutService} from 'angular'; +import {StateService, StateParams, UrlRouterProvider} from 'angular-ui-router'; import {HomeController} from '@src/Module/Controllers/HomeController'; import {AppDirective} from '@src/Module/Directives/AppDirective'; import {ItemController} from '@src/Module/Controllers/ItemController'; @@ -36,6 +36,7 @@ import {SchematicFiltersService} from '@src/Module/Services/SchematicFiltersServ import {SchematicFilterComponent} from '@src/Module/Components/SchematicFilterComponent'; import {SchematicController} from '@src/Module/Controllers/SchematicController'; import {April} from '@src/Utils/April'; +import {DataProvider} from '@src/Data/DataProvider'; export class AppModule { @@ -78,6 +79,25 @@ export class AppModule 'page_top@root': 'applicationBreadcrumbs', }, }, + { + name: 'version', + ncyBreadcrumb: { + label: 'Ver', + }, + parent: 'page_content', + abstract: true, + url: '/{version}?share={shareId}', + params: { + version: { + value: null, + squash: true, + }, + }, + onEnter: ['$stateParams', '$state$', ($stateParams: StateParams, $state$: IAppState) => { + $state$.ncyBreadcrumb = $state$.ncyBreadcrumb || {}; + $state$.ncyBreadcrumb.label = 'Game version: ' + $stateParams.version; + }], + }, { name: 'listing', ncyBreadcrumb: { @@ -85,7 +105,7 @@ export class AppModule }, abstract: true, url: '', - parent: 'page_content', + parent: 'version', views: { 'page_content@root': 'entityListing', }, @@ -326,10 +346,39 @@ export class AppModule }); }, ]); - this.app.run(['$transitions', '$rootScope', ($transitions: any, $rootScope: any) => { + this.app.run(['$transitions', '$rootScope', '$state', '$timeout', ($transitions: any, $rootScope: any, $state: StateService, $timeout: ITimeoutService) => { $rootScope.aprilMode = April.isApril(); $rootScope.aprilModePossible = April.isAprilPossible(); + const path = document.location.pathname; + let v = '0.8'; + if (path.indexOf('/1.0-ficsmas') !== -1) { + v = '1.0-ficsmas'; + } else if (path === '/' || path.indexOf('/1.0') !== -1) { + v = '1.0'; + } + $rootScope.version = v; + DataProvider.change(v); + + $rootScope.changeVersion = (ver: string) => { + document.location.href = document.location.href.replace($rootScope.version, ver); + }; + + $transitions.onStart({}, (transition: ITransitionObject<{version: string, share?: string}>) => { + const version = transition.params().version; + const valid = ['0.8', '1.0', '1.0-ficsmas']; + + let defaultVersion = '0.8'; + if (transition.to().name === 'home') { + defaultVersion = '1.0'; + } + + if (!valid.includes(version)) { + transition.abort(); + $state.go(transition.to().name + '', {...transition.params(), version: defaultVersion}, {location: 'replace', reload: true, inherit: true}); + } + }) + $transitions.onFinish({}, () => { const elements = document.getElementsByClassName('tooltip'); for (const index in elements) { @@ -337,13 +386,28 @@ export class AppModule elements[index].remove(); } } + setTimeout(() => { + $rootScope.version = $state.params.version; + DataProvider.change($state.params.version); + }); }); + + $timeout(() => { + $('#modal').modal({ + backdrop: 'static', + keyboard: false, + }); + }) }]); this.app.filter('number', () => { return AppModule.generateNumberFormattingFunction(); }); + this.app.filter('numberShort', () => { + return AppModule.generateShortNumberFormattingFunction(); + }); + this.app.directive('app', () => { return new AppDirective; }); @@ -422,4 +486,17 @@ export class AppModule }; } + private static generateShortNumberFormattingFunction() + { + return (value: number) => { + if (typeof value === 'undefined') { + return 'NaN'; + } else if (value === ~~value) { + return value; + } else { + return (Number(value)).toFixed(3).replace(/\.?0+$/, ''); + } + }; + } + } diff --git a/src/Module/Components/ExtractorDetailsComponentController.ts b/src/Module/Components/ExtractorDetailsComponentController.ts index 0285bf5a..99878cc1 100644 --- a/src/Module/Components/ExtractorDetailsComponentController.ts +++ b/src/Module/Components/ExtractorDetailsComponentController.ts @@ -48,7 +48,7 @@ export class ExtractorDetailsComponentController public getExtractor(className: string): IMinerSchema { - return data.getRawData().miners[className.replace('Desc', 'Build')]; + return data.getRawData().miners[className]; } public getExtractionValues(building: IBuildingSchema, extractor: IMinerSchema, purity: RESOURCE_PURITY): number diff --git a/src/Module/Components/ExtractorResourcesComponentController.ts b/src/Module/Components/ExtractorResourcesComponentController.ts index 2681f59e..c6b4b13e 100644 --- a/src/Module/Components/ExtractorResourcesComponentController.ts +++ b/src/Module/Components/ExtractorResourcesComponentController.ts @@ -21,7 +21,7 @@ export class ExtractorResourcesComponentController implements IOnInit public $onInit(): void { - this.extractor = data.getRawData().miners[this.building.className.replace('Desc', 'Build')]; + this.extractor = data.getRawData().miners[this.building.className]; this.resources = this.extractor.allowedResources.map((resource: string) => { return data.getRawData().items[resource]; }); diff --git a/src/Module/Components/GeneratorDetailsComponentController.ts b/src/Module/Components/GeneratorDetailsComponentController.ts index f0a6db8a..fd903cf2 100644 --- a/src/Module/Components/GeneratorDetailsComponentController.ts +++ b/src/Module/Components/GeneratorDetailsComponentController.ts @@ -23,12 +23,12 @@ export class GeneratorDetailsComponentController public get powerProduction(): number|undefined { - return this.generator.powerProduction * Math.pow(this.options.overclock / 100, 1 / this.generator.powerProductionExponent); + return this.generator.powerProduction * this.options.overclock / 100; } public getGenerator(className: string): IGeneratorSchema { - return data.getRawData().generators[className.replace('Desc', 'Build')]; + return data.getRawData().generators[className]; } public get canBeOverclocked(): boolean diff --git a/src/Module/Components/GeneratorFuelsComponentController.ts b/src/Module/Components/GeneratorFuelsComponentController.ts index 1f861188..10c0294a 100644 --- a/src/Module/Components/GeneratorFuelsComponentController.ts +++ b/src/Module/Components/GeneratorFuelsComponentController.ts @@ -25,7 +25,7 @@ export class GeneratorFuelsComponentController implements IOnInit public getGenerator(className: string): IGeneratorSchema { - return data.getRawData().generators[className.replace('Desc', 'Build')]; + return data.getRawData().generators[className]; } public $onInit(): void diff --git a/src/Module/Components/ManufacturerDetailsComponentController.ts b/src/Module/Components/ManufacturerDetailsComponentController.ts index 00f0ede7..7dd25c2a 100644 --- a/src/Module/Components/ManufacturerDetailsComponentController.ts +++ b/src/Module/Components/ManufacturerDetailsComponentController.ts @@ -19,6 +19,7 @@ export class ManufacturerDetailsComponentController if (this.building.metadata.powerConsumption && this.building.metadata.powerConsumptionExponent) { return Numbers.round(this.building.metadata.powerConsumption * Math.pow(this.options.overclock / 100, this.building.metadata.powerConsumptionExponent)); } + return 0; } public get minPowerConsumption(): number|undefined diff --git a/src/Module/Components/VisualizationComponentController.ts b/src/Module/Components/VisualizationComponentController.ts index 685d2706..41f806be 100644 --- a/src/Module/Components/VisualizationComponentController.ts +++ b/src/Module/Components/VisualizationComponentController.ts @@ -262,6 +262,9 @@ export class VisualizationComponentController implements IController }, interaction: { tooltipDelay: 0, + zoomSpeed: 0, + zoomView: false, + }, }); } diff --git a/src/Module/Controllers/ProductionController.ts b/src/Module/Controllers/ProductionController.ts index 2b8970d5..a12ceb2c 100644 --- a/src/Module/Controllers/ProductionController.ts +++ b/src/Module/Controllers/ProductionController.ts @@ -4,27 +4,35 @@ import {ILocationService, IScope, ITimeoutService} from 'angular'; import {ProductionTab} from '@src/Tools/Production/ProductionTab'; import {IItemSchema} from '@src/Schema/IItemSchema'; import {Constants} from '@src/Constants'; -import data from '@src/Data/Data'; +import data, {Data} from '@src/Data/Data'; import {IRecipeSchema} from '@src/Schema/IRecipeSchema'; import {IResourceSchema} from '@src/Schema/IResourceSchema'; import {DataStorageService} from '@src/Module/Services/DataStorageService'; import axios from 'axios'; import {IProductionData} from '@src/Tools/Production/IProductionData'; import {IBuildingSchema} from '@src/Schema/IBuildingSchema'; +import {FileExporter} from '@src/Export/FileExporter'; +import {Strings} from '@src/Utils/Strings'; +import {IRootScope} from '@src/Types/IRootScope'; export class ProductionController { + public selectedTabs: ProductionTab[] = []; public tab: ProductionTab|null = null; public tabs: ProductionTab[] = []; public addingInProgress: boolean; public cloningInProgress: boolean; + public importOpen: boolean = false; + public importFiles: File[] = []; + public readonly rawResources: IResourceSchema[] = data.getResources(); public readonly craftableItems: IItemSchema[] = model.getAutomatableItems(); public readonly inputableItems: IItemSchema[] = model.getInputableItems(); public readonly sinkableItems: IItemSchema[] = data.getSinkableItems(); public readonly alternateRecipes: IRecipeSchema[] = data.getAlternateRecipes(); public readonly basicRecipes: IRecipeSchema[] = data.getBaseItemRecipes(); + public readonly machines: IBuildingSchema[] = data.getManufacturers(); public result: string; @@ -33,45 +41,146 @@ export class ProductionController 'maximize': Constants.PRODUCTION_TYPE.MAXIMIZE, }; - public static $inject = ['$scope', '$timeout', 'DataStorageService', '$location']; + public static $inject = ['$scope', '$timeout', 'DataStorageService', '$location', '$rootScope']; + private readonly storageKey: string; public constructor( private readonly scope: IProductionControllerScope, private readonly $timeout: ITimeoutService, private readonly dataStorageService: DataStorageService, private readonly $location: ILocationService, + private readonly $rootScope: IRootScope, ) { + if ($rootScope.version === '1.0') { + this.storageKey = 'production1'; + } else if ($rootScope.version === '1.0-ficsmas') { + this.storageKey = 'production-ficsmas'; + } else { + this.storageKey = 'tmpProduction'; + } + scope.$timeout = $timeout; scope.saveState = () => { this.saveState(); }; this.loadState(); - const query = this.$location.search(); - if ('share' in query) { - axios({ - method: 'GET', - url: 'https://api.satisfactorytools.com/v1/share/' + encodeURIComponent(query.share), - }).then((response) => { - $timeout(0).then(() => { + $timeout(() => { + const query = this.$location.search(); + if ('share' in query) { + axios({ + method: 'GET', + url: 'https://api.satisfactorytools.com/v2/share/' + encodeURIComponent(query.share), + }).then((response) => { + $timeout(0).then(() => { + const tabData: IProductionData = response.data.data; + tabData.metadata.name = 'Shared: ' + tabData.metadata.name; + const tab = new ProductionTab(this.scope, $rootScope.version, tabData); + this.tabs.push(tab); + this.tab = tab; + this.saveState(); + this.$location.search(''); + }); + }).catch(() => { this.$location.search(''); - const tabData: IProductionData = response.data.data; - tabData.metadata.name = 'Shared: ' + tabData.metadata.name; - const tab = new ProductionTab(this.scope, tabData); - this.tabs.push(tab); - this.tab = tab; }); - }).catch(() => { - this.$location.search(''); - }); + } + }); + } + + public toggleImport(): void + { + this.importOpen = !this.importOpen; + } + + public tryImport(): void + { + const input: HTMLInputElement = document.getElementById('importFile') as HTMLInputElement; + const files = input.files as FileList; + + if (files.length === 0) { + return; + } + + const file = files[0]; + const reader = new FileReader(); + reader.readAsText(file, 'utf-8'); + reader.onload = () => { + try { + const tabs = FileExporter.importTabs(reader.result as string); + + for (const tab of tabs) { + if (JSON.stringify(tab.request.resourceMax) === JSON.stringify(Data.resourceAmountsU8)) { + tab.request.resourceMax = Data.resourceAmounts; + } + + if (typeof tab.request.resourceMax.Desc_SAM_C === 'undefined') { + tab.request.resourceMax.Desc_SAM_C = 0; + } + + tab.request.resourceWeight = Data.resourceWeights; + this.tabs.push(new ProductionTab(this.scope, this.$rootScope.version, tab)); + } + + Strings.addNotification('Import complete', 'Successfuly imported ' + tabs.length + ' tab' + (tabs.length === 1 ? '' : 's') + '.'); + this.scope.$apply(); + input.value = ''; + } catch (e) { + Strings.addNotification('ERROR', 'Couldn\'t import file: ' + e.message, 5000); + return; + } + } + } + + public selectAllTabs(): void + { + this.selectedTabs = []; + for (const tab of this.tabs) { + this.selectedTabs.push(tab); + } + } + + public toggleTab(tab: ProductionTab): void + { + const index = this.selectedTabs.indexOf(tab); + if (index === -1) { + this.selectedTabs.push(tab); + } else { + this.selectedTabs.splice(index, 1); + } + } + + public isTabSelected(tab: ProductionTab): boolean + { + return this.selectedTabs.indexOf(tab) !== -1; + } + + public removeSelectedTabs(): void + { + if (this.selectedTabs.length === 0) { + return; + } + if (confirm('Do you really want to remove ' + this.selectedTabs.length + ' tab' + (this.selectedTabs.length > 1 ? 's?' : '?'))) { + for (const tab of this.selectedTabs) { + this.removeTab(tab); + } + this.selectedTabs = []; + } + } + + public exportSelectedTabs(): void + { + if (this.selectedTabs.length === 0) { + return; } + Strings.downloadFile('sftools-export-' + Strings.dateToIso(new Date()) + '.sft', FileExporter.exportTabs(this.selectedTabs)); } public addEmptyTab(): void { this.addingInProgress = true; this.$timeout(0).then(() => { - const tab = new ProductionTab(this.scope); + const tab = new ProductionTab(this.scope, this.$rootScope.version); this.tabs.push(tab); this.tab = tab; this.addingInProgress = false; @@ -83,7 +192,7 @@ export class ProductionController { this.cloningInProgress = true; this.$timeout(0).then(() => { - const clone = new ProductionTab(this.scope); + const clone = new ProductionTab(this.scope, this.$rootScope.version); clone.data.request = angular.copy(tab.data.request); clone.data.metadata.name = 'Clone: ' + clone.data.metadata.name; this.tabs.push(clone); @@ -144,17 +253,17 @@ export class ProductionController for (const tab of this.tabs) { save.push(tab.data); } - this.dataStorageService.saveData('tmpProduction', save); + this.dataStorageService.saveData(this.storageKey, save); } private loadState(): void { - const loaded = this.dataStorageService.loadData('tmpProduction', null); + const loaded = this.dataStorageService.loadData(this.storageKey, null); if (loaded === null) { this.addEmptyTab(); } else { for (const item of loaded) { - this.tabs.push(new ProductionTab(this.scope, item)); + this.tabs.push(new ProductionTab(this.scope, this.$rootScope.version, item)); } if (this.tabs.length) { this.tab = this.tabs[0]; diff --git a/src/Schema/IBuildingSchema.ts b/src/Schema/IBuildingSchema.ts index 554495d2..05a9b46e 100644 --- a/src/Schema/IBuildingSchema.ts +++ b/src/Schema/IBuildingSchema.ts @@ -5,6 +5,7 @@ export interface IBuildingSchema { slug: string; + icon?: string; name: string; description: string; className: string; diff --git a/src/Schema/IItemSchema.ts b/src/Schema/IItemSchema.ts index f4d9e5ec..11b373b2 100644 --- a/src/Schema/IItemSchema.ts +++ b/src/Schema/IItemSchema.ts @@ -4,6 +4,7 @@ export interface IItemSchema { slug: string; + icon?: string; name: string; sinkPoints: number; description: string; diff --git a/src/Schema/ISchematicSchema.ts b/src/Schema/ISchematicSchema.ts index 2d6919ac..da0905eb 100644 --- a/src/Schema/ISchematicSchema.ts +++ b/src/Schema/ISchematicSchema.ts @@ -7,6 +7,7 @@ export interface ISchematicSchema type: string; name: string; slug: string; + icon?: string; cost: IItemAmountSchema[]; unlock: ISchematicUnlockSchema; requiredSchematics: string[]; diff --git a/src/Tools/Production/IProductionData.ts b/src/Tools/Production/IProductionData.ts index e56d8c78..3c0393c3 100644 --- a/src/Tools/Production/IProductionData.ts +++ b/src/Tools/Production/IProductionData.ts @@ -24,6 +24,7 @@ export interface IProductionDataRequest blockedResources: string[]; // whether the raw resource is available for usage or not blockedRecipes: string[]; // whether normal recipe can be used + blockedMachines?: string[]; // which machines are blocked allowedAlternateRecipes: string[]; // whether alt is available or not (doesn't guarantee usage) sinkableResources: string[]; // whether or not you can sink a given resource diff --git a/src/Tools/Production/ProductionTab.ts b/src/Tools/Production/ProductionTab.ts index d58c1e40..c0436bb1 100644 --- a/src/Tools/Production/ProductionTab.ts +++ b/src/Tools/Production/ProductionTab.ts @@ -1,6 +1,5 @@ import angular, {ITimeoutService} from 'angular'; import {Constants} from '@src/Constants'; -import rawData from '@data/data.json'; import data, {Data} from '@src/Data/Data'; import {IProductionControllerScope} from '@src/Module/Controllers/ProductionController'; import axios from 'axios'; @@ -10,9 +9,10 @@ import {Callbacks} from '@src/Utils/Callbacks'; import {IProductionData, IProductionDataApiRequest, IProductionDataRequestInput, IProductionDataRequestItem} from '@src/Tools/Production/IProductionData'; import {ResultStatus} from '@src/Tools/Production/ResultStatus'; import {Solver} from '@src/Solver/Solver'; -import {IJsonSchema} from '@src/Schema/IJsonSchema'; import {ProductionResult} from '@src/Tools/Production/Result/ProductionResult'; import {ProductionResultFactory} from '@src/Tools/Production/Result/ProductionResultFactory'; +import {DataProvider} from '@src/Data/DataProvider'; +import {IRecipeSchema} from '@src/Schema/IRecipeSchema'; export class ProductionTab { @@ -40,12 +40,13 @@ export class ProductionTab public shareLink: string = ''; public resultStatus: ResultStatus = ResultStatus.NO_INPUT; public resultNew: ProductionResult|undefined; + public easter: boolean = false; public data: IProductionData; private readonly unregisterCallback: () => void; private firstRun: boolean = true; - public constructor(private readonly scope: IProductionControllerScope, productionData?: IProductionData) + public constructor(private readonly scope: IProductionControllerScope, private readonly version: string, productionData?: IProductionData) { if (productionData) { this.data = productionData; @@ -54,6 +55,10 @@ export class ProductionTab this.addEmptyProduct(); } + if (typeof this.data.request.blockedMachines === 'undefined') { + this.data.request.blockedMachines = []; + } + this.unregisterCallback = scope.$watch(() => { return this.data.request; }, Callbacks.debounce((newValue, oldValue) => { @@ -61,12 +66,18 @@ export class ProductionTab this.scope.saveState(); this.shareLink = ''; this.calculate(this.scope.$timeout); - }, 300), true); + }, 400), true); } public calculate($timeout?: ITimeoutService): void { let request = false; + this.easter = false; + for (const item of this.data.request.production) { + if (item.item === 'Desc_ColorCartridge_C' && item.amount === 69420) { + this.easter = true; + } + } for (const product of this.data.request.production) { if (product.item && product.amount > 0) { @@ -83,8 +94,52 @@ export class ProductionTab this.resultStatus = ResultStatus.CALCULATING; const calc = () => { - const apiRequest: IProductionDataApiRequest = this.data.request as IProductionDataApiRequest; - apiRequest.gameVersion = '0.5.0'; + const apiRequest: IProductionDataApiRequest = angular.copy(this.data.request) as IProductionDataApiRequest; + switch (this.version) { + case '0.8': + apiRequest.gameVersion = '0.8.0'; + break; + case '1.0-ficsmas': + apiRequest.gameVersion = '1.0.0-ficsmas'; + break; + default: + apiRequest.gameVersion = '1.0.0'; + } + + const blockedMachines = apiRequest.blockedMachines || []; + const allowedAlts: string[] = []; + for (const recipeClass of apiRequest.allowedAlternateRecipes) { + const recipe = data.getRecipeByClassName(recipeClass); + if (recipe) { + let allowed = true; + for (const machineClass of blockedMachines) { + if (recipe.producedIn.indexOf(machineClass) !== -1) { + allowed = false; + } + } + if (allowed) { + allowedAlts.push(recipeClass); + } + } + } + apiRequest.allowedAlternateRecipes = allowedAlts; + + const blockedRecipes: string[] = []; + for (const recipe of data.getBaseItemRecipes()) { + let allowed = apiRequest.blockedRecipes.indexOf(recipe.className) === -1; + for (const machineClass of blockedMachines) { + if (recipe.producedIn.indexOf(machineClass) !== -1) { + allowed = false; + } + } + if (!allowed) { + blockedRecipes.push(recipe.className); + } + } + apiRequest.blockedRecipes = blockedRecipes; + + delete apiRequest.blockedMachines; + Solver.solveProduction(apiRequest, (result) => { const res = () => { let length = 0; @@ -104,7 +159,7 @@ export class ProductionTab } const factory = new ProductionResultFactory; - this.resultNew = factory.create(apiRequest, result, rawData as any as IJsonSchema); + this.resultNew = factory.create(apiRequest, result, DataProvider.get()); this.resultStatus = ResultStatus.RESULT; }; @@ -136,6 +191,7 @@ export class ProductionTab request: { allowedAlternateRecipes: [], blockedRecipes: [], + blockedMachines: [], blockedResources: [], sinkableResources: [], production: [], @@ -174,6 +230,11 @@ export class ProductionTab public copyShareLink(): void { + if (this.easter) { + Strings.copyToClipboard('https://easter.ficsit.app/OptvkwO668wweaMB', 'You\'ve successfully crafted a blueprint for the broken assembly line! You may now proceed to the link that has been copied (just paste it in your browser). You can also copy this link: https://easter.ficsit.app/OptvkwO668wweaMB', 20000); + return; + } + if (this.shareLink) { Strings.copyToClipboard(this.shareLink, 'Link for sharing has been copied to clipboard.'); return; @@ -183,7 +244,7 @@ export class ProductionTab shareData.metadata.icon = this.icon; axios({ method: 'POST', - url: 'https://api.satisfactorytools.com/v1/share', + url: 'https://api.satisfactorytools.com/v2/share/?version=' + this.version, data: shareData, }).then((response) => { this.scope.$timeout(0).then(() => { @@ -347,6 +408,40 @@ export class ProductionTab return this.data.request.blockedRecipes.indexOf(className) === -1; } + public isMachineEnabled(className: string): boolean + { + if (typeof this.data.request.blockedMachines === 'undefined') { + return false; + } + return this.data.request.blockedMachines.indexOf(className) === -1; + } + + public toggleMachine(className: string): void + { + if (typeof this.data.request.blockedMachines === 'undefined') { + return; + } + const index = this.data.request.blockedMachines.indexOf(className); + if (index === -1) { + this.data.request.blockedMachines.push(className); + } else { + this.data.request.blockedMachines.splice(index, 1); + } + } + + public recipeMachineDisabled(recipe: IRecipeSchema): boolean + { + if (typeof this.data.request.blockedMachines === 'undefined') { + return false; + } + for (const madeIn of recipe.producedIn) { + if (this.data.request.blockedMachines.indexOf(madeIn) !== -1) { + return true; + } + } + return false; + } + public convertAlternateRecipeName(name: string): string { return name.replace('Alternate: ', ''); diff --git a/src/Tools/Production/Result/IResultDetails.ts b/src/Tools/Production/Result/IResultDetails.ts index 94baf63d..ecf2f72a 100644 --- a/src/Tools/Production/Result/IResultDetails.ts +++ b/src/Tools/Production/Result/IResultDetails.ts @@ -24,7 +24,9 @@ export interface IResultDetails hasInput: boolean; rawResources: {[key: string]: IRawResourceResultDetails}; output: {[key: string]: number}; + hasOutput: boolean; byproducts: {[key: string]: number}; + hasByproducts: boolean; alternatesNeeded: IRecipeSchema[], } diff --git a/src/Tools/Production/Result/ProductionResult.ts b/src/Tools/Production/Result/ProductionResult.ts index 9ba7672a..162767b0 100644 --- a/src/Tools/Production/Result/ProductionResult.ts +++ b/src/Tools/Production/Result/ProductionResult.ts @@ -44,7 +44,9 @@ export class ProductionResult hasInput: false, rawResources: {}, output: {}, + hasOutput: false, byproducts: {}, + hasByproducts: false, alternatesNeeded: [], }; @@ -261,8 +263,11 @@ export class ProductionResult for (const node of this.graph.nodes) { if (node instanceof ProductNode) { ProductionResult.addProduct(products, node.itemAmount.item, node.itemAmount.amount); + this.details.hasOutput = true; } else if (node instanceof ByproductNode) { ProductionResult.addProduct(byproducts, node.itemAmount.item, node.itemAmount.amount); + this.details.hasByproducts = true; + this.details.hasOutput = true; } } diff --git a/src/Types/IRootScope.ts b/src/Types/IRootScope.ts new file mode 100644 index 00000000..28e43a37 --- /dev/null +++ b/src/Types/IRootScope.ts @@ -0,0 +1,8 @@ +import {IRootScopeService} from 'angular'; + +export interface IRootScope extends IRootScopeService +{ + + version: string; + +} diff --git a/src/Types/ITransitionObject.ts b/src/Types/ITransitionObject.ts index 49a8d46a..719d7f8b 100644 --- a/src/Types/ITransitionObject.ts +++ b/src/Types/ITransitionObject.ts @@ -1,6 +1,10 @@ +import {Ng1StateDeclaration} from 'angular-ui-router'; + export interface ITransitionObject { + abort: () => void; + to: () => Ng1StateDeclaration; params(): T; } diff --git a/src/Utils/Strings.ts b/src/Utils/Strings.ts index 6f164532..5679dc5f 100644 --- a/src/Utils/Strings.ts +++ b/src/Utils/Strings.ts @@ -1,5 +1,7 @@ import {Objects} from '@src/Utils/Objects'; import {Constants} from '@src/Constants'; +import {saveAs} from 'file-saver'; +import * as base64 from 'base-64'; export class Strings { @@ -11,7 +13,7 @@ export class Strings public static readonly SEPARATOR = 'separator'; public static readonly UNKNOWN = 'unknown'; - private static schematicTypes: {[key: string]: string} = { + private static schematicTypes: { [key: string]: string } = { EST_Milestone: 'Milestone', EST_MAM: 'MAM Research', EST_Alternate: 'Alternate recipe', @@ -20,7 +22,7 @@ export class Strings EST_ResourceSink: 'AWESOME Sink', }; - public static formatNumber(num: number|string, decimals: number = 3) + public static formatNumber(num: number | string, decimals: number = 3) { if (typeof num === 'string') { num = parseFloat(num); @@ -33,7 +35,41 @@ export class Strings return name.replace(/[\s|.]+/gi, '-').replace(/[™:]/gi, '').toLowerCase(); } - public static copyToClipboard(text: string, displayNotification: string = ''): boolean + public static stringToBuffer(str: string): ArrayBuffer + { + const stringLength = str.length; + const buffer = new ArrayBuffer(stringLength); + const bufferView = new Uint8Array(buffer); + for (let i = 0; i < stringLength; i++) { + bufferView[i] = str.charCodeAt(i); + } + return buffer; + } + + public static bufferToString(buffer: ArrayBuffer): string + { + return String.fromCharCode.apply(null, Array.from(new Uint16Array(buffer))); + } + + public static downloadFile(filename: string, data: string, type: string = 'text/plain'): void + { + const blob = new Blob([data], { + type: type + ';charset=utf-8', + }) + saveAs(blob, Strings.webalize(filename)); + } + + public static base64encode(str: string): string + { + return base64.encode(str); + } + + public static base64decode(str: string): string + { + return base64.decode(str); + } + + public static copyToClipboard(text: string, displayNotification: string = '', delay: number = 3000): boolean { const textArea = document.createElement('textarea'); textArea.style.position = 'fixed'; @@ -62,20 +98,40 @@ export class Strings document.body.removeChild(textArea); if (displayNotification !== '') { - const toast = document.createElement('div'); - toast.className = 'toast'; - toast.innerHTML = '
Copied
' + - '
' + displayNotification + '
'; - document.getElementById('toasts')?.appendChild(toast); - $(toast).toast({ - delay: 3000, - }); - $(toast).toast('show'); + Strings.addNotification('Copied', displayNotification, delay); } return result; } + public static addNotification(header: string, body: string, delay: number = 3000): void + { + const toast = document.createElement('div'); + toast.className = 'toast'; + toast.innerHTML = '
' + header + '
' + + '
' + body + '
'; + document.getElementById('toasts')?.appendChild(toast); + $(toast).toast({ + delay: delay, + }); + $(toast).toast('show'); + } + + public static dateToIso(date: Date): string + { + return date.getFullYear() + '-' + + Strings.padNum(date.getMonth()) + '-' + + Strings.padNum(date.getDay()) + '-' + + Strings.padNum(date.getHours()) + '-' + + Strings.padNum(date.getMinutes()) + '-' + + Strings.padNum(date.getSeconds()); + } + + public static padNum(num: number, length: number = 2): string + { + return ('' + num).padStart(length, '0'); + } + public static stackSizeFromEnum(size: string): number { switch (size) { diff --git a/styles/production.scss b/styles/production.scss index b937373d..2776377b 100644 --- a/styles/production.scss +++ b/styles/production.scss @@ -242,31 +242,6 @@ $border: 1px solid rgba(0, 0, 0, 0.125); font-size: 20px; } - .alternate-recipe-list { - width: 100%; - - tr:not(.table-row-header):hover { - cursor: pointer; - background-color: $gray-700; - } - - td { - padding: 2px; - .recipe-item { - margin-left: 7px; - - img { - margin-left: 3px; - } - } - } - - td:nth-child(1) { - padding-left: 6px; - width: 28px; - } - } - input { margin-top: 4px; margin-right: 10px; @@ -289,6 +264,36 @@ $border: 1px solid rgba(0, 0, 0, 0.125); } } +.alternate-recipe-list { + width: 100%; + + tr:not(.table-row-header):hover { + cursor: pointer; + background-color: $gray-700; + } + + tr.disabled { + color: $gray-600; + text-decoration: line-through; + } + + td { + padding: 2px; + .recipe-item { + margin-left: 7px; + + img { + margin-left: 3px; + } + } + } + + td:nth-child(1) { + padding-left: 6px; + width: 28px; + } +} + .production-item-picker { .ui-select-toggle, .form-control { background-color: $gray-300; diff --git a/templates/Components/codexComponent.html b/templates/Components/codexComponent.html index 086c36d3..9bdf4a3a 100644 --- a/templates/Components/codexComponent.html +++ b/templates/Components/codexComponent.html @@ -1,11 +1,11 @@
- + {{item.name}} - + {{item.name}} {{ctrl.getSchematicType(item.type)}} diff --git a/templates/Controllers/production.html b/templates/Controllers/production.html index af99d2e4..0e4a6b5a 100644 --- a/templates/Controllers/production.html +++ b/templates/Controllers/production.html @@ -1,23 +1,106 @@

Production

- Each tab is a separate production line. You can have multiple tabs and they will be automatically saved in your browser. You can also share them using the share button or reorganize by dragging them. + Each tab is a separate production line. You can have multiple tabs, and they will be automatically saved in your browser. You can also share them using the share button or reorganize by dragging them.

+
+
+
+ + {{ctrl.selectedTabs.length}} out of {{ctrl.tabs.length}} selected + + + All + None + + + + + + + + + + +
+
+ +
+
+

Production lines

+

+ Select production lines that you want to export (or delete). +

+ + + + + + + +
+ + + + + + + {{tab.name}} + + No production + + + + {{tab.resultNew.details.power.total.average|numberShort}} MW + + + + + {{amount|number}} + + + (byproducts: + + + {{amount|numberShort}} + + ) + +
+
+
+

Import (.sft file)

+ + + Import +
+
+
+
+
+
@@ -87,7 +170,14 @@

Production

Recipes -
@@ -118,3 +118,23 @@
+ + diff --git a/templates/Directives/itemIcon.html b/templates/Directives/itemIcon.html index 11529463..36b6136f 100644 --- a/templates/Directives/itemIcon.html +++ b/templates/Directives/itemIcon.html @@ -4,10 +4,9 @@ diff --git a/www/assets/images/items/a-friend_256.png b/www/assets/images/items/a-friend_256.png deleted file mode 100644 index f3afb648..00000000 Binary files a/www/assets/images/items/a-friend_256.png and /dev/null differ diff --git a/www/assets/images/items/a-friend_64.png b/www/assets/images/items/a-friend_64.png deleted file mode 100644 index a27dea57..00000000 Binary files a/www/assets/images/items/a-friend_64.png and /dev/null differ diff --git a/www/assets/images/items/adaptive-control-unit_256.png b/www/assets/images/items/adaptive-control-unit_256.png deleted file mode 100644 index a277dde5..00000000 Binary files a/www/assets/images/items/adaptive-control-unit_256.png and /dev/null differ diff --git a/www/assets/images/items/adaptive-control-unit_64.png b/www/assets/images/items/adaptive-control-unit_64.png deleted file mode 100644 index 3fe0d0f5..00000000 Binary files a/www/assets/images/items/adaptive-control-unit_64.png and /dev/null differ diff --git a/www/assets/images/items/advanced-aluminum-production_256.png b/www/assets/images/items/advanced-aluminum-production_256.png deleted file mode 100644 index 8fc04297..00000000 Binary files a/www/assets/images/items/advanced-aluminum-production_256.png and /dev/null differ diff --git a/www/assets/images/items/advanced-aluminum-production_64.png b/www/assets/images/items/advanced-aluminum-production_64.png deleted file mode 100644 index fdfe317f..00000000 Binary files a/www/assets/images/items/advanced-aluminum-production_64.png and /dev/null differ diff --git a/www/assets/images/items/advanced-steel-production_256.png b/www/assets/images/items/advanced-steel-production_256.png deleted file mode 100644 index 8fc04297..00000000 Binary files a/www/assets/images/items/advanced-steel-production_256.png and /dev/null differ diff --git a/www/assets/images/items/advanced-steel-production_64.png b/www/assets/images/items/advanced-steel-production_64.png deleted file mode 100644 index fdfe317f..00000000 Binary files a/www/assets/images/items/advanced-steel-production_64.png and /dev/null differ diff --git a/www/assets/images/items/aeronautical-engineering_256.png b/www/assets/images/items/aeronautical-engineering_256.png deleted file mode 100644 index 5af15e0b..00000000 Binary files a/www/assets/images/items/aeronautical-engineering_256.png and /dev/null differ diff --git a/www/assets/images/items/aeronautical-engineering_64.png b/www/assets/images/items/aeronautical-engineering_64.png deleted file mode 100644 index c78faafd..00000000 Binary files a/www/assets/images/items/aeronautical-engineering_64.png and /dev/null differ diff --git a/www/assets/images/items/ai-limiter-1_256.png b/www/assets/images/items/ai-limiter-1_256.png deleted file mode 100644 index 60564a3d..00000000 Binary files a/www/assets/images/items/ai-limiter-1_256.png and /dev/null differ diff --git a/www/assets/images/items/ai-limiter-1_64.png b/www/assets/images/items/ai-limiter-1_64.png deleted file mode 100644 index fed13d46..00000000 Binary files a/www/assets/images/items/ai-limiter-1_64.png and /dev/null differ diff --git a/www/assets/images/items/ai-limiter_256.png b/www/assets/images/items/ai-limiter_256.png deleted file mode 100644 index 43874379..00000000 Binary files a/www/assets/images/items/ai-limiter_256.png and /dev/null differ diff --git a/www/assets/images/items/ai-limiter_64.png b/www/assets/images/items/ai-limiter_64.png deleted file mode 100644 index 19c02e97..00000000 Binary files a/www/assets/images/items/ai-limiter_64.png and /dev/null differ diff --git a/www/assets/images/items/alclad-aluminum-sheet_256.png b/www/assets/images/items/alclad-aluminum-sheet_256.png deleted file mode 100644 index 5798408e..00000000 Binary files a/www/assets/images/items/alclad-aluminum-sheet_256.png and /dev/null differ diff --git a/www/assets/images/items/alclad-aluminum-sheet_64.png b/www/assets/images/items/alclad-aluminum-sheet_64.png deleted file mode 100644 index 9d1857ce..00000000 Binary files a/www/assets/images/items/alclad-aluminum-sheet_64.png and /dev/null differ diff --git a/www/assets/images/items/alien-carapace-1_256.png b/www/assets/images/items/alien-carapace-1_256.png deleted file mode 100644 index 2a60e13b..00000000 Binary files a/www/assets/images/items/alien-carapace-1_256.png and /dev/null differ diff --git a/www/assets/images/items/alien-carapace-1_64.png b/www/assets/images/items/alien-carapace-1_64.png deleted file mode 100644 index 6b1fe398..00000000 Binary files a/www/assets/images/items/alien-carapace-1_64.png and /dev/null differ diff --git a/www/assets/images/items/alien-carapace_256.png b/www/assets/images/items/alien-carapace_256.png deleted file mode 100644 index 23bd7985..00000000 Binary files a/www/assets/images/items/alien-carapace_256.png and /dev/null differ diff --git a/www/assets/images/items/alien-carapace_64.png b/www/assets/images/items/alien-carapace_64.png deleted file mode 100644 index 044c4909..00000000 Binary files a/www/assets/images/items/alien-carapace_64.png and /dev/null differ diff --git a/www/assets/images/items/alien-organs-1_256.png b/www/assets/images/items/alien-organs-1_256.png deleted file mode 100644 index 33e387e5..00000000 Binary files a/www/assets/images/items/alien-organs-1_256.png and /dev/null differ diff --git a/www/assets/images/items/alien-organs-1_64.png b/www/assets/images/items/alien-organs-1_64.png deleted file mode 100644 index 2877a3b9..00000000 Binary files a/www/assets/images/items/alien-organs-1_64.png and /dev/null differ diff --git a/www/assets/images/items/alien-organs_256.png b/www/assets/images/items/alien-organs_256.png deleted file mode 100644 index ac5cbc07..00000000 Binary files a/www/assets/images/items/alien-organs_256.png and /dev/null differ diff --git a/www/assets/images/items/alien-organs_64.png b/www/assets/images/items/alien-organs_64.png deleted file mode 100644 index 889ba01d..00000000 Binary files a/www/assets/images/items/alien-organs_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-adhered-iron-plate_256.png b/www/assets/images/items/alternate-adhered-iron-plate_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-adhered-iron-plate_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-adhered-iron-plate_64.png b/www/assets/images/items/alternate-adhered-iron-plate_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-adhered-iron-plate_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-alclad-casing_256.png b/www/assets/images/items/alternate-alclad-casing_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-alclad-casing_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-alclad-casing_64.png b/www/assets/images/items/alternate-alclad-casing_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-alclad-casing_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-automated-miner_256.png b/www/assets/images/items/alternate-automated-miner_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-automated-miner_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-automated-miner_64.png b/www/assets/images/items/alternate-automated-miner_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-automated-miner_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-automated-speed-wiring_256.png b/www/assets/images/items/alternate-automated-speed-wiring_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-automated-speed-wiring_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-automated-speed-wiring_64.png b/www/assets/images/items/alternate-automated-speed-wiring_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-automated-speed-wiring_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-biocoal_256.png b/www/assets/images/items/alternate-biocoal_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-biocoal_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-biocoal_64.png b/www/assets/images/items/alternate-biocoal_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-biocoal_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-bolted-frame_256.png b/www/assets/images/items/alternate-bolted-frame_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-bolted-frame_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-bolted-frame_64.png b/www/assets/images/items/alternate-bolted-frame_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-bolted-frame_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-bolted-iron-plate_256.png b/www/assets/images/items/alternate-bolted-iron-plate_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-bolted-iron-plate_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-bolted-iron-plate_64.png b/www/assets/images/items/alternate-bolted-iron-plate_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-bolted-iron-plate_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-cast-screw_256.png b/www/assets/images/items/alternate-cast-screw_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-cast-screw_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-cast-screw_64.png b/www/assets/images/items/alternate-cast-screw_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-cast-screw_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-caterium-circuit-board_256.png b/www/assets/images/items/alternate-caterium-circuit-board_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-caterium-circuit-board_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-caterium-circuit-board_64.png b/www/assets/images/items/alternate-caterium-circuit-board_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-caterium-circuit-board_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-caterium-computer_256.png b/www/assets/images/items/alternate-caterium-computer_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-caterium-computer_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-caterium-computer_64.png b/www/assets/images/items/alternate-caterium-computer_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-caterium-computer_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-caterium-wire_256.png b/www/assets/images/items/alternate-caterium-wire_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-caterium-wire_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-caterium-wire_64.png b/www/assets/images/items/alternate-caterium-wire_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-caterium-wire_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-charcoal_256.png b/www/assets/images/items/alternate-charcoal_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-charcoal_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-charcoal_64.png b/www/assets/images/items/alternate-charcoal_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-charcoal_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-cheap-silica_256.png b/www/assets/images/items/alternate-cheap-silica_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-cheap-silica_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-cheap-silica_64.png b/www/assets/images/items/alternate-cheap-silica_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-cheap-silica_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-classic-battery_256.png b/www/assets/images/items/alternate-classic-battery_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-classic-battery_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-classic-battery_64.png b/www/assets/images/items/alternate-classic-battery_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-classic-battery_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-coated-cable_256.png b/www/assets/images/items/alternate-coated-cable_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-coated-cable_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-coated-cable_64.png b/www/assets/images/items/alternate-coated-cable_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-coated-cable_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-coated-iron-canister_256.png b/www/assets/images/items/alternate-coated-iron-canister_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-coated-iron-canister_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-coated-iron-canister_64.png b/www/assets/images/items/alternate-coated-iron-canister_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-coated-iron-canister_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-coated-iron-plate_256.png b/www/assets/images/items/alternate-coated-iron-plate_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-coated-iron-plate_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-coated-iron-plate_64.png b/www/assets/images/items/alternate-coated-iron-plate_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-coated-iron-plate_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-coke-steel-ingot_256.png b/www/assets/images/items/alternate-coke-steel-ingot_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-coke-steel-ingot_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-coke-steel-ingot_64.png b/www/assets/images/items/alternate-coke-steel-ingot_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-coke-steel-ingot_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-compacted-coal_256.png b/www/assets/images/items/alternate-compacted-coal_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-compacted-coal_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-compacted-coal_64.png b/www/assets/images/items/alternate-compacted-coal_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-compacted-coal_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-compacted-steel-ingot_256.png b/www/assets/images/items/alternate-compacted-steel-ingot_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-compacted-steel-ingot_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-compacted-steel-ingot_64.png b/www/assets/images/items/alternate-compacted-steel-ingot_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-compacted-steel-ingot_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-cooling-device_256.png b/www/assets/images/items/alternate-cooling-device_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-cooling-device_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-cooling-device_64.png b/www/assets/images/items/alternate-cooling-device_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-cooling-device_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-copper-alloy-ingot_256.png b/www/assets/images/items/alternate-copper-alloy-ingot_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-copper-alloy-ingot_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-copper-alloy-ingot_64.png b/www/assets/images/items/alternate-copper-alloy-ingot_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-copper-alloy-ingot_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-copper-rotor_256.png b/www/assets/images/items/alternate-copper-rotor_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-copper-rotor_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-copper-rotor_64.png b/www/assets/images/items/alternate-copper-rotor_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-copper-rotor_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-crystal-beacon_256.png b/www/assets/images/items/alternate-crystal-beacon_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-crystal-beacon_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-crystal-beacon_64.png b/www/assets/images/items/alternate-crystal-beacon_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-crystal-beacon_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-crystal-computer_256.png b/www/assets/images/items/alternate-crystal-computer_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-crystal-computer_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-crystal-computer_64.png b/www/assets/images/items/alternate-crystal-computer_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-crystal-computer_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-diluted-fuel_256.png b/www/assets/images/items/alternate-diluted-fuel_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-diluted-fuel_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-diluted-fuel_64.png b/www/assets/images/items/alternate-diluted-fuel_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-diluted-fuel_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-diluted-packaged-fuel_256.png b/www/assets/images/items/alternate-diluted-packaged-fuel_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-diluted-packaged-fuel_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-diluted-packaged-fuel_64.png b/www/assets/images/items/alternate-diluted-packaged-fuel_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-diluted-packaged-fuel_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-electric-motor_256.png b/www/assets/images/items/alternate-electric-motor_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-electric-motor_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-electric-motor_64.png b/www/assets/images/items/alternate-electric-motor_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-electric-motor_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-electrode---aluminum-scrap_256.png b/www/assets/images/items/alternate-electrode---aluminum-scrap_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-electrode---aluminum-scrap_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-electrode---aluminum-scrap_64.png b/www/assets/images/items/alternate-electrode---aluminum-scrap_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-electrode---aluminum-scrap_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-electrode-circuit-board_256.png b/www/assets/images/items/alternate-electrode-circuit-board_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-electrode-circuit-board_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-electrode-circuit-board_64.png b/www/assets/images/items/alternate-electrode-circuit-board_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-electrode-circuit-board_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-electromagnetic-connection-rod_256.png b/www/assets/images/items/alternate-electromagnetic-connection-rod_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-electromagnetic-connection-rod_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-electromagnetic-connection-rod_64.png b/www/assets/images/items/alternate-electromagnetic-connection-rod_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-electromagnetic-connection-rod_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-encased-industrial-pipe_256.png b/www/assets/images/items/alternate-encased-industrial-pipe_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-encased-industrial-pipe_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-encased-industrial-pipe_64.png b/www/assets/images/items/alternate-encased-industrial-pipe_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-encased-industrial-pipe_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-fertile-uranium_256.png b/www/assets/images/items/alternate-fertile-uranium_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-fertile-uranium_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-fertile-uranium_64.png b/www/assets/images/items/alternate-fertile-uranium_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-fertile-uranium_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-fine-black-powder_256.png b/www/assets/images/items/alternate-fine-black-powder_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-fine-black-powder_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-fine-black-powder_64.png b/www/assets/images/items/alternate-fine-black-powder_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-fine-black-powder_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-fine-concrete_256.png b/www/assets/images/items/alternate-fine-concrete_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-fine-concrete_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-fine-concrete_64.png b/www/assets/images/items/alternate-fine-concrete_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-fine-concrete_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-flexible-framework-_256.png b/www/assets/images/items/alternate-flexible-framework-_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-flexible-framework-_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-flexible-framework-_64.png b/www/assets/images/items/alternate-flexible-framework-_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-flexible-framework-_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-fused-quickwire_256.png b/www/assets/images/items/alternate-fused-quickwire_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-fused-quickwire_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-fused-quickwire_64.png b/www/assets/images/items/alternate-fused-quickwire_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-fused-quickwire_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-fused-wire_256.png b/www/assets/images/items/alternate-fused-wire_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-fused-wire_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-fused-wire_64.png b/www/assets/images/items/alternate-fused-wire_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-fused-wire_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-heat-exchanger_256.png b/www/assets/images/items/alternate-heat-exchanger_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-heat-exchanger_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-heat-exchanger_64.png b/www/assets/images/items/alternate-heat-exchanger_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-heat-exchanger_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-heat-fused-frame_256.png b/www/assets/images/items/alternate-heat-fused-frame_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-heat-fused-frame_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-heat-fused-frame_64.png b/www/assets/images/items/alternate-heat-fused-frame_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-heat-fused-frame_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-heavy-encased-frame_256.png b/www/assets/images/items/alternate-heavy-encased-frame_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-heavy-encased-frame_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-heavy-encased-frame_64.png b/www/assets/images/items/alternate-heavy-encased-frame_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-heavy-encased-frame_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-heavy-flexible-frame_256.png b/www/assets/images/items/alternate-heavy-flexible-frame_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-heavy-flexible-frame_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-heavy-flexible-frame_64.png b/www/assets/images/items/alternate-heavy-flexible-frame_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-heavy-flexible-frame_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-heavy-oil-residue_256.png b/www/assets/images/items/alternate-heavy-oil-residue_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-heavy-oil-residue_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-heavy-oil-residue_64.png b/www/assets/images/items/alternate-heavy-oil-residue_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-heavy-oil-residue_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-infused-uranium-cell_256.png b/www/assets/images/items/alternate-infused-uranium-cell_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-infused-uranium-cell_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-infused-uranium-cell_64.png b/www/assets/images/items/alternate-infused-uranium-cell_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-infused-uranium-cell_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-instant-plutonium-cell_256.png b/www/assets/images/items/alternate-instant-plutonium-cell_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-instant-plutonium-cell_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-instant-plutonium-cell_64.png b/www/assets/images/items/alternate-instant-plutonium-cell_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-instant-plutonium-cell_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-instant-scrap_256.png b/www/assets/images/items/alternate-instant-scrap_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-instant-scrap_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-instant-scrap_64.png b/www/assets/images/items/alternate-instant-scrap_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-instant-scrap_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-insulated-cable_256.png b/www/assets/images/items/alternate-insulated-cable_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-insulated-cable_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-insulated-cable_64.png b/www/assets/images/items/alternate-insulated-cable_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-insulated-cable_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-insulated-crystal-oscillator_256.png b/www/assets/images/items/alternate-insulated-crystal-oscillator_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-insulated-crystal-oscillator_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-insulated-crystal-oscillator_64.png b/www/assets/images/items/alternate-insulated-crystal-oscillator_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-insulated-crystal-oscillator_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-iron-alloy-ingot_256.png b/www/assets/images/items/alternate-iron-alloy-ingot_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-iron-alloy-ingot_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-iron-alloy-ingot_64.png b/www/assets/images/items/alternate-iron-alloy-ingot_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-iron-alloy-ingot_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-iron-wire_256.png b/www/assets/images/items/alternate-iron-wire_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-iron-wire_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-iron-wire_64.png b/www/assets/images/items/alternate-iron-wire_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-iron-wire_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-oc-supercomputer_256.png b/www/assets/images/items/alternate-oc-supercomputer_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-oc-supercomputer_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-oc-supercomputer_64.png b/www/assets/images/items/alternate-oc-supercomputer_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-oc-supercomputer_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-plastic-smart-plating_256.png b/www/assets/images/items/alternate-plastic-smart-plating_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-plastic-smart-plating_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-plastic-smart-plating_64.png b/www/assets/images/items/alternate-plastic-smart-plating_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-plastic-smart-plating_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-plutonium-fuel-unit_256.png b/www/assets/images/items/alternate-plutonium-fuel-unit_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-plutonium-fuel-unit_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-plutonium-fuel-unit_64.png b/www/assets/images/items/alternate-plutonium-fuel-unit_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-plutonium-fuel-unit_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-polyester-fabric_256.png b/www/assets/images/items/alternate-polyester-fabric_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-polyester-fabric_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-polyester-fabric_64.png b/www/assets/images/items/alternate-polyester-fabric_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-polyester-fabric_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-polymer-resin_256.png b/www/assets/images/items/alternate-polymer-resin_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-polymer-resin_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-polymer-resin_64.png b/www/assets/images/items/alternate-polymer-resin_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-polymer-resin_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-pure-aluminum-ingot_256.png b/www/assets/images/items/alternate-pure-aluminum-ingot_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-pure-aluminum-ingot_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-pure-aluminum-ingot_64.png b/www/assets/images/items/alternate-pure-aluminum-ingot_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-pure-aluminum-ingot_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-pure-caterium-ingot_256.png b/www/assets/images/items/alternate-pure-caterium-ingot_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-pure-caterium-ingot_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-pure-caterium-ingot_64.png b/www/assets/images/items/alternate-pure-caterium-ingot_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-pure-caterium-ingot_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-pure-copper-ingot_256.png b/www/assets/images/items/alternate-pure-copper-ingot_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-pure-copper-ingot_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-pure-copper-ingot_64.png b/www/assets/images/items/alternate-pure-copper-ingot_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-pure-copper-ingot_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-pure-iron-ingot_256.png b/www/assets/images/items/alternate-pure-iron-ingot_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-pure-iron-ingot_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-pure-iron-ingot_64.png b/www/assets/images/items/alternate-pure-iron-ingot_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-pure-iron-ingot_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-pure-quartz-crystal-_256.png b/www/assets/images/items/alternate-pure-quartz-crystal-_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-pure-quartz-crystal-_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-pure-quartz-crystal-_64.png b/www/assets/images/items/alternate-pure-quartz-crystal-_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-pure-quartz-crystal-_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-quickwire-cable_256.png b/www/assets/images/items/alternate-quickwire-cable_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-quickwire-cable_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-quickwire-cable_64.png b/www/assets/images/items/alternate-quickwire-cable_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-quickwire-cable_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-quickwire-stator_256.png b/www/assets/images/items/alternate-quickwire-stator_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-quickwire-stator_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-quickwire-stator_64.png b/www/assets/images/items/alternate-quickwire-stator_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-quickwire-stator_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-radio-connection-unit_256.png b/www/assets/images/items/alternate-radio-connection-unit_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-radio-connection-unit_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-radio-connection-unit_64.png b/www/assets/images/items/alternate-radio-connection-unit_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-radio-connection-unit_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-radio-control-system_256.png b/www/assets/images/items/alternate-radio-control-system_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-radio-control-system_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-radio-control-system_64.png b/www/assets/images/items/alternate-radio-control-system_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-radio-control-system_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-recycled-plastic_256.png b/www/assets/images/items/alternate-recycled-plastic_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-recycled-plastic_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-recycled-plastic_64.png b/www/assets/images/items/alternate-recycled-plastic_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-recycled-plastic_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-recycled-rubber_256.png b/www/assets/images/items/alternate-recycled-rubber_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-recycled-rubber_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-recycled-rubber_64.png b/www/assets/images/items/alternate-recycled-rubber_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-recycled-rubber_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-rigour-motor_256.png b/www/assets/images/items/alternate-rigour-motor_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-rigour-motor_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-rigour-motor_64.png b/www/assets/images/items/alternate-rigour-motor_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-rigour-motor_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-rubber-concrete_256.png b/www/assets/images/items/alternate-rubber-concrete_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-rubber-concrete_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-rubber-concrete_64.png b/www/assets/images/items/alternate-rubber-concrete_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-rubber-concrete_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-seismic-nobelisk_256.png b/www/assets/images/items/alternate-seismic-nobelisk_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-seismic-nobelisk_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-seismic-nobelisk_64.png b/www/assets/images/items/alternate-seismic-nobelisk_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-seismic-nobelisk_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-silicon-circuit-board_256.png b/www/assets/images/items/alternate-silicon-circuit-board_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-silicon-circuit-board_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-silicon-circuit-board_64.png b/www/assets/images/items/alternate-silicon-circuit-board_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-silicon-circuit-board_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-silicon-high-speed-connector_256.png b/www/assets/images/items/alternate-silicon-high-speed-connector_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-silicon-high-speed-connector_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-silicon-high-speed-connector_64.png b/www/assets/images/items/alternate-silicon-high-speed-connector_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-silicon-high-speed-connector_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-sloppy-alumina_256.png b/www/assets/images/items/alternate-sloppy-alumina_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-sloppy-alumina_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-sloppy-alumina_64.png b/www/assets/images/items/alternate-sloppy-alumina_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-sloppy-alumina_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-solid-steel-ingot_256.png b/www/assets/images/items/alternate-solid-steel-ingot_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-solid-steel-ingot_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-solid-steel-ingot_64.png b/www/assets/images/items/alternate-solid-steel-ingot_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-solid-steel-ingot_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-steamed-copper-sheet-_256.png b/www/assets/images/items/alternate-steamed-copper-sheet-_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-steamed-copper-sheet-_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-steamed-copper-sheet-_64.png b/www/assets/images/items/alternate-steamed-copper-sheet-_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-steamed-copper-sheet-_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-steel-canister_256.png b/www/assets/images/items/alternate-steel-canister_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-steel-canister_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-steel-canister_64.png b/www/assets/images/items/alternate-steel-canister_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-steel-canister_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-steel-coated-plate_256.png b/www/assets/images/items/alternate-steel-coated-plate_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-steel-coated-plate_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-steel-coated-plate_64.png b/www/assets/images/items/alternate-steel-coated-plate_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-steel-coated-plate_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-steel-rod_256.png b/www/assets/images/items/alternate-steel-rod_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-steel-rod_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-steel-rod_64.png b/www/assets/images/items/alternate-steel-rod_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-steel-rod_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-steel-rotor_256.png b/www/assets/images/items/alternate-steel-rotor_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-steel-rotor_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-steel-rotor_64.png b/www/assets/images/items/alternate-steel-rotor_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-steel-rotor_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-steel-screw_256.png b/www/assets/images/items/alternate-steel-screw_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-steel-screw_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-steel-screw_64.png b/www/assets/images/items/alternate-steel-screw_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-steel-screw_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-steeled-frame_256.png b/www/assets/images/items/alternate-steeled-frame_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-steeled-frame_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-steeled-frame_64.png b/www/assets/images/items/alternate-steeled-frame_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-steeled-frame_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-stitched-iron-plate_256.png b/www/assets/images/items/alternate-stitched-iron-plate_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-stitched-iron-plate_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-stitched-iron-plate_64.png b/www/assets/images/items/alternate-stitched-iron-plate_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-stitched-iron-plate_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-super-state-computer_256.png b/www/assets/images/items/alternate-super-state-computer_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-super-state-computer_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-super-state-computer_64.png b/www/assets/images/items/alternate-super-state-computer_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-super-state-computer_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-turbo-blend-fuel_256.png b/www/assets/images/items/alternate-turbo-blend-fuel_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-turbo-blend-fuel_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-turbo-blend-fuel_64.png b/www/assets/images/items/alternate-turbo-blend-fuel_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-turbo-blend-fuel_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-turbo-electric-motor_256.png b/www/assets/images/items/alternate-turbo-electric-motor_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-turbo-electric-motor_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-turbo-electric-motor_64.png b/www/assets/images/items/alternate-turbo-electric-motor_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-turbo-electric-motor_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-turbo-heavy-fuel_256.png b/www/assets/images/items/alternate-turbo-heavy-fuel_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-turbo-heavy-fuel_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-turbo-heavy-fuel_64.png b/www/assets/images/items/alternate-turbo-heavy-fuel_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-turbo-heavy-fuel_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-turbo-pressure-motor_256.png b/www/assets/images/items/alternate-turbo-pressure-motor_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-turbo-pressure-motor_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-turbo-pressure-motor_64.png b/www/assets/images/items/alternate-turbo-pressure-motor_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-turbo-pressure-motor_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-turbofuel_256.png b/www/assets/images/items/alternate-turbofuel_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-turbofuel_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-turbofuel_64.png b/www/assets/images/items/alternate-turbofuel_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-turbofuel_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-uranium-fuel-unit_256.png b/www/assets/images/items/alternate-uranium-fuel-unit_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-uranium-fuel-unit_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-uranium-fuel-unit_64.png b/www/assets/images/items/alternate-uranium-fuel-unit_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-uranium-fuel-unit_64.png and /dev/null differ diff --git a/www/assets/images/items/alternate-wet-concrete_256.png b/www/assets/images/items/alternate-wet-concrete_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/alternate-wet-concrete_256.png and /dev/null differ diff --git a/www/assets/images/items/alternate-wet-concrete_64.png b/www/assets/images/items/alternate-wet-concrete_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/alternate-wet-concrete_64.png and /dev/null differ diff --git a/www/assets/images/items/alternative-fluid-transport_256.png b/www/assets/images/items/alternative-fluid-transport_256.png deleted file mode 100644 index 20750335..00000000 Binary files a/www/assets/images/items/alternative-fluid-transport_256.png and /dev/null differ diff --git a/www/assets/images/items/alternative-fluid-transport_64.png b/www/assets/images/items/alternative-fluid-transport_64.png deleted file mode 100644 index f6534c7c..00000000 Binary files a/www/assets/images/items/alternative-fluid-transport_64.png and /dev/null differ diff --git a/www/assets/images/items/alumina-solution_256.png b/www/assets/images/items/alumina-solution_256.png deleted file mode 100644 index 94db814a..00000000 Binary files a/www/assets/images/items/alumina-solution_256.png and /dev/null differ diff --git a/www/assets/images/items/alumina-solution_64.png b/www/assets/images/items/alumina-solution_64.png deleted file mode 100644 index 3da2f457..00000000 Binary files a/www/assets/images/items/alumina-solution_64.png and /dev/null differ diff --git a/www/assets/images/items/aluminum-casing_256.png b/www/assets/images/items/aluminum-casing_256.png deleted file mode 100644 index 92645322..00000000 Binary files a/www/assets/images/items/aluminum-casing_256.png and /dev/null differ diff --git a/www/assets/images/items/aluminum-casing_64.png b/www/assets/images/items/aluminum-casing_64.png deleted file mode 100644 index 5e8008d6..00000000 Binary files a/www/assets/images/items/aluminum-casing_64.png and /dev/null differ diff --git a/www/assets/images/items/aluminum-ingot_256.png b/www/assets/images/items/aluminum-ingot_256.png deleted file mode 100644 index 6c0eb30d..00000000 Binary files a/www/assets/images/items/aluminum-ingot_256.png and /dev/null differ diff --git a/www/assets/images/items/aluminum-ingot_64.png b/www/assets/images/items/aluminum-ingot_64.png deleted file mode 100644 index bceae31d..00000000 Binary files a/www/assets/images/items/aluminum-ingot_64.png and /dev/null differ diff --git a/www/assets/images/items/aluminum-scrap_256.png b/www/assets/images/items/aluminum-scrap_256.png deleted file mode 100644 index 28081b82..00000000 Binary files a/www/assets/images/items/aluminum-scrap_256.png and /dev/null differ diff --git a/www/assets/images/items/aluminum-scrap_64.png b/www/assets/images/items/aluminum-scrap_64.png deleted file mode 100644 index b132117a..00000000 Binary files a/www/assets/images/items/aluminum-scrap_64.png and /dev/null differ diff --git a/www/assets/images/items/arrow-patterns_256.png b/www/assets/images/items/arrow-patterns_256.png deleted file mode 100644 index e2aa0d1a..00000000 Binary files a/www/assets/images/items/arrow-patterns_256.png and /dev/null differ diff --git a/www/assets/images/items/arrow-patterns_64.png b/www/assets/images/items/arrow-patterns_64.png deleted file mode 100644 index 9c90303a..00000000 Binary files a/www/assets/images/items/arrow-patterns_64.png and /dev/null differ diff --git a/www/assets/images/items/asphalt-foundation-material_256.png b/www/assets/images/items/asphalt-foundation-material_256.png deleted file mode 100644 index cfd676b5..00000000 Binary files a/www/assets/images/items/asphalt-foundation-material_256.png and /dev/null differ diff --git a/www/assets/images/items/asphalt-foundation-material_64.png b/www/assets/images/items/asphalt-foundation-material_64.png deleted file mode 100644 index 2530289f..00000000 Binary files a/www/assets/images/items/asphalt-foundation-material_64.png and /dev/null differ diff --git a/www/assets/images/items/assembler_256.png b/www/assets/images/items/assembler_256.png deleted file mode 100644 index 72197c9e..00000000 Binary files a/www/assets/images/items/assembler_256.png and /dev/null differ diff --git a/www/assets/images/items/assembler_64.png b/www/assets/images/items/assembler_64.png deleted file mode 100644 index 53810d9c..00000000 Binary files a/www/assets/images/items/assembler_64.png and /dev/null differ diff --git a/www/assets/images/items/assembly-director-system_256.png b/www/assets/images/items/assembly-director-system_256.png deleted file mode 100644 index 161eba64..00000000 Binary files a/www/assets/images/items/assembly-director-system_256.png and /dev/null differ diff --git a/www/assets/images/items/assembly-director-system_64.png b/www/assets/images/items/assembly-director-system_64.png deleted file mode 100644 index ec3f7ed3..00000000 Binary files a/www/assets/images/items/assembly-director-system_64.png and /dev/null differ diff --git a/www/assets/images/items/automated-gate_256.png b/www/assets/images/items/automated-gate_256.png deleted file mode 100644 index 030ac2c6..00000000 Binary files a/www/assets/images/items/automated-gate_256.png and /dev/null differ diff --git a/www/assets/images/items/automated-gate_64.png b/www/assets/images/items/automated-gate_64.png deleted file mode 100644 index 9d7a5fad..00000000 Binary files a/www/assets/images/items/automated-gate_64.png and /dev/null differ diff --git a/www/assets/images/items/automated-wiring_256.png b/www/assets/images/items/automated-wiring_256.png deleted file mode 100644 index b488de8e..00000000 Binary files a/www/assets/images/items/automated-wiring_256.png and /dev/null differ diff --git a/www/assets/images/items/automated-wiring_64.png b/www/assets/images/items/automated-wiring_64.png deleted file mode 100644 index 39b25d29..00000000 Binary files a/www/assets/images/items/automated-wiring_64.png and /dev/null differ diff --git a/www/assets/images/items/awesome-shop_256.png b/www/assets/images/items/awesome-shop_256.png deleted file mode 100644 index cac28351..00000000 Binary files a/www/assets/images/items/awesome-shop_256.png and /dev/null differ diff --git a/www/assets/images/items/awesome-shop_64.png b/www/assets/images/items/awesome-shop_64.png deleted file mode 100644 index c8220ff2..00000000 Binary files a/www/assets/images/items/awesome-shop_64.png and /dev/null differ diff --git a/www/assets/images/items/awesome-sink_256.png b/www/assets/images/items/awesome-sink_256.png deleted file mode 100644 index 28fbbf3c..00000000 Binary files a/www/assets/images/items/awesome-sink_256.png and /dev/null differ diff --git a/www/assets/images/items/awesome-sink_64.png b/www/assets/images/items/awesome-sink_64.png deleted file mode 100644 index 8e40444a..00000000 Binary files a/www/assets/images/items/awesome-sink_64.png and /dev/null differ diff --git a/www/assets/images/items/bacon-agaric-1_256.png b/www/assets/images/items/bacon-agaric-1_256.png deleted file mode 100644 index 8f8298f5..00000000 Binary files a/www/assets/images/items/bacon-agaric-1_256.png and /dev/null differ diff --git a/www/assets/images/items/bacon-agaric-1_64.png b/www/assets/images/items/bacon-agaric-1_64.png deleted file mode 100644 index bcc9ecf5..00000000 Binary files a/www/assets/images/items/bacon-agaric-1_64.png and /dev/null differ diff --git a/www/assets/images/items/bacon-agaric_256.png b/www/assets/images/items/bacon-agaric_256.png deleted file mode 100644 index e50616d9..00000000 Binary files a/www/assets/images/items/bacon-agaric_256.png and /dev/null differ diff --git a/www/assets/images/items/bacon-agaric_64.png b/www/assets/images/items/bacon-agaric_64.png deleted file mode 100644 index bba115c9..00000000 Binary files a/www/assets/images/items/bacon-agaric_64.png and /dev/null differ diff --git a/www/assets/images/items/base-building_256.png b/www/assets/images/items/base-building_256.png deleted file mode 100644 index ac57fe00..00000000 Binary files a/www/assets/images/items/base-building_256.png and /dev/null differ diff --git a/www/assets/images/items/base-building_64.png b/www/assets/images/items/base-building_64.png deleted file mode 100644 index 8c0fe367..00000000 Binary files a/www/assets/images/items/base-building_64.png and /dev/null differ diff --git a/www/assets/images/items/basic-steel-production_256.png b/www/assets/images/items/basic-steel-production_256.png deleted file mode 100644 index 8fc04297..00000000 Binary files a/www/assets/images/items/basic-steel-production_256.png and /dev/null differ diff --git a/www/assets/images/items/basic-steel-production_64.png b/www/assets/images/items/basic-steel-production_64.png deleted file mode 100644 index fdfe317f..00000000 Binary files a/www/assets/images/items/basic-steel-production_64.png and /dev/null differ diff --git a/www/assets/images/items/basic-wall-1m-1_256.png b/www/assets/images/items/basic-wall-1m-1_256.png deleted file mode 100644 index 7befa2f4..00000000 Binary files a/www/assets/images/items/basic-wall-1m-1_256.png and /dev/null differ diff --git a/www/assets/images/items/basic-wall-1m-1_64.png b/www/assets/images/items/basic-wall-1m-1_64.png deleted file mode 100644 index b672e941..00000000 Binary files a/www/assets/images/items/basic-wall-1m-1_64.png and /dev/null differ diff --git a/www/assets/images/items/basic-wall-1m-concrete_256.png b/www/assets/images/items/basic-wall-1m-concrete_256.png deleted file mode 100644 index 952b0b3d..00000000 Binary files a/www/assets/images/items/basic-wall-1m-concrete_256.png and /dev/null differ diff --git a/www/assets/images/items/basic-wall-1m-concrete_64.png b/www/assets/images/items/basic-wall-1m-concrete_64.png deleted file mode 100644 index a18fade1..00000000 Binary files a/www/assets/images/items/basic-wall-1m-concrete_64.png and /dev/null differ diff --git a/www/assets/images/items/basic-wall-1m-steel_256.png b/www/assets/images/items/basic-wall-1m-steel_256.png deleted file mode 100644 index 7fde12e3..00000000 Binary files a/www/assets/images/items/basic-wall-1m-steel_256.png and /dev/null differ diff --git a/www/assets/images/items/basic-wall-1m-steel_64.png b/www/assets/images/items/basic-wall-1m-steel_64.png deleted file mode 100644 index f571f909..00000000 Binary files a/www/assets/images/items/basic-wall-1m-steel_64.png and /dev/null differ diff --git a/www/assets/images/items/basic-wall-1m_256.png b/www/assets/images/items/basic-wall-1m_256.png deleted file mode 100644 index 7befa2f4..00000000 Binary files a/www/assets/images/items/basic-wall-1m_256.png and /dev/null differ diff --git a/www/assets/images/items/basic-wall-1m_64.png b/www/assets/images/items/basic-wall-1m_64.png deleted file mode 100644 index 8e96a634..00000000 Binary files a/www/assets/images/items/basic-wall-1m_64.png and /dev/null differ diff --git a/www/assets/images/items/basic-wall-4m-1_256.png b/www/assets/images/items/basic-wall-4m-1_256.png deleted file mode 100644 index b7273ef9..00000000 Binary files a/www/assets/images/items/basic-wall-4m-1_256.png and /dev/null differ diff --git a/www/assets/images/items/basic-wall-4m-1_64.png b/www/assets/images/items/basic-wall-4m-1_64.png deleted file mode 100644 index a26fd4d6..00000000 Binary files a/www/assets/images/items/basic-wall-4m-1_64.png and /dev/null differ diff --git a/www/assets/images/items/basic-wall-4m-concrete_256.png b/www/assets/images/items/basic-wall-4m-concrete_256.png deleted file mode 100644 index b7273ef9..00000000 Binary files a/www/assets/images/items/basic-wall-4m-concrete_256.png and /dev/null differ diff --git a/www/assets/images/items/basic-wall-4m-concrete_64.png b/www/assets/images/items/basic-wall-4m-concrete_64.png deleted file mode 100644 index 26cf8eac..00000000 Binary files a/www/assets/images/items/basic-wall-4m-concrete_64.png and /dev/null differ diff --git a/www/assets/images/items/basic-wall-4m-steel_256.png b/www/assets/images/items/basic-wall-4m-steel_256.png deleted file mode 100644 index 2bd5e10d..00000000 Binary files a/www/assets/images/items/basic-wall-4m-steel_256.png and /dev/null differ diff --git a/www/assets/images/items/basic-wall-4m-steel_64.png b/www/assets/images/items/basic-wall-4m-steel_64.png deleted file mode 100644 index 8450cedd..00000000 Binary files a/www/assets/images/items/basic-wall-4m-steel_64.png and /dev/null differ diff --git a/www/assets/images/items/basic-wall-4m_256.png b/www/assets/images/items/basic-wall-4m_256.png deleted file mode 100644 index cb277c57..00000000 Binary files a/www/assets/images/items/basic-wall-4m_256.png and /dev/null differ diff --git a/www/assets/images/items/basic-wall-4m_64.png b/www/assets/images/items/basic-wall-4m_64.png deleted file mode 100644 index 08adcf1b..00000000 Binary files a/www/assets/images/items/basic-wall-4m_64.png and /dev/null differ diff --git a/www/assets/images/items/battery_256.png b/www/assets/images/items/battery_256.png deleted file mode 100644 index 9c5dd6a4..00000000 Binary files a/www/assets/images/items/battery_256.png and /dev/null differ diff --git a/www/assets/images/items/battery_64.png b/www/assets/images/items/battery_64.png deleted file mode 100644 index 682b860d..00000000 Binary files a/www/assets/images/items/battery_64.png and /dev/null differ diff --git a/www/assets/images/items/bauxite-refinement_256.png b/www/assets/images/items/bauxite-refinement_256.png deleted file mode 100644 index 8fc04297..00000000 Binary files a/www/assets/images/items/bauxite-refinement_256.png and /dev/null differ diff --git a/www/assets/images/items/bauxite-refinement_64.png b/www/assets/images/items/bauxite-refinement_64.png deleted file mode 100644 index fdfe317f..00000000 Binary files a/www/assets/images/items/bauxite-refinement_64.png and /dev/null differ diff --git a/www/assets/images/items/bauxite_256.png b/www/assets/images/items/bauxite_256.png deleted file mode 100644 index b03e4099..00000000 Binary files a/www/assets/images/items/bauxite_256.png and /dev/null differ diff --git a/www/assets/images/items/bauxite_64.png b/www/assets/images/items/bauxite_64.png deleted file mode 100644 index 1110a2fd..00000000 Binary files a/www/assets/images/items/bauxite_64.png and /dev/null differ diff --git a/www/assets/images/items/beacon_256.png b/www/assets/images/items/beacon_256.png deleted file mode 100644 index 0c436ec8..00000000 Binary files a/www/assets/images/items/beacon_256.png and /dev/null differ diff --git a/www/assets/images/items/beacon_64.png b/www/assets/images/items/beacon_64.png deleted file mode 100644 index 8b4268b1..00000000 Binary files a/www/assets/images/items/beacon_64.png and /dev/null differ diff --git a/www/assets/images/items/beam-connector-double_256.png b/www/assets/images/items/beam-connector-double_256.png deleted file mode 100644 index 28965db0..00000000 Binary files a/www/assets/images/items/beam-connector-double_256.png and /dev/null differ diff --git a/www/assets/images/items/beam-connector-double_64.png b/www/assets/images/items/beam-connector-double_64.png deleted file mode 100644 index 1966b084..00000000 Binary files a/www/assets/images/items/beam-connector-double_64.png and /dev/null differ diff --git a/www/assets/images/items/beam-connector_256.png b/www/assets/images/items/beam-connector_256.png deleted file mode 100644 index c00f38e7..00000000 Binary files a/www/assets/images/items/beam-connector_256.png and /dev/null differ diff --git a/www/assets/images/items/beam-connector_64.png b/www/assets/images/items/beam-connector_64.png deleted file mode 100644 index 64dd05e6..00000000 Binary files a/www/assets/images/items/beam-connector_64.png and /dev/null differ diff --git a/www/assets/images/items/beam-support_256.png b/www/assets/images/items/beam-support_256.png deleted file mode 100644 index dd856c57..00000000 Binary files a/www/assets/images/items/beam-support_256.png and /dev/null differ diff --git a/www/assets/images/items/beam-support_64.png b/www/assets/images/items/beam-support_64.png deleted file mode 100644 index de60caf5..00000000 Binary files a/www/assets/images/items/beam-support_64.png and /dev/null differ diff --git a/www/assets/images/items/beryl-nut-1_256.png b/www/assets/images/items/beryl-nut-1_256.png deleted file mode 100644 index 7aafe4f5..00000000 Binary files a/www/assets/images/items/beryl-nut-1_256.png and /dev/null differ diff --git a/www/assets/images/items/beryl-nut-1_64.png b/www/assets/images/items/beryl-nut-1_64.png deleted file mode 100644 index ab451df8..00000000 Binary files a/www/assets/images/items/beryl-nut-1_64.png and /dev/null differ diff --git a/www/assets/images/items/beryl-nut_256.png b/www/assets/images/items/beryl-nut_256.png deleted file mode 100644 index c69d40be..00000000 Binary files a/www/assets/images/items/beryl-nut_256.png and /dev/null differ diff --git a/www/assets/images/items/beryl-nut_64.png b/www/assets/images/items/beryl-nut_64.png deleted file mode 100644 index 4d007c05..00000000 Binary files a/www/assets/images/items/beryl-nut_64.png and /dev/null differ diff --git a/www/assets/images/items/big-concrete-pillar-concrete_256.png b/www/assets/images/items/big-concrete-pillar-concrete_256.png deleted file mode 100644 index 9a6d6afb..00000000 Binary files a/www/assets/images/items/big-concrete-pillar-concrete_256.png and /dev/null differ diff --git a/www/assets/images/items/big-concrete-pillar-concrete_64.png b/www/assets/images/items/big-concrete-pillar-concrete_64.png deleted file mode 100644 index 74eaef81..00000000 Binary files a/www/assets/images/items/big-concrete-pillar-concrete_64.png and /dev/null differ diff --git a/www/assets/images/items/big-concrete-pillar_256.png b/www/assets/images/items/big-concrete-pillar_256.png deleted file mode 100644 index 9a6d6afb..00000000 Binary files a/www/assets/images/items/big-concrete-pillar_256.png and /dev/null differ diff --git a/www/assets/images/items/big-concrete-pillar_64.png b/www/assets/images/items/big-concrete-pillar_64.png deleted file mode 100644 index b3597826..00000000 Binary files a/www/assets/images/items/big-concrete-pillar_64.png and /dev/null differ diff --git a/www/assets/images/items/big-frame-pillar_256.png b/www/assets/images/items/big-frame-pillar_256.png deleted file mode 100644 index a7246aab..00000000 Binary files a/www/assets/images/items/big-frame-pillar_256.png and /dev/null differ diff --git a/www/assets/images/items/big-frame-pillar_64.png b/www/assets/images/items/big-frame-pillar_64.png deleted file mode 100644 index acc70799..00000000 Binary files a/www/assets/images/items/big-frame-pillar_64.png and /dev/null differ diff --git a/www/assets/images/items/big-metal-pillar_256.png b/www/assets/images/items/big-metal-pillar_256.png deleted file mode 100644 index 4424f6fd..00000000 Binary files a/www/assets/images/items/big-metal-pillar_256.png and /dev/null differ diff --git a/www/assets/images/items/big-metal-pillar_64.png b/www/assets/images/items/big-metal-pillar_64.png deleted file mode 100644 index f463cc0f..00000000 Binary files a/www/assets/images/items/big-metal-pillar_64.png and /dev/null differ diff --git a/www/assets/images/items/big-pillar-support_256.png b/www/assets/images/items/big-pillar-support_256.png deleted file mode 100644 index 3436200b..00000000 Binary files a/www/assets/images/items/big-pillar-support_256.png and /dev/null differ diff --git a/www/assets/images/items/big-pillar-support_64.png b/www/assets/images/items/big-pillar-support_64.png deleted file mode 100644 index c6261e44..00000000 Binary files a/www/assets/images/items/big-pillar-support_64.png and /dev/null differ diff --git a/www/assets/images/items/billboard-set_256.png b/www/assets/images/items/billboard-set_256.png deleted file mode 100644 index b490ff86..00000000 Binary files a/www/assets/images/items/billboard-set_256.png and /dev/null differ diff --git a/www/assets/images/items/billboard-set_64.png b/www/assets/images/items/billboard-set_64.png deleted file mode 100644 index 4d66d234..00000000 Binary files a/www/assets/images/items/billboard-set_64.png and /dev/null differ diff --git a/www/assets/images/items/biomass-burner_256.png b/www/assets/images/items/biomass-burner_256.png deleted file mode 100644 index f88ca27b..00000000 Binary files a/www/assets/images/items/biomass-burner_256.png and /dev/null differ diff --git a/www/assets/images/items/biomass-burner_64.png b/www/assets/images/items/biomass-burner_64.png deleted file mode 100644 index 595e967d..00000000 Binary files a/www/assets/images/items/biomass-burner_64.png and /dev/null differ diff --git a/www/assets/images/items/biomass_256.png b/www/assets/images/items/biomass_256.png deleted file mode 100644 index 38b14ed3..00000000 Binary files a/www/assets/images/items/biomass_256.png and /dev/null differ diff --git a/www/assets/images/items/biomass_64.png b/www/assets/images/items/biomass_64.png deleted file mode 100644 index 8c4cfa19..00000000 Binary files a/www/assets/images/items/biomass_64.png and /dev/null differ diff --git a/www/assets/images/items/black-powder-1_256.png b/www/assets/images/items/black-powder-1_256.png deleted file mode 100644 index 4d62c895..00000000 Binary files a/www/assets/images/items/black-powder-1_256.png and /dev/null differ diff --git a/www/assets/images/items/black-powder-1_64.png b/www/assets/images/items/black-powder-1_64.png deleted file mode 100644 index 7319d6fe..00000000 Binary files a/www/assets/images/items/black-powder-1_64.png and /dev/null differ diff --git a/www/assets/images/items/black-powder_256.png b/www/assets/images/items/black-powder_256.png deleted file mode 100644 index 27e3c7e1..00000000 Binary files a/www/assets/images/items/black-powder_256.png and /dev/null differ diff --git a/www/assets/images/items/black-powder_64.png b/www/assets/images/items/black-powder_64.png deleted file mode 100644 index 8032ecdc..00000000 Binary files a/www/assets/images/items/black-powder_64.png and /dev/null differ diff --git a/www/assets/images/items/blade-runners-1_256.png b/www/assets/images/items/blade-runners-1_256.png deleted file mode 100644 index d3643a48..00000000 Binary files a/www/assets/images/items/blade-runners-1_256.png and /dev/null differ diff --git a/www/assets/images/items/blade-runners-1_64.png b/www/assets/images/items/blade-runners-1_64.png deleted file mode 100644 index 0224995e..00000000 Binary files a/www/assets/images/items/blade-runners-1_64.png and /dev/null differ diff --git a/www/assets/images/items/blade-runners_256.png b/www/assets/images/items/blade-runners_256.png deleted file mode 100644 index 4dbe5fc5..00000000 Binary files a/www/assets/images/items/blade-runners_256.png and /dev/null differ diff --git a/www/assets/images/items/blade-runners_64.png b/www/assets/images/items/blade-runners_64.png deleted file mode 100644 index c4c3d134..00000000 Binary files a/www/assets/images/items/blade-runners_64.png and /dev/null differ diff --git a/www/assets/images/items/blender_256.png b/www/assets/images/items/blender_256.png deleted file mode 100644 index b5910d3d..00000000 Binary files a/www/assets/images/items/blender_256.png and /dev/null differ diff --git a/www/assets/images/items/blender_64.png b/www/assets/images/items/blender_64.png deleted file mode 100644 index 6be6894b..00000000 Binary files a/www/assets/images/items/blender_64.png and /dev/null differ diff --git a/www/assets/images/items/block-signal_256.png b/www/assets/images/items/block-signal_256.png deleted file mode 100644 index 5f431c42..00000000 Binary files a/www/assets/images/items/block-signal_256.png and /dev/null differ diff --git a/www/assets/images/items/block-signal_64.png b/www/assets/images/items/block-signal_64.png deleted file mode 100644 index 141749ba..00000000 Binary files a/www/assets/images/items/block-signal_64.png and /dev/null differ diff --git a/www/assets/images/items/blue-power-slug_256.png b/www/assets/images/items/blue-power-slug_256.png deleted file mode 100644 index c73ea3bc..00000000 Binary files a/www/assets/images/items/blue-power-slug_256.png and /dev/null differ diff --git a/www/assets/images/items/blue-power-slug_64.png b/www/assets/images/items/blue-power-slug_64.png deleted file mode 100644 index 61989c37..00000000 Binary files a/www/assets/images/items/blue-power-slug_64.png and /dev/null differ diff --git a/www/assets/images/items/blue-power-slugs_256.png b/www/assets/images/items/blue-power-slugs_256.png deleted file mode 100644 index e98f53f4..00000000 Binary files a/www/assets/images/items/blue-power-slugs_256.png and /dev/null differ diff --git a/www/assets/images/items/blue-power-slugs_64.png b/www/assets/images/items/blue-power-slugs_64.png deleted file mode 100644 index 74ae2e09..00000000 Binary files a/www/assets/images/items/blue-power-slugs_64.png and /dev/null differ diff --git a/www/assets/images/items/bp-eqdesczipline-c_256.png b/www/assets/images/items/bp-eqdesczipline-c_256.png new file mode 100644 index 00000000..9f169bbc Binary files /dev/null and b/www/assets/images/items/bp-eqdesczipline-c_256.png differ diff --git a/www/assets/images/items/bp-eqdesczipline-c_64.png b/www/assets/images/items/bp-eqdesczipline-c_64.png new file mode 100644 index 00000000..ad3cf1b5 Binary files /dev/null and b/www/assets/images/items/bp-eqdesczipline-c_64.png differ diff --git a/www/assets/images/items/bp-equipmentdescriptorcandycane-c_256.png b/www/assets/images/items/bp-equipmentdescriptorcandycane-c_256.png new file mode 100644 index 00000000..4aaf5d2c Binary files /dev/null and b/www/assets/images/items/bp-equipmentdescriptorcandycane-c_256.png differ diff --git a/www/assets/images/items/bp-equipmentdescriptorcandycane-c_64.png b/www/assets/images/items/bp-equipmentdescriptorcandycane-c_64.png new file mode 100644 index 00000000..6ee93b5e Binary files /dev/null and b/www/assets/images/items/bp-equipmentdescriptorcandycane-c_64.png differ diff --git a/www/assets/images/items/bp-equipmentdescriptorgasmask-c_256.png b/www/assets/images/items/bp-equipmentdescriptorgasmask-c_256.png new file mode 100644 index 00000000..a41aa000 Binary files /dev/null and b/www/assets/images/items/bp-equipmentdescriptorgasmask-c_256.png differ diff --git a/www/assets/images/items/bp-equipmentdescriptorgasmask-c_64.png b/www/assets/images/items/bp-equipmentdescriptorgasmask-c_64.png new file mode 100644 index 00000000..f2b9e9ff Binary files /dev/null and b/www/assets/images/items/bp-equipmentdescriptorgasmask-c_64.png differ diff --git a/www/assets/images/items/bp-equipmentdescriptorhazmatsuit-c_256.png b/www/assets/images/items/bp-equipmentdescriptorhazmatsuit-c_256.png new file mode 100644 index 00000000..7acfb1de Binary files /dev/null and b/www/assets/images/items/bp-equipmentdescriptorhazmatsuit-c_256.png differ diff --git a/www/assets/images/items/bp-equipmentdescriptorhazmatsuit-c_64.png b/www/assets/images/items/bp-equipmentdescriptorhazmatsuit-c_64.png new file mode 100644 index 00000000..4667ca27 Binary files /dev/null and b/www/assets/images/items/bp-equipmentdescriptorhazmatsuit-c_64.png differ diff --git a/www/assets/images/items/bp-equipmentdescriptorhoverpack-c_256.png b/www/assets/images/items/bp-equipmentdescriptorhoverpack-c_256.png new file mode 100644 index 00000000..60d154a1 Binary files /dev/null and b/www/assets/images/items/bp-equipmentdescriptorhoverpack-c_256.png differ diff --git a/www/assets/images/items/bp-equipmentdescriptorhoverpack-c_64.png b/www/assets/images/items/bp-equipmentdescriptorhoverpack-c_64.png new file mode 100644 index 00000000..e98a9e2b Binary files /dev/null and b/www/assets/images/items/bp-equipmentdescriptorhoverpack-c_64.png differ diff --git a/www/assets/images/items/bp-equipmentdescriptorjetpack-c_256.png b/www/assets/images/items/bp-equipmentdescriptorjetpack-c_256.png new file mode 100644 index 00000000..55866e1e Binary files /dev/null and b/www/assets/images/items/bp-equipmentdescriptorjetpack-c_256.png differ diff --git a/www/assets/images/items/bp-equipmentdescriptorjetpack-c_64.png b/www/assets/images/items/bp-equipmentdescriptorjetpack-c_64.png new file mode 100644 index 00000000..b7958bb8 Binary files /dev/null and b/www/assets/images/items/bp-equipmentdescriptorjetpack-c_64.png differ diff --git a/www/assets/images/items/bp-equipmentdescriptorjumpingstilts-c_256.png b/www/assets/images/items/bp-equipmentdescriptorjumpingstilts-c_256.png new file mode 100644 index 00000000..3db7f792 Binary files /dev/null and b/www/assets/images/items/bp-equipmentdescriptorjumpingstilts-c_256.png differ diff --git a/www/assets/images/items/bp-equipmentdescriptorjumpingstilts-c_64.png b/www/assets/images/items/bp-equipmentdescriptorjumpingstilts-c_64.png new file mode 100644 index 00000000..2815f509 Binary files /dev/null and b/www/assets/images/items/bp-equipmentdescriptorjumpingstilts-c_64.png differ diff --git a/www/assets/images/items/bp-equipmentdescriptornobeliskdetonator-c_256.png b/www/assets/images/items/bp-equipmentdescriptornobeliskdetonator-c_256.png new file mode 100644 index 00000000..3b9eda25 Binary files /dev/null and b/www/assets/images/items/bp-equipmentdescriptornobeliskdetonator-c_256.png differ diff --git a/www/assets/images/items/bp-equipmentdescriptornobeliskdetonator-c_64.png b/www/assets/images/items/bp-equipmentdescriptornobeliskdetonator-c_64.png new file mode 100644 index 00000000..d7b088b8 Binary files /dev/null and b/www/assets/images/items/bp-equipmentdescriptornobeliskdetonator-c_64.png differ diff --git a/www/assets/images/items/bp-equipmentdescriptorobjectscanner-c_256.png b/www/assets/images/items/bp-equipmentdescriptorobjectscanner-c_256.png new file mode 100644 index 00000000..c7cf1c87 Binary files /dev/null and b/www/assets/images/items/bp-equipmentdescriptorobjectscanner-c_256.png differ diff --git a/www/assets/images/items/bp-equipmentdescriptorobjectscanner-c_64.png b/www/assets/images/items/bp-equipmentdescriptorobjectscanner-c_64.png new file mode 100644 index 00000000..147752f3 Binary files /dev/null and b/www/assets/images/items/bp-equipmentdescriptorobjectscanner-c_64.png differ diff --git a/www/assets/images/items/bp-equipmentdescriptorrifle-c_256.png b/www/assets/images/items/bp-equipmentdescriptorrifle-c_256.png new file mode 100644 index 00000000..34b18ce2 Binary files /dev/null and b/www/assets/images/items/bp-equipmentdescriptorrifle-c_256.png differ diff --git a/www/assets/images/items/bp-equipmentdescriptorrifle-c_64.png b/www/assets/images/items/bp-equipmentdescriptorrifle-c_64.png new file mode 100644 index 00000000..047280a3 Binary files /dev/null and b/www/assets/images/items/bp-equipmentdescriptorrifle-c_64.png differ diff --git a/www/assets/images/items/bp-equipmentdescriptorshockshank-c_256.png b/www/assets/images/items/bp-equipmentdescriptorshockshank-c_256.png new file mode 100644 index 00000000..4b34ac66 Binary files /dev/null and b/www/assets/images/items/bp-equipmentdescriptorshockshank-c_256.png differ diff --git a/www/assets/images/items/bp-equipmentdescriptorshockshank-c_64.png b/www/assets/images/items/bp-equipmentdescriptorshockshank-c_64.png new file mode 100644 index 00000000..ca283aa1 Binary files /dev/null and b/www/assets/images/items/bp-equipmentdescriptorshockshank-c_64.png differ diff --git a/www/assets/images/items/bp-equipmentdescriptorstunspear-c_256.png b/www/assets/images/items/bp-equipmentdescriptorstunspear-c_256.png new file mode 100644 index 00000000..78634303 Binary files /dev/null and b/www/assets/images/items/bp-equipmentdescriptorstunspear-c_256.png differ diff --git a/www/assets/images/items/bp-equipmentdescriptorstunspear-c_64.png b/www/assets/images/items/bp-equipmentdescriptorstunspear-c_64.png new file mode 100644 index 00000000..f9455f35 Binary files /dev/null and b/www/assets/images/items/bp-equipmentdescriptorstunspear-c_64.png differ diff --git a/www/assets/images/items/bp-itemdescriptorportableminer-c_256.png b/www/assets/images/items/bp-itemdescriptorportableminer-c_256.png new file mode 100644 index 00000000..1c6d2591 Binary files /dev/null and b/www/assets/images/items/bp-itemdescriptorportableminer-c_256.png differ diff --git a/www/assets/images/items/bp-itemdescriptorportableminer-c_64.png b/www/assets/images/items/bp-itemdescriptorportableminer-c_64.png new file mode 100644 index 00000000..3bb2bc9e Binary files /dev/null and b/www/assets/images/items/bp-itemdescriptorportableminer-c_64.png differ diff --git a/www/assets/images/items/cable_256.png b/www/assets/images/items/cable_256.png deleted file mode 100644 index 32c09393..00000000 Binary files a/www/assets/images/items/cable_256.png and /dev/null differ diff --git a/www/assets/images/items/cable_64.png b/www/assets/images/items/cable_64.png deleted file mode 100644 index 9e9b6f44..00000000 Binary files a/www/assets/images/items/cable_64.png and /dev/null differ diff --git a/www/assets/images/items/candy-cane-basher_256.png b/www/assets/images/items/candy-cane-basher_256.png deleted file mode 100644 index cc20af94..00000000 Binary files a/www/assets/images/items/candy-cane-basher_256.png and /dev/null differ diff --git a/www/assets/images/items/candy-cane-basher_64.png b/www/assets/images/items/candy-cane-basher_64.png deleted file mode 100644 index 7797208a..00000000 Binary files a/www/assets/images/items/candy-cane-basher_64.png and /dev/null differ diff --git a/www/assets/images/items/candy-cane-decor_256.png b/www/assets/images/items/candy-cane-decor_256.png deleted file mode 100644 index 1d77dda7..00000000 Binary files a/www/assets/images/items/candy-cane-decor_256.png and /dev/null differ diff --git a/www/assets/images/items/candy-cane-decor_64.png b/www/assets/images/items/candy-cane-decor_64.png deleted file mode 100644 index 3a88b118..00000000 Binary files a/www/assets/images/items/candy-cane-decor_64.png and /dev/null differ diff --git a/www/assets/images/items/caterium-electronics_256.png b/www/assets/images/items/caterium-electronics_256.png deleted file mode 100644 index 87dbf73c..00000000 Binary files a/www/assets/images/items/caterium-electronics_256.png and /dev/null differ diff --git a/www/assets/images/items/caterium-electronics_64.png b/www/assets/images/items/caterium-electronics_64.png deleted file mode 100644 index fb934e61..00000000 Binary files a/www/assets/images/items/caterium-electronics_64.png and /dev/null differ diff --git a/www/assets/images/items/caterium-ingot_256.png b/www/assets/images/items/caterium-ingot_256.png deleted file mode 100644 index 27464d26..00000000 Binary files a/www/assets/images/items/caterium-ingot_256.png and /dev/null differ diff --git a/www/assets/images/items/caterium-ingot_64.png b/www/assets/images/items/caterium-ingot_64.png deleted file mode 100644 index 84fc155a..00000000 Binary files a/www/assets/images/items/caterium-ingot_64.png and /dev/null differ diff --git a/www/assets/images/items/caterium-ingots_256.png b/www/assets/images/items/caterium-ingots_256.png deleted file mode 100644 index 1dc3a9f2..00000000 Binary files a/www/assets/images/items/caterium-ingots_256.png and /dev/null differ diff --git a/www/assets/images/items/caterium-ingots_64.png b/www/assets/images/items/caterium-ingots_64.png deleted file mode 100644 index b04e5834..00000000 Binary files a/www/assets/images/items/caterium-ingots_64.png and /dev/null differ diff --git a/www/assets/images/items/caterium-ore_256.png b/www/assets/images/items/caterium-ore_256.png deleted file mode 100644 index 4080060c..00000000 Binary files a/www/assets/images/items/caterium-ore_256.png and /dev/null differ diff --git a/www/assets/images/items/caterium-ore_64.png b/www/assets/images/items/caterium-ore_64.png deleted file mode 100644 index fdd1aaed..00000000 Binary files a/www/assets/images/items/caterium-ore_64.png and /dev/null differ diff --git a/www/assets/images/items/caterium_256.png b/www/assets/images/items/caterium_256.png deleted file mode 100644 index 7117aa06..00000000 Binary files a/www/assets/images/items/caterium_256.png and /dev/null differ diff --git a/www/assets/images/items/caterium_64.png b/www/assets/images/items/caterium_64.png deleted file mode 100644 index db257501..00000000 Binary files a/www/assets/images/items/caterium_64.png and /dev/null differ diff --git a/www/assets/images/items/catwalk-corner_256.png b/www/assets/images/items/catwalk-corner_256.png deleted file mode 100644 index a6f3037d..00000000 Binary files a/www/assets/images/items/catwalk-corner_256.png and /dev/null differ diff --git a/www/assets/images/items/catwalk-corner_64.png b/www/assets/images/items/catwalk-corner_64.png deleted file mode 100644 index f9e82eba..00000000 Binary files a/www/assets/images/items/catwalk-corner_64.png and /dev/null differ diff --git a/www/assets/images/items/catwalk-crossing_256.png b/www/assets/images/items/catwalk-crossing_256.png deleted file mode 100644 index c0f77322..00000000 Binary files a/www/assets/images/items/catwalk-crossing_256.png and /dev/null differ diff --git a/www/assets/images/items/catwalk-crossing_64.png b/www/assets/images/items/catwalk-crossing_64.png deleted file mode 100644 index f9d0f3b1..00000000 Binary files a/www/assets/images/items/catwalk-crossing_64.png and /dev/null differ diff --git a/www/assets/images/items/catwalk-ramp_256.png b/www/assets/images/items/catwalk-ramp_256.png deleted file mode 100644 index 25db76b8..00000000 Binary files a/www/assets/images/items/catwalk-ramp_256.png and /dev/null differ diff --git a/www/assets/images/items/catwalk-ramp_64.png b/www/assets/images/items/catwalk-ramp_64.png deleted file mode 100644 index 7548dff4..00000000 Binary files a/www/assets/images/items/catwalk-ramp_64.png and /dev/null differ diff --git a/www/assets/images/items/catwalk-stairs_256.png b/www/assets/images/items/catwalk-stairs_256.png deleted file mode 100644 index 4ffc1ac6..00000000 Binary files a/www/assets/images/items/catwalk-stairs_256.png and /dev/null differ diff --git a/www/assets/images/items/catwalk-stairs_64.png b/www/assets/images/items/catwalk-stairs_64.png deleted file mode 100644 index 1f7e819f..00000000 Binary files a/www/assets/images/items/catwalk-stairs_64.png and /dev/null differ diff --git a/www/assets/images/items/catwalk-straight_256.png b/www/assets/images/items/catwalk-straight_256.png deleted file mode 100644 index 9d028f5b..00000000 Binary files a/www/assets/images/items/catwalk-straight_256.png and /dev/null differ diff --git a/www/assets/images/items/catwalk-straight_64.png b/www/assets/images/items/catwalk-straight_64.png deleted file mode 100644 index 59345911..00000000 Binary files a/www/assets/images/items/catwalk-straight_64.png and /dev/null differ diff --git a/www/assets/images/items/catwalk-t-crossing_256.png b/www/assets/images/items/catwalk-t-crossing_256.png deleted file mode 100644 index a4c4c067..00000000 Binary files a/www/assets/images/items/catwalk-t-crossing_256.png and /dev/null differ diff --git a/www/assets/images/items/catwalk-t-crossing_64.png b/www/assets/images/items/catwalk-t-crossing_64.png deleted file mode 100644 index 6a3cc432..00000000 Binary files a/www/assets/images/items/catwalk-t-crossing_64.png and /dev/null differ diff --git a/www/assets/images/items/ceiling-light_256.png b/www/assets/images/items/ceiling-light_256.png deleted file mode 100644 index 72452adc..00000000 Binary files a/www/assets/images/items/ceiling-light_256.png and /dev/null differ diff --git a/www/assets/images/items/ceiling-light_64.png b/www/assets/images/items/ceiling-light_64.png deleted file mode 100644 index 37605b12..00000000 Binary files a/www/assets/images/items/ceiling-light_64.png and /dev/null differ diff --git a/www/assets/images/items/center-door-wall-1_256.png b/www/assets/images/items/center-door-wall-1_256.png deleted file mode 100644 index d6b90d63..00000000 Binary files a/www/assets/images/items/center-door-wall-1_256.png and /dev/null differ diff --git a/www/assets/images/items/center-door-wall-1_64.png b/www/assets/images/items/center-door-wall-1_64.png deleted file mode 100644 index f96ab55d..00000000 Binary files a/www/assets/images/items/center-door-wall-1_64.png and /dev/null differ diff --git a/www/assets/images/items/center-door-wall-concrete_256.png b/www/assets/images/items/center-door-wall-concrete_256.png deleted file mode 100644 index 29a4f151..00000000 Binary files a/www/assets/images/items/center-door-wall-concrete_256.png and /dev/null differ diff --git a/www/assets/images/items/center-door-wall-concrete_64.png b/www/assets/images/items/center-door-wall-concrete_64.png deleted file mode 100644 index 8f4d77d1..00000000 Binary files a/www/assets/images/items/center-door-wall-concrete_64.png and /dev/null differ diff --git a/www/assets/images/items/center-door-wall-steel_256.png b/www/assets/images/items/center-door-wall-steel_256.png deleted file mode 100644 index 40d057ed..00000000 Binary files a/www/assets/images/items/center-door-wall-steel_256.png and /dev/null differ diff --git a/www/assets/images/items/center-door-wall-steel_64.png b/www/assets/images/items/center-door-wall-steel_64.png deleted file mode 100644 index 0755d01d..00000000 Binary files a/www/assets/images/items/center-door-wall-steel_64.png and /dev/null differ diff --git a/www/assets/images/items/center-door-wall_256.png b/www/assets/images/items/center-door-wall_256.png deleted file mode 100644 index d6b90d63..00000000 Binary files a/www/assets/images/items/center-door-wall_256.png and /dev/null differ diff --git a/www/assets/images/items/center-door-wall_64.png b/www/assets/images/items/center-door-wall_64.png deleted file mode 100644 index 1d105ab8..00000000 Binary files a/www/assets/images/items/center-door-wall_64.png and /dev/null differ diff --git a/www/assets/images/items/chainsaw_256.png b/www/assets/images/items/chainsaw_256.png deleted file mode 100644 index 44f41a53..00000000 Binary files a/www/assets/images/items/chainsaw_256.png and /dev/null differ diff --git a/www/assets/images/items/chainsaw_64.png b/www/assets/images/items/chainsaw_64.png deleted file mode 100644 index a4809185..00000000 Binary files a/www/assets/images/items/chainsaw_64.png and /dev/null differ diff --git a/www/assets/images/items/circuit-board_256.png b/www/assets/images/items/circuit-board_256.png deleted file mode 100644 index d4c3bc11..00000000 Binary files a/www/assets/images/items/circuit-board_256.png and /dev/null differ diff --git a/www/assets/images/items/circuit-board_64.png b/www/assets/images/items/circuit-board_64.png deleted file mode 100644 index cc2346ba..00000000 Binary files a/www/assets/images/items/circuit-board_64.png and /dev/null differ diff --git a/www/assets/images/items/coal-generator_256.png b/www/assets/images/items/coal-generator_256.png deleted file mode 100644 index 3ebae2e5..00000000 Binary files a/www/assets/images/items/coal-generator_256.png and /dev/null differ diff --git a/www/assets/images/items/coal-generator_64.png b/www/assets/images/items/coal-generator_64.png deleted file mode 100644 index 61b112fb..00000000 Binary files a/www/assets/images/items/coal-generator_64.png and /dev/null differ diff --git a/www/assets/images/items/coal-power_256.png b/www/assets/images/items/coal-power_256.png deleted file mode 100644 index 8fc04297..00000000 Binary files a/www/assets/images/items/coal-power_256.png and /dev/null differ diff --git a/www/assets/images/items/coal-power_64.png b/www/assets/images/items/coal-power_64.png deleted file mode 100644 index fdfe317f..00000000 Binary files a/www/assets/images/items/coal-power_64.png and /dev/null differ diff --git a/www/assets/images/items/coal_256.png b/www/assets/images/items/coal_256.png deleted file mode 100644 index 226ced51..00000000 Binary files a/www/assets/images/items/coal_256.png and /dev/null differ diff --git a/www/assets/images/items/coal_64.png b/www/assets/images/items/coal_64.png deleted file mode 100644 index 2880b7b5..00000000 Binary files a/www/assets/images/items/coal_64.png and /dev/null differ diff --git a/www/assets/images/items/coated-concrete-foundation-material_256.png b/www/assets/images/items/coated-concrete-foundation-material_256.png deleted file mode 100644 index 5101995c..00000000 Binary files a/www/assets/images/items/coated-concrete-foundation-material_256.png and /dev/null differ diff --git a/www/assets/images/items/coated-concrete-foundation-material_64.png b/www/assets/images/items/coated-concrete-foundation-material_64.png deleted file mode 100644 index 023989f9..00000000 Binary files a/www/assets/images/items/coated-concrete-foundation-material_64.png and /dev/null differ diff --git a/www/assets/images/items/color-cartridge_256.png b/www/assets/images/items/color-cartridge_256.png deleted file mode 100644 index 6f0b9c40..00000000 Binary files a/www/assets/images/items/color-cartridge_256.png and /dev/null differ diff --git a/www/assets/images/items/color-cartridge_64.png b/www/assets/images/items/color-cartridge_64.png deleted file mode 100644 index 89e01f01..00000000 Binary files a/www/assets/images/items/color-cartridge_64.png and /dev/null differ diff --git a/www/assets/images/items/color-cartridges_256.png b/www/assets/images/items/color-cartridges_256.png deleted file mode 100644 index a4d39cbd..00000000 Binary files a/www/assets/images/items/color-cartridges_256.png and /dev/null differ diff --git a/www/assets/images/items/color-cartridges_64.png b/www/assets/images/items/color-cartridges_64.png deleted file mode 100644 index 307026d9..00000000 Binary files a/www/assets/images/items/color-cartridges_64.png and /dev/null differ diff --git a/www/assets/images/items/color-gun_256.png b/www/assets/images/items/color-gun_256.png deleted file mode 100644 index 3acb4356..00000000 Binary files a/www/assets/images/items/color-gun_256.png and /dev/null differ diff --git a/www/assets/images/items/color-gun_64.png b/www/assets/images/items/color-gun_64.png deleted file mode 100644 index f037885e..00000000 Binary files a/www/assets/images/items/color-gun_64.png and /dev/null differ diff --git a/www/assets/images/items/compacted-coal_256.png b/www/assets/images/items/compacted-coal_256.png deleted file mode 100644 index 64db5e41..00000000 Binary files a/www/assets/images/items/compacted-coal_256.png and /dev/null differ diff --git a/www/assets/images/items/compacted-coal_64.png b/www/assets/images/items/compacted-coal_64.png deleted file mode 100644 index 50e3c613..00000000 Binary files a/www/assets/images/items/compacted-coal_64.png and /dev/null differ diff --git a/www/assets/images/items/computer_256.png b/www/assets/images/items/computer_256.png deleted file mode 100644 index 82f99adc..00000000 Binary files a/www/assets/images/items/computer_256.png and /dev/null differ diff --git a/www/assets/images/items/computer_64.png b/www/assets/images/items/computer_64.png deleted file mode 100644 index 7620a9f3..00000000 Binary files a/www/assets/images/items/computer_64.png and /dev/null differ diff --git a/www/assets/images/items/concrete-foundation-material_256.png b/www/assets/images/items/concrete-foundation-material_256.png deleted file mode 100644 index f0976c8e..00000000 Binary files a/www/assets/images/items/concrete-foundation-material_256.png and /dev/null differ diff --git a/www/assets/images/items/concrete-foundation-material_64.png b/www/assets/images/items/concrete-foundation-material_64.png deleted file mode 100644 index a17d7b77..00000000 Binary files a/www/assets/images/items/concrete-foundation-material_64.png and /dev/null differ diff --git a/www/assets/images/items/concrete-foundations-material_256.png b/www/assets/images/items/concrete-foundations-material_256.png deleted file mode 100644 index 1547de30..00000000 Binary files a/www/assets/images/items/concrete-foundations-material_256.png and /dev/null differ diff --git a/www/assets/images/items/concrete-foundations-material_64.png b/www/assets/images/items/concrete-foundations-material_64.png deleted file mode 100644 index 30511726..00000000 Binary files a/www/assets/images/items/concrete-foundations-material_64.png and /dev/null differ diff --git a/www/assets/images/items/concrete-pillar-set_256.png b/www/assets/images/items/concrete-pillar-set_256.png deleted file mode 100644 index dcda5084..00000000 Binary files a/www/assets/images/items/concrete-pillar-set_256.png and /dev/null differ diff --git a/www/assets/images/items/concrete-pillar-set_64.png b/www/assets/images/items/concrete-pillar-set_64.png deleted file mode 100644 index e3f1ac09..00000000 Binary files a/www/assets/images/items/concrete-pillar-set_64.png and /dev/null differ diff --git a/www/assets/images/items/concrete-wall-material_256.png b/www/assets/images/items/concrete-wall-material_256.png deleted file mode 100644 index 75d15953..00000000 Binary files a/www/assets/images/items/concrete-wall-material_256.png and /dev/null differ diff --git a/www/assets/images/items/concrete-wall-material_64.png b/www/assets/images/items/concrete-wall-material_64.png deleted file mode 100644 index 5a32568f..00000000 Binary files a/www/assets/images/items/concrete-wall-material_64.png and /dev/null differ diff --git a/www/assets/images/items/concrete_256.png b/www/assets/images/items/concrete_256.png deleted file mode 100644 index 572ff533..00000000 Binary files a/www/assets/images/items/concrete_256.png and /dev/null differ diff --git a/www/assets/images/items/concrete_64.png b/www/assets/images/items/concrete_64.png deleted file mode 100644 index f2857475..00000000 Binary files a/www/assets/images/items/concrete_64.png and /dev/null differ diff --git a/www/assets/images/items/constructor_256.png b/www/assets/images/items/constructor_256.png deleted file mode 100644 index 738acca2..00000000 Binary files a/www/assets/images/items/constructor_256.png and /dev/null differ diff --git a/www/assets/images/items/constructor_64.png b/www/assets/images/items/constructor_64.png deleted file mode 100644 index 2deda7f0..00000000 Binary files a/www/assets/images/items/constructor_64.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-belt-mk-1_256.png b/www/assets/images/items/conveyor-belt-mk-1_256.png deleted file mode 100644 index 86994124..00000000 Binary files a/www/assets/images/items/conveyor-belt-mk-1_256.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-belt-mk-1_64.png b/www/assets/images/items/conveyor-belt-mk-1_64.png deleted file mode 100644 index 23eec0af..00000000 Binary files a/www/assets/images/items/conveyor-belt-mk-1_64.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-belt-mk-2_256.png b/www/assets/images/items/conveyor-belt-mk-2_256.png deleted file mode 100644 index fdf3a270..00000000 Binary files a/www/assets/images/items/conveyor-belt-mk-2_256.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-belt-mk-2_64.png b/www/assets/images/items/conveyor-belt-mk-2_64.png deleted file mode 100644 index ea5b7d72..00000000 Binary files a/www/assets/images/items/conveyor-belt-mk-2_64.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-belt-mk-3_256.png b/www/assets/images/items/conveyor-belt-mk-3_256.png deleted file mode 100644 index 37231567..00000000 Binary files a/www/assets/images/items/conveyor-belt-mk-3_256.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-belt-mk-3_64.png b/www/assets/images/items/conveyor-belt-mk-3_64.png deleted file mode 100644 index 7ded919f..00000000 Binary files a/www/assets/images/items/conveyor-belt-mk-3_64.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-belt-mk-4_256.png b/www/assets/images/items/conveyor-belt-mk-4_256.png deleted file mode 100644 index 2735e185..00000000 Binary files a/www/assets/images/items/conveyor-belt-mk-4_256.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-belt-mk-4_64.png b/www/assets/images/items/conveyor-belt-mk-4_64.png deleted file mode 100644 index 708ceffe..00000000 Binary files a/www/assets/images/items/conveyor-belt-mk-4_64.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-belt-mk-5_256.png b/www/assets/images/items/conveyor-belt-mk-5_256.png deleted file mode 100644 index bd6f26e8..00000000 Binary files a/www/assets/images/items/conveyor-belt-mk-5_256.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-belt-mk-5_64.png b/www/assets/images/items/conveyor-belt-mk-5_64.png deleted file mode 100644 index 2b152d32..00000000 Binary files a/www/assets/images/items/conveyor-belt-mk-5_64.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-lift-floor-hole-1_256.png b/www/assets/images/items/conveyor-lift-floor-hole-1_256.png deleted file mode 100644 index 7bf276b7..00000000 Binary files a/www/assets/images/items/conveyor-lift-floor-hole-1_256.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-lift-floor-hole-1_64.png b/www/assets/images/items/conveyor-lift-floor-hole-1_64.png deleted file mode 100644 index fe5a97c7..00000000 Binary files a/www/assets/images/items/conveyor-lift-floor-hole-1_64.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-lift-floor-hole_256.png b/www/assets/images/items/conveyor-lift-floor-hole_256.png deleted file mode 100644 index 30c12ab6..00000000 Binary files a/www/assets/images/items/conveyor-lift-floor-hole_256.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-lift-floor-hole_64.png b/www/assets/images/items/conveyor-lift-floor-hole_64.png deleted file mode 100644 index dc3acbc3..00000000 Binary files a/www/assets/images/items/conveyor-lift-floor-hole_64.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-lift-mk-1_256.png b/www/assets/images/items/conveyor-lift-mk-1_256.png deleted file mode 100644 index 9cda34fc..00000000 Binary files a/www/assets/images/items/conveyor-lift-mk-1_256.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-lift-mk-1_64.png b/www/assets/images/items/conveyor-lift-mk-1_64.png deleted file mode 100644 index 9fd5e945..00000000 Binary files a/www/assets/images/items/conveyor-lift-mk-1_64.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-lift-mk-2_256.png b/www/assets/images/items/conveyor-lift-mk-2_256.png deleted file mode 100644 index 6c885ff0..00000000 Binary files a/www/assets/images/items/conveyor-lift-mk-2_256.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-lift-mk-2_64.png b/www/assets/images/items/conveyor-lift-mk-2_64.png deleted file mode 100644 index 2d1bde8e..00000000 Binary files a/www/assets/images/items/conveyor-lift-mk-2_64.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-lift-mk-3_256.png b/www/assets/images/items/conveyor-lift-mk-3_256.png deleted file mode 100644 index 9e44fb34..00000000 Binary files a/www/assets/images/items/conveyor-lift-mk-3_256.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-lift-mk-3_64.png b/www/assets/images/items/conveyor-lift-mk-3_64.png deleted file mode 100644 index bec753c0..00000000 Binary files a/www/assets/images/items/conveyor-lift-mk-3_64.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-lift-mk-4_256.png b/www/assets/images/items/conveyor-lift-mk-4_256.png deleted file mode 100644 index 2482e78a..00000000 Binary files a/www/assets/images/items/conveyor-lift-mk-4_256.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-lift-mk-4_64.png b/www/assets/images/items/conveyor-lift-mk-4_64.png deleted file mode 100644 index 07713734..00000000 Binary files a/www/assets/images/items/conveyor-lift-mk-4_64.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-lift-mk-5_256.png b/www/assets/images/items/conveyor-lift-mk-5_256.png deleted file mode 100644 index 796e920c..00000000 Binary files a/www/assets/images/items/conveyor-lift-mk-5_256.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-lift-mk-5_64.png b/www/assets/images/items/conveyor-lift-mk-5_64.png deleted file mode 100644 index b82abdbf..00000000 Binary files a/www/assets/images/items/conveyor-lift-mk-5_64.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-merger_256.png b/www/assets/images/items/conveyor-merger_256.png deleted file mode 100644 index 83b385a7..00000000 Binary files a/www/assets/images/items/conveyor-merger_256.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-merger_64.png b/www/assets/images/items/conveyor-merger_64.png deleted file mode 100644 index 2bccd985..00000000 Binary files a/www/assets/images/items/conveyor-merger_64.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-pole_256.png b/www/assets/images/items/conveyor-pole_256.png deleted file mode 100644 index 75f18c45..00000000 Binary files a/www/assets/images/items/conveyor-pole_256.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-pole_64.png b/www/assets/images/items/conveyor-pole_64.png deleted file mode 100644 index 26e140d3..00000000 Binary files a/www/assets/images/items/conveyor-pole_64.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-splitter_256.png b/www/assets/images/items/conveyor-splitter_256.png deleted file mode 100644 index 074c4385..00000000 Binary files a/www/assets/images/items/conveyor-splitter_256.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-splitter_64.png b/www/assets/images/items/conveyor-splitter_64.png deleted file mode 100644 index 95389e82..00000000 Binary files a/www/assets/images/items/conveyor-splitter_64.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-wall-mount-1_256.png b/www/assets/images/items/conveyor-wall-mount-1_256.png deleted file mode 100644 index 9be04469..00000000 Binary files a/www/assets/images/items/conveyor-wall-mount-1_256.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-wall-mount-1_64.png b/www/assets/images/items/conveyor-wall-mount-1_64.png deleted file mode 100644 index f81dc2da..00000000 Binary files a/www/assets/images/items/conveyor-wall-mount-1_64.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-wall-mount_256.png b/www/assets/images/items/conveyor-wall-mount_256.png deleted file mode 100644 index 58703b08..00000000 Binary files a/www/assets/images/items/conveyor-wall-mount_256.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-wall-mount_64.png b/www/assets/images/items/conveyor-wall-mount_64.png deleted file mode 100644 index d9a0ea75..00000000 Binary files a/www/assets/images/items/conveyor-wall-mount_64.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-wall-x1-1_256.png b/www/assets/images/items/conveyor-wall-x1-1_256.png deleted file mode 100644 index c69f14b0..00000000 Binary files a/www/assets/images/items/conveyor-wall-x1-1_256.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-wall-x1-1_64.png b/www/assets/images/items/conveyor-wall-x1-1_64.png deleted file mode 100644 index 8c0997e6..00000000 Binary files a/www/assets/images/items/conveyor-wall-x1-1_64.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-wall-x1-concrete_256.png b/www/assets/images/items/conveyor-wall-x1-concrete_256.png deleted file mode 100644 index 0e89f1ba..00000000 Binary files a/www/assets/images/items/conveyor-wall-x1-concrete_256.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-wall-x1-concrete_64.png b/www/assets/images/items/conveyor-wall-x1-concrete_64.png deleted file mode 100644 index 1e97e38c..00000000 Binary files a/www/assets/images/items/conveyor-wall-x1-concrete_64.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-wall-x1-steel_256.png b/www/assets/images/items/conveyor-wall-x1-steel_256.png deleted file mode 100644 index 13fa0b3d..00000000 Binary files a/www/assets/images/items/conveyor-wall-x1-steel_256.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-wall-x1-steel_64.png b/www/assets/images/items/conveyor-wall-x1-steel_64.png deleted file mode 100644 index 62617773..00000000 Binary files a/www/assets/images/items/conveyor-wall-x1-steel_64.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-wall-x1_256.png b/www/assets/images/items/conveyor-wall-x1_256.png deleted file mode 100644 index c69f14b0..00000000 Binary files a/www/assets/images/items/conveyor-wall-x1_256.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-wall-x1_64.png b/www/assets/images/items/conveyor-wall-x1_64.png deleted file mode 100644 index c97cb9f1..00000000 Binary files a/www/assets/images/items/conveyor-wall-x1_64.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-wall-x2-1_256.png b/www/assets/images/items/conveyor-wall-x2-1_256.png deleted file mode 100644 index 7d4f268c..00000000 Binary files a/www/assets/images/items/conveyor-wall-x2-1_256.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-wall-x2-1_64.png b/www/assets/images/items/conveyor-wall-x2-1_64.png deleted file mode 100644 index 30928691..00000000 Binary files a/www/assets/images/items/conveyor-wall-x2-1_64.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-wall-x2-concrete_256.png b/www/assets/images/items/conveyor-wall-x2-concrete_256.png deleted file mode 100644 index b3029ce8..00000000 Binary files a/www/assets/images/items/conveyor-wall-x2-concrete_256.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-wall-x2-concrete_64.png b/www/assets/images/items/conveyor-wall-x2-concrete_64.png deleted file mode 100644 index 6ceb8233..00000000 Binary files a/www/assets/images/items/conveyor-wall-x2-concrete_64.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-wall-x2-steel_256.png b/www/assets/images/items/conveyor-wall-x2-steel_256.png deleted file mode 100644 index 99a827dd..00000000 Binary files a/www/assets/images/items/conveyor-wall-x2-steel_256.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-wall-x2-steel_64.png b/www/assets/images/items/conveyor-wall-x2-steel_64.png deleted file mode 100644 index b93c1cea..00000000 Binary files a/www/assets/images/items/conveyor-wall-x2-steel_64.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-wall-x2_256.png b/www/assets/images/items/conveyor-wall-x2_256.png deleted file mode 100644 index 7d4f268c..00000000 Binary files a/www/assets/images/items/conveyor-wall-x2_256.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-wall-x2_64.png b/www/assets/images/items/conveyor-wall-x2_64.png deleted file mode 100644 index 93e0594a..00000000 Binary files a/www/assets/images/items/conveyor-wall-x2_64.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-wall-x3-1_256.png b/www/assets/images/items/conveyor-wall-x3-1_256.png deleted file mode 100644 index eca10c19..00000000 Binary files a/www/assets/images/items/conveyor-wall-x3-1_256.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-wall-x3-1_64.png b/www/assets/images/items/conveyor-wall-x3-1_64.png deleted file mode 100644 index d3bfd857..00000000 Binary files a/www/assets/images/items/conveyor-wall-x3-1_64.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-wall-x3-concrete_256.png b/www/assets/images/items/conveyor-wall-x3-concrete_256.png deleted file mode 100644 index dec6e0bb..00000000 Binary files a/www/assets/images/items/conveyor-wall-x3-concrete_256.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-wall-x3-concrete_64.png b/www/assets/images/items/conveyor-wall-x3-concrete_64.png deleted file mode 100644 index 1e053530..00000000 Binary files a/www/assets/images/items/conveyor-wall-x3-concrete_64.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-wall-x3-steel_256.png b/www/assets/images/items/conveyor-wall-x3-steel_256.png deleted file mode 100644 index f1c6c08b..00000000 Binary files a/www/assets/images/items/conveyor-wall-x3-steel_256.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-wall-x3-steel_64.png b/www/assets/images/items/conveyor-wall-x3-steel_64.png deleted file mode 100644 index 5afa926d..00000000 Binary files a/www/assets/images/items/conveyor-wall-x3-steel_64.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-wall-x3_256.png b/www/assets/images/items/conveyor-wall-x3_256.png deleted file mode 100644 index eca10c19..00000000 Binary files a/www/assets/images/items/conveyor-wall-x3_256.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-wall-x3_64.png b/www/assets/images/items/conveyor-wall-x3_64.png deleted file mode 100644 index 8780c6ec..00000000 Binary files a/www/assets/images/items/conveyor-wall-x3_64.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-walls_256.png b/www/assets/images/items/conveyor-walls_256.png deleted file mode 100644 index 9bcdb757..00000000 Binary files a/www/assets/images/items/conveyor-walls_256.png and /dev/null differ diff --git a/www/assets/images/items/conveyor-walls_64.png b/www/assets/images/items/conveyor-walls_64.png deleted file mode 100644 index dc1cb8ed..00000000 Binary files a/www/assets/images/items/conveyor-walls_64.png and /dev/null differ diff --git a/www/assets/images/items/cooling-system_256.png b/www/assets/images/items/cooling-system_256.png deleted file mode 100644 index 1edcf7eb..00000000 Binary files a/www/assets/images/items/cooling-system_256.png and /dev/null differ diff --git a/www/assets/images/items/cooling-system_64.png b/www/assets/images/items/cooling-system_64.png deleted file mode 100644 index 7c6ec278..00000000 Binary files a/www/assets/images/items/cooling-system_64.png and /dev/null differ diff --git a/www/assets/images/items/copper-ingot_256.png b/www/assets/images/items/copper-ingot_256.png deleted file mode 100644 index 1cc436a6..00000000 Binary files a/www/assets/images/items/copper-ingot_256.png and /dev/null differ diff --git a/www/assets/images/items/copper-ingot_64.png b/www/assets/images/items/copper-ingot_64.png deleted file mode 100644 index c8bed35e..00000000 Binary files a/www/assets/images/items/copper-ingot_64.png and /dev/null differ diff --git a/www/assets/images/items/copper-ore_256.png b/www/assets/images/items/copper-ore_256.png deleted file mode 100644 index 69e1a108..00000000 Binary files a/www/assets/images/items/copper-ore_256.png and /dev/null differ diff --git a/www/assets/images/items/copper-ore_64.png b/www/assets/images/items/copper-ore_64.png deleted file mode 100644 index 5d93df89..00000000 Binary files a/www/assets/images/items/copper-ore_64.png and /dev/null differ diff --git a/www/assets/images/items/copper-powder_256.png b/www/assets/images/items/copper-powder_256.png deleted file mode 100644 index f40426ca..00000000 Binary files a/www/assets/images/items/copper-powder_256.png and /dev/null differ diff --git a/www/assets/images/items/copper-powder_64.png b/www/assets/images/items/copper-powder_64.png deleted file mode 100644 index a26f9114..00000000 Binary files a/www/assets/images/items/copper-powder_64.png and /dev/null differ diff --git a/www/assets/images/items/copper-sheet_256.png b/www/assets/images/items/copper-sheet_256.png deleted file mode 100644 index da847561..00000000 Binary files a/www/assets/images/items/copper-sheet_256.png and /dev/null differ diff --git a/www/assets/images/items/copper-sheet_64.png b/www/assets/images/items/copper-sheet_64.png deleted file mode 100644 index 4f2ab7e6..00000000 Binary files a/www/assets/images/items/copper-sheet_64.png and /dev/null differ diff --git a/www/assets/images/items/corner-ramp-pack_256.png b/www/assets/images/items/corner-ramp-pack_256.png deleted file mode 100644 index 44ebf3e3..00000000 Binary files a/www/assets/images/items/corner-ramp-pack_256.png and /dev/null differ diff --git a/www/assets/images/items/corner-ramp-pack_64.png b/www/assets/images/items/corner-ramp-pack_64.png deleted file mode 100644 index 8c5873a9..00000000 Binary files a/www/assets/images/items/corner-ramp-pack_64.png and /dev/null differ diff --git a/www/assets/images/items/coupon_256.png b/www/assets/images/items/coupon_256.png deleted file mode 100644 index 04afbb11..00000000 Binary files a/www/assets/images/items/coupon_256.png and /dev/null differ diff --git a/www/assets/images/items/coupon_64.png b/www/assets/images/items/coupon_64.png deleted file mode 100644 index 5aed1f17..00000000 Binary files a/www/assets/images/items/coupon_64.png and /dev/null differ diff --git a/www/assets/images/items/craft-bench_256.png b/www/assets/images/items/craft-bench_256.png deleted file mode 100644 index 45a84554..00000000 Binary files a/www/assets/images/items/craft-bench_256.png and /dev/null differ diff --git a/www/assets/images/items/craft-bench_64.png b/www/assets/images/items/craft-bench_64.png deleted file mode 100644 index c4be352d..00000000 Binary files a/www/assets/images/items/craft-bench_64.png and /dev/null differ diff --git a/www/assets/images/items/crude-oil_256.png b/www/assets/images/items/crude-oil_256.png deleted file mode 100644 index 66ed9801..00000000 Binary files a/www/assets/images/items/crude-oil_256.png and /dev/null differ diff --git a/www/assets/images/items/crude-oil_64.png b/www/assets/images/items/crude-oil_64.png deleted file mode 100644 index 8a19028f..00000000 Binary files a/www/assets/images/items/crude-oil_64.png and /dev/null differ diff --git a/www/assets/images/items/crystal-oscillator-1_256.png b/www/assets/images/items/crystal-oscillator-1_256.png deleted file mode 100644 index 3e924aa4..00000000 Binary files a/www/assets/images/items/crystal-oscillator-1_256.png and /dev/null differ diff --git a/www/assets/images/items/crystal-oscillator-1_64.png b/www/assets/images/items/crystal-oscillator-1_64.png deleted file mode 100644 index 36021af0..00000000 Binary files a/www/assets/images/items/crystal-oscillator-1_64.png and /dev/null differ diff --git a/www/assets/images/items/crystal-oscillator_256.png b/www/assets/images/items/crystal-oscillator_256.png deleted file mode 100644 index f8fd6524..00000000 Binary files a/www/assets/images/items/crystal-oscillator_256.png and /dev/null differ diff --git a/www/assets/images/items/crystal-oscillator_64.png b/www/assets/images/items/crystal-oscillator_64.png deleted file mode 100644 index 0a5a6587..00000000 Binary files a/www/assets/images/items/crystal-oscillator_64.png and /dev/null differ diff --git a/www/assets/images/items/cyber-wagon-1_256.png b/www/assets/images/items/cyber-wagon-1_256.png deleted file mode 100644 index c5e2caed..00000000 Binary files a/www/assets/images/items/cyber-wagon-1_256.png and /dev/null differ diff --git a/www/assets/images/items/cyber-wagon-1_64.png b/www/assets/images/items/cyber-wagon-1_64.png deleted file mode 100644 index 5c233ef4..00000000 Binary files a/www/assets/images/items/cyber-wagon-1_64.png and /dev/null differ diff --git a/www/assets/images/items/cyber-wagon_256.png b/www/assets/images/items/cyber-wagon_256.png deleted file mode 100644 index e3f9ca41..00000000 Binary files a/www/assets/images/items/cyber-wagon_256.png and /dev/null differ diff --git a/www/assets/images/items/cyber-wagon_64.png b/www/assets/images/items/cyber-wagon_64.png deleted file mode 100644 index 6d7b325d..00000000 Binary files a/www/assets/images/items/cyber-wagon_64.png and /dev/null differ diff --git a/www/assets/images/items/desc-aliendnacapsule-c_256.png b/www/assets/images/items/desc-aliendnacapsule-c_256.png new file mode 100644 index 00000000..7b3c883d Binary files /dev/null and b/www/assets/images/items/desc-aliendnacapsule-c_256.png differ diff --git a/www/assets/images/items/desc-aliendnacapsule-c_64.png b/www/assets/images/items/desc-aliendnacapsule-c_64.png new file mode 100644 index 00000000..7e1e10e1 Binary files /dev/null and b/www/assets/images/items/desc-aliendnacapsule-c_64.png differ diff --git a/www/assets/images/items/desc-alienpowerbuilding-c_256.png b/www/assets/images/items/desc-alienpowerbuilding-c_256.png new file mode 100644 index 00000000..1fd070ef Binary files /dev/null and b/www/assets/images/items/desc-alienpowerbuilding-c_256.png differ diff --git a/www/assets/images/items/desc-alienpowerbuilding-c_64.png b/www/assets/images/items/desc-alienpowerbuilding-c_64.png new file mode 100644 index 00000000..5932d226 Binary files /dev/null and b/www/assets/images/items/desc-alienpowerbuilding-c_64.png differ diff --git a/www/assets/images/items/desc-alienpowerfuel-c_256.png b/www/assets/images/items/desc-alienpowerfuel-c_256.png new file mode 100644 index 00000000..0ae33487 Binary files /dev/null and b/www/assets/images/items/desc-alienpowerfuel-c_256.png differ diff --git a/www/assets/images/items/desc-alienpowerfuel-c_64.png b/www/assets/images/items/desc-alienpowerfuel-c_64.png new file mode 100644 index 00000000..6113f00c Binary files /dev/null and b/www/assets/images/items/desc-alienpowerfuel-c_64.png differ diff --git a/www/assets/images/items/desc-alienprotein-c_256.png b/www/assets/images/items/desc-alienprotein-c_256.png new file mode 100644 index 00000000..daccda21 Binary files /dev/null and b/www/assets/images/items/desc-alienprotein-c_256.png differ diff --git a/www/assets/images/items/desc-alienprotein-c_64.png b/www/assets/images/items/desc-alienprotein-c_64.png new file mode 100644 index 00000000..c4c92808 Binary files /dev/null and b/www/assets/images/items/desc-alienprotein-c_64.png differ diff --git a/www/assets/images/items/desc-aluminasolution-c_256.png b/www/assets/images/items/desc-aluminasolution-c_256.png new file mode 100644 index 00000000..f54d6ce3 Binary files /dev/null and b/www/assets/images/items/desc-aluminasolution-c_256.png differ diff --git a/www/assets/images/items/desc-aluminasolution-c_64.png b/www/assets/images/items/desc-aluminasolution-c_64.png new file mode 100644 index 00000000..3f6d2d32 Binary files /dev/null and b/www/assets/images/items/desc-aluminasolution-c_64.png differ diff --git a/www/assets/images/items/desc-aluminumcasing-c_256.png b/www/assets/images/items/desc-aluminumcasing-c_256.png new file mode 100644 index 00000000..ad99a337 Binary files /dev/null and b/www/assets/images/items/desc-aluminumcasing-c_256.png differ diff --git a/www/assets/images/items/desc-aluminumcasing-c_64.png b/www/assets/images/items/desc-aluminumcasing-c_64.png new file mode 100644 index 00000000..aaa8c897 Binary files /dev/null and b/www/assets/images/items/desc-aluminumcasing-c_64.png differ diff --git a/www/assets/images/items/desc-aluminumingot-c_256.png b/www/assets/images/items/desc-aluminumingot-c_256.png new file mode 100644 index 00000000..f964f229 Binary files /dev/null and b/www/assets/images/items/desc-aluminumingot-c_256.png differ diff --git a/www/assets/images/items/desc-aluminumingot-c_64.png b/www/assets/images/items/desc-aluminumingot-c_64.png new file mode 100644 index 00000000..482e04e6 Binary files /dev/null and b/www/assets/images/items/desc-aluminumingot-c_64.png differ diff --git a/www/assets/images/items/desc-aluminumplate-c_256.png b/www/assets/images/items/desc-aluminumplate-c_256.png new file mode 100644 index 00000000..f63867b3 Binary files /dev/null and b/www/assets/images/items/desc-aluminumplate-c_256.png differ diff --git a/www/assets/images/items/desc-aluminumplate-c_64.png b/www/assets/images/items/desc-aluminumplate-c_64.png new file mode 100644 index 00000000..756ffa0f Binary files /dev/null and b/www/assets/images/items/desc-aluminumplate-c_64.png differ diff --git a/www/assets/images/items/desc-aluminumplatereinforced-c_256.png b/www/assets/images/items/desc-aluminumplatereinforced-c_256.png new file mode 100644 index 00000000..c5ce4e58 Binary files /dev/null and b/www/assets/images/items/desc-aluminumplatereinforced-c_256.png differ diff --git a/www/assets/images/items/desc-aluminumplatereinforced-c_64.png b/www/assets/images/items/desc-aluminumplatereinforced-c_64.png new file mode 100644 index 00000000..d0a28b24 Binary files /dev/null and b/www/assets/images/items/desc-aluminumplatereinforced-c_64.png differ diff --git a/www/assets/images/items/desc-aluminumscrap-c_256.png b/www/assets/images/items/desc-aluminumscrap-c_256.png new file mode 100644 index 00000000..3a9dcc94 Binary files /dev/null and b/www/assets/images/items/desc-aluminumscrap-c_256.png differ diff --git a/www/assets/images/items/desc-aluminumscrap-c_64.png b/www/assets/images/items/desc-aluminumscrap-c_64.png new file mode 100644 index 00000000..ac8611e2 Binary files /dev/null and b/www/assets/images/items/desc-aluminumscrap-c_64.png differ diff --git a/www/assets/images/items/desc-assemblermk1-c_256.png b/www/assets/images/items/desc-assemblermk1-c_256.png new file mode 100644 index 00000000..a5838c93 Binary files /dev/null and b/www/assets/images/items/desc-assemblermk1-c_256.png differ diff --git a/www/assets/images/items/desc-assemblermk1-c_64.png b/www/assets/images/items/desc-assemblermk1-c_64.png new file mode 100644 index 00000000..b384b8fb Binary files /dev/null and b/www/assets/images/items/desc-assemblermk1-c_64.png differ diff --git a/www/assets/images/items/desc-barrier-low-01-c_256.png b/www/assets/images/items/desc-barrier-low-01-c_256.png new file mode 100644 index 00000000..7771985a Binary files /dev/null and b/www/assets/images/items/desc-barrier-low-01-c_256.png differ diff --git a/www/assets/images/items/desc-barrier-low-01-c_64.png b/www/assets/images/items/desc-barrier-low-01-c_64.png new file mode 100644 index 00000000..c2daac6e Binary files /dev/null and b/www/assets/images/items/desc-barrier-low-01-c_64.png differ diff --git a/www/assets/images/items/desc-barrier-tall-01-c_256.png b/www/assets/images/items/desc-barrier-tall-01-c_256.png new file mode 100644 index 00000000..c8053c55 Binary files /dev/null and b/www/assets/images/items/desc-barrier-tall-01-c_256.png differ diff --git a/www/assets/images/items/desc-barrier-tall-01-c_64.png b/www/assets/images/items/desc-barrier-tall-01-c_64.png new file mode 100644 index 00000000..a6550e02 Binary files /dev/null and b/www/assets/images/items/desc-barrier-tall-01-c_64.png differ diff --git a/www/assets/images/items/desc-battery-c_256.png b/www/assets/images/items/desc-battery-c_256.png new file mode 100644 index 00000000..0e2bc923 Binary files /dev/null and b/www/assets/images/items/desc-battery-c_256.png differ diff --git a/www/assets/images/items/desc-battery-c_64.png b/www/assets/images/items/desc-battery-c_64.png new file mode 100644 index 00000000..301b7038 Binary files /dev/null and b/www/assets/images/items/desc-battery-c_64.png differ diff --git a/www/assets/images/items/desc-beam-c_256.png b/www/assets/images/items/desc-beam-c_256.png new file mode 100644 index 00000000..deae47c4 Binary files /dev/null and b/www/assets/images/items/desc-beam-c_256.png differ diff --git a/www/assets/images/items/desc-beam-c_64.png b/www/assets/images/items/desc-beam-c_64.png new file mode 100644 index 00000000..d4e78e6a Binary files /dev/null and b/www/assets/images/items/desc-beam-c_64.png differ diff --git a/www/assets/images/items/desc-beam-connector-c_256.png b/www/assets/images/items/desc-beam-connector-c_256.png new file mode 100644 index 00000000..57775887 Binary files /dev/null and b/www/assets/images/items/desc-beam-connector-c_256.png differ diff --git a/www/assets/images/items/desc-beam-connector-c_64.png b/www/assets/images/items/desc-beam-connector-c_64.png new file mode 100644 index 00000000..449c51ac Binary files /dev/null and b/www/assets/images/items/desc-beam-connector-c_64.png differ diff --git a/www/assets/images/items/desc-beam-connector-double-c_256.png b/www/assets/images/items/desc-beam-connector-double-c_256.png new file mode 100644 index 00000000..cbe0700f Binary files /dev/null and b/www/assets/images/items/desc-beam-connector-double-c_256.png differ diff --git a/www/assets/images/items/desc-beam-connector-double-c_64.png b/www/assets/images/items/desc-beam-connector-double-c_64.png new file mode 100644 index 00000000..d4c674c9 Binary files /dev/null and b/www/assets/images/items/desc-beam-connector-double-c_64.png differ diff --git a/www/assets/images/items/desc-beam-painted-c_256.png b/www/assets/images/items/desc-beam-painted-c_256.png new file mode 100644 index 00000000..0b613414 Binary files /dev/null and b/www/assets/images/items/desc-beam-painted-c_256.png differ diff --git a/www/assets/images/items/desc-beam-painted-c_64.png b/www/assets/images/items/desc-beam-painted-c_64.png new file mode 100644 index 00000000..8029bda2 Binary files /dev/null and b/www/assets/images/items/desc-beam-painted-c_64.png differ diff --git a/www/assets/images/items/desc-beam-support-c_256.png b/www/assets/images/items/desc-beam-support-c_256.png new file mode 100644 index 00000000..701cadf8 Binary files /dev/null and b/www/assets/images/items/desc-beam-support-c_256.png differ diff --git a/www/assets/images/items/desc-beam-support-c_64.png b/www/assets/images/items/desc-beam-support-c_64.png new file mode 100644 index 00000000..4b04a2e6 Binary files /dev/null and b/www/assets/images/items/desc-beam-support-c_64.png differ diff --git a/www/assets/images/items/desc-berry-c_256.png b/www/assets/images/items/desc-berry-c_256.png new file mode 100644 index 00000000..4dbeb9d7 Binary files /dev/null and b/www/assets/images/items/desc-berry-c_256.png differ diff --git a/www/assets/images/items/desc-berry-c_64.png b/www/assets/images/items/desc-berry-c_64.png new file mode 100644 index 00000000..bf86b72e Binary files /dev/null and b/www/assets/images/items/desc-berry-c_64.png differ diff --git a/www/assets/images/items/desc-biofuel-c_256.png b/www/assets/images/items/desc-biofuel-c_256.png new file mode 100644 index 00000000..58182244 Binary files /dev/null and b/www/assets/images/items/desc-biofuel-c_256.png differ diff --git a/www/assets/images/items/desc-biofuel-c_64.png b/www/assets/images/items/desc-biofuel-c_64.png new file mode 100644 index 00000000..8bb87a4d Binary files /dev/null and b/www/assets/images/items/desc-biofuel-c_64.png differ diff --git a/www/assets/images/items/desc-blender-c_256.png b/www/assets/images/items/desc-blender-c_256.png new file mode 100644 index 00000000..9ac50a7c Binary files /dev/null and b/www/assets/images/items/desc-blender-c_256.png differ diff --git a/www/assets/images/items/desc-blender-c_64.png b/www/assets/images/items/desc-blender-c_64.png new file mode 100644 index 00000000..4c27bff2 Binary files /dev/null and b/www/assets/images/items/desc-blender-c_64.png differ diff --git a/www/assets/images/items/desc-blueprintdesigner-c_256.png b/www/assets/images/items/desc-blueprintdesigner-c_256.png new file mode 100644 index 00000000..d78deb39 Binary files /dev/null and b/www/assets/images/items/desc-blueprintdesigner-c_256.png differ diff --git a/www/assets/images/items/desc-blueprintdesigner-c_64.png b/www/assets/images/items/desc-blueprintdesigner-c_64.png new file mode 100644 index 00000000..9da0b4de Binary files /dev/null and b/www/assets/images/items/desc-blueprintdesigner-c_64.png differ diff --git a/www/assets/images/items/desc-blueprintdesigner-mk2-c_256.png b/www/assets/images/items/desc-blueprintdesigner-mk2-c_256.png new file mode 100644 index 00000000..5cbd54ef Binary files /dev/null and b/www/assets/images/items/desc-blueprintdesigner-mk2-c_256.png differ diff --git a/www/assets/images/items/desc-blueprintdesigner-mk2-c_64.png b/www/assets/images/items/desc-blueprintdesigner-mk2-c_64.png new file mode 100644 index 00000000..c9c97cb4 Binary files /dev/null and b/www/assets/images/items/desc-blueprintdesigner-mk2-c_64.png differ diff --git a/www/assets/images/items/desc-blueprintdesigner-mk3-c_256.png b/www/assets/images/items/desc-blueprintdesigner-mk3-c_256.png new file mode 100644 index 00000000..042efb65 Binary files /dev/null and b/www/assets/images/items/desc-blueprintdesigner-mk3-c_256.png differ diff --git a/www/assets/images/items/desc-blueprintdesigner-mk3-c_64.png b/www/assets/images/items/desc-blueprintdesigner-mk3-c_64.png new file mode 100644 index 00000000..ec516c51 Binary files /dev/null and b/www/assets/images/items/desc-blueprintdesigner-mk3-c_64.png differ diff --git a/www/assets/images/items/desc-cable-c_256.png b/www/assets/images/items/desc-cable-c_256.png new file mode 100644 index 00000000..6099b232 Binary files /dev/null and b/www/assets/images/items/desc-cable-c_256.png differ diff --git a/www/assets/images/items/desc-cable-c_64.png b/www/assets/images/items/desc-cable-c_64.png new file mode 100644 index 00000000..ad0ee1df Binary files /dev/null and b/www/assets/images/items/desc-cable-c_64.png differ diff --git a/www/assets/images/items/desc-candycane-c_256.png b/www/assets/images/items/desc-candycane-c_256.png new file mode 100644 index 00000000..0e6f4deb Binary files /dev/null and b/www/assets/images/items/desc-candycane-c_256.png differ diff --git a/www/assets/images/items/desc-candycane-c_64.png b/www/assets/images/items/desc-candycane-c_64.png new file mode 100644 index 00000000..1cbfec5c Binary files /dev/null and b/www/assets/images/items/desc-candycane-c_64.png differ diff --git a/www/assets/images/items/desc-candycanedecor-c_256.png b/www/assets/images/items/desc-candycanedecor-c_256.png new file mode 100644 index 00000000..68cee7e8 Binary files /dev/null and b/www/assets/images/items/desc-candycanedecor-c_256.png differ diff --git a/www/assets/images/items/desc-candycanedecor-c_64.png b/www/assets/images/items/desc-candycanedecor-c_64.png new file mode 100644 index 00000000..f2dade1e Binary files /dev/null and b/www/assets/images/items/desc-candycanedecor-c_64.png differ diff --git a/www/assets/images/items/desc-cartridgechaos-c_256.png b/www/assets/images/items/desc-cartridgechaos-c_256.png new file mode 100644 index 00000000..878d1cb7 Binary files /dev/null and b/www/assets/images/items/desc-cartridgechaos-c_256.png differ diff --git a/www/assets/images/items/desc-cartridgechaos-c_64.png b/www/assets/images/items/desc-cartridgechaos-c_64.png new file mode 100644 index 00000000..b43772ad Binary files /dev/null and b/www/assets/images/items/desc-cartridgechaos-c_64.png differ diff --git a/www/assets/images/items/desc-cartridgesmartprojectile-c_256.png b/www/assets/images/items/desc-cartridgesmartprojectile-c_256.png new file mode 100644 index 00000000..97c794f2 Binary files /dev/null and b/www/assets/images/items/desc-cartridgesmartprojectile-c_256.png differ diff --git a/www/assets/images/items/desc-cartridgesmartprojectile-c_64.png b/www/assets/images/items/desc-cartridgesmartprojectile-c_64.png new file mode 100644 index 00000000..2c4487f4 Binary files /dev/null and b/www/assets/images/items/desc-cartridgesmartprojectile-c_64.png differ diff --git a/www/assets/images/items/desc-cartridgestandard-c_256.png b/www/assets/images/items/desc-cartridgestandard-c_256.png new file mode 100644 index 00000000..8d5a5447 Binary files /dev/null and b/www/assets/images/items/desc-cartridgestandard-c_256.png differ diff --git a/www/assets/images/items/desc-cartridgestandard-c_64.png b/www/assets/images/items/desc-cartridgestandard-c_64.png new file mode 100644 index 00000000..ae5ba96c Binary files /dev/null and b/www/assets/images/items/desc-cartridgestandard-c_64.png differ diff --git a/www/assets/images/items/desc-catwalkcross-c_256.png b/www/assets/images/items/desc-catwalkcross-c_256.png new file mode 100644 index 00000000..be91b6c1 Binary files /dev/null and b/www/assets/images/items/desc-catwalkcross-c_256.png differ diff --git a/www/assets/images/items/desc-catwalkcross-c_64.png b/www/assets/images/items/desc-catwalkcross-c_64.png new file mode 100644 index 00000000..1030f230 Binary files /dev/null and b/www/assets/images/items/desc-catwalkcross-c_64.png differ diff --git a/www/assets/images/items/desc-catwalkramp-c_256.png b/www/assets/images/items/desc-catwalkramp-c_256.png new file mode 100644 index 00000000..3eed4cfb Binary files /dev/null and b/www/assets/images/items/desc-catwalkramp-c_256.png differ diff --git a/www/assets/images/items/desc-catwalkramp-c_64.png b/www/assets/images/items/desc-catwalkramp-c_64.png new file mode 100644 index 00000000..f2bf4482 Binary files /dev/null and b/www/assets/images/items/desc-catwalkramp-c_64.png differ diff --git a/www/assets/images/items/desc-catwalkstairs-c_256.png b/www/assets/images/items/desc-catwalkstairs-c_256.png new file mode 100644 index 00000000..3ad22625 Binary files /dev/null and b/www/assets/images/items/desc-catwalkstairs-c_256.png differ diff --git a/www/assets/images/items/desc-catwalkstairs-c_64.png b/www/assets/images/items/desc-catwalkstairs-c_64.png new file mode 100644 index 00000000..4755f89e Binary files /dev/null and b/www/assets/images/items/desc-catwalkstairs-c_64.png differ diff --git a/www/assets/images/items/desc-catwalkstraight-c_256.png b/www/assets/images/items/desc-catwalkstraight-c_256.png new file mode 100644 index 00000000..7a789786 Binary files /dev/null and b/www/assets/images/items/desc-catwalkstraight-c_256.png differ diff --git a/www/assets/images/items/desc-catwalkstraight-c_64.png b/www/assets/images/items/desc-catwalkstraight-c_64.png new file mode 100644 index 00000000..9beccb55 Binary files /dev/null and b/www/assets/images/items/desc-catwalkstraight-c_64.png differ diff --git a/www/assets/images/items/desc-catwalkt-c_256.png b/www/assets/images/items/desc-catwalkt-c_256.png new file mode 100644 index 00000000..2dd5e6f4 Binary files /dev/null and b/www/assets/images/items/desc-catwalkt-c_256.png differ diff --git a/www/assets/images/items/desc-catwalkt-c_64.png b/www/assets/images/items/desc-catwalkt-c_64.png new file mode 100644 index 00000000..5e56e1d1 Binary files /dev/null and b/www/assets/images/items/desc-catwalkt-c_64.png differ diff --git a/www/assets/images/items/desc-catwalkturn-c_256.png b/www/assets/images/items/desc-catwalkturn-c_256.png new file mode 100644 index 00000000..a76f65a3 Binary files /dev/null and b/www/assets/images/items/desc-catwalkturn-c_256.png differ diff --git a/www/assets/images/items/desc-catwalkturn-c_64.png b/www/assets/images/items/desc-catwalkturn-c_64.png new file mode 100644 index 00000000..93ad37b5 Binary files /dev/null and b/www/assets/images/items/desc-catwalkturn-c_64.png differ diff --git a/www/assets/images/items/desc-ceilinglight-c_256.png b/www/assets/images/items/desc-ceilinglight-c_256.png new file mode 100644 index 00000000..9ca2b38f Binary files /dev/null and b/www/assets/images/items/desc-ceilinglight-c_256.png differ diff --git a/www/assets/images/items/desc-ceilinglight-c_64.png b/www/assets/images/items/desc-ceilinglight-c_64.png new file mode 100644 index 00000000..d22c9302 Binary files /dev/null and b/www/assets/images/items/desc-ceilinglight-c_64.png differ diff --git a/www/assets/images/items/desc-cement-c_256.png b/www/assets/images/items/desc-cement-c_256.png new file mode 100644 index 00000000..9112fec4 Binary files /dev/null and b/www/assets/images/items/desc-cement-c_256.png differ diff --git a/www/assets/images/items/desc-cement-c_64.png b/www/assets/images/items/desc-cement-c_64.png new file mode 100644 index 00000000..157fd8ca Binary files /dev/null and b/www/assets/images/items/desc-cement-c_64.png differ diff --git a/www/assets/images/items/desc-centralstorage-c_256.png b/www/assets/images/items/desc-centralstorage-c_256.png new file mode 100644 index 00000000..8dd3490c Binary files /dev/null and b/www/assets/images/items/desc-centralstorage-c_256.png differ diff --git a/www/assets/images/items/desc-centralstorage-c_64.png b/www/assets/images/items/desc-centralstorage-c_64.png new file mode 100644 index 00000000..0e86d9a0 Binary files /dev/null and b/www/assets/images/items/desc-centralstorage-c_64.png differ diff --git a/www/assets/images/items/desc-chainlinkfence-c_256.png b/www/assets/images/items/desc-chainlinkfence-c_256.png new file mode 100644 index 00000000..51c93c59 Binary files /dev/null and b/www/assets/images/items/desc-chainlinkfence-c_256.png differ diff --git a/www/assets/images/items/desc-chainlinkfence-c_64.png b/www/assets/images/items/desc-chainlinkfence-c_64.png new file mode 100644 index 00000000..16a32327 Binary files /dev/null and b/www/assets/images/items/desc-chainlinkfence-c_64.png differ diff --git a/www/assets/images/items/desc-chainsaw-c_256.png b/www/assets/images/items/desc-chainsaw-c_256.png new file mode 100644 index 00000000..64a38960 Binary files /dev/null and b/www/assets/images/items/desc-chainsaw-c_256.png differ diff --git a/www/assets/images/items/desc-chainsaw-c_64.png b/www/assets/images/items/desc-chainsaw-c_64.png new file mode 100644 index 00000000..9dd760a0 Binary files /dev/null and b/www/assets/images/items/desc-chainsaw-c_64.png differ diff --git a/www/assets/images/items/desc-circuitboard-c_256.png b/www/assets/images/items/desc-circuitboard-c_256.png new file mode 100644 index 00000000..90472ce4 Binary files /dev/null and b/www/assets/images/items/desc-circuitboard-c_256.png differ diff --git a/www/assets/images/items/desc-circuitboard-c_64.png b/www/assets/images/items/desc-circuitboard-c_64.png new file mode 100644 index 00000000..26edd241 Binary files /dev/null and b/www/assets/images/items/desc-circuitboard-c_64.png differ diff --git a/www/assets/images/items/desc-circuitboardhighspeed-c_256.png b/www/assets/images/items/desc-circuitboardhighspeed-c_256.png new file mode 100644 index 00000000..47196f72 Binary files /dev/null and b/www/assets/images/items/desc-circuitboardhighspeed-c_256.png differ diff --git a/www/assets/images/items/desc-circuitboardhighspeed-c_64.png b/www/assets/images/items/desc-circuitboardhighspeed-c_64.png new file mode 100644 index 00000000..28535509 Binary files /dev/null and b/www/assets/images/items/desc-circuitboardhighspeed-c_64.png differ diff --git a/www/assets/images/items/desc-coal-c_256.png b/www/assets/images/items/desc-coal-c_256.png new file mode 100644 index 00000000..18d1eacd Binary files /dev/null and b/www/assets/images/items/desc-coal-c_256.png differ diff --git a/www/assets/images/items/desc-coal-c_64.png b/www/assets/images/items/desc-coal-c_64.png new file mode 100644 index 00000000..ddbdefb5 Binary files /dev/null and b/www/assets/images/items/desc-coal-c_64.png differ diff --git a/www/assets/images/items/desc-compactedcoal-c_256.png b/www/assets/images/items/desc-compactedcoal-c_256.png new file mode 100644 index 00000000..faddf687 Binary files /dev/null and b/www/assets/images/items/desc-compactedcoal-c_256.png differ diff --git a/www/assets/images/items/desc-compactedcoal-c_64.png b/www/assets/images/items/desc-compactedcoal-c_64.png new file mode 100644 index 00000000..83172989 Binary files /dev/null and b/www/assets/images/items/desc-compactedcoal-c_64.png differ diff --git a/www/assets/images/items/desc-computer-c_256.png b/www/assets/images/items/desc-computer-c_256.png new file mode 100644 index 00000000..1a8e3e80 Binary files /dev/null and b/www/assets/images/items/desc-computer-c_256.png differ diff --git a/www/assets/images/items/desc-computer-c_64.png b/www/assets/images/items/desc-computer-c_64.png new file mode 100644 index 00000000..d8e3df7f Binary files /dev/null and b/www/assets/images/items/desc-computer-c_64.png differ diff --git a/www/assets/images/items/desc-computersuper-c_256.png b/www/assets/images/items/desc-computersuper-c_256.png new file mode 100644 index 00000000..1de2ae53 Binary files /dev/null and b/www/assets/images/items/desc-computersuper-c_256.png differ diff --git a/www/assets/images/items/desc-computersuper-c_64.png b/www/assets/images/items/desc-computersuper-c_64.png new file mode 100644 index 00000000..ab44fb42 Binary files /dev/null and b/www/assets/images/items/desc-computersuper-c_64.png differ diff --git a/www/assets/images/items/desc-concrete-barrier-01-c_256.png b/www/assets/images/items/desc-concrete-barrier-01-c_256.png new file mode 100644 index 00000000..fa1edbaf Binary files /dev/null and b/www/assets/images/items/desc-concrete-barrier-01-c_256.png differ diff --git a/www/assets/images/items/desc-concrete-barrier-01-c_64.png b/www/assets/images/items/desc-concrete-barrier-01-c_64.png new file mode 100644 index 00000000..d96e8713 Binary files /dev/null and b/www/assets/images/items/desc-concrete-barrier-01-c_64.png differ diff --git a/www/assets/images/items/desc-constructormk1-c_256.png b/www/assets/images/items/desc-constructormk1-c_256.png new file mode 100644 index 00000000..cd5b7bd4 Binary files /dev/null and b/www/assets/images/items/desc-constructormk1-c_256.png differ diff --git a/www/assets/images/items/desc-constructormk1-c_64.png b/www/assets/images/items/desc-constructormk1-c_64.png new file mode 100644 index 00000000..8fb06235 Binary files /dev/null and b/www/assets/images/items/desc-constructormk1-c_64.png differ diff --git a/www/assets/images/items/desc-converter-c_256.png b/www/assets/images/items/desc-converter-c_256.png new file mode 100644 index 00000000..17eaed82 Binary files /dev/null and b/www/assets/images/items/desc-converter-c_256.png differ diff --git a/www/assets/images/items/desc-converter-c_64.png b/www/assets/images/items/desc-converter-c_64.png new file mode 100644 index 00000000..43373878 Binary files /dev/null and b/www/assets/images/items/desc-converter-c_64.png differ diff --git a/www/assets/images/items/desc-conveyorattachmentmerger-c_256.png b/www/assets/images/items/desc-conveyorattachmentmerger-c_256.png new file mode 100644 index 00000000..216b91ff Binary files /dev/null and b/www/assets/images/items/desc-conveyorattachmentmerger-c_256.png differ diff --git a/www/assets/images/items/desc-conveyorattachmentmerger-c_64.png b/www/assets/images/items/desc-conveyorattachmentmerger-c_64.png new file mode 100644 index 00000000..04b8fad6 Binary files /dev/null and b/www/assets/images/items/desc-conveyorattachmentmerger-c_64.png differ diff --git a/www/assets/images/items/desc-conveyorattachmentsplitter-c_256.png b/www/assets/images/items/desc-conveyorattachmentsplitter-c_256.png new file mode 100644 index 00000000..4c27b321 Binary files /dev/null and b/www/assets/images/items/desc-conveyorattachmentsplitter-c_256.png differ diff --git a/www/assets/images/items/desc-conveyorattachmentsplitter-c_64.png b/www/assets/images/items/desc-conveyorattachmentsplitter-c_64.png new file mode 100644 index 00000000..76b281fb Binary files /dev/null and b/www/assets/images/items/desc-conveyorattachmentsplitter-c_64.png differ diff --git a/www/assets/images/items/desc-conveyorattachmentsplitterprogrammable-c_256.png b/www/assets/images/items/desc-conveyorattachmentsplitterprogrammable-c_256.png new file mode 100644 index 00000000..35d12c26 Binary files /dev/null and b/www/assets/images/items/desc-conveyorattachmentsplitterprogrammable-c_256.png differ diff --git a/www/assets/images/items/desc-conveyorattachmentsplitterprogrammable-c_64.png b/www/assets/images/items/desc-conveyorattachmentsplitterprogrammable-c_64.png new file mode 100644 index 00000000..809c1be9 Binary files /dev/null and b/www/assets/images/items/desc-conveyorattachmentsplitterprogrammable-c_64.png differ diff --git a/www/assets/images/items/desc-conveyorattachmentsplittersmart-c_256.png b/www/assets/images/items/desc-conveyorattachmentsplittersmart-c_256.png new file mode 100644 index 00000000..bc25155a Binary files /dev/null and b/www/assets/images/items/desc-conveyorattachmentsplittersmart-c_256.png differ diff --git a/www/assets/images/items/desc-conveyorattachmentsplittersmart-c_64.png b/www/assets/images/items/desc-conveyorattachmentsplittersmart-c_64.png new file mode 100644 index 00000000..8ea005eb Binary files /dev/null and b/www/assets/images/items/desc-conveyorattachmentsplittersmart-c_64.png differ diff --git a/www/assets/images/items/desc-conveyorbeltmk1-c_256.png b/www/assets/images/items/desc-conveyorbeltmk1-c_256.png new file mode 100644 index 00000000..54972c6c Binary files /dev/null and b/www/assets/images/items/desc-conveyorbeltmk1-c_256.png differ diff --git a/www/assets/images/items/desc-conveyorbeltmk1-c_64.png b/www/assets/images/items/desc-conveyorbeltmk1-c_64.png new file mode 100644 index 00000000..aa017a4c Binary files /dev/null and b/www/assets/images/items/desc-conveyorbeltmk1-c_64.png differ diff --git a/www/assets/images/items/desc-conveyorbeltmk2-c_256.png b/www/assets/images/items/desc-conveyorbeltmk2-c_256.png new file mode 100644 index 00000000..c9ec1081 Binary files /dev/null and b/www/assets/images/items/desc-conveyorbeltmk2-c_256.png differ diff --git a/www/assets/images/items/desc-conveyorbeltmk2-c_64.png b/www/assets/images/items/desc-conveyorbeltmk2-c_64.png new file mode 100644 index 00000000..b0884ebd Binary files /dev/null and b/www/assets/images/items/desc-conveyorbeltmk2-c_64.png differ diff --git a/www/assets/images/items/desc-conveyorbeltmk3-c_256.png b/www/assets/images/items/desc-conveyorbeltmk3-c_256.png new file mode 100644 index 00000000..bbbbb0ab Binary files /dev/null and b/www/assets/images/items/desc-conveyorbeltmk3-c_256.png differ diff --git a/www/assets/images/items/desc-conveyorbeltmk3-c_64.png b/www/assets/images/items/desc-conveyorbeltmk3-c_64.png new file mode 100644 index 00000000..265ffc45 Binary files /dev/null and b/www/assets/images/items/desc-conveyorbeltmk3-c_64.png differ diff --git a/www/assets/images/items/desc-conveyorbeltmk4-c_256.png b/www/assets/images/items/desc-conveyorbeltmk4-c_256.png new file mode 100644 index 00000000..1b52ef80 Binary files /dev/null and b/www/assets/images/items/desc-conveyorbeltmk4-c_256.png differ diff --git a/www/assets/images/items/desc-conveyorbeltmk4-c_64.png b/www/assets/images/items/desc-conveyorbeltmk4-c_64.png new file mode 100644 index 00000000..16b53976 Binary files /dev/null and b/www/assets/images/items/desc-conveyorbeltmk4-c_64.png differ diff --git a/www/assets/images/items/desc-conveyorbeltmk5-c_256.png b/www/assets/images/items/desc-conveyorbeltmk5-c_256.png new file mode 100644 index 00000000..54544452 Binary files /dev/null and b/www/assets/images/items/desc-conveyorbeltmk5-c_256.png differ diff --git a/www/assets/images/items/desc-conveyorbeltmk5-c_64.png b/www/assets/images/items/desc-conveyorbeltmk5-c_64.png new file mode 100644 index 00000000..2d89ae67 Binary files /dev/null and b/www/assets/images/items/desc-conveyorbeltmk5-c_64.png differ diff --git a/www/assets/images/items/desc-conveyorbeltmk6-c_256.png b/www/assets/images/items/desc-conveyorbeltmk6-c_256.png new file mode 100644 index 00000000..119dd08e Binary files /dev/null and b/www/assets/images/items/desc-conveyorbeltmk6-c_256.png differ diff --git a/www/assets/images/items/desc-conveyorbeltmk6-c_64.png b/www/assets/images/items/desc-conveyorbeltmk6-c_64.png new file mode 100644 index 00000000..d9884511 Binary files /dev/null and b/www/assets/images/items/desc-conveyorbeltmk6-c_64.png differ diff --git a/www/assets/images/items/desc-conveyorceilingattachment-c_256.png b/www/assets/images/items/desc-conveyorceilingattachment-c_256.png new file mode 100644 index 00000000..e92dc372 Binary files /dev/null and b/www/assets/images/items/desc-conveyorceilingattachment-c_256.png differ diff --git a/www/assets/images/items/desc-conveyorceilingattachment-c_64.png b/www/assets/images/items/desc-conveyorceilingattachment-c_64.png new file mode 100644 index 00000000..d212d0bb Binary files /dev/null and b/www/assets/images/items/desc-conveyorceilingattachment-c_64.png differ diff --git a/www/assets/images/items/desc-conveyorliftmk1-c_256.png b/www/assets/images/items/desc-conveyorliftmk1-c_256.png new file mode 100644 index 00000000..c1624b69 Binary files /dev/null and b/www/assets/images/items/desc-conveyorliftmk1-c_256.png differ diff --git a/www/assets/images/items/desc-conveyorliftmk1-c_64.png b/www/assets/images/items/desc-conveyorliftmk1-c_64.png new file mode 100644 index 00000000..9f401714 Binary files /dev/null and b/www/assets/images/items/desc-conveyorliftmk1-c_64.png differ diff --git a/www/assets/images/items/desc-conveyorliftmk2-c_256.png b/www/assets/images/items/desc-conveyorliftmk2-c_256.png new file mode 100644 index 00000000..b857ecff Binary files /dev/null and b/www/assets/images/items/desc-conveyorliftmk2-c_256.png differ diff --git a/www/assets/images/items/desc-conveyorliftmk2-c_64.png b/www/assets/images/items/desc-conveyorliftmk2-c_64.png new file mode 100644 index 00000000..860efb8d Binary files /dev/null and b/www/assets/images/items/desc-conveyorliftmk2-c_64.png differ diff --git a/www/assets/images/items/desc-conveyorliftmk3-c_256.png b/www/assets/images/items/desc-conveyorliftmk3-c_256.png new file mode 100644 index 00000000..13e4b700 Binary files /dev/null and b/www/assets/images/items/desc-conveyorliftmk3-c_256.png differ diff --git a/www/assets/images/items/desc-conveyorliftmk3-c_64.png b/www/assets/images/items/desc-conveyorliftmk3-c_64.png new file mode 100644 index 00000000..1fd3eb65 Binary files /dev/null and b/www/assets/images/items/desc-conveyorliftmk3-c_64.png differ diff --git a/www/assets/images/items/desc-conveyorliftmk4-c_256.png b/www/assets/images/items/desc-conveyorliftmk4-c_256.png new file mode 100644 index 00000000..a023eaff Binary files /dev/null and b/www/assets/images/items/desc-conveyorliftmk4-c_256.png differ diff --git a/www/assets/images/items/desc-conveyorliftmk4-c_64.png b/www/assets/images/items/desc-conveyorliftmk4-c_64.png new file mode 100644 index 00000000..e40e813d Binary files /dev/null and b/www/assets/images/items/desc-conveyorliftmk4-c_64.png differ diff --git a/www/assets/images/items/desc-conveyorliftmk5-c_256.png b/www/assets/images/items/desc-conveyorliftmk5-c_256.png new file mode 100644 index 00000000..a9f88227 Binary files /dev/null and b/www/assets/images/items/desc-conveyorliftmk5-c_256.png differ diff --git a/www/assets/images/items/desc-conveyorliftmk5-c_64.png b/www/assets/images/items/desc-conveyorliftmk5-c_64.png new file mode 100644 index 00000000..a547eb19 Binary files /dev/null and b/www/assets/images/items/desc-conveyorliftmk5-c_64.png differ diff --git a/www/assets/images/items/desc-conveyorliftmk6-c_256.png b/www/assets/images/items/desc-conveyorliftmk6-c_256.png new file mode 100644 index 00000000..e8ebd49b Binary files /dev/null and b/www/assets/images/items/desc-conveyorliftmk6-c_256.png differ diff --git a/www/assets/images/items/desc-conveyorliftmk6-c_64.png b/www/assets/images/items/desc-conveyorliftmk6-c_64.png new file mode 100644 index 00000000..bf108362 Binary files /dev/null and b/www/assets/images/items/desc-conveyorliftmk6-c_64.png differ diff --git a/www/assets/images/items/desc-conveyorpole-c_256.png b/www/assets/images/items/desc-conveyorpole-c_256.png new file mode 100644 index 00000000..5954c87f Binary files /dev/null and b/www/assets/images/items/desc-conveyorpole-c_256.png differ diff --git a/www/assets/images/items/desc-conveyorpole-c_64.png b/www/assets/images/items/desc-conveyorpole-c_64.png new file mode 100644 index 00000000..d920ec08 Binary files /dev/null and b/www/assets/images/items/desc-conveyorpole-c_64.png differ diff --git a/www/assets/images/items/desc-conveyorpolestackable-c_256.png b/www/assets/images/items/desc-conveyorpolestackable-c_256.png new file mode 100644 index 00000000..95e1d7ef Binary files /dev/null and b/www/assets/images/items/desc-conveyorpolestackable-c_256.png differ diff --git a/www/assets/images/items/desc-conveyorpolestackable-c_64.png b/www/assets/images/items/desc-conveyorpolestackable-c_64.png new file mode 100644 index 00000000..80600a1a Binary files /dev/null and b/www/assets/images/items/desc-conveyorpolestackable-c_64.png differ diff --git a/www/assets/images/items/desc-conveyorpolewall-c_256.png b/www/assets/images/items/desc-conveyorpolewall-c_256.png new file mode 100644 index 00000000..c0b4463d Binary files /dev/null and b/www/assets/images/items/desc-conveyorpolewall-c_256.png differ diff --git a/www/assets/images/items/desc-conveyorpolewall-c_64.png b/www/assets/images/items/desc-conveyorpolewall-c_64.png new file mode 100644 index 00000000..ee1d247a Binary files /dev/null and b/www/assets/images/items/desc-conveyorpolewall-c_64.png differ diff --git a/www/assets/images/items/desc-coolingsystem-c_256.png b/www/assets/images/items/desc-coolingsystem-c_256.png new file mode 100644 index 00000000..f88aca99 Binary files /dev/null and b/www/assets/images/items/desc-coolingsystem-c_256.png differ diff --git a/www/assets/images/items/desc-coolingsystem-c_64.png b/www/assets/images/items/desc-coolingsystem-c_64.png new file mode 100644 index 00000000..1c5b14b0 Binary files /dev/null and b/www/assets/images/items/desc-coolingsystem-c_64.png differ diff --git a/www/assets/images/items/desc-copperdust-c_256.png b/www/assets/images/items/desc-copperdust-c_256.png new file mode 100644 index 00000000..ab9f20dc Binary files /dev/null and b/www/assets/images/items/desc-copperdust-c_256.png differ diff --git a/www/assets/images/items/desc-copperdust-c_64.png b/www/assets/images/items/desc-copperdust-c_64.png new file mode 100644 index 00000000..56efbe1c Binary files /dev/null and b/www/assets/images/items/desc-copperdust-c_64.png differ diff --git a/www/assets/images/items/desc-copperingot-c_256.png b/www/assets/images/items/desc-copperingot-c_256.png new file mode 100644 index 00000000..18aacac5 Binary files /dev/null and b/www/assets/images/items/desc-copperingot-c_256.png differ diff --git a/www/assets/images/items/desc-copperingot-c_64.png b/www/assets/images/items/desc-copperingot-c_64.png new file mode 100644 index 00000000..30d4f714 Binary files /dev/null and b/www/assets/images/items/desc-copperingot-c_64.png differ diff --git a/www/assets/images/items/desc-coppersheet-c_256.png b/www/assets/images/items/desc-coppersheet-c_256.png new file mode 100644 index 00000000..0f2cd055 Binary files /dev/null and b/www/assets/images/items/desc-coppersheet-c_256.png differ diff --git a/www/assets/images/items/desc-coppersheet-c_64.png b/www/assets/images/items/desc-coppersheet-c_64.png new file mode 100644 index 00000000..a8a5a529 Binary files /dev/null and b/www/assets/images/items/desc-coppersheet-c_64.png differ diff --git a/www/assets/images/items/desc-crystal-c_256.png b/www/assets/images/items/desc-crystal-c_256.png new file mode 100644 index 00000000..df4f2bcc Binary files /dev/null and b/www/assets/images/items/desc-crystal-c_256.png differ diff --git a/www/assets/images/items/desc-crystal-c_64.png b/www/assets/images/items/desc-crystal-c_64.png new file mode 100644 index 00000000..8ac69610 Binary files /dev/null and b/www/assets/images/items/desc-crystal-c_64.png differ diff --git a/www/assets/images/items/desc-crystal-mk2-c_256.png b/www/assets/images/items/desc-crystal-mk2-c_256.png new file mode 100644 index 00000000..88bb500c Binary files /dev/null and b/www/assets/images/items/desc-crystal-mk2-c_256.png differ diff --git a/www/assets/images/items/desc-crystal-mk2-c_64.png b/www/assets/images/items/desc-crystal-mk2-c_64.png new file mode 100644 index 00000000..401ed7aa Binary files /dev/null and b/www/assets/images/items/desc-crystal-mk2-c_64.png differ diff --git a/www/assets/images/items/desc-crystal-mk3-c_256.png b/www/assets/images/items/desc-crystal-mk3-c_256.png new file mode 100644 index 00000000..e85c7453 Binary files /dev/null and b/www/assets/images/items/desc-crystal-mk3-c_256.png differ diff --git a/www/assets/images/items/desc-crystal-mk3-c_64.png b/www/assets/images/items/desc-crystal-mk3-c_64.png new file mode 100644 index 00000000..b17bea2d Binary files /dev/null and b/www/assets/images/items/desc-crystal-mk3-c_64.png differ diff --git a/www/assets/images/items/desc-crystaloscillator-c_256.png b/www/assets/images/items/desc-crystaloscillator-c_256.png new file mode 100644 index 00000000..f9ddf998 Binary files /dev/null and b/www/assets/images/items/desc-crystaloscillator-c_256.png differ diff --git a/www/assets/images/items/desc-crystaloscillator-c_64.png b/www/assets/images/items/desc-crystaloscillator-c_64.png new file mode 100644 index 00000000..2f0d04df Binary files /dev/null and b/www/assets/images/items/desc-crystaloscillator-c_64.png differ diff --git a/www/assets/images/items/desc-crystalshard-c_256.png b/www/assets/images/items/desc-crystalshard-c_256.png new file mode 100644 index 00000000..793ffa4e Binary files /dev/null and b/www/assets/images/items/desc-crystalshard-c_256.png differ diff --git a/www/assets/images/items/desc-crystalshard-c_64.png b/www/assets/images/items/desc-crystalshard-c_64.png new file mode 100644 index 00000000..1006d66f Binary files /dev/null and b/www/assets/images/items/desc-crystalshard-c_64.png differ diff --git a/www/assets/images/items/desc-cyberwagon-c_256.png b/www/assets/images/items/desc-cyberwagon-c_256.png new file mode 100644 index 00000000..2e7f5b52 Binary files /dev/null and b/www/assets/images/items/desc-cyberwagon-c_256.png differ diff --git a/www/assets/images/items/desc-cyberwagon-c_64.png b/www/assets/images/items/desc-cyberwagon-c_64.png new file mode 100644 index 00000000..e9d356b0 Binary files /dev/null and b/www/assets/images/items/desc-cyberwagon-c_64.png differ diff --git a/www/assets/images/items/desc-darkenergy-c_256.png b/www/assets/images/items/desc-darkenergy-c_256.png new file mode 100644 index 00000000..0c02b8bf Binary files /dev/null and b/www/assets/images/items/desc-darkenergy-c_256.png differ diff --git a/www/assets/images/items/desc-darkenergy-c_64.png b/www/assets/images/items/desc-darkenergy-c_64.png new file mode 100644 index 00000000..d1b1b708 Binary files /dev/null and b/www/assets/images/items/desc-darkenergy-c_64.png differ diff --git a/www/assets/images/items/desc-darkmatter-c_256.png b/www/assets/images/items/desc-darkmatter-c_256.png new file mode 100644 index 00000000..12904af8 Binary files /dev/null and b/www/assets/images/items/desc-darkmatter-c_256.png differ diff --git a/www/assets/images/items/desc-darkmatter-c_64.png b/www/assets/images/items/desc-darkmatter-c_64.png new file mode 100644 index 00000000..6e21ff2b Binary files /dev/null and b/www/assets/images/items/desc-darkmatter-c_64.png differ diff --git a/www/assets/images/items/desc-diamond-c_256.png b/www/assets/images/items/desc-diamond-c_256.png new file mode 100644 index 00000000..a861a420 Binary files /dev/null and b/www/assets/images/items/desc-diamond-c_256.png differ diff --git a/www/assets/images/items/desc-diamond-c_64.png b/www/assets/images/items/desc-diamond-c_64.png new file mode 100644 index 00000000..a2b6d6d1 Binary files /dev/null and b/www/assets/images/items/desc-diamond-c_64.png differ diff --git a/www/assets/images/items/desc-dissolvedsilica-c_256.png b/www/assets/images/items/desc-dissolvedsilica-c_256.png new file mode 100644 index 00000000..94f31a95 Binary files /dev/null and b/www/assets/images/items/desc-dissolvedsilica-c_256.png differ diff --git a/www/assets/images/items/desc-dissolvedsilica-c_64.png b/www/assets/images/items/desc-dissolvedsilica-c_64.png new file mode 100644 index 00000000..fda827eb Binary files /dev/null and b/www/assets/images/items/desc-dissolvedsilica-c_64.png differ diff --git a/www/assets/images/items/desc-downquarterpipe-asphalt-8x4-c_256.png b/www/assets/images/items/desc-downquarterpipe-asphalt-8x4-c_256.png new file mode 100644 index 00000000..de18f3d5 Binary files /dev/null and b/www/assets/images/items/desc-downquarterpipe-asphalt-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-downquarterpipe-asphalt-8x4-c_64.png b/www/assets/images/items/desc-downquarterpipe-asphalt-8x4-c_64.png new file mode 100644 index 00000000..2c5fd8e2 Binary files /dev/null and b/www/assets/images/items/desc-downquarterpipe-asphalt-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-downquarterpipe-concrete-8x4-c_256.png b/www/assets/images/items/desc-downquarterpipe-concrete-8x4-c_256.png new file mode 100644 index 00000000..4a8b395c Binary files /dev/null and b/www/assets/images/items/desc-downquarterpipe-concrete-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-downquarterpipe-concrete-8x4-c_64.png b/www/assets/images/items/desc-downquarterpipe-concrete-8x4-c_64.png new file mode 100644 index 00000000..f7257c24 Binary files /dev/null and b/www/assets/images/items/desc-downquarterpipe-concrete-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-downquarterpipe-concretepolished-8x4-c_256.png b/www/assets/images/items/desc-downquarterpipe-concretepolished-8x4-c_256.png new file mode 100644 index 00000000..07489b42 Binary files /dev/null and b/www/assets/images/items/desc-downquarterpipe-concretepolished-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-downquarterpipe-concretepolished-8x4-c_64.png b/www/assets/images/items/desc-downquarterpipe-concretepolished-8x4-c_64.png new file mode 100644 index 00000000..816c87ac Binary files /dev/null and b/www/assets/images/items/desc-downquarterpipe-concretepolished-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-downquarterpipe-grip-8x4-c_256.png b/www/assets/images/items/desc-downquarterpipe-grip-8x4-c_256.png new file mode 100644 index 00000000..1884f5cf Binary files /dev/null and b/www/assets/images/items/desc-downquarterpipe-grip-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-downquarterpipe-grip-8x4-c_64.png b/www/assets/images/items/desc-downquarterpipe-grip-8x4-c_64.png new file mode 100644 index 00000000..4d626354 Binary files /dev/null and b/www/assets/images/items/desc-downquarterpipe-grip-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-downquarterpipeincorner-asphalt-8x4-c_256.png b/www/assets/images/items/desc-downquarterpipeincorner-asphalt-8x4-c_256.png new file mode 100644 index 00000000..ffa61a7e Binary files /dev/null and b/www/assets/images/items/desc-downquarterpipeincorner-asphalt-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-downquarterpipeincorner-asphalt-8x4-c_64.png b/www/assets/images/items/desc-downquarterpipeincorner-asphalt-8x4-c_64.png new file mode 100644 index 00000000..067a5346 Binary files /dev/null and b/www/assets/images/items/desc-downquarterpipeincorner-asphalt-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-downquarterpipeincorner-concrete-8x4-c_256.png b/www/assets/images/items/desc-downquarterpipeincorner-concrete-8x4-c_256.png new file mode 100644 index 00000000..346059dc Binary files /dev/null and b/www/assets/images/items/desc-downquarterpipeincorner-concrete-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-downquarterpipeincorner-concrete-8x4-c_64.png b/www/assets/images/items/desc-downquarterpipeincorner-concrete-8x4-c_64.png new file mode 100644 index 00000000..6879138d Binary files /dev/null and b/www/assets/images/items/desc-downquarterpipeincorner-concrete-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-downquarterpipeincorner-concretepolished-8x4-c_256.png b/www/assets/images/items/desc-downquarterpipeincorner-concretepolished-8x4-c_256.png new file mode 100644 index 00000000..24480e90 Binary files /dev/null and b/www/assets/images/items/desc-downquarterpipeincorner-concretepolished-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-downquarterpipeincorner-concretepolished-8x4-c_64.png b/www/assets/images/items/desc-downquarterpipeincorner-concretepolished-8x4-c_64.png new file mode 100644 index 00000000..70e5d10e Binary files /dev/null and b/www/assets/images/items/desc-downquarterpipeincorner-concretepolished-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-downquarterpipeincorner-grip-8x4-c_256.png b/www/assets/images/items/desc-downquarterpipeincorner-grip-8x4-c_256.png new file mode 100644 index 00000000..11f3c80c Binary files /dev/null and b/www/assets/images/items/desc-downquarterpipeincorner-grip-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-downquarterpipeincorner-grip-8x4-c_64.png b/www/assets/images/items/desc-downquarterpipeincorner-grip-8x4-c_64.png new file mode 100644 index 00000000..cfecf704 Binary files /dev/null and b/www/assets/images/items/desc-downquarterpipeincorner-grip-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-downquarterpipeoutcorner-asphalt-8x4-c_256.png b/www/assets/images/items/desc-downquarterpipeoutcorner-asphalt-8x4-c_256.png new file mode 100644 index 00000000..b9da05ed Binary files /dev/null and b/www/assets/images/items/desc-downquarterpipeoutcorner-asphalt-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-downquarterpipeoutcorner-asphalt-8x4-c_64.png b/www/assets/images/items/desc-downquarterpipeoutcorner-asphalt-8x4-c_64.png new file mode 100644 index 00000000..40edb7b5 Binary files /dev/null and b/www/assets/images/items/desc-downquarterpipeoutcorner-asphalt-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-downquarterpipeoutcorner-concrete-8x4-c_256.png b/www/assets/images/items/desc-downquarterpipeoutcorner-concrete-8x4-c_256.png new file mode 100644 index 00000000..c94d9ae7 Binary files /dev/null and b/www/assets/images/items/desc-downquarterpipeoutcorner-concrete-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-downquarterpipeoutcorner-concrete-8x4-c_64.png b/www/assets/images/items/desc-downquarterpipeoutcorner-concrete-8x4-c_64.png new file mode 100644 index 00000000..ed726076 Binary files /dev/null and b/www/assets/images/items/desc-downquarterpipeoutcorner-concrete-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-downquarterpipeoutcorner-concretepolished-8x4-c_256.png b/www/assets/images/items/desc-downquarterpipeoutcorner-concretepolished-8x4-c_256.png new file mode 100644 index 00000000..49a61cb3 Binary files /dev/null and b/www/assets/images/items/desc-downquarterpipeoutcorner-concretepolished-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-downquarterpipeoutcorner-concretepolished-8x4-c_64.png b/www/assets/images/items/desc-downquarterpipeoutcorner-concretepolished-8x4-c_64.png new file mode 100644 index 00000000..a1396465 Binary files /dev/null and b/www/assets/images/items/desc-downquarterpipeoutcorner-concretepolished-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-downquarterpipeoutcorner-grip-8x4-c_256.png b/www/assets/images/items/desc-downquarterpipeoutcorner-grip-8x4-c_256.png new file mode 100644 index 00000000..40b19be0 Binary files /dev/null and b/www/assets/images/items/desc-downquarterpipeoutcorner-grip-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-downquarterpipeoutcorner-grip-8x4-c_64.png b/www/assets/images/items/desc-downquarterpipeoutcorner-grip-8x4-c_64.png new file mode 100644 index 00000000..29df4cc1 Binary files /dev/null and b/www/assets/images/items/desc-downquarterpipeoutcorner-grip-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-dronestation-c_256.png b/www/assets/images/items/desc-dronestation-c_256.png new file mode 100644 index 00000000..d71264a8 Binary files /dev/null and b/www/assets/images/items/desc-dronestation-c_256.png differ diff --git a/www/assets/images/items/desc-dronestation-c_64.png b/www/assets/images/items/desc-dronestation-c_64.png new file mode 100644 index 00000000..1bdf2f50 Binary files /dev/null and b/www/assets/images/items/desc-dronestation-c_64.png differ diff --git a/www/assets/images/items/desc-dronetransport-c_256.png b/www/assets/images/items/desc-dronetransport-c_256.png new file mode 100644 index 00000000..773979b6 Binary files /dev/null and b/www/assets/images/items/desc-dronetransport-c_256.png differ diff --git a/www/assets/images/items/desc-dronetransport-c_64.png b/www/assets/images/items/desc-dronetransport-c_64.png new file mode 100644 index 00000000..e8c0728e Binary files /dev/null and b/www/assets/images/items/desc-dronetransport-c_64.png differ diff --git a/www/assets/images/items/desc-electromagneticcontrolrod-c_256.png b/www/assets/images/items/desc-electromagneticcontrolrod-c_256.png new file mode 100644 index 00000000..7e34d18f Binary files /dev/null and b/www/assets/images/items/desc-electromagneticcontrolrod-c_256.png differ diff --git a/www/assets/images/items/desc-electromagneticcontrolrod-c_64.png b/www/assets/images/items/desc-electromagneticcontrolrod-c_64.png new file mode 100644 index 00000000..b954cb51 Binary files /dev/null and b/www/assets/images/items/desc-electromagneticcontrolrod-c_64.png differ diff --git a/www/assets/images/items/desc-explorer-c_256.png b/www/assets/images/items/desc-explorer-c_256.png new file mode 100644 index 00000000..c674b96d Binary files /dev/null and b/www/assets/images/items/desc-explorer-c_256.png differ diff --git a/www/assets/images/items/desc-explorer-c_64.png b/www/assets/images/items/desc-explorer-c_64.png new file mode 100644 index 00000000..c8100c23 Binary files /dev/null and b/www/assets/images/items/desc-explorer-c_64.png differ diff --git a/www/assets/images/items/desc-fabric-c_256.png b/www/assets/images/items/desc-fabric-c_256.png new file mode 100644 index 00000000..0df5b47c Binary files /dev/null and b/www/assets/images/items/desc-fabric-c_256.png differ diff --git a/www/assets/images/items/desc-fabric-c_64.png b/www/assets/images/items/desc-fabric-c_64.png new file mode 100644 index 00000000..8ebda4a6 Binary files /dev/null and b/www/assets/images/items/desc-fabric-c_64.png differ diff --git a/www/assets/images/items/desc-ficsiteingot-c_256.png b/www/assets/images/items/desc-ficsiteingot-c_256.png new file mode 100644 index 00000000..6b882400 Binary files /dev/null and b/www/assets/images/items/desc-ficsiteingot-c_256.png differ diff --git a/www/assets/images/items/desc-ficsiteingot-c_64.png b/www/assets/images/items/desc-ficsiteingot-c_64.png new file mode 100644 index 00000000..d6a3f2ff Binary files /dev/null and b/www/assets/images/items/desc-ficsiteingot-c_64.png differ diff --git a/www/assets/images/items/desc-ficsitemesh-c_256.png b/www/assets/images/items/desc-ficsitemesh-c_256.png new file mode 100644 index 00000000..76711103 Binary files /dev/null and b/www/assets/images/items/desc-ficsitemesh-c_256.png differ diff --git a/www/assets/images/items/desc-ficsitemesh-c_64.png b/www/assets/images/items/desc-ficsitemesh-c_64.png new file mode 100644 index 00000000..c2ce7621 Binary files /dev/null and b/www/assets/images/items/desc-ficsitemesh-c_64.png differ diff --git a/www/assets/images/items/desc-ficsonium-c_256.png b/www/assets/images/items/desc-ficsonium-c_256.png new file mode 100644 index 00000000..6ad9ff3d Binary files /dev/null and b/www/assets/images/items/desc-ficsonium-c_256.png differ diff --git a/www/assets/images/items/desc-ficsonium-c_64.png b/www/assets/images/items/desc-ficsonium-c_64.png new file mode 100644 index 00000000..71111190 Binary files /dev/null and b/www/assets/images/items/desc-ficsonium-c_64.png differ diff --git a/www/assets/images/items/desc-ficsoniumfuelrod-c_256.png b/www/assets/images/items/desc-ficsoniumfuelrod-c_256.png new file mode 100644 index 00000000..b257115d Binary files /dev/null and b/www/assets/images/items/desc-ficsoniumfuelrod-c_256.png differ diff --git a/www/assets/images/items/desc-ficsoniumfuelrod-c_64.png b/www/assets/images/items/desc-ficsoniumfuelrod-c_64.png new file mode 100644 index 00000000..b80f5814 Binary files /dev/null and b/www/assets/images/items/desc-ficsoniumfuelrod-c_64.png differ diff --git a/www/assets/images/items/desc-filter-c_256.png b/www/assets/images/items/desc-filter-c_256.png new file mode 100644 index 00000000..28a7af87 Binary files /dev/null and b/www/assets/images/items/desc-filter-c_256.png differ diff --git a/www/assets/images/items/desc-filter-c_64.png b/www/assets/images/items/desc-filter-c_64.png new file mode 100644 index 00000000..0268b988 Binary files /dev/null and b/www/assets/images/items/desc-filter-c_64.png differ diff --git a/www/assets/images/items/desc-fireworks-projectile-01-c_256.png b/www/assets/images/items/desc-fireworks-projectile-01-c_256.png new file mode 100644 index 00000000..656784cb Binary files /dev/null and b/www/assets/images/items/desc-fireworks-projectile-01-c_256.png differ diff --git a/www/assets/images/items/desc-fireworks-projectile-01-c_64.png b/www/assets/images/items/desc-fireworks-projectile-01-c_64.png new file mode 100644 index 00000000..70190eaa Binary files /dev/null and b/www/assets/images/items/desc-fireworks-projectile-01-c_64.png differ diff --git a/www/assets/images/items/desc-fireworks-projectile-02-c_256.png b/www/assets/images/items/desc-fireworks-projectile-02-c_256.png new file mode 100644 index 00000000..424f944f Binary files /dev/null and b/www/assets/images/items/desc-fireworks-projectile-02-c_256.png differ diff --git a/www/assets/images/items/desc-fireworks-projectile-02-c_64.png b/www/assets/images/items/desc-fireworks-projectile-02-c_64.png new file mode 100644 index 00000000..c2c513da Binary files /dev/null and b/www/assets/images/items/desc-fireworks-projectile-02-c_64.png differ diff --git a/www/assets/images/items/desc-fireworks-projectile-03-c_256.png b/www/assets/images/items/desc-fireworks-projectile-03-c_256.png new file mode 100644 index 00000000..d370a5da Binary files /dev/null and b/www/assets/images/items/desc-fireworks-projectile-03-c_256.png differ diff --git a/www/assets/images/items/desc-fireworks-projectile-03-c_64.png b/www/assets/images/items/desc-fireworks-projectile-03-c_64.png new file mode 100644 index 00000000..5519f966 Binary files /dev/null and b/www/assets/images/items/desc-fireworks-projectile-03-c_64.png differ diff --git a/www/assets/images/items/desc-flat-frame-01-c_256.png b/www/assets/images/items/desc-flat-frame-01-c_256.png new file mode 100644 index 00000000..15b6fc57 Binary files /dev/null and b/www/assets/images/items/desc-flat-frame-01-c_256.png differ diff --git a/www/assets/images/items/desc-flat-frame-01-c_64.png b/www/assets/images/items/desc-flat-frame-01-c_64.png new file mode 100644 index 00000000..d9d15545 Binary files /dev/null and b/www/assets/images/items/desc-flat-frame-01-c_64.png differ diff --git a/www/assets/images/items/desc-floodlightpole-c_256.png b/www/assets/images/items/desc-floodlightpole-c_256.png new file mode 100644 index 00000000..45a5fc99 Binary files /dev/null and b/www/assets/images/items/desc-floodlightpole-c_256.png differ diff --git a/www/assets/images/items/desc-floodlightpole-c_64.png b/www/assets/images/items/desc-floodlightpole-c_64.png new file mode 100644 index 00000000..55c0403e Binary files /dev/null and b/www/assets/images/items/desc-floodlightpole-c_64.png differ diff --git a/www/assets/images/items/desc-floodlightwall-c_256.png b/www/assets/images/items/desc-floodlightwall-c_256.png new file mode 100644 index 00000000..c01a00ac Binary files /dev/null and b/www/assets/images/items/desc-floodlightwall-c_256.png differ diff --git a/www/assets/images/items/desc-floodlightwall-c_64.png b/www/assets/images/items/desc-floodlightwall-c_64.png new file mode 100644 index 00000000..76d6c14e Binary files /dev/null and b/www/assets/images/items/desc-floodlightwall-c_64.png differ diff --git a/www/assets/images/items/desc-fluidcanister-c_256.png b/www/assets/images/items/desc-fluidcanister-c_256.png new file mode 100644 index 00000000..d19fcd64 Binary files /dev/null and b/www/assets/images/items/desc-fluidcanister-c_256.png differ diff --git a/www/assets/images/items/desc-fluidcanister-c_64.png b/www/assets/images/items/desc-fluidcanister-c_64.png new file mode 100644 index 00000000..7f6a2aa6 Binary files /dev/null and b/www/assets/images/items/desc-fluidcanister-c_64.png differ diff --git a/www/assets/images/items/desc-foundation-8x1-01-c_256.png b/www/assets/images/items/desc-foundation-8x1-01-c_256.png new file mode 100644 index 00000000..acc17eaf Binary files /dev/null and b/www/assets/images/items/desc-foundation-8x1-01-c_256.png differ diff --git a/www/assets/images/items/desc-foundation-8x1-01-c_64.png b/www/assets/images/items/desc-foundation-8x1-01-c_64.png new file mode 100644 index 00000000..300b5c67 Binary files /dev/null and b/www/assets/images/items/desc-foundation-8x1-01-c_64.png differ diff --git a/www/assets/images/items/desc-foundation-8x2-01-c_256.png b/www/assets/images/items/desc-foundation-8x2-01-c_256.png new file mode 100644 index 00000000..edc7eac2 Binary files /dev/null and b/www/assets/images/items/desc-foundation-8x2-01-c_256.png differ diff --git a/www/assets/images/items/desc-foundation-8x2-01-c_64.png b/www/assets/images/items/desc-foundation-8x2-01-c_64.png new file mode 100644 index 00000000..598f1b14 Binary files /dev/null and b/www/assets/images/items/desc-foundation-8x2-01-c_64.png differ diff --git a/www/assets/images/items/desc-foundation-8x4-01-c_256.png b/www/assets/images/items/desc-foundation-8x4-01-c_256.png new file mode 100644 index 00000000..e1c28bbc Binary files /dev/null and b/www/assets/images/items/desc-foundation-8x4-01-c_256.png differ diff --git a/www/assets/images/items/desc-foundation-8x4-01-c_64.png b/www/assets/images/items/desc-foundation-8x4-01-c_64.png new file mode 100644 index 00000000..e2655ea7 Binary files /dev/null and b/www/assets/images/items/desc-foundation-8x4-01-c_64.png differ diff --git a/www/assets/images/items/desc-foundation-asphalt-8x1-c_256.png b/www/assets/images/items/desc-foundation-asphalt-8x1-c_256.png new file mode 100644 index 00000000..38ea90db Binary files /dev/null and b/www/assets/images/items/desc-foundation-asphalt-8x1-c_256.png differ diff --git a/www/assets/images/items/desc-foundation-asphalt-8x1-c_64.png b/www/assets/images/items/desc-foundation-asphalt-8x1-c_64.png new file mode 100644 index 00000000..77780dfc Binary files /dev/null and b/www/assets/images/items/desc-foundation-asphalt-8x1-c_64.png differ diff --git a/www/assets/images/items/desc-foundation-asphalt-8x2-c_256.png b/www/assets/images/items/desc-foundation-asphalt-8x2-c_256.png new file mode 100644 index 00000000..986c7673 Binary files /dev/null and b/www/assets/images/items/desc-foundation-asphalt-8x2-c_256.png differ diff --git a/www/assets/images/items/desc-foundation-asphalt-8x2-c_64.png b/www/assets/images/items/desc-foundation-asphalt-8x2-c_64.png new file mode 100644 index 00000000..61ffb703 Binary files /dev/null and b/www/assets/images/items/desc-foundation-asphalt-8x2-c_64.png differ diff --git a/www/assets/images/items/desc-foundation-asphalt-8x4-c_256.png b/www/assets/images/items/desc-foundation-asphalt-8x4-c_256.png new file mode 100644 index 00000000..c28465bb Binary files /dev/null and b/www/assets/images/items/desc-foundation-asphalt-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-foundation-asphalt-8x4-c_64.png b/www/assets/images/items/desc-foundation-asphalt-8x4-c_64.png new file mode 100644 index 00000000..68c5318e Binary files /dev/null and b/www/assets/images/items/desc-foundation-asphalt-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-foundation-concrete-8x1-c_256.png b/www/assets/images/items/desc-foundation-concrete-8x1-c_256.png new file mode 100644 index 00000000..bf217276 Binary files /dev/null and b/www/assets/images/items/desc-foundation-concrete-8x1-c_256.png differ diff --git a/www/assets/images/items/desc-foundation-concrete-8x1-c_64.png b/www/assets/images/items/desc-foundation-concrete-8x1-c_64.png new file mode 100644 index 00000000..6f6dcdd2 Binary files /dev/null and b/www/assets/images/items/desc-foundation-concrete-8x1-c_64.png differ diff --git a/www/assets/images/items/desc-foundation-concrete-8x2-c_256.png b/www/assets/images/items/desc-foundation-concrete-8x2-c_256.png new file mode 100644 index 00000000..485c07a9 Binary files /dev/null and b/www/assets/images/items/desc-foundation-concrete-8x2-c_256.png differ diff --git a/www/assets/images/items/desc-foundation-concrete-8x2-c_64.png b/www/assets/images/items/desc-foundation-concrete-8x2-c_64.png new file mode 100644 index 00000000..c000003b Binary files /dev/null and b/www/assets/images/items/desc-foundation-concrete-8x2-c_64.png differ diff --git a/www/assets/images/items/desc-foundation-concrete-8x4-c_256.png b/www/assets/images/items/desc-foundation-concrete-8x4-c_256.png new file mode 100644 index 00000000..04954c0f Binary files /dev/null and b/www/assets/images/items/desc-foundation-concrete-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-foundation-concrete-8x4-c_64.png b/www/assets/images/items/desc-foundation-concrete-8x4-c_64.png new file mode 100644 index 00000000..a7af02d7 Binary files /dev/null and b/www/assets/images/items/desc-foundation-concrete-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-foundation-concretepolished-8x1-c_256.png b/www/assets/images/items/desc-foundation-concretepolished-8x1-c_256.png new file mode 100644 index 00000000..c2f17e8a Binary files /dev/null and b/www/assets/images/items/desc-foundation-concretepolished-8x1-c_256.png differ diff --git a/www/assets/images/items/desc-foundation-concretepolished-8x1-c_64.png b/www/assets/images/items/desc-foundation-concretepolished-8x1-c_64.png new file mode 100644 index 00000000..a88fdb59 Binary files /dev/null and b/www/assets/images/items/desc-foundation-concretepolished-8x1-c_64.png differ diff --git a/www/assets/images/items/desc-foundation-frame-01-c_256.png b/www/assets/images/items/desc-foundation-frame-01-c_256.png new file mode 100644 index 00000000..703344f5 Binary files /dev/null and b/www/assets/images/items/desc-foundation-frame-01-c_256.png differ diff --git a/www/assets/images/items/desc-foundation-frame-01-c_64.png b/www/assets/images/items/desc-foundation-frame-01-c_64.png new file mode 100644 index 00000000..17af2f1d Binary files /dev/null and b/www/assets/images/items/desc-foundation-frame-01-c_64.png differ diff --git a/www/assets/images/items/desc-foundation-metal-8x1-c_256.png b/www/assets/images/items/desc-foundation-metal-8x1-c_256.png new file mode 100644 index 00000000..981699f6 Binary files /dev/null and b/www/assets/images/items/desc-foundation-metal-8x1-c_256.png differ diff --git a/www/assets/images/items/desc-foundation-metal-8x1-c_64.png b/www/assets/images/items/desc-foundation-metal-8x1-c_64.png new file mode 100644 index 00000000..faf4cdcf Binary files /dev/null and b/www/assets/images/items/desc-foundation-metal-8x1-c_64.png differ diff --git a/www/assets/images/items/desc-foundation-metal-8x2-c_256.png b/www/assets/images/items/desc-foundation-metal-8x2-c_256.png new file mode 100644 index 00000000..a9014231 Binary files /dev/null and b/www/assets/images/items/desc-foundation-metal-8x2-c_256.png differ diff --git a/www/assets/images/items/desc-foundation-metal-8x2-c_64.png b/www/assets/images/items/desc-foundation-metal-8x2-c_64.png new file mode 100644 index 00000000..4c701994 Binary files /dev/null and b/www/assets/images/items/desc-foundation-metal-8x2-c_64.png differ diff --git a/www/assets/images/items/desc-foundation-metal-8x4-c_256.png b/www/assets/images/items/desc-foundation-metal-8x4-c_256.png new file mode 100644 index 00000000..d639de40 Binary files /dev/null and b/www/assets/images/items/desc-foundation-metal-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-foundation-metal-8x4-c_64.png b/www/assets/images/items/desc-foundation-metal-8x4-c_64.png new file mode 100644 index 00000000..ba50ba25 Binary files /dev/null and b/www/assets/images/items/desc-foundation-metal-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-foundationglass-01-c_256.png b/www/assets/images/items/desc-foundationglass-01-c_256.png new file mode 100644 index 00000000..63c91039 Binary files /dev/null and b/www/assets/images/items/desc-foundationglass-01-c_256.png differ diff --git a/www/assets/images/items/desc-foundationglass-01-c_64.png b/www/assets/images/items/desc-foundationglass-01-c_64.png new file mode 100644 index 00000000..310cb465 Binary files /dev/null and b/www/assets/images/items/desc-foundationglass-01-c_64.png differ diff --git a/www/assets/images/items/desc-foundationpassthrough-hypertube-c_256.png b/www/assets/images/items/desc-foundationpassthrough-hypertube-c_256.png new file mode 100644 index 00000000..7486fc18 Binary files /dev/null and b/www/assets/images/items/desc-foundationpassthrough-hypertube-c_256.png differ diff --git a/www/assets/images/items/desc-foundationpassthrough-hypertube-c_64.png b/www/assets/images/items/desc-foundationpassthrough-hypertube-c_64.png new file mode 100644 index 00000000..80eb9806 Binary files /dev/null and b/www/assets/images/items/desc-foundationpassthrough-hypertube-c_64.png differ diff --git a/www/assets/images/items/desc-foundationpassthrough-lift-c_256.png b/www/assets/images/items/desc-foundationpassthrough-lift-c_256.png new file mode 100644 index 00000000..df2a9dd6 Binary files /dev/null and b/www/assets/images/items/desc-foundationpassthrough-lift-c_256.png differ diff --git a/www/assets/images/items/desc-foundationpassthrough-lift-c_64.png b/www/assets/images/items/desc-foundationpassthrough-lift-c_64.png new file mode 100644 index 00000000..f95b55ff Binary files /dev/null and b/www/assets/images/items/desc-foundationpassthrough-lift-c_64.png differ diff --git a/www/assets/images/items/desc-foundationpassthrough-pipe-c_256.png b/www/assets/images/items/desc-foundationpassthrough-pipe-c_256.png new file mode 100644 index 00000000..48a8087d Binary files /dev/null and b/www/assets/images/items/desc-foundationpassthrough-pipe-c_256.png differ diff --git a/www/assets/images/items/desc-foundationpassthrough-pipe-c_64.png b/www/assets/images/items/desc-foundationpassthrough-pipe-c_64.png new file mode 100644 index 00000000..a803d0bc Binary files /dev/null and b/www/assets/images/items/desc-foundationpassthrough-pipe-c_64.png differ diff --git a/www/assets/images/items/desc-foundrymk1-c_256.png b/www/assets/images/items/desc-foundrymk1-c_256.png new file mode 100644 index 00000000..0e9f475a Binary files /dev/null and b/www/assets/images/items/desc-foundrymk1-c_256.png differ diff --git a/www/assets/images/items/desc-foundrymk1-c_64.png b/www/assets/images/items/desc-foundrymk1-c_64.png new file mode 100644 index 00000000..e4354c33 Binary files /dev/null and b/www/assets/images/items/desc-foundrymk1-c_64.png differ diff --git a/www/assets/images/items/desc-frackingextractor-c_256.png b/www/assets/images/items/desc-frackingextractor-c_256.png new file mode 100644 index 00000000..f57013ba Binary files /dev/null and b/www/assets/images/items/desc-frackingextractor-c_256.png differ diff --git a/www/assets/images/items/desc-frackingextractor-c_64.png b/www/assets/images/items/desc-frackingextractor-c_64.png new file mode 100644 index 00000000..a07a3e60 Binary files /dev/null and b/www/assets/images/items/desc-frackingextractor-c_64.png differ diff --git a/www/assets/images/items/desc-frackingsmasher-c_256.png b/www/assets/images/items/desc-frackingsmasher-c_256.png new file mode 100644 index 00000000..e7c17cd1 Binary files /dev/null and b/www/assets/images/items/desc-frackingsmasher-c_256.png differ diff --git a/www/assets/images/items/desc-frackingsmasher-c_64.png b/www/assets/images/items/desc-frackingsmasher-c_64.png new file mode 100644 index 00000000..3d84400a Binary files /dev/null and b/www/assets/images/items/desc-frackingsmasher-c_64.png differ diff --git a/www/assets/images/items/desc-freightwagon-c_256.png b/www/assets/images/items/desc-freightwagon-c_256.png new file mode 100644 index 00000000..9461c357 Binary files /dev/null and b/www/assets/images/items/desc-freightwagon-c_256.png differ diff --git a/www/assets/images/items/desc-freightwagon-c_64.png b/www/assets/images/items/desc-freightwagon-c_64.png new file mode 100644 index 00000000..ea29b890 Binary files /dev/null and b/www/assets/images/items/desc-freightwagon-c_64.png differ diff --git a/www/assets/images/items/desc-fuel-c_256.png b/www/assets/images/items/desc-fuel-c_256.png new file mode 100644 index 00000000..61984eae Binary files /dev/null and b/www/assets/images/items/desc-fuel-c_256.png differ diff --git a/www/assets/images/items/desc-fuel-c_64.png b/www/assets/images/items/desc-fuel-c_64.png new file mode 100644 index 00000000..98996d63 Binary files /dev/null and b/www/assets/images/items/desc-fuel-c_64.png differ diff --git a/www/assets/images/items/desc-gastank-c_256.png b/www/assets/images/items/desc-gastank-c_256.png new file mode 100644 index 00000000..b87812aa Binary files /dev/null and b/www/assets/images/items/desc-gastank-c_256.png differ diff --git a/www/assets/images/items/desc-gastank-c_64.png b/www/assets/images/items/desc-gastank-c_64.png new file mode 100644 index 00000000..67d26766 Binary files /dev/null and b/www/assets/images/items/desc-gastank-c_64.png differ diff --git a/www/assets/images/items/desc-gate-automated-8x4-c_256.png b/www/assets/images/items/desc-gate-automated-8x4-c_256.png new file mode 100644 index 00000000..76428625 Binary files /dev/null and b/www/assets/images/items/desc-gate-automated-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-gate-automated-8x4-c_64.png b/www/assets/images/items/desc-gate-automated-8x4-c_64.png new file mode 100644 index 00000000..29a69123 Binary files /dev/null and b/www/assets/images/items/desc-gate-automated-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-generatorbiomass-automated-c_256.png b/www/assets/images/items/desc-generatorbiomass-automated-c_256.png new file mode 100644 index 00000000..30baad75 Binary files /dev/null and b/www/assets/images/items/desc-generatorbiomass-automated-c_256.png differ diff --git a/www/assets/images/items/desc-generatorbiomass-automated-c_64.png b/www/assets/images/items/desc-generatorbiomass-automated-c_64.png new file mode 100644 index 00000000..e48e7d3b Binary files /dev/null and b/www/assets/images/items/desc-generatorbiomass-automated-c_64.png differ diff --git a/www/assets/images/items/desc-generatorcoal-c_256.png b/www/assets/images/items/desc-generatorcoal-c_256.png new file mode 100644 index 00000000..e0a23f66 Binary files /dev/null and b/www/assets/images/items/desc-generatorcoal-c_256.png differ diff --git a/www/assets/images/items/desc-generatorcoal-c_64.png b/www/assets/images/items/desc-generatorcoal-c_64.png new file mode 100644 index 00000000..7d6eb768 Binary files /dev/null and b/www/assets/images/items/desc-generatorcoal-c_64.png differ diff --git a/www/assets/images/items/desc-generatorfuel-c_256.png b/www/assets/images/items/desc-generatorfuel-c_256.png new file mode 100644 index 00000000..7f1d2b62 Binary files /dev/null and b/www/assets/images/items/desc-generatorfuel-c_256.png differ diff --git a/www/assets/images/items/desc-generatorfuel-c_64.png b/www/assets/images/items/desc-generatorfuel-c_64.png new file mode 100644 index 00000000..9a13a11f Binary files /dev/null and b/www/assets/images/items/desc-generatorfuel-c_64.png differ diff --git a/www/assets/images/items/desc-generatorgeothermal-c_256.png b/www/assets/images/items/desc-generatorgeothermal-c_256.png new file mode 100644 index 00000000..98aedc91 Binary files /dev/null and b/www/assets/images/items/desc-generatorgeothermal-c_256.png differ diff --git a/www/assets/images/items/desc-generatorgeothermal-c_64.png b/www/assets/images/items/desc-generatorgeothermal-c_64.png new file mode 100644 index 00000000..467b3df2 Binary files /dev/null and b/www/assets/images/items/desc-generatorgeothermal-c_64.png differ diff --git a/www/assets/images/items/desc-generatornuclear-c_256.png b/www/assets/images/items/desc-generatornuclear-c_256.png new file mode 100644 index 00000000..9fe6b5fb Binary files /dev/null and b/www/assets/images/items/desc-generatornuclear-c_256.png differ diff --git a/www/assets/images/items/desc-generatornuclear-c_64.png b/www/assets/images/items/desc-generatornuclear-c_64.png new file mode 100644 index 00000000..905bd4d3 Binary files /dev/null and b/www/assets/images/items/desc-generatornuclear-c_64.png differ diff --git a/www/assets/images/items/desc-genericbiomass-c_256.png b/www/assets/images/items/desc-genericbiomass-c_256.png new file mode 100644 index 00000000..3b355756 Binary files /dev/null and b/www/assets/images/items/desc-genericbiomass-c_256.png differ diff --git a/www/assets/images/items/desc-genericbiomass-c_64.png b/www/assets/images/items/desc-genericbiomass-c_64.png new file mode 100644 index 00000000..09080767 Binary files /dev/null and b/www/assets/images/items/desc-genericbiomass-c_64.png differ diff --git a/www/assets/images/items/desc-gift-c_256.png b/www/assets/images/items/desc-gift-c_256.png new file mode 100644 index 00000000..55ec2891 Binary files /dev/null and b/www/assets/images/items/desc-gift-c_256.png differ diff --git a/www/assets/images/items/desc-gift-c_64.png b/www/assets/images/items/desc-gift-c_64.png new file mode 100644 index 00000000..edfa7212 Binary files /dev/null and b/www/assets/images/items/desc-gift-c_64.png differ diff --git a/www/assets/images/items/desc-goldingot-c_256.png b/www/assets/images/items/desc-goldingot-c_256.png new file mode 100644 index 00000000..01c4cf69 Binary files /dev/null and b/www/assets/images/items/desc-goldingot-c_256.png differ diff --git a/www/assets/images/items/desc-goldingot-c_64.png b/www/assets/images/items/desc-goldingot-c_64.png new file mode 100644 index 00000000..3571d5e8 Binary files /dev/null and b/www/assets/images/items/desc-goldingot-c_64.png differ diff --git a/www/assets/images/items/desc-golfcart-c_256.png b/www/assets/images/items/desc-golfcart-c_256.png new file mode 100644 index 00000000..2a5dfc53 Binary files /dev/null and b/www/assets/images/items/desc-golfcart-c_256.png differ diff --git a/www/assets/images/items/desc-golfcart-c_64.png b/www/assets/images/items/desc-golfcart-c_64.png new file mode 100644 index 00000000..dd966523 Binary files /dev/null and b/www/assets/images/items/desc-golfcart-c_64.png differ diff --git a/www/assets/images/items/desc-golfcartgold-c_256.png b/www/assets/images/items/desc-golfcartgold-c_256.png new file mode 100644 index 00000000..8582df3d Binary files /dev/null and b/www/assets/images/items/desc-golfcartgold-c_256.png differ diff --git a/www/assets/images/items/desc-golfcartgold-c_64.png b/www/assets/images/items/desc-golfcartgold-c_64.png new file mode 100644 index 00000000..afef788e Binary files /dev/null and b/www/assets/images/items/desc-golfcartgold-c_64.png differ diff --git a/www/assets/images/items/desc-gunpowder-c_256.png b/www/assets/images/items/desc-gunpowder-c_256.png new file mode 100644 index 00000000..50970fed Binary files /dev/null and b/www/assets/images/items/desc-gunpowder-c_256.png differ diff --git a/www/assets/images/items/desc-gunpowder-c_64.png b/www/assets/images/items/desc-gunpowder-c_64.png new file mode 100644 index 00000000..9b7f9039 Binary files /dev/null and b/www/assets/images/items/desc-gunpowder-c_64.png differ diff --git a/www/assets/images/items/desc-gunpowdermk2-c_256.png b/www/assets/images/items/desc-gunpowdermk2-c_256.png new file mode 100644 index 00000000..fd994e76 Binary files /dev/null and b/www/assets/images/items/desc-gunpowdermk2-c_256.png differ diff --git a/www/assets/images/items/desc-gunpowdermk2-c_64.png b/www/assets/images/items/desc-gunpowdermk2-c_64.png new file mode 100644 index 00000000..7f959a68 Binary files /dev/null and b/www/assets/images/items/desc-gunpowdermk2-c_64.png differ diff --git a/www/assets/images/items/desc-hadroncollider-c_256.png b/www/assets/images/items/desc-hadroncollider-c_256.png new file mode 100644 index 00000000..9c44390e Binary files /dev/null and b/www/assets/images/items/desc-hadroncollider-c_256.png differ diff --git a/www/assets/images/items/desc-hadroncollider-c_64.png b/www/assets/images/items/desc-hadroncollider-c_64.png new file mode 100644 index 00000000..ec57b6d9 Binary files /dev/null and b/www/assets/images/items/desc-hadroncollider-c_64.png differ diff --git a/www/assets/images/items/desc-hatcherparts-c_256.png b/www/assets/images/items/desc-hatcherparts-c_256.png new file mode 100644 index 00000000..5d6c4c44 Binary files /dev/null and b/www/assets/images/items/desc-hatcherparts-c_256.png differ diff --git a/www/assets/images/items/desc-hatcherparts-c_64.png b/www/assets/images/items/desc-hatcherparts-c_64.png new file mode 100644 index 00000000..a9405d0b Binary files /dev/null and b/www/assets/images/items/desc-hatcherparts-c_64.png differ diff --git a/www/assets/images/items/desc-hazmatfilter-c_256.png b/www/assets/images/items/desc-hazmatfilter-c_256.png new file mode 100644 index 00000000..6b891bd9 Binary files /dev/null and b/www/assets/images/items/desc-hazmatfilter-c_256.png differ diff --git a/www/assets/images/items/desc-hazmatfilter-c_64.png b/www/assets/images/items/desc-hazmatfilter-c_64.png new file mode 100644 index 00000000..efd3d766 Binary files /dev/null and b/www/assets/images/items/desc-hazmatfilter-c_64.png differ diff --git a/www/assets/images/items/desc-heavyoilresidue-c_256.png b/www/assets/images/items/desc-heavyoilresidue-c_256.png new file mode 100644 index 00000000..5f795bc6 Binary files /dev/null and b/www/assets/images/items/desc-heavyoilresidue-c_256.png differ diff --git a/www/assets/images/items/desc-heavyoilresidue-c_64.png b/www/assets/images/items/desc-heavyoilresidue-c_64.png new file mode 100644 index 00000000..f528dab4 Binary files /dev/null and b/www/assets/images/items/desc-heavyoilresidue-c_64.png differ diff --git a/www/assets/images/items/desc-highspeedconnector-c_256.png b/www/assets/images/items/desc-highspeedconnector-c_256.png new file mode 100644 index 00000000..09fcc315 Binary files /dev/null and b/www/assets/images/items/desc-highspeedconnector-c_256.png differ diff --git a/www/assets/images/items/desc-highspeedconnector-c_64.png b/www/assets/images/items/desc-highspeedconnector-c_64.png new file mode 100644 index 00000000..7978c9a6 Binary files /dev/null and b/www/assets/images/items/desc-highspeedconnector-c_64.png differ diff --git a/www/assets/images/items/desc-highspeedwire-c_256.png b/www/assets/images/items/desc-highspeedwire-c_256.png new file mode 100644 index 00000000..96117fe7 Binary files /dev/null and b/www/assets/images/items/desc-highspeedwire-c_256.png differ diff --git a/www/assets/images/items/desc-highspeedwire-c_64.png b/www/assets/images/items/desc-highspeedwire-c_64.png new file mode 100644 index 00000000..eaec4273 Binary files /dev/null and b/www/assets/images/items/desc-highspeedwire-c_64.png differ diff --git a/www/assets/images/items/desc-hogparts-c_256.png b/www/assets/images/items/desc-hogparts-c_256.png new file mode 100644 index 00000000..4ca93c1a Binary files /dev/null and b/www/assets/images/items/desc-hogparts-c_256.png differ diff --git a/www/assets/images/items/desc-hogparts-c_64.png b/www/assets/images/items/desc-hogparts-c_64.png new file mode 100644 index 00000000..f92784c7 Binary files /dev/null and b/www/assets/images/items/desc-hogparts-c_64.png differ diff --git a/www/assets/images/items/desc-hyperpolestackable-c_256.png b/www/assets/images/items/desc-hyperpolestackable-c_256.png new file mode 100644 index 00000000..1d19ea94 Binary files /dev/null and b/www/assets/images/items/desc-hyperpolestackable-c_256.png differ diff --git a/www/assets/images/items/desc-hyperpolestackable-c_64.png b/www/assets/images/items/desc-hyperpolestackable-c_64.png new file mode 100644 index 00000000..2b2daaca Binary files /dev/null and b/www/assets/images/items/desc-hyperpolestackable-c_64.png differ diff --git a/www/assets/images/items/desc-hypertubewallhole-c_256.png b/www/assets/images/items/desc-hypertubewallhole-c_256.png new file mode 100644 index 00000000..1539022f Binary files /dev/null and b/www/assets/images/items/desc-hypertubewallhole-c_256.png differ diff --git a/www/assets/images/items/desc-hypertubewallhole-c_64.png b/www/assets/images/items/desc-hypertubewallhole-c_64.png new file mode 100644 index 00000000..5524437a Binary files /dev/null and b/www/assets/images/items/desc-hypertubewallhole-c_64.png differ diff --git a/www/assets/images/items/desc-hypertubewallsupport-c_256.png b/www/assets/images/items/desc-hypertubewallsupport-c_256.png new file mode 100644 index 00000000..e6915196 Binary files /dev/null and b/www/assets/images/items/desc-hypertubewallsupport-c_256.png differ diff --git a/www/assets/images/items/desc-hypertubewallsupport-c_64.png b/www/assets/images/items/desc-hypertubewallsupport-c_64.png new file mode 100644 index 00000000..f70e93e0 Binary files /dev/null and b/www/assets/images/items/desc-hypertubewallsupport-c_64.png differ diff --git a/www/assets/images/items/desc-industrialtank-c_256.png b/www/assets/images/items/desc-industrialtank-c_256.png new file mode 100644 index 00000000..2af29da8 Binary files /dev/null and b/www/assets/images/items/desc-industrialtank-c_256.png differ diff --git a/www/assets/images/items/desc-industrialtank-c_64.png b/www/assets/images/items/desc-industrialtank-c_64.png new file mode 100644 index 00000000..b93940c2 Binary files /dev/null and b/www/assets/images/items/desc-industrialtank-c_64.png differ diff --git a/www/assets/images/items/desc-invertedramp-asphalt-8x1-c_256.png b/www/assets/images/items/desc-invertedramp-asphalt-8x1-c_256.png new file mode 100644 index 00000000..6ee45ac5 Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-asphalt-8x1-c_256.png differ diff --git a/www/assets/images/items/desc-invertedramp-asphalt-8x1-c_64.png b/www/assets/images/items/desc-invertedramp-asphalt-8x1-c_64.png new file mode 100644 index 00000000..dd1d63c4 Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-asphalt-8x1-c_64.png differ diff --git a/www/assets/images/items/desc-invertedramp-asphalt-8x2-c_256.png b/www/assets/images/items/desc-invertedramp-asphalt-8x2-c_256.png new file mode 100644 index 00000000..1a4242eb Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-asphalt-8x2-c_256.png differ diff --git a/www/assets/images/items/desc-invertedramp-asphalt-8x2-c_64.png b/www/assets/images/items/desc-invertedramp-asphalt-8x2-c_64.png new file mode 100644 index 00000000..e049a35c Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-asphalt-8x2-c_64.png differ diff --git a/www/assets/images/items/desc-invertedramp-asphalt-8x4-c_256.png b/www/assets/images/items/desc-invertedramp-asphalt-8x4-c_256.png new file mode 100644 index 00000000..5143346b Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-asphalt-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-invertedramp-asphalt-8x4-c_64.png b/www/assets/images/items/desc-invertedramp-asphalt-8x4-c_64.png new file mode 100644 index 00000000..a32c9cec Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-asphalt-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-invertedramp-concrete-8x1-c_256.png b/www/assets/images/items/desc-invertedramp-concrete-8x1-c_256.png new file mode 100644 index 00000000..33ccf77c Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-concrete-8x1-c_256.png differ diff --git a/www/assets/images/items/desc-invertedramp-concrete-8x1-c_64.png b/www/assets/images/items/desc-invertedramp-concrete-8x1-c_64.png new file mode 100644 index 00000000..1cb1c832 Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-concrete-8x1-c_64.png differ diff --git a/www/assets/images/items/desc-invertedramp-concrete-8x2-c_256.png b/www/assets/images/items/desc-invertedramp-concrete-8x2-c_256.png new file mode 100644 index 00000000..235870c6 Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-concrete-8x2-c_256.png differ diff --git a/www/assets/images/items/desc-invertedramp-concrete-8x2-c_64.png b/www/assets/images/items/desc-invertedramp-concrete-8x2-c_64.png new file mode 100644 index 00000000..c8efd828 Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-concrete-8x2-c_64.png differ diff --git a/www/assets/images/items/desc-invertedramp-concrete-8x4-c_256.png b/www/assets/images/items/desc-invertedramp-concrete-8x4-c_256.png new file mode 100644 index 00000000..949066d6 Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-concrete-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-invertedramp-concrete-8x4-c_64.png b/www/assets/images/items/desc-invertedramp-concrete-8x4-c_64.png new file mode 100644 index 00000000..b7af0567 Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-concrete-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-invertedramp-dcorner-asphalt-8x1-c_256.png b/www/assets/images/items/desc-invertedramp-dcorner-asphalt-8x1-c_256.png new file mode 100644 index 00000000..b7ce9856 Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-dcorner-asphalt-8x1-c_256.png differ diff --git a/www/assets/images/items/desc-invertedramp-dcorner-asphalt-8x1-c_64.png b/www/assets/images/items/desc-invertedramp-dcorner-asphalt-8x1-c_64.png new file mode 100644 index 00000000..505bad5b Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-dcorner-asphalt-8x1-c_64.png differ diff --git a/www/assets/images/items/desc-invertedramp-dcorner-asphalt-8x2-c_256.png b/www/assets/images/items/desc-invertedramp-dcorner-asphalt-8x2-c_256.png new file mode 100644 index 00000000..d5f9e67b Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-dcorner-asphalt-8x2-c_256.png differ diff --git a/www/assets/images/items/desc-invertedramp-dcorner-asphalt-8x2-c_64.png b/www/assets/images/items/desc-invertedramp-dcorner-asphalt-8x2-c_64.png new file mode 100644 index 00000000..be0021a6 Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-dcorner-asphalt-8x2-c_64.png differ diff --git a/www/assets/images/items/desc-invertedramp-dcorner-asphalt-8x4-c_256.png b/www/assets/images/items/desc-invertedramp-dcorner-asphalt-8x4-c_256.png new file mode 100644 index 00000000..25db7c70 Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-dcorner-asphalt-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-invertedramp-dcorner-asphalt-8x4-c_64.png b/www/assets/images/items/desc-invertedramp-dcorner-asphalt-8x4-c_64.png new file mode 100644 index 00000000..b57f8ff6 Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-dcorner-asphalt-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-invertedramp-dcorner-concrete-8x1-c_256.png b/www/assets/images/items/desc-invertedramp-dcorner-concrete-8x1-c_256.png new file mode 100644 index 00000000..3bf36aa1 Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-dcorner-concrete-8x1-c_256.png differ diff --git a/www/assets/images/items/desc-invertedramp-dcorner-concrete-8x1-c_64.png b/www/assets/images/items/desc-invertedramp-dcorner-concrete-8x1-c_64.png new file mode 100644 index 00000000..58628159 Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-dcorner-concrete-8x1-c_64.png differ diff --git a/www/assets/images/items/desc-invertedramp-dcorner-concrete-8x2-c_256.png b/www/assets/images/items/desc-invertedramp-dcorner-concrete-8x2-c_256.png new file mode 100644 index 00000000..cb6adca0 Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-dcorner-concrete-8x2-c_256.png differ diff --git a/www/assets/images/items/desc-invertedramp-dcorner-concrete-8x2-c_64.png b/www/assets/images/items/desc-invertedramp-dcorner-concrete-8x2-c_64.png new file mode 100644 index 00000000..f1c4615e Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-dcorner-concrete-8x2-c_64.png differ diff --git a/www/assets/images/items/desc-invertedramp-dcorner-concrete-8x4-c_256.png b/www/assets/images/items/desc-invertedramp-dcorner-concrete-8x4-c_256.png new file mode 100644 index 00000000..3424ae50 Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-dcorner-concrete-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-invertedramp-dcorner-concrete-8x4-c_64.png b/www/assets/images/items/desc-invertedramp-dcorner-concrete-8x4-c_64.png new file mode 100644 index 00000000..a75b4e3c Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-dcorner-concrete-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-invertedramp-dcorner-metal-8x1-c_256.png b/www/assets/images/items/desc-invertedramp-dcorner-metal-8x1-c_256.png new file mode 100644 index 00000000..35aed11e Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-dcorner-metal-8x1-c_256.png differ diff --git a/www/assets/images/items/desc-invertedramp-dcorner-metal-8x1-c_64.png b/www/assets/images/items/desc-invertedramp-dcorner-metal-8x1-c_64.png new file mode 100644 index 00000000..623d5145 Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-dcorner-metal-8x1-c_64.png differ diff --git a/www/assets/images/items/desc-invertedramp-dcorner-metal-8x2-c_256.png b/www/assets/images/items/desc-invertedramp-dcorner-metal-8x2-c_256.png new file mode 100644 index 00000000..b64db2a3 Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-dcorner-metal-8x2-c_256.png differ diff --git a/www/assets/images/items/desc-invertedramp-dcorner-metal-8x2-c_64.png b/www/assets/images/items/desc-invertedramp-dcorner-metal-8x2-c_64.png new file mode 100644 index 00000000..dad969d1 Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-dcorner-metal-8x2-c_64.png differ diff --git a/www/assets/images/items/desc-invertedramp-dcorner-metal-8x4-c_256.png b/www/assets/images/items/desc-invertedramp-dcorner-metal-8x4-c_256.png new file mode 100644 index 00000000..2d250d53 Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-dcorner-metal-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-invertedramp-dcorner-metal-8x4-c_64.png b/www/assets/images/items/desc-invertedramp-dcorner-metal-8x4-c_64.png new file mode 100644 index 00000000..c46d9c29 Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-dcorner-metal-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-invertedramp-dcorner-polished-8x1-c_256.png b/www/assets/images/items/desc-invertedramp-dcorner-polished-8x1-c_256.png new file mode 100644 index 00000000..72c43891 Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-dcorner-polished-8x1-c_256.png differ diff --git a/www/assets/images/items/desc-invertedramp-dcorner-polished-8x1-c_64.png b/www/assets/images/items/desc-invertedramp-dcorner-polished-8x1-c_64.png new file mode 100644 index 00000000..3ade043e Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-dcorner-polished-8x1-c_64.png differ diff --git a/www/assets/images/items/desc-invertedramp-dcorner-polished-8x2-c_256.png b/www/assets/images/items/desc-invertedramp-dcorner-polished-8x2-c_256.png new file mode 100644 index 00000000..a0a184bd Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-dcorner-polished-8x2-c_256.png differ diff --git a/www/assets/images/items/desc-invertedramp-dcorner-polished-8x2-c_64.png b/www/assets/images/items/desc-invertedramp-dcorner-polished-8x2-c_64.png new file mode 100644 index 00000000..18bc740b Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-dcorner-polished-8x2-c_64.png differ diff --git a/www/assets/images/items/desc-invertedramp-dcorner-polished-8x4-c_256.png b/www/assets/images/items/desc-invertedramp-dcorner-polished-8x4-c_256.png new file mode 100644 index 00000000..9385dda3 Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-dcorner-polished-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-invertedramp-dcorner-polished-8x4-c_64.png b/www/assets/images/items/desc-invertedramp-dcorner-polished-8x4-c_64.png new file mode 100644 index 00000000..e6dda555 Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-dcorner-polished-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-invertedramp-metal-8x1-c_256.png b/www/assets/images/items/desc-invertedramp-metal-8x1-c_256.png new file mode 100644 index 00000000..19c740fa Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-metal-8x1-c_256.png differ diff --git a/www/assets/images/items/desc-invertedramp-metal-8x1-c_64.png b/www/assets/images/items/desc-invertedramp-metal-8x1-c_64.png new file mode 100644 index 00000000..d5a4117f Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-metal-8x1-c_64.png differ diff --git a/www/assets/images/items/desc-invertedramp-metal-8x2-c_256.png b/www/assets/images/items/desc-invertedramp-metal-8x2-c_256.png new file mode 100644 index 00000000..49e86cf8 Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-metal-8x2-c_256.png differ diff --git a/www/assets/images/items/desc-invertedramp-metal-8x2-c_64.png b/www/assets/images/items/desc-invertedramp-metal-8x2-c_64.png new file mode 100644 index 00000000..8e025f2d Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-metal-8x2-c_64.png differ diff --git a/www/assets/images/items/desc-invertedramp-metal-8x4-c_256.png b/www/assets/images/items/desc-invertedramp-metal-8x4-c_256.png new file mode 100644 index 00000000..a5c5c3de Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-metal-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-invertedramp-metal-8x4-c_64.png b/www/assets/images/items/desc-invertedramp-metal-8x4-c_64.png new file mode 100644 index 00000000..f66f8c9f Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-metal-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-invertedramp-polished-8x1-c_256.png b/www/assets/images/items/desc-invertedramp-polished-8x1-c_256.png new file mode 100644 index 00000000..b18f3e86 Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-polished-8x1-c_256.png differ diff --git a/www/assets/images/items/desc-invertedramp-polished-8x1-c_64.png b/www/assets/images/items/desc-invertedramp-polished-8x1-c_64.png new file mode 100644 index 00000000..59a49603 Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-polished-8x1-c_64.png differ diff --git a/www/assets/images/items/desc-invertedramp-polished-8x2-c_256.png b/www/assets/images/items/desc-invertedramp-polished-8x2-c_256.png new file mode 100644 index 00000000..c77b8bb3 Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-polished-8x2-c_256.png differ diff --git a/www/assets/images/items/desc-invertedramp-polished-8x2-c_64.png b/www/assets/images/items/desc-invertedramp-polished-8x2-c_64.png new file mode 100644 index 00000000..d3f41816 Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-polished-8x2-c_64.png differ diff --git a/www/assets/images/items/desc-invertedramp-polished-8x4-c_256.png b/www/assets/images/items/desc-invertedramp-polished-8x4-c_256.png new file mode 100644 index 00000000..91f7876e Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-polished-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-invertedramp-polished-8x4-c_64.png b/www/assets/images/items/desc-invertedramp-polished-8x4-c_64.png new file mode 100644 index 00000000..1334bd71 Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-polished-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-invertedramp-ucorner-asphalt-8x1-c_256.png b/www/assets/images/items/desc-invertedramp-ucorner-asphalt-8x1-c_256.png new file mode 100644 index 00000000..bfff1499 Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-ucorner-asphalt-8x1-c_256.png differ diff --git a/www/assets/images/items/desc-invertedramp-ucorner-asphalt-8x1-c_64.png b/www/assets/images/items/desc-invertedramp-ucorner-asphalt-8x1-c_64.png new file mode 100644 index 00000000..7b6c7b78 Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-ucorner-asphalt-8x1-c_64.png differ diff --git a/www/assets/images/items/desc-invertedramp-ucorner-asphalt-8x2-c_256.png b/www/assets/images/items/desc-invertedramp-ucorner-asphalt-8x2-c_256.png new file mode 100644 index 00000000..1f1afa03 Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-ucorner-asphalt-8x2-c_256.png differ diff --git a/www/assets/images/items/desc-invertedramp-ucorner-asphalt-8x2-c_64.png b/www/assets/images/items/desc-invertedramp-ucorner-asphalt-8x2-c_64.png new file mode 100644 index 00000000..563eabc8 Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-ucorner-asphalt-8x2-c_64.png differ diff --git a/www/assets/images/items/desc-invertedramp-ucorner-asphalt-8x4-c_256.png b/www/assets/images/items/desc-invertedramp-ucorner-asphalt-8x4-c_256.png new file mode 100644 index 00000000..8daf03bd Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-ucorner-asphalt-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-invertedramp-ucorner-asphalt-8x4-c_64.png b/www/assets/images/items/desc-invertedramp-ucorner-asphalt-8x4-c_64.png new file mode 100644 index 00000000..b0817c91 Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-ucorner-asphalt-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-invertedramp-ucorner-concrete-8x1-c_256.png b/www/assets/images/items/desc-invertedramp-ucorner-concrete-8x1-c_256.png new file mode 100644 index 00000000..2639e2a3 Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-ucorner-concrete-8x1-c_256.png differ diff --git a/www/assets/images/items/desc-invertedramp-ucorner-concrete-8x1-c_64.png b/www/assets/images/items/desc-invertedramp-ucorner-concrete-8x1-c_64.png new file mode 100644 index 00000000..88f80bfa Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-ucorner-concrete-8x1-c_64.png differ diff --git a/www/assets/images/items/desc-invertedramp-ucorner-concrete-8x2-c_256.png b/www/assets/images/items/desc-invertedramp-ucorner-concrete-8x2-c_256.png new file mode 100644 index 00000000..7a214222 Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-ucorner-concrete-8x2-c_256.png differ diff --git a/www/assets/images/items/desc-invertedramp-ucorner-concrete-8x2-c_64.png b/www/assets/images/items/desc-invertedramp-ucorner-concrete-8x2-c_64.png new file mode 100644 index 00000000..769188fa Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-ucorner-concrete-8x2-c_64.png differ diff --git a/www/assets/images/items/desc-invertedramp-ucorner-concrete-8x4-c_256.png b/www/assets/images/items/desc-invertedramp-ucorner-concrete-8x4-c_256.png new file mode 100644 index 00000000..248f0080 Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-ucorner-concrete-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-invertedramp-ucorner-concrete-8x4-c_64.png b/www/assets/images/items/desc-invertedramp-ucorner-concrete-8x4-c_64.png new file mode 100644 index 00000000..2601e09e Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-ucorner-concrete-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-invertedramp-ucorner-metal-8x1-c_256.png b/www/assets/images/items/desc-invertedramp-ucorner-metal-8x1-c_256.png new file mode 100644 index 00000000..defe881a Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-ucorner-metal-8x1-c_256.png differ diff --git a/www/assets/images/items/desc-invertedramp-ucorner-metal-8x1-c_64.png b/www/assets/images/items/desc-invertedramp-ucorner-metal-8x1-c_64.png new file mode 100644 index 00000000..78db5dae Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-ucorner-metal-8x1-c_64.png differ diff --git a/www/assets/images/items/desc-invertedramp-ucorner-metal-8x2-c_256.png b/www/assets/images/items/desc-invertedramp-ucorner-metal-8x2-c_256.png new file mode 100644 index 00000000..c51f7721 Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-ucorner-metal-8x2-c_256.png differ diff --git a/www/assets/images/items/desc-invertedramp-ucorner-metal-8x2-c_64.png b/www/assets/images/items/desc-invertedramp-ucorner-metal-8x2-c_64.png new file mode 100644 index 00000000..127e889c Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-ucorner-metal-8x2-c_64.png differ diff --git a/www/assets/images/items/desc-invertedramp-ucorner-metal-8x4-c_256.png b/www/assets/images/items/desc-invertedramp-ucorner-metal-8x4-c_256.png new file mode 100644 index 00000000..57937a47 Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-ucorner-metal-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-invertedramp-ucorner-metal-8x4-c_64.png b/www/assets/images/items/desc-invertedramp-ucorner-metal-8x4-c_64.png new file mode 100644 index 00000000..373ea55a Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-ucorner-metal-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-invertedramp-ucorner-polished-8x1-c_256.png b/www/assets/images/items/desc-invertedramp-ucorner-polished-8x1-c_256.png new file mode 100644 index 00000000..02be7900 Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-ucorner-polished-8x1-c_256.png differ diff --git a/www/assets/images/items/desc-invertedramp-ucorner-polished-8x1-c_64.png b/www/assets/images/items/desc-invertedramp-ucorner-polished-8x1-c_64.png new file mode 100644 index 00000000..1255db37 Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-ucorner-polished-8x1-c_64.png differ diff --git a/www/assets/images/items/desc-invertedramp-ucorner-polished-8x2-c_256.png b/www/assets/images/items/desc-invertedramp-ucorner-polished-8x2-c_256.png new file mode 100644 index 00000000..e57754b1 Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-ucorner-polished-8x2-c_256.png differ diff --git a/www/assets/images/items/desc-invertedramp-ucorner-polished-8x2-c_64.png b/www/assets/images/items/desc-invertedramp-ucorner-polished-8x2-c_64.png new file mode 100644 index 00000000..16aad7ac Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-ucorner-polished-8x2-c_64.png differ diff --git a/www/assets/images/items/desc-invertedramp-ucorner-polished-8x4-c_256.png b/www/assets/images/items/desc-invertedramp-ucorner-polished-8x4-c_256.png new file mode 100644 index 00000000..00fe64f9 Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-ucorner-polished-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-invertedramp-ucorner-polished-8x4-c_64.png b/www/assets/images/items/desc-invertedramp-ucorner-polished-8x4-c_64.png new file mode 100644 index 00000000..a832cd8e Binary files /dev/null and b/www/assets/images/items/desc-invertedramp-ucorner-polished-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-ionizedfuel-c_256.png b/www/assets/images/items/desc-ionizedfuel-c_256.png new file mode 100644 index 00000000..90496333 Binary files /dev/null and b/www/assets/images/items/desc-ionizedfuel-c_256.png differ diff --git a/www/assets/images/items/desc-ionizedfuel-c_64.png b/www/assets/images/items/desc-ionizedfuel-c_64.png new file mode 100644 index 00000000..c808e0b6 Binary files /dev/null and b/www/assets/images/items/desc-ionizedfuel-c_64.png differ diff --git a/www/assets/images/items/desc-ironingot-c_256.png b/www/assets/images/items/desc-ironingot-c_256.png new file mode 100644 index 00000000..4e9c9cdd Binary files /dev/null and b/www/assets/images/items/desc-ironingot-c_256.png differ diff --git a/www/assets/images/items/desc-ironingot-c_64.png b/www/assets/images/items/desc-ironingot-c_64.png new file mode 100644 index 00000000..ff690b8f Binary files /dev/null and b/www/assets/images/items/desc-ironingot-c_64.png differ diff --git a/www/assets/images/items/desc-ironplate-c_256.png b/www/assets/images/items/desc-ironplate-c_256.png new file mode 100644 index 00000000..75ffc9db Binary files /dev/null and b/www/assets/images/items/desc-ironplate-c_256.png differ diff --git a/www/assets/images/items/desc-ironplate-c_64.png b/www/assets/images/items/desc-ironplate-c_64.png new file mode 100644 index 00000000..9e223e7c Binary files /dev/null and b/www/assets/images/items/desc-ironplate-c_64.png differ diff --git a/www/assets/images/items/desc-ironplatereinforced-c_256.png b/www/assets/images/items/desc-ironplatereinforced-c_256.png new file mode 100644 index 00000000..010d3310 Binary files /dev/null and b/www/assets/images/items/desc-ironplatereinforced-c_256.png differ diff --git a/www/assets/images/items/desc-ironplatereinforced-c_64.png b/www/assets/images/items/desc-ironplatereinforced-c_64.png new file mode 100644 index 00000000..7de4e6b8 Binary files /dev/null and b/www/assets/images/items/desc-ironplatereinforced-c_64.png differ diff --git a/www/assets/images/items/desc-ironrod-c_256.png b/www/assets/images/items/desc-ironrod-c_256.png new file mode 100644 index 00000000..d4641ef1 Binary files /dev/null and b/www/assets/images/items/desc-ironrod-c_256.png differ diff --git a/www/assets/images/items/desc-ironrod-c_64.png b/www/assets/images/items/desc-ironrod-c_64.png new file mode 100644 index 00000000..7f1966bc Binary files /dev/null and b/www/assets/images/items/desc-ironrod-c_64.png differ diff --git a/www/assets/images/items/desc-ironscrew-c_256.png b/www/assets/images/items/desc-ironscrew-c_256.png new file mode 100644 index 00000000..a8400877 Binary files /dev/null and b/www/assets/images/items/desc-ironscrew-c_256.png differ diff --git a/www/assets/images/items/desc-ironscrew-c_64.png b/www/assets/images/items/desc-ironscrew-c_64.png new file mode 100644 index 00000000..8e142075 Binary files /dev/null and b/www/assets/images/items/desc-ironscrew-c_64.png differ diff --git a/www/assets/images/items/desc-jumppadadjustable-c_256.png b/www/assets/images/items/desc-jumppadadjustable-c_256.png new file mode 100644 index 00000000..768a8d4f Binary files /dev/null and b/www/assets/images/items/desc-jumppadadjustable-c_256.png differ diff --git a/www/assets/images/items/desc-jumppadadjustable-c_64.png b/www/assets/images/items/desc-jumppadadjustable-c_64.png new file mode 100644 index 00000000..668ff132 Binary files /dev/null and b/www/assets/images/items/desc-jumppadadjustable-c_64.png differ diff --git a/www/assets/images/items/desc-ladder-c_256.png b/www/assets/images/items/desc-ladder-c_256.png new file mode 100644 index 00000000..996eef8c Binary files /dev/null and b/www/assets/images/items/desc-ladder-c_256.png differ diff --git a/www/assets/images/items/desc-ladder-c_64.png b/www/assets/images/items/desc-ladder-c_64.png new file mode 100644 index 00000000..085251c7 Binary files /dev/null and b/www/assets/images/items/desc-ladder-c_64.png differ diff --git a/www/assets/images/items/desc-landingpad-c_256.png b/www/assets/images/items/desc-landingpad-c_256.png new file mode 100644 index 00000000..c69ded68 Binary files /dev/null and b/www/assets/images/items/desc-landingpad-c_256.png differ diff --git a/www/assets/images/items/desc-landingpad-c_64.png b/www/assets/images/items/desc-landingpad-c_64.png new file mode 100644 index 00000000..be7f6c78 Binary files /dev/null and b/www/assets/images/items/desc-landingpad-c_64.png differ diff --git a/www/assets/images/items/desc-leaves-c_256.png b/www/assets/images/items/desc-leaves-c_256.png new file mode 100644 index 00000000..fea78bc7 Binary files /dev/null and b/www/assets/images/items/desc-leaves-c_256.png differ diff --git a/www/assets/images/items/desc-leaves-c_64.png b/www/assets/images/items/desc-leaves-c_64.png new file mode 100644 index 00000000..079d1092 Binary files /dev/null and b/www/assets/images/items/desc-leaves-c_64.png differ diff --git a/www/assets/images/items/desc-lightscontrolpanel-c_256.png b/www/assets/images/items/desc-lightscontrolpanel-c_256.png new file mode 100644 index 00000000..cfeed6b3 Binary files /dev/null and b/www/assets/images/items/desc-lightscontrolpanel-c_256.png differ diff --git a/www/assets/images/items/desc-lightscontrolpanel-c_64.png b/www/assets/images/items/desc-lightscontrolpanel-c_64.png new file mode 100644 index 00000000..2b6380ba Binary files /dev/null and b/www/assets/images/items/desc-lightscontrolpanel-c_64.png differ diff --git a/www/assets/images/items/desc-liquidbiofuel-c_256.png b/www/assets/images/items/desc-liquidbiofuel-c_256.png new file mode 100644 index 00000000..4e8c32c3 Binary files /dev/null and b/www/assets/images/items/desc-liquidbiofuel-c_256.png differ diff --git a/www/assets/images/items/desc-liquidbiofuel-c_64.png b/www/assets/images/items/desc-liquidbiofuel-c_64.png new file mode 100644 index 00000000..d7cda8b5 Binary files /dev/null and b/www/assets/images/items/desc-liquidbiofuel-c_64.png differ diff --git a/www/assets/images/items/desc-liquidfuel-c_256.png b/www/assets/images/items/desc-liquidfuel-c_256.png new file mode 100644 index 00000000..7591572b Binary files /dev/null and b/www/assets/images/items/desc-liquidfuel-c_256.png differ diff --git a/www/assets/images/items/desc-liquidfuel-c_64.png b/www/assets/images/items/desc-liquidfuel-c_64.png new file mode 100644 index 00000000..e6b38533 Binary files /dev/null and b/www/assets/images/items/desc-liquidfuel-c_64.png differ diff --git a/www/assets/images/items/desc-liquidoil-c_256.png b/www/assets/images/items/desc-liquidoil-c_256.png new file mode 100644 index 00000000..66f1e7ad Binary files /dev/null and b/www/assets/images/items/desc-liquidoil-c_256.png differ diff --git a/www/assets/images/items/desc-liquidoil-c_64.png b/www/assets/images/items/desc-liquidoil-c_64.png new file mode 100644 index 00000000..d4f01dda Binary files /dev/null and b/www/assets/images/items/desc-liquidoil-c_64.png differ diff --git a/www/assets/images/items/desc-liquidturbofuel-c_256.png b/www/assets/images/items/desc-liquidturbofuel-c_256.png new file mode 100644 index 00000000..15839f08 Binary files /dev/null and b/www/assets/images/items/desc-liquidturbofuel-c_256.png differ diff --git a/www/assets/images/items/desc-liquidturbofuel-c_64.png b/www/assets/images/items/desc-liquidturbofuel-c_64.png new file mode 100644 index 00000000..d020da36 Binary files /dev/null and b/www/assets/images/items/desc-liquidturbofuel-c_64.png differ diff --git a/www/assets/images/items/desc-locomotive-c_256.png b/www/assets/images/items/desc-locomotive-c_256.png new file mode 100644 index 00000000..21100c89 Binary files /dev/null and b/www/assets/images/items/desc-locomotive-c_256.png differ diff --git a/www/assets/images/items/desc-locomotive-c_64.png b/www/assets/images/items/desc-locomotive-c_64.png new file mode 100644 index 00000000..8a6656b5 Binary files /dev/null and b/www/assets/images/items/desc-locomotive-c_64.png differ diff --git a/www/assets/images/items/desc-lookouttower-c_256.png b/www/assets/images/items/desc-lookouttower-c_256.png new file mode 100644 index 00000000..0efa4d02 Binary files /dev/null and b/www/assets/images/items/desc-lookouttower-c_256.png differ diff --git a/www/assets/images/items/desc-lookouttower-c_64.png b/www/assets/images/items/desc-lookouttower-c_64.png new file mode 100644 index 00000000..c6216362 Binary files /dev/null and b/www/assets/images/items/desc-lookouttower-c_64.png differ diff --git a/www/assets/images/items/desc-mam-c_256.png b/www/assets/images/items/desc-mam-c_256.png new file mode 100644 index 00000000..89c9c3fa Binary files /dev/null and b/www/assets/images/items/desc-mam-c_256.png differ diff --git a/www/assets/images/items/desc-mam-c_64.png b/www/assets/images/items/desc-mam-c_64.png new file mode 100644 index 00000000..6b997968 Binary files /dev/null and b/www/assets/images/items/desc-mam-c_64.png differ diff --git a/www/assets/images/items/desc-manufacturermk1-c_256.png b/www/assets/images/items/desc-manufacturermk1-c_256.png new file mode 100644 index 00000000..b3ee6a48 Binary files /dev/null and b/www/assets/images/items/desc-manufacturermk1-c_256.png differ diff --git a/www/assets/images/items/desc-manufacturermk1-c_64.png b/www/assets/images/items/desc-manufacturermk1-c_64.png new file mode 100644 index 00000000..59f7a683 Binary files /dev/null and b/www/assets/images/items/desc-manufacturermk1-c_64.png differ diff --git a/www/assets/images/items/desc-medkit-c_256.png b/www/assets/images/items/desc-medkit-c_256.png new file mode 100644 index 00000000..af9622a9 Binary files /dev/null and b/www/assets/images/items/desc-medkit-c_256.png differ diff --git a/www/assets/images/items/desc-medkit-c_64.png b/www/assets/images/items/desc-medkit-c_64.png new file mode 100644 index 00000000..bd9fa403 Binary files /dev/null and b/www/assets/images/items/desc-medkit-c_64.png differ diff --git a/www/assets/images/items/desc-minermk1-c_256.png b/www/assets/images/items/desc-minermk1-c_256.png new file mode 100644 index 00000000..73deed72 Binary files /dev/null and b/www/assets/images/items/desc-minermk1-c_256.png differ diff --git a/www/assets/images/items/desc-minermk1-c_64.png b/www/assets/images/items/desc-minermk1-c_64.png new file mode 100644 index 00000000..9eb563e3 Binary files /dev/null and b/www/assets/images/items/desc-minermk1-c_64.png differ diff --git a/www/assets/images/items/desc-minermk2-c_256.png b/www/assets/images/items/desc-minermk2-c_256.png new file mode 100644 index 00000000..f56963dc Binary files /dev/null and b/www/assets/images/items/desc-minermk2-c_256.png differ diff --git a/www/assets/images/items/desc-minermk2-c_64.png b/www/assets/images/items/desc-minermk2-c_64.png new file mode 100644 index 00000000..f598175f Binary files /dev/null and b/www/assets/images/items/desc-minermk2-c_64.png differ diff --git a/www/assets/images/items/desc-minermk3-c_256.png b/www/assets/images/items/desc-minermk3-c_256.png new file mode 100644 index 00000000..d6c1bb12 Binary files /dev/null and b/www/assets/images/items/desc-minermk3-c_256.png differ diff --git a/www/assets/images/items/desc-minermk3-c_64.png b/www/assets/images/items/desc-minermk3-c_64.png new file mode 100644 index 00000000..9a8774ae Binary files /dev/null and b/www/assets/images/items/desc-minermk3-c_64.png differ diff --git a/www/assets/images/items/desc-modularframe-c_256.png b/www/assets/images/items/desc-modularframe-c_256.png new file mode 100644 index 00000000..3a8a7113 Binary files /dev/null and b/www/assets/images/items/desc-modularframe-c_256.png differ diff --git a/www/assets/images/items/desc-modularframe-c_64.png b/www/assets/images/items/desc-modularframe-c_64.png new file mode 100644 index 00000000..5bf9b409 Binary files /dev/null and b/www/assets/images/items/desc-modularframe-c_64.png differ diff --git a/www/assets/images/items/desc-modularframefused-c_256.png b/www/assets/images/items/desc-modularframefused-c_256.png new file mode 100644 index 00000000..b179d832 Binary files /dev/null and b/www/assets/images/items/desc-modularframefused-c_256.png differ diff --git a/www/assets/images/items/desc-modularframefused-c_64.png b/www/assets/images/items/desc-modularframefused-c_64.png new file mode 100644 index 00000000..28d61850 Binary files /dev/null and b/www/assets/images/items/desc-modularframefused-c_64.png differ diff --git a/www/assets/images/items/desc-modularframeheavy-c_256.png b/www/assets/images/items/desc-modularframeheavy-c_256.png new file mode 100644 index 00000000..f3e340fa Binary files /dev/null and b/www/assets/images/items/desc-modularframeheavy-c_256.png differ diff --git a/www/assets/images/items/desc-modularframeheavy-c_64.png b/www/assets/images/items/desc-modularframeheavy-c_64.png new file mode 100644 index 00000000..1b364104 Binary files /dev/null and b/www/assets/images/items/desc-modularframeheavy-c_64.png differ diff --git a/www/assets/images/items/desc-modularframelightweight-c_256.png b/www/assets/images/items/desc-modularframelightweight-c_256.png new file mode 100644 index 00000000..d9b414d0 Binary files /dev/null and b/www/assets/images/items/desc-modularframelightweight-c_256.png differ diff --git a/www/assets/images/items/desc-modularframelightweight-c_64.png b/www/assets/images/items/desc-modularframelightweight-c_64.png new file mode 100644 index 00000000..d198639d Binary files /dev/null and b/www/assets/images/items/desc-modularframelightweight-c_64.png differ diff --git a/www/assets/images/items/desc-motor-c_256.png b/www/assets/images/items/desc-motor-c_256.png new file mode 100644 index 00000000..423536bc Binary files /dev/null and b/www/assets/images/items/desc-motor-c_256.png differ diff --git a/www/assets/images/items/desc-motor-c_64.png b/www/assets/images/items/desc-motor-c_64.png new file mode 100644 index 00000000..95227f65 Binary files /dev/null and b/www/assets/images/items/desc-motor-c_64.png differ diff --git a/www/assets/images/items/desc-motorlightweight-c_256.png b/www/assets/images/items/desc-motorlightweight-c_256.png new file mode 100644 index 00000000..d4b72ace Binary files /dev/null and b/www/assets/images/items/desc-motorlightweight-c_256.png differ diff --git a/www/assets/images/items/desc-motorlightweight-c_64.png b/www/assets/images/items/desc-motorlightweight-c_64.png new file mode 100644 index 00000000..f2eada87 Binary files /dev/null and b/www/assets/images/items/desc-motorlightweight-c_64.png differ diff --git a/www/assets/images/items/desc-mycelia-c_256.png b/www/assets/images/items/desc-mycelia-c_256.png new file mode 100644 index 00000000..b1536d17 Binary files /dev/null and b/www/assets/images/items/desc-mycelia-c_256.png differ diff --git a/www/assets/images/items/desc-mycelia-c_64.png b/www/assets/images/items/desc-mycelia-c_64.png new file mode 100644 index 00000000..a9aa6dfb Binary files /dev/null and b/www/assets/images/items/desc-mycelia-c_64.png differ diff --git a/www/assets/images/items/desc-nitricacid-c_256.png b/www/assets/images/items/desc-nitricacid-c_256.png new file mode 100644 index 00000000..db355411 Binary files /dev/null and b/www/assets/images/items/desc-nitricacid-c_256.png differ diff --git a/www/assets/images/items/desc-nitricacid-c_64.png b/www/assets/images/items/desc-nitricacid-c_64.png new file mode 100644 index 00000000..e6b7bff3 Binary files /dev/null and b/www/assets/images/items/desc-nitricacid-c_64.png differ diff --git a/www/assets/images/items/desc-nitrogengas-c_256.png b/www/assets/images/items/desc-nitrogengas-c_256.png new file mode 100644 index 00000000..7fcd3956 Binary files /dev/null and b/www/assets/images/items/desc-nitrogengas-c_256.png differ diff --git a/www/assets/images/items/desc-nitrogengas-c_64.png b/www/assets/images/items/desc-nitrogengas-c_64.png new file mode 100644 index 00000000..1f1ac581 Binary files /dev/null and b/www/assets/images/items/desc-nitrogengas-c_64.png differ diff --git a/www/assets/images/items/desc-nobeliskcluster-c_256.png b/www/assets/images/items/desc-nobeliskcluster-c_256.png new file mode 100644 index 00000000..8f9d5dc7 Binary files /dev/null and b/www/assets/images/items/desc-nobeliskcluster-c_256.png differ diff --git a/www/assets/images/items/desc-nobeliskcluster-c_64.png b/www/assets/images/items/desc-nobeliskcluster-c_64.png new file mode 100644 index 00000000..0413d21f Binary files /dev/null and b/www/assets/images/items/desc-nobeliskcluster-c_64.png differ diff --git a/www/assets/images/items/desc-nobeliskexplosive-c_256.png b/www/assets/images/items/desc-nobeliskexplosive-c_256.png new file mode 100644 index 00000000..eb0d4896 Binary files /dev/null and b/www/assets/images/items/desc-nobeliskexplosive-c_256.png differ diff --git a/www/assets/images/items/desc-nobeliskexplosive-c_64.png b/www/assets/images/items/desc-nobeliskexplosive-c_64.png new file mode 100644 index 00000000..7a708253 Binary files /dev/null and b/www/assets/images/items/desc-nobeliskexplosive-c_64.png differ diff --git a/www/assets/images/items/desc-nobeliskgas-c_256.png b/www/assets/images/items/desc-nobeliskgas-c_256.png new file mode 100644 index 00000000..defecb66 Binary files /dev/null and b/www/assets/images/items/desc-nobeliskgas-c_256.png differ diff --git a/www/assets/images/items/desc-nobeliskgas-c_64.png b/www/assets/images/items/desc-nobeliskgas-c_64.png new file mode 100644 index 00000000..e23e6bfe Binary files /dev/null and b/www/assets/images/items/desc-nobeliskgas-c_64.png differ diff --git a/www/assets/images/items/desc-nobelisknuke-c_256.png b/www/assets/images/items/desc-nobelisknuke-c_256.png new file mode 100644 index 00000000..e3923913 Binary files /dev/null and b/www/assets/images/items/desc-nobelisknuke-c_256.png differ diff --git a/www/assets/images/items/desc-nobelisknuke-c_64.png b/www/assets/images/items/desc-nobelisknuke-c_64.png new file mode 100644 index 00000000..cbf31e09 Binary files /dev/null and b/www/assets/images/items/desc-nobelisknuke-c_64.png differ diff --git a/www/assets/images/items/desc-nobeliskshockwave-c_256.png b/www/assets/images/items/desc-nobeliskshockwave-c_256.png new file mode 100644 index 00000000..51bf80d9 Binary files /dev/null and b/www/assets/images/items/desc-nobeliskshockwave-c_256.png differ diff --git a/www/assets/images/items/desc-nobeliskshockwave-c_64.png b/www/assets/images/items/desc-nobeliskshockwave-c_64.png new file mode 100644 index 00000000..d61dc47f Binary files /dev/null and b/www/assets/images/items/desc-nobeliskshockwave-c_64.png differ diff --git a/www/assets/images/items/desc-nonfissibleuranium-c_256.png b/www/assets/images/items/desc-nonfissibleuranium-c_256.png new file mode 100644 index 00000000..25321dfa Binary files /dev/null and b/www/assets/images/items/desc-nonfissibleuranium-c_256.png differ diff --git a/www/assets/images/items/desc-nonfissibleuranium-c_64.png b/www/assets/images/items/desc-nonfissibleuranium-c_64.png new file mode 100644 index 00000000..1e1f9da9 Binary files /dev/null and b/www/assets/images/items/desc-nonfissibleuranium-c_64.png differ diff --git a/www/assets/images/items/desc-nuclearfuelrod-c_256.png b/www/assets/images/items/desc-nuclearfuelrod-c_256.png new file mode 100644 index 00000000..677867ba Binary files /dev/null and b/www/assets/images/items/desc-nuclearfuelrod-c_256.png differ diff --git a/www/assets/images/items/desc-nuclearfuelrod-c_64.png b/www/assets/images/items/desc-nuclearfuelrod-c_64.png new file mode 100644 index 00000000..d8729db7 Binary files /dev/null and b/www/assets/images/items/desc-nuclearfuelrod-c_64.png differ diff --git a/www/assets/images/items/desc-nuclearwaste-c_256.png b/www/assets/images/items/desc-nuclearwaste-c_256.png new file mode 100644 index 00000000..7a7eb241 Binary files /dev/null and b/www/assets/images/items/desc-nuclearwaste-c_256.png differ diff --git a/www/assets/images/items/desc-nuclearwaste-c_64.png b/www/assets/images/items/desc-nuclearwaste-c_64.png new file mode 100644 index 00000000..154a6e7e Binary files /dev/null and b/www/assets/images/items/desc-nuclearwaste-c_64.png differ diff --git a/www/assets/images/items/desc-nut-c_256.png b/www/assets/images/items/desc-nut-c_256.png new file mode 100644 index 00000000..cf70a51e Binary files /dev/null and b/www/assets/images/items/desc-nut-c_256.png differ diff --git a/www/assets/images/items/desc-nut-c_64.png b/www/assets/images/items/desc-nut-c_64.png new file mode 100644 index 00000000..d1297660 Binary files /dev/null and b/www/assets/images/items/desc-nut-c_64.png differ diff --git a/www/assets/images/items/desc-oilpump-c_256.png b/www/assets/images/items/desc-oilpump-c_256.png new file mode 100644 index 00000000..4c623a03 Binary files /dev/null and b/www/assets/images/items/desc-oilpump-c_256.png differ diff --git a/www/assets/images/items/desc-oilpump-c_64.png b/www/assets/images/items/desc-oilpump-c_64.png new file mode 100644 index 00000000..cd85040f Binary files /dev/null and b/www/assets/images/items/desc-oilpump-c_64.png differ diff --git a/www/assets/images/items/desc-oilrefinery-c_256.png b/www/assets/images/items/desc-oilrefinery-c_256.png new file mode 100644 index 00000000..f296b481 Binary files /dev/null and b/www/assets/images/items/desc-oilrefinery-c_256.png differ diff --git a/www/assets/images/items/desc-oilrefinery-c_64.png b/www/assets/images/items/desc-oilrefinery-c_64.png new file mode 100644 index 00000000..9c0dd316 Binary files /dev/null and b/www/assets/images/items/desc-oilrefinery-c_64.png differ diff --git a/www/assets/images/items/desc-orebauxite-c_256.png b/www/assets/images/items/desc-orebauxite-c_256.png new file mode 100644 index 00000000..92c039c8 Binary files /dev/null and b/www/assets/images/items/desc-orebauxite-c_256.png differ diff --git a/www/assets/images/items/desc-orebauxite-c_64.png b/www/assets/images/items/desc-orebauxite-c_64.png new file mode 100644 index 00000000..1c6a6b1b Binary files /dev/null and b/www/assets/images/items/desc-orebauxite-c_64.png differ diff --git a/www/assets/images/items/desc-orecopper-c_256.png b/www/assets/images/items/desc-orecopper-c_256.png new file mode 100644 index 00000000..bc4982af Binary files /dev/null and b/www/assets/images/items/desc-orecopper-c_256.png differ diff --git a/www/assets/images/items/desc-orecopper-c_64.png b/www/assets/images/items/desc-orecopper-c_64.png new file mode 100644 index 00000000..ac251036 Binary files /dev/null and b/www/assets/images/items/desc-orecopper-c_64.png differ diff --git a/www/assets/images/items/desc-oregold-c_256.png b/www/assets/images/items/desc-oregold-c_256.png new file mode 100644 index 00000000..93ae9c1b Binary files /dev/null and b/www/assets/images/items/desc-oregold-c_256.png differ diff --git a/www/assets/images/items/desc-oregold-c_64.png b/www/assets/images/items/desc-oregold-c_64.png new file mode 100644 index 00000000..45921122 Binary files /dev/null and b/www/assets/images/items/desc-oregold-c_64.png differ diff --git a/www/assets/images/items/desc-oreiron-c_256.png b/www/assets/images/items/desc-oreiron-c_256.png new file mode 100644 index 00000000..7ebe341b Binary files /dev/null and b/www/assets/images/items/desc-oreiron-c_256.png differ diff --git a/www/assets/images/items/desc-oreiron-c_64.png b/www/assets/images/items/desc-oreiron-c_64.png new file mode 100644 index 00000000..debf0930 Binary files /dev/null and b/www/assets/images/items/desc-oreiron-c_64.png differ diff --git a/www/assets/images/items/desc-oreuranium-c_256.png b/www/assets/images/items/desc-oreuranium-c_256.png new file mode 100644 index 00000000..cf4714f0 Binary files /dev/null and b/www/assets/images/items/desc-oreuranium-c_256.png differ diff --git a/www/assets/images/items/desc-oreuranium-c_64.png b/www/assets/images/items/desc-oreuranium-c_64.png new file mode 100644 index 00000000..73cec637 Binary files /dev/null and b/www/assets/images/items/desc-oreuranium-c_64.png differ diff --git a/www/assets/images/items/desc-packagedalumina-c_256.png b/www/assets/images/items/desc-packagedalumina-c_256.png new file mode 100644 index 00000000..971d026b Binary files /dev/null and b/www/assets/images/items/desc-packagedalumina-c_256.png differ diff --git a/www/assets/images/items/desc-packagedalumina-c_64.png b/www/assets/images/items/desc-packagedalumina-c_64.png new file mode 100644 index 00000000..d2926ef2 Binary files /dev/null and b/www/assets/images/items/desc-packagedalumina-c_64.png differ diff --git a/www/assets/images/items/desc-packagedbiofuel-c_256.png b/www/assets/images/items/desc-packagedbiofuel-c_256.png new file mode 100644 index 00000000..b0f4adb2 Binary files /dev/null and b/www/assets/images/items/desc-packagedbiofuel-c_256.png differ diff --git a/www/assets/images/items/desc-packagedbiofuel-c_64.png b/www/assets/images/items/desc-packagedbiofuel-c_64.png new file mode 100644 index 00000000..d1378db8 Binary files /dev/null and b/www/assets/images/items/desc-packagedbiofuel-c_64.png differ diff --git a/www/assets/images/items/desc-packagedionizedfuel-c_256.png b/www/assets/images/items/desc-packagedionizedfuel-c_256.png new file mode 100644 index 00000000..1a318080 Binary files /dev/null and b/www/assets/images/items/desc-packagedionizedfuel-c_256.png differ diff --git a/www/assets/images/items/desc-packagedionizedfuel-c_64.png b/www/assets/images/items/desc-packagedionizedfuel-c_64.png new file mode 100644 index 00000000..d3d733be Binary files /dev/null and b/www/assets/images/items/desc-packagedionizedfuel-c_64.png differ diff --git a/www/assets/images/items/desc-packagednitricacid-c_256.png b/www/assets/images/items/desc-packagednitricacid-c_256.png new file mode 100644 index 00000000..96ec4f3d Binary files /dev/null and b/www/assets/images/items/desc-packagednitricacid-c_256.png differ diff --git a/www/assets/images/items/desc-packagednitricacid-c_64.png b/www/assets/images/items/desc-packagednitricacid-c_64.png new file mode 100644 index 00000000..8b0b2bcb Binary files /dev/null and b/www/assets/images/items/desc-packagednitricacid-c_64.png differ diff --git a/www/assets/images/items/desc-packagednitrogengas-c_256.png b/www/assets/images/items/desc-packagednitrogengas-c_256.png new file mode 100644 index 00000000..6f3a4f67 Binary files /dev/null and b/www/assets/images/items/desc-packagednitrogengas-c_256.png differ diff --git a/www/assets/images/items/desc-packagednitrogengas-c_64.png b/www/assets/images/items/desc-packagednitrogengas-c_64.png new file mode 100644 index 00000000..1519e946 Binary files /dev/null and b/www/assets/images/items/desc-packagednitrogengas-c_64.png differ diff --git a/www/assets/images/items/desc-packagedoil-c_256.png b/www/assets/images/items/desc-packagedoil-c_256.png new file mode 100644 index 00000000..066f3cc6 Binary files /dev/null and b/www/assets/images/items/desc-packagedoil-c_256.png differ diff --git a/www/assets/images/items/desc-packagedoil-c_64.png b/www/assets/images/items/desc-packagedoil-c_64.png new file mode 100644 index 00000000..086ba374 Binary files /dev/null and b/www/assets/images/items/desc-packagedoil-c_64.png differ diff --git a/www/assets/images/items/desc-packagedoilresidue-c_256.png b/www/assets/images/items/desc-packagedoilresidue-c_256.png new file mode 100644 index 00000000..485cded5 Binary files /dev/null and b/www/assets/images/items/desc-packagedoilresidue-c_256.png differ diff --git a/www/assets/images/items/desc-packagedoilresidue-c_64.png b/www/assets/images/items/desc-packagedoilresidue-c_64.png new file mode 100644 index 00000000..6dbf7ddc Binary files /dev/null and b/www/assets/images/items/desc-packagedoilresidue-c_64.png differ diff --git a/www/assets/images/items/desc-packagedrocketfuel-c_256.png b/www/assets/images/items/desc-packagedrocketfuel-c_256.png new file mode 100644 index 00000000..04e59ca7 Binary files /dev/null and b/www/assets/images/items/desc-packagedrocketfuel-c_256.png differ diff --git a/www/assets/images/items/desc-packagedrocketfuel-c_64.png b/www/assets/images/items/desc-packagedrocketfuel-c_64.png new file mode 100644 index 00000000..b15f784c Binary files /dev/null and b/www/assets/images/items/desc-packagedrocketfuel-c_64.png differ diff --git a/www/assets/images/items/desc-packagedsulfuricacid-c_256.png b/www/assets/images/items/desc-packagedsulfuricacid-c_256.png new file mode 100644 index 00000000..8ee34f5c Binary files /dev/null and b/www/assets/images/items/desc-packagedsulfuricacid-c_256.png differ diff --git a/www/assets/images/items/desc-packagedsulfuricacid-c_64.png b/www/assets/images/items/desc-packagedsulfuricacid-c_64.png new file mode 100644 index 00000000..0c2f8aa6 Binary files /dev/null and b/www/assets/images/items/desc-packagedsulfuricacid-c_64.png differ diff --git a/www/assets/images/items/desc-packagedwater-c_256.png b/www/assets/images/items/desc-packagedwater-c_256.png new file mode 100644 index 00000000..c6507089 Binary files /dev/null and b/www/assets/images/items/desc-packagedwater-c_256.png differ diff --git a/www/assets/images/items/desc-packagedwater-c_64.png b/www/assets/images/items/desc-packagedwater-c_64.png new file mode 100644 index 00000000..fd5ba0b6 Binary files /dev/null and b/www/assets/images/items/desc-packagedwater-c_64.png differ diff --git a/www/assets/images/items/desc-packager-c_256.png b/www/assets/images/items/desc-packager-c_256.png new file mode 100644 index 00000000..3e13c0bd Binary files /dev/null and b/www/assets/images/items/desc-packager-c_256.png differ diff --git a/www/assets/images/items/desc-packager-c_64.png b/www/assets/images/items/desc-packager-c_64.png new file mode 100644 index 00000000..18ada1bb Binary files /dev/null and b/www/assets/images/items/desc-packager-c_64.png differ diff --git a/www/assets/images/items/desc-parachute-c_256.png b/www/assets/images/items/desc-parachute-c_256.png new file mode 100644 index 00000000..f5b18e89 Binary files /dev/null and b/www/assets/images/items/desc-parachute-c_256.png differ diff --git a/www/assets/images/items/desc-parachute-c_64.png b/www/assets/images/items/desc-parachute-c_64.png new file mode 100644 index 00000000..14bbc0fa Binary files /dev/null and b/www/assets/images/items/desc-parachute-c_64.png differ diff --git a/www/assets/images/items/desc-petroleumcoke-c_256.png b/www/assets/images/items/desc-petroleumcoke-c_256.png new file mode 100644 index 00000000..571e2d34 Binary files /dev/null and b/www/assets/images/items/desc-petroleumcoke-c_256.png differ diff --git a/www/assets/images/items/desc-petroleumcoke-c_64.png b/www/assets/images/items/desc-petroleumcoke-c_64.png new file mode 100644 index 00000000..bc5a7c53 Binary files /dev/null and b/www/assets/images/items/desc-petroleumcoke-c_64.png differ diff --git a/www/assets/images/items/desc-pillar-small-concrete-c_256.png b/www/assets/images/items/desc-pillar-small-concrete-c_256.png new file mode 100644 index 00000000..b88e2af3 Binary files /dev/null and b/www/assets/images/items/desc-pillar-small-concrete-c_256.png differ diff --git a/www/assets/images/items/desc-pillar-small-concrete-c_64.png b/www/assets/images/items/desc-pillar-small-concrete-c_64.png new file mode 100644 index 00000000..52d68c21 Binary files /dev/null and b/www/assets/images/items/desc-pillar-small-concrete-c_64.png differ diff --git a/www/assets/images/items/desc-pillar-small-frame-c_256.png b/www/assets/images/items/desc-pillar-small-frame-c_256.png new file mode 100644 index 00000000..61035913 Binary files /dev/null and b/www/assets/images/items/desc-pillar-small-frame-c_256.png differ diff --git a/www/assets/images/items/desc-pillar-small-frame-c_64.png b/www/assets/images/items/desc-pillar-small-frame-c_64.png new file mode 100644 index 00000000..573f3e66 Binary files /dev/null and b/www/assets/images/items/desc-pillar-small-frame-c_64.png differ diff --git a/www/assets/images/items/desc-pillar-small-metal-c_256.png b/www/assets/images/items/desc-pillar-small-metal-c_256.png new file mode 100644 index 00000000..be487afa Binary files /dev/null and b/www/assets/images/items/desc-pillar-small-metal-c_256.png differ diff --git a/www/assets/images/items/desc-pillar-small-metal-c_64.png b/www/assets/images/items/desc-pillar-small-metal-c_64.png new file mode 100644 index 00000000..6a4284ba Binary files /dev/null and b/www/assets/images/items/desc-pillar-small-metal-c_64.png differ diff --git a/www/assets/images/items/desc-pillarbase-c_256.png b/www/assets/images/items/desc-pillarbase-c_256.png new file mode 100644 index 00000000..88b40620 Binary files /dev/null and b/www/assets/images/items/desc-pillarbase-c_256.png differ diff --git a/www/assets/images/items/desc-pillarbase-c_64.png b/www/assets/images/items/desc-pillarbase-c_64.png new file mode 100644 index 00000000..d2c0335a Binary files /dev/null and b/www/assets/images/items/desc-pillarbase-c_64.png differ diff --git a/www/assets/images/items/desc-pillarbase-small-c_256.png b/www/assets/images/items/desc-pillarbase-small-c_256.png new file mode 100644 index 00000000..a3fb4770 Binary files /dev/null and b/www/assets/images/items/desc-pillarbase-small-c_256.png differ diff --git a/www/assets/images/items/desc-pillarbase-small-c_64.png b/www/assets/images/items/desc-pillarbase-small-c_64.png new file mode 100644 index 00000000..b96c0ee1 Binary files /dev/null and b/www/assets/images/items/desc-pillarbase-small-c_64.png differ diff --git a/www/assets/images/items/desc-pillarmiddle-c_256.png b/www/assets/images/items/desc-pillarmiddle-c_256.png new file mode 100644 index 00000000..98b42662 Binary files /dev/null and b/www/assets/images/items/desc-pillarmiddle-c_256.png differ diff --git a/www/assets/images/items/desc-pillarmiddle-c_64.png b/www/assets/images/items/desc-pillarmiddle-c_64.png new file mode 100644 index 00000000..7f197b77 Binary files /dev/null and b/www/assets/images/items/desc-pillarmiddle-c_64.png differ diff --git a/www/assets/images/items/desc-pillarmiddle-concrete-c_256.png b/www/assets/images/items/desc-pillarmiddle-concrete-c_256.png new file mode 100644 index 00000000..50c54c5d Binary files /dev/null and b/www/assets/images/items/desc-pillarmiddle-concrete-c_256.png differ diff --git a/www/assets/images/items/desc-pillarmiddle-concrete-c_64.png b/www/assets/images/items/desc-pillarmiddle-concrete-c_64.png new file mode 100644 index 00000000..74e7e8cf Binary files /dev/null and b/www/assets/images/items/desc-pillarmiddle-concrete-c_64.png differ diff --git a/www/assets/images/items/desc-pillarmiddle-frame-c_256.png b/www/assets/images/items/desc-pillarmiddle-frame-c_256.png new file mode 100644 index 00000000..b05953ba Binary files /dev/null and b/www/assets/images/items/desc-pillarmiddle-frame-c_256.png differ diff --git a/www/assets/images/items/desc-pillarmiddle-frame-c_64.png b/www/assets/images/items/desc-pillarmiddle-frame-c_64.png new file mode 100644 index 00000000..0fec8f85 Binary files /dev/null and b/www/assets/images/items/desc-pillarmiddle-frame-c_64.png differ diff --git a/www/assets/images/items/desc-pipehyper-c_256.png b/www/assets/images/items/desc-pipehyper-c_256.png new file mode 100644 index 00000000..bf271f58 Binary files /dev/null and b/www/assets/images/items/desc-pipehyper-c_256.png differ diff --git a/www/assets/images/items/desc-pipehyper-c_64.png b/www/assets/images/items/desc-pipehyper-c_64.png new file mode 100644 index 00000000..21d29c7b Binary files /dev/null and b/www/assets/images/items/desc-pipehyper-c_64.png differ diff --git a/www/assets/images/items/desc-pipehyperstart-c_256.png b/www/assets/images/items/desc-pipehyperstart-c_256.png new file mode 100644 index 00000000..c58dd664 Binary files /dev/null and b/www/assets/images/items/desc-pipehyperstart-c_256.png differ diff --git a/www/assets/images/items/desc-pipehyperstart-c_64.png b/www/assets/images/items/desc-pipehyperstart-c_64.png new file mode 100644 index 00000000..31974e7c Binary files /dev/null and b/www/assets/images/items/desc-pipehyperstart-c_64.png differ diff --git a/www/assets/images/items/desc-pipehypersupport-c_256.png b/www/assets/images/items/desc-pipehypersupport-c_256.png new file mode 100644 index 00000000..c3138516 Binary files /dev/null and b/www/assets/images/items/desc-pipehypersupport-c_256.png differ diff --git a/www/assets/images/items/desc-pipehypersupport-c_64.png b/www/assets/images/items/desc-pipehypersupport-c_64.png new file mode 100644 index 00000000..f8653a0b Binary files /dev/null and b/www/assets/images/items/desc-pipehypersupport-c_64.png differ diff --git a/www/assets/images/items/desc-pipeline-c_256.png b/www/assets/images/items/desc-pipeline-c_256.png new file mode 100644 index 00000000..c4a21af0 Binary files /dev/null and b/www/assets/images/items/desc-pipeline-c_256.png differ diff --git a/www/assets/images/items/desc-pipeline-c_64.png b/www/assets/images/items/desc-pipeline-c_64.png new file mode 100644 index 00000000..f6ceca19 Binary files /dev/null and b/www/assets/images/items/desc-pipeline-c_64.png differ diff --git a/www/assets/images/items/desc-pipeline-noindicator-c_256.png b/www/assets/images/items/desc-pipeline-noindicator-c_256.png new file mode 100644 index 00000000..f6fb9854 Binary files /dev/null and b/www/assets/images/items/desc-pipeline-noindicator-c_256.png differ diff --git a/www/assets/images/items/desc-pipeline-noindicator-c_64.png b/www/assets/images/items/desc-pipeline-noindicator-c_64.png new file mode 100644 index 00000000..c950f569 Binary files /dev/null and b/www/assets/images/items/desc-pipeline-noindicator-c_64.png differ diff --git a/www/assets/images/items/desc-pipelinejunction-cross-c_256.png b/www/assets/images/items/desc-pipelinejunction-cross-c_256.png new file mode 100644 index 00000000..31f724ba Binary files /dev/null and b/www/assets/images/items/desc-pipelinejunction-cross-c_256.png differ diff --git a/www/assets/images/items/desc-pipelinejunction-cross-c_64.png b/www/assets/images/items/desc-pipelinejunction-cross-c_64.png new file mode 100644 index 00000000..a62aa220 Binary files /dev/null and b/www/assets/images/items/desc-pipelinejunction-cross-c_64.png differ diff --git a/www/assets/images/items/desc-pipelinemk2-c_256.png b/www/assets/images/items/desc-pipelinemk2-c_256.png new file mode 100644 index 00000000..1657cd21 Binary files /dev/null and b/www/assets/images/items/desc-pipelinemk2-c_256.png differ diff --git a/www/assets/images/items/desc-pipelinemk2-c_64.png b/www/assets/images/items/desc-pipelinemk2-c_64.png new file mode 100644 index 00000000..a6afa091 Binary files /dev/null and b/www/assets/images/items/desc-pipelinemk2-c_64.png differ diff --git a/www/assets/images/items/desc-pipelinemk2-noindicator-c_256.png b/www/assets/images/items/desc-pipelinemk2-noindicator-c_256.png new file mode 100644 index 00000000..b9f2f778 Binary files /dev/null and b/www/assets/images/items/desc-pipelinemk2-noindicator-c_256.png differ diff --git a/www/assets/images/items/desc-pipelinemk2-noindicator-c_64.png b/www/assets/images/items/desc-pipelinemk2-noindicator-c_64.png new file mode 100644 index 00000000..c16efbce Binary files /dev/null and b/www/assets/images/items/desc-pipelinemk2-noindicator-c_64.png differ diff --git a/www/assets/images/items/desc-pipelinepump-c_256.png b/www/assets/images/items/desc-pipelinepump-c_256.png new file mode 100644 index 00000000..3167ee62 Binary files /dev/null and b/www/assets/images/items/desc-pipelinepump-c_256.png differ diff --git a/www/assets/images/items/desc-pipelinepump-c_64.png b/www/assets/images/items/desc-pipelinepump-c_64.png new file mode 100644 index 00000000..ff718f69 Binary files /dev/null and b/www/assets/images/items/desc-pipelinepump-c_64.png differ diff --git a/www/assets/images/items/desc-pipelinepumpmk2-c_256.png b/www/assets/images/items/desc-pipelinepumpmk2-c_256.png new file mode 100644 index 00000000..0670e0b5 Binary files /dev/null and b/www/assets/images/items/desc-pipelinepumpmk2-c_256.png differ diff --git a/www/assets/images/items/desc-pipelinepumpmk2-c_64.png b/www/assets/images/items/desc-pipelinepumpmk2-c_64.png new file mode 100644 index 00000000..88dd404a Binary files /dev/null and b/www/assets/images/items/desc-pipelinepumpmk2-c_64.png differ diff --git a/www/assets/images/items/desc-pipelinesupport-c_256.png b/www/assets/images/items/desc-pipelinesupport-c_256.png new file mode 100644 index 00000000..19117514 Binary files /dev/null and b/www/assets/images/items/desc-pipelinesupport-c_256.png differ diff --git a/www/assets/images/items/desc-pipelinesupport-c_64.png b/www/assets/images/items/desc-pipelinesupport-c_64.png new file mode 100644 index 00000000..5d2fc4d6 Binary files /dev/null and b/www/assets/images/items/desc-pipelinesupport-c_64.png differ diff --git a/www/assets/images/items/desc-pipelinesupportwall-c_256.png b/www/assets/images/items/desc-pipelinesupportwall-c_256.png new file mode 100644 index 00000000..52e00f0d Binary files /dev/null and b/www/assets/images/items/desc-pipelinesupportwall-c_256.png differ diff --git a/www/assets/images/items/desc-pipelinesupportwall-c_64.png b/www/assets/images/items/desc-pipelinesupportwall-c_64.png new file mode 100644 index 00000000..0ad97490 Binary files /dev/null and b/www/assets/images/items/desc-pipelinesupportwall-c_64.png differ diff --git a/www/assets/images/items/desc-pipelinesupportwallhole-c_256.png b/www/assets/images/items/desc-pipelinesupportwallhole-c_256.png new file mode 100644 index 00000000..c21f8899 Binary files /dev/null and b/www/assets/images/items/desc-pipelinesupportwallhole-c_256.png differ diff --git a/www/assets/images/items/desc-pipelinesupportwallhole-c_64.png b/www/assets/images/items/desc-pipelinesupportwallhole-c_64.png new file mode 100644 index 00000000..9953575f Binary files /dev/null and b/www/assets/images/items/desc-pipelinesupportwallhole-c_64.png differ diff --git a/www/assets/images/items/desc-pipestoragetank-c_256.png b/www/assets/images/items/desc-pipestoragetank-c_256.png new file mode 100644 index 00000000..9370f334 Binary files /dev/null and b/www/assets/images/items/desc-pipestoragetank-c_256.png differ diff --git a/www/assets/images/items/desc-pipestoragetank-c_64.png b/www/assets/images/items/desc-pipestoragetank-c_64.png new file mode 100644 index 00000000..c4fd0179 Binary files /dev/null and b/www/assets/images/items/desc-pipestoragetank-c_64.png differ diff --git a/www/assets/images/items/desc-pipesupportstackable-c_256.png b/www/assets/images/items/desc-pipesupportstackable-c_256.png new file mode 100644 index 00000000..997f9c1b Binary files /dev/null and b/www/assets/images/items/desc-pipesupportstackable-c_256.png differ diff --git a/www/assets/images/items/desc-pipesupportstackable-c_64.png b/www/assets/images/items/desc-pipesupportstackable-c_64.png new file mode 100644 index 00000000..92f28f56 Binary files /dev/null and b/www/assets/images/items/desc-pipesupportstackable-c_64.png differ diff --git a/www/assets/images/items/desc-plastic-c_256.png b/www/assets/images/items/desc-plastic-c_256.png new file mode 100644 index 00000000..51120109 Binary files /dev/null and b/www/assets/images/items/desc-plastic-c_256.png differ diff --git a/www/assets/images/items/desc-plastic-c_64.png b/www/assets/images/items/desc-plastic-c_64.png new file mode 100644 index 00000000..25ce5e16 Binary files /dev/null and b/www/assets/images/items/desc-plastic-c_64.png differ diff --git a/www/assets/images/items/desc-plutoniumcell-c_256.png b/www/assets/images/items/desc-plutoniumcell-c_256.png new file mode 100644 index 00000000..bdf64e05 Binary files /dev/null and b/www/assets/images/items/desc-plutoniumcell-c_256.png differ diff --git a/www/assets/images/items/desc-plutoniumcell-c_64.png b/www/assets/images/items/desc-plutoniumcell-c_64.png new file mode 100644 index 00000000..a2848804 Binary files /dev/null and b/www/assets/images/items/desc-plutoniumcell-c_64.png differ diff --git a/www/assets/images/items/desc-plutoniumfuelrod-c_256.png b/www/assets/images/items/desc-plutoniumfuelrod-c_256.png new file mode 100644 index 00000000..98048c59 Binary files /dev/null and b/www/assets/images/items/desc-plutoniumfuelrod-c_256.png differ diff --git a/www/assets/images/items/desc-plutoniumfuelrod-c_64.png b/www/assets/images/items/desc-plutoniumfuelrod-c_64.png new file mode 100644 index 00000000..ba10b894 Binary files /dev/null and b/www/assets/images/items/desc-plutoniumfuelrod-c_64.png differ diff --git a/www/assets/images/items/desc-plutoniumpellet-c_256.png b/www/assets/images/items/desc-plutoniumpellet-c_256.png new file mode 100644 index 00000000..025f29f4 Binary files /dev/null and b/www/assets/images/items/desc-plutoniumpellet-c_256.png differ diff --git a/www/assets/images/items/desc-plutoniumpellet-c_64.png b/www/assets/images/items/desc-plutoniumpellet-c_64.png new file mode 100644 index 00000000..fd35e5e0 Binary files /dev/null and b/www/assets/images/items/desc-plutoniumpellet-c_64.png differ diff --git a/www/assets/images/items/desc-plutoniumwaste-c_256.png b/www/assets/images/items/desc-plutoniumwaste-c_256.png new file mode 100644 index 00000000..65324c26 Binary files /dev/null and b/www/assets/images/items/desc-plutoniumwaste-c_256.png differ diff --git a/www/assets/images/items/desc-plutoniumwaste-c_64.png b/www/assets/images/items/desc-plutoniumwaste-c_64.png new file mode 100644 index 00000000..77d1b1b8 Binary files /dev/null and b/www/assets/images/items/desc-plutoniumwaste-c_64.png differ diff --git a/www/assets/images/items/desc-polymerresin-c_256.png b/www/assets/images/items/desc-polymerresin-c_256.png new file mode 100644 index 00000000..db3ab71d Binary files /dev/null and b/www/assets/images/items/desc-polymerresin-c_256.png differ diff --git a/www/assets/images/items/desc-polymerresin-c_64.png b/www/assets/images/items/desc-polymerresin-c_64.png new file mode 100644 index 00000000..db86abbd Binary files /dev/null and b/www/assets/images/items/desc-polymerresin-c_64.png differ diff --git a/www/assets/images/items/desc-portal-c_256.png b/www/assets/images/items/desc-portal-c_256.png new file mode 100644 index 00000000..e5f7c30f Binary files /dev/null and b/www/assets/images/items/desc-portal-c_256.png differ diff --git a/www/assets/images/items/desc-portal-c_64.png b/www/assets/images/items/desc-portal-c_64.png new file mode 100644 index 00000000..2158b614 Binary files /dev/null and b/www/assets/images/items/desc-portal-c_64.png differ diff --git a/www/assets/images/items/desc-portalsatellite-c_256.png b/www/assets/images/items/desc-portalsatellite-c_256.png new file mode 100644 index 00000000..3bac1b53 Binary files /dev/null and b/www/assets/images/items/desc-portalsatellite-c_256.png differ diff --git a/www/assets/images/items/desc-portalsatellite-c_64.png b/www/assets/images/items/desc-portalsatellite-c_64.png new file mode 100644 index 00000000..b226b6db Binary files /dev/null and b/www/assets/images/items/desc-portalsatellite-c_64.png differ diff --git a/www/assets/images/items/desc-powerline-c_256.png b/www/assets/images/items/desc-powerline-c_256.png new file mode 100644 index 00000000..87c7b264 Binary files /dev/null and b/www/assets/images/items/desc-powerline-c_256.png differ diff --git a/www/assets/images/items/desc-powerline-c_64.png b/www/assets/images/items/desc-powerline-c_64.png new file mode 100644 index 00000000..2239d3bd Binary files /dev/null and b/www/assets/images/items/desc-powerline-c_64.png differ diff --git a/www/assets/images/items/desc-powerpolemk1-c_256.png b/www/assets/images/items/desc-powerpolemk1-c_256.png new file mode 100644 index 00000000..d797511f Binary files /dev/null and b/www/assets/images/items/desc-powerpolemk1-c_256.png differ diff --git a/www/assets/images/items/desc-powerpolemk1-c_64.png b/www/assets/images/items/desc-powerpolemk1-c_64.png new file mode 100644 index 00000000..a5f6f240 Binary files /dev/null and b/www/assets/images/items/desc-powerpolemk1-c_64.png differ diff --git a/www/assets/images/items/desc-powerpolemk2-c_256.png b/www/assets/images/items/desc-powerpolemk2-c_256.png new file mode 100644 index 00000000..073c4271 Binary files /dev/null and b/www/assets/images/items/desc-powerpolemk2-c_256.png differ diff --git a/www/assets/images/items/desc-powerpolemk2-c_64.png b/www/assets/images/items/desc-powerpolemk2-c_64.png new file mode 100644 index 00000000..e67b8eda Binary files /dev/null and b/www/assets/images/items/desc-powerpolemk2-c_64.png differ diff --git a/www/assets/images/items/desc-powerpolemk3-c_256.png b/www/assets/images/items/desc-powerpolemk3-c_256.png new file mode 100644 index 00000000..2b9e86b2 Binary files /dev/null and b/www/assets/images/items/desc-powerpolemk3-c_256.png differ diff --git a/www/assets/images/items/desc-powerpolemk3-c_64.png b/www/assets/images/items/desc-powerpolemk3-c_64.png new file mode 100644 index 00000000..d97be1df Binary files /dev/null and b/www/assets/images/items/desc-powerpolemk3-c_64.png differ diff --git a/www/assets/images/items/desc-powerpolewall-c_256.png b/www/assets/images/items/desc-powerpolewall-c_256.png new file mode 100644 index 00000000..a05c35e7 Binary files /dev/null and b/www/assets/images/items/desc-powerpolewall-c_256.png differ diff --git a/www/assets/images/items/desc-powerpolewall-c_64.png b/www/assets/images/items/desc-powerpolewall-c_64.png new file mode 100644 index 00000000..c758544a Binary files /dev/null and b/www/assets/images/items/desc-powerpolewall-c_64.png differ diff --git a/www/assets/images/items/desc-powerpolewalldouble-c_256.png b/www/assets/images/items/desc-powerpolewalldouble-c_256.png new file mode 100644 index 00000000..9cd2c8cd Binary files /dev/null and b/www/assets/images/items/desc-powerpolewalldouble-c_256.png differ diff --git a/www/assets/images/items/desc-powerpolewalldouble-c_64.png b/www/assets/images/items/desc-powerpolewalldouble-c_64.png new file mode 100644 index 00000000..7922d1b2 Binary files /dev/null and b/www/assets/images/items/desc-powerpolewalldouble-c_64.png differ diff --git a/www/assets/images/items/desc-powerpolewalldoublemk2-c_256.png b/www/assets/images/items/desc-powerpolewalldoublemk2-c_256.png new file mode 100644 index 00000000..6d3cef13 Binary files /dev/null and b/www/assets/images/items/desc-powerpolewalldoublemk2-c_256.png differ diff --git a/www/assets/images/items/desc-powerpolewalldoublemk2-c_64.png b/www/assets/images/items/desc-powerpolewalldoublemk2-c_64.png new file mode 100644 index 00000000..15201bbd Binary files /dev/null and b/www/assets/images/items/desc-powerpolewalldoublemk2-c_64.png differ diff --git a/www/assets/images/items/desc-powerpolewalldoublemk3-c_256.png b/www/assets/images/items/desc-powerpolewalldoublemk3-c_256.png new file mode 100644 index 00000000..39900a1f Binary files /dev/null and b/www/assets/images/items/desc-powerpolewalldoublemk3-c_256.png differ diff --git a/www/assets/images/items/desc-powerpolewalldoublemk3-c_64.png b/www/assets/images/items/desc-powerpolewalldoublemk3-c_64.png new file mode 100644 index 00000000..f07e8e69 Binary files /dev/null and b/www/assets/images/items/desc-powerpolewalldoublemk3-c_64.png differ diff --git a/www/assets/images/items/desc-powerpolewallmk2-c_256.png b/www/assets/images/items/desc-powerpolewallmk2-c_256.png new file mode 100644 index 00000000..073256d7 Binary files /dev/null and b/www/assets/images/items/desc-powerpolewallmk2-c_256.png differ diff --git a/www/assets/images/items/desc-powerpolewallmk2-c_64.png b/www/assets/images/items/desc-powerpolewallmk2-c_64.png new file mode 100644 index 00000000..39f25abd Binary files /dev/null and b/www/assets/images/items/desc-powerpolewallmk2-c_64.png differ diff --git a/www/assets/images/items/desc-powerpolewallmk3-c_256.png b/www/assets/images/items/desc-powerpolewallmk3-c_256.png new file mode 100644 index 00000000..b2d9aa1e Binary files /dev/null and b/www/assets/images/items/desc-powerpolewallmk3-c_256.png differ diff --git a/www/assets/images/items/desc-powerpolewallmk3-c_64.png b/www/assets/images/items/desc-powerpolewallmk3-c_64.png new file mode 100644 index 00000000..2c022791 Binary files /dev/null and b/www/assets/images/items/desc-powerpolewallmk3-c_64.png differ diff --git a/www/assets/images/items/desc-powerstoragemk1-c_256.png b/www/assets/images/items/desc-powerstoragemk1-c_256.png new file mode 100644 index 00000000..a6626811 Binary files /dev/null and b/www/assets/images/items/desc-powerstoragemk1-c_256.png differ diff --git a/www/assets/images/items/desc-powerstoragemk1-c_64.png b/www/assets/images/items/desc-powerstoragemk1-c_64.png new file mode 100644 index 00000000..7df5b0ef Binary files /dev/null and b/www/assets/images/items/desc-powerstoragemk1-c_64.png differ diff --git a/www/assets/images/items/desc-powerswitch-c_256.png b/www/assets/images/items/desc-powerswitch-c_256.png new file mode 100644 index 00000000..20b7ba5c Binary files /dev/null and b/www/assets/images/items/desc-powerswitch-c_256.png differ diff --git a/www/assets/images/items/desc-powerswitch-c_64.png b/www/assets/images/items/desc-powerswitch-c_64.png new file mode 100644 index 00000000..2bd9bf02 Binary files /dev/null and b/www/assets/images/items/desc-powerswitch-c_64.png differ diff --git a/www/assets/images/items/desc-powertower-c_256.png b/www/assets/images/items/desc-powertower-c_256.png new file mode 100644 index 00000000..7c55195b Binary files /dev/null and b/www/assets/images/items/desc-powertower-c_256.png differ diff --git a/www/assets/images/items/desc-powertower-c_64.png b/www/assets/images/items/desc-powertower-c_64.png new file mode 100644 index 00000000..0be8343a Binary files /dev/null and b/www/assets/images/items/desc-powertower-c_64.png differ diff --git a/www/assets/images/items/desc-powertowerplatform-c_256.png b/www/assets/images/items/desc-powertowerplatform-c_256.png new file mode 100644 index 00000000..c9935f45 Binary files /dev/null and b/www/assets/images/items/desc-powertowerplatform-c_256.png differ diff --git a/www/assets/images/items/desc-powertowerplatform-c_64.png b/www/assets/images/items/desc-powertowerplatform-c_64.png new file mode 100644 index 00000000..58172f66 Binary files /dev/null and b/www/assets/images/items/desc-powertowerplatform-c_64.png differ diff --git a/www/assets/images/items/desc-pressureconversioncube-c_256.png b/www/assets/images/items/desc-pressureconversioncube-c_256.png new file mode 100644 index 00000000..705906dd Binary files /dev/null and b/www/assets/images/items/desc-pressureconversioncube-c_256.png differ diff --git a/www/assets/images/items/desc-pressureconversioncube-c_64.png b/www/assets/images/items/desc-pressureconversioncube-c_64.png new file mode 100644 index 00000000..430bc534 Binary files /dev/null and b/www/assets/images/items/desc-pressureconversioncube-c_64.png differ diff --git a/www/assets/images/items/desc-prioritypowerswitch-c_256.png b/www/assets/images/items/desc-prioritypowerswitch-c_256.png new file mode 100644 index 00000000..9e5315b4 Binary files /dev/null and b/www/assets/images/items/desc-prioritypowerswitch-c_256.png differ diff --git a/www/assets/images/items/desc-prioritypowerswitch-c_64.png b/www/assets/images/items/desc-prioritypowerswitch-c_64.png new file mode 100644 index 00000000..2f660dea Binary files /dev/null and b/www/assets/images/items/desc-prioritypowerswitch-c_64.png differ diff --git a/www/assets/images/items/desc-quantumencoder-c_256.png b/www/assets/images/items/desc-quantumencoder-c_256.png new file mode 100644 index 00000000..c3a6e1e2 Binary files /dev/null and b/www/assets/images/items/desc-quantumencoder-c_256.png differ diff --git a/www/assets/images/items/desc-quantumencoder-c_64.png b/www/assets/images/items/desc-quantumencoder-c_64.png new file mode 100644 index 00000000..9a2f0353 Binary files /dev/null and b/www/assets/images/items/desc-quantumencoder-c_64.png differ diff --git a/www/assets/images/items/desc-quantumenergy-c_256.png b/www/assets/images/items/desc-quantumenergy-c_256.png new file mode 100644 index 00000000..6bafe456 Binary files /dev/null and b/www/assets/images/items/desc-quantumenergy-c_256.png differ diff --git a/www/assets/images/items/desc-quantumenergy-c_64.png b/www/assets/images/items/desc-quantumenergy-c_64.png new file mode 100644 index 00000000..ab2fcc5d Binary files /dev/null and b/www/assets/images/items/desc-quantumenergy-c_64.png differ diff --git a/www/assets/images/items/desc-quantumoscillator-c_256.png b/www/assets/images/items/desc-quantumoscillator-c_256.png new file mode 100644 index 00000000..2a91beee Binary files /dev/null and b/www/assets/images/items/desc-quantumoscillator-c_256.png differ diff --git a/www/assets/images/items/desc-quantumoscillator-c_64.png b/www/assets/images/items/desc-quantumoscillator-c_64.png new file mode 100644 index 00000000..d28c8768 Binary files /dev/null and b/www/assets/images/items/desc-quantumoscillator-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipe-02-c_256.png b/www/assets/images/items/desc-quarterpipe-02-c_256.png new file mode 100644 index 00000000..a4dd9bd5 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipe-02-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipe-02-c_64.png b/www/assets/images/items/desc-quarterpipe-02-c_64.png new file mode 100644 index 00000000..d5dea10a Binary files /dev/null and b/www/assets/images/items/desc-quarterpipe-02-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipe-asphalt-8x4-c_256.png b/www/assets/images/items/desc-quarterpipe-asphalt-8x4-c_256.png new file mode 100644 index 00000000..7174becc Binary files /dev/null and b/www/assets/images/items/desc-quarterpipe-asphalt-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipe-asphalt-8x4-c_64.png b/www/assets/images/items/desc-quarterpipe-asphalt-8x4-c_64.png new file mode 100644 index 00000000..d1705056 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipe-asphalt-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipe-c_256.png b/www/assets/images/items/desc-quarterpipe-c_256.png new file mode 100644 index 00000000..347f355b Binary files /dev/null and b/www/assets/images/items/desc-quarterpipe-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipe-c_64.png b/www/assets/images/items/desc-quarterpipe-c_64.png new file mode 100644 index 00000000..4d284f88 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipe-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipe-concrete-8x4-c_256.png b/www/assets/images/items/desc-quarterpipe-concrete-8x4-c_256.png new file mode 100644 index 00000000..91e6a56a Binary files /dev/null and b/www/assets/images/items/desc-quarterpipe-concrete-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipe-concrete-8x4-c_64.png b/www/assets/images/items/desc-quarterpipe-concrete-8x4-c_64.png new file mode 100644 index 00000000..06697127 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipe-concrete-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipe-concretepolished-8x4-c_256.png b/www/assets/images/items/desc-quarterpipe-concretepolished-8x4-c_256.png new file mode 100644 index 00000000..0b455aa0 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipe-concretepolished-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipe-concretepolished-8x4-c_64.png b/www/assets/images/items/desc-quarterpipe-concretepolished-8x4-c_64.png new file mode 100644 index 00000000..2269c477 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipe-concretepolished-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipe-grip-8x4-c_256.png b/www/assets/images/items/desc-quarterpipe-grip-8x4-c_256.png new file mode 100644 index 00000000..1ea10bad Binary files /dev/null and b/www/assets/images/items/desc-quarterpipe-grip-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipe-grip-8x4-c_64.png b/www/assets/images/items/desc-quarterpipe-grip-8x4-c_64.png new file mode 100644 index 00000000..fd5ed75d Binary files /dev/null and b/www/assets/images/items/desc-quarterpipe-grip-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipecorner-01-c_256.png b/www/assets/images/items/desc-quarterpipecorner-01-c_256.png new file mode 100644 index 00000000..729159cc Binary files /dev/null and b/www/assets/images/items/desc-quarterpipecorner-01-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipecorner-01-c_64.png b/www/assets/images/items/desc-quarterpipecorner-01-c_64.png new file mode 100644 index 00000000..867dcf63 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipecorner-01-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipecorner-02-c_256.png b/www/assets/images/items/desc-quarterpipecorner-02-c_256.png new file mode 100644 index 00000000..d74b2df1 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipecorner-02-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipecorner-02-c_64.png b/www/assets/images/items/desc-quarterpipecorner-02-c_64.png new file mode 100644 index 00000000..fc011fb0 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipecorner-02-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipecorner-03-c_256.png b/www/assets/images/items/desc-quarterpipecorner-03-c_256.png new file mode 100644 index 00000000..7a2f8012 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipecorner-03-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipecorner-03-c_64.png b/www/assets/images/items/desc-quarterpipecorner-03-c_64.png new file mode 100644 index 00000000..d0399618 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipecorner-03-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipecorner-04-c_256.png b/www/assets/images/items/desc-quarterpipecorner-04-c_256.png new file mode 100644 index 00000000..fa6547f7 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipecorner-04-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipecorner-04-c_64.png b/www/assets/images/items/desc-quarterpipecorner-04-c_64.png new file mode 100644 index 00000000..ae42b8f2 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipecorner-04-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipeincorner-asphalt-8x4-c_256.png b/www/assets/images/items/desc-quarterpipeincorner-asphalt-8x4-c_256.png new file mode 100644 index 00000000..e6a661b2 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipeincorner-asphalt-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipeincorner-asphalt-8x4-c_64.png b/www/assets/images/items/desc-quarterpipeincorner-asphalt-8x4-c_64.png new file mode 100644 index 00000000..6ce475f3 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipeincorner-asphalt-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipeincorner-concrete-8x4-c_256.png b/www/assets/images/items/desc-quarterpipeincorner-concrete-8x4-c_256.png new file mode 100644 index 00000000..4581ff93 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipeincorner-concrete-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipeincorner-concrete-8x4-c_64.png b/www/assets/images/items/desc-quarterpipeincorner-concrete-8x4-c_64.png new file mode 100644 index 00000000..94a3281e Binary files /dev/null and b/www/assets/images/items/desc-quarterpipeincorner-concrete-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipeincorner-concretepolished-8x4-c_256.png b/www/assets/images/items/desc-quarterpipeincorner-concretepolished-8x4-c_256.png new file mode 100644 index 00000000..c380c774 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipeincorner-concretepolished-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipeincorner-concretepolished-8x4-c_64.png b/www/assets/images/items/desc-quarterpipeincorner-concretepolished-8x4-c_64.png new file mode 100644 index 00000000..baceaffe Binary files /dev/null and b/www/assets/images/items/desc-quarterpipeincorner-concretepolished-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipeincorner-grip-8x4-c_256.png b/www/assets/images/items/desc-quarterpipeincorner-grip-8x4-c_256.png new file mode 100644 index 00000000..4a9ea41f Binary files /dev/null and b/www/assets/images/items/desc-quarterpipeincorner-grip-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipeincorner-grip-8x4-c_64.png b/www/assets/images/items/desc-quarterpipeincorner-grip-8x4-c_64.png new file mode 100644 index 00000000..1b4e07c6 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipeincorner-grip-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddle-asphalt-8x1-c_256.png b/www/assets/images/items/desc-quarterpipemiddle-asphalt-8x1-c_256.png new file mode 100644 index 00000000..98d2c9c6 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddle-asphalt-8x1-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddle-asphalt-8x1-c_64.png b/www/assets/images/items/desc-quarterpipemiddle-asphalt-8x1-c_64.png new file mode 100644 index 00000000..fb9c3d3e Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddle-asphalt-8x1-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddle-asphalt-8x2-c_256.png b/www/assets/images/items/desc-quarterpipemiddle-asphalt-8x2-c_256.png new file mode 100644 index 00000000..61705b4a Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddle-asphalt-8x2-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddle-asphalt-8x2-c_64.png b/www/assets/images/items/desc-quarterpipemiddle-asphalt-8x2-c_64.png new file mode 100644 index 00000000..ba0504ac Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddle-asphalt-8x2-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddle-asphalt-8x4-c_256.png b/www/assets/images/items/desc-quarterpipemiddle-asphalt-8x4-c_256.png new file mode 100644 index 00000000..be37cca4 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddle-asphalt-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddle-asphalt-8x4-c_64.png b/www/assets/images/items/desc-quarterpipemiddle-asphalt-8x4-c_64.png new file mode 100644 index 00000000..5b60d8f5 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddle-asphalt-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddle-concrete-8x1-c_256.png b/www/assets/images/items/desc-quarterpipemiddle-concrete-8x1-c_256.png new file mode 100644 index 00000000..a97a2f08 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddle-concrete-8x1-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddle-concrete-8x1-c_64.png b/www/assets/images/items/desc-quarterpipemiddle-concrete-8x1-c_64.png new file mode 100644 index 00000000..f62fa618 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddle-concrete-8x1-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddle-concrete-8x2-c_256.png b/www/assets/images/items/desc-quarterpipemiddle-concrete-8x2-c_256.png new file mode 100644 index 00000000..f1c9f85c Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddle-concrete-8x2-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddle-concrete-8x2-c_64.png b/www/assets/images/items/desc-quarterpipemiddle-concrete-8x2-c_64.png new file mode 100644 index 00000000..24721a01 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddle-concrete-8x2-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddle-concrete-8x4-c_256.png b/www/assets/images/items/desc-quarterpipemiddle-concrete-8x4-c_256.png new file mode 100644 index 00000000..c7c771f7 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddle-concrete-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddle-concrete-8x4-c_64.png b/www/assets/images/items/desc-quarterpipemiddle-concrete-8x4-c_64.png new file mode 100644 index 00000000..760eea6d Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddle-concrete-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddle-ficsit-4x1-c_256.png b/www/assets/images/items/desc-quarterpipemiddle-ficsit-4x1-c_256.png new file mode 100644 index 00000000..d86e6017 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddle-ficsit-4x1-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddle-ficsit-4x1-c_64.png b/www/assets/images/items/desc-quarterpipemiddle-ficsit-4x1-c_64.png new file mode 100644 index 00000000..50ea0140 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddle-ficsit-4x1-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddle-ficsit-4x2-c_256.png b/www/assets/images/items/desc-quarterpipemiddle-ficsit-4x2-c_256.png new file mode 100644 index 00000000..42097371 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddle-ficsit-4x2-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddle-ficsit-4x2-c_64.png b/www/assets/images/items/desc-quarterpipemiddle-ficsit-4x2-c_64.png new file mode 100644 index 00000000..cc756d08 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddle-ficsit-4x2-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddle-ficsit-4x4-c_256.png b/www/assets/images/items/desc-quarterpipemiddle-ficsit-4x4-c_256.png new file mode 100644 index 00000000..b8f0a455 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddle-ficsit-4x4-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddle-ficsit-4x4-c_64.png b/www/assets/images/items/desc-quarterpipemiddle-ficsit-4x4-c_64.png new file mode 100644 index 00000000..60a393ae Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddle-ficsit-4x4-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddle-grip-8x1-c_256.png b/www/assets/images/items/desc-quarterpipemiddle-grip-8x1-c_256.png new file mode 100644 index 00000000..d1b16763 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddle-grip-8x1-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddle-grip-8x1-c_64.png b/www/assets/images/items/desc-quarterpipemiddle-grip-8x1-c_64.png new file mode 100644 index 00000000..86c06ef2 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddle-grip-8x1-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddle-grip-8x2-c_256.png b/www/assets/images/items/desc-quarterpipemiddle-grip-8x2-c_256.png new file mode 100644 index 00000000..e7264bc3 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddle-grip-8x2-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddle-grip-8x2-c_64.png b/www/assets/images/items/desc-quarterpipemiddle-grip-8x2-c_64.png new file mode 100644 index 00000000..a05333ed Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddle-grip-8x2-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddle-grip-8x4-c_256.png b/www/assets/images/items/desc-quarterpipemiddle-grip-8x4-c_256.png new file mode 100644 index 00000000..90da4e6d Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddle-grip-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddle-grip-8x4-c_64.png b/www/assets/images/items/desc-quarterpipemiddle-grip-8x4-c_64.png new file mode 100644 index 00000000..10c06978 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddle-grip-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddle-polishedconcrete-8x1-c_256.png b/www/assets/images/items/desc-quarterpipemiddle-polishedconcrete-8x1-c_256.png new file mode 100644 index 00000000..ea2333b3 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddle-polishedconcrete-8x1-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddle-polishedconcrete-8x1-c_64.png b/www/assets/images/items/desc-quarterpipemiddle-polishedconcrete-8x1-c_64.png new file mode 100644 index 00000000..3b3b76a0 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddle-polishedconcrete-8x1-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddle-polishedconcrete-8x2-c_256.png b/www/assets/images/items/desc-quarterpipemiddle-polishedconcrete-8x2-c_256.png new file mode 100644 index 00000000..05803e5b Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddle-polishedconcrete-8x2-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddle-polishedconcrete-8x2-c_64.png b/www/assets/images/items/desc-quarterpipemiddle-polishedconcrete-8x2-c_64.png new file mode 100644 index 00000000..9b91a00c Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddle-polishedconcrete-8x2-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddle-polishedconcrete-8x4-c_256.png b/www/assets/images/items/desc-quarterpipemiddle-polishedconcrete-8x4-c_256.png new file mode 100644 index 00000000..d2a90070 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddle-polishedconcrete-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddle-polishedconcrete-8x4-c_64.png b/www/assets/images/items/desc-quarterpipemiddle-polishedconcrete-8x4-c_64.png new file mode 100644 index 00000000..ae4275e5 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddle-polishedconcrete-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleincorner-asphalt-8x1-c_256.png b/www/assets/images/items/desc-quarterpipemiddleincorner-asphalt-8x1-c_256.png new file mode 100644 index 00000000..685b3b28 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleincorner-asphalt-8x1-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleincorner-asphalt-8x1-c_64.png b/www/assets/images/items/desc-quarterpipemiddleincorner-asphalt-8x1-c_64.png new file mode 100644 index 00000000..2942e292 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleincorner-asphalt-8x1-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleincorner-asphalt-8x2-c_256.png b/www/assets/images/items/desc-quarterpipemiddleincorner-asphalt-8x2-c_256.png new file mode 100644 index 00000000..77603ddb Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleincorner-asphalt-8x2-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleincorner-asphalt-8x2-c_64.png b/www/assets/images/items/desc-quarterpipemiddleincorner-asphalt-8x2-c_64.png new file mode 100644 index 00000000..648122c9 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleincorner-asphalt-8x2-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleincorner-asphalt-8x4-c_256.png b/www/assets/images/items/desc-quarterpipemiddleincorner-asphalt-8x4-c_256.png new file mode 100644 index 00000000..f6439386 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleincorner-asphalt-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleincorner-asphalt-8x4-c_64.png b/www/assets/images/items/desc-quarterpipemiddleincorner-asphalt-8x4-c_64.png new file mode 100644 index 00000000..3ec68194 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleincorner-asphalt-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleincorner-concrete-8x1-c_256.png b/www/assets/images/items/desc-quarterpipemiddleincorner-concrete-8x1-c_256.png new file mode 100644 index 00000000..9442aaa6 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleincorner-concrete-8x1-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleincorner-concrete-8x1-c_64.png b/www/assets/images/items/desc-quarterpipemiddleincorner-concrete-8x1-c_64.png new file mode 100644 index 00000000..a61972fe Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleincorner-concrete-8x1-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleincorner-concrete-8x2-c_256.png b/www/assets/images/items/desc-quarterpipemiddleincorner-concrete-8x2-c_256.png new file mode 100644 index 00000000..7930353f Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleincorner-concrete-8x2-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleincorner-concrete-8x2-c_64.png b/www/assets/images/items/desc-quarterpipemiddleincorner-concrete-8x2-c_64.png new file mode 100644 index 00000000..252c78f5 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleincorner-concrete-8x2-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleincorner-concrete-8x4-c_256.png b/www/assets/images/items/desc-quarterpipemiddleincorner-concrete-8x4-c_256.png new file mode 100644 index 00000000..ff4f4b5d Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleincorner-concrete-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleincorner-concrete-8x4-c_64.png b/www/assets/images/items/desc-quarterpipemiddleincorner-concrete-8x4-c_64.png new file mode 100644 index 00000000..2bfc6289 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleincorner-concrete-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleincorner-ficsit-8x1-c_256.png b/www/assets/images/items/desc-quarterpipemiddleincorner-ficsit-8x1-c_256.png new file mode 100644 index 00000000..3fe7569d Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleincorner-ficsit-8x1-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleincorner-ficsit-8x1-c_64.png b/www/assets/images/items/desc-quarterpipemiddleincorner-ficsit-8x1-c_64.png new file mode 100644 index 00000000..23c1e492 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleincorner-ficsit-8x1-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleincorner-ficsit-8x2-c_256.png b/www/assets/images/items/desc-quarterpipemiddleincorner-ficsit-8x2-c_256.png new file mode 100644 index 00000000..acfd26a8 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleincorner-ficsit-8x2-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleincorner-ficsit-8x2-c_64.png b/www/assets/images/items/desc-quarterpipemiddleincorner-ficsit-8x2-c_64.png new file mode 100644 index 00000000..30b58a5d Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleincorner-ficsit-8x2-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleincorner-ficsit-8x4-c_256.png b/www/assets/images/items/desc-quarterpipemiddleincorner-ficsit-8x4-c_256.png new file mode 100644 index 00000000..9041f021 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleincorner-ficsit-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleincorner-ficsit-8x4-c_64.png b/www/assets/images/items/desc-quarterpipemiddleincorner-ficsit-8x4-c_64.png new file mode 100644 index 00000000..19adf644 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleincorner-ficsit-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleincorner-grip-8x1-c_256.png b/www/assets/images/items/desc-quarterpipemiddleincorner-grip-8x1-c_256.png new file mode 100644 index 00000000..4d3612ec Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleincorner-grip-8x1-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleincorner-grip-8x1-c_64.png b/www/assets/images/items/desc-quarterpipemiddleincorner-grip-8x1-c_64.png new file mode 100644 index 00000000..8b674e48 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleincorner-grip-8x1-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleincorner-grip-8x2-c_256.png b/www/assets/images/items/desc-quarterpipemiddleincorner-grip-8x2-c_256.png new file mode 100644 index 00000000..0c8d4c3d Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleincorner-grip-8x2-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleincorner-grip-8x2-c_64.png b/www/assets/images/items/desc-quarterpipemiddleincorner-grip-8x2-c_64.png new file mode 100644 index 00000000..5064919a Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleincorner-grip-8x2-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleincorner-grip-8x4-c_256.png b/www/assets/images/items/desc-quarterpipemiddleincorner-grip-8x4-c_256.png new file mode 100644 index 00000000..186cbd06 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleincorner-grip-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleincorner-grip-8x4-c_64.png b/www/assets/images/items/desc-quarterpipemiddleincorner-grip-8x4-c_64.png new file mode 100644 index 00000000..941559e4 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleincorner-grip-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleincorner-polishedconcrete-8x1-c_256.png b/www/assets/images/items/desc-quarterpipemiddleincorner-polishedconcrete-8x1-c_256.png new file mode 100644 index 00000000..283e6e65 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleincorner-polishedconcrete-8x1-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleincorner-polishedconcrete-8x1-c_64.png b/www/assets/images/items/desc-quarterpipemiddleincorner-polishedconcrete-8x1-c_64.png new file mode 100644 index 00000000..13930bb5 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleincorner-polishedconcrete-8x1-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleincorner-polishedconcrete-8x2-c_256.png b/www/assets/images/items/desc-quarterpipemiddleincorner-polishedconcrete-8x2-c_256.png new file mode 100644 index 00000000..1c1b968b Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleincorner-polishedconcrete-8x2-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleincorner-polishedconcrete-8x2-c_64.png b/www/assets/images/items/desc-quarterpipemiddleincorner-polishedconcrete-8x2-c_64.png new file mode 100644 index 00000000..c093bfa8 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleincorner-polishedconcrete-8x2-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleincorner-polishedconcrete-8x4-c_256.png b/www/assets/images/items/desc-quarterpipemiddleincorner-polishedconcrete-8x4-c_256.png new file mode 100644 index 00000000..44bd6aa8 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleincorner-polishedconcrete-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleincorner-polishedconcrete-8x4-c_64.png b/www/assets/images/items/desc-quarterpipemiddleincorner-polishedconcrete-8x4-c_64.png new file mode 100644 index 00000000..a0d7daea Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleincorner-polishedconcrete-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleoutcorner-asphalt-4x1-c_256.png b/www/assets/images/items/desc-quarterpipemiddleoutcorner-asphalt-4x1-c_256.png new file mode 100644 index 00000000..8f13184d Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleoutcorner-asphalt-4x1-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleoutcorner-asphalt-4x1-c_64.png b/www/assets/images/items/desc-quarterpipemiddleoutcorner-asphalt-4x1-c_64.png new file mode 100644 index 00000000..d248b1ca Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleoutcorner-asphalt-4x1-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleoutcorner-asphalt-4x2-c_256.png b/www/assets/images/items/desc-quarterpipemiddleoutcorner-asphalt-4x2-c_256.png new file mode 100644 index 00000000..af740b1b Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleoutcorner-asphalt-4x2-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleoutcorner-asphalt-4x2-c_64.png b/www/assets/images/items/desc-quarterpipemiddleoutcorner-asphalt-4x2-c_64.png new file mode 100644 index 00000000..0fef712d Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleoutcorner-asphalt-4x2-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleoutcorner-asphalt-4x4-c_256.png b/www/assets/images/items/desc-quarterpipemiddleoutcorner-asphalt-4x4-c_256.png new file mode 100644 index 00000000..e241da88 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleoutcorner-asphalt-4x4-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleoutcorner-asphalt-4x4-c_64.png b/www/assets/images/items/desc-quarterpipemiddleoutcorner-asphalt-4x4-c_64.png new file mode 100644 index 00000000..76528904 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleoutcorner-asphalt-4x4-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleoutcorner-concrete-4x1-c_256.png b/www/assets/images/items/desc-quarterpipemiddleoutcorner-concrete-4x1-c_256.png new file mode 100644 index 00000000..bcca195b Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleoutcorner-concrete-4x1-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleoutcorner-concrete-4x1-c_64.png b/www/assets/images/items/desc-quarterpipemiddleoutcorner-concrete-4x1-c_64.png new file mode 100644 index 00000000..23dc05e8 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleoutcorner-concrete-4x1-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleoutcorner-concrete-4x2-c_256.png b/www/assets/images/items/desc-quarterpipemiddleoutcorner-concrete-4x2-c_256.png new file mode 100644 index 00000000..15b910d1 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleoutcorner-concrete-4x2-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleoutcorner-concrete-4x2-c_64.png b/www/assets/images/items/desc-quarterpipemiddleoutcorner-concrete-4x2-c_64.png new file mode 100644 index 00000000..d9c7f2dc Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleoutcorner-concrete-4x2-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleoutcorner-concrete-4x4-c_256.png b/www/assets/images/items/desc-quarterpipemiddleoutcorner-concrete-4x4-c_256.png new file mode 100644 index 00000000..f9babce7 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleoutcorner-concrete-4x4-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleoutcorner-concrete-4x4-c_64.png b/www/assets/images/items/desc-quarterpipemiddleoutcorner-concrete-4x4-c_64.png new file mode 100644 index 00000000..f9b06186 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleoutcorner-concrete-4x4-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleoutcorner-ficsit-4x1-c_256.png b/www/assets/images/items/desc-quarterpipemiddleoutcorner-ficsit-4x1-c_256.png new file mode 100644 index 00000000..a9fd6851 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleoutcorner-ficsit-4x1-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleoutcorner-ficsit-4x1-c_64.png b/www/assets/images/items/desc-quarterpipemiddleoutcorner-ficsit-4x1-c_64.png new file mode 100644 index 00000000..5a7d665d Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleoutcorner-ficsit-4x1-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleoutcorner-ficsit-4x2-c_256.png b/www/assets/images/items/desc-quarterpipemiddleoutcorner-ficsit-4x2-c_256.png new file mode 100644 index 00000000..941bcb80 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleoutcorner-ficsit-4x2-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleoutcorner-ficsit-4x2-c_64.png b/www/assets/images/items/desc-quarterpipemiddleoutcorner-ficsit-4x2-c_64.png new file mode 100644 index 00000000..5908fed6 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleoutcorner-ficsit-4x2-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleoutcorner-ficsit-4x4-c_256.png b/www/assets/images/items/desc-quarterpipemiddleoutcorner-ficsit-4x4-c_256.png new file mode 100644 index 00000000..49c7de76 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleoutcorner-ficsit-4x4-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleoutcorner-ficsit-4x4-c_64.png b/www/assets/images/items/desc-quarterpipemiddleoutcorner-ficsit-4x4-c_64.png new file mode 100644 index 00000000..a0d5653d Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleoutcorner-ficsit-4x4-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleoutcorner-grip-4x1-c_256.png b/www/assets/images/items/desc-quarterpipemiddleoutcorner-grip-4x1-c_256.png new file mode 100644 index 00000000..8a72d6b8 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleoutcorner-grip-4x1-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleoutcorner-grip-4x1-c_64.png b/www/assets/images/items/desc-quarterpipemiddleoutcorner-grip-4x1-c_64.png new file mode 100644 index 00000000..0e1049b7 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleoutcorner-grip-4x1-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleoutcorner-grip-4x2-c_256.png b/www/assets/images/items/desc-quarterpipemiddleoutcorner-grip-4x2-c_256.png new file mode 100644 index 00000000..db49ec68 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleoutcorner-grip-4x2-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleoutcorner-grip-4x2-c_64.png b/www/assets/images/items/desc-quarterpipemiddleoutcorner-grip-4x2-c_64.png new file mode 100644 index 00000000..e62c7659 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleoutcorner-grip-4x2-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleoutcorner-grip-4x4-c_256.png b/www/assets/images/items/desc-quarterpipemiddleoutcorner-grip-4x4-c_256.png new file mode 100644 index 00000000..d9b3581d Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleoutcorner-grip-4x4-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleoutcorner-grip-4x4-c_64.png b/www/assets/images/items/desc-quarterpipemiddleoutcorner-grip-4x4-c_64.png new file mode 100644 index 00000000..a23ea99d Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleoutcorner-grip-4x4-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleoutcorner-polishedconcrete-4x1-c_256.png b/www/assets/images/items/desc-quarterpipemiddleoutcorner-polishedconcrete-4x1-c_256.png new file mode 100644 index 00000000..5c8c6773 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleoutcorner-polishedconcrete-4x1-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleoutcorner-polishedconcrete-4x1-c_64.png b/www/assets/images/items/desc-quarterpipemiddleoutcorner-polishedconcrete-4x1-c_64.png new file mode 100644 index 00000000..0e6cb989 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleoutcorner-polishedconcrete-4x1-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleoutcorner-polishedconcrete-4x2-c_256.png b/www/assets/images/items/desc-quarterpipemiddleoutcorner-polishedconcrete-4x2-c_256.png new file mode 100644 index 00000000..b5379c7f Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleoutcorner-polishedconcrete-4x2-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleoutcorner-polishedconcrete-4x2-c_64.png b/www/assets/images/items/desc-quarterpipemiddleoutcorner-polishedconcrete-4x2-c_64.png new file mode 100644 index 00000000..052e2002 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleoutcorner-polishedconcrete-4x2-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleoutcorner-polishedconcrete-4x4-c_256.png b/www/assets/images/items/desc-quarterpipemiddleoutcorner-polishedconcrete-4x4-c_256.png new file mode 100644 index 00000000..431dad14 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleoutcorner-polishedconcrete-4x4-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipemiddleoutcorner-polishedconcrete-4x4-c_64.png b/www/assets/images/items/desc-quarterpipemiddleoutcorner-polishedconcrete-4x4-c_64.png new file mode 100644 index 00000000..1e5a34d7 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipemiddleoutcorner-polishedconcrete-4x4-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipeoutcorner-asphalt-8x4-c_256.png b/www/assets/images/items/desc-quarterpipeoutcorner-asphalt-8x4-c_256.png new file mode 100644 index 00000000..4b524241 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipeoutcorner-asphalt-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipeoutcorner-asphalt-8x4-c_64.png b/www/assets/images/items/desc-quarterpipeoutcorner-asphalt-8x4-c_64.png new file mode 100644 index 00000000..b7c1942b Binary files /dev/null and b/www/assets/images/items/desc-quarterpipeoutcorner-asphalt-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipeoutcorner-concrete-8x4-c_256.png b/www/assets/images/items/desc-quarterpipeoutcorner-concrete-8x4-c_256.png new file mode 100644 index 00000000..ce6aa021 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipeoutcorner-concrete-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipeoutcorner-concrete-8x4-c_64.png b/www/assets/images/items/desc-quarterpipeoutcorner-concrete-8x4-c_64.png new file mode 100644 index 00000000..ea07fe74 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipeoutcorner-concrete-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipeoutcorner-concretepolished-8x4-c_256.png b/www/assets/images/items/desc-quarterpipeoutcorner-concretepolished-8x4-c_256.png new file mode 100644 index 00000000..df545f5e Binary files /dev/null and b/www/assets/images/items/desc-quarterpipeoutcorner-concretepolished-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipeoutcorner-concretepolished-8x4-c_64.png b/www/assets/images/items/desc-quarterpipeoutcorner-concretepolished-8x4-c_64.png new file mode 100644 index 00000000..f7b28ee1 Binary files /dev/null and b/www/assets/images/items/desc-quarterpipeoutcorner-concretepolished-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-quarterpipeoutcorner-grip-8x4-c_256.png b/www/assets/images/items/desc-quarterpipeoutcorner-grip-8x4-c_256.png new file mode 100644 index 00000000..9b3b7eda Binary files /dev/null and b/www/assets/images/items/desc-quarterpipeoutcorner-grip-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-quarterpipeoutcorner-grip-8x4-c_64.png b/www/assets/images/items/desc-quarterpipeoutcorner-grip-8x4-c_64.png new file mode 100644 index 00000000..36ca626f Binary files /dev/null and b/www/assets/images/items/desc-quarterpipeoutcorner-grip-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-quartzcrystal-c_256.png b/www/assets/images/items/desc-quartzcrystal-c_256.png new file mode 100644 index 00000000..3bb0dfbf Binary files /dev/null and b/www/assets/images/items/desc-quartzcrystal-c_256.png differ diff --git a/www/assets/images/items/desc-quartzcrystal-c_64.png b/www/assets/images/items/desc-quartzcrystal-c_64.png new file mode 100644 index 00000000..534afb8a Binary files /dev/null and b/www/assets/images/items/desc-quartzcrystal-c_64.png differ diff --git a/www/assets/images/items/desc-radartower-c_256.png b/www/assets/images/items/desc-radartower-c_256.png new file mode 100644 index 00000000..8a47657a Binary files /dev/null and b/www/assets/images/items/desc-radartower-c_256.png differ diff --git a/www/assets/images/items/desc-radartower-c_64.png b/www/assets/images/items/desc-radartower-c_64.png new file mode 100644 index 00000000..9215cdf6 Binary files /dev/null and b/www/assets/images/items/desc-radartower-c_64.png differ diff --git a/www/assets/images/items/desc-railing-01-c_256.png b/www/assets/images/items/desc-railing-01-c_256.png new file mode 100644 index 00000000..f01a5f27 Binary files /dev/null and b/www/assets/images/items/desc-railing-01-c_256.png differ diff --git a/www/assets/images/items/desc-railing-01-c_64.png b/www/assets/images/items/desc-railing-01-c_64.png new file mode 100644 index 00000000..92fe7a77 Binary files /dev/null and b/www/assets/images/items/desc-railing-01-c_64.png differ diff --git a/www/assets/images/items/desc-railroadblocksignal-c_256.png b/www/assets/images/items/desc-railroadblocksignal-c_256.png new file mode 100644 index 00000000..ccf9ad2a Binary files /dev/null and b/www/assets/images/items/desc-railroadblocksignal-c_256.png differ diff --git a/www/assets/images/items/desc-railroadblocksignal-c_64.png b/www/assets/images/items/desc-railroadblocksignal-c_64.png new file mode 100644 index 00000000..066a0b5d Binary files /dev/null and b/www/assets/images/items/desc-railroadblocksignal-c_64.png differ diff --git a/www/assets/images/items/desc-railroadpathsignal-c_256.png b/www/assets/images/items/desc-railroadpathsignal-c_256.png new file mode 100644 index 00000000..d432388d Binary files /dev/null and b/www/assets/images/items/desc-railroadpathsignal-c_256.png differ diff --git a/www/assets/images/items/desc-railroadpathsignal-c_64.png b/www/assets/images/items/desc-railroadpathsignal-c_64.png new file mode 100644 index 00000000..4e951b9e Binary files /dev/null and b/www/assets/images/items/desc-railroadpathsignal-c_64.png differ diff --git a/www/assets/images/items/desc-railroadtrack-c_256.png b/www/assets/images/items/desc-railroadtrack-c_256.png new file mode 100644 index 00000000..ba1109fc Binary files /dev/null and b/www/assets/images/items/desc-railroadtrack-c_256.png differ diff --git a/www/assets/images/items/desc-railroadtrack-c_64.png b/www/assets/images/items/desc-railroadtrack-c_64.png new file mode 100644 index 00000000..88ec1363 Binary files /dev/null and b/www/assets/images/items/desc-railroadtrack-c_64.png differ diff --git a/www/assets/images/items/desc-ramp-8x1-01-c_256.png b/www/assets/images/items/desc-ramp-8x1-01-c_256.png new file mode 100644 index 00000000..d0aa5465 Binary files /dev/null and b/www/assets/images/items/desc-ramp-8x1-01-c_256.png differ diff --git a/www/assets/images/items/desc-ramp-8x1-01-c_64.png b/www/assets/images/items/desc-ramp-8x1-01-c_64.png new file mode 100644 index 00000000..3f4d6cdc Binary files /dev/null and b/www/assets/images/items/desc-ramp-8x1-01-c_64.png differ diff --git a/www/assets/images/items/desc-ramp-8x2-01-c_256.png b/www/assets/images/items/desc-ramp-8x2-01-c_256.png new file mode 100644 index 00000000..37e2f873 Binary files /dev/null and b/www/assets/images/items/desc-ramp-8x2-01-c_256.png differ diff --git a/www/assets/images/items/desc-ramp-8x2-01-c_64.png b/www/assets/images/items/desc-ramp-8x2-01-c_64.png new file mode 100644 index 00000000..915ea041 Binary files /dev/null and b/www/assets/images/items/desc-ramp-8x2-01-c_64.png differ diff --git a/www/assets/images/items/desc-ramp-8x4-01-c_256.png b/www/assets/images/items/desc-ramp-8x4-01-c_256.png new file mode 100644 index 00000000..1ef8dcb7 Binary files /dev/null and b/www/assets/images/items/desc-ramp-8x4-01-c_256.png differ diff --git a/www/assets/images/items/desc-ramp-8x4-01-c_64.png b/www/assets/images/items/desc-ramp-8x4-01-c_64.png new file mode 100644 index 00000000..ee983dff Binary files /dev/null and b/www/assets/images/items/desc-ramp-8x4-01-c_64.png differ diff --git a/www/assets/images/items/desc-ramp-8x4-inverted-01-c_256.png b/www/assets/images/items/desc-ramp-8x4-inverted-01-c_256.png new file mode 100644 index 00000000..15f40b0a Binary files /dev/null and b/www/assets/images/items/desc-ramp-8x4-inverted-01-c_256.png differ diff --git a/www/assets/images/items/desc-ramp-8x4-inverted-01-c_64.png b/www/assets/images/items/desc-ramp-8x4-inverted-01-c_64.png new file mode 100644 index 00000000..e467e11e Binary files /dev/null and b/www/assets/images/items/desc-ramp-8x4-inverted-01-c_64.png differ diff --git a/www/assets/images/items/desc-ramp-8x8x8-c_256.png b/www/assets/images/items/desc-ramp-8x8x8-c_256.png new file mode 100644 index 00000000..8834940f Binary files /dev/null and b/www/assets/images/items/desc-ramp-8x8x8-c_256.png differ diff --git a/www/assets/images/items/desc-ramp-8x8x8-c_64.png b/www/assets/images/items/desc-ramp-8x8x8-c_64.png new file mode 100644 index 00000000..9c6fe7a8 Binary files /dev/null and b/www/assets/images/items/desc-ramp-8x8x8-c_64.png differ diff --git a/www/assets/images/items/desc-ramp-asphalt-8x1-c_256.png b/www/assets/images/items/desc-ramp-asphalt-8x1-c_256.png new file mode 100644 index 00000000..72a6a45a Binary files /dev/null and b/www/assets/images/items/desc-ramp-asphalt-8x1-c_256.png differ diff --git a/www/assets/images/items/desc-ramp-asphalt-8x1-c_64.png b/www/assets/images/items/desc-ramp-asphalt-8x1-c_64.png new file mode 100644 index 00000000..bc291238 Binary files /dev/null and b/www/assets/images/items/desc-ramp-asphalt-8x1-c_64.png differ diff --git a/www/assets/images/items/desc-ramp-asphalt-8x2-c_256.png b/www/assets/images/items/desc-ramp-asphalt-8x2-c_256.png new file mode 100644 index 00000000..4ec1563c Binary files /dev/null and b/www/assets/images/items/desc-ramp-asphalt-8x2-c_256.png differ diff --git a/www/assets/images/items/desc-ramp-asphalt-8x2-c_64.png b/www/assets/images/items/desc-ramp-asphalt-8x2-c_64.png new file mode 100644 index 00000000..4d387c61 Binary files /dev/null and b/www/assets/images/items/desc-ramp-asphalt-8x2-c_64.png differ diff --git a/www/assets/images/items/desc-ramp-asphalt-8x4-c_256.png b/www/assets/images/items/desc-ramp-asphalt-8x4-c_256.png new file mode 100644 index 00000000..d73bab6c Binary files /dev/null and b/www/assets/images/items/desc-ramp-asphalt-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-ramp-asphalt-8x4-c_64.png b/www/assets/images/items/desc-ramp-asphalt-8x4-c_64.png new file mode 100644 index 00000000..53b57120 Binary files /dev/null and b/www/assets/images/items/desc-ramp-asphalt-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-ramp-concrete-8x1-c_256.png b/www/assets/images/items/desc-ramp-concrete-8x1-c_256.png new file mode 100644 index 00000000..60773e57 Binary files /dev/null and b/www/assets/images/items/desc-ramp-concrete-8x1-c_256.png differ diff --git a/www/assets/images/items/desc-ramp-concrete-8x1-c_64.png b/www/assets/images/items/desc-ramp-concrete-8x1-c_64.png new file mode 100644 index 00000000..e4f77a87 Binary files /dev/null and b/www/assets/images/items/desc-ramp-concrete-8x1-c_64.png differ diff --git a/www/assets/images/items/desc-ramp-concrete-8x2-c_256.png b/www/assets/images/items/desc-ramp-concrete-8x2-c_256.png new file mode 100644 index 00000000..f33f8cb9 Binary files /dev/null and b/www/assets/images/items/desc-ramp-concrete-8x2-c_256.png differ diff --git a/www/assets/images/items/desc-ramp-concrete-8x2-c_64.png b/www/assets/images/items/desc-ramp-concrete-8x2-c_64.png new file mode 100644 index 00000000..a1fc96f8 Binary files /dev/null and b/www/assets/images/items/desc-ramp-concrete-8x2-c_64.png differ diff --git a/www/assets/images/items/desc-ramp-concrete-8x4-c_256.png b/www/assets/images/items/desc-ramp-concrete-8x4-c_256.png new file mode 100644 index 00000000..81806681 Binary files /dev/null and b/www/assets/images/items/desc-ramp-concrete-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-ramp-concrete-8x4-c_64.png b/www/assets/images/items/desc-ramp-concrete-8x4-c_64.png new file mode 100644 index 00000000..e41d70d3 Binary files /dev/null and b/www/assets/images/items/desc-ramp-concrete-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-ramp-diagonal-8x1-01-c_256.png b/www/assets/images/items/desc-ramp-diagonal-8x1-01-c_256.png new file mode 100644 index 00000000..6838e22b Binary files /dev/null and b/www/assets/images/items/desc-ramp-diagonal-8x1-01-c_256.png differ diff --git a/www/assets/images/items/desc-ramp-diagonal-8x1-01-c_64.png b/www/assets/images/items/desc-ramp-diagonal-8x1-01-c_64.png new file mode 100644 index 00000000..de52836f Binary files /dev/null and b/www/assets/images/items/desc-ramp-diagonal-8x1-01-c_64.png differ diff --git a/www/assets/images/items/desc-ramp-diagonal-8x1-02-c_256.png b/www/assets/images/items/desc-ramp-diagonal-8x1-02-c_256.png new file mode 100644 index 00000000..b71c5069 Binary files /dev/null and b/www/assets/images/items/desc-ramp-diagonal-8x1-02-c_256.png differ diff --git a/www/assets/images/items/desc-ramp-diagonal-8x1-02-c_64.png b/www/assets/images/items/desc-ramp-diagonal-8x1-02-c_64.png new file mode 100644 index 00000000..f00c4a03 Binary files /dev/null and b/www/assets/images/items/desc-ramp-diagonal-8x1-02-c_64.png differ diff --git a/www/assets/images/items/desc-ramp-diagonal-8x2-01-c_256.png b/www/assets/images/items/desc-ramp-diagonal-8x2-01-c_256.png new file mode 100644 index 00000000..138eb628 Binary files /dev/null and b/www/assets/images/items/desc-ramp-diagonal-8x2-01-c_256.png differ diff --git a/www/assets/images/items/desc-ramp-diagonal-8x2-01-c_64.png b/www/assets/images/items/desc-ramp-diagonal-8x2-01-c_64.png new file mode 100644 index 00000000..6d7ae05f Binary files /dev/null and b/www/assets/images/items/desc-ramp-diagonal-8x2-01-c_64.png differ diff --git a/www/assets/images/items/desc-ramp-diagonal-8x2-02-c_256.png b/www/assets/images/items/desc-ramp-diagonal-8x2-02-c_256.png new file mode 100644 index 00000000..72ac4ba6 Binary files /dev/null and b/www/assets/images/items/desc-ramp-diagonal-8x2-02-c_256.png differ diff --git a/www/assets/images/items/desc-ramp-diagonal-8x2-02-c_64.png b/www/assets/images/items/desc-ramp-diagonal-8x2-02-c_64.png new file mode 100644 index 00000000..276352f0 Binary files /dev/null and b/www/assets/images/items/desc-ramp-diagonal-8x2-02-c_64.png differ diff --git a/www/assets/images/items/desc-ramp-diagonal-8x4-01-c_256.png b/www/assets/images/items/desc-ramp-diagonal-8x4-01-c_256.png new file mode 100644 index 00000000..662a66d6 Binary files /dev/null and b/www/assets/images/items/desc-ramp-diagonal-8x4-01-c_256.png differ diff --git a/www/assets/images/items/desc-ramp-diagonal-8x4-01-c_64.png b/www/assets/images/items/desc-ramp-diagonal-8x4-01-c_64.png new file mode 100644 index 00000000..8eff63f5 Binary files /dev/null and b/www/assets/images/items/desc-ramp-diagonal-8x4-01-c_64.png differ diff --git a/www/assets/images/items/desc-ramp-diagonal-8x4-02-c_256.png b/www/assets/images/items/desc-ramp-diagonal-8x4-02-c_256.png new file mode 100644 index 00000000..09feeba6 Binary files /dev/null and b/www/assets/images/items/desc-ramp-diagonal-8x4-02-c_256.png differ diff --git a/www/assets/images/items/desc-ramp-diagonal-8x4-02-c_64.png b/www/assets/images/items/desc-ramp-diagonal-8x4-02-c_64.png new file mode 100644 index 00000000..1d983437 Binary files /dev/null and b/www/assets/images/items/desc-ramp-diagonal-8x4-02-c_64.png differ diff --git a/www/assets/images/items/desc-ramp-downcorner-asphalt-8x1-c_256.png b/www/assets/images/items/desc-ramp-downcorner-asphalt-8x1-c_256.png new file mode 100644 index 00000000..a1e68187 Binary files /dev/null and b/www/assets/images/items/desc-ramp-downcorner-asphalt-8x1-c_256.png differ diff --git a/www/assets/images/items/desc-ramp-downcorner-asphalt-8x1-c_64.png b/www/assets/images/items/desc-ramp-downcorner-asphalt-8x1-c_64.png new file mode 100644 index 00000000..76d043a1 Binary files /dev/null and b/www/assets/images/items/desc-ramp-downcorner-asphalt-8x1-c_64.png differ diff --git a/www/assets/images/items/desc-ramp-downcorner-asphalt-8x2-c_256.png b/www/assets/images/items/desc-ramp-downcorner-asphalt-8x2-c_256.png new file mode 100644 index 00000000..8eebc043 Binary files /dev/null and b/www/assets/images/items/desc-ramp-downcorner-asphalt-8x2-c_256.png differ diff --git a/www/assets/images/items/desc-ramp-downcorner-asphalt-8x2-c_64.png b/www/assets/images/items/desc-ramp-downcorner-asphalt-8x2-c_64.png new file mode 100644 index 00000000..c7d20599 Binary files /dev/null and b/www/assets/images/items/desc-ramp-downcorner-asphalt-8x2-c_64.png differ diff --git a/www/assets/images/items/desc-ramp-downcorner-asphalt-8x4-c_256.png b/www/assets/images/items/desc-ramp-downcorner-asphalt-8x4-c_256.png new file mode 100644 index 00000000..d179e97f Binary files /dev/null and b/www/assets/images/items/desc-ramp-downcorner-asphalt-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-ramp-downcorner-asphalt-8x4-c_64.png b/www/assets/images/items/desc-ramp-downcorner-asphalt-8x4-c_64.png new file mode 100644 index 00000000..f8643062 Binary files /dev/null and b/www/assets/images/items/desc-ramp-downcorner-asphalt-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-ramp-downcorner-concrete-8x1-c_256.png b/www/assets/images/items/desc-ramp-downcorner-concrete-8x1-c_256.png new file mode 100644 index 00000000..acb85401 Binary files /dev/null and b/www/assets/images/items/desc-ramp-downcorner-concrete-8x1-c_256.png differ diff --git a/www/assets/images/items/desc-ramp-downcorner-concrete-8x1-c_64.png b/www/assets/images/items/desc-ramp-downcorner-concrete-8x1-c_64.png new file mode 100644 index 00000000..46d1a8d6 Binary files /dev/null and b/www/assets/images/items/desc-ramp-downcorner-concrete-8x1-c_64.png differ diff --git a/www/assets/images/items/desc-ramp-downcorner-concrete-8x2-c_256.png b/www/assets/images/items/desc-ramp-downcorner-concrete-8x2-c_256.png new file mode 100644 index 00000000..632b7070 Binary files /dev/null and b/www/assets/images/items/desc-ramp-downcorner-concrete-8x2-c_256.png differ diff --git a/www/assets/images/items/desc-ramp-downcorner-concrete-8x2-c_64.png b/www/assets/images/items/desc-ramp-downcorner-concrete-8x2-c_64.png new file mode 100644 index 00000000..b223e253 Binary files /dev/null and b/www/assets/images/items/desc-ramp-downcorner-concrete-8x2-c_64.png differ diff --git a/www/assets/images/items/desc-ramp-downcorner-concrete-8x4-c_256.png b/www/assets/images/items/desc-ramp-downcorner-concrete-8x4-c_256.png new file mode 100644 index 00000000..3ea32f62 Binary files /dev/null and b/www/assets/images/items/desc-ramp-downcorner-concrete-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-ramp-downcorner-concrete-8x4-c_64.png b/www/assets/images/items/desc-ramp-downcorner-concrete-8x4-c_64.png new file mode 100644 index 00000000..9272c4ce Binary files /dev/null and b/www/assets/images/items/desc-ramp-downcorner-concrete-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-ramp-downcorner-metal-8x1-c_256.png b/www/assets/images/items/desc-ramp-downcorner-metal-8x1-c_256.png new file mode 100644 index 00000000..89b6acf4 Binary files /dev/null and b/www/assets/images/items/desc-ramp-downcorner-metal-8x1-c_256.png differ diff --git a/www/assets/images/items/desc-ramp-downcorner-metal-8x1-c_64.png b/www/assets/images/items/desc-ramp-downcorner-metal-8x1-c_64.png new file mode 100644 index 00000000..e5e26e8c Binary files /dev/null and b/www/assets/images/items/desc-ramp-downcorner-metal-8x1-c_64.png differ diff --git a/www/assets/images/items/desc-ramp-downcorner-metal-8x2-c_256.png b/www/assets/images/items/desc-ramp-downcorner-metal-8x2-c_256.png new file mode 100644 index 00000000..b1b545ac Binary files /dev/null and b/www/assets/images/items/desc-ramp-downcorner-metal-8x2-c_256.png differ diff --git a/www/assets/images/items/desc-ramp-downcorner-metal-8x2-c_64.png b/www/assets/images/items/desc-ramp-downcorner-metal-8x2-c_64.png new file mode 100644 index 00000000..7b2426d7 Binary files /dev/null and b/www/assets/images/items/desc-ramp-downcorner-metal-8x2-c_64.png differ diff --git a/www/assets/images/items/desc-ramp-downcorner-metal-8x4-c_256.png b/www/assets/images/items/desc-ramp-downcorner-metal-8x4-c_256.png new file mode 100644 index 00000000..b1c2bb88 Binary files /dev/null and b/www/assets/images/items/desc-ramp-downcorner-metal-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-ramp-downcorner-metal-8x4-c_64.png b/www/assets/images/items/desc-ramp-downcorner-metal-8x4-c_64.png new file mode 100644 index 00000000..58cef808 Binary files /dev/null and b/www/assets/images/items/desc-ramp-downcorner-metal-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-ramp-downcorner-polished-8x1-c_256.png b/www/assets/images/items/desc-ramp-downcorner-polished-8x1-c_256.png new file mode 100644 index 00000000..5b35b648 Binary files /dev/null and b/www/assets/images/items/desc-ramp-downcorner-polished-8x1-c_256.png differ diff --git a/www/assets/images/items/desc-ramp-downcorner-polished-8x1-c_64.png b/www/assets/images/items/desc-ramp-downcorner-polished-8x1-c_64.png new file mode 100644 index 00000000..76b1b4f0 Binary files /dev/null and b/www/assets/images/items/desc-ramp-downcorner-polished-8x1-c_64.png differ diff --git a/www/assets/images/items/desc-ramp-downcorner-polished-8x2-c_256.png b/www/assets/images/items/desc-ramp-downcorner-polished-8x2-c_256.png new file mode 100644 index 00000000..ea9e004a Binary files /dev/null and b/www/assets/images/items/desc-ramp-downcorner-polished-8x2-c_256.png differ diff --git a/www/assets/images/items/desc-ramp-downcorner-polished-8x2-c_64.png b/www/assets/images/items/desc-ramp-downcorner-polished-8x2-c_64.png new file mode 100644 index 00000000..1d8d1ae7 Binary files /dev/null and b/www/assets/images/items/desc-ramp-downcorner-polished-8x2-c_64.png differ diff --git a/www/assets/images/items/desc-ramp-downcorner-polished-8x4-c_256.png b/www/assets/images/items/desc-ramp-downcorner-polished-8x4-c_256.png new file mode 100644 index 00000000..358f93ea Binary files /dev/null and b/www/assets/images/items/desc-ramp-downcorner-polished-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-ramp-downcorner-polished-8x4-c_64.png b/www/assets/images/items/desc-ramp-downcorner-polished-8x4-c_64.png new file mode 100644 index 00000000..117678ff Binary files /dev/null and b/www/assets/images/items/desc-ramp-downcorner-polished-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-ramp-frame-01-c_256.png b/www/assets/images/items/desc-ramp-frame-01-c_256.png new file mode 100644 index 00000000..ae61038b Binary files /dev/null and b/www/assets/images/items/desc-ramp-frame-01-c_256.png differ diff --git a/www/assets/images/items/desc-ramp-frame-01-c_64.png b/www/assets/images/items/desc-ramp-frame-01-c_64.png new file mode 100644 index 00000000..69d64078 Binary files /dev/null and b/www/assets/images/items/desc-ramp-frame-01-c_64.png differ diff --git a/www/assets/images/items/desc-ramp-frame-inverted-01-c_256.png b/www/assets/images/items/desc-ramp-frame-inverted-01-c_256.png new file mode 100644 index 00000000..fa74e6df Binary files /dev/null and b/www/assets/images/items/desc-ramp-frame-inverted-01-c_256.png differ diff --git a/www/assets/images/items/desc-ramp-frame-inverted-01-c_64.png b/www/assets/images/items/desc-ramp-frame-inverted-01-c_64.png new file mode 100644 index 00000000..a4f61f2d Binary files /dev/null and b/www/assets/images/items/desc-ramp-frame-inverted-01-c_64.png differ diff --git a/www/assets/images/items/desc-ramp-metal-8x1-c_256.png b/www/assets/images/items/desc-ramp-metal-8x1-c_256.png new file mode 100644 index 00000000..63090e63 Binary files /dev/null and b/www/assets/images/items/desc-ramp-metal-8x1-c_256.png differ diff --git a/www/assets/images/items/desc-ramp-metal-8x1-c_64.png b/www/assets/images/items/desc-ramp-metal-8x1-c_64.png new file mode 100644 index 00000000..4d7c08ce Binary files /dev/null and b/www/assets/images/items/desc-ramp-metal-8x1-c_64.png differ diff --git a/www/assets/images/items/desc-ramp-metal-8x2-c_256.png b/www/assets/images/items/desc-ramp-metal-8x2-c_256.png new file mode 100644 index 00000000..5fe2f21b Binary files /dev/null and b/www/assets/images/items/desc-ramp-metal-8x2-c_256.png differ diff --git a/www/assets/images/items/desc-ramp-metal-8x2-c_64.png b/www/assets/images/items/desc-ramp-metal-8x2-c_64.png new file mode 100644 index 00000000..c54e6c55 Binary files /dev/null and b/www/assets/images/items/desc-ramp-metal-8x2-c_64.png differ diff --git a/www/assets/images/items/desc-ramp-metal-8x4-c_256.png b/www/assets/images/items/desc-ramp-metal-8x4-c_256.png new file mode 100644 index 00000000..9f603cd9 Binary files /dev/null and b/www/assets/images/items/desc-ramp-metal-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-ramp-metal-8x4-c_64.png b/www/assets/images/items/desc-ramp-metal-8x4-c_64.png new file mode 100644 index 00000000..d205b7dc Binary files /dev/null and b/www/assets/images/items/desc-ramp-metal-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-ramp-polished-8x1-c_256.png b/www/assets/images/items/desc-ramp-polished-8x1-c_256.png new file mode 100644 index 00000000..15c39247 Binary files /dev/null and b/www/assets/images/items/desc-ramp-polished-8x1-c_256.png differ diff --git a/www/assets/images/items/desc-ramp-polished-8x1-c_64.png b/www/assets/images/items/desc-ramp-polished-8x1-c_64.png new file mode 100644 index 00000000..266c7ce4 Binary files /dev/null and b/www/assets/images/items/desc-ramp-polished-8x1-c_64.png differ diff --git a/www/assets/images/items/desc-ramp-polished-8x2-c_256.png b/www/assets/images/items/desc-ramp-polished-8x2-c_256.png new file mode 100644 index 00000000..d9e92d12 Binary files /dev/null and b/www/assets/images/items/desc-ramp-polished-8x2-c_256.png differ diff --git a/www/assets/images/items/desc-ramp-polished-8x2-c_64.png b/www/assets/images/items/desc-ramp-polished-8x2-c_64.png new file mode 100644 index 00000000..fa428f98 Binary files /dev/null and b/www/assets/images/items/desc-ramp-polished-8x2-c_64.png differ diff --git a/www/assets/images/items/desc-ramp-polished-8x4-c_256.png b/www/assets/images/items/desc-ramp-polished-8x4-c_256.png new file mode 100644 index 00000000..f36487f3 Binary files /dev/null and b/www/assets/images/items/desc-ramp-polished-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-ramp-polished-8x4-c_64.png b/www/assets/images/items/desc-ramp-polished-8x4-c_64.png new file mode 100644 index 00000000..768b8cbf Binary files /dev/null and b/www/assets/images/items/desc-ramp-polished-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-ramp-upcorner-asphalt-8x1-c_256.png b/www/assets/images/items/desc-ramp-upcorner-asphalt-8x1-c_256.png new file mode 100644 index 00000000..381910f6 Binary files /dev/null and b/www/assets/images/items/desc-ramp-upcorner-asphalt-8x1-c_256.png differ diff --git a/www/assets/images/items/desc-ramp-upcorner-asphalt-8x1-c_64.png b/www/assets/images/items/desc-ramp-upcorner-asphalt-8x1-c_64.png new file mode 100644 index 00000000..8a8587a2 Binary files /dev/null and b/www/assets/images/items/desc-ramp-upcorner-asphalt-8x1-c_64.png differ diff --git a/www/assets/images/items/desc-ramp-upcorner-asphalt-8x2-c_256.png b/www/assets/images/items/desc-ramp-upcorner-asphalt-8x2-c_256.png new file mode 100644 index 00000000..41151c8a Binary files /dev/null and b/www/assets/images/items/desc-ramp-upcorner-asphalt-8x2-c_256.png differ diff --git a/www/assets/images/items/desc-ramp-upcorner-asphalt-8x2-c_64.png b/www/assets/images/items/desc-ramp-upcorner-asphalt-8x2-c_64.png new file mode 100644 index 00000000..2d6a3f2a Binary files /dev/null and b/www/assets/images/items/desc-ramp-upcorner-asphalt-8x2-c_64.png differ diff --git a/www/assets/images/items/desc-ramp-upcorner-asphalt-8x4-c_256.png b/www/assets/images/items/desc-ramp-upcorner-asphalt-8x4-c_256.png new file mode 100644 index 00000000..4fe1243c Binary files /dev/null and b/www/assets/images/items/desc-ramp-upcorner-asphalt-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-ramp-upcorner-asphalt-8x4-c_64.png b/www/assets/images/items/desc-ramp-upcorner-asphalt-8x4-c_64.png new file mode 100644 index 00000000..97b79490 Binary files /dev/null and b/www/assets/images/items/desc-ramp-upcorner-asphalt-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-ramp-upcorner-concrete-8x1-c_256.png b/www/assets/images/items/desc-ramp-upcorner-concrete-8x1-c_256.png new file mode 100644 index 00000000..5baff8e9 Binary files /dev/null and b/www/assets/images/items/desc-ramp-upcorner-concrete-8x1-c_256.png differ diff --git a/www/assets/images/items/desc-ramp-upcorner-concrete-8x1-c_64.png b/www/assets/images/items/desc-ramp-upcorner-concrete-8x1-c_64.png new file mode 100644 index 00000000..6f45d178 Binary files /dev/null and b/www/assets/images/items/desc-ramp-upcorner-concrete-8x1-c_64.png differ diff --git a/www/assets/images/items/desc-ramp-upcorner-concrete-8x2-c_256.png b/www/assets/images/items/desc-ramp-upcorner-concrete-8x2-c_256.png new file mode 100644 index 00000000..935ef181 Binary files /dev/null and b/www/assets/images/items/desc-ramp-upcorner-concrete-8x2-c_256.png differ diff --git a/www/assets/images/items/desc-ramp-upcorner-concrete-8x2-c_64.png b/www/assets/images/items/desc-ramp-upcorner-concrete-8x2-c_64.png new file mode 100644 index 00000000..d338a40b Binary files /dev/null and b/www/assets/images/items/desc-ramp-upcorner-concrete-8x2-c_64.png differ diff --git a/www/assets/images/items/desc-ramp-upcorner-concrete-8x4-c_256.png b/www/assets/images/items/desc-ramp-upcorner-concrete-8x4-c_256.png new file mode 100644 index 00000000..20050511 Binary files /dev/null and b/www/assets/images/items/desc-ramp-upcorner-concrete-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-ramp-upcorner-concrete-8x4-c_64.png b/www/assets/images/items/desc-ramp-upcorner-concrete-8x4-c_64.png new file mode 100644 index 00000000..2b3c1838 Binary files /dev/null and b/www/assets/images/items/desc-ramp-upcorner-concrete-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-ramp-upcorner-metal-8x1-c_256.png b/www/assets/images/items/desc-ramp-upcorner-metal-8x1-c_256.png new file mode 100644 index 00000000..5c60d299 Binary files /dev/null and b/www/assets/images/items/desc-ramp-upcorner-metal-8x1-c_256.png differ diff --git a/www/assets/images/items/desc-ramp-upcorner-metal-8x1-c_64.png b/www/assets/images/items/desc-ramp-upcorner-metal-8x1-c_64.png new file mode 100644 index 00000000..47c7cbfe Binary files /dev/null and b/www/assets/images/items/desc-ramp-upcorner-metal-8x1-c_64.png differ diff --git a/www/assets/images/items/desc-ramp-upcorner-metal-8x2-c_256.png b/www/assets/images/items/desc-ramp-upcorner-metal-8x2-c_256.png new file mode 100644 index 00000000..f5ad7c10 Binary files /dev/null and b/www/assets/images/items/desc-ramp-upcorner-metal-8x2-c_256.png differ diff --git a/www/assets/images/items/desc-ramp-upcorner-metal-8x2-c_64.png b/www/assets/images/items/desc-ramp-upcorner-metal-8x2-c_64.png new file mode 100644 index 00000000..8b44391e Binary files /dev/null and b/www/assets/images/items/desc-ramp-upcorner-metal-8x2-c_64.png differ diff --git a/www/assets/images/items/desc-ramp-upcorner-metal-8x4-c_256.png b/www/assets/images/items/desc-ramp-upcorner-metal-8x4-c_256.png new file mode 100644 index 00000000..d9a88f12 Binary files /dev/null and b/www/assets/images/items/desc-ramp-upcorner-metal-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-ramp-upcorner-metal-8x4-c_64.png b/www/assets/images/items/desc-ramp-upcorner-metal-8x4-c_64.png new file mode 100644 index 00000000..028dcdd4 Binary files /dev/null and b/www/assets/images/items/desc-ramp-upcorner-metal-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-ramp-upcorner-polished-8x1-c_256.png b/www/assets/images/items/desc-ramp-upcorner-polished-8x1-c_256.png new file mode 100644 index 00000000..152e8444 Binary files /dev/null and b/www/assets/images/items/desc-ramp-upcorner-polished-8x1-c_256.png differ diff --git a/www/assets/images/items/desc-ramp-upcorner-polished-8x1-c_64.png b/www/assets/images/items/desc-ramp-upcorner-polished-8x1-c_64.png new file mode 100644 index 00000000..090aa0de Binary files /dev/null and b/www/assets/images/items/desc-ramp-upcorner-polished-8x1-c_64.png differ diff --git a/www/assets/images/items/desc-ramp-upcorner-polished-8x2-c_256.png b/www/assets/images/items/desc-ramp-upcorner-polished-8x2-c_256.png new file mode 100644 index 00000000..aaa5907b Binary files /dev/null and b/www/assets/images/items/desc-ramp-upcorner-polished-8x2-c_256.png differ diff --git a/www/assets/images/items/desc-ramp-upcorner-polished-8x2-c_64.png b/www/assets/images/items/desc-ramp-upcorner-polished-8x2-c_64.png new file mode 100644 index 00000000..a42db827 Binary files /dev/null and b/www/assets/images/items/desc-ramp-upcorner-polished-8x2-c_64.png differ diff --git a/www/assets/images/items/desc-ramp-upcorner-polished-8x4-c_256.png b/www/assets/images/items/desc-ramp-upcorner-polished-8x4-c_256.png new file mode 100644 index 00000000..ba7dacd7 Binary files /dev/null and b/www/assets/images/items/desc-ramp-upcorner-polished-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-ramp-upcorner-polished-8x4-c_64.png b/www/assets/images/items/desc-ramp-upcorner-polished-8x4-c_64.png new file mode 100644 index 00000000..10b54f76 Binary files /dev/null and b/www/assets/images/items/desc-ramp-upcorner-polished-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-rampdouble-8x1-c_256.png b/www/assets/images/items/desc-rampdouble-8x1-c_256.png new file mode 100644 index 00000000..76ffdc8d Binary files /dev/null and b/www/assets/images/items/desc-rampdouble-8x1-c_256.png differ diff --git a/www/assets/images/items/desc-rampdouble-8x1-c_64.png b/www/assets/images/items/desc-rampdouble-8x1-c_64.png new file mode 100644 index 00000000..b90f4913 Binary files /dev/null and b/www/assets/images/items/desc-rampdouble-8x1-c_64.png differ diff --git a/www/assets/images/items/desc-rampdouble-asphalt-8x1-c_256.png b/www/assets/images/items/desc-rampdouble-asphalt-8x1-c_256.png new file mode 100644 index 00000000..8c607c59 Binary files /dev/null and b/www/assets/images/items/desc-rampdouble-asphalt-8x1-c_256.png differ diff --git a/www/assets/images/items/desc-rampdouble-asphalt-8x1-c_64.png b/www/assets/images/items/desc-rampdouble-asphalt-8x1-c_64.png new file mode 100644 index 00000000..65171664 Binary files /dev/null and b/www/assets/images/items/desc-rampdouble-asphalt-8x1-c_64.png differ diff --git a/www/assets/images/items/desc-rampdouble-asphalt-8x2-c_256.png b/www/assets/images/items/desc-rampdouble-asphalt-8x2-c_256.png new file mode 100644 index 00000000..5e871564 Binary files /dev/null and b/www/assets/images/items/desc-rampdouble-asphalt-8x2-c_256.png differ diff --git a/www/assets/images/items/desc-rampdouble-asphalt-8x2-c_64.png b/www/assets/images/items/desc-rampdouble-asphalt-8x2-c_64.png new file mode 100644 index 00000000..3e35c69c Binary files /dev/null and b/www/assets/images/items/desc-rampdouble-asphalt-8x2-c_64.png differ diff --git a/www/assets/images/items/desc-rampdouble-asphalt-8x4-c_256.png b/www/assets/images/items/desc-rampdouble-asphalt-8x4-c_256.png new file mode 100644 index 00000000..1c11edfe Binary files /dev/null and b/www/assets/images/items/desc-rampdouble-asphalt-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-rampdouble-asphalt-8x4-c_64.png b/www/assets/images/items/desc-rampdouble-asphalt-8x4-c_64.png new file mode 100644 index 00000000..779d6603 Binary files /dev/null and b/www/assets/images/items/desc-rampdouble-asphalt-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-rampdouble-c_256.png b/www/assets/images/items/desc-rampdouble-c_256.png new file mode 100644 index 00000000..5479d3d5 Binary files /dev/null and b/www/assets/images/items/desc-rampdouble-c_256.png differ diff --git a/www/assets/images/items/desc-rampdouble-c_64.png b/www/assets/images/items/desc-rampdouble-c_64.png new file mode 100644 index 00000000..c7790001 Binary files /dev/null and b/www/assets/images/items/desc-rampdouble-c_64.png differ diff --git a/www/assets/images/items/desc-rampdouble-concrete-8x1-c_256.png b/www/assets/images/items/desc-rampdouble-concrete-8x1-c_256.png new file mode 100644 index 00000000..32f45ad2 Binary files /dev/null and b/www/assets/images/items/desc-rampdouble-concrete-8x1-c_256.png differ diff --git a/www/assets/images/items/desc-rampdouble-concrete-8x1-c_64.png b/www/assets/images/items/desc-rampdouble-concrete-8x1-c_64.png new file mode 100644 index 00000000..509c3125 Binary files /dev/null and b/www/assets/images/items/desc-rampdouble-concrete-8x1-c_64.png differ diff --git a/www/assets/images/items/desc-rampdouble-concrete-8x2-c_256.png b/www/assets/images/items/desc-rampdouble-concrete-8x2-c_256.png new file mode 100644 index 00000000..235d7102 Binary files /dev/null and b/www/assets/images/items/desc-rampdouble-concrete-8x2-c_256.png differ diff --git a/www/assets/images/items/desc-rampdouble-concrete-8x2-c_64.png b/www/assets/images/items/desc-rampdouble-concrete-8x2-c_64.png new file mode 100644 index 00000000..f3043049 Binary files /dev/null and b/www/assets/images/items/desc-rampdouble-concrete-8x2-c_64.png differ diff --git a/www/assets/images/items/desc-rampdouble-concrete-8x4-c_256.png b/www/assets/images/items/desc-rampdouble-concrete-8x4-c_256.png new file mode 100644 index 00000000..8033a046 Binary files /dev/null and b/www/assets/images/items/desc-rampdouble-concrete-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-rampdouble-concrete-8x4-c_64.png b/www/assets/images/items/desc-rampdouble-concrete-8x4-c_64.png new file mode 100644 index 00000000..39da7912 Binary files /dev/null and b/www/assets/images/items/desc-rampdouble-concrete-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-rampdouble-metal-8x1-c_256.png b/www/assets/images/items/desc-rampdouble-metal-8x1-c_256.png new file mode 100644 index 00000000..c1d88627 Binary files /dev/null and b/www/assets/images/items/desc-rampdouble-metal-8x1-c_256.png differ diff --git a/www/assets/images/items/desc-rampdouble-metal-8x1-c_64.png b/www/assets/images/items/desc-rampdouble-metal-8x1-c_64.png new file mode 100644 index 00000000..f01d4e93 Binary files /dev/null and b/www/assets/images/items/desc-rampdouble-metal-8x1-c_64.png differ diff --git a/www/assets/images/items/desc-rampdouble-metal-8x2-c_256.png b/www/assets/images/items/desc-rampdouble-metal-8x2-c_256.png new file mode 100644 index 00000000..13d7d364 Binary files /dev/null and b/www/assets/images/items/desc-rampdouble-metal-8x2-c_256.png differ diff --git a/www/assets/images/items/desc-rampdouble-metal-8x2-c_64.png b/www/assets/images/items/desc-rampdouble-metal-8x2-c_64.png new file mode 100644 index 00000000..d01b8509 Binary files /dev/null and b/www/assets/images/items/desc-rampdouble-metal-8x2-c_64.png differ diff --git a/www/assets/images/items/desc-rampdouble-metal-8x4-c_256.png b/www/assets/images/items/desc-rampdouble-metal-8x4-c_256.png new file mode 100644 index 00000000..c5650c35 Binary files /dev/null and b/www/assets/images/items/desc-rampdouble-metal-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-rampdouble-metal-8x4-c_64.png b/www/assets/images/items/desc-rampdouble-metal-8x4-c_64.png new file mode 100644 index 00000000..49429c80 Binary files /dev/null and b/www/assets/images/items/desc-rampdouble-metal-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-rampdouble-polished-8x1-c_256.png b/www/assets/images/items/desc-rampdouble-polished-8x1-c_256.png new file mode 100644 index 00000000..2c11fe8c Binary files /dev/null and b/www/assets/images/items/desc-rampdouble-polished-8x1-c_256.png differ diff --git a/www/assets/images/items/desc-rampdouble-polished-8x1-c_64.png b/www/assets/images/items/desc-rampdouble-polished-8x1-c_64.png new file mode 100644 index 00000000..ecb520cc Binary files /dev/null and b/www/assets/images/items/desc-rampdouble-polished-8x1-c_64.png differ diff --git a/www/assets/images/items/desc-rampdouble-polished-8x2-c_256.png b/www/assets/images/items/desc-rampdouble-polished-8x2-c_256.png new file mode 100644 index 00000000..677240df Binary files /dev/null and b/www/assets/images/items/desc-rampdouble-polished-8x2-c_256.png differ diff --git a/www/assets/images/items/desc-rampdouble-polished-8x2-c_64.png b/www/assets/images/items/desc-rampdouble-polished-8x2-c_64.png new file mode 100644 index 00000000..1c54e77a Binary files /dev/null and b/www/assets/images/items/desc-rampdouble-polished-8x2-c_64.png differ diff --git a/www/assets/images/items/desc-rampdouble-polished-8x4-c_256.png b/www/assets/images/items/desc-rampdouble-polished-8x4-c_256.png new file mode 100644 index 00000000..93aa51db Binary files /dev/null and b/www/assets/images/items/desc-rampdouble-polished-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-rampdouble-polished-8x4-c_64.png b/www/assets/images/items/desc-rampdouble-polished-8x4-c_64.png new file mode 100644 index 00000000..0ff0bb94 Binary files /dev/null and b/www/assets/images/items/desc-rampdouble-polished-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-rampinverted-8x1-c_256.png b/www/assets/images/items/desc-rampinverted-8x1-c_256.png new file mode 100644 index 00000000..3e3e26eb Binary files /dev/null and b/www/assets/images/items/desc-rampinverted-8x1-c_256.png differ diff --git a/www/assets/images/items/desc-rampinverted-8x1-c_64.png b/www/assets/images/items/desc-rampinverted-8x1-c_64.png new file mode 100644 index 00000000..9427cf6a Binary files /dev/null and b/www/assets/images/items/desc-rampinverted-8x1-c_64.png differ diff --git a/www/assets/images/items/desc-rampinverted-8x1-corner-01-c_256.png b/www/assets/images/items/desc-rampinverted-8x1-corner-01-c_256.png new file mode 100644 index 00000000..495664cf Binary files /dev/null and b/www/assets/images/items/desc-rampinverted-8x1-corner-01-c_256.png differ diff --git a/www/assets/images/items/desc-rampinverted-8x1-corner-01-c_64.png b/www/assets/images/items/desc-rampinverted-8x1-corner-01-c_64.png new file mode 100644 index 00000000..529c6a64 Binary files /dev/null and b/www/assets/images/items/desc-rampinverted-8x1-corner-01-c_64.png differ diff --git a/www/assets/images/items/desc-rampinverted-8x1-corner-02-c_256.png b/www/assets/images/items/desc-rampinverted-8x1-corner-02-c_256.png new file mode 100644 index 00000000..def6cc73 Binary files /dev/null and b/www/assets/images/items/desc-rampinverted-8x1-corner-02-c_256.png differ diff --git a/www/assets/images/items/desc-rampinverted-8x1-corner-02-c_64.png b/www/assets/images/items/desc-rampinverted-8x1-corner-02-c_64.png new file mode 100644 index 00000000..ee0ac446 Binary files /dev/null and b/www/assets/images/items/desc-rampinverted-8x1-corner-02-c_64.png differ diff --git a/www/assets/images/items/desc-rampinverted-8x2-01-c_256.png b/www/assets/images/items/desc-rampinverted-8x2-01-c_256.png new file mode 100644 index 00000000..33d891bd Binary files /dev/null and b/www/assets/images/items/desc-rampinverted-8x2-01-c_256.png differ diff --git a/www/assets/images/items/desc-rampinverted-8x2-01-c_64.png b/www/assets/images/items/desc-rampinverted-8x2-01-c_64.png new file mode 100644 index 00000000..bacaaf1f Binary files /dev/null and b/www/assets/images/items/desc-rampinverted-8x2-01-c_64.png differ diff --git a/www/assets/images/items/desc-rampinverted-8x2-corner-01-c_256.png b/www/assets/images/items/desc-rampinverted-8x2-corner-01-c_256.png new file mode 100644 index 00000000..945ec122 Binary files /dev/null and b/www/assets/images/items/desc-rampinverted-8x2-corner-01-c_256.png differ diff --git a/www/assets/images/items/desc-rampinverted-8x2-corner-01-c_64.png b/www/assets/images/items/desc-rampinverted-8x2-corner-01-c_64.png new file mode 100644 index 00000000..009c4c40 Binary files /dev/null and b/www/assets/images/items/desc-rampinverted-8x2-corner-01-c_64.png differ diff --git a/www/assets/images/items/desc-rampinverted-8x2-corner-02-c_256.png b/www/assets/images/items/desc-rampinverted-8x2-corner-02-c_256.png new file mode 100644 index 00000000..d5fb3a01 Binary files /dev/null and b/www/assets/images/items/desc-rampinverted-8x2-corner-02-c_256.png differ diff --git a/www/assets/images/items/desc-rampinverted-8x2-corner-02-c_64.png b/www/assets/images/items/desc-rampinverted-8x2-corner-02-c_64.png new file mode 100644 index 00000000..70ef71bb Binary files /dev/null and b/www/assets/images/items/desc-rampinverted-8x2-corner-02-c_64.png differ diff --git a/www/assets/images/items/desc-rampinverted-8x4-corner-01-c_256.png b/www/assets/images/items/desc-rampinverted-8x4-corner-01-c_256.png new file mode 100644 index 00000000..debf05f9 Binary files /dev/null and b/www/assets/images/items/desc-rampinverted-8x4-corner-01-c_256.png differ diff --git a/www/assets/images/items/desc-rampinverted-8x4-corner-01-c_64.png b/www/assets/images/items/desc-rampinverted-8x4-corner-01-c_64.png new file mode 100644 index 00000000..493968ed Binary files /dev/null and b/www/assets/images/items/desc-rampinverted-8x4-corner-01-c_64.png differ diff --git a/www/assets/images/items/desc-rampinverted-8x4-corner-02-c_256.png b/www/assets/images/items/desc-rampinverted-8x4-corner-02-c_256.png new file mode 100644 index 00000000..7e2f6437 Binary files /dev/null and b/www/assets/images/items/desc-rampinverted-8x4-corner-02-c_256.png differ diff --git a/www/assets/images/items/desc-rampinverted-8x4-corner-02-c_64.png b/www/assets/images/items/desc-rampinverted-8x4-corner-02-c_64.png new file mode 100644 index 00000000..1ea896d4 Binary files /dev/null and b/www/assets/images/items/desc-rampinverted-8x4-corner-02-c_64.png differ diff --git a/www/assets/images/items/desc-rawquartz-c_256.png b/www/assets/images/items/desc-rawquartz-c_256.png new file mode 100644 index 00000000..01c9a976 Binary files /dev/null and b/www/assets/images/items/desc-rawquartz-c_256.png differ diff --git a/www/assets/images/items/desc-rawquartz-c_64.png b/www/assets/images/items/desc-rawquartz-c_64.png new file mode 100644 index 00000000..1f0e8d4f Binary files /dev/null and b/www/assets/images/items/desc-rawquartz-c_64.png differ diff --git a/www/assets/images/items/desc-rebar-explosive-c_256.png b/www/assets/images/items/desc-rebar-explosive-c_256.png new file mode 100644 index 00000000..4fd64c99 Binary files /dev/null and b/www/assets/images/items/desc-rebar-explosive-c_256.png differ diff --git a/www/assets/images/items/desc-rebar-explosive-c_64.png b/www/assets/images/items/desc-rebar-explosive-c_64.png new file mode 100644 index 00000000..e5f3526d Binary files /dev/null and b/www/assets/images/items/desc-rebar-explosive-c_64.png differ diff --git a/www/assets/images/items/desc-rebar-spreadshot-c_256.png b/www/assets/images/items/desc-rebar-spreadshot-c_256.png new file mode 100644 index 00000000..479d729b Binary files /dev/null and b/www/assets/images/items/desc-rebar-spreadshot-c_256.png differ diff --git a/www/assets/images/items/desc-rebar-spreadshot-c_64.png b/www/assets/images/items/desc-rebar-spreadshot-c_64.png new file mode 100644 index 00000000..f9fd07f4 Binary files /dev/null and b/www/assets/images/items/desc-rebar-spreadshot-c_64.png differ diff --git a/www/assets/images/items/desc-rebar-stunshot-c_256.png b/www/assets/images/items/desc-rebar-stunshot-c_256.png new file mode 100644 index 00000000..d08d3696 Binary files /dev/null and b/www/assets/images/items/desc-rebar-stunshot-c_256.png differ diff --git a/www/assets/images/items/desc-rebar-stunshot-c_64.png b/www/assets/images/items/desc-rebar-stunshot-c_64.png new file mode 100644 index 00000000..63e0df39 Binary files /dev/null and b/www/assets/images/items/desc-rebar-stunshot-c_64.png differ diff --git a/www/assets/images/items/desc-rebargunprojectile-c_256.png b/www/assets/images/items/desc-rebargunprojectile-c_256.png new file mode 100644 index 00000000..127737f5 Binary files /dev/null and b/www/assets/images/items/desc-rebargunprojectile-c_256.png differ diff --git a/www/assets/images/items/desc-rebargunprojectile-c_64.png b/www/assets/images/items/desc-rebargunprojectile-c_64.png new file mode 100644 index 00000000..828b3a92 Binary files /dev/null and b/www/assets/images/items/desc-rebargunprojectile-c_64.png differ diff --git a/www/assets/images/items/desc-resourcesink-c_256.png b/www/assets/images/items/desc-resourcesink-c_256.png new file mode 100644 index 00000000..422444ce Binary files /dev/null and b/www/assets/images/items/desc-resourcesink-c_256.png differ diff --git a/www/assets/images/items/desc-resourcesink-c_64.png b/www/assets/images/items/desc-resourcesink-c_64.png new file mode 100644 index 00000000..5a20c893 Binary files /dev/null and b/www/assets/images/items/desc-resourcesink-c_64.png differ diff --git a/www/assets/images/items/desc-resourcesinkcoupon-c_256.png b/www/assets/images/items/desc-resourcesinkcoupon-c_256.png new file mode 100644 index 00000000..758b821c Binary files /dev/null and b/www/assets/images/items/desc-resourcesinkcoupon-c_256.png differ diff --git a/www/assets/images/items/desc-resourcesinkcoupon-c_64.png b/www/assets/images/items/desc-resourcesinkcoupon-c_64.png new file mode 100644 index 00000000..6d81c319 Binary files /dev/null and b/www/assets/images/items/desc-resourcesinkcoupon-c_64.png differ diff --git a/www/assets/images/items/desc-resourcesinkshop-c_256.png b/www/assets/images/items/desc-resourcesinkshop-c_256.png new file mode 100644 index 00000000..ea31b5be Binary files /dev/null and b/www/assets/images/items/desc-resourcesinkshop-c_256.png differ diff --git a/www/assets/images/items/desc-resourcesinkshop-c_64.png b/www/assets/images/items/desc-resourcesinkshop-c_64.png new file mode 100644 index 00000000..85018000 Binary files /dev/null and b/www/assets/images/items/desc-resourcesinkshop-c_64.png differ diff --git a/www/assets/images/items/desc-rocketfuel-c_256.png b/www/assets/images/items/desc-rocketfuel-c_256.png new file mode 100644 index 00000000..52ec8d52 Binary files /dev/null and b/www/assets/images/items/desc-rocketfuel-c_256.png differ diff --git a/www/assets/images/items/desc-rocketfuel-c_64.png b/www/assets/images/items/desc-rocketfuel-c_64.png new file mode 100644 index 00000000..f71b27ae Binary files /dev/null and b/www/assets/images/items/desc-rocketfuel-c_64.png differ diff --git a/www/assets/images/items/desc-roof-a-01-c_256.png b/www/assets/images/items/desc-roof-a-01-c_256.png new file mode 100644 index 00000000..1a65be15 Binary files /dev/null and b/www/assets/images/items/desc-roof-a-01-c_256.png differ diff --git a/www/assets/images/items/desc-roof-a-01-c_64.png b/www/assets/images/items/desc-roof-a-01-c_64.png new file mode 100644 index 00000000..d138d011 Binary files /dev/null and b/www/assets/images/items/desc-roof-a-01-c_64.png differ diff --git a/www/assets/images/items/desc-roof-a-02-c_256.png b/www/assets/images/items/desc-roof-a-02-c_256.png new file mode 100644 index 00000000..37513166 Binary files /dev/null and b/www/assets/images/items/desc-roof-a-02-c_256.png differ diff --git a/www/assets/images/items/desc-roof-a-02-c_64.png b/www/assets/images/items/desc-roof-a-02-c_64.png new file mode 100644 index 00000000..9a3c4ee6 Binary files /dev/null and b/www/assets/images/items/desc-roof-a-02-c_64.png differ diff --git a/www/assets/images/items/desc-roof-a-03-c_256.png b/www/assets/images/items/desc-roof-a-03-c_256.png new file mode 100644 index 00000000..edaa0728 Binary files /dev/null and b/www/assets/images/items/desc-roof-a-03-c_256.png differ diff --git a/www/assets/images/items/desc-roof-a-03-c_64.png b/www/assets/images/items/desc-roof-a-03-c_64.png new file mode 100644 index 00000000..4447d125 Binary files /dev/null and b/www/assets/images/items/desc-roof-a-03-c_64.png differ diff --git a/www/assets/images/items/desc-roof-a-04-c_256.png b/www/assets/images/items/desc-roof-a-04-c_256.png new file mode 100644 index 00000000..b2b50000 Binary files /dev/null and b/www/assets/images/items/desc-roof-a-04-c_256.png differ diff --git a/www/assets/images/items/desc-roof-a-04-c_64.png b/www/assets/images/items/desc-roof-a-04-c_64.png new file mode 100644 index 00000000..af7af73e Binary files /dev/null and b/www/assets/images/items/desc-roof-a-04-c_64.png differ diff --git a/www/assets/images/items/desc-roof-metal-incorner-01-c_256.png b/www/assets/images/items/desc-roof-metal-incorner-01-c_256.png new file mode 100644 index 00000000..2e1f4b92 Binary files /dev/null and b/www/assets/images/items/desc-roof-metal-incorner-01-c_256.png differ diff --git a/www/assets/images/items/desc-roof-metal-incorner-01-c_64.png b/www/assets/images/items/desc-roof-metal-incorner-01-c_64.png new file mode 100644 index 00000000..3b4a7b49 Binary files /dev/null and b/www/assets/images/items/desc-roof-metal-incorner-01-c_64.png differ diff --git a/www/assets/images/items/desc-roof-metal-incorner-02-c_256.png b/www/assets/images/items/desc-roof-metal-incorner-02-c_256.png new file mode 100644 index 00000000..d479bc63 Binary files /dev/null and b/www/assets/images/items/desc-roof-metal-incorner-02-c_256.png differ diff --git a/www/assets/images/items/desc-roof-metal-incorner-02-c_64.png b/www/assets/images/items/desc-roof-metal-incorner-02-c_64.png new file mode 100644 index 00000000..95573771 Binary files /dev/null and b/www/assets/images/items/desc-roof-metal-incorner-02-c_64.png differ diff --git a/www/assets/images/items/desc-roof-metal-incorner-03-c_256.png b/www/assets/images/items/desc-roof-metal-incorner-03-c_256.png new file mode 100644 index 00000000..a2e93b76 Binary files /dev/null and b/www/assets/images/items/desc-roof-metal-incorner-03-c_256.png differ diff --git a/www/assets/images/items/desc-roof-metal-incorner-03-c_64.png b/www/assets/images/items/desc-roof-metal-incorner-03-c_64.png new file mode 100644 index 00000000..0c34f9e8 Binary files /dev/null and b/www/assets/images/items/desc-roof-metal-incorner-03-c_64.png differ diff --git a/www/assets/images/items/desc-roof-metal-outcorner-01-c_256.png b/www/assets/images/items/desc-roof-metal-outcorner-01-c_256.png new file mode 100644 index 00000000..6393a26e Binary files /dev/null and b/www/assets/images/items/desc-roof-metal-outcorner-01-c_256.png differ diff --git a/www/assets/images/items/desc-roof-metal-outcorner-01-c_64.png b/www/assets/images/items/desc-roof-metal-outcorner-01-c_64.png new file mode 100644 index 00000000..336c82b8 Binary files /dev/null and b/www/assets/images/items/desc-roof-metal-outcorner-01-c_64.png differ diff --git a/www/assets/images/items/desc-roof-metal-outcorner-02-c_256.png b/www/assets/images/items/desc-roof-metal-outcorner-02-c_256.png new file mode 100644 index 00000000..b5bffa05 Binary files /dev/null and b/www/assets/images/items/desc-roof-metal-outcorner-02-c_256.png differ diff --git a/www/assets/images/items/desc-roof-metal-outcorner-02-c_64.png b/www/assets/images/items/desc-roof-metal-outcorner-02-c_64.png new file mode 100644 index 00000000..7bac1851 Binary files /dev/null and b/www/assets/images/items/desc-roof-metal-outcorner-02-c_64.png differ diff --git a/www/assets/images/items/desc-roof-metal-outcorner-03-c_256.png b/www/assets/images/items/desc-roof-metal-outcorner-03-c_256.png new file mode 100644 index 00000000..48a89aaf Binary files /dev/null and b/www/assets/images/items/desc-roof-metal-outcorner-03-c_256.png differ diff --git a/www/assets/images/items/desc-roof-metal-outcorner-03-c_64.png b/www/assets/images/items/desc-roof-metal-outcorner-03-c_64.png new file mode 100644 index 00000000..0e4ad877 Binary files /dev/null and b/www/assets/images/items/desc-roof-metal-outcorner-03-c_64.png differ diff --git a/www/assets/images/items/desc-roof-orange-01-c_256.png b/www/assets/images/items/desc-roof-orange-01-c_256.png new file mode 100644 index 00000000..19a5ea25 Binary files /dev/null and b/www/assets/images/items/desc-roof-orange-01-c_256.png differ diff --git a/www/assets/images/items/desc-roof-orange-01-c_64.png b/www/assets/images/items/desc-roof-orange-01-c_64.png new file mode 100644 index 00000000..bcdfdd6e Binary files /dev/null and b/www/assets/images/items/desc-roof-orange-01-c_64.png differ diff --git a/www/assets/images/items/desc-roof-orange-02-c_256.png b/www/assets/images/items/desc-roof-orange-02-c_256.png new file mode 100644 index 00000000..1774c384 Binary files /dev/null and b/www/assets/images/items/desc-roof-orange-02-c_256.png differ diff --git a/www/assets/images/items/desc-roof-orange-02-c_64.png b/www/assets/images/items/desc-roof-orange-02-c_64.png new file mode 100644 index 00000000..67008586 Binary files /dev/null and b/www/assets/images/items/desc-roof-orange-02-c_64.png differ diff --git a/www/assets/images/items/desc-roof-orange-03-c_256.png b/www/assets/images/items/desc-roof-orange-03-c_256.png new file mode 100644 index 00000000..670a265b Binary files /dev/null and b/www/assets/images/items/desc-roof-orange-03-c_256.png differ diff --git a/www/assets/images/items/desc-roof-orange-03-c_64.png b/www/assets/images/items/desc-roof-orange-03-c_64.png new file mode 100644 index 00000000..aecae16d Binary files /dev/null and b/www/assets/images/items/desc-roof-orange-03-c_64.png differ diff --git a/www/assets/images/items/desc-roof-orange-04-c_256.png b/www/assets/images/items/desc-roof-orange-04-c_256.png new file mode 100644 index 00000000..a4f33f49 Binary files /dev/null and b/www/assets/images/items/desc-roof-orange-04-c_256.png differ diff --git a/www/assets/images/items/desc-roof-orange-04-c_64.png b/www/assets/images/items/desc-roof-orange-04-c_64.png new file mode 100644 index 00000000..f188e651 Binary files /dev/null and b/www/assets/images/items/desc-roof-orange-04-c_64.png differ diff --git a/www/assets/images/items/desc-roof-orange-incorner-01-c_256.png b/www/assets/images/items/desc-roof-orange-incorner-01-c_256.png new file mode 100644 index 00000000..e6641a44 Binary files /dev/null and b/www/assets/images/items/desc-roof-orange-incorner-01-c_256.png differ diff --git a/www/assets/images/items/desc-roof-orange-incorner-01-c_64.png b/www/assets/images/items/desc-roof-orange-incorner-01-c_64.png new file mode 100644 index 00000000..1a71539e Binary files /dev/null and b/www/assets/images/items/desc-roof-orange-incorner-01-c_64.png differ diff --git a/www/assets/images/items/desc-roof-orange-incorner-02-c_256.png b/www/assets/images/items/desc-roof-orange-incorner-02-c_256.png new file mode 100644 index 00000000..c90087e0 Binary files /dev/null and b/www/assets/images/items/desc-roof-orange-incorner-02-c_256.png differ diff --git a/www/assets/images/items/desc-roof-orange-incorner-02-c_64.png b/www/assets/images/items/desc-roof-orange-incorner-02-c_64.png new file mode 100644 index 00000000..ae278e58 Binary files /dev/null and b/www/assets/images/items/desc-roof-orange-incorner-02-c_64.png differ diff --git a/www/assets/images/items/desc-roof-orange-incorner-03-c_256.png b/www/assets/images/items/desc-roof-orange-incorner-03-c_256.png new file mode 100644 index 00000000..c8778bee Binary files /dev/null and b/www/assets/images/items/desc-roof-orange-incorner-03-c_256.png differ diff --git a/www/assets/images/items/desc-roof-orange-incorner-03-c_64.png b/www/assets/images/items/desc-roof-orange-incorner-03-c_64.png new file mode 100644 index 00000000..7b26d38b Binary files /dev/null and b/www/assets/images/items/desc-roof-orange-incorner-03-c_64.png differ diff --git a/www/assets/images/items/desc-roof-orange-outcorner-01-c_256.png b/www/assets/images/items/desc-roof-orange-outcorner-01-c_256.png new file mode 100644 index 00000000..d26aa666 Binary files /dev/null and b/www/assets/images/items/desc-roof-orange-outcorner-01-c_256.png differ diff --git a/www/assets/images/items/desc-roof-orange-outcorner-01-c_64.png b/www/assets/images/items/desc-roof-orange-outcorner-01-c_64.png new file mode 100644 index 00000000..04cb1758 Binary files /dev/null and b/www/assets/images/items/desc-roof-orange-outcorner-01-c_64.png differ diff --git a/www/assets/images/items/desc-roof-orange-outcorner-02-c_256.png b/www/assets/images/items/desc-roof-orange-outcorner-02-c_256.png new file mode 100644 index 00000000..06deacd0 Binary files /dev/null and b/www/assets/images/items/desc-roof-orange-outcorner-02-c_256.png differ diff --git a/www/assets/images/items/desc-roof-orange-outcorner-02-c_64.png b/www/assets/images/items/desc-roof-orange-outcorner-02-c_64.png new file mode 100644 index 00000000..1547849a Binary files /dev/null and b/www/assets/images/items/desc-roof-orange-outcorner-02-c_64.png differ diff --git a/www/assets/images/items/desc-roof-orange-outcorner-03-c_256.png b/www/assets/images/items/desc-roof-orange-outcorner-03-c_256.png new file mode 100644 index 00000000..dc4dbeed Binary files /dev/null and b/www/assets/images/items/desc-roof-orange-outcorner-03-c_256.png differ diff --git a/www/assets/images/items/desc-roof-orange-outcorner-03-c_64.png b/www/assets/images/items/desc-roof-orange-outcorner-03-c_64.png new file mode 100644 index 00000000..a6f3cdda Binary files /dev/null and b/www/assets/images/items/desc-roof-orange-outcorner-03-c_64.png differ diff --git a/www/assets/images/items/desc-roof-tar-01-c_256.png b/www/assets/images/items/desc-roof-tar-01-c_256.png new file mode 100644 index 00000000..6993d540 Binary files /dev/null and b/www/assets/images/items/desc-roof-tar-01-c_256.png differ diff --git a/www/assets/images/items/desc-roof-tar-01-c_64.png b/www/assets/images/items/desc-roof-tar-01-c_64.png new file mode 100644 index 00000000..b58c7e8a Binary files /dev/null and b/www/assets/images/items/desc-roof-tar-01-c_64.png differ diff --git a/www/assets/images/items/desc-roof-tar-02-c_256.png b/www/assets/images/items/desc-roof-tar-02-c_256.png new file mode 100644 index 00000000..9a60e0fe Binary files /dev/null and b/www/assets/images/items/desc-roof-tar-02-c_256.png differ diff --git a/www/assets/images/items/desc-roof-tar-02-c_64.png b/www/assets/images/items/desc-roof-tar-02-c_64.png new file mode 100644 index 00000000..03fd068a Binary files /dev/null and b/www/assets/images/items/desc-roof-tar-02-c_64.png differ diff --git a/www/assets/images/items/desc-roof-tar-03-c_256.png b/www/assets/images/items/desc-roof-tar-03-c_256.png new file mode 100644 index 00000000..b7c67201 Binary files /dev/null and b/www/assets/images/items/desc-roof-tar-03-c_256.png differ diff --git a/www/assets/images/items/desc-roof-tar-03-c_64.png b/www/assets/images/items/desc-roof-tar-03-c_64.png new file mode 100644 index 00000000..99522bb5 Binary files /dev/null and b/www/assets/images/items/desc-roof-tar-03-c_64.png differ diff --git a/www/assets/images/items/desc-roof-tar-04-c_256.png b/www/assets/images/items/desc-roof-tar-04-c_256.png new file mode 100644 index 00000000..07d50723 Binary files /dev/null and b/www/assets/images/items/desc-roof-tar-04-c_256.png differ diff --git a/www/assets/images/items/desc-roof-tar-04-c_64.png b/www/assets/images/items/desc-roof-tar-04-c_64.png new file mode 100644 index 00000000..ec7dba43 Binary files /dev/null and b/www/assets/images/items/desc-roof-tar-04-c_64.png differ diff --git a/www/assets/images/items/desc-roof-tar-incorner-01-c_256.png b/www/assets/images/items/desc-roof-tar-incorner-01-c_256.png new file mode 100644 index 00000000..5e51fd40 Binary files /dev/null and b/www/assets/images/items/desc-roof-tar-incorner-01-c_256.png differ diff --git a/www/assets/images/items/desc-roof-tar-incorner-01-c_64.png b/www/assets/images/items/desc-roof-tar-incorner-01-c_64.png new file mode 100644 index 00000000..bb0dba9e Binary files /dev/null and b/www/assets/images/items/desc-roof-tar-incorner-01-c_64.png differ diff --git a/www/assets/images/items/desc-roof-tar-incorner-02-c_256.png b/www/assets/images/items/desc-roof-tar-incorner-02-c_256.png new file mode 100644 index 00000000..9dc0cc59 Binary files /dev/null and b/www/assets/images/items/desc-roof-tar-incorner-02-c_256.png differ diff --git a/www/assets/images/items/desc-roof-tar-incorner-02-c_64.png b/www/assets/images/items/desc-roof-tar-incorner-02-c_64.png new file mode 100644 index 00000000..f36967f1 Binary files /dev/null and b/www/assets/images/items/desc-roof-tar-incorner-02-c_64.png differ diff --git a/www/assets/images/items/desc-roof-tar-incorner-03-c_256.png b/www/assets/images/items/desc-roof-tar-incorner-03-c_256.png new file mode 100644 index 00000000..7731d8c3 Binary files /dev/null and b/www/assets/images/items/desc-roof-tar-incorner-03-c_256.png differ diff --git a/www/assets/images/items/desc-roof-tar-incorner-03-c_64.png b/www/assets/images/items/desc-roof-tar-incorner-03-c_64.png new file mode 100644 index 00000000..8a2eb069 Binary files /dev/null and b/www/assets/images/items/desc-roof-tar-incorner-03-c_64.png differ diff --git a/www/assets/images/items/desc-roof-tar-outcorner-01-c_256.png b/www/assets/images/items/desc-roof-tar-outcorner-01-c_256.png new file mode 100644 index 00000000..4ce44598 Binary files /dev/null and b/www/assets/images/items/desc-roof-tar-outcorner-01-c_256.png differ diff --git a/www/assets/images/items/desc-roof-tar-outcorner-01-c_64.png b/www/assets/images/items/desc-roof-tar-outcorner-01-c_64.png new file mode 100644 index 00000000..7a4a9528 Binary files /dev/null and b/www/assets/images/items/desc-roof-tar-outcorner-01-c_64.png differ diff --git a/www/assets/images/items/desc-roof-tar-outcorner-02-c_256.png b/www/assets/images/items/desc-roof-tar-outcorner-02-c_256.png new file mode 100644 index 00000000..554385cf Binary files /dev/null and b/www/assets/images/items/desc-roof-tar-outcorner-02-c_256.png differ diff --git a/www/assets/images/items/desc-roof-tar-outcorner-02-c_64.png b/www/assets/images/items/desc-roof-tar-outcorner-02-c_64.png new file mode 100644 index 00000000..56f4d3d0 Binary files /dev/null and b/www/assets/images/items/desc-roof-tar-outcorner-02-c_64.png differ diff --git a/www/assets/images/items/desc-roof-tar-outcorner-03-c_256.png b/www/assets/images/items/desc-roof-tar-outcorner-03-c_256.png new file mode 100644 index 00000000..b1acd433 Binary files /dev/null and b/www/assets/images/items/desc-roof-tar-outcorner-03-c_256.png differ diff --git a/www/assets/images/items/desc-roof-tar-outcorner-03-c_64.png b/www/assets/images/items/desc-roof-tar-outcorner-03-c_64.png new file mode 100644 index 00000000..27834d8f Binary files /dev/null and b/www/assets/images/items/desc-roof-tar-outcorner-03-c_64.png differ diff --git a/www/assets/images/items/desc-roof-window-01-c_256.png b/www/assets/images/items/desc-roof-window-01-c_256.png new file mode 100644 index 00000000..74d0b4fa Binary files /dev/null and b/www/assets/images/items/desc-roof-window-01-c_256.png differ diff --git a/www/assets/images/items/desc-roof-window-01-c_64.png b/www/assets/images/items/desc-roof-window-01-c_64.png new file mode 100644 index 00000000..85e08195 Binary files /dev/null and b/www/assets/images/items/desc-roof-window-01-c_64.png differ diff --git a/www/assets/images/items/desc-roof-window-02-c_256.png b/www/assets/images/items/desc-roof-window-02-c_256.png new file mode 100644 index 00000000..3b62fe77 Binary files /dev/null and b/www/assets/images/items/desc-roof-window-02-c_256.png differ diff --git a/www/assets/images/items/desc-roof-window-02-c_64.png b/www/assets/images/items/desc-roof-window-02-c_64.png new file mode 100644 index 00000000..28a0c2e0 Binary files /dev/null and b/www/assets/images/items/desc-roof-window-02-c_64.png differ diff --git a/www/assets/images/items/desc-roof-window-03-c_256.png b/www/assets/images/items/desc-roof-window-03-c_256.png new file mode 100644 index 00000000..ffb67403 Binary files /dev/null and b/www/assets/images/items/desc-roof-window-03-c_256.png differ diff --git a/www/assets/images/items/desc-roof-window-03-c_64.png b/www/assets/images/items/desc-roof-window-03-c_64.png new file mode 100644 index 00000000..38a88486 Binary files /dev/null and b/www/assets/images/items/desc-roof-window-03-c_64.png differ diff --git a/www/assets/images/items/desc-roof-window-04-c_256.png b/www/assets/images/items/desc-roof-window-04-c_256.png new file mode 100644 index 00000000..1e7cdd22 Binary files /dev/null and b/www/assets/images/items/desc-roof-window-04-c_256.png differ diff --git a/www/assets/images/items/desc-roof-window-04-c_64.png b/www/assets/images/items/desc-roof-window-04-c_64.png new file mode 100644 index 00000000..47c77ca8 Binary files /dev/null and b/www/assets/images/items/desc-roof-window-04-c_64.png differ diff --git a/www/assets/images/items/desc-roof-window-incorner-01-c_256.png b/www/assets/images/items/desc-roof-window-incorner-01-c_256.png new file mode 100644 index 00000000..7c5fac96 Binary files /dev/null and b/www/assets/images/items/desc-roof-window-incorner-01-c_256.png differ diff --git a/www/assets/images/items/desc-roof-window-incorner-01-c_64.png b/www/assets/images/items/desc-roof-window-incorner-01-c_64.png new file mode 100644 index 00000000..387e04a0 Binary files /dev/null and b/www/assets/images/items/desc-roof-window-incorner-01-c_64.png differ diff --git a/www/assets/images/items/desc-roof-window-incorner-02-c_256.png b/www/assets/images/items/desc-roof-window-incorner-02-c_256.png new file mode 100644 index 00000000..0fecfa8d Binary files /dev/null and b/www/assets/images/items/desc-roof-window-incorner-02-c_256.png differ diff --git a/www/assets/images/items/desc-roof-window-incorner-02-c_64.png b/www/assets/images/items/desc-roof-window-incorner-02-c_64.png new file mode 100644 index 00000000..06bf3b0a Binary files /dev/null and b/www/assets/images/items/desc-roof-window-incorner-02-c_64.png differ diff --git a/www/assets/images/items/desc-roof-window-incorner-03-c_256.png b/www/assets/images/items/desc-roof-window-incorner-03-c_256.png new file mode 100644 index 00000000..8f500730 Binary files /dev/null and b/www/assets/images/items/desc-roof-window-incorner-03-c_256.png differ diff --git a/www/assets/images/items/desc-roof-window-incorner-03-c_64.png b/www/assets/images/items/desc-roof-window-incorner-03-c_64.png new file mode 100644 index 00000000..2eb68f9e Binary files /dev/null and b/www/assets/images/items/desc-roof-window-incorner-03-c_64.png differ diff --git a/www/assets/images/items/desc-roof-window-outcorner-01-c_256.png b/www/assets/images/items/desc-roof-window-outcorner-01-c_256.png new file mode 100644 index 00000000..e551b1f7 Binary files /dev/null and b/www/assets/images/items/desc-roof-window-outcorner-01-c_256.png differ diff --git a/www/assets/images/items/desc-roof-window-outcorner-01-c_64.png b/www/assets/images/items/desc-roof-window-outcorner-01-c_64.png new file mode 100644 index 00000000..ee9b34da Binary files /dev/null and b/www/assets/images/items/desc-roof-window-outcorner-01-c_64.png differ diff --git a/www/assets/images/items/desc-roof-window-outcorner-02-c_256.png b/www/assets/images/items/desc-roof-window-outcorner-02-c_256.png new file mode 100644 index 00000000..3735f706 Binary files /dev/null and b/www/assets/images/items/desc-roof-window-outcorner-02-c_256.png differ diff --git a/www/assets/images/items/desc-roof-window-outcorner-02-c_64.png b/www/assets/images/items/desc-roof-window-outcorner-02-c_64.png new file mode 100644 index 00000000..24ade73c Binary files /dev/null and b/www/assets/images/items/desc-roof-window-outcorner-02-c_64.png differ diff --git a/www/assets/images/items/desc-roof-window-outcorner-03-c_256.png b/www/assets/images/items/desc-roof-window-outcorner-03-c_256.png new file mode 100644 index 00000000..75c584b7 Binary files /dev/null and b/www/assets/images/items/desc-roof-window-outcorner-03-c_256.png differ diff --git a/www/assets/images/items/desc-roof-window-outcorner-03-c_64.png b/www/assets/images/items/desc-roof-window-outcorner-03-c_64.png new file mode 100644 index 00000000..60ab51c4 Binary files /dev/null and b/www/assets/images/items/desc-roof-window-outcorner-03-c_64.png differ diff --git a/www/assets/images/items/desc-rotor-c_256.png b/www/assets/images/items/desc-rotor-c_256.png new file mode 100644 index 00000000..3bdfb512 Binary files /dev/null and b/www/assets/images/items/desc-rotor-c_256.png differ diff --git a/www/assets/images/items/desc-rotor-c_64.png b/www/assets/images/items/desc-rotor-c_64.png new file mode 100644 index 00000000..8f3499a2 Binary files /dev/null and b/www/assets/images/items/desc-rotor-c_64.png differ diff --git a/www/assets/images/items/desc-rubber-c_256.png b/www/assets/images/items/desc-rubber-c_256.png new file mode 100644 index 00000000..a58f6bde Binary files /dev/null and b/www/assets/images/items/desc-rubber-c_256.png differ diff --git a/www/assets/images/items/desc-rubber-c_64.png b/www/assets/images/items/desc-rubber-c_64.png new file mode 100644 index 00000000..f12cd3de Binary files /dev/null and b/www/assets/images/items/desc-rubber-c_64.png differ diff --git a/www/assets/images/items/desc-sam-c_256.png b/www/assets/images/items/desc-sam-c_256.png new file mode 100644 index 00000000..1d1911e0 Binary files /dev/null and b/www/assets/images/items/desc-sam-c_256.png differ diff --git a/www/assets/images/items/desc-sam-c_64.png b/www/assets/images/items/desc-sam-c_64.png new file mode 100644 index 00000000..68040a7f Binary files /dev/null and b/www/assets/images/items/desc-sam-c_64.png differ diff --git a/www/assets/images/items/desc-samfluctuator-c_256.png b/www/assets/images/items/desc-samfluctuator-c_256.png new file mode 100644 index 00000000..dc23c7e4 Binary files /dev/null and b/www/assets/images/items/desc-samfluctuator-c_256.png differ diff --git a/www/assets/images/items/desc-samfluctuator-c_64.png b/www/assets/images/items/desc-samfluctuator-c_64.png new file mode 100644 index 00000000..f0b2c48b Binary files /dev/null and b/www/assets/images/items/desc-samfluctuator-c_64.png differ diff --git a/www/assets/images/items/desc-samingot-c_256.png b/www/assets/images/items/desc-samingot-c_256.png new file mode 100644 index 00000000..ee8787d2 Binary files /dev/null and b/www/assets/images/items/desc-samingot-c_256.png differ diff --git a/www/assets/images/items/desc-samingot-c_64.png b/www/assets/images/items/desc-samingot-c_64.png new file mode 100644 index 00000000..c01a9132 Binary files /dev/null and b/www/assets/images/items/desc-samingot-c_64.png differ diff --git a/www/assets/images/items/desc-shroom-c_256.png b/www/assets/images/items/desc-shroom-c_256.png new file mode 100644 index 00000000..a5b6fb55 Binary files /dev/null and b/www/assets/images/items/desc-shroom-c_256.png differ diff --git a/www/assets/images/items/desc-shroom-c_64.png b/www/assets/images/items/desc-shroom-c_64.png new file mode 100644 index 00000000..2dc98e24 Binary files /dev/null and b/www/assets/images/items/desc-shroom-c_64.png differ diff --git a/www/assets/images/items/desc-silica-c_256.png b/www/assets/images/items/desc-silica-c_256.png new file mode 100644 index 00000000..dbae9851 Binary files /dev/null and b/www/assets/images/items/desc-silica-c_256.png differ diff --git a/www/assets/images/items/desc-silica-c_64.png b/www/assets/images/items/desc-silica-c_64.png new file mode 100644 index 00000000..b7b9c953 Binary files /dev/null and b/www/assets/images/items/desc-silica-c_64.png differ diff --git a/www/assets/images/items/desc-singularitycell-c_256.png b/www/assets/images/items/desc-singularitycell-c_256.png new file mode 100644 index 00000000..b80eee7c Binary files /dev/null and b/www/assets/images/items/desc-singularitycell-c_256.png differ diff --git a/www/assets/images/items/desc-singularitycell-c_64.png b/www/assets/images/items/desc-singularitycell-c_64.png new file mode 100644 index 00000000..f2094974 Binary files /dev/null and b/www/assets/images/items/desc-singularitycell-c_64.png differ diff --git a/www/assets/images/items/desc-smeltermk1-c_256.png b/www/assets/images/items/desc-smeltermk1-c_256.png new file mode 100644 index 00000000..fa83460c Binary files /dev/null and b/www/assets/images/items/desc-smeltermk1-c_256.png differ diff --git a/www/assets/images/items/desc-smeltermk1-c_64.png b/www/assets/images/items/desc-smeltermk1-c_64.png new file mode 100644 index 00000000..e8ba8f59 Binary files /dev/null and b/www/assets/images/items/desc-smeltermk1-c_64.png differ diff --git a/www/assets/images/items/desc-snow-c_256.png b/www/assets/images/items/desc-snow-c_256.png new file mode 100644 index 00000000..75623b3f Binary files /dev/null and b/www/assets/images/items/desc-snow-c_256.png differ diff --git a/www/assets/images/items/desc-snow-c_64.png b/www/assets/images/items/desc-snow-c_64.png new file mode 100644 index 00000000..d7260c53 Binary files /dev/null and b/www/assets/images/items/desc-snow-c_64.png differ diff --git a/www/assets/images/items/desc-snowballprojectile-c_256.png b/www/assets/images/items/desc-snowballprojectile-c_256.png new file mode 100644 index 00000000..b839a98f Binary files /dev/null and b/www/assets/images/items/desc-snowballprojectile-c_256.png differ diff --git a/www/assets/images/items/desc-snowballprojectile-c_64.png b/www/assets/images/items/desc-snowballprojectile-c_64.png new file mode 100644 index 00000000..f055dc44 Binary files /dev/null and b/www/assets/images/items/desc-snowballprojectile-c_64.png differ diff --git a/www/assets/images/items/desc-snowcannon-c_256.png b/www/assets/images/items/desc-snowcannon-c_256.png new file mode 100644 index 00000000..a1aaec0b Binary files /dev/null and b/www/assets/images/items/desc-snowcannon-c_256.png differ diff --git a/www/assets/images/items/desc-snowcannon-c_64.png b/www/assets/images/items/desc-snowcannon-c_64.png new file mode 100644 index 00000000..ab2075bd Binary files /dev/null and b/www/assets/images/items/desc-snowcannon-c_64.png differ diff --git a/www/assets/images/items/desc-snowdispenser-c_256.png b/www/assets/images/items/desc-snowdispenser-c_256.png new file mode 100644 index 00000000..c4e5b714 Binary files /dev/null and b/www/assets/images/items/desc-snowdispenser-c_256.png differ diff --git a/www/assets/images/items/desc-snowdispenser-c_64.png b/www/assets/images/items/desc-snowdispenser-c_64.png new file mode 100644 index 00000000..07dd6a3a Binary files /dev/null and b/www/assets/images/items/desc-snowdispenser-c_64.png differ diff --git a/www/assets/images/items/desc-snowman-c_256.png b/www/assets/images/items/desc-snowman-c_256.png new file mode 100644 index 00000000..855c15af Binary files /dev/null and b/www/assets/images/items/desc-snowman-c_256.png differ diff --git a/www/assets/images/items/desc-snowman-c_64.png b/www/assets/images/items/desc-snowman-c_64.png new file mode 100644 index 00000000..15290b4d Binary files /dev/null and b/www/assets/images/items/desc-snowman-c_64.png differ diff --git a/www/assets/images/items/desc-spaceelevator-c_256.png b/www/assets/images/items/desc-spaceelevator-c_256.png new file mode 100644 index 00000000..9f958ae2 Binary files /dev/null and b/www/assets/images/items/desc-spaceelevator-c_256.png differ diff --git a/www/assets/images/items/desc-spaceelevator-c_64.png b/www/assets/images/items/desc-spaceelevator-c_64.png new file mode 100644 index 00000000..e0444da5 Binary files /dev/null and b/www/assets/images/items/desc-spaceelevator-c_64.png differ diff --git a/www/assets/images/items/desc-spaceelevatorpart-1-c_256.png b/www/assets/images/items/desc-spaceelevatorpart-1-c_256.png new file mode 100644 index 00000000..3d72e5c4 Binary files /dev/null and b/www/assets/images/items/desc-spaceelevatorpart-1-c_256.png differ diff --git a/www/assets/images/items/desc-spaceelevatorpart-1-c_64.png b/www/assets/images/items/desc-spaceelevatorpart-1-c_64.png new file mode 100644 index 00000000..eb5c93ee Binary files /dev/null and b/www/assets/images/items/desc-spaceelevatorpart-1-c_64.png differ diff --git a/www/assets/images/items/desc-spaceelevatorpart-10-c_256.png b/www/assets/images/items/desc-spaceelevatorpart-10-c_256.png new file mode 100644 index 00000000..f38ff2ec Binary files /dev/null and b/www/assets/images/items/desc-spaceelevatorpart-10-c_256.png differ diff --git a/www/assets/images/items/desc-spaceelevatorpart-10-c_64.png b/www/assets/images/items/desc-spaceelevatorpart-10-c_64.png new file mode 100644 index 00000000..6447290c Binary files /dev/null and b/www/assets/images/items/desc-spaceelevatorpart-10-c_64.png differ diff --git a/www/assets/images/items/desc-spaceelevatorpart-11-c_256.png b/www/assets/images/items/desc-spaceelevatorpart-11-c_256.png new file mode 100644 index 00000000..59bfa4ae Binary files /dev/null and b/www/assets/images/items/desc-spaceelevatorpart-11-c_256.png differ diff --git a/www/assets/images/items/desc-spaceelevatorpart-11-c_64.png b/www/assets/images/items/desc-spaceelevatorpart-11-c_64.png new file mode 100644 index 00000000..117f5df2 Binary files /dev/null and b/www/assets/images/items/desc-spaceelevatorpart-11-c_64.png differ diff --git a/www/assets/images/items/desc-spaceelevatorpart-12-c_256.png b/www/assets/images/items/desc-spaceelevatorpart-12-c_256.png new file mode 100644 index 00000000..b1dd478d Binary files /dev/null and b/www/assets/images/items/desc-spaceelevatorpart-12-c_256.png differ diff --git a/www/assets/images/items/desc-spaceelevatorpart-12-c_64.png b/www/assets/images/items/desc-spaceelevatorpart-12-c_64.png new file mode 100644 index 00000000..e2b55a77 Binary files /dev/null and b/www/assets/images/items/desc-spaceelevatorpart-12-c_64.png differ diff --git a/www/assets/images/items/desc-spaceelevatorpart-2-c_256.png b/www/assets/images/items/desc-spaceelevatorpart-2-c_256.png new file mode 100644 index 00000000..08d19232 Binary files /dev/null and b/www/assets/images/items/desc-spaceelevatorpart-2-c_256.png differ diff --git a/www/assets/images/items/desc-spaceelevatorpart-2-c_64.png b/www/assets/images/items/desc-spaceelevatorpart-2-c_64.png new file mode 100644 index 00000000..866acd1c Binary files /dev/null and b/www/assets/images/items/desc-spaceelevatorpart-2-c_64.png differ diff --git a/www/assets/images/items/desc-spaceelevatorpart-3-c_256.png b/www/assets/images/items/desc-spaceelevatorpart-3-c_256.png new file mode 100644 index 00000000..f4191370 Binary files /dev/null and b/www/assets/images/items/desc-spaceelevatorpart-3-c_256.png differ diff --git a/www/assets/images/items/desc-spaceelevatorpart-3-c_64.png b/www/assets/images/items/desc-spaceelevatorpart-3-c_64.png new file mode 100644 index 00000000..f3346387 Binary files /dev/null and b/www/assets/images/items/desc-spaceelevatorpart-3-c_64.png differ diff --git a/www/assets/images/items/desc-spaceelevatorpart-4-c_256.png b/www/assets/images/items/desc-spaceelevatorpart-4-c_256.png new file mode 100644 index 00000000..0d1fb941 Binary files /dev/null and b/www/assets/images/items/desc-spaceelevatorpart-4-c_256.png differ diff --git a/www/assets/images/items/desc-spaceelevatorpart-4-c_64.png b/www/assets/images/items/desc-spaceelevatorpart-4-c_64.png new file mode 100644 index 00000000..d9da7b1e Binary files /dev/null and b/www/assets/images/items/desc-spaceelevatorpart-4-c_64.png differ diff --git a/www/assets/images/items/desc-spaceelevatorpart-5-c_256.png b/www/assets/images/items/desc-spaceelevatorpart-5-c_256.png new file mode 100644 index 00000000..32027017 Binary files /dev/null and b/www/assets/images/items/desc-spaceelevatorpart-5-c_256.png differ diff --git a/www/assets/images/items/desc-spaceelevatorpart-5-c_64.png b/www/assets/images/items/desc-spaceelevatorpart-5-c_64.png new file mode 100644 index 00000000..1152ecb4 Binary files /dev/null and b/www/assets/images/items/desc-spaceelevatorpart-5-c_64.png differ diff --git a/www/assets/images/items/desc-spaceelevatorpart-6-c_256.png b/www/assets/images/items/desc-spaceelevatorpart-6-c_256.png new file mode 100644 index 00000000..c086dc83 Binary files /dev/null and b/www/assets/images/items/desc-spaceelevatorpart-6-c_256.png differ diff --git a/www/assets/images/items/desc-spaceelevatorpart-6-c_64.png b/www/assets/images/items/desc-spaceelevatorpart-6-c_64.png new file mode 100644 index 00000000..bfbafdba Binary files /dev/null and b/www/assets/images/items/desc-spaceelevatorpart-6-c_64.png differ diff --git a/www/assets/images/items/desc-spaceelevatorpart-7-c_256.png b/www/assets/images/items/desc-spaceelevatorpart-7-c_256.png new file mode 100644 index 00000000..ad0d6a83 Binary files /dev/null and b/www/assets/images/items/desc-spaceelevatorpart-7-c_256.png differ diff --git a/www/assets/images/items/desc-spaceelevatorpart-7-c_64.png b/www/assets/images/items/desc-spaceelevatorpart-7-c_64.png new file mode 100644 index 00000000..45320fec Binary files /dev/null and b/www/assets/images/items/desc-spaceelevatorpart-7-c_64.png differ diff --git a/www/assets/images/items/desc-spaceelevatorpart-8-c_256.png b/www/assets/images/items/desc-spaceelevatorpart-8-c_256.png new file mode 100644 index 00000000..5d03d01c Binary files /dev/null and b/www/assets/images/items/desc-spaceelevatorpart-8-c_256.png differ diff --git a/www/assets/images/items/desc-spaceelevatorpart-8-c_64.png b/www/assets/images/items/desc-spaceelevatorpart-8-c_64.png new file mode 100644 index 00000000..76278b17 Binary files /dev/null and b/www/assets/images/items/desc-spaceelevatorpart-8-c_64.png differ diff --git a/www/assets/images/items/desc-spaceelevatorpart-9-c_256.png b/www/assets/images/items/desc-spaceelevatorpart-9-c_256.png new file mode 100644 index 00000000..546550d7 Binary files /dev/null and b/www/assets/images/items/desc-spaceelevatorpart-9-c_256.png differ diff --git a/www/assets/images/items/desc-spaceelevatorpart-9-c_64.png b/www/assets/images/items/desc-spaceelevatorpart-9-c_64.png new file mode 100644 index 00000000..506925c7 Binary files /dev/null and b/www/assets/images/items/desc-spaceelevatorpart-9-c_64.png differ diff --git a/www/assets/images/items/desc-spikedrebar-c_256.png b/www/assets/images/items/desc-spikedrebar-c_256.png new file mode 100644 index 00000000..f2e7471b Binary files /dev/null and b/www/assets/images/items/desc-spikedrebar-c_256.png differ diff --git a/www/assets/images/items/desc-spikedrebar-c_64.png b/www/assets/images/items/desc-spikedrebar-c_64.png new file mode 100644 index 00000000..d178dce0 Binary files /dev/null and b/www/assets/images/items/desc-spikedrebar-c_64.png differ diff --git a/www/assets/images/items/desc-spitterparts-c_256.png b/www/assets/images/items/desc-spitterparts-c_256.png new file mode 100644 index 00000000..aae87599 Binary files /dev/null and b/www/assets/images/items/desc-spitterparts-c_256.png differ diff --git a/www/assets/images/items/desc-spitterparts-c_64.png b/www/assets/images/items/desc-spitterparts-c_64.png new file mode 100644 index 00000000..53fda9e1 Binary files /dev/null and b/www/assets/images/items/desc-spitterparts-c_64.png differ diff --git a/www/assets/images/items/desc-stair-asphalt-8x1-c_256.png b/www/assets/images/items/desc-stair-asphalt-8x1-c_256.png new file mode 100644 index 00000000..aeb17a0e Binary files /dev/null and b/www/assets/images/items/desc-stair-asphalt-8x1-c_256.png differ diff --git a/www/assets/images/items/desc-stair-asphalt-8x1-c_64.png b/www/assets/images/items/desc-stair-asphalt-8x1-c_64.png new file mode 100644 index 00000000..34945785 Binary files /dev/null and b/www/assets/images/items/desc-stair-asphalt-8x1-c_64.png differ diff --git a/www/assets/images/items/desc-stair-asphalt-8x2-c_256.png b/www/assets/images/items/desc-stair-asphalt-8x2-c_256.png new file mode 100644 index 00000000..df436b7d Binary files /dev/null and b/www/assets/images/items/desc-stair-asphalt-8x2-c_256.png differ diff --git a/www/assets/images/items/desc-stair-asphalt-8x2-c_64.png b/www/assets/images/items/desc-stair-asphalt-8x2-c_64.png new file mode 100644 index 00000000..192dff68 Binary files /dev/null and b/www/assets/images/items/desc-stair-asphalt-8x2-c_64.png differ diff --git a/www/assets/images/items/desc-stair-asphalt-8x4-c_256.png b/www/assets/images/items/desc-stair-asphalt-8x4-c_256.png new file mode 100644 index 00000000..34a4e805 Binary files /dev/null and b/www/assets/images/items/desc-stair-asphalt-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-stair-asphalt-8x4-c_64.png b/www/assets/images/items/desc-stair-asphalt-8x4-c_64.png new file mode 100644 index 00000000..6198eb9f Binary files /dev/null and b/www/assets/images/items/desc-stair-asphalt-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-stair-concrete-8x1-c_256.png b/www/assets/images/items/desc-stair-concrete-8x1-c_256.png new file mode 100644 index 00000000..f4e249a2 Binary files /dev/null and b/www/assets/images/items/desc-stair-concrete-8x1-c_256.png differ diff --git a/www/assets/images/items/desc-stair-concrete-8x1-c_64.png b/www/assets/images/items/desc-stair-concrete-8x1-c_64.png new file mode 100644 index 00000000..f4fe3a3d Binary files /dev/null and b/www/assets/images/items/desc-stair-concrete-8x1-c_64.png differ diff --git a/www/assets/images/items/desc-stair-concrete-8x2-c_256.png b/www/assets/images/items/desc-stair-concrete-8x2-c_256.png new file mode 100644 index 00000000..7b43bc7b Binary files /dev/null and b/www/assets/images/items/desc-stair-concrete-8x2-c_256.png differ diff --git a/www/assets/images/items/desc-stair-concrete-8x2-c_64.png b/www/assets/images/items/desc-stair-concrete-8x2-c_64.png new file mode 100644 index 00000000..67c1c963 Binary files /dev/null and b/www/assets/images/items/desc-stair-concrete-8x2-c_64.png differ diff --git a/www/assets/images/items/desc-stair-concrete-8x4-c_256.png b/www/assets/images/items/desc-stair-concrete-8x4-c_256.png new file mode 100644 index 00000000..1933df10 Binary files /dev/null and b/www/assets/images/items/desc-stair-concrete-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-stair-concrete-8x4-c_64.png b/www/assets/images/items/desc-stair-concrete-8x4-c_64.png new file mode 100644 index 00000000..c1742d45 Binary files /dev/null and b/www/assets/images/items/desc-stair-concrete-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-stair-ficsitset-8x1-01-c_256.png b/www/assets/images/items/desc-stair-ficsitset-8x1-01-c_256.png new file mode 100644 index 00000000..6d6beafe Binary files /dev/null and b/www/assets/images/items/desc-stair-ficsitset-8x1-01-c_256.png differ diff --git a/www/assets/images/items/desc-stair-ficsitset-8x1-01-c_64.png b/www/assets/images/items/desc-stair-ficsitset-8x1-01-c_64.png new file mode 100644 index 00000000..5fab3d22 Binary files /dev/null and b/www/assets/images/items/desc-stair-ficsitset-8x1-01-c_64.png differ diff --git a/www/assets/images/items/desc-stair-ficsitset-8x2-01-c_256.png b/www/assets/images/items/desc-stair-ficsitset-8x2-01-c_256.png new file mode 100644 index 00000000..ce64a207 Binary files /dev/null and b/www/assets/images/items/desc-stair-ficsitset-8x2-01-c_256.png differ diff --git a/www/assets/images/items/desc-stair-ficsitset-8x2-01-c_64.png b/www/assets/images/items/desc-stair-ficsitset-8x2-01-c_64.png new file mode 100644 index 00000000..11f28b22 Binary files /dev/null and b/www/assets/images/items/desc-stair-ficsitset-8x2-01-c_64.png differ diff --git a/www/assets/images/items/desc-stair-ficsitset-8x4-01-c_256.png b/www/assets/images/items/desc-stair-ficsitset-8x4-01-c_256.png new file mode 100644 index 00000000..46dce03d Binary files /dev/null and b/www/assets/images/items/desc-stair-ficsitset-8x4-01-c_256.png differ diff --git a/www/assets/images/items/desc-stair-ficsitset-8x4-01-c_64.png b/www/assets/images/items/desc-stair-ficsitset-8x4-01-c_64.png new file mode 100644 index 00000000..65c08cd9 Binary files /dev/null and b/www/assets/images/items/desc-stair-ficsitset-8x4-01-c_64.png differ diff --git a/www/assets/images/items/desc-stair-gripmetal-8x1-c_256.png b/www/assets/images/items/desc-stair-gripmetal-8x1-c_256.png new file mode 100644 index 00000000..d00491ba Binary files /dev/null and b/www/assets/images/items/desc-stair-gripmetal-8x1-c_256.png differ diff --git a/www/assets/images/items/desc-stair-gripmetal-8x1-c_64.png b/www/assets/images/items/desc-stair-gripmetal-8x1-c_64.png new file mode 100644 index 00000000..0d79ccd9 Binary files /dev/null and b/www/assets/images/items/desc-stair-gripmetal-8x1-c_64.png differ diff --git a/www/assets/images/items/desc-stair-gripmetal-8x2-c_256.png b/www/assets/images/items/desc-stair-gripmetal-8x2-c_256.png new file mode 100644 index 00000000..af3b2409 Binary files /dev/null and b/www/assets/images/items/desc-stair-gripmetal-8x2-c_256.png differ diff --git a/www/assets/images/items/desc-stair-gripmetal-8x2-c_64.png b/www/assets/images/items/desc-stair-gripmetal-8x2-c_64.png new file mode 100644 index 00000000..57b69891 Binary files /dev/null and b/www/assets/images/items/desc-stair-gripmetal-8x2-c_64.png differ diff --git a/www/assets/images/items/desc-stair-gripmetal-8x4-c_256.png b/www/assets/images/items/desc-stair-gripmetal-8x4-c_256.png new file mode 100644 index 00000000..c48c6fab Binary files /dev/null and b/www/assets/images/items/desc-stair-gripmetal-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-stair-gripmetal-8x4-c_64.png b/www/assets/images/items/desc-stair-gripmetal-8x4-c_64.png new file mode 100644 index 00000000..5ba3e8d6 Binary files /dev/null and b/www/assets/images/items/desc-stair-gripmetal-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-stair-polishedconcrete-8x1-c_256.png b/www/assets/images/items/desc-stair-polishedconcrete-8x1-c_256.png new file mode 100644 index 00000000..23cfbf89 Binary files /dev/null and b/www/assets/images/items/desc-stair-polishedconcrete-8x1-c_256.png differ diff --git a/www/assets/images/items/desc-stair-polishedconcrete-8x1-c_64.png b/www/assets/images/items/desc-stair-polishedconcrete-8x1-c_64.png new file mode 100644 index 00000000..6f03278b Binary files /dev/null and b/www/assets/images/items/desc-stair-polishedconcrete-8x1-c_64.png differ diff --git a/www/assets/images/items/desc-stair-polishedconcrete-8x2-c_256.png b/www/assets/images/items/desc-stair-polishedconcrete-8x2-c_256.png new file mode 100644 index 00000000..8d9aa140 Binary files /dev/null and b/www/assets/images/items/desc-stair-polishedconcrete-8x2-c_256.png differ diff --git a/www/assets/images/items/desc-stair-polishedconcrete-8x2-c_64.png b/www/assets/images/items/desc-stair-polishedconcrete-8x2-c_64.png new file mode 100644 index 00000000..925f13dc Binary files /dev/null and b/www/assets/images/items/desc-stair-polishedconcrete-8x2-c_64.png differ diff --git a/www/assets/images/items/desc-stair-polishedconcrete-8x4-c_256.png b/www/assets/images/items/desc-stair-polishedconcrete-8x4-c_256.png new file mode 100644 index 00000000..12db2eac Binary files /dev/null and b/www/assets/images/items/desc-stair-polishedconcrete-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-stair-polishedconcrete-8x4-c_64.png b/www/assets/images/items/desc-stair-polishedconcrete-8x4-c_64.png new file mode 100644 index 00000000..4810b9d2 Binary files /dev/null and b/www/assets/images/items/desc-stair-polishedconcrete-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-standalonewidgetsign-huge-c_256.png b/www/assets/images/items/desc-standalonewidgetsign-huge-c_256.png new file mode 100644 index 00000000..5ee80c00 Binary files /dev/null and b/www/assets/images/items/desc-standalonewidgetsign-huge-c_256.png differ diff --git a/www/assets/images/items/desc-standalonewidgetsign-huge-c_64.png b/www/assets/images/items/desc-standalonewidgetsign-huge-c_64.png new file mode 100644 index 00000000..167b359a Binary files /dev/null and b/www/assets/images/items/desc-standalonewidgetsign-huge-c_64.png differ diff --git a/www/assets/images/items/desc-standalonewidgetsign-large-c_256.png b/www/assets/images/items/desc-standalonewidgetsign-large-c_256.png new file mode 100644 index 00000000..9d6abb61 Binary files /dev/null and b/www/assets/images/items/desc-standalonewidgetsign-large-c_256.png differ diff --git a/www/assets/images/items/desc-standalonewidgetsign-large-c_64.png b/www/assets/images/items/desc-standalonewidgetsign-large-c_64.png new file mode 100644 index 00000000..49128d61 Binary files /dev/null and b/www/assets/images/items/desc-standalonewidgetsign-large-c_64.png differ diff --git a/www/assets/images/items/desc-standalonewidgetsign-medium-c_256.png b/www/assets/images/items/desc-standalonewidgetsign-medium-c_256.png new file mode 100644 index 00000000..3bbd39fb Binary files /dev/null and b/www/assets/images/items/desc-standalonewidgetsign-medium-c_256.png differ diff --git a/www/assets/images/items/desc-standalonewidgetsign-medium-c_64.png b/www/assets/images/items/desc-standalonewidgetsign-medium-c_64.png new file mode 100644 index 00000000..3dd3d1b6 Binary files /dev/null and b/www/assets/images/items/desc-standalonewidgetsign-medium-c_64.png differ diff --git a/www/assets/images/items/desc-standalonewidgetsign-portrait-c_256.png b/www/assets/images/items/desc-standalonewidgetsign-portrait-c_256.png new file mode 100644 index 00000000..a06ec25b Binary files /dev/null and b/www/assets/images/items/desc-standalonewidgetsign-portrait-c_256.png differ diff --git a/www/assets/images/items/desc-standalonewidgetsign-portrait-c_64.png b/www/assets/images/items/desc-standalonewidgetsign-portrait-c_64.png new file mode 100644 index 00000000..5b03ae89 Binary files /dev/null and b/www/assets/images/items/desc-standalonewidgetsign-portrait-c_64.png differ diff --git a/www/assets/images/items/desc-standalonewidgetsign-small-c_256.png b/www/assets/images/items/desc-standalonewidgetsign-small-c_256.png new file mode 100644 index 00000000..e23cebdd Binary files /dev/null and b/www/assets/images/items/desc-standalonewidgetsign-small-c_256.png differ diff --git a/www/assets/images/items/desc-standalonewidgetsign-small-c_64.png b/www/assets/images/items/desc-standalonewidgetsign-small-c_64.png new file mode 100644 index 00000000..11268914 Binary files /dev/null and b/www/assets/images/items/desc-standalonewidgetsign-small-c_64.png differ diff --git a/www/assets/images/items/desc-standalonewidgetsign-smallverywide-c_256.png b/www/assets/images/items/desc-standalonewidgetsign-smallverywide-c_256.png new file mode 100644 index 00000000..28bac25a Binary files /dev/null and b/www/assets/images/items/desc-standalonewidgetsign-smallverywide-c_256.png differ diff --git a/www/assets/images/items/desc-standalonewidgetsign-smallverywide-c_64.png b/www/assets/images/items/desc-standalonewidgetsign-smallverywide-c_64.png new file mode 100644 index 00000000..07f00bb8 Binary files /dev/null and b/www/assets/images/items/desc-standalonewidgetsign-smallverywide-c_64.png differ diff --git a/www/assets/images/items/desc-standalonewidgetsign-smallwide-c_256.png b/www/assets/images/items/desc-standalonewidgetsign-smallwide-c_256.png new file mode 100644 index 00000000..ff2b06e7 Binary files /dev/null and b/www/assets/images/items/desc-standalonewidgetsign-smallwide-c_256.png differ diff --git a/www/assets/images/items/desc-standalonewidgetsign-smallwide-c_64.png b/www/assets/images/items/desc-standalonewidgetsign-smallwide-c_64.png new file mode 100644 index 00000000..0634a75a Binary files /dev/null and b/www/assets/images/items/desc-standalonewidgetsign-smallwide-c_64.png differ diff --git a/www/assets/images/items/desc-standalonewidgetsign-square-c_256.png b/www/assets/images/items/desc-standalonewidgetsign-square-c_256.png new file mode 100644 index 00000000..0b96e010 Binary files /dev/null and b/www/assets/images/items/desc-standalonewidgetsign-square-c_256.png differ diff --git a/www/assets/images/items/desc-standalonewidgetsign-square-c_64.png b/www/assets/images/items/desc-standalonewidgetsign-square-c_64.png new file mode 100644 index 00000000..911a8eda Binary files /dev/null and b/www/assets/images/items/desc-standalonewidgetsign-square-c_64.png differ diff --git a/www/assets/images/items/desc-standalonewidgetsign-square-small-c_256.png b/www/assets/images/items/desc-standalonewidgetsign-square-small-c_256.png new file mode 100644 index 00000000..1b3b22ca Binary files /dev/null and b/www/assets/images/items/desc-standalonewidgetsign-square-small-c_256.png differ diff --git a/www/assets/images/items/desc-standalonewidgetsign-square-small-c_64.png b/www/assets/images/items/desc-standalonewidgetsign-square-small-c_64.png new file mode 100644 index 00000000..a6b4345b Binary files /dev/null and b/www/assets/images/items/desc-standalonewidgetsign-square-small-c_64.png differ diff --git a/www/assets/images/items/desc-standalonewidgetsign-square-tiny-c_256.png b/www/assets/images/items/desc-standalonewidgetsign-square-tiny-c_256.png new file mode 100644 index 00000000..bc750908 Binary files /dev/null and b/www/assets/images/items/desc-standalonewidgetsign-square-tiny-c_256.png differ diff --git a/www/assets/images/items/desc-standalonewidgetsign-square-tiny-c_64.png b/www/assets/images/items/desc-standalonewidgetsign-square-tiny-c_64.png new file mode 100644 index 00000000..416e044f Binary files /dev/null and b/www/assets/images/items/desc-standalonewidgetsign-square-tiny-c_64.png differ diff --git a/www/assets/images/items/desc-stator-c_256.png b/www/assets/images/items/desc-stator-c_256.png new file mode 100644 index 00000000..00099e24 Binary files /dev/null and b/www/assets/images/items/desc-stator-c_256.png differ diff --git a/www/assets/images/items/desc-stator-c_64.png b/www/assets/images/items/desc-stator-c_64.png new file mode 100644 index 00000000..743afb90 Binary files /dev/null and b/www/assets/images/items/desc-stator-c_64.png differ diff --git a/www/assets/images/items/desc-steelingot-c_256.png b/www/assets/images/items/desc-steelingot-c_256.png new file mode 100644 index 00000000..2d2e1d64 Binary files /dev/null and b/www/assets/images/items/desc-steelingot-c_256.png differ diff --git a/www/assets/images/items/desc-steelingot-c_64.png b/www/assets/images/items/desc-steelingot-c_64.png new file mode 100644 index 00000000..320421c1 Binary files /dev/null and b/www/assets/images/items/desc-steelingot-c_64.png differ diff --git a/www/assets/images/items/desc-steelpipe-c_256.png b/www/assets/images/items/desc-steelpipe-c_256.png new file mode 100644 index 00000000..dffc724e Binary files /dev/null and b/www/assets/images/items/desc-steelpipe-c_256.png differ diff --git a/www/assets/images/items/desc-steelpipe-c_64.png b/www/assets/images/items/desc-steelpipe-c_64.png new file mode 100644 index 00000000..f7fd5fc2 Binary files /dev/null and b/www/assets/images/items/desc-steelpipe-c_64.png differ diff --git a/www/assets/images/items/desc-steelplate-c_256.png b/www/assets/images/items/desc-steelplate-c_256.png new file mode 100644 index 00000000..18d798cb Binary files /dev/null and b/www/assets/images/items/desc-steelplate-c_256.png differ diff --git a/www/assets/images/items/desc-steelplate-c_64.png b/www/assets/images/items/desc-steelplate-c_64.png new file mode 100644 index 00000000..718bda2d Binary files /dev/null and b/www/assets/images/items/desc-steelplate-c_64.png differ diff --git a/www/assets/images/items/desc-steelplatereinforced-c_256.png b/www/assets/images/items/desc-steelplatereinforced-c_256.png new file mode 100644 index 00000000..3988e83f Binary files /dev/null and b/www/assets/images/items/desc-steelplatereinforced-c_256.png differ diff --git a/www/assets/images/items/desc-steelplatereinforced-c_64.png b/www/assets/images/items/desc-steelplatereinforced-c_64.png new file mode 100644 index 00000000..fd7cf390 Binary files /dev/null and b/www/assets/images/items/desc-steelplatereinforced-c_64.png differ diff --git a/www/assets/images/items/desc-steelwall-8x1-c_256.png b/www/assets/images/items/desc-steelwall-8x1-c_256.png new file mode 100644 index 00000000..65a96769 Binary files /dev/null and b/www/assets/images/items/desc-steelwall-8x1-c_256.png differ diff --git a/www/assets/images/items/desc-steelwall-8x1-c_64.png b/www/assets/images/items/desc-steelwall-8x1-c_64.png new file mode 100644 index 00000000..8f05ddb9 Binary files /dev/null and b/www/assets/images/items/desc-steelwall-8x1-c_64.png differ diff --git a/www/assets/images/items/desc-steelwall-8x4-gate-01-c_256.png b/www/assets/images/items/desc-steelwall-8x4-gate-01-c_256.png new file mode 100644 index 00000000..5ddbeee0 Binary files /dev/null and b/www/assets/images/items/desc-steelwall-8x4-gate-01-c_256.png differ diff --git a/www/assets/images/items/desc-steelwall-8x4-gate-01-c_64.png b/www/assets/images/items/desc-steelwall-8x4-gate-01-c_64.png new file mode 100644 index 00000000..1a94c6ed Binary files /dev/null and b/www/assets/images/items/desc-steelwall-8x4-gate-01-c_64.png differ diff --git a/www/assets/images/items/desc-steelwall-8x4-window-01-c_256.png b/www/assets/images/items/desc-steelwall-8x4-window-01-c_256.png new file mode 100644 index 00000000..3c7487de Binary files /dev/null and b/www/assets/images/items/desc-steelwall-8x4-window-01-c_256.png differ diff --git a/www/assets/images/items/desc-steelwall-8x4-window-01-c_64.png b/www/assets/images/items/desc-steelwall-8x4-window-01-c_64.png new file mode 100644 index 00000000..b151aca4 Binary files /dev/null and b/www/assets/images/items/desc-steelwall-8x4-window-01-c_64.png differ diff --git a/www/assets/images/items/desc-steelwall-8x4-window-02-c_256.png b/www/assets/images/items/desc-steelwall-8x4-window-02-c_256.png new file mode 100644 index 00000000..2b86c59a Binary files /dev/null and b/www/assets/images/items/desc-steelwall-8x4-window-02-c_256.png differ diff --git a/www/assets/images/items/desc-steelwall-8x4-window-02-c_64.png b/www/assets/images/items/desc-steelwall-8x4-window-02-c_64.png new file mode 100644 index 00000000..334588d7 Binary files /dev/null and b/www/assets/images/items/desc-steelwall-8x4-window-02-c_64.png differ diff --git a/www/assets/images/items/desc-steelwall-8x4-window-03-c_256.png b/www/assets/images/items/desc-steelwall-8x4-window-03-c_256.png new file mode 100644 index 00000000..3542d910 Binary files /dev/null and b/www/assets/images/items/desc-steelwall-8x4-window-03-c_256.png differ diff --git a/www/assets/images/items/desc-steelwall-8x4-window-03-c_64.png b/www/assets/images/items/desc-steelwall-8x4-window-03-c_64.png new file mode 100644 index 00000000..4411101a Binary files /dev/null and b/www/assets/images/items/desc-steelwall-8x4-window-03-c_64.png differ diff --git a/www/assets/images/items/desc-steelwall-8x4-window-04-c_256.png b/www/assets/images/items/desc-steelwall-8x4-window-04-c_256.png new file mode 100644 index 00000000..2031cbbc Binary files /dev/null and b/www/assets/images/items/desc-steelwall-8x4-window-04-c_256.png differ diff --git a/www/assets/images/items/desc-steelwall-8x4-window-04-c_64.png b/www/assets/images/items/desc-steelwall-8x4-window-04-c_64.png new file mode 100644 index 00000000..a0310a61 Binary files /dev/null and b/www/assets/images/items/desc-steelwall-8x4-window-04-c_64.png differ diff --git a/www/assets/images/items/desc-steelwall-fliptris-8x1-c_256.png b/www/assets/images/items/desc-steelwall-fliptris-8x1-c_256.png new file mode 100644 index 00000000..1d5c5cc9 Binary files /dev/null and b/www/assets/images/items/desc-steelwall-fliptris-8x1-c_256.png differ diff --git a/www/assets/images/items/desc-steelwall-fliptris-8x1-c_64.png b/www/assets/images/items/desc-steelwall-fliptris-8x1-c_64.png new file mode 100644 index 00000000..3a9fee59 Binary files /dev/null and b/www/assets/images/items/desc-steelwall-fliptris-8x1-c_64.png differ diff --git a/www/assets/images/items/desc-steelwall-fliptris-8x2-c_256.png b/www/assets/images/items/desc-steelwall-fliptris-8x2-c_256.png new file mode 100644 index 00000000..bf0ddae9 Binary files /dev/null and b/www/assets/images/items/desc-steelwall-fliptris-8x2-c_256.png differ diff --git a/www/assets/images/items/desc-steelwall-fliptris-8x2-c_64.png b/www/assets/images/items/desc-steelwall-fliptris-8x2-c_64.png new file mode 100644 index 00000000..8e534d32 Binary files /dev/null and b/www/assets/images/items/desc-steelwall-fliptris-8x2-c_64.png differ diff --git a/www/assets/images/items/desc-steelwall-fliptris-8x4-c_256.png b/www/assets/images/items/desc-steelwall-fliptris-8x4-c_256.png new file mode 100644 index 00000000..11d68a9b Binary files /dev/null and b/www/assets/images/items/desc-steelwall-fliptris-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-steelwall-fliptris-8x4-c_64.png b/www/assets/images/items/desc-steelwall-fliptris-8x4-c_64.png new file mode 100644 index 00000000..6751d755 Binary files /dev/null and b/www/assets/images/items/desc-steelwall-fliptris-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-steelwall-fliptris-8x8-c_256.png b/www/assets/images/items/desc-steelwall-fliptris-8x8-c_256.png new file mode 100644 index 00000000..0c760121 Binary files /dev/null and b/www/assets/images/items/desc-steelwall-fliptris-8x8-c_256.png differ diff --git a/www/assets/images/items/desc-steelwall-fliptris-8x8-c_64.png b/www/assets/images/items/desc-steelwall-fliptris-8x8-c_64.png new file mode 100644 index 00000000..a16655f2 Binary files /dev/null and b/www/assets/images/items/desc-steelwall-fliptris-8x8-c_64.png differ diff --git a/www/assets/images/items/desc-steelwall-tris-8x1-c_256.png b/www/assets/images/items/desc-steelwall-tris-8x1-c_256.png new file mode 100644 index 00000000..683b8c06 Binary files /dev/null and b/www/assets/images/items/desc-steelwall-tris-8x1-c_256.png differ diff --git a/www/assets/images/items/desc-steelwall-tris-8x1-c_64.png b/www/assets/images/items/desc-steelwall-tris-8x1-c_64.png new file mode 100644 index 00000000..2203360c Binary files /dev/null and b/www/assets/images/items/desc-steelwall-tris-8x1-c_64.png differ diff --git a/www/assets/images/items/desc-steelwall-tris-8x2-c_256.png b/www/assets/images/items/desc-steelwall-tris-8x2-c_256.png new file mode 100644 index 00000000..46be99d2 Binary files /dev/null and b/www/assets/images/items/desc-steelwall-tris-8x2-c_256.png differ diff --git a/www/assets/images/items/desc-steelwall-tris-8x2-c_64.png b/www/assets/images/items/desc-steelwall-tris-8x2-c_64.png new file mode 100644 index 00000000..f36e067e Binary files /dev/null and b/www/assets/images/items/desc-steelwall-tris-8x2-c_64.png differ diff --git a/www/assets/images/items/desc-steelwall-tris-8x4-c_256.png b/www/assets/images/items/desc-steelwall-tris-8x4-c_256.png new file mode 100644 index 00000000..56729f3b Binary files /dev/null and b/www/assets/images/items/desc-steelwall-tris-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-steelwall-tris-8x4-c_64.png b/www/assets/images/items/desc-steelwall-tris-8x4-c_64.png new file mode 100644 index 00000000..ce2d390b Binary files /dev/null and b/www/assets/images/items/desc-steelwall-tris-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-steelwall-tris-8x8-c_256.png b/www/assets/images/items/desc-steelwall-tris-8x8-c_256.png new file mode 100644 index 00000000..0455b418 Binary files /dev/null and b/www/assets/images/items/desc-steelwall-tris-8x8-c_256.png differ diff --git a/www/assets/images/items/desc-steelwall-tris-8x8-c_64.png b/www/assets/images/items/desc-steelwall-tris-8x8-c_64.png new file mode 100644 index 00000000..93e3b2b2 Binary files /dev/null and b/www/assets/images/items/desc-steelwall-tris-8x8-c_64.png differ diff --git a/www/assets/images/items/desc-stingerparts-c_256.png b/www/assets/images/items/desc-stingerparts-c_256.png new file mode 100644 index 00000000..65faa790 Binary files /dev/null and b/www/assets/images/items/desc-stingerparts-c_256.png differ diff --git a/www/assets/images/items/desc-stingerparts-c_64.png b/www/assets/images/items/desc-stingerparts-c_64.png new file mode 100644 index 00000000..ca2d2e64 Binary files /dev/null and b/www/assets/images/items/desc-stingerparts-c_64.png differ diff --git a/www/assets/images/items/desc-stone-c_256.png b/www/assets/images/items/desc-stone-c_256.png new file mode 100644 index 00000000..b5b1dff9 Binary files /dev/null and b/www/assets/images/items/desc-stone-c_256.png differ diff --git a/www/assets/images/items/desc-stone-c_64.png b/www/assets/images/items/desc-stone-c_64.png new file mode 100644 index 00000000..ea354d93 Binary files /dev/null and b/www/assets/images/items/desc-stone-c_64.png differ diff --git a/www/assets/images/items/desc-storagecontainermk1-c_256.png b/www/assets/images/items/desc-storagecontainermk1-c_256.png new file mode 100644 index 00000000..afae2f5f Binary files /dev/null and b/www/assets/images/items/desc-storagecontainermk1-c_256.png differ diff --git a/www/assets/images/items/desc-storagecontainermk1-c_64.png b/www/assets/images/items/desc-storagecontainermk1-c_64.png new file mode 100644 index 00000000..ac770867 Binary files /dev/null and b/www/assets/images/items/desc-storagecontainermk1-c_64.png differ diff --git a/www/assets/images/items/desc-storagecontainermk2-c_256.png b/www/assets/images/items/desc-storagecontainermk2-c_256.png new file mode 100644 index 00000000..ad6f2f93 Binary files /dev/null and b/www/assets/images/items/desc-storagecontainermk2-c_256.png differ diff --git a/www/assets/images/items/desc-storagecontainermk2-c_64.png b/www/assets/images/items/desc-storagecontainermk2-c_64.png new file mode 100644 index 00000000..959c9ffc Binary files /dev/null and b/www/assets/images/items/desc-storagecontainermk2-c_64.png differ diff --git a/www/assets/images/items/desc-storagehazard-c_256.png b/www/assets/images/items/desc-storagehazard-c_256.png new file mode 100644 index 00000000..60cdcc6f Binary files /dev/null and b/www/assets/images/items/desc-storagehazard-c_256.png differ diff --git a/www/assets/images/items/desc-storagehazard-c_64.png b/www/assets/images/items/desc-storagehazard-c_64.png new file mode 100644 index 00000000..cb676dfd Binary files /dev/null and b/www/assets/images/items/desc-storagehazard-c_64.png differ diff --git a/www/assets/images/items/desc-storagemedkit-c_256.png b/www/assets/images/items/desc-storagemedkit-c_256.png new file mode 100644 index 00000000..f72d3c48 Binary files /dev/null and b/www/assets/images/items/desc-storagemedkit-c_256.png differ diff --git a/www/assets/images/items/desc-storagemedkit-c_64.png b/www/assets/images/items/desc-storagemedkit-c_64.png new file mode 100644 index 00000000..ff8ca865 Binary files /dev/null and b/www/assets/images/items/desc-storagemedkit-c_64.png differ diff --git a/www/assets/images/items/desc-storageplayer-c_256.png b/www/assets/images/items/desc-storageplayer-c_256.png new file mode 100644 index 00000000..589970fd Binary files /dev/null and b/www/assets/images/items/desc-storageplayer-c_256.png differ diff --git a/www/assets/images/items/desc-storageplayer-c_64.png b/www/assets/images/items/desc-storageplayer-c_64.png new file mode 100644 index 00000000..77bc59be Binary files /dev/null and b/www/assets/images/items/desc-storageplayer-c_64.png differ diff --git a/www/assets/images/items/desc-streetlight-c_256.png b/www/assets/images/items/desc-streetlight-c_256.png new file mode 100644 index 00000000..540da5a7 Binary files /dev/null and b/www/assets/images/items/desc-streetlight-c_256.png differ diff --git a/www/assets/images/items/desc-streetlight-c_64.png b/www/assets/images/items/desc-streetlight-c_64.png new file mode 100644 index 00000000..7d0c1ce3 Binary files /dev/null and b/www/assets/images/items/desc-streetlight-c_64.png differ diff --git a/www/assets/images/items/desc-sulfur-c_256.png b/www/assets/images/items/desc-sulfur-c_256.png new file mode 100644 index 00000000..2891170d Binary files /dev/null and b/www/assets/images/items/desc-sulfur-c_256.png differ diff --git a/www/assets/images/items/desc-sulfur-c_64.png b/www/assets/images/items/desc-sulfur-c_64.png new file mode 100644 index 00000000..8e38cd2b Binary files /dev/null and b/www/assets/images/items/desc-sulfur-c_64.png differ diff --git a/www/assets/images/items/desc-sulfuricacid-c_256.png b/www/assets/images/items/desc-sulfuricacid-c_256.png new file mode 100644 index 00000000..4bd89e55 Binary files /dev/null and b/www/assets/images/items/desc-sulfuricacid-c_256.png differ diff --git a/www/assets/images/items/desc-sulfuricacid-c_64.png b/www/assets/images/items/desc-sulfuricacid-c_64.png new file mode 100644 index 00000000..2946b2d4 Binary files /dev/null and b/www/assets/images/items/desc-sulfuricacid-c_64.png differ diff --git a/www/assets/images/items/desc-tarpfence-c_256.png b/www/assets/images/items/desc-tarpfence-c_256.png new file mode 100644 index 00000000..e82b2a07 Binary files /dev/null and b/www/assets/images/items/desc-tarpfence-c_256.png differ diff --git a/www/assets/images/items/desc-tarpfence-c_64.png b/www/assets/images/items/desc-tarpfence-c_64.png new file mode 100644 index 00000000..c5af4e2f Binary files /dev/null and b/www/assets/images/items/desc-tarpfence-c_64.png differ diff --git a/www/assets/images/items/desc-temporalprocessor-c_256.png b/www/assets/images/items/desc-temporalprocessor-c_256.png new file mode 100644 index 00000000..6dec02dc Binary files /dev/null and b/www/assets/images/items/desc-temporalprocessor-c_256.png differ diff --git a/www/assets/images/items/desc-temporalprocessor-c_64.png b/www/assets/images/items/desc-temporalprocessor-c_64.png new file mode 100644 index 00000000..0627c8cf Binary files /dev/null and b/www/assets/images/items/desc-temporalprocessor-c_64.png differ diff --git a/www/assets/images/items/desc-timecrystal-c_256.png b/www/assets/images/items/desc-timecrystal-c_256.png new file mode 100644 index 00000000..d3778332 Binary files /dev/null and b/www/assets/images/items/desc-timecrystal-c_256.png differ diff --git a/www/assets/images/items/desc-timecrystal-c_64.png b/www/assets/images/items/desc-timecrystal-c_64.png new file mode 100644 index 00000000..21669172 Binary files /dev/null and b/www/assets/images/items/desc-timecrystal-c_64.png differ diff --git a/www/assets/images/items/desc-tractor-c_256.png b/www/assets/images/items/desc-tractor-c_256.png new file mode 100644 index 00000000..137b6ca1 Binary files /dev/null and b/www/assets/images/items/desc-tractor-c_256.png differ diff --git a/www/assets/images/items/desc-tractor-c_64.png b/www/assets/images/items/desc-tractor-c_64.png new file mode 100644 index 00000000..e4846062 Binary files /dev/null and b/www/assets/images/items/desc-tractor-c_64.png differ diff --git a/www/assets/images/items/desc-tradingpost-c_256.png b/www/assets/images/items/desc-tradingpost-c_256.png new file mode 100644 index 00000000..b3c7f053 Binary files /dev/null and b/www/assets/images/items/desc-tradingpost-c_256.png differ diff --git a/www/assets/images/items/desc-tradingpost-c_64.png b/www/assets/images/items/desc-tradingpost-c_64.png new file mode 100644 index 00000000..80751f6c Binary files /dev/null and b/www/assets/images/items/desc-tradingpost-c_64.png differ diff --git a/www/assets/images/items/desc-traindockingstation-c_256.png b/www/assets/images/items/desc-traindockingstation-c_256.png new file mode 100644 index 00000000..366d894b Binary files /dev/null and b/www/assets/images/items/desc-traindockingstation-c_256.png differ diff --git a/www/assets/images/items/desc-traindockingstation-c_64.png b/www/assets/images/items/desc-traindockingstation-c_64.png new file mode 100644 index 00000000..6649d24d Binary files /dev/null and b/www/assets/images/items/desc-traindockingstation-c_64.png differ diff --git a/www/assets/images/items/desc-traindockingstationliquid-c_256.png b/www/assets/images/items/desc-traindockingstationliquid-c_256.png new file mode 100644 index 00000000..5c565900 Binary files /dev/null and b/www/assets/images/items/desc-traindockingstationliquid-c_256.png differ diff --git a/www/assets/images/items/desc-traindockingstationliquid-c_64.png b/www/assets/images/items/desc-traindockingstationliquid-c_64.png new file mode 100644 index 00000000..a4134f4a Binary files /dev/null and b/www/assets/images/items/desc-traindockingstationliquid-c_64.png differ diff --git a/www/assets/images/items/desc-trainplatformempty-02-c_256.png b/www/assets/images/items/desc-trainplatformempty-02-c_256.png new file mode 100644 index 00000000..eba5631c Binary files /dev/null and b/www/assets/images/items/desc-trainplatformempty-02-c_256.png differ diff --git a/www/assets/images/items/desc-trainplatformempty-02-c_64.png b/www/assets/images/items/desc-trainplatformempty-02-c_64.png new file mode 100644 index 00000000..32a38cc1 Binary files /dev/null and b/www/assets/images/items/desc-trainplatformempty-02-c_64.png differ diff --git a/www/assets/images/items/desc-trainplatformempty-c_256.png b/www/assets/images/items/desc-trainplatformempty-c_256.png new file mode 100644 index 00000000..c49cd1ea Binary files /dev/null and b/www/assets/images/items/desc-trainplatformempty-c_256.png differ diff --git a/www/assets/images/items/desc-trainplatformempty-c_64.png b/www/assets/images/items/desc-trainplatformempty-c_64.png new file mode 100644 index 00000000..bf70283e Binary files /dev/null and b/www/assets/images/items/desc-trainplatformempty-c_64.png differ diff --git a/www/assets/images/items/desc-trainstation-c_256.png b/www/assets/images/items/desc-trainstation-c_256.png new file mode 100644 index 00000000..33620b45 Binary files /dev/null and b/www/assets/images/items/desc-trainstation-c_256.png differ diff --git a/www/assets/images/items/desc-trainstation-c_64.png b/www/assets/images/items/desc-trainstation-c_64.png new file mode 100644 index 00000000..7febcf34 Binary files /dev/null and b/www/assets/images/items/desc-trainstation-c_64.png differ diff --git a/www/assets/images/items/desc-treegiftproducer-c_256.png b/www/assets/images/items/desc-treegiftproducer-c_256.png new file mode 100644 index 00000000..d8149113 Binary files /dev/null and b/www/assets/images/items/desc-treegiftproducer-c_256.png differ diff --git a/www/assets/images/items/desc-treegiftproducer-c_64.png b/www/assets/images/items/desc-treegiftproducer-c_64.png new file mode 100644 index 00000000..29a8ee02 Binary files /dev/null and b/www/assets/images/items/desc-treegiftproducer-c_64.png differ diff --git a/www/assets/images/items/desc-truck-c_256.png b/www/assets/images/items/desc-truck-c_256.png new file mode 100644 index 00000000..6b0cfd21 Binary files /dev/null and b/www/assets/images/items/desc-truck-c_256.png differ diff --git a/www/assets/images/items/desc-truck-c_64.png b/www/assets/images/items/desc-truck-c_64.png new file mode 100644 index 00000000..431c46bb Binary files /dev/null and b/www/assets/images/items/desc-truck-c_64.png differ diff --git a/www/assets/images/items/desc-truckstation-c_256.png b/www/assets/images/items/desc-truckstation-c_256.png new file mode 100644 index 00000000..fcc56f18 Binary files /dev/null and b/www/assets/images/items/desc-truckstation-c_256.png differ diff --git a/www/assets/images/items/desc-truckstation-c_64.png b/www/assets/images/items/desc-truckstation-c_64.png new file mode 100644 index 00000000..319b10d5 Binary files /dev/null and b/www/assets/images/items/desc-truckstation-c_64.png differ diff --git a/www/assets/images/items/desc-turbofuel-c_256.png b/www/assets/images/items/desc-turbofuel-c_256.png new file mode 100644 index 00000000..67fae5b2 Binary files /dev/null and b/www/assets/images/items/desc-turbofuel-c_256.png differ diff --git a/www/assets/images/items/desc-turbofuel-c_64.png b/www/assets/images/items/desc-turbofuel-c_64.png new file mode 100644 index 00000000..18d8e35c Binary files /dev/null and b/www/assets/images/items/desc-turbofuel-c_64.png differ diff --git a/www/assets/images/items/desc-uraniumcell-c_256.png b/www/assets/images/items/desc-uraniumcell-c_256.png new file mode 100644 index 00000000..f0a151b4 Binary files /dev/null and b/www/assets/images/items/desc-uraniumcell-c_256.png differ diff --git a/www/assets/images/items/desc-uraniumcell-c_64.png b/www/assets/images/items/desc-uraniumcell-c_64.png new file mode 100644 index 00000000..fef9d558 Binary files /dev/null and b/www/assets/images/items/desc-uraniumcell-c_64.png differ diff --git a/www/assets/images/items/desc-valve-c_256.png b/www/assets/images/items/desc-valve-c_256.png new file mode 100644 index 00000000..75ffa96b Binary files /dev/null and b/www/assets/images/items/desc-valve-c_256.png differ diff --git a/www/assets/images/items/desc-valve-c_64.png b/www/assets/images/items/desc-valve-c_64.png new file mode 100644 index 00000000..8d133117 Binary files /dev/null and b/www/assets/images/items/desc-valve-c_64.png differ diff --git a/www/assets/images/items/desc-wall-8x4-01-c_256.png b/www/assets/images/items/desc-wall-8x4-01-c_256.png new file mode 100644 index 00000000..aa473be9 Binary files /dev/null and b/www/assets/images/items/desc-wall-8x4-01-c_256.png differ diff --git a/www/assets/images/items/desc-wall-8x4-01-c_64.png b/www/assets/images/items/desc-wall-8x4-01-c_64.png new file mode 100644 index 00000000..cad514fa Binary files /dev/null and b/www/assets/images/items/desc-wall-8x4-01-c_64.png differ diff --git a/www/assets/images/items/desc-wall-8x4-02-c_256.png b/www/assets/images/items/desc-wall-8x4-02-c_256.png new file mode 100644 index 00000000..65ebc203 Binary files /dev/null and b/www/assets/images/items/desc-wall-8x4-02-c_256.png differ diff --git a/www/assets/images/items/desc-wall-8x4-02-c_64.png b/www/assets/images/items/desc-wall-8x4-02-c_64.png new file mode 100644 index 00000000..53d22310 Binary files /dev/null and b/www/assets/images/items/desc-wall-8x4-02-c_64.png differ diff --git a/www/assets/images/items/desc-wall-concrete-8x1-c_256.png b/www/assets/images/items/desc-wall-concrete-8x1-c_256.png new file mode 100644 index 00000000..04455586 Binary files /dev/null and b/www/assets/images/items/desc-wall-concrete-8x1-c_256.png differ diff --git a/www/assets/images/items/desc-wall-concrete-8x1-c_64.png b/www/assets/images/items/desc-wall-concrete-8x1-c_64.png new file mode 100644 index 00000000..b512c673 Binary files /dev/null and b/www/assets/images/items/desc-wall-concrete-8x1-c_64.png differ diff --git a/www/assets/images/items/desc-wall-concrete-8x1-fliptris-c_256.png b/www/assets/images/items/desc-wall-concrete-8x1-fliptris-c_256.png new file mode 100644 index 00000000..418e5f0e Binary files /dev/null and b/www/assets/images/items/desc-wall-concrete-8x1-fliptris-c_256.png differ diff --git a/www/assets/images/items/desc-wall-concrete-8x1-fliptris-c_64.png b/www/assets/images/items/desc-wall-concrete-8x1-fliptris-c_64.png new file mode 100644 index 00000000..e4eb916b Binary files /dev/null and b/www/assets/images/items/desc-wall-concrete-8x1-fliptris-c_64.png differ diff --git a/www/assets/images/items/desc-wall-concrete-8x1-tris-c_256.png b/www/assets/images/items/desc-wall-concrete-8x1-tris-c_256.png new file mode 100644 index 00000000..3002dfc3 Binary files /dev/null and b/www/assets/images/items/desc-wall-concrete-8x1-tris-c_256.png differ diff --git a/www/assets/images/items/desc-wall-concrete-8x1-tris-c_64.png b/www/assets/images/items/desc-wall-concrete-8x1-tris-c_64.png new file mode 100644 index 00000000..aa07720a Binary files /dev/null and b/www/assets/images/items/desc-wall-concrete-8x1-tris-c_64.png differ diff --git a/www/assets/images/items/desc-wall-concrete-8x2-fliptris-c_256.png b/www/assets/images/items/desc-wall-concrete-8x2-fliptris-c_256.png new file mode 100644 index 00000000..6a5e8b76 Binary files /dev/null and b/www/assets/images/items/desc-wall-concrete-8x2-fliptris-c_256.png differ diff --git a/www/assets/images/items/desc-wall-concrete-8x2-fliptris-c_64.png b/www/assets/images/items/desc-wall-concrete-8x2-fliptris-c_64.png new file mode 100644 index 00000000..334bb76e Binary files /dev/null and b/www/assets/images/items/desc-wall-concrete-8x2-fliptris-c_64.png differ diff --git a/www/assets/images/items/desc-wall-concrete-8x2-tris-c_256.png b/www/assets/images/items/desc-wall-concrete-8x2-tris-c_256.png new file mode 100644 index 00000000..92d5eef2 Binary files /dev/null and b/www/assets/images/items/desc-wall-concrete-8x2-tris-c_256.png differ diff --git a/www/assets/images/items/desc-wall-concrete-8x2-tris-c_64.png b/www/assets/images/items/desc-wall-concrete-8x2-tris-c_64.png new file mode 100644 index 00000000..341d2db7 Binary files /dev/null and b/www/assets/images/items/desc-wall-concrete-8x2-tris-c_64.png differ diff --git a/www/assets/images/items/desc-wall-concrete-8x4-c_256.png b/www/assets/images/items/desc-wall-concrete-8x4-c_256.png new file mode 100644 index 00000000..0fe60789 Binary files /dev/null and b/www/assets/images/items/desc-wall-concrete-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-wall-concrete-8x4-c_64.png b/www/assets/images/items/desc-wall-concrete-8x4-c_64.png new file mode 100644 index 00000000..b49ff9d4 Binary files /dev/null and b/www/assets/images/items/desc-wall-concrete-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-wall-concrete-8x4-conveyorhole-01-c_256.png b/www/assets/images/items/desc-wall-concrete-8x4-conveyorhole-01-c_256.png new file mode 100644 index 00000000..2a92d0f4 Binary files /dev/null and b/www/assets/images/items/desc-wall-concrete-8x4-conveyorhole-01-c_256.png differ diff --git a/www/assets/images/items/desc-wall-concrete-8x4-conveyorhole-01-c_64.png b/www/assets/images/items/desc-wall-concrete-8x4-conveyorhole-01-c_64.png new file mode 100644 index 00000000..3f10832a Binary files /dev/null and b/www/assets/images/items/desc-wall-concrete-8x4-conveyorhole-01-c_64.png differ diff --git a/www/assets/images/items/desc-wall-concrete-8x4-conveyorhole-02-c_256.png b/www/assets/images/items/desc-wall-concrete-8x4-conveyorhole-02-c_256.png new file mode 100644 index 00000000..9de6749a Binary files /dev/null and b/www/assets/images/items/desc-wall-concrete-8x4-conveyorhole-02-c_256.png differ diff --git a/www/assets/images/items/desc-wall-concrete-8x4-conveyorhole-02-c_64.png b/www/assets/images/items/desc-wall-concrete-8x4-conveyorhole-02-c_64.png new file mode 100644 index 00000000..555ee675 Binary files /dev/null and b/www/assets/images/items/desc-wall-concrete-8x4-conveyorhole-02-c_64.png differ diff --git a/www/assets/images/items/desc-wall-concrete-8x4-conveyorhole-03-c_256.png b/www/assets/images/items/desc-wall-concrete-8x4-conveyorhole-03-c_256.png new file mode 100644 index 00000000..c86a28e5 Binary files /dev/null and b/www/assets/images/items/desc-wall-concrete-8x4-conveyorhole-03-c_256.png differ diff --git a/www/assets/images/items/desc-wall-concrete-8x4-conveyorhole-03-c_64.png b/www/assets/images/items/desc-wall-concrete-8x4-conveyorhole-03-c_64.png new file mode 100644 index 00000000..a0ad290d Binary files /dev/null and b/www/assets/images/items/desc-wall-concrete-8x4-conveyorhole-03-c_64.png differ diff --git a/www/assets/images/items/desc-wall-concrete-8x4-corner-01-c_256.png b/www/assets/images/items/desc-wall-concrete-8x4-corner-01-c_256.png new file mode 100644 index 00000000..20f4bb80 Binary files /dev/null and b/www/assets/images/items/desc-wall-concrete-8x4-corner-01-c_256.png differ diff --git a/www/assets/images/items/desc-wall-concrete-8x4-corner-01-c_64.png b/www/assets/images/items/desc-wall-concrete-8x4-corner-01-c_64.png new file mode 100644 index 00000000..6c20e0e5 Binary files /dev/null and b/www/assets/images/items/desc-wall-concrete-8x4-corner-01-c_64.png differ diff --git a/www/assets/images/items/desc-wall-concrete-8x4-corner-2-c_256.png b/www/assets/images/items/desc-wall-concrete-8x4-corner-2-c_256.png new file mode 100644 index 00000000..ec946148 Binary files /dev/null and b/www/assets/images/items/desc-wall-concrete-8x4-corner-2-c_256.png differ diff --git a/www/assets/images/items/desc-wall-concrete-8x4-corner-2-c_64.png b/www/assets/images/items/desc-wall-concrete-8x4-corner-2-c_64.png new file mode 100644 index 00000000..3570e9c9 Binary files /dev/null and b/www/assets/images/items/desc-wall-concrete-8x4-corner-2-c_64.png differ diff --git a/www/assets/images/items/desc-wall-concrete-8x4-fliptris-c_256.png b/www/assets/images/items/desc-wall-concrete-8x4-fliptris-c_256.png new file mode 100644 index 00000000..d1ea6bd6 Binary files /dev/null and b/www/assets/images/items/desc-wall-concrete-8x4-fliptris-c_256.png differ diff --git a/www/assets/images/items/desc-wall-concrete-8x4-fliptris-c_64.png b/www/assets/images/items/desc-wall-concrete-8x4-fliptris-c_64.png new file mode 100644 index 00000000..75f2ee30 Binary files /dev/null and b/www/assets/images/items/desc-wall-concrete-8x4-fliptris-c_64.png differ diff --git a/www/assets/images/items/desc-wall-concrete-8x4-tris-c_256.png b/www/assets/images/items/desc-wall-concrete-8x4-tris-c_256.png new file mode 100644 index 00000000..3db3ea2f Binary files /dev/null and b/www/assets/images/items/desc-wall-concrete-8x4-tris-c_256.png differ diff --git a/www/assets/images/items/desc-wall-concrete-8x4-tris-c_64.png b/www/assets/images/items/desc-wall-concrete-8x4-tris-c_64.png new file mode 100644 index 00000000..04c1ca61 Binary files /dev/null and b/www/assets/images/items/desc-wall-concrete-8x4-tris-c_64.png differ diff --git a/www/assets/images/items/desc-wall-concrete-8x4-window-01-c_256.png b/www/assets/images/items/desc-wall-concrete-8x4-window-01-c_256.png new file mode 100644 index 00000000..7f5c42d7 Binary files /dev/null and b/www/assets/images/items/desc-wall-concrete-8x4-window-01-c_256.png differ diff --git a/www/assets/images/items/desc-wall-concrete-8x4-window-01-c_64.png b/www/assets/images/items/desc-wall-concrete-8x4-window-01-c_64.png new file mode 100644 index 00000000..91ac0469 Binary files /dev/null and b/www/assets/images/items/desc-wall-concrete-8x4-window-01-c_64.png differ diff --git a/www/assets/images/items/desc-wall-concrete-8x4-window-02-c_256.png b/www/assets/images/items/desc-wall-concrete-8x4-window-02-c_256.png new file mode 100644 index 00000000..ceb54356 Binary files /dev/null and b/www/assets/images/items/desc-wall-concrete-8x4-window-02-c_256.png differ diff --git a/www/assets/images/items/desc-wall-concrete-8x4-window-02-c_64.png b/www/assets/images/items/desc-wall-concrete-8x4-window-02-c_64.png new file mode 100644 index 00000000..128f1636 Binary files /dev/null and b/www/assets/images/items/desc-wall-concrete-8x4-window-02-c_64.png differ diff --git a/www/assets/images/items/desc-wall-concrete-8x4-window-03-c_256.png b/www/assets/images/items/desc-wall-concrete-8x4-window-03-c_256.png new file mode 100644 index 00000000..14e5ef2d Binary files /dev/null and b/www/assets/images/items/desc-wall-concrete-8x4-window-03-c_256.png differ diff --git a/www/assets/images/items/desc-wall-concrete-8x4-window-03-c_64.png b/www/assets/images/items/desc-wall-concrete-8x4-window-03-c_64.png new file mode 100644 index 00000000..a464feee Binary files /dev/null and b/www/assets/images/items/desc-wall-concrete-8x4-window-03-c_64.png differ diff --git a/www/assets/images/items/desc-wall-concrete-8x4-window-04-c_256.png b/www/assets/images/items/desc-wall-concrete-8x4-window-04-c_256.png new file mode 100644 index 00000000..73c5e298 Binary files /dev/null and b/www/assets/images/items/desc-wall-concrete-8x4-window-04-c_256.png differ diff --git a/www/assets/images/items/desc-wall-concrete-8x4-window-04-c_64.png b/www/assets/images/items/desc-wall-concrete-8x4-window-04-c_64.png new file mode 100644 index 00000000..e6ecb344 Binary files /dev/null and b/www/assets/images/items/desc-wall-concrete-8x4-window-04-c_64.png differ diff --git a/www/assets/images/items/desc-wall-concrete-8x8-corner-01-c_256.png b/www/assets/images/items/desc-wall-concrete-8x8-corner-01-c_256.png new file mode 100644 index 00000000..ae78fb3f Binary files /dev/null and b/www/assets/images/items/desc-wall-concrete-8x8-corner-01-c_256.png differ diff --git a/www/assets/images/items/desc-wall-concrete-8x8-corner-01-c_64.png b/www/assets/images/items/desc-wall-concrete-8x8-corner-01-c_64.png new file mode 100644 index 00000000..77cc89c6 Binary files /dev/null and b/www/assets/images/items/desc-wall-concrete-8x8-corner-01-c_64.png differ diff --git a/www/assets/images/items/desc-wall-concrete-8x8-corner-2-c_256.png b/www/assets/images/items/desc-wall-concrete-8x8-corner-2-c_256.png new file mode 100644 index 00000000..72630734 Binary files /dev/null and b/www/assets/images/items/desc-wall-concrete-8x8-corner-2-c_256.png differ diff --git a/www/assets/images/items/desc-wall-concrete-8x8-corner-2-c_64.png b/www/assets/images/items/desc-wall-concrete-8x8-corner-2-c_64.png new file mode 100644 index 00000000..d879809b Binary files /dev/null and b/www/assets/images/items/desc-wall-concrete-8x8-corner-2-c_64.png differ diff --git a/www/assets/images/items/desc-wall-concrete-8x8-fliptris-c_256.png b/www/assets/images/items/desc-wall-concrete-8x8-fliptris-c_256.png new file mode 100644 index 00000000..caba1ec7 Binary files /dev/null and b/www/assets/images/items/desc-wall-concrete-8x8-fliptris-c_256.png differ diff --git a/www/assets/images/items/desc-wall-concrete-8x8-fliptris-c_64.png b/www/assets/images/items/desc-wall-concrete-8x8-fliptris-c_64.png new file mode 100644 index 00000000..cb19a522 Binary files /dev/null and b/www/assets/images/items/desc-wall-concrete-8x8-fliptris-c_64.png differ diff --git a/www/assets/images/items/desc-wall-concrete-8x8-tris-c_256.png b/www/assets/images/items/desc-wall-concrete-8x8-tris-c_256.png new file mode 100644 index 00000000..c52bc1b6 Binary files /dev/null and b/www/assets/images/items/desc-wall-concrete-8x8-tris-c_256.png differ diff --git a/www/assets/images/items/desc-wall-concrete-8x8-tris-c_64.png b/www/assets/images/items/desc-wall-concrete-8x8-tris-c_64.png new file mode 100644 index 00000000..91cba8e7 Binary files /dev/null and b/www/assets/images/items/desc-wall-concrete-8x8-tris-c_64.png differ diff --git a/www/assets/images/items/desc-wall-concrete-angular-8x4-c_256.png b/www/assets/images/items/desc-wall-concrete-angular-8x4-c_256.png new file mode 100644 index 00000000..a7d159fb Binary files /dev/null and b/www/assets/images/items/desc-wall-concrete-angular-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-wall-concrete-angular-8x4-c_64.png b/www/assets/images/items/desc-wall-concrete-angular-8x4-c_64.png new file mode 100644 index 00000000..6e897b4e Binary files /dev/null and b/www/assets/images/items/desc-wall-concrete-angular-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-wall-concrete-angular-8x8-c_256.png b/www/assets/images/items/desc-wall-concrete-angular-8x8-c_256.png new file mode 100644 index 00000000..7094b1ef Binary files /dev/null and b/www/assets/images/items/desc-wall-concrete-angular-8x8-c_256.png differ diff --git a/www/assets/images/items/desc-wall-concrete-angular-8x8-c_64.png b/www/assets/images/items/desc-wall-concrete-angular-8x8-c_64.png new file mode 100644 index 00000000..acbcb616 Binary files /dev/null and b/www/assets/images/items/desc-wall-concrete-angular-8x8-c_64.png differ diff --git a/www/assets/images/items/desc-wall-concrete-cdoor-8x4-c_256.png b/www/assets/images/items/desc-wall-concrete-cdoor-8x4-c_256.png new file mode 100644 index 00000000..9309776b Binary files /dev/null and b/www/assets/images/items/desc-wall-concrete-cdoor-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-wall-concrete-cdoor-8x4-c_64.png b/www/assets/images/items/desc-wall-concrete-cdoor-8x4-c_64.png new file mode 100644 index 00000000..5267f531 Binary files /dev/null and b/www/assets/images/items/desc-wall-concrete-cdoor-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-wall-concrete-gate-8x4-c_256.png b/www/assets/images/items/desc-wall-concrete-gate-8x4-c_256.png new file mode 100644 index 00000000..86e185b9 Binary files /dev/null and b/www/assets/images/items/desc-wall-concrete-gate-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-wall-concrete-gate-8x4-c_64.png b/www/assets/images/items/desc-wall-concrete-gate-8x4-c_64.png new file mode 100644 index 00000000..ee2b124e Binary files /dev/null and b/www/assets/images/items/desc-wall-concrete-gate-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-wall-concrete-sdoor-8x4-c_256.png b/www/assets/images/items/desc-wall-concrete-sdoor-8x4-c_256.png new file mode 100644 index 00000000..c08713b3 Binary files /dev/null and b/www/assets/images/items/desc-wall-concrete-sdoor-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-wall-concrete-sdoor-8x4-c_64.png b/www/assets/images/items/desc-wall-concrete-sdoor-8x4-c_64.png new file mode 100644 index 00000000..c59c1ceb Binary files /dev/null and b/www/assets/images/items/desc-wall-concrete-sdoor-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-wall-conveyor-8x4-01-c_256.png b/www/assets/images/items/desc-wall-conveyor-8x4-01-c_256.png new file mode 100644 index 00000000..cecd7b84 Binary files /dev/null and b/www/assets/images/items/desc-wall-conveyor-8x4-01-c_256.png differ diff --git a/www/assets/images/items/desc-wall-conveyor-8x4-01-c_64.png b/www/assets/images/items/desc-wall-conveyor-8x4-01-c_64.png new file mode 100644 index 00000000..8ce50b01 Binary files /dev/null and b/www/assets/images/items/desc-wall-conveyor-8x4-01-c_64.png differ diff --git a/www/assets/images/items/desc-wall-conveyor-8x4-01-steel-c_256.png b/www/assets/images/items/desc-wall-conveyor-8x4-01-steel-c_256.png new file mode 100644 index 00000000..7d7b8fec Binary files /dev/null and b/www/assets/images/items/desc-wall-conveyor-8x4-01-steel-c_256.png differ diff --git a/www/assets/images/items/desc-wall-conveyor-8x4-01-steel-c_64.png b/www/assets/images/items/desc-wall-conveyor-8x4-01-steel-c_64.png new file mode 100644 index 00000000..d301c207 Binary files /dev/null and b/www/assets/images/items/desc-wall-conveyor-8x4-01-steel-c_64.png differ diff --git a/www/assets/images/items/desc-wall-conveyor-8x4-02-c_256.png b/www/assets/images/items/desc-wall-conveyor-8x4-02-c_256.png new file mode 100644 index 00000000..f16ef193 Binary files /dev/null and b/www/assets/images/items/desc-wall-conveyor-8x4-02-c_256.png differ diff --git a/www/assets/images/items/desc-wall-conveyor-8x4-02-c_64.png b/www/assets/images/items/desc-wall-conveyor-8x4-02-c_64.png new file mode 100644 index 00000000..411c8189 Binary files /dev/null and b/www/assets/images/items/desc-wall-conveyor-8x4-02-c_64.png differ diff --git a/www/assets/images/items/desc-wall-conveyor-8x4-02-steel-c_256.png b/www/assets/images/items/desc-wall-conveyor-8x4-02-steel-c_256.png new file mode 100644 index 00000000..6259d110 Binary files /dev/null and b/www/assets/images/items/desc-wall-conveyor-8x4-02-steel-c_256.png differ diff --git a/www/assets/images/items/desc-wall-conveyor-8x4-02-steel-c_64.png b/www/assets/images/items/desc-wall-conveyor-8x4-02-steel-c_64.png new file mode 100644 index 00000000..f7f6902d Binary files /dev/null and b/www/assets/images/items/desc-wall-conveyor-8x4-02-steel-c_64.png differ diff --git a/www/assets/images/items/desc-wall-conveyor-8x4-03-c_256.png b/www/assets/images/items/desc-wall-conveyor-8x4-03-c_256.png new file mode 100644 index 00000000..0ec677f9 Binary files /dev/null and b/www/assets/images/items/desc-wall-conveyor-8x4-03-c_256.png differ diff --git a/www/assets/images/items/desc-wall-conveyor-8x4-03-c_64.png b/www/assets/images/items/desc-wall-conveyor-8x4-03-c_64.png new file mode 100644 index 00000000..c60c086e Binary files /dev/null and b/www/assets/images/items/desc-wall-conveyor-8x4-03-c_64.png differ diff --git a/www/assets/images/items/desc-wall-conveyor-8x4-03-steel-c_256.png b/www/assets/images/items/desc-wall-conveyor-8x4-03-steel-c_256.png new file mode 100644 index 00000000..24ab61f1 Binary files /dev/null and b/www/assets/images/items/desc-wall-conveyor-8x4-03-steel-c_256.png differ diff --git a/www/assets/images/items/desc-wall-conveyor-8x4-03-steel-c_64.png b/www/assets/images/items/desc-wall-conveyor-8x4-03-steel-c_64.png new file mode 100644 index 00000000..563188ca Binary files /dev/null and b/www/assets/images/items/desc-wall-conveyor-8x4-03-steel-c_64.png differ diff --git a/www/assets/images/items/desc-wall-door-8x4-01-c_256.png b/www/assets/images/items/desc-wall-door-8x4-01-c_256.png new file mode 100644 index 00000000..fc880cc1 Binary files /dev/null and b/www/assets/images/items/desc-wall-door-8x4-01-c_256.png differ diff --git a/www/assets/images/items/desc-wall-door-8x4-01-c_64.png b/www/assets/images/items/desc-wall-door-8x4-01-c_64.png new file mode 100644 index 00000000..f2cd6a24 Binary files /dev/null and b/www/assets/images/items/desc-wall-door-8x4-01-c_64.png differ diff --git a/www/assets/images/items/desc-wall-door-8x4-01-steel-c_256.png b/www/assets/images/items/desc-wall-door-8x4-01-steel-c_256.png new file mode 100644 index 00000000..8e990508 Binary files /dev/null and b/www/assets/images/items/desc-wall-door-8x4-01-steel-c_256.png differ diff --git a/www/assets/images/items/desc-wall-door-8x4-01-steel-c_64.png b/www/assets/images/items/desc-wall-door-8x4-01-steel-c_64.png new file mode 100644 index 00000000..ce350afd Binary files /dev/null and b/www/assets/images/items/desc-wall-door-8x4-01-steel-c_64.png differ diff --git a/www/assets/images/items/desc-wall-door-8x4-03-c_256.png b/www/assets/images/items/desc-wall-door-8x4-03-c_256.png new file mode 100644 index 00000000..d52aca46 Binary files /dev/null and b/www/assets/images/items/desc-wall-door-8x4-03-c_256.png differ diff --git a/www/assets/images/items/desc-wall-door-8x4-03-c_64.png b/www/assets/images/items/desc-wall-door-8x4-03-c_64.png new file mode 100644 index 00000000..38d82032 Binary files /dev/null and b/www/assets/images/items/desc-wall-door-8x4-03-c_64.png differ diff --git a/www/assets/images/items/desc-wall-door-8x4-03-steel-c_256.png b/www/assets/images/items/desc-wall-door-8x4-03-steel-c_256.png new file mode 100644 index 00000000..39c0c41a Binary files /dev/null and b/www/assets/images/items/desc-wall-door-8x4-03-steel-c_256.png differ diff --git a/www/assets/images/items/desc-wall-door-8x4-03-steel-c_64.png b/www/assets/images/items/desc-wall-door-8x4-03-steel-c_64.png new file mode 100644 index 00000000..17a23c21 Binary files /dev/null and b/www/assets/images/items/desc-wall-door-8x4-03-steel-c_64.png differ diff --git a/www/assets/images/items/desc-wall-frame-01-c_256.png b/www/assets/images/items/desc-wall-frame-01-c_256.png new file mode 100644 index 00000000..d669ca4c Binary files /dev/null and b/www/assets/images/items/desc-wall-frame-01-c_256.png differ diff --git a/www/assets/images/items/desc-wall-frame-01-c_64.png b/www/assets/images/items/desc-wall-frame-01-c_64.png new file mode 100644 index 00000000..fee59b7d Binary files /dev/null and b/www/assets/images/items/desc-wall-frame-01-c_64.png differ diff --git a/www/assets/images/items/desc-wall-gate-8x4-01-c_256.png b/www/assets/images/items/desc-wall-gate-8x4-01-c_256.png new file mode 100644 index 00000000..16d1a95b Binary files /dev/null and b/www/assets/images/items/desc-wall-gate-8x4-01-c_256.png differ diff --git a/www/assets/images/items/desc-wall-gate-8x4-01-c_64.png b/www/assets/images/items/desc-wall-gate-8x4-01-c_64.png new file mode 100644 index 00000000..e9027a9b Binary files /dev/null and b/www/assets/images/items/desc-wall-gate-8x4-01-c_64.png differ diff --git a/www/assets/images/items/desc-wall-orange-8x1-c_256.png b/www/assets/images/items/desc-wall-orange-8x1-c_256.png new file mode 100644 index 00000000..ca018064 Binary files /dev/null and b/www/assets/images/items/desc-wall-orange-8x1-c_256.png differ diff --git a/www/assets/images/items/desc-wall-orange-8x1-c_64.png b/www/assets/images/items/desc-wall-orange-8x1-c_64.png new file mode 100644 index 00000000..d00491aa Binary files /dev/null and b/www/assets/images/items/desc-wall-orange-8x1-c_64.png differ diff --git a/www/assets/images/items/desc-wall-orange-8x1-fliptris-c_256.png b/www/assets/images/items/desc-wall-orange-8x1-fliptris-c_256.png new file mode 100644 index 00000000..d7bc2173 Binary files /dev/null and b/www/assets/images/items/desc-wall-orange-8x1-fliptris-c_256.png differ diff --git a/www/assets/images/items/desc-wall-orange-8x1-fliptris-c_64.png b/www/assets/images/items/desc-wall-orange-8x1-fliptris-c_64.png new file mode 100644 index 00000000..3dd3501e Binary files /dev/null and b/www/assets/images/items/desc-wall-orange-8x1-fliptris-c_64.png differ diff --git a/www/assets/images/items/desc-wall-orange-8x1-tris-c_256.png b/www/assets/images/items/desc-wall-orange-8x1-tris-c_256.png new file mode 100644 index 00000000..7cbc85c3 Binary files /dev/null and b/www/assets/images/items/desc-wall-orange-8x1-tris-c_256.png differ diff --git a/www/assets/images/items/desc-wall-orange-8x1-tris-c_64.png b/www/assets/images/items/desc-wall-orange-8x1-tris-c_64.png new file mode 100644 index 00000000..9372a9ea Binary files /dev/null and b/www/assets/images/items/desc-wall-orange-8x1-tris-c_64.png differ diff --git a/www/assets/images/items/desc-wall-orange-8x2-fliptris-c_256.png b/www/assets/images/items/desc-wall-orange-8x2-fliptris-c_256.png new file mode 100644 index 00000000..85956574 Binary files /dev/null and b/www/assets/images/items/desc-wall-orange-8x2-fliptris-c_256.png differ diff --git a/www/assets/images/items/desc-wall-orange-8x2-fliptris-c_64.png b/www/assets/images/items/desc-wall-orange-8x2-fliptris-c_64.png new file mode 100644 index 00000000..ce5d169e Binary files /dev/null and b/www/assets/images/items/desc-wall-orange-8x2-fliptris-c_64.png differ diff --git a/www/assets/images/items/desc-wall-orange-8x2-tris-c_256.png b/www/assets/images/items/desc-wall-orange-8x2-tris-c_256.png new file mode 100644 index 00000000..f9aa78d4 Binary files /dev/null and b/www/assets/images/items/desc-wall-orange-8x2-tris-c_256.png differ diff --git a/www/assets/images/items/desc-wall-orange-8x2-tris-c_64.png b/www/assets/images/items/desc-wall-orange-8x2-tris-c_64.png new file mode 100644 index 00000000..6da025a1 Binary files /dev/null and b/www/assets/images/items/desc-wall-orange-8x2-tris-c_64.png differ diff --git a/www/assets/images/items/desc-wall-orange-8x4-corner-01-c_256.png b/www/assets/images/items/desc-wall-orange-8x4-corner-01-c_256.png new file mode 100644 index 00000000..915a9341 Binary files /dev/null and b/www/assets/images/items/desc-wall-orange-8x4-corner-01-c_256.png differ diff --git a/www/assets/images/items/desc-wall-orange-8x4-corner-01-c_64.png b/www/assets/images/items/desc-wall-orange-8x4-corner-01-c_64.png new file mode 100644 index 00000000..5e252e77 Binary files /dev/null and b/www/assets/images/items/desc-wall-orange-8x4-corner-01-c_64.png differ diff --git a/www/assets/images/items/desc-wall-orange-8x4-corner-02-c_256.png b/www/assets/images/items/desc-wall-orange-8x4-corner-02-c_256.png new file mode 100644 index 00000000..8bc9cf36 Binary files /dev/null and b/www/assets/images/items/desc-wall-orange-8x4-corner-02-c_256.png differ diff --git a/www/assets/images/items/desc-wall-orange-8x4-corner-02-c_64.png b/www/assets/images/items/desc-wall-orange-8x4-corner-02-c_64.png new file mode 100644 index 00000000..2f82e2a8 Binary files /dev/null and b/www/assets/images/items/desc-wall-orange-8x4-corner-02-c_64.png differ diff --git a/www/assets/images/items/desc-wall-orange-8x4-fliptris-c_256.png b/www/assets/images/items/desc-wall-orange-8x4-fliptris-c_256.png new file mode 100644 index 00000000..c5134c65 Binary files /dev/null and b/www/assets/images/items/desc-wall-orange-8x4-fliptris-c_256.png differ diff --git a/www/assets/images/items/desc-wall-orange-8x4-fliptris-c_64.png b/www/assets/images/items/desc-wall-orange-8x4-fliptris-c_64.png new file mode 100644 index 00000000..c150063a Binary files /dev/null and b/www/assets/images/items/desc-wall-orange-8x4-fliptris-c_64.png differ diff --git a/www/assets/images/items/desc-wall-orange-8x4-tris-c_256.png b/www/assets/images/items/desc-wall-orange-8x4-tris-c_256.png new file mode 100644 index 00000000..8ae91c2a Binary files /dev/null and b/www/assets/images/items/desc-wall-orange-8x4-tris-c_256.png differ diff --git a/www/assets/images/items/desc-wall-orange-8x4-tris-c_64.png b/www/assets/images/items/desc-wall-orange-8x4-tris-c_64.png new file mode 100644 index 00000000..cf9dbe20 Binary files /dev/null and b/www/assets/images/items/desc-wall-orange-8x4-tris-c_64.png differ diff --git a/www/assets/images/items/desc-wall-orange-8x8-corner-01-c_256.png b/www/assets/images/items/desc-wall-orange-8x8-corner-01-c_256.png new file mode 100644 index 00000000..0055c436 Binary files /dev/null and b/www/assets/images/items/desc-wall-orange-8x8-corner-01-c_256.png differ diff --git a/www/assets/images/items/desc-wall-orange-8x8-corner-01-c_64.png b/www/assets/images/items/desc-wall-orange-8x8-corner-01-c_64.png new file mode 100644 index 00000000..cbef9e46 Binary files /dev/null and b/www/assets/images/items/desc-wall-orange-8x8-corner-01-c_64.png differ diff --git a/www/assets/images/items/desc-wall-orange-8x8-corner-02-c_256.png b/www/assets/images/items/desc-wall-orange-8x8-corner-02-c_256.png new file mode 100644 index 00000000..c88f0b71 Binary files /dev/null and b/www/assets/images/items/desc-wall-orange-8x8-corner-02-c_256.png differ diff --git a/www/assets/images/items/desc-wall-orange-8x8-corner-02-c_64.png b/www/assets/images/items/desc-wall-orange-8x8-corner-02-c_64.png new file mode 100644 index 00000000..5a504d3d Binary files /dev/null and b/www/assets/images/items/desc-wall-orange-8x8-corner-02-c_64.png differ diff --git a/www/assets/images/items/desc-wall-orange-8x8-fliptris-c_256.png b/www/assets/images/items/desc-wall-orange-8x8-fliptris-c_256.png new file mode 100644 index 00000000..501adc25 Binary files /dev/null and b/www/assets/images/items/desc-wall-orange-8x8-fliptris-c_256.png differ diff --git a/www/assets/images/items/desc-wall-orange-8x8-fliptris-c_64.png b/www/assets/images/items/desc-wall-orange-8x8-fliptris-c_64.png new file mode 100644 index 00000000..fa7f0710 Binary files /dev/null and b/www/assets/images/items/desc-wall-orange-8x8-fliptris-c_64.png differ diff --git a/www/assets/images/items/desc-wall-orange-8x8-tris-c_256.png b/www/assets/images/items/desc-wall-orange-8x8-tris-c_256.png new file mode 100644 index 00000000..03c4fe79 Binary files /dev/null and b/www/assets/images/items/desc-wall-orange-8x8-tris-c_256.png differ diff --git a/www/assets/images/items/desc-wall-orange-8x8-tris-c_64.png b/www/assets/images/items/desc-wall-orange-8x8-tris-c_64.png new file mode 100644 index 00000000..a0ae9d03 Binary files /dev/null and b/www/assets/images/items/desc-wall-orange-8x8-tris-c_64.png differ diff --git a/www/assets/images/items/desc-wall-orange-angular-8x4-c_256.png b/www/assets/images/items/desc-wall-orange-angular-8x4-c_256.png new file mode 100644 index 00000000..7e4b9926 Binary files /dev/null and b/www/assets/images/items/desc-wall-orange-angular-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-wall-orange-angular-8x4-c_64.png b/www/assets/images/items/desc-wall-orange-angular-8x4-c_64.png new file mode 100644 index 00000000..d039f772 Binary files /dev/null and b/www/assets/images/items/desc-wall-orange-angular-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-wall-orange-angular-8x8-c_256.png b/www/assets/images/items/desc-wall-orange-angular-8x8-c_256.png new file mode 100644 index 00000000..bcb638a3 Binary files /dev/null and b/www/assets/images/items/desc-wall-orange-angular-8x8-c_256.png differ diff --git a/www/assets/images/items/desc-wall-orange-angular-8x8-c_64.png b/www/assets/images/items/desc-wall-orange-angular-8x8-c_64.png new file mode 100644 index 00000000..6029d814 Binary files /dev/null and b/www/assets/images/items/desc-wall-orange-angular-8x8-c_64.png differ diff --git a/www/assets/images/items/desc-wall-steel-8x4-corner-01-c_256.png b/www/assets/images/items/desc-wall-steel-8x4-corner-01-c_256.png new file mode 100644 index 00000000..3e23d1ad Binary files /dev/null and b/www/assets/images/items/desc-wall-steel-8x4-corner-01-c_256.png differ diff --git a/www/assets/images/items/desc-wall-steel-8x4-corner-01-c_64.png b/www/assets/images/items/desc-wall-steel-8x4-corner-01-c_64.png new file mode 100644 index 00000000..44c6939e Binary files /dev/null and b/www/assets/images/items/desc-wall-steel-8x4-corner-01-c_64.png differ diff --git a/www/assets/images/items/desc-wall-steel-8x4-corner-2-c_256.png b/www/assets/images/items/desc-wall-steel-8x4-corner-2-c_256.png new file mode 100644 index 00000000..387b5994 Binary files /dev/null and b/www/assets/images/items/desc-wall-steel-8x4-corner-2-c_256.png differ diff --git a/www/assets/images/items/desc-wall-steel-8x4-corner-2-c_64.png b/www/assets/images/items/desc-wall-steel-8x4-corner-2-c_64.png new file mode 100644 index 00000000..02bcc978 Binary files /dev/null and b/www/assets/images/items/desc-wall-steel-8x4-corner-2-c_64.png differ diff --git a/www/assets/images/items/desc-wall-steel-8x8-corner-01-c_256.png b/www/assets/images/items/desc-wall-steel-8x8-corner-01-c_256.png new file mode 100644 index 00000000..7fe006c0 Binary files /dev/null and b/www/assets/images/items/desc-wall-steel-8x8-corner-01-c_256.png differ diff --git a/www/assets/images/items/desc-wall-steel-8x8-corner-01-c_64.png b/www/assets/images/items/desc-wall-steel-8x8-corner-01-c_64.png new file mode 100644 index 00000000..a1d9b0af Binary files /dev/null and b/www/assets/images/items/desc-wall-steel-8x8-corner-01-c_64.png differ diff --git a/www/assets/images/items/desc-wall-steel-8x8-corner-2-c_256.png b/www/assets/images/items/desc-wall-steel-8x8-corner-2-c_256.png new file mode 100644 index 00000000..158462ec Binary files /dev/null and b/www/assets/images/items/desc-wall-steel-8x8-corner-2-c_256.png differ diff --git a/www/assets/images/items/desc-wall-steel-8x8-corner-2-c_64.png b/www/assets/images/items/desc-wall-steel-8x8-corner-2-c_64.png new file mode 100644 index 00000000..f217edf2 Binary files /dev/null and b/www/assets/images/items/desc-wall-steel-8x8-corner-2-c_64.png differ diff --git a/www/assets/images/items/desc-wall-window-8x4-01-c_256.png b/www/assets/images/items/desc-wall-window-8x4-01-c_256.png new file mode 100644 index 00000000..3924f646 Binary files /dev/null and b/www/assets/images/items/desc-wall-window-8x4-01-c_256.png differ diff --git a/www/assets/images/items/desc-wall-window-8x4-01-c_64.png b/www/assets/images/items/desc-wall-window-8x4-01-c_64.png new file mode 100644 index 00000000..7d305a30 Binary files /dev/null and b/www/assets/images/items/desc-wall-window-8x4-01-c_64.png differ diff --git a/www/assets/images/items/desc-wall-window-8x4-02-c_256.png b/www/assets/images/items/desc-wall-window-8x4-02-c_256.png new file mode 100644 index 00000000..0c43bffd Binary files /dev/null and b/www/assets/images/items/desc-wall-window-8x4-02-c_256.png differ diff --git a/www/assets/images/items/desc-wall-window-8x4-02-c_64.png b/www/assets/images/items/desc-wall-window-8x4-02-c_64.png new file mode 100644 index 00000000..ab2ebffd Binary files /dev/null and b/www/assets/images/items/desc-wall-window-8x4-02-c_64.png differ diff --git a/www/assets/images/items/desc-wall-window-8x4-03-c_256.png b/www/assets/images/items/desc-wall-window-8x4-03-c_256.png new file mode 100644 index 00000000..18152f2d Binary files /dev/null and b/www/assets/images/items/desc-wall-window-8x4-03-c_256.png differ diff --git a/www/assets/images/items/desc-wall-window-8x4-03-c_64.png b/www/assets/images/items/desc-wall-window-8x4-03-c_64.png new file mode 100644 index 00000000..db93287c Binary files /dev/null and b/www/assets/images/items/desc-wall-window-8x4-03-c_64.png differ diff --git a/www/assets/images/items/desc-wall-window-8x4-04-c_256.png b/www/assets/images/items/desc-wall-window-8x4-04-c_256.png new file mode 100644 index 00000000..8b54b5f8 Binary files /dev/null and b/www/assets/images/items/desc-wall-window-8x4-04-c_256.png differ diff --git a/www/assets/images/items/desc-wall-window-8x4-04-c_64.png b/www/assets/images/items/desc-wall-window-8x4-04-c_64.png new file mode 100644 index 00000000..0484fccf Binary files /dev/null and b/www/assets/images/items/desc-wall-window-8x4-04-c_64.png differ diff --git a/www/assets/images/items/desc-wall-window-8x4-05-c_256.png b/www/assets/images/items/desc-wall-window-8x4-05-c_256.png new file mode 100644 index 00000000..473ff0eb Binary files /dev/null and b/www/assets/images/items/desc-wall-window-8x4-05-c_256.png differ diff --git a/www/assets/images/items/desc-wall-window-8x4-05-c_64.png b/www/assets/images/items/desc-wall-window-8x4-05-c_64.png new file mode 100644 index 00000000..64e5ebf9 Binary files /dev/null and b/www/assets/images/items/desc-wall-window-8x4-05-c_64.png differ diff --git a/www/assets/images/items/desc-wall-window-8x4-06-c_256.png b/www/assets/images/items/desc-wall-window-8x4-06-c_256.png new file mode 100644 index 00000000..869a3cfd Binary files /dev/null and b/www/assets/images/items/desc-wall-window-8x4-06-c_256.png differ diff --git a/www/assets/images/items/desc-wall-window-8x4-06-c_64.png b/www/assets/images/items/desc-wall-window-8x4-06-c_64.png new file mode 100644 index 00000000..2ef33146 Binary files /dev/null and b/www/assets/images/items/desc-wall-window-8x4-06-c_64.png differ diff --git a/www/assets/images/items/desc-wall-window-8x4-07-c_256.png b/www/assets/images/items/desc-wall-window-8x4-07-c_256.png new file mode 100644 index 00000000..1d6b0d6c Binary files /dev/null and b/www/assets/images/items/desc-wall-window-8x4-07-c_256.png differ diff --git a/www/assets/images/items/desc-wall-window-8x4-07-c_64.png b/www/assets/images/items/desc-wall-window-8x4-07-c_64.png new file mode 100644 index 00000000..f926041f Binary files /dev/null and b/www/assets/images/items/desc-wall-window-8x4-07-c_64.png differ diff --git a/www/assets/images/items/desc-wall-window-thin-8x4-01-c_256.png b/www/assets/images/items/desc-wall-window-thin-8x4-01-c_256.png new file mode 100644 index 00000000..62de63f1 Binary files /dev/null and b/www/assets/images/items/desc-wall-window-thin-8x4-01-c_256.png differ diff --git a/www/assets/images/items/desc-wall-window-thin-8x4-01-c_64.png b/www/assets/images/items/desc-wall-window-thin-8x4-01-c_64.png new file mode 100644 index 00000000..3d9c560f Binary files /dev/null and b/www/assets/images/items/desc-wall-window-thin-8x4-01-c_64.png differ diff --git a/www/assets/images/items/desc-wall-window-thin-8x4-02-c_256.png b/www/assets/images/items/desc-wall-window-thin-8x4-02-c_256.png new file mode 100644 index 00000000..67d64d6f Binary files /dev/null and b/www/assets/images/items/desc-wall-window-thin-8x4-02-c_256.png differ diff --git a/www/assets/images/items/desc-wall-window-thin-8x4-02-c_64.png b/www/assets/images/items/desc-wall-window-thin-8x4-02-c_64.png new file mode 100644 index 00000000..c523730b Binary files /dev/null and b/www/assets/images/items/desc-wall-window-thin-8x4-02-c_64.png differ diff --git a/www/assets/images/items/desc-wallset-steel-angular-8x4-c_256.png b/www/assets/images/items/desc-wallset-steel-angular-8x4-c_256.png new file mode 100644 index 00000000..d035be44 Binary files /dev/null and b/www/assets/images/items/desc-wallset-steel-angular-8x4-c_256.png differ diff --git a/www/assets/images/items/desc-wallset-steel-angular-8x4-c_64.png b/www/assets/images/items/desc-wallset-steel-angular-8x4-c_64.png new file mode 100644 index 00000000..6653dd19 Binary files /dev/null and b/www/assets/images/items/desc-wallset-steel-angular-8x4-c_64.png differ diff --git a/www/assets/images/items/desc-wallset-steel-angular-8x8-c_256.png b/www/assets/images/items/desc-wallset-steel-angular-8x8-c_256.png new file mode 100644 index 00000000..a7d90321 Binary files /dev/null and b/www/assets/images/items/desc-wallset-steel-angular-8x8-c_256.png differ diff --git a/www/assets/images/items/desc-wallset-steel-angular-8x8-c_64.png b/www/assets/images/items/desc-wallset-steel-angular-8x8-c_64.png new file mode 100644 index 00000000..9c559a92 Binary files /dev/null and b/www/assets/images/items/desc-wallset-steel-angular-8x8-c_64.png differ diff --git a/www/assets/images/items/desc-wat1-c_256.png b/www/assets/images/items/desc-wat1-c_256.png new file mode 100644 index 00000000..cc7b04bd Binary files /dev/null and b/www/assets/images/items/desc-wat1-c_256.png differ diff --git a/www/assets/images/items/desc-wat1-c_64.png b/www/assets/images/items/desc-wat1-c_64.png new file mode 100644 index 00000000..ddb83198 Binary files /dev/null and b/www/assets/images/items/desc-wat1-c_64.png differ diff --git a/www/assets/images/items/desc-wat2-c_256.png b/www/assets/images/items/desc-wat2-c_256.png new file mode 100644 index 00000000..ebb1a8e7 Binary files /dev/null and b/www/assets/images/items/desc-wat2-c_256.png differ diff --git a/www/assets/images/items/desc-wat2-c_64.png b/www/assets/images/items/desc-wat2-c_64.png new file mode 100644 index 00000000..1d117bcc Binary files /dev/null and b/www/assets/images/items/desc-wat2-c_64.png differ diff --git a/www/assets/images/items/desc-water-c_256.png b/www/assets/images/items/desc-water-c_256.png new file mode 100644 index 00000000..3a826734 Binary files /dev/null and b/www/assets/images/items/desc-water-c_256.png differ diff --git a/www/assets/images/items/desc-water-c_64.png b/www/assets/images/items/desc-water-c_64.png new file mode 100644 index 00000000..5b8ab6e0 Binary files /dev/null and b/www/assets/images/items/desc-water-c_64.png differ diff --git a/www/assets/images/items/desc-waterpump-c_256.png b/www/assets/images/items/desc-waterpump-c_256.png new file mode 100644 index 00000000..6c8afe99 Binary files /dev/null and b/www/assets/images/items/desc-waterpump-c_256.png differ diff --git a/www/assets/images/items/desc-waterpump-c_64.png b/www/assets/images/items/desc-waterpump-c_64.png new file mode 100644 index 00000000..3d90a6b1 Binary files /dev/null and b/www/assets/images/items/desc-waterpump-c_64.png differ diff --git a/www/assets/images/items/desc-wire-c_256.png b/www/assets/images/items/desc-wire-c_256.png new file mode 100644 index 00000000..afadbb9b Binary files /dev/null and b/www/assets/images/items/desc-wire-c_256.png differ diff --git a/www/assets/images/items/desc-wire-c_64.png b/www/assets/images/items/desc-wire-c_64.png new file mode 100644 index 00000000..07e2710a Binary files /dev/null and b/www/assets/images/items/desc-wire-c_64.png differ diff --git a/www/assets/images/items/desc-wood-c_256.png b/www/assets/images/items/desc-wood-c_256.png new file mode 100644 index 00000000..21dd6f74 Binary files /dev/null and b/www/assets/images/items/desc-wood-c_256.png differ diff --git a/www/assets/images/items/desc-wood-c_64.png b/www/assets/images/items/desc-wood-c_64.png new file mode 100644 index 00000000..b60231a6 Binary files /dev/null and b/www/assets/images/items/desc-wood-c_64.png differ diff --git a/www/assets/images/items/desc-workbench-c_256.png b/www/assets/images/items/desc-workbench-c_256.png new file mode 100644 index 00000000..34b59a35 Binary files /dev/null and b/www/assets/images/items/desc-workbench-c_256.png differ diff --git a/www/assets/images/items/desc-workbench-c_64.png b/www/assets/images/items/desc-workbench-c_64.png new file mode 100644 index 00000000..80d3f97e Binary files /dev/null and b/www/assets/images/items/desc-workbench-c_64.png differ diff --git a/www/assets/images/items/desc-workshop-c_256.png b/www/assets/images/items/desc-workshop-c_256.png new file mode 100644 index 00000000..1e0fbea4 Binary files /dev/null and b/www/assets/images/items/desc-workshop-c_256.png differ diff --git a/www/assets/images/items/desc-workshop-c_64.png b/www/assets/images/items/desc-workshop-c_64.png new file mode 100644 index 00000000..3539087b Binary files /dev/null and b/www/assets/images/items/desc-workshop-c_64.png differ diff --git a/www/assets/images/items/desc-wreathdecor-c_256.png b/www/assets/images/items/desc-wreathdecor-c_256.png new file mode 100644 index 00000000..8faa8e89 Binary files /dev/null and b/www/assets/images/items/desc-wreathdecor-c_256.png differ diff --git a/www/assets/images/items/desc-wreathdecor-c_64.png b/www/assets/images/items/desc-wreathdecor-c_64.png new file mode 100644 index 00000000..ffb175fb Binary files /dev/null and b/www/assets/images/items/desc-wreathdecor-c_64.png differ diff --git a/www/assets/images/items/desc-xmasball1-c_256.png b/www/assets/images/items/desc-xmasball1-c_256.png new file mode 100644 index 00000000..7bd8648f Binary files /dev/null and b/www/assets/images/items/desc-xmasball1-c_256.png differ diff --git a/www/assets/images/items/desc-xmasball1-c_64.png b/www/assets/images/items/desc-xmasball1-c_64.png new file mode 100644 index 00000000..106468a4 Binary files /dev/null and b/www/assets/images/items/desc-xmasball1-c_64.png differ diff --git a/www/assets/images/items/desc-xmasball2-c_256.png b/www/assets/images/items/desc-xmasball2-c_256.png new file mode 100644 index 00000000..702c42bb Binary files /dev/null and b/www/assets/images/items/desc-xmasball2-c_256.png differ diff --git a/www/assets/images/items/desc-xmasball2-c_64.png b/www/assets/images/items/desc-xmasball2-c_64.png new file mode 100644 index 00000000..df30b130 Binary files /dev/null and b/www/assets/images/items/desc-xmasball2-c_64.png differ diff --git a/www/assets/images/items/desc-xmasball3-c_256.png b/www/assets/images/items/desc-xmasball3-c_256.png new file mode 100644 index 00000000..f54a12fd Binary files /dev/null and b/www/assets/images/items/desc-xmasball3-c_256.png differ diff --git a/www/assets/images/items/desc-xmasball3-c_64.png b/www/assets/images/items/desc-xmasball3-c_64.png new file mode 100644 index 00000000..476d7c54 Binary files /dev/null and b/www/assets/images/items/desc-xmasball3-c_64.png differ diff --git a/www/assets/images/items/desc-xmasball4-c_256.png b/www/assets/images/items/desc-xmasball4-c_256.png new file mode 100644 index 00000000..adb2eee4 Binary files /dev/null and b/www/assets/images/items/desc-xmasball4-c_256.png differ diff --git a/www/assets/images/items/desc-xmasball4-c_64.png b/www/assets/images/items/desc-xmasball4-c_64.png new file mode 100644 index 00000000..5ab318a4 Binary files /dev/null and b/www/assets/images/items/desc-xmasball4-c_64.png differ diff --git a/www/assets/images/items/desc-xmasballcluster-c_256.png b/www/assets/images/items/desc-xmasballcluster-c_256.png new file mode 100644 index 00000000..72a9be6b Binary files /dev/null and b/www/assets/images/items/desc-xmasballcluster-c_256.png differ diff --git a/www/assets/images/items/desc-xmasballcluster-c_64.png b/www/assets/images/items/desc-xmasballcluster-c_64.png new file mode 100644 index 00000000..12a36bcc Binary files /dev/null and b/www/assets/images/items/desc-xmasballcluster-c_64.png differ diff --git a/www/assets/images/items/desc-xmasbow-c_256.png b/www/assets/images/items/desc-xmasbow-c_256.png new file mode 100644 index 00000000..7bac8179 Binary files /dev/null and b/www/assets/images/items/desc-xmasbow-c_256.png differ diff --git a/www/assets/images/items/desc-xmasbow-c_64.png b/www/assets/images/items/desc-xmasbow-c_64.png new file mode 100644 index 00000000..f4e93a72 Binary files /dev/null and b/www/assets/images/items/desc-xmasbow-c_64.png differ diff --git a/www/assets/images/items/desc-xmasbranch-c_256.png b/www/assets/images/items/desc-xmasbranch-c_256.png new file mode 100644 index 00000000..72b461d7 Binary files /dev/null and b/www/assets/images/items/desc-xmasbranch-c_256.png differ diff --git a/www/assets/images/items/desc-xmasbranch-c_64.png b/www/assets/images/items/desc-xmasbranch-c_64.png new file mode 100644 index 00000000..f4b2f709 Binary files /dev/null and b/www/assets/images/items/desc-xmasbranch-c_64.png differ diff --git a/www/assets/images/items/desc-xmasslights-c_256.png b/www/assets/images/items/desc-xmasslights-c_256.png new file mode 100644 index 00000000..4ed75e22 Binary files /dev/null and b/www/assets/images/items/desc-xmasslights-c_256.png differ diff --git a/www/assets/images/items/desc-xmasslights-c_64.png b/www/assets/images/items/desc-xmasslights-c_64.png new file mode 100644 index 00000000..cebdcd83 Binary files /dev/null and b/www/assets/images/items/desc-xmasslights-c_64.png differ diff --git a/www/assets/images/items/desc-xmasstar-c_256.png b/www/assets/images/items/desc-xmasstar-c_256.png new file mode 100644 index 00000000..cc67ddac Binary files /dev/null and b/www/assets/images/items/desc-xmasstar-c_256.png differ diff --git a/www/assets/images/items/desc-xmasstar-c_64.png b/www/assets/images/items/desc-xmasstar-c_64.png new file mode 100644 index 00000000..b65961b3 Binary files /dev/null and b/www/assets/images/items/desc-xmasstar-c_64.png differ diff --git a/www/assets/images/items/desc-xmasstree-c_256.png b/www/assets/images/items/desc-xmasstree-c_256.png new file mode 100644 index 00000000..75e5d626 Binary files /dev/null and b/www/assets/images/items/desc-xmasstree-c_256.png differ diff --git a/www/assets/images/items/desc-xmasstree-c_64.png b/www/assets/images/items/desc-xmasstree-c_64.png new file mode 100644 index 00000000..2884a4bf Binary files /dev/null and b/www/assets/images/items/desc-xmasstree-c_64.png differ diff --git a/www/assets/images/items/desc-xmaswreath-c_256.png b/www/assets/images/items/desc-xmaswreath-c_256.png new file mode 100644 index 00000000..6c4fa9d3 Binary files /dev/null and b/www/assets/images/items/desc-xmaswreath-c_256.png differ diff --git a/www/assets/images/items/desc-xmaswreath-c_64.png b/www/assets/images/items/desc-xmaswreath-c_64.png new file mode 100644 index 00000000..d5abb8d3 Binary files /dev/null and b/www/assets/images/items/desc-xmaswreath-c_64.png differ diff --git a/www/assets/images/items/detonator-prototype_256.png b/www/assets/images/items/detonator-prototype_256.png deleted file mode 100644 index 221c2d00..00000000 Binary files a/www/assets/images/items/detonator-prototype_256.png and /dev/null differ diff --git a/www/assets/images/items/detonator-prototype_64.png b/www/assets/images/items/detonator-prototype_64.png deleted file mode 100644 index a6efc614..00000000 Binary files a/www/assets/images/items/detonator-prototype_64.png and /dev/null differ diff --git a/www/assets/images/items/display-sign-bundle_256.png b/www/assets/images/items/display-sign-bundle_256.png deleted file mode 100644 index 8de23b42..00000000 Binary files a/www/assets/images/items/display-sign-bundle_256.png and /dev/null differ diff --git a/www/assets/images/items/display-sign-bundle_64.png b/www/assets/images/items/display-sign-bundle_64.png deleted file mode 100644 index 5919f5fc..00000000 Binary files a/www/assets/images/items/display-sign-bundle_64.png and /dev/null differ diff --git a/www/assets/images/items/display-sign_256.png b/www/assets/images/items/display-sign_256.png deleted file mode 100644 index cf5ee909..00000000 Binary files a/www/assets/images/items/display-sign_256.png and /dev/null differ diff --git a/www/assets/images/items/display-sign_64.png b/www/assets/images/items/display-sign_64.png deleted file mode 100644 index 42ece91f..00000000 Binary files a/www/assets/images/items/display-sign_64.png and /dev/null differ diff --git a/www/assets/images/items/door-walls_256.png b/www/assets/images/items/door-walls_256.png deleted file mode 100644 index f184637e..00000000 Binary files a/www/assets/images/items/door-walls_256.png and /dev/null differ diff --git a/www/assets/images/items/door-walls_64.png b/www/assets/images/items/door-walls_64.png deleted file mode 100644 index 6c0fdb86..00000000 Binary files a/www/assets/images/items/door-walls_64.png and /dev/null differ diff --git a/www/assets/images/items/dotted-line-patterns_256.png b/www/assets/images/items/dotted-line-patterns_256.png deleted file mode 100644 index 31740c16..00000000 Binary files a/www/assets/images/items/dotted-line-patterns_256.png and /dev/null differ diff --git a/www/assets/images/items/dotted-line-patterns_64.png b/www/assets/images/items/dotted-line-patterns_64.png deleted file mode 100644 index ce7ae24c..00000000 Binary files a/www/assets/images/items/dotted-line-patterns_64.png and /dev/null differ diff --git a/www/assets/images/items/double-ramp-2m-1_256.png b/www/assets/images/items/double-ramp-2m-1_256.png deleted file mode 100644 index c35802f7..00000000 Binary files a/www/assets/images/items/double-ramp-2m-1_256.png and /dev/null differ diff --git a/www/assets/images/items/double-ramp-2m-1_64.png b/www/assets/images/items/double-ramp-2m-1_64.png deleted file mode 100644 index 021e238f..00000000 Binary files a/www/assets/images/items/double-ramp-2m-1_64.png and /dev/null differ diff --git a/www/assets/images/items/double-ramp-2m-2_256.png b/www/assets/images/items/double-ramp-2m-2_256.png deleted file mode 100644 index 96a7da6f..00000000 Binary files a/www/assets/images/items/double-ramp-2m-2_256.png and /dev/null differ diff --git a/www/assets/images/items/double-ramp-2m-2_64.png b/www/assets/images/items/double-ramp-2m-2_64.png deleted file mode 100644 index 4df1641e..00000000 Binary files a/www/assets/images/items/double-ramp-2m-2_64.png and /dev/null differ diff --git a/www/assets/images/items/double-ramp-2m-3_256.png b/www/assets/images/items/double-ramp-2m-3_256.png deleted file mode 100644 index ff9d0ba7..00000000 Binary files a/www/assets/images/items/double-ramp-2m-3_256.png and /dev/null differ diff --git a/www/assets/images/items/double-ramp-2m-3_64.png b/www/assets/images/items/double-ramp-2m-3_64.png deleted file mode 100644 index 1e9bf73f..00000000 Binary files a/www/assets/images/items/double-ramp-2m-3_64.png and /dev/null differ diff --git a/www/assets/images/items/double-ramp-2m-asphalt_256.png b/www/assets/images/items/double-ramp-2m-asphalt_256.png deleted file mode 100644 index c35802f7..00000000 Binary files a/www/assets/images/items/double-ramp-2m-asphalt_256.png and /dev/null differ diff --git a/www/assets/images/items/double-ramp-2m-asphalt_64.png b/www/assets/images/items/double-ramp-2m-asphalt_64.png deleted file mode 100644 index 021e238f..00000000 Binary files a/www/assets/images/items/double-ramp-2m-asphalt_64.png and /dev/null differ diff --git a/www/assets/images/items/double-ramp-2m-concrete_256.png b/www/assets/images/items/double-ramp-2m-concrete_256.png deleted file mode 100644 index a791f3ce..00000000 Binary files a/www/assets/images/items/double-ramp-2m-concrete_256.png and /dev/null differ diff --git a/www/assets/images/items/double-ramp-2m-concrete_64.png b/www/assets/images/items/double-ramp-2m-concrete_64.png deleted file mode 100644 index 9b0dec21..00000000 Binary files a/www/assets/images/items/double-ramp-2m-concrete_64.png and /dev/null differ diff --git a/www/assets/images/items/double-ramp-2m-metal_256.png b/www/assets/images/items/double-ramp-2m-metal_256.png deleted file mode 100644 index 96a7da6f..00000000 Binary files a/www/assets/images/items/double-ramp-2m-metal_256.png and /dev/null differ diff --git a/www/assets/images/items/double-ramp-2m-metal_64.png b/www/assets/images/items/double-ramp-2m-metal_64.png deleted file mode 100644 index db920dd7..00000000 Binary files a/www/assets/images/items/double-ramp-2m-metal_64.png and /dev/null differ diff --git a/www/assets/images/items/double-ramp-2m-polished_256.png b/www/assets/images/items/double-ramp-2m-polished_256.png deleted file mode 100644 index ff9d0ba7..00000000 Binary files a/www/assets/images/items/double-ramp-2m-polished_256.png and /dev/null differ diff --git a/www/assets/images/items/double-ramp-2m-polished_64.png b/www/assets/images/items/double-ramp-2m-polished_64.png deleted file mode 100644 index a349b84e..00000000 Binary files a/www/assets/images/items/double-ramp-2m-polished_64.png and /dev/null differ diff --git a/www/assets/images/items/double-ramp-2m_256.png b/www/assets/images/items/double-ramp-2m_256.png deleted file mode 100644 index ff42a9aa..00000000 Binary files a/www/assets/images/items/double-ramp-2m_256.png and /dev/null differ diff --git a/www/assets/images/items/double-ramp-2m_64.png b/www/assets/images/items/double-ramp-2m_64.png deleted file mode 100644 index 968e747f..00000000 Binary files a/www/assets/images/items/double-ramp-2m_64.png and /dev/null differ diff --git a/www/assets/images/items/double-ramp-4m-1_256.png b/www/assets/images/items/double-ramp-4m-1_256.png deleted file mode 100644 index 75064e99..00000000 Binary files a/www/assets/images/items/double-ramp-4m-1_256.png and /dev/null differ diff --git a/www/assets/images/items/double-ramp-4m-1_64.png b/www/assets/images/items/double-ramp-4m-1_64.png deleted file mode 100644 index 2923cd0f..00000000 Binary files a/www/assets/images/items/double-ramp-4m-1_64.png and /dev/null differ diff --git a/www/assets/images/items/double-ramp-4m-2_256.png b/www/assets/images/items/double-ramp-4m-2_256.png deleted file mode 100644 index c79bb9f0..00000000 Binary files a/www/assets/images/items/double-ramp-4m-2_256.png and /dev/null differ diff --git a/www/assets/images/items/double-ramp-4m-2_64.png b/www/assets/images/items/double-ramp-4m-2_64.png deleted file mode 100644 index f604aec7..00000000 Binary files a/www/assets/images/items/double-ramp-4m-2_64.png and /dev/null differ diff --git a/www/assets/images/items/double-ramp-4m-3_256.png b/www/assets/images/items/double-ramp-4m-3_256.png deleted file mode 100644 index 001e742e..00000000 Binary files a/www/assets/images/items/double-ramp-4m-3_256.png and /dev/null differ diff --git a/www/assets/images/items/double-ramp-4m-3_64.png b/www/assets/images/items/double-ramp-4m-3_64.png deleted file mode 100644 index c8f9c06d..00000000 Binary files a/www/assets/images/items/double-ramp-4m-3_64.png and /dev/null differ diff --git a/www/assets/images/items/double-ramp-4m-asphalt_256.png b/www/assets/images/items/double-ramp-4m-asphalt_256.png deleted file mode 100644 index 79f40959..00000000 Binary files a/www/assets/images/items/double-ramp-4m-asphalt_256.png and /dev/null differ diff --git a/www/assets/images/items/double-ramp-4m-asphalt_64.png b/www/assets/images/items/double-ramp-4m-asphalt_64.png deleted file mode 100644 index 2bd48aff..00000000 Binary files a/www/assets/images/items/double-ramp-4m-asphalt_64.png and /dev/null differ diff --git a/www/assets/images/items/double-ramp-4m-concrete_256.png b/www/assets/images/items/double-ramp-4m-concrete_256.png deleted file mode 100644 index c2b38cfd..00000000 Binary files a/www/assets/images/items/double-ramp-4m-concrete_256.png and /dev/null differ diff --git a/www/assets/images/items/double-ramp-4m-concrete_64.png b/www/assets/images/items/double-ramp-4m-concrete_64.png deleted file mode 100644 index aa9c4020..00000000 Binary files a/www/assets/images/items/double-ramp-4m-concrete_64.png and /dev/null differ diff --git a/www/assets/images/items/double-ramp-4m-metal_256.png b/www/assets/images/items/double-ramp-4m-metal_256.png deleted file mode 100644 index c79bb9f0..00000000 Binary files a/www/assets/images/items/double-ramp-4m-metal_256.png and /dev/null differ diff --git a/www/assets/images/items/double-ramp-4m-metal_64.png b/www/assets/images/items/double-ramp-4m-metal_64.png deleted file mode 100644 index b88a94ea..00000000 Binary files a/www/assets/images/items/double-ramp-4m-metal_64.png and /dev/null differ diff --git a/www/assets/images/items/double-ramp-4m-polished_256.png b/www/assets/images/items/double-ramp-4m-polished_256.png deleted file mode 100644 index 001e742e..00000000 Binary files a/www/assets/images/items/double-ramp-4m-polished_256.png and /dev/null differ diff --git a/www/assets/images/items/double-ramp-4m-polished_64.png b/www/assets/images/items/double-ramp-4m-polished_64.png deleted file mode 100644 index b13cc90a..00000000 Binary files a/www/assets/images/items/double-ramp-4m-polished_64.png and /dev/null differ diff --git a/www/assets/images/items/double-ramp-4m_256.png b/www/assets/images/items/double-ramp-4m_256.png deleted file mode 100644 index 75064e99..00000000 Binary files a/www/assets/images/items/double-ramp-4m_256.png and /dev/null differ diff --git a/www/assets/images/items/double-ramp-4m_64.png b/www/assets/images/items/double-ramp-4m_64.png deleted file mode 100644 index 2923cd0f..00000000 Binary files a/www/assets/images/items/double-ramp-4m_64.png and /dev/null differ diff --git a/www/assets/images/items/double-ramp-8m-1_256.png b/www/assets/images/items/double-ramp-8m-1_256.png deleted file mode 100644 index 91a3c119..00000000 Binary files a/www/assets/images/items/double-ramp-8m-1_256.png and /dev/null differ diff --git a/www/assets/images/items/double-ramp-8m-1_64.png b/www/assets/images/items/double-ramp-8m-1_64.png deleted file mode 100644 index dc2a5278..00000000 Binary files a/www/assets/images/items/double-ramp-8m-1_64.png and /dev/null differ diff --git a/www/assets/images/items/double-ramp-8m-2_256.png b/www/assets/images/items/double-ramp-8m-2_256.png deleted file mode 100644 index c99bb1b6..00000000 Binary files a/www/assets/images/items/double-ramp-8m-2_256.png and /dev/null differ diff --git a/www/assets/images/items/double-ramp-8m-2_64.png b/www/assets/images/items/double-ramp-8m-2_64.png deleted file mode 100644 index 8ab111d9..00000000 Binary files a/www/assets/images/items/double-ramp-8m-2_64.png and /dev/null differ diff --git a/www/assets/images/items/double-ramp-8m-3_256.png b/www/assets/images/items/double-ramp-8m-3_256.png deleted file mode 100644 index 91a3c119..00000000 Binary files a/www/assets/images/items/double-ramp-8m-3_256.png and /dev/null differ diff --git a/www/assets/images/items/double-ramp-8m-3_64.png b/www/assets/images/items/double-ramp-8m-3_64.png deleted file mode 100644 index 71cdea34..00000000 Binary files a/www/assets/images/items/double-ramp-8m-3_64.png and /dev/null differ diff --git a/www/assets/images/items/double-ramp-8m-asphalt_256.png b/www/assets/images/items/double-ramp-8m-asphalt_256.png deleted file mode 100644 index 7a0d0975..00000000 Binary files a/www/assets/images/items/double-ramp-8m-asphalt_256.png and /dev/null differ diff --git a/www/assets/images/items/double-ramp-8m-asphalt_64.png b/www/assets/images/items/double-ramp-8m-asphalt_64.png deleted file mode 100644 index 79da7fc4..00000000 Binary files a/www/assets/images/items/double-ramp-8m-asphalt_64.png and /dev/null differ diff --git a/www/assets/images/items/double-ramp-8m-concrete_256.png b/www/assets/images/items/double-ramp-8m-concrete_256.png deleted file mode 100644 index beb7c043..00000000 Binary files a/www/assets/images/items/double-ramp-8m-concrete_256.png and /dev/null differ diff --git a/www/assets/images/items/double-ramp-8m-concrete_64.png b/www/assets/images/items/double-ramp-8m-concrete_64.png deleted file mode 100644 index 3bc5fb77..00000000 Binary files a/www/assets/images/items/double-ramp-8m-concrete_64.png and /dev/null differ diff --git a/www/assets/images/items/double-ramp-8m-metal_256.png b/www/assets/images/items/double-ramp-8m-metal_256.png deleted file mode 100644 index 903ac648..00000000 Binary files a/www/assets/images/items/double-ramp-8m-metal_256.png and /dev/null differ diff --git a/www/assets/images/items/double-ramp-8m-metal_64.png b/www/assets/images/items/double-ramp-8m-metal_64.png deleted file mode 100644 index d579f1a3..00000000 Binary files a/www/assets/images/items/double-ramp-8m-metal_64.png and /dev/null differ diff --git a/www/assets/images/items/double-ramp-8m-polished_256.png b/www/assets/images/items/double-ramp-8m-polished_256.png deleted file mode 100644 index c99bb1b6..00000000 Binary files a/www/assets/images/items/double-ramp-8m-polished_256.png and /dev/null differ diff --git a/www/assets/images/items/double-ramp-8m-polished_64.png b/www/assets/images/items/double-ramp-8m-polished_64.png deleted file mode 100644 index 6d914bd3..00000000 Binary files a/www/assets/images/items/double-ramp-8m-polished_64.png and /dev/null differ diff --git a/www/assets/images/items/double-ramp-8m-x-2m_256.png b/www/assets/images/items/double-ramp-8m-x-2m_256.png deleted file mode 100644 index a1b771c1..00000000 Binary files a/www/assets/images/items/double-ramp-8m-x-2m_256.png and /dev/null differ diff --git a/www/assets/images/items/double-ramp-8m-x-2m_64.png b/www/assets/images/items/double-ramp-8m-x-2m_64.png deleted file mode 100644 index 7d2d1aef..00000000 Binary files a/www/assets/images/items/double-ramp-8m-x-2m_64.png and /dev/null differ diff --git a/www/assets/images/items/double-ramp-8m-x-4m_256.png b/www/assets/images/items/double-ramp-8m-x-4m_256.png deleted file mode 100644 index a019ef14..00000000 Binary files a/www/assets/images/items/double-ramp-8m-x-4m_256.png and /dev/null differ diff --git a/www/assets/images/items/double-ramp-8m-x-4m_64.png b/www/assets/images/items/double-ramp-8m-x-4m_64.png deleted file mode 100644 index 48f2c4f9..00000000 Binary files a/www/assets/images/items/double-ramp-8m-x-4m_64.png and /dev/null differ diff --git a/www/assets/images/items/double-ramp-8m-x-8m_256.png b/www/assets/images/items/double-ramp-8m-x-8m_256.png deleted file mode 100644 index b059d662..00000000 Binary files a/www/assets/images/items/double-ramp-8m-x-8m_256.png and /dev/null differ diff --git a/www/assets/images/items/double-ramp-8m-x-8m_64.png b/www/assets/images/items/double-ramp-8m-x-8m_64.png deleted file mode 100644 index 91d8372f..00000000 Binary files a/www/assets/images/items/double-ramp-8m-x-8m_64.png and /dev/null differ diff --git a/www/assets/images/items/double-ramp-8m_256.png b/www/assets/images/items/double-ramp-8m_256.png deleted file mode 100644 index 91a3c119..00000000 Binary files a/www/assets/images/items/double-ramp-8m_256.png and /dev/null differ diff --git a/www/assets/images/items/double-ramp-8m_64.png b/www/assets/images/items/double-ramp-8m_64.png deleted file mode 100644 index dc2a5278..00000000 Binary files a/www/assets/images/items/double-ramp-8m_64.png and /dev/null differ diff --git a/www/assets/images/items/double-ramp-pack_256.png b/www/assets/images/items/double-ramp-pack_256.png deleted file mode 100644 index 06711414..00000000 Binary files a/www/assets/images/items/double-ramp-pack_256.png and /dev/null differ diff --git a/www/assets/images/items/double-ramp-pack_64.png b/www/assets/images/items/double-ramp-pack_64.png deleted file mode 100644 index 8dd4c0e1..00000000 Binary files a/www/assets/images/items/double-ramp-pack_64.png and /dev/null differ diff --git a/www/assets/images/items/double-wall-outlet-mk-1_256.png b/www/assets/images/items/double-wall-outlet-mk-1_256.png deleted file mode 100644 index 7494e68f..00000000 Binary files a/www/assets/images/items/double-wall-outlet-mk-1_256.png and /dev/null differ diff --git a/www/assets/images/items/double-wall-outlet-mk-1_64.png b/www/assets/images/items/double-wall-outlet-mk-1_64.png deleted file mode 100644 index 3a1ddb79..00000000 Binary files a/www/assets/images/items/double-wall-outlet-mk-1_64.png and /dev/null differ diff --git a/www/assets/images/items/double-wall-outlet-mk-2_256.png b/www/assets/images/items/double-wall-outlet-mk-2_256.png deleted file mode 100644 index 98955f46..00000000 Binary files a/www/assets/images/items/double-wall-outlet-mk-2_256.png and /dev/null differ diff --git a/www/assets/images/items/double-wall-outlet-mk-2_64.png b/www/assets/images/items/double-wall-outlet-mk-2_64.png deleted file mode 100644 index 14c8c7f9..00000000 Binary files a/www/assets/images/items/double-wall-outlet-mk-2_64.png and /dev/null differ diff --git a/www/assets/images/items/double-wall-outlet-mk-3_256.png b/www/assets/images/items/double-wall-outlet-mk-3_256.png deleted file mode 100644 index adf70ca9..00000000 Binary files a/www/assets/images/items/double-wall-outlet-mk-3_256.png and /dev/null differ diff --git a/www/assets/images/items/double-wall-outlet-mk-3_64.png b/www/assets/images/items/double-wall-outlet-mk-3_64.png deleted file mode 100644 index 69b8bcbf..00000000 Binary files a/www/assets/images/items/double-wall-outlet-mk-3_64.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-8m-x-1m-inverted_256.png b/www/assets/images/items/down-corner-8m-x-1m-inverted_256.png deleted file mode 100644 index 543b2b23..00000000 Binary files a/www/assets/images/items/down-corner-8m-x-1m-inverted_256.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-8m-x-1m-inverted_64.png b/www/assets/images/items/down-corner-8m-x-1m-inverted_64.png deleted file mode 100644 index 19a9c583..00000000 Binary files a/www/assets/images/items/down-corner-8m-x-1m-inverted_64.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-8m-x-2m-inverted_256.png b/www/assets/images/items/down-corner-8m-x-2m-inverted_256.png deleted file mode 100644 index 6317f032..00000000 Binary files a/www/assets/images/items/down-corner-8m-x-2m-inverted_256.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-8m-x-2m-inverted_64.png b/www/assets/images/items/down-corner-8m-x-2m-inverted_64.png deleted file mode 100644 index f59def60..00000000 Binary files a/www/assets/images/items/down-corner-8m-x-2m-inverted_64.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-8m-x-4m-inverted_256.png b/www/assets/images/items/down-corner-8m-x-4m-inverted_256.png deleted file mode 100644 index d86489ea..00000000 Binary files a/www/assets/images/items/down-corner-8m-x-4m-inverted_256.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-8m-x-4m-inverted_64.png b/www/assets/images/items/down-corner-8m-x-4m-inverted_64.png deleted file mode 100644 index c8e3b2b3..00000000 Binary files a/www/assets/images/items/down-corner-8m-x-4m-inverted_64.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-ramp-1m-1_256.png b/www/assets/images/items/down-corner-ramp-1m-1_256.png deleted file mode 100644 index c8f68043..00000000 Binary files a/www/assets/images/items/down-corner-ramp-1m-1_256.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-ramp-1m-1_64.png b/www/assets/images/items/down-corner-ramp-1m-1_64.png deleted file mode 100644 index dbd11416..00000000 Binary files a/www/assets/images/items/down-corner-ramp-1m-1_64.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-ramp-1m-2_256.png b/www/assets/images/items/down-corner-ramp-1m-2_256.png deleted file mode 100644 index a2fe6597..00000000 Binary files a/www/assets/images/items/down-corner-ramp-1m-2_256.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-ramp-1m-2_64.png b/www/assets/images/items/down-corner-ramp-1m-2_64.png deleted file mode 100644 index 3eaa33ae..00000000 Binary files a/www/assets/images/items/down-corner-ramp-1m-2_64.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-ramp-1m-3_256.png b/www/assets/images/items/down-corner-ramp-1m-3_256.png deleted file mode 100644 index fc954dcd..00000000 Binary files a/www/assets/images/items/down-corner-ramp-1m-3_256.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-ramp-1m-3_64.png b/www/assets/images/items/down-corner-ramp-1m-3_64.png deleted file mode 100644 index f7e6533b..00000000 Binary files a/www/assets/images/items/down-corner-ramp-1m-3_64.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-ramp-1m-asphalt_256.png b/www/assets/images/items/down-corner-ramp-1m-asphalt_256.png deleted file mode 100644 index c8f68043..00000000 Binary files a/www/assets/images/items/down-corner-ramp-1m-asphalt_256.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-ramp-1m-asphalt_64.png b/www/assets/images/items/down-corner-ramp-1m-asphalt_64.png deleted file mode 100644 index dbd11416..00000000 Binary files a/www/assets/images/items/down-corner-ramp-1m-asphalt_64.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-ramp-1m-concrete_256.png b/www/assets/images/items/down-corner-ramp-1m-concrete_256.png deleted file mode 100644 index 16964140..00000000 Binary files a/www/assets/images/items/down-corner-ramp-1m-concrete_256.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-ramp-1m-concrete_64.png b/www/assets/images/items/down-corner-ramp-1m-concrete_64.png deleted file mode 100644 index 0dd3249f..00000000 Binary files a/www/assets/images/items/down-corner-ramp-1m-concrete_64.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-ramp-1m-metal_256.png b/www/assets/images/items/down-corner-ramp-1m-metal_256.png deleted file mode 100644 index a2fe6597..00000000 Binary files a/www/assets/images/items/down-corner-ramp-1m-metal_256.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-ramp-1m-metal_64.png b/www/assets/images/items/down-corner-ramp-1m-metal_64.png deleted file mode 100644 index 24a4541c..00000000 Binary files a/www/assets/images/items/down-corner-ramp-1m-metal_64.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-ramp-1m-polished_256.png b/www/assets/images/items/down-corner-ramp-1m-polished_256.png deleted file mode 100644 index fc954dcd..00000000 Binary files a/www/assets/images/items/down-corner-ramp-1m-polished_256.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-ramp-1m-polished_64.png b/www/assets/images/items/down-corner-ramp-1m-polished_64.png deleted file mode 100644 index 7f52a376..00000000 Binary files a/www/assets/images/items/down-corner-ramp-1m-polished_64.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-ramp-1m_256.png b/www/assets/images/items/down-corner-ramp-1m_256.png deleted file mode 100644 index 82b45a00..00000000 Binary files a/www/assets/images/items/down-corner-ramp-1m_256.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-ramp-1m_64.png b/www/assets/images/items/down-corner-ramp-1m_64.png deleted file mode 100644 index f6549c31..00000000 Binary files a/www/assets/images/items/down-corner-ramp-1m_64.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-ramp-2m-1_256.png b/www/assets/images/items/down-corner-ramp-2m-1_256.png deleted file mode 100644 index 5dc3f5fa..00000000 Binary files a/www/assets/images/items/down-corner-ramp-2m-1_256.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-ramp-2m-1_64.png b/www/assets/images/items/down-corner-ramp-2m-1_64.png deleted file mode 100644 index 8d77215d..00000000 Binary files a/www/assets/images/items/down-corner-ramp-2m-1_64.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-ramp-2m-2_256.png b/www/assets/images/items/down-corner-ramp-2m-2_256.png deleted file mode 100644 index 619c289a..00000000 Binary files a/www/assets/images/items/down-corner-ramp-2m-2_256.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-ramp-2m-2_64.png b/www/assets/images/items/down-corner-ramp-2m-2_64.png deleted file mode 100644 index eb1bdf33..00000000 Binary files a/www/assets/images/items/down-corner-ramp-2m-2_64.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-ramp-2m-3_256.png b/www/assets/images/items/down-corner-ramp-2m-3_256.png deleted file mode 100644 index b930f997..00000000 Binary files a/www/assets/images/items/down-corner-ramp-2m-3_256.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-ramp-2m-3_64.png b/www/assets/images/items/down-corner-ramp-2m-3_64.png deleted file mode 100644 index 4a3ebefb..00000000 Binary files a/www/assets/images/items/down-corner-ramp-2m-3_64.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-ramp-2m-asphalt_256.png b/www/assets/images/items/down-corner-ramp-2m-asphalt_256.png deleted file mode 100644 index 5dc3f5fa..00000000 Binary files a/www/assets/images/items/down-corner-ramp-2m-asphalt_256.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-ramp-2m-asphalt_64.png b/www/assets/images/items/down-corner-ramp-2m-asphalt_64.png deleted file mode 100644 index 8d77215d..00000000 Binary files a/www/assets/images/items/down-corner-ramp-2m-asphalt_64.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-ramp-2m-concrete_256.png b/www/assets/images/items/down-corner-ramp-2m-concrete_256.png deleted file mode 100644 index 78049e65..00000000 Binary files a/www/assets/images/items/down-corner-ramp-2m-concrete_256.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-ramp-2m-concrete_64.png b/www/assets/images/items/down-corner-ramp-2m-concrete_64.png deleted file mode 100644 index 315c347e..00000000 Binary files a/www/assets/images/items/down-corner-ramp-2m-concrete_64.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-ramp-2m-metal_256.png b/www/assets/images/items/down-corner-ramp-2m-metal_256.png deleted file mode 100644 index 619c289a..00000000 Binary files a/www/assets/images/items/down-corner-ramp-2m-metal_256.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-ramp-2m-metal_64.png b/www/assets/images/items/down-corner-ramp-2m-metal_64.png deleted file mode 100644 index bf1d328b..00000000 Binary files a/www/assets/images/items/down-corner-ramp-2m-metal_64.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-ramp-2m-polished_256.png b/www/assets/images/items/down-corner-ramp-2m-polished_256.png deleted file mode 100644 index b930f997..00000000 Binary files a/www/assets/images/items/down-corner-ramp-2m-polished_256.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-ramp-2m-polished_64.png b/www/assets/images/items/down-corner-ramp-2m-polished_64.png deleted file mode 100644 index ad9b169d..00000000 Binary files a/www/assets/images/items/down-corner-ramp-2m-polished_64.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-ramp-2m_256.png b/www/assets/images/items/down-corner-ramp-2m_256.png deleted file mode 100644 index 177f2b7a..00000000 Binary files a/www/assets/images/items/down-corner-ramp-2m_256.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-ramp-2m_64.png b/www/assets/images/items/down-corner-ramp-2m_64.png deleted file mode 100644 index 904af1bb..00000000 Binary files a/www/assets/images/items/down-corner-ramp-2m_64.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-ramp-4m-1_256.png b/www/assets/images/items/down-corner-ramp-4m-1_256.png deleted file mode 100644 index ee241e53..00000000 Binary files a/www/assets/images/items/down-corner-ramp-4m-1_256.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-ramp-4m-1_64.png b/www/assets/images/items/down-corner-ramp-4m-1_64.png deleted file mode 100644 index 285fc38c..00000000 Binary files a/www/assets/images/items/down-corner-ramp-4m-1_64.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-ramp-4m-2_256.png b/www/assets/images/items/down-corner-ramp-4m-2_256.png deleted file mode 100644 index bcba7aff..00000000 Binary files a/www/assets/images/items/down-corner-ramp-4m-2_256.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-ramp-4m-2_64.png b/www/assets/images/items/down-corner-ramp-4m-2_64.png deleted file mode 100644 index a857c7d9..00000000 Binary files a/www/assets/images/items/down-corner-ramp-4m-2_64.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-ramp-4m-3_256.png b/www/assets/images/items/down-corner-ramp-4m-3_256.png deleted file mode 100644 index 768472dc..00000000 Binary files a/www/assets/images/items/down-corner-ramp-4m-3_256.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-ramp-4m-3_64.png b/www/assets/images/items/down-corner-ramp-4m-3_64.png deleted file mode 100644 index 3ae98b0e..00000000 Binary files a/www/assets/images/items/down-corner-ramp-4m-3_64.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-ramp-4m-asphalt_256.png b/www/assets/images/items/down-corner-ramp-4m-asphalt_256.png deleted file mode 100644 index ee241e53..00000000 Binary files a/www/assets/images/items/down-corner-ramp-4m-asphalt_256.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-ramp-4m-asphalt_64.png b/www/assets/images/items/down-corner-ramp-4m-asphalt_64.png deleted file mode 100644 index 285fc38c..00000000 Binary files a/www/assets/images/items/down-corner-ramp-4m-asphalt_64.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-ramp-4m-concrete_256.png b/www/assets/images/items/down-corner-ramp-4m-concrete_256.png deleted file mode 100644 index 394abeee..00000000 Binary files a/www/assets/images/items/down-corner-ramp-4m-concrete_256.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-ramp-4m-concrete_64.png b/www/assets/images/items/down-corner-ramp-4m-concrete_64.png deleted file mode 100644 index 7345d8b7..00000000 Binary files a/www/assets/images/items/down-corner-ramp-4m-concrete_64.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-ramp-4m-metal_256.png b/www/assets/images/items/down-corner-ramp-4m-metal_256.png deleted file mode 100644 index bcba7aff..00000000 Binary files a/www/assets/images/items/down-corner-ramp-4m-metal_256.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-ramp-4m-metal_64.png b/www/assets/images/items/down-corner-ramp-4m-metal_64.png deleted file mode 100644 index fb93691d..00000000 Binary files a/www/assets/images/items/down-corner-ramp-4m-metal_64.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-ramp-4m-polished_256.png b/www/assets/images/items/down-corner-ramp-4m-polished_256.png deleted file mode 100644 index 768472dc..00000000 Binary files a/www/assets/images/items/down-corner-ramp-4m-polished_256.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-ramp-4m-polished_64.png b/www/assets/images/items/down-corner-ramp-4m-polished_64.png deleted file mode 100644 index 3ad54a1c..00000000 Binary files a/www/assets/images/items/down-corner-ramp-4m-polished_64.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-ramp-4m_256.png b/www/assets/images/items/down-corner-ramp-4m_256.png deleted file mode 100644 index c5c2f65c..00000000 Binary files a/www/assets/images/items/down-corner-ramp-4m_256.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-ramp-4m_64.png b/www/assets/images/items/down-corner-ramp-4m_64.png deleted file mode 100644 index bb5b0540..00000000 Binary files a/www/assets/images/items/down-corner-ramp-4m_64.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-ramp-8m-x-1m_256.png b/www/assets/images/items/down-corner-ramp-8m-x-1m_256.png deleted file mode 100644 index ebe4e990..00000000 Binary files a/www/assets/images/items/down-corner-ramp-8m-x-1m_256.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-ramp-8m-x-1m_64.png b/www/assets/images/items/down-corner-ramp-8m-x-1m_64.png deleted file mode 100644 index 623e3f83..00000000 Binary files a/www/assets/images/items/down-corner-ramp-8m-x-1m_64.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-ramp-8m-x-2m_256.png b/www/assets/images/items/down-corner-ramp-8m-x-2m_256.png deleted file mode 100644 index 0f3d5f6f..00000000 Binary files a/www/assets/images/items/down-corner-ramp-8m-x-2m_256.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-ramp-8m-x-2m_64.png b/www/assets/images/items/down-corner-ramp-8m-x-2m_64.png deleted file mode 100644 index 53983e04..00000000 Binary files a/www/assets/images/items/down-corner-ramp-8m-x-2m_64.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-ramp-8m-x-4m_256.png b/www/assets/images/items/down-corner-ramp-8m-x-4m_256.png deleted file mode 100644 index 9e5eea51..00000000 Binary files a/www/assets/images/items/down-corner-ramp-8m-x-4m_256.png and /dev/null differ diff --git a/www/assets/images/items/down-corner-ramp-8m-x-4m_64.png b/www/assets/images/items/down-corner-ramp-8m-x-4m_64.png deleted file mode 100644 index 30524814..00000000 Binary files a/www/assets/images/items/down-corner-ramp-8m-x-4m_64.png and /dev/null differ diff --git a/www/assets/images/items/drone-port_256.png b/www/assets/images/items/drone-port_256.png deleted file mode 100644 index d7ed7f71..00000000 Binary files a/www/assets/images/items/drone-port_256.png and /dev/null differ diff --git a/www/assets/images/items/drone-port_64.png b/www/assets/images/items/drone-port_64.png deleted file mode 100644 index ca7c7cb4..00000000 Binary files a/www/assets/images/items/drone-port_64.png and /dev/null differ diff --git a/www/assets/images/items/drone_256.png b/www/assets/images/items/drone_256.png deleted file mode 100644 index 517d3ec4..00000000 Binary files a/www/assets/images/items/drone_256.png and /dev/null differ diff --git a/www/assets/images/items/drone_64.png b/www/assets/images/items/drone_64.png deleted file mode 100644 index c0ecd29c..00000000 Binary files a/www/assets/images/items/drone_64.png and /dev/null differ diff --git a/www/assets/images/items/electric-locomotive_256.png b/www/assets/images/items/electric-locomotive_256.png deleted file mode 100644 index 2490e800..00000000 Binary files a/www/assets/images/items/electric-locomotive_256.png and /dev/null differ diff --git a/www/assets/images/items/electric-locomotive_64.png b/www/assets/images/items/electric-locomotive_64.png deleted file mode 100644 index ec2027f7..00000000 Binary files a/www/assets/images/items/electric-locomotive_64.png and /dev/null differ diff --git a/www/assets/images/items/electromagnetic-control-rod_256.png b/www/assets/images/items/electromagnetic-control-rod_256.png deleted file mode 100644 index 48ea5489..00000000 Binary files a/www/assets/images/items/electromagnetic-control-rod_256.png and /dev/null differ diff --git a/www/assets/images/items/electromagnetic-control-rod_64.png b/www/assets/images/items/electromagnetic-control-rod_64.png deleted file mode 100644 index 5b7b6120..00000000 Binary files a/www/assets/images/items/electromagnetic-control-rod_64.png and /dev/null differ diff --git a/www/assets/images/items/empty-canister_256.png b/www/assets/images/items/empty-canister_256.png deleted file mode 100644 index 29082fd2..00000000 Binary files a/www/assets/images/items/empty-canister_256.png and /dev/null differ diff --git a/www/assets/images/items/empty-canister_64.png b/www/assets/images/items/empty-canister_64.png deleted file mode 100644 index 52d27443..00000000 Binary files a/www/assets/images/items/empty-canister_64.png and /dev/null differ diff --git a/www/assets/images/items/empty-fluid-tank_256.png b/www/assets/images/items/empty-fluid-tank_256.png deleted file mode 100644 index 3692e270..00000000 Binary files a/www/assets/images/items/empty-fluid-tank_256.png and /dev/null differ diff --git a/www/assets/images/items/empty-fluid-tank_64.png b/www/assets/images/items/empty-fluid-tank_64.png deleted file mode 100644 index 0fd52e2b..00000000 Binary files a/www/assets/images/items/empty-fluid-tank_64.png and /dev/null differ diff --git a/www/assets/images/items/empty-platform-with-catwalk_256.png b/www/assets/images/items/empty-platform-with-catwalk_256.png deleted file mode 100644 index 876d5f9d..00000000 Binary files a/www/assets/images/items/empty-platform-with-catwalk_256.png and /dev/null differ diff --git a/www/assets/images/items/empty-platform-with-catwalk_64.png b/www/assets/images/items/empty-platform-with-catwalk_64.png deleted file mode 100644 index 167b67ab..00000000 Binary files a/www/assets/images/items/empty-platform-with-catwalk_64.png and /dev/null differ diff --git a/www/assets/images/items/empty-platform_256.png b/www/assets/images/items/empty-platform_256.png deleted file mode 100644 index f427053c..00000000 Binary files a/www/assets/images/items/empty-platform_256.png and /dev/null differ diff --git a/www/assets/images/items/empty-platform_64.png b/www/assets/images/items/empty-platform_64.png deleted file mode 100644 index 820c7245..00000000 Binary files a/www/assets/images/items/empty-platform_64.png and /dev/null differ diff --git a/www/assets/images/items/encased-industrial-beam_256.png b/www/assets/images/items/encased-industrial-beam_256.png deleted file mode 100644 index cdb3ceff..00000000 Binary files a/www/assets/images/items/encased-industrial-beam_256.png and /dev/null differ diff --git a/www/assets/images/items/encased-industrial-beam_64.png b/www/assets/images/items/encased-industrial-beam_64.png deleted file mode 100644 index c8a8b2ab..00000000 Binary files a/www/assets/images/items/encased-industrial-beam_64.png and /dev/null differ diff --git a/www/assets/images/items/encased-plutonium-cell_256.png b/www/assets/images/items/encased-plutonium-cell_256.png deleted file mode 100644 index e241f125..00000000 Binary files a/www/assets/images/items/encased-plutonium-cell_256.png and /dev/null differ diff --git a/www/assets/images/items/encased-plutonium-cell_64.png b/www/assets/images/items/encased-plutonium-cell_64.png deleted file mode 100644 index bf5fa9dc..00000000 Binary files a/www/assets/images/items/encased-plutonium-cell_64.png and /dev/null differ diff --git a/www/assets/images/items/encased-uranium-cell_256.png b/www/assets/images/items/encased-uranium-cell_256.png deleted file mode 100644 index 104e501b..00000000 Binary files a/www/assets/images/items/encased-uranium-cell_256.png and /dev/null differ diff --git a/www/assets/images/items/encased-uranium-cell_64.png b/www/assets/images/items/encased-uranium-cell_64.png deleted file mode 100644 index c819198a..00000000 Binary files a/www/assets/images/items/encased-uranium-cell_64.png and /dev/null differ diff --git a/www/assets/images/items/equipment-workshop_256.png b/www/assets/images/items/equipment-workshop_256.png deleted file mode 100644 index dd63394c..00000000 Binary files a/www/assets/images/items/equipment-workshop_256.png and /dev/null differ diff --git a/www/assets/images/items/equipment-workshop_64.png b/www/assets/images/items/equipment-workshop_64.png deleted file mode 100644 index 4b32eb34..00000000 Binary files a/www/assets/images/items/equipment-workshop_64.png and /dev/null differ diff --git a/www/assets/images/items/expanded-power-infrastructure_256.png b/www/assets/images/items/expanded-power-infrastructure_256.png deleted file mode 100644 index 8fc04297..00000000 Binary files a/www/assets/images/items/expanded-power-infrastructure_256.png and /dev/null differ diff --git a/www/assets/images/items/expanded-power-infrastructure_64.png b/www/assets/images/items/expanded-power-infrastructure_64.png deleted file mode 100644 index fdfe317f..00000000 Binary files a/www/assets/images/items/expanded-power-infrastructure_64.png and /dev/null differ diff --git a/www/assets/images/items/expanded-toolbelt-1_256.png b/www/assets/images/items/expanded-toolbelt-1_256.png deleted file mode 100644 index 6aaf583d..00000000 Binary files a/www/assets/images/items/expanded-toolbelt-1_256.png and /dev/null differ diff --git a/www/assets/images/items/expanded-toolbelt-1_64.png b/www/assets/images/items/expanded-toolbelt-1_64.png deleted file mode 100644 index f7a0a5b0..00000000 Binary files a/www/assets/images/items/expanded-toolbelt-1_64.png and /dev/null differ diff --git a/www/assets/images/items/expanded-toolbelt_256.png b/www/assets/images/items/expanded-toolbelt_256.png deleted file mode 100644 index 6aaf583d..00000000 Binary files a/www/assets/images/items/expanded-toolbelt_256.png and /dev/null differ diff --git a/www/assets/images/items/expanded-toolbelt_64.png b/www/assets/images/items/expanded-toolbelt_64.png deleted file mode 100644 index f7a0a5b0..00000000 Binary files a/www/assets/images/items/expanded-toolbelt_64.png and /dev/null differ diff --git a/www/assets/images/items/explorer_256.png b/www/assets/images/items/explorer_256.png deleted file mode 100644 index cb055eb1..00000000 Binary files a/www/assets/images/items/explorer_256.png and /dev/null differ diff --git a/www/assets/images/items/explorer_64.png b/www/assets/images/items/explorer_64.png deleted file mode 100644 index bcc15a96..00000000 Binary files a/www/assets/images/items/explorer_64.png and /dev/null differ diff --git a/www/assets/images/items/fabric-1_256.png b/www/assets/images/items/fabric-1_256.png deleted file mode 100644 index 8f20ed66..00000000 Binary files a/www/assets/images/items/fabric-1_256.png and /dev/null differ diff --git a/www/assets/images/items/fabric-1_64.png b/www/assets/images/items/fabric-1_64.png deleted file mode 100644 index c2625aca..00000000 Binary files a/www/assets/images/items/fabric-1_64.png and /dev/null differ diff --git a/www/assets/images/items/fabric_256.png b/www/assets/images/items/fabric_256.png deleted file mode 100644 index e69e43b5..00000000 Binary files a/www/assets/images/items/fabric_256.png and /dev/null differ diff --git a/www/assets/images/items/fabric_64.png b/www/assets/images/items/fabric_64.png deleted file mode 100644 index 305458ef..00000000 Binary files a/www/assets/images/items/fabric_64.png and /dev/null differ diff --git a/www/assets/images/items/factory-cart_256.png b/www/assets/images/items/factory-cart_256.png deleted file mode 100644 index bcdc1b6a..00000000 Binary files a/www/assets/images/items/factory-cart_256.png and /dev/null differ diff --git a/www/assets/images/items/factory-cart_64.png b/www/assets/images/items/factory-cart_64.png deleted file mode 100644 index 7e95b044..00000000 Binary files a/www/assets/images/items/factory-cart_64.png and /dev/null differ diff --git a/www/assets/images/items/factory-icon-patterns_256.png b/www/assets/images/items/factory-icon-patterns_256.png deleted file mode 100644 index bd92498c..00000000 Binary files a/www/assets/images/items/factory-icon-patterns_256.png and /dev/null differ diff --git a/www/assets/images/items/factory-icon-patterns_64.png b/www/assets/images/items/factory-icon-patterns_64.png deleted file mode 100644 index 3a024e1b..00000000 Binary files a/www/assets/images/items/factory-icon-patterns_64.png and /dev/null differ diff --git a/www/assets/images/items/factory-ladder_256.png b/www/assets/images/items/factory-ladder_256.png deleted file mode 100644 index ee331c13..00000000 Binary files a/www/assets/images/items/factory-ladder_256.png and /dev/null differ diff --git a/www/assets/images/items/factory-ladder_64.png b/www/assets/images/items/factory-ladder_64.png deleted file mode 100644 index c022884c..00000000 Binary files a/www/assets/images/items/factory-ladder_64.png and /dev/null differ diff --git a/www/assets/images/items/factory-zone-patterns_256.png b/www/assets/images/items/factory-zone-patterns_256.png deleted file mode 100644 index 2cd305e7..00000000 Binary files a/www/assets/images/items/factory-zone-patterns_256.png and /dev/null differ diff --git a/www/assets/images/items/factory-zone-patterns_64.png b/www/assets/images/items/factory-zone-patterns_64.png deleted file mode 100644 index 1ece38e1..00000000 Binary files a/www/assets/images/items/factory-zone-patterns_64.png and /dev/null differ diff --git a/www/assets/images/items/fence_256.png b/www/assets/images/items/fence_256.png deleted file mode 100644 index 77ee591c..00000000 Binary files a/www/assets/images/items/fence_256.png and /dev/null differ diff --git a/www/assets/images/items/fence_64.png b/www/assets/images/items/fence_64.png deleted file mode 100644 index 21c1c7e4..00000000 Binary files a/www/assets/images/items/fence_64.png and /dev/null differ diff --git a/www/assets/images/items/ficsit-coupon_256.png b/www/assets/images/items/ficsit-coupon_256.png deleted file mode 100644 index 4dfdbcf2..00000000 Binary files a/www/assets/images/items/ficsit-coupon_256.png and /dev/null differ diff --git a/www/assets/images/items/ficsit-coupon_64.png b/www/assets/images/items/ficsit-coupon_64.png deleted file mode 100644 index 3e3b4997..00000000 Binary files a/www/assets/images/items/ficsit-coupon_64.png and /dev/null differ diff --git a/www/assets/images/items/ficsit-factory-cart_256.png b/www/assets/images/items/ficsit-factory-cart_256.png deleted file mode 100644 index bcdc1b6a..00000000 Binary files a/www/assets/images/items/ficsit-factory-cart_256.png and /dev/null differ diff --git a/www/assets/images/items/ficsit-factory-cart_64.png b/www/assets/images/items/ficsit-factory-cart_64.png deleted file mode 100644 index 7e95b044..00000000 Binary files a/www/assets/images/items/ficsit-factory-cart_64.png and /dev/null differ diff --git a/www/assets/images/items/ficsit-roof-1m_256.png b/www/assets/images/items/ficsit-roof-1m_256.png deleted file mode 100644 index 7d1368b2..00000000 Binary files a/www/assets/images/items/ficsit-roof-1m_256.png and /dev/null differ diff --git a/www/assets/images/items/ficsit-roof-1m_64.png b/www/assets/images/items/ficsit-roof-1m_64.png deleted file mode 100644 index 78a1f417..00000000 Binary files a/www/assets/images/items/ficsit-roof-1m_64.png and /dev/null differ diff --git a/www/assets/images/items/ficsit-roof-2m_256.png b/www/assets/images/items/ficsit-roof-2m_256.png deleted file mode 100644 index 54c4b8ba..00000000 Binary files a/www/assets/images/items/ficsit-roof-2m_256.png and /dev/null differ diff --git a/www/assets/images/items/ficsit-roof-2m_64.png b/www/assets/images/items/ficsit-roof-2m_64.png deleted file mode 100644 index edb3cf6d..00000000 Binary files a/www/assets/images/items/ficsit-roof-2m_64.png and /dev/null differ diff --git a/www/assets/images/items/ficsit-roof-4m_256.png b/www/assets/images/items/ficsit-roof-4m_256.png deleted file mode 100644 index e0804040..00000000 Binary files a/www/assets/images/items/ficsit-roof-4m_256.png and /dev/null differ diff --git a/www/assets/images/items/ficsit-roof-4m_64.png b/www/assets/images/items/ficsit-roof-4m_64.png deleted file mode 100644 index 7d4e295e..00000000 Binary files a/www/assets/images/items/ficsit-roof-4m_64.png and /dev/null differ diff --git a/www/assets/images/items/ficsit-roof-flat_256.png b/www/assets/images/items/ficsit-roof-flat_256.png deleted file mode 100644 index 03011918..00000000 Binary files a/www/assets/images/items/ficsit-roof-flat_256.png and /dev/null differ diff --git a/www/assets/images/items/ficsit-roof-flat_64.png b/www/assets/images/items/ficsit-roof-flat_64.png deleted file mode 100644 index a6345731..00000000 Binary files a/www/assets/images/items/ficsit-roof-flat_64.png and /dev/null differ diff --git a/www/assets/images/items/ficsit-roofs_256.png b/www/assets/images/items/ficsit-roofs_256.png deleted file mode 100644 index 3092540d..00000000 Binary files a/www/assets/images/items/ficsit-roofs_256.png and /dev/null differ diff --git a/www/assets/images/items/ficsit-roofs_64.png b/www/assets/images/items/ficsit-roofs_64.png deleted file mode 100644 index 2ecbe0d2..00000000 Binary files a/www/assets/images/items/ficsit-roofs_64.png and /dev/null differ diff --git a/www/assets/images/items/ficsmas-gift-tree_256.png b/www/assets/images/items/ficsmas-gift-tree_256.png deleted file mode 100644 index f66c1ad7..00000000 Binary files a/www/assets/images/items/ficsmas-gift-tree_256.png and /dev/null differ diff --git a/www/assets/images/items/ficsmas-gift-tree_64.png b/www/assets/images/items/ficsmas-gift-tree_64.png deleted file mode 100644 index 800054cd..00000000 Binary files a/www/assets/images/items/ficsmas-gift-tree_64.png and /dev/null differ diff --git a/www/assets/images/items/ficsmas-lights_256.png b/www/assets/images/items/ficsmas-lights_256.png deleted file mode 100644 index 9ffb6b6e..00000000 Binary files a/www/assets/images/items/ficsmas-lights_256.png and /dev/null differ diff --git a/www/assets/images/items/ficsmas-lights_64.png b/www/assets/images/items/ficsmas-lights_64.png deleted file mode 100644 index 4c63e4f4..00000000 Binary files a/www/assets/images/items/ficsmas-lights_64.png and /dev/null differ diff --git a/www/assets/images/items/ficsmas-tree-base_256.png b/www/assets/images/items/ficsmas-tree-base_256.png deleted file mode 100644 index 1c69ae87..00000000 Binary files a/www/assets/images/items/ficsmas-tree-base_256.png and /dev/null differ diff --git a/www/assets/images/items/ficsmas-tree-base_64.png b/www/assets/images/items/ficsmas-tree-base_64.png deleted file mode 100644 index 01e2e1ad..00000000 Binary files a/www/assets/images/items/ficsmas-tree-base_64.png and /dev/null differ diff --git a/www/assets/images/items/ficsmas-wreath_256.png b/www/assets/images/items/ficsmas-wreath_256.png deleted file mode 100644 index eb3146cc..00000000 Binary files a/www/assets/images/items/ficsmas-wreath_256.png and /dev/null differ diff --git a/www/assets/images/items/ficsmas-wreath_64.png b/www/assets/images/items/ficsmas-wreath_64.png deleted file mode 100644 index 73c0618f..00000000 Binary files a/www/assets/images/items/ficsmas-wreath_64.png and /dev/null differ diff --git a/www/assets/images/items/field-research_256.png b/www/assets/images/items/field-research_256.png deleted file mode 100644 index 55553579..00000000 Binary files a/www/assets/images/items/field-research_256.png and /dev/null differ diff --git a/www/assets/images/items/field-research_64.png b/www/assets/images/items/field-research_64.png deleted file mode 100644 index e11dba0b..00000000 Binary files a/www/assets/images/items/field-research_64.png and /dev/null differ diff --git a/www/assets/images/items/flood-light-tower_256.png b/www/assets/images/items/flood-light-tower_256.png deleted file mode 100644 index 3c2b907b..00000000 Binary files a/www/assets/images/items/flood-light-tower_256.png and /dev/null differ diff --git a/www/assets/images/items/flood-light-tower_64.png b/www/assets/images/items/flood-light-tower_64.png deleted file mode 100644 index 9f72cfc1..00000000 Binary files a/www/assets/images/items/flood-light-tower_64.png and /dev/null differ diff --git a/www/assets/images/items/flood-lights_256.png b/www/assets/images/items/flood-lights_256.png deleted file mode 100644 index 856629fe..00000000 Binary files a/www/assets/images/items/flood-lights_256.png and /dev/null differ diff --git a/www/assets/images/items/flood-lights_64.png b/www/assets/images/items/flood-lights_64.png deleted file mode 100644 index 83a37bf4..00000000 Binary files a/www/assets/images/items/flood-lights_64.png and /dev/null differ diff --git a/www/assets/images/items/flower-petals-1_256.png b/www/assets/images/items/flower-petals-1_256.png deleted file mode 100644 index 96fd07d3..00000000 Binary files a/www/assets/images/items/flower-petals-1_256.png and /dev/null differ diff --git a/www/assets/images/items/flower-petals-1_64.png b/www/assets/images/items/flower-petals-1_64.png deleted file mode 100644 index 0edd4c0f..00000000 Binary files a/www/assets/images/items/flower-petals-1_64.png and /dev/null differ diff --git a/www/assets/images/items/flower-petals_256.png b/www/assets/images/items/flower-petals_256.png deleted file mode 100644 index da99fcdd..00000000 Binary files a/www/assets/images/items/flower-petals_256.png and /dev/null differ diff --git a/www/assets/images/items/flower-petals_64.png b/www/assets/images/items/flower-petals_64.png deleted file mode 100644 index 8da37fef..00000000 Binary files a/www/assets/images/items/flower-petals_64.png and /dev/null differ diff --git a/www/assets/images/items/fluid-buffer_256.png b/www/assets/images/items/fluid-buffer_256.png deleted file mode 100644 index da35403d..00000000 Binary files a/www/assets/images/items/fluid-buffer_256.png and /dev/null differ diff --git a/www/assets/images/items/fluid-buffer_64.png b/www/assets/images/items/fluid-buffer_64.png deleted file mode 100644 index c548a06d..00000000 Binary files a/www/assets/images/items/fluid-buffer_64.png and /dev/null differ diff --git a/www/assets/images/items/fluid-freight-platform_256.png b/www/assets/images/items/fluid-freight-platform_256.png deleted file mode 100644 index 5cf4452d..00000000 Binary files a/www/assets/images/items/fluid-freight-platform_256.png and /dev/null differ diff --git a/www/assets/images/items/fluid-freight-platform_64.png b/www/assets/images/items/fluid-freight-platform_64.png deleted file mode 100644 index 652f1504..00000000 Binary files a/www/assets/images/items/fluid-freight-platform_64.png and /dev/null differ diff --git a/www/assets/images/items/foundation-1m-1_256.png b/www/assets/images/items/foundation-1m-1_256.png deleted file mode 100644 index caa20a86..00000000 Binary files a/www/assets/images/items/foundation-1m-1_256.png and /dev/null differ diff --git a/www/assets/images/items/foundation-1m-1_64.png b/www/assets/images/items/foundation-1m-1_64.png deleted file mode 100644 index 637b8677..00000000 Binary files a/www/assets/images/items/foundation-1m-1_64.png and /dev/null differ diff --git a/www/assets/images/items/foundation-1m-2_256.png b/www/assets/images/items/foundation-1m-2_256.png deleted file mode 100644 index 534963ba..00000000 Binary files a/www/assets/images/items/foundation-1m-2_256.png and /dev/null differ diff --git a/www/assets/images/items/foundation-1m-2_64.png b/www/assets/images/items/foundation-1m-2_64.png deleted file mode 100644 index 902aa02a..00000000 Binary files a/www/assets/images/items/foundation-1m-2_64.png and /dev/null differ diff --git a/www/assets/images/items/foundation-1m-3_256.png b/www/assets/images/items/foundation-1m-3_256.png deleted file mode 100644 index 6841042d..00000000 Binary files a/www/assets/images/items/foundation-1m-3_256.png and /dev/null differ diff --git a/www/assets/images/items/foundation-1m-3_64.png b/www/assets/images/items/foundation-1m-3_64.png deleted file mode 100644 index e407a090..00000000 Binary files a/www/assets/images/items/foundation-1m-3_64.png and /dev/null differ diff --git a/www/assets/images/items/foundation-1m-asphalt_256.png b/www/assets/images/items/foundation-1m-asphalt_256.png deleted file mode 100644 index caa20a86..00000000 Binary files a/www/assets/images/items/foundation-1m-asphalt_256.png and /dev/null differ diff --git a/www/assets/images/items/foundation-1m-asphalt_64.png b/www/assets/images/items/foundation-1m-asphalt_64.png deleted file mode 100644 index 637b8677..00000000 Binary files a/www/assets/images/items/foundation-1m-asphalt_64.png and /dev/null differ diff --git a/www/assets/images/items/foundation-1m-concrete_256.png b/www/assets/images/items/foundation-1m-concrete_256.png deleted file mode 100644 index 534963ba..00000000 Binary files a/www/assets/images/items/foundation-1m-concrete_256.png and /dev/null differ diff --git a/www/assets/images/items/foundation-1m-concrete_64.png b/www/assets/images/items/foundation-1m-concrete_64.png deleted file mode 100644 index 29e976b1..00000000 Binary files a/www/assets/images/items/foundation-1m-concrete_64.png and /dev/null differ diff --git a/www/assets/images/items/foundation-1m-metal_256.png b/www/assets/images/items/foundation-1m-metal_256.png deleted file mode 100644 index 6841042d..00000000 Binary files a/www/assets/images/items/foundation-1m-metal_256.png and /dev/null differ diff --git a/www/assets/images/items/foundation-1m-metal_64.png b/www/assets/images/items/foundation-1m-metal_64.png deleted file mode 100644 index 2fb1734d..00000000 Binary files a/www/assets/images/items/foundation-1m-metal_64.png and /dev/null differ diff --git a/www/assets/images/items/foundation-1m-polished_256.png b/www/assets/images/items/foundation-1m-polished_256.png deleted file mode 100644 index 8594e07a..00000000 Binary files a/www/assets/images/items/foundation-1m-polished_256.png and /dev/null differ diff --git a/www/assets/images/items/foundation-1m-polished_64.png b/www/assets/images/items/foundation-1m-polished_64.png deleted file mode 100644 index 30c560cf..00000000 Binary files a/www/assets/images/items/foundation-1m-polished_64.png and /dev/null differ diff --git a/www/assets/images/items/foundation-1m_256.png b/www/assets/images/items/foundation-1m_256.png deleted file mode 100644 index faa48491..00000000 Binary files a/www/assets/images/items/foundation-1m_256.png and /dev/null differ diff --git a/www/assets/images/items/foundation-1m_64.png b/www/assets/images/items/foundation-1m_64.png deleted file mode 100644 index f1d6bcda..00000000 Binary files a/www/assets/images/items/foundation-1m_64.png and /dev/null differ diff --git a/www/assets/images/items/foundation-2m-1_256.png b/www/assets/images/items/foundation-2m-1_256.png deleted file mode 100644 index fdc74a0c..00000000 Binary files a/www/assets/images/items/foundation-2m-1_256.png and /dev/null differ diff --git a/www/assets/images/items/foundation-2m-1_64.png b/www/assets/images/items/foundation-2m-1_64.png deleted file mode 100644 index 50559192..00000000 Binary files a/www/assets/images/items/foundation-2m-1_64.png and /dev/null differ diff --git a/www/assets/images/items/foundation-2m-2_256.png b/www/assets/images/items/foundation-2m-2_256.png deleted file mode 100644 index faedc01e..00000000 Binary files a/www/assets/images/items/foundation-2m-2_256.png and /dev/null differ diff --git a/www/assets/images/items/foundation-2m-2_64.png b/www/assets/images/items/foundation-2m-2_64.png deleted file mode 100644 index f5e87db5..00000000 Binary files a/www/assets/images/items/foundation-2m-2_64.png and /dev/null differ diff --git a/www/assets/images/items/foundation-2m-3_256.png b/www/assets/images/items/foundation-2m-3_256.png deleted file mode 100644 index 11c04182..00000000 Binary files a/www/assets/images/items/foundation-2m-3_256.png and /dev/null differ diff --git a/www/assets/images/items/foundation-2m-3_64.png b/www/assets/images/items/foundation-2m-3_64.png deleted file mode 100644 index 1e791b6c..00000000 Binary files a/www/assets/images/items/foundation-2m-3_64.png and /dev/null differ diff --git a/www/assets/images/items/foundation-2m-asphalt_256.png b/www/assets/images/items/foundation-2m-asphalt_256.png deleted file mode 100644 index fdc74a0c..00000000 Binary files a/www/assets/images/items/foundation-2m-asphalt_256.png and /dev/null differ diff --git a/www/assets/images/items/foundation-2m-asphalt_64.png b/www/assets/images/items/foundation-2m-asphalt_64.png deleted file mode 100644 index 50559192..00000000 Binary files a/www/assets/images/items/foundation-2m-asphalt_64.png and /dev/null differ diff --git a/www/assets/images/items/foundation-2m-concrete_256.png b/www/assets/images/items/foundation-2m-concrete_256.png deleted file mode 100644 index faedc01e..00000000 Binary files a/www/assets/images/items/foundation-2m-concrete_256.png and /dev/null differ diff --git a/www/assets/images/items/foundation-2m-concrete_64.png b/www/assets/images/items/foundation-2m-concrete_64.png deleted file mode 100644 index 5cfd0f50..00000000 Binary files a/www/assets/images/items/foundation-2m-concrete_64.png and /dev/null differ diff --git a/www/assets/images/items/foundation-2m-metal_256.png b/www/assets/images/items/foundation-2m-metal_256.png deleted file mode 100644 index 11c04182..00000000 Binary files a/www/assets/images/items/foundation-2m-metal_256.png and /dev/null differ diff --git a/www/assets/images/items/foundation-2m-metal_64.png b/www/assets/images/items/foundation-2m-metal_64.png deleted file mode 100644 index 994acbb2..00000000 Binary files a/www/assets/images/items/foundation-2m-metal_64.png and /dev/null differ diff --git a/www/assets/images/items/foundation-2m_256.png b/www/assets/images/items/foundation-2m_256.png deleted file mode 100644 index f637d97f..00000000 Binary files a/www/assets/images/items/foundation-2m_256.png and /dev/null differ diff --git a/www/assets/images/items/foundation-2m_64.png b/www/assets/images/items/foundation-2m_64.png deleted file mode 100644 index db7b5eee..00000000 Binary files a/www/assets/images/items/foundation-2m_64.png and /dev/null differ diff --git a/www/assets/images/items/foundation-4m-1_256.png b/www/assets/images/items/foundation-4m-1_256.png deleted file mode 100644 index cfd676b5..00000000 Binary files a/www/assets/images/items/foundation-4m-1_256.png and /dev/null differ diff --git a/www/assets/images/items/foundation-4m-1_64.png b/www/assets/images/items/foundation-4m-1_64.png deleted file mode 100644 index 2530289f..00000000 Binary files a/www/assets/images/items/foundation-4m-1_64.png and /dev/null differ diff --git a/www/assets/images/items/foundation-4m-2_256.png b/www/assets/images/items/foundation-4m-2_256.png deleted file mode 100644 index e936c37f..00000000 Binary files a/www/assets/images/items/foundation-4m-2_256.png and /dev/null differ diff --git a/www/assets/images/items/foundation-4m-2_64.png b/www/assets/images/items/foundation-4m-2_64.png deleted file mode 100644 index eab5528f..00000000 Binary files a/www/assets/images/items/foundation-4m-2_64.png and /dev/null differ diff --git a/www/assets/images/items/foundation-4m-3_256.png b/www/assets/images/items/foundation-4m-3_256.png deleted file mode 100644 index e56402d4..00000000 Binary files a/www/assets/images/items/foundation-4m-3_256.png and /dev/null differ diff --git a/www/assets/images/items/foundation-4m-3_64.png b/www/assets/images/items/foundation-4m-3_64.png deleted file mode 100644 index add3caa0..00000000 Binary files a/www/assets/images/items/foundation-4m-3_64.png and /dev/null differ diff --git a/www/assets/images/items/foundation-4m-asphalt_256.png b/www/assets/images/items/foundation-4m-asphalt_256.png deleted file mode 100644 index cfd676b5..00000000 Binary files a/www/assets/images/items/foundation-4m-asphalt_256.png and /dev/null differ diff --git a/www/assets/images/items/foundation-4m-asphalt_64.png b/www/assets/images/items/foundation-4m-asphalt_64.png deleted file mode 100644 index 2530289f..00000000 Binary files a/www/assets/images/items/foundation-4m-asphalt_64.png and /dev/null differ diff --git a/www/assets/images/items/foundation-4m-concrete_256.png b/www/assets/images/items/foundation-4m-concrete_256.png deleted file mode 100644 index e936c37f..00000000 Binary files a/www/assets/images/items/foundation-4m-concrete_256.png and /dev/null differ diff --git a/www/assets/images/items/foundation-4m-concrete_64.png b/www/assets/images/items/foundation-4m-concrete_64.png deleted file mode 100644 index 55600d8d..00000000 Binary files a/www/assets/images/items/foundation-4m-concrete_64.png and /dev/null differ diff --git a/www/assets/images/items/foundation-4m-metal_256.png b/www/assets/images/items/foundation-4m-metal_256.png deleted file mode 100644 index e56402d4..00000000 Binary files a/www/assets/images/items/foundation-4m-metal_256.png and /dev/null differ diff --git a/www/assets/images/items/foundation-4m-metal_64.png b/www/assets/images/items/foundation-4m-metal_64.png deleted file mode 100644 index 333f5a0a..00000000 Binary files a/www/assets/images/items/foundation-4m-metal_64.png and /dev/null differ diff --git a/www/assets/images/items/foundation-4m_256.png b/www/assets/images/items/foundation-4m_256.png deleted file mode 100644 index a45ba192..00000000 Binary files a/www/assets/images/items/foundation-4m_256.png and /dev/null differ diff --git a/www/assets/images/items/foundation-4m_64.png b/www/assets/images/items/foundation-4m_64.png deleted file mode 100644 index 6feb20fc..00000000 Binary files a/www/assets/images/items/foundation-4m_64.png and /dev/null differ diff --git a/www/assets/images/items/foundation-8m-x-1m_256.png b/www/assets/images/items/foundation-8m-x-1m_256.png deleted file mode 100644 index 32d24e48..00000000 Binary files a/www/assets/images/items/foundation-8m-x-1m_256.png and /dev/null differ diff --git a/www/assets/images/items/foundation-8m-x-1m_64.png b/www/assets/images/items/foundation-8m-x-1m_64.png deleted file mode 100644 index 99931a32..00000000 Binary files a/www/assets/images/items/foundation-8m-x-1m_64.png and /dev/null differ diff --git a/www/assets/images/items/foundation-8m-x-2m_256.png b/www/assets/images/items/foundation-8m-x-2m_256.png deleted file mode 100644 index f181ea5f..00000000 Binary files a/www/assets/images/items/foundation-8m-x-2m_256.png and /dev/null differ diff --git a/www/assets/images/items/foundation-8m-x-2m_64.png b/www/assets/images/items/foundation-8m-x-2m_64.png deleted file mode 100644 index 77cc3b5b..00000000 Binary files a/www/assets/images/items/foundation-8m-x-2m_64.png and /dev/null differ diff --git a/www/assets/images/items/foundation-8m-x-4m_256.png b/www/assets/images/items/foundation-8m-x-4m_256.png deleted file mode 100644 index b6c51aed..00000000 Binary files a/www/assets/images/items/foundation-8m-x-4m_256.png and /dev/null differ diff --git a/www/assets/images/items/foundation-8m-x-4m_64.png b/www/assets/images/items/foundation-8m-x-4m_64.png deleted file mode 100644 index 6cc00733..00000000 Binary files a/www/assets/images/items/foundation-8m-x-4m_64.png and /dev/null differ diff --git a/www/assets/images/items/foundry_256.png b/www/assets/images/items/foundry_256.png deleted file mode 100644 index c617150c..00000000 Binary files a/www/assets/images/items/foundry_256.png and /dev/null differ diff --git a/www/assets/images/items/foundry_64.png b/www/assets/images/items/foundry_64.png deleted file mode 100644 index ef504d70..00000000 Binary files a/www/assets/images/items/foundry_64.png and /dev/null differ diff --git a/www/assets/images/items/frame-floor_256.png b/www/assets/images/items/frame-floor_256.png deleted file mode 100644 index 16ee3549..00000000 Binary files a/www/assets/images/items/frame-floor_256.png and /dev/null differ diff --git a/www/assets/images/items/frame-floor_64.png b/www/assets/images/items/frame-floor_64.png deleted file mode 100644 index 4fd46887..00000000 Binary files a/www/assets/images/items/frame-floor_64.png and /dev/null differ diff --git a/www/assets/images/items/frame-foundation-8m-x-4m_256.png b/www/assets/images/items/frame-foundation-8m-x-4m_256.png deleted file mode 100644 index 48184f8c..00000000 Binary files a/www/assets/images/items/frame-foundation-8m-x-4m_256.png and /dev/null differ diff --git a/www/assets/images/items/frame-foundation-8m-x-4m_64.png b/www/assets/images/items/frame-foundation-8m-x-4m_64.png deleted file mode 100644 index 79f839a0..00000000 Binary files a/www/assets/images/items/frame-foundation-8m-x-4m_64.png and /dev/null differ diff --git a/www/assets/images/items/frame-foundation_256.png b/www/assets/images/items/frame-foundation_256.png deleted file mode 100644 index 1f1a64cd..00000000 Binary files a/www/assets/images/items/frame-foundation_256.png and /dev/null differ diff --git a/www/assets/images/items/frame-foundation_64.png b/www/assets/images/items/frame-foundation_64.png deleted file mode 100644 index 9e3e1d9d..00000000 Binary files a/www/assets/images/items/frame-foundation_64.png and /dev/null differ diff --git a/www/assets/images/items/frame-pillar-set_256.png b/www/assets/images/items/frame-pillar-set_256.png deleted file mode 100644 index 4333f676..00000000 Binary files a/www/assets/images/items/frame-pillar-set_256.png and /dev/null differ diff --git a/www/assets/images/items/frame-pillar-set_64.png b/www/assets/images/items/frame-pillar-set_64.png deleted file mode 100644 index 2e24dee4..00000000 Binary files a/www/assets/images/items/frame-pillar-set_64.png and /dev/null differ diff --git a/www/assets/images/items/frame-ramp_256.png b/www/assets/images/items/frame-ramp_256.png deleted file mode 100644 index 618a5416..00000000 Binary files a/www/assets/images/items/frame-ramp_256.png and /dev/null differ diff --git a/www/assets/images/items/frame-ramp_64.png b/www/assets/images/items/frame-ramp_64.png deleted file mode 100644 index 36a3e12b..00000000 Binary files a/www/assets/images/items/frame-ramp_64.png and /dev/null differ diff --git a/www/assets/images/items/frame-wall_256.png b/www/assets/images/items/frame-wall_256.png deleted file mode 100644 index e4cd63a9..00000000 Binary files a/www/assets/images/items/frame-wall_256.png and /dev/null differ diff --git a/www/assets/images/items/frame-wall_64.png b/www/assets/images/items/frame-wall_64.png deleted file mode 100644 index 98cdab75..00000000 Binary files a/www/assets/images/items/frame-wall_64.png and /dev/null differ diff --git a/www/assets/images/items/frame-window-1_256.png b/www/assets/images/items/frame-window-1_256.png deleted file mode 100644 index f410aef7..00000000 Binary files a/www/assets/images/items/frame-window-1_256.png and /dev/null differ diff --git a/www/assets/images/items/frame-window-1_64.png b/www/assets/images/items/frame-window-1_64.png deleted file mode 100644 index e97d9759..00000000 Binary files a/www/assets/images/items/frame-window-1_64.png and /dev/null differ diff --git a/www/assets/images/items/frame-window-concrete_256.png b/www/assets/images/items/frame-window-concrete_256.png deleted file mode 100644 index b365d11f..00000000 Binary files a/www/assets/images/items/frame-window-concrete_256.png and /dev/null differ diff --git a/www/assets/images/items/frame-window-concrete_64.png b/www/assets/images/items/frame-window-concrete_64.png deleted file mode 100644 index bfc05665..00000000 Binary files a/www/assets/images/items/frame-window-concrete_64.png and /dev/null differ diff --git a/www/assets/images/items/frame-window-steel_256.png b/www/assets/images/items/frame-window-steel_256.png deleted file mode 100644 index c226c4ac..00000000 Binary files a/www/assets/images/items/frame-window-steel_256.png and /dev/null differ diff --git a/www/assets/images/items/frame-window-steel_64.png b/www/assets/images/items/frame-window-steel_64.png deleted file mode 100644 index af343ef2..00000000 Binary files a/www/assets/images/items/frame-window-steel_64.png and /dev/null differ diff --git a/www/assets/images/items/frame-window_256.png b/www/assets/images/items/frame-window_256.png deleted file mode 100644 index f410aef7..00000000 Binary files a/www/assets/images/items/frame-window_256.png and /dev/null differ diff --git a/www/assets/images/items/frame-window_64.png b/www/assets/images/items/frame-window_64.png deleted file mode 100644 index 3ac3f2db..00000000 Binary files a/www/assets/images/items/frame-window_64.png and /dev/null differ diff --git a/www/assets/images/items/freight-car_256.png b/www/assets/images/items/freight-car_256.png deleted file mode 100644 index e681c609..00000000 Binary files a/www/assets/images/items/freight-car_256.png and /dev/null differ diff --git a/www/assets/images/items/freight-car_64.png b/www/assets/images/items/freight-car_64.png deleted file mode 100644 index f2ca0ac5..00000000 Binary files a/www/assets/images/items/freight-car_64.png and /dev/null differ diff --git a/www/assets/images/items/freight-platform_256.png b/www/assets/images/items/freight-platform_256.png deleted file mode 100644 index 6c69df82..00000000 Binary files a/www/assets/images/items/freight-platform_256.png and /dev/null differ diff --git a/www/assets/images/items/freight-platform_64.png b/www/assets/images/items/freight-platform_64.png deleted file mode 100644 index ef1fc51a..00000000 Binary files a/www/assets/images/items/freight-platform_64.png and /dev/null differ diff --git a/www/assets/images/items/frequency-mapping_256.png b/www/assets/images/items/frequency-mapping_256.png deleted file mode 100644 index d40449c7..00000000 Binary files a/www/assets/images/items/frequency-mapping_256.png and /dev/null differ diff --git a/www/assets/images/items/frequency-mapping_64.png b/www/assets/images/items/frequency-mapping_64.png deleted file mode 100644 index ae399391..00000000 Binary files a/www/assets/images/items/frequency-mapping_64.png and /dev/null differ diff --git a/www/assets/images/items/fuel-generator_256.png b/www/assets/images/items/fuel-generator_256.png deleted file mode 100644 index 6b3e5340..00000000 Binary files a/www/assets/images/items/fuel-generator_256.png and /dev/null differ diff --git a/www/assets/images/items/fuel-generator_64.png b/www/assets/images/items/fuel-generator_64.png deleted file mode 100644 index 4b4ab71a..00000000 Binary files a/www/assets/images/items/fuel-generator_64.png and /dev/null differ diff --git a/www/assets/images/items/fuel_256.png b/www/assets/images/items/fuel_256.png deleted file mode 100644 index 45f88ce2..00000000 Binary files a/www/assets/images/items/fuel_256.png and /dev/null differ diff --git a/www/assets/images/items/fuel_64.png b/www/assets/images/items/fuel_64.png deleted file mode 100644 index c8ee8198..00000000 Binary files a/www/assets/images/items/fuel_64.png and /dev/null differ diff --git a/www/assets/images/items/full-frame-window_256.png b/www/assets/images/items/full-frame-window_256.png deleted file mode 100644 index f1f99e76..00000000 Binary files a/www/assets/images/items/full-frame-window_256.png and /dev/null differ diff --git a/www/assets/images/items/full-frame-window_64.png b/www/assets/images/items/full-frame-window_64.png deleted file mode 100644 index c03751f3..00000000 Binary files a/www/assets/images/items/full-frame-window_64.png and /dev/null differ diff --git a/www/assets/images/items/fused-modular-frame_256.png b/www/assets/images/items/fused-modular-frame_256.png deleted file mode 100644 index 3c5bd0be..00000000 Binary files a/www/assets/images/items/fused-modular-frame_256.png and /dev/null differ diff --git a/www/assets/images/items/fused-modular-frame_64.png b/www/assets/images/items/fused-modular-frame_64.png deleted file mode 100644 index 91744c4e..00000000 Binary files a/www/assets/images/items/fused-modular-frame_64.png and /dev/null differ diff --git a/www/assets/images/items/gas-filter_256.png b/www/assets/images/items/gas-filter_256.png deleted file mode 100644 index 5bf46128..00000000 Binary files a/www/assets/images/items/gas-filter_256.png and /dev/null differ diff --git a/www/assets/images/items/gas-filter_64.png b/www/assets/images/items/gas-filter_64.png deleted file mode 100644 index 98b9efbe..00000000 Binary files a/www/assets/images/items/gas-filter_64.png and /dev/null differ diff --git a/www/assets/images/items/gas-mask-1_256.png b/www/assets/images/items/gas-mask-1_256.png deleted file mode 100644 index 55553579..00000000 Binary files a/www/assets/images/items/gas-mask-1_256.png and /dev/null differ diff --git a/www/assets/images/items/gas-mask-1_64.png b/www/assets/images/items/gas-mask-1_64.png deleted file mode 100644 index e11dba0b..00000000 Binary files a/www/assets/images/items/gas-mask-1_64.png and /dev/null differ diff --git a/www/assets/images/items/gas-mask_256.png b/www/assets/images/items/gas-mask_256.png deleted file mode 100644 index 34f85666..00000000 Binary files a/www/assets/images/items/gas-mask_256.png and /dev/null differ diff --git a/www/assets/images/items/gas-mask_64.png b/www/assets/images/items/gas-mask_64.png deleted file mode 100644 index 857d345b..00000000 Binary files a/www/assets/images/items/gas-mask_64.png and /dev/null differ diff --git a/www/assets/images/items/gate-hole-wall-1_256.png b/www/assets/images/items/gate-hole-wall-1_256.png deleted file mode 100644 index 59f68b6f..00000000 Binary files a/www/assets/images/items/gate-hole-wall-1_256.png and /dev/null differ diff --git a/www/assets/images/items/gate-hole-wall-1_64.png b/www/assets/images/items/gate-hole-wall-1_64.png deleted file mode 100644 index 55fe9f91..00000000 Binary files a/www/assets/images/items/gate-hole-wall-1_64.png and /dev/null differ diff --git a/www/assets/images/items/gate-hole-wall-concrete_256.png b/www/assets/images/items/gate-hole-wall-concrete_256.png deleted file mode 100644 index bc282bc1..00000000 Binary files a/www/assets/images/items/gate-hole-wall-concrete_256.png and /dev/null differ diff --git a/www/assets/images/items/gate-hole-wall-concrete_64.png b/www/assets/images/items/gate-hole-wall-concrete_64.png deleted file mode 100644 index 43a59abc..00000000 Binary files a/www/assets/images/items/gate-hole-wall-concrete_64.png and /dev/null differ diff --git a/www/assets/images/items/gate-hole-wall-steel_256.png b/www/assets/images/items/gate-hole-wall-steel_256.png deleted file mode 100644 index 5b72a93f..00000000 Binary files a/www/assets/images/items/gate-hole-wall-steel_256.png and /dev/null differ diff --git a/www/assets/images/items/gate-hole-wall-steel_64.png b/www/assets/images/items/gate-hole-wall-steel_64.png deleted file mode 100644 index 71cbcaf4..00000000 Binary files a/www/assets/images/items/gate-hole-wall-steel_64.png and /dev/null differ diff --git a/www/assets/images/items/gate-hole-wall_256.png b/www/assets/images/items/gate-hole-wall_256.png deleted file mode 100644 index 59f68b6f..00000000 Binary files a/www/assets/images/items/gate-hole-wall_256.png and /dev/null differ diff --git a/www/assets/images/items/gate-hole-wall_64.png b/www/assets/images/items/gate-hole-wall_64.png deleted file mode 100644 index b8992bf9..00000000 Binary files a/www/assets/images/items/gate-hole-wall_64.png and /dev/null differ diff --git a/www/assets/images/items/gate-wall_256.png b/www/assets/images/items/gate-wall_256.png deleted file mode 100644 index 0f4dd5dd..00000000 Binary files a/www/assets/images/items/gate-wall_256.png and /dev/null differ diff --git a/www/assets/images/items/gate-wall_64.png b/www/assets/images/items/gate-wall_64.png deleted file mode 100644 index 0d558138..00000000 Binary files a/www/assets/images/items/gate-wall_64.png and /dev/null differ diff --git a/www/assets/images/items/gates_256.png b/www/assets/images/items/gates_256.png deleted file mode 100644 index 3e3b4b44..00000000 Binary files a/www/assets/images/items/gates_256.png and /dev/null differ diff --git a/www/assets/images/items/gates_64.png b/www/assets/images/items/gates_64.png deleted file mode 100644 index fc99e23c..00000000 Binary files a/www/assets/images/items/gates_64.png and /dev/null differ diff --git a/www/assets/images/items/geothermal-generator-1_256.png b/www/assets/images/items/geothermal-generator-1_256.png deleted file mode 100644 index df339f2a..00000000 Binary files a/www/assets/images/items/geothermal-generator-1_256.png and /dev/null differ diff --git a/www/assets/images/items/geothermal-generator-1_64.png b/www/assets/images/items/geothermal-generator-1_64.png deleted file mode 100644 index 34e24946..00000000 Binary files a/www/assets/images/items/geothermal-generator-1_64.png and /dev/null differ diff --git a/www/assets/images/items/geothermal-generator_256.png b/www/assets/images/items/geothermal-generator_256.png deleted file mode 100644 index 8041e550..00000000 Binary files a/www/assets/images/items/geothermal-generator_256.png and /dev/null differ diff --git a/www/assets/images/items/geothermal-generator_64.png b/www/assets/images/items/geothermal-generator_64.png deleted file mode 100644 index 75ee3d4a..00000000 Binary files a/www/assets/images/items/geothermal-generator_64.png and /dev/null differ diff --git a/www/assets/images/items/get-'employee-of-the-planet'-cup_256.png b/www/assets/images/items/get-'employee-of-the-planet'-cup_256.png deleted file mode 100644 index abde8c6e..00000000 Binary files a/www/assets/images/items/get-'employee-of-the-planet'-cup_256.png and /dev/null differ diff --git a/www/assets/images/items/get-'employee-of-the-planet'-cup_64.png b/www/assets/images/items/get-'employee-of-the-planet'-cup_64.png deleted file mode 100644 index 5fc3ff3c..00000000 Binary files a/www/assets/images/items/get-'employee-of-the-planet'-cup_64.png and /dev/null differ diff --git a/www/assets/images/items/get-adequate-pioneering_256.png b/www/assets/images/items/get-adequate-pioneering_256.png deleted file mode 100644 index 0280836d..00000000 Binary files a/www/assets/images/items/get-adequate-pioneering_256.png and /dev/null differ diff --git a/www/assets/images/items/get-adequate-pioneering_64.png b/www/assets/images/items/get-adequate-pioneering_64.png deleted file mode 100644 index cb469d71..00000000 Binary files a/www/assets/images/items/get-adequate-pioneering_64.png and /dev/null differ diff --git a/www/assets/images/items/get-advanced-ammo-pack_256.png b/www/assets/images/items/get-advanced-ammo-pack_256.png deleted file mode 100644 index 5896d892..00000000 Binary files a/www/assets/images/items/get-advanced-ammo-pack_256.png and /dev/null differ diff --git a/www/assets/images/items/get-advanced-ammo-pack_64.png b/www/assets/images/items/get-advanced-ammo-pack_64.png deleted file mode 100644 index 432c59fa..00000000 Binary files a/www/assets/images/items/get-advanced-ammo-pack_64.png and /dev/null differ diff --git a/www/assets/images/items/get-ai-limiter_256.png b/www/assets/images/items/get-ai-limiter_256.png deleted file mode 100644 index 43874379..00000000 Binary files a/www/assets/images/items/get-ai-limiter_256.png and /dev/null differ diff --git a/www/assets/images/items/get-ai-limiter_64.png b/www/assets/images/items/get-ai-limiter_64.png deleted file mode 100644 index 19c02e97..00000000 Binary files a/www/assets/images/items/get-ai-limiter_64.png and /dev/null differ diff --git a/www/assets/images/items/get-aluminum-alclad-sheet_256.png b/www/assets/images/items/get-aluminum-alclad-sheet_256.png deleted file mode 100644 index 5798408e..00000000 Binary files a/www/assets/images/items/get-aluminum-alclad-sheet_256.png and /dev/null differ diff --git a/www/assets/images/items/get-aluminum-alclad-sheet_64.png b/www/assets/images/items/get-aluminum-alclad-sheet_64.png deleted file mode 100644 index 9d1857ce..00000000 Binary files a/www/assets/images/items/get-aluminum-alclad-sheet_64.png and /dev/null differ diff --git a/www/assets/images/items/get-ammo-pack_256.png b/www/assets/images/items/get-ammo-pack_256.png deleted file mode 100644 index cfc2c6b7..00000000 Binary files a/www/assets/images/items/get-ammo-pack_256.png and /dev/null differ diff --git a/www/assets/images/items/get-ammo-pack_64.png b/www/assets/images/items/get-ammo-pack_64.png deleted file mode 100644 index 20d8d3f6..00000000 Binary files a/www/assets/images/items/get-ammo-pack_64.png and /dev/null differ diff --git a/www/assets/images/items/get-battery_256.png b/www/assets/images/items/get-battery_256.png deleted file mode 100644 index 9c5dd6a4..00000000 Binary files a/www/assets/images/items/get-battery_256.png and /dev/null differ diff --git a/www/assets/images/items/get-battery_64.png b/www/assets/images/items/get-battery_64.png deleted file mode 100644 index 682b860d..00000000 Binary files a/www/assets/images/items/get-battery_64.png and /dev/null differ diff --git a/www/assets/images/items/get-beacons_256.png b/www/assets/images/items/get-beacons_256.png deleted file mode 100644 index 0c436ec8..00000000 Binary files a/www/assets/images/items/get-beacons_256.png and /dev/null differ diff --git a/www/assets/images/items/get-beacons_64.png b/www/assets/images/items/get-beacons_64.png deleted file mode 100644 index 8b4268b1..00000000 Binary files a/www/assets/images/items/get-beacons_64.png and /dev/null differ diff --git a/www/assets/images/items/get-biofuel_256.png b/www/assets/images/items/get-biofuel_256.png deleted file mode 100644 index 6f9abc65..00000000 Binary files a/www/assets/images/items/get-biofuel_256.png and /dev/null differ diff --git a/www/assets/images/items/get-biofuel_64.png b/www/assets/images/items/get-biofuel_64.png deleted file mode 100644 index de6ebf9b..00000000 Binary files a/www/assets/images/items/get-biofuel_64.png and /dev/null differ diff --git a/www/assets/images/items/get-biomass_256.png b/www/assets/images/items/get-biomass_256.png deleted file mode 100644 index 38b14ed3..00000000 Binary files a/www/assets/images/items/get-biomass_256.png and /dev/null differ diff --git a/www/assets/images/items/get-biomass_64.png b/www/assets/images/items/get-biomass_64.png deleted file mode 100644 index 8c4cfa19..00000000 Binary files a/www/assets/images/items/get-biomass_64.png and /dev/null differ diff --git a/www/assets/images/items/get-black-powder_256.png b/www/assets/images/items/get-black-powder_256.png deleted file mode 100644 index 27e3c7e1..00000000 Binary files a/www/assets/images/items/get-black-powder_256.png and /dev/null differ diff --git a/www/assets/images/items/get-black-powder_64.png b/www/assets/images/items/get-black-powder_64.png deleted file mode 100644 index 8032ecdc..00000000 Binary files a/www/assets/images/items/get-black-powder_64.png and /dev/null differ diff --git a/www/assets/images/items/get-cable_256.png b/www/assets/images/items/get-cable_256.png deleted file mode 100644 index 32c09393..00000000 Binary files a/www/assets/images/items/get-cable_256.png and /dev/null differ diff --git a/www/assets/images/items/get-cable_64.png b/www/assets/images/items/get-cable_64.png deleted file mode 100644 index 9e9b6f44..00000000 Binary files a/www/assets/images/items/get-cable_64.png and /dev/null differ diff --git a/www/assets/images/items/get-circuit-board_256.png b/www/assets/images/items/get-circuit-board_256.png deleted file mode 100644 index c6deb3a5..00000000 Binary files a/www/assets/images/items/get-circuit-board_256.png and /dev/null differ diff --git a/www/assets/images/items/get-circuit-board_64.png b/www/assets/images/items/get-circuit-board_64.png deleted file mode 100644 index d2da51f8..00000000 Binary files a/www/assets/images/items/get-circuit-board_64.png and /dev/null differ diff --git a/www/assets/images/items/get-color-ammo-pack_256.png b/www/assets/images/items/get-color-ammo-pack_256.png deleted file mode 100644 index 6f0b9c40..00000000 Binary files a/www/assets/images/items/get-color-ammo-pack_256.png and /dev/null differ diff --git a/www/assets/images/items/get-color-ammo-pack_64.png b/www/assets/images/items/get-color-ammo-pack_64.png deleted file mode 100644 index 89e01f01..00000000 Binary files a/www/assets/images/items/get-color-ammo-pack_64.png and /dev/null differ diff --git a/www/assets/images/items/get-computer_256.png b/www/assets/images/items/get-computer_256.png deleted file mode 100644 index 82f99adc..00000000 Binary files a/www/assets/images/items/get-computer_256.png and /dev/null differ diff --git a/www/assets/images/items/get-computer_64.png b/www/assets/images/items/get-computer_64.png deleted file mode 100644 index 7620a9f3..00000000 Binary files a/www/assets/images/items/get-computer_64.png and /dev/null differ diff --git a/www/assets/images/items/get-concrete_256.png b/www/assets/images/items/get-concrete_256.png deleted file mode 100644 index 572ff533..00000000 Binary files a/www/assets/images/items/get-concrete_256.png and /dev/null differ diff --git a/www/assets/images/items/get-concrete_64.png b/www/assets/images/items/get-concrete_64.png deleted file mode 100644 index f2857475..00000000 Binary files a/www/assets/images/items/get-concrete_64.png and /dev/null differ diff --git a/www/assets/images/items/get-confusing-creature_256.png b/www/assets/images/items/get-confusing-creature_256.png deleted file mode 100644 index 188f1f10..00000000 Binary files a/www/assets/images/items/get-confusing-creature_256.png and /dev/null differ diff --git a/www/assets/images/items/get-confusing-creature_64.png b/www/assets/images/items/get-confusing-creature_64.png deleted file mode 100644 index ac240bd1..00000000 Binary files a/www/assets/images/items/get-confusing-creature_64.png and /dev/null differ diff --git a/www/assets/images/items/get-copper-sheet_256.png b/www/assets/images/items/get-copper-sheet_256.png deleted file mode 100644 index da847561..00000000 Binary files a/www/assets/images/items/get-copper-sheet_256.png and /dev/null differ diff --git a/www/assets/images/items/get-copper-sheet_64.png b/www/assets/images/items/get-copper-sheet_64.png deleted file mode 100644 index 4f2ab7e6..00000000 Binary files a/www/assets/images/items/get-copper-sheet_64.png and /dev/null differ diff --git a/www/assets/images/items/get-crystal-oscillator_256.png b/www/assets/images/items/get-crystal-oscillator_256.png deleted file mode 100644 index f8fd6524..00000000 Binary files a/www/assets/images/items/get-crystal-oscillator_256.png and /dev/null differ diff --git a/www/assets/images/items/get-crystal-oscillator_64.png b/www/assets/images/items/get-crystal-oscillator_64.png deleted file mode 100644 index 0a5a6587..00000000 Binary files a/www/assets/images/items/get-crystal-oscillator_64.png and /dev/null differ diff --git a/www/assets/images/items/get-empty-canister_256.png b/www/assets/images/items/get-empty-canister_256.png deleted file mode 100644 index 29082fd2..00000000 Binary files a/www/assets/images/items/get-empty-canister_256.png and /dev/null differ diff --git a/www/assets/images/items/get-empty-canister_64.png b/www/assets/images/items/get-empty-canister_64.png deleted file mode 100644 index 52d27443..00000000 Binary files a/www/assets/images/items/get-empty-canister_64.png and /dev/null differ diff --git a/www/assets/images/items/get-encased-industrial-beam_256.png b/www/assets/images/items/get-encased-industrial-beam_256.png deleted file mode 100644 index cdb3ceff..00000000 Binary files a/www/assets/images/items/get-encased-industrial-beam_256.png and /dev/null differ diff --git a/www/assets/images/items/get-encased-industrial-beam_64.png b/www/assets/images/items/get-encased-industrial-beam_64.png deleted file mode 100644 index c8a8b2ab..00000000 Binary files a/www/assets/images/items/get-encased-industrial-beam_64.png and /dev/null differ diff --git a/www/assets/images/items/get-explosives_256.png b/www/assets/images/items/get-explosives_256.png deleted file mode 100644 index 7ccc6f1f..00000000 Binary files a/www/assets/images/items/get-explosives_256.png and /dev/null differ diff --git a/www/assets/images/items/get-explosives_64.png b/www/assets/images/items/get-explosives_64.png deleted file mode 100644 index fbb6e175..00000000 Binary files a/www/assets/images/items/get-explosives_64.png and /dev/null differ diff --git a/www/assets/images/items/get-fabric_256.png b/www/assets/images/items/get-fabric_256.png deleted file mode 100644 index e69e43b5..00000000 Binary files a/www/assets/images/items/get-fabric_256.png and /dev/null differ diff --git a/www/assets/images/items/get-fabric_64.png b/www/assets/images/items/get-fabric_64.png deleted file mode 100644 index 305458ef..00000000 Binary files a/www/assets/images/items/get-fabric_64.png and /dev/null differ diff --git a/www/assets/images/items/get-ficsit-coffee-cup_256.png b/www/assets/images/items/get-ficsit-coffee-cup_256.png deleted file mode 100644 index abae6d26..00000000 Binary files a/www/assets/images/items/get-ficsit-coffee-cup_256.png and /dev/null differ diff --git a/www/assets/images/items/get-ficsit-coffee-cup_64.png b/www/assets/images/items/get-ficsit-coffee-cup_64.png deleted file mode 100644 index 250a134c..00000000 Binary files a/www/assets/images/items/get-ficsit-coffee-cup_64.png and /dev/null differ diff --git a/www/assets/images/items/get-gas-filters_256.png b/www/assets/images/items/get-gas-filters_256.png deleted file mode 100644 index 5bf46128..00000000 Binary files a/www/assets/images/items/get-gas-filters_256.png and /dev/null differ diff --git a/www/assets/images/items/get-gas-filters_64.png b/www/assets/images/items/get-gas-filters_64.png deleted file mode 100644 index 98b9efbe..00000000 Binary files a/www/assets/images/items/get-gas-filters_64.png and /dev/null differ diff --git a/www/assets/images/items/get-golden-nut_256.png b/www/assets/images/items/get-golden-nut_256.png deleted file mode 100644 index f4d6146d..00000000 Binary files a/www/assets/images/items/get-golden-nut_256.png and /dev/null differ diff --git a/www/assets/images/items/get-golden-nut_64.png b/www/assets/images/items/get-golden-nut_64.png deleted file mode 100644 index f77ec85c..00000000 Binary files a/www/assets/images/items/get-golden-nut_64.png and /dev/null differ diff --git a/www/assets/images/items/get-health-pack_256.png b/www/assets/images/items/get-health-pack_256.png deleted file mode 100644 index afdf2e66..00000000 Binary files a/www/assets/images/items/get-health-pack_256.png and /dev/null differ diff --git a/www/assets/images/items/get-health-pack_64.png b/www/assets/images/items/get-health-pack_64.png deleted file mode 100644 index 5419c36e..00000000 Binary files a/www/assets/images/items/get-health-pack_64.png and /dev/null differ diff --git a/www/assets/images/items/get-heat-sink_256.png b/www/assets/images/items/get-heat-sink_256.png deleted file mode 100644 index 82f0e939..00000000 Binary files a/www/assets/images/items/get-heat-sink_256.png and /dev/null differ diff --git a/www/assets/images/items/get-heat-sink_64.png b/www/assets/images/items/get-heat-sink_64.png deleted file mode 100644 index 1c163bd3..00000000 Binary files a/www/assets/images/items/get-heat-sink_64.png and /dev/null differ diff --git a/www/assets/images/items/get-heavy-modular-frame_256.png b/www/assets/images/items/get-heavy-modular-frame_256.png deleted file mode 100644 index d3ba2fea..00000000 Binary files a/www/assets/images/items/get-heavy-modular-frame_256.png and /dev/null differ diff --git a/www/assets/images/items/get-heavy-modular-frame_64.png b/www/assets/images/items/get-heavy-modular-frame_64.png deleted file mode 100644 index 3622a2cf..00000000 Binary files a/www/assets/images/items/get-heavy-modular-frame_64.png and /dev/null differ diff --git a/www/assets/images/items/get-high-speed-connector_256.png b/www/assets/images/items/get-high-speed-connector_256.png deleted file mode 100644 index 40c298ba..00000000 Binary files a/www/assets/images/items/get-high-speed-connector_256.png and /dev/null differ diff --git a/www/assets/images/items/get-high-speed-connector_64.png b/www/assets/images/items/get-high-speed-connector_64.png deleted file mode 100644 index 0341c4bc..00000000 Binary files a/www/assets/images/items/get-high-speed-connector_64.png and /dev/null differ diff --git a/www/assets/images/items/get-iron-plate_256.png b/www/assets/images/items/get-iron-plate_256.png deleted file mode 100644 index 48311d31..00000000 Binary files a/www/assets/images/items/get-iron-plate_256.png and /dev/null differ diff --git a/www/assets/images/items/get-iron-plate_64.png b/www/assets/images/items/get-iron-plate_64.png deleted file mode 100644 index 62531a3a..00000000 Binary files a/www/assets/images/items/get-iron-plate_64.png and /dev/null differ diff --git a/www/assets/images/items/get-iron-rod_256.png b/www/assets/images/items/get-iron-rod_256.png deleted file mode 100644 index 142332e4..00000000 Binary files a/www/assets/images/items/get-iron-rod_256.png and /dev/null differ diff --git a/www/assets/images/items/get-iron-rod_64.png b/www/assets/images/items/get-iron-rod_64.png deleted file mode 100644 index 9ee84b3c..00000000 Binary files a/www/assets/images/items/get-iron-rod_64.png and /dev/null differ diff --git a/www/assets/images/items/get-lizard-doggo_256.png b/www/assets/images/items/get-lizard-doggo_256.png deleted file mode 100644 index bdd5aacc..00000000 Binary files a/www/assets/images/items/get-lizard-doggo_256.png and /dev/null differ diff --git a/www/assets/images/items/get-lizard-doggo_64.png b/www/assets/images/items/get-lizard-doggo_64.png deleted file mode 100644 index ee205820..00000000 Binary files a/www/assets/images/items/get-lizard-doggo_64.png and /dev/null differ diff --git a/www/assets/images/items/get-modular-frame_256.png b/www/assets/images/items/get-modular-frame_256.png deleted file mode 100644 index a40941cb..00000000 Binary files a/www/assets/images/items/get-modular-frame_256.png and /dev/null differ diff --git a/www/assets/images/items/get-modular-frame_64.png b/www/assets/images/items/get-modular-frame_64.png deleted file mode 100644 index e577571f..00000000 Binary files a/www/assets/images/items/get-modular-frame_64.png and /dev/null differ diff --git a/www/assets/images/items/get-motor_256.png b/www/assets/images/items/get-motor_256.png deleted file mode 100644 index 8161ac0a..00000000 Binary files a/www/assets/images/items/get-motor_256.png and /dev/null differ diff --git a/www/assets/images/items/get-motor_64.png b/www/assets/images/items/get-motor_64.png deleted file mode 100644 index 1ade4df4..00000000 Binary files a/www/assets/images/items/get-motor_64.png and /dev/null differ diff --git a/www/assets/images/items/get-packaged-fuel_256.png b/www/assets/images/items/get-packaged-fuel_256.png deleted file mode 100644 index 3486cf0b..00000000 Binary files a/www/assets/images/items/get-packaged-fuel_256.png and /dev/null differ diff --git a/www/assets/images/items/get-packaged-fuel_64.png b/www/assets/images/items/get-packaged-fuel_64.png deleted file mode 100644 index 0b6ebfee..00000000 Binary files a/www/assets/images/items/get-packaged-fuel_64.png and /dev/null differ diff --git a/www/assets/images/items/get-packaged-liquid-biofuel_256.png b/www/assets/images/items/get-packaged-liquid-biofuel_256.png deleted file mode 100644 index 98b6ff5c..00000000 Binary files a/www/assets/images/items/get-packaged-liquid-biofuel_256.png and /dev/null differ diff --git a/www/assets/images/items/get-packaged-liquid-biofuel_64.png b/www/assets/images/items/get-packaged-liquid-biofuel_64.png deleted file mode 100644 index c29badd0..00000000 Binary files a/www/assets/images/items/get-packaged-liquid-biofuel_64.png and /dev/null differ diff --git a/www/assets/images/items/get-parachutes_256.png b/www/assets/images/items/get-parachutes_256.png deleted file mode 100644 index 4877c3ed..00000000 Binary files a/www/assets/images/items/get-parachutes_256.png and /dev/null differ diff --git a/www/assets/images/items/get-parachutes_64.png b/www/assets/images/items/get-parachutes_64.png deleted file mode 100644 index 33f4c898..00000000 Binary files a/www/assets/images/items/get-parachutes_64.png and /dev/null differ diff --git a/www/assets/images/items/get-petroleum-coke_256.png b/www/assets/images/items/get-petroleum-coke_256.png deleted file mode 100644 index 967643bc..00000000 Binary files a/www/assets/images/items/get-petroleum-coke_256.png and /dev/null differ diff --git a/www/assets/images/items/get-petroleum-coke_64.png b/www/assets/images/items/get-petroleum-coke_64.png deleted file mode 100644 index aea7cbbe..00000000 Binary files a/www/assets/images/items/get-petroleum-coke_64.png and /dev/null differ diff --git a/www/assets/images/items/get-plastic_256.png b/www/assets/images/items/get-plastic_256.png deleted file mode 100644 index 6a872a0b..00000000 Binary files a/www/assets/images/items/get-plastic_256.png and /dev/null differ diff --git a/www/assets/images/items/get-plastic_64.png b/www/assets/images/items/get-plastic_64.png deleted file mode 100644 index 446142c2..00000000 Binary files a/www/assets/images/items/get-plastic_64.png and /dev/null differ diff --git a/www/assets/images/items/get-polymer-resin_256.png b/www/assets/images/items/get-polymer-resin_256.png deleted file mode 100644 index 89dd5434..00000000 Binary files a/www/assets/images/items/get-polymer-resin_256.png and /dev/null differ diff --git a/www/assets/images/items/get-polymer-resin_64.png b/www/assets/images/items/get-polymer-resin_64.png deleted file mode 100644 index 2cd0d3b6..00000000 Binary files a/www/assets/images/items/get-polymer-resin_64.png and /dev/null differ diff --git a/www/assets/images/items/get-pretty-good-pioneering_256.png b/www/assets/images/items/get-pretty-good-pioneering_256.png deleted file mode 100644 index 9e22a00b..00000000 Binary files a/www/assets/images/items/get-pretty-good-pioneering_256.png and /dev/null differ diff --git a/www/assets/images/items/get-pretty-good-pioneering_64.png b/www/assets/images/items/get-pretty-good-pioneering_64.png deleted file mode 100644 index 743d2959..00000000 Binary files a/www/assets/images/items/get-pretty-good-pioneering_64.png and /dev/null differ diff --git a/www/assets/images/items/get-quickwire_256.png b/www/assets/images/items/get-quickwire_256.png deleted file mode 100644 index fa03aa4d..00000000 Binary files a/www/assets/images/items/get-quickwire_256.png and /dev/null differ diff --git a/www/assets/images/items/get-quickwire_64.png b/www/assets/images/items/get-quickwire_64.png deleted file mode 100644 index f3fbfa30..00000000 Binary files a/www/assets/images/items/get-quickwire_64.png and /dev/null differ diff --git a/www/assets/images/items/get-radiation-filters_256.png b/www/assets/images/items/get-radiation-filters_256.png deleted file mode 100644 index b2f70dac..00000000 Binary files a/www/assets/images/items/get-radiation-filters_256.png and /dev/null differ diff --git a/www/assets/images/items/get-radiation-filters_64.png b/www/assets/images/items/get-radiation-filters_64.png deleted file mode 100644 index 1260068a..00000000 Binary files a/www/assets/images/items/get-radiation-filters_64.png and /dev/null differ diff --git a/www/assets/images/items/get-radio-control-unit_256.png b/www/assets/images/items/get-radio-control-unit_256.png deleted file mode 100644 index 5232b188..00000000 Binary files a/www/assets/images/items/get-radio-control-unit_256.png and /dev/null differ diff --git a/www/assets/images/items/get-radio-control-unit_64.png b/www/assets/images/items/get-radio-control-unit_64.png deleted file mode 100644 index 54c323be..00000000 Binary files a/www/assets/images/items/get-radio-control-unit_64.png and /dev/null differ diff --git a/www/assets/images/items/get-reinforced-iron-plate_256.png b/www/assets/images/items/get-reinforced-iron-plate_256.png deleted file mode 100644 index 218cf6b9..00000000 Binary files a/www/assets/images/items/get-reinforced-iron-plate_256.png and /dev/null differ diff --git a/www/assets/images/items/get-reinforced-iron-plate_64.png b/www/assets/images/items/get-reinforced-iron-plate_64.png deleted file mode 100644 index e125bde6..00000000 Binary files a/www/assets/images/items/get-reinforced-iron-plate_64.png and /dev/null differ diff --git a/www/assets/images/items/get-rotor_256.png b/www/assets/images/items/get-rotor_256.png deleted file mode 100644 index f426df8a..00000000 Binary files a/www/assets/images/items/get-rotor_256.png and /dev/null differ diff --git a/www/assets/images/items/get-rotor_64.png b/www/assets/images/items/get-rotor_64.png deleted file mode 100644 index 3d92bd00..00000000 Binary files a/www/assets/images/items/get-rotor_64.png and /dev/null differ diff --git a/www/assets/images/items/get-rubber_256.png b/www/assets/images/items/get-rubber_256.png deleted file mode 100644 index c3d2fc2b..00000000 Binary files a/www/assets/images/items/get-rubber_256.png and /dev/null differ diff --git a/www/assets/images/items/get-rubber_64.png b/www/assets/images/items/get-rubber_64.png deleted file mode 100644 index 9343f33c..00000000 Binary files a/www/assets/images/items/get-rubber_64.png and /dev/null differ diff --git a/www/assets/images/items/get-satisfactory-pioneering_256.png b/www/assets/images/items/get-satisfactory-pioneering_256.png deleted file mode 100644 index 095a0159..00000000 Binary files a/www/assets/images/items/get-satisfactory-pioneering_256.png and /dev/null differ diff --git a/www/assets/images/items/get-satisfactory-pioneering_64.png b/www/assets/images/items/get-satisfactory-pioneering_64.png deleted file mode 100644 index 65f1da56..00000000 Binary files a/www/assets/images/items/get-satisfactory-pioneering_64.png and /dev/null differ diff --git a/www/assets/images/items/get-screw_256.png b/www/assets/images/items/get-screw_256.png deleted file mode 100644 index 0a8c23be..00000000 Binary files a/www/assets/images/items/get-screw_256.png and /dev/null differ diff --git a/www/assets/images/items/get-screw_64.png b/www/assets/images/items/get-screw_64.png deleted file mode 100644 index 8e14c2b0..00000000 Binary files a/www/assets/images/items/get-screw_64.png and /dev/null differ diff --git a/www/assets/images/items/get-silica_256.png b/www/assets/images/items/get-silica_256.png deleted file mode 100644 index 53fb455b..00000000 Binary files a/www/assets/images/items/get-silica_256.png and /dev/null differ diff --git a/www/assets/images/items/get-silica_64.png b/www/assets/images/items/get-silica_64.png deleted file mode 100644 index dcf5553f..00000000 Binary files a/www/assets/images/items/get-silica_64.png and /dev/null differ diff --git a/www/assets/images/items/get-silver-hog_256.png b/www/assets/images/items/get-silver-hog_256.png deleted file mode 100644 index b0a45ee1..00000000 Binary files a/www/assets/images/items/get-silver-hog_256.png and /dev/null differ diff --git a/www/assets/images/items/get-silver-hog_64.png b/www/assets/images/items/get-silver-hog_64.png deleted file mode 100644 index 42a975e7..00000000 Binary files a/www/assets/images/items/get-silver-hog_64.png and /dev/null differ diff --git a/www/assets/images/items/get-stator_256.png b/www/assets/images/items/get-stator_256.png deleted file mode 100644 index 850115a6..00000000 Binary files a/www/assets/images/items/get-stator_256.png and /dev/null differ diff --git a/www/assets/images/items/get-stator_64.png b/www/assets/images/items/get-stator_64.png deleted file mode 100644 index 70bba977..00000000 Binary files a/www/assets/images/items/get-stator_64.png and /dev/null differ diff --git a/www/assets/images/items/get-steel-beam_256.png b/www/assets/images/items/get-steel-beam_256.png deleted file mode 100644 index eb881349..00000000 Binary files a/www/assets/images/items/get-steel-beam_256.png and /dev/null differ diff --git a/www/assets/images/items/get-steel-beam_64.png b/www/assets/images/items/get-steel-beam_64.png deleted file mode 100644 index f6356147..00000000 Binary files a/www/assets/images/items/get-steel-beam_64.png and /dev/null differ diff --git a/www/assets/images/items/get-steel-pipe_256.png b/www/assets/images/items/get-steel-pipe_256.png deleted file mode 100644 index 97aeb129..00000000 Binary files a/www/assets/images/items/get-steel-pipe_256.png and /dev/null differ diff --git a/www/assets/images/items/get-steel-pipe_64.png b/www/assets/images/items/get-steel-pipe_64.png deleted file mode 100644 index 7c114df2..00000000 Binary files a/www/assets/images/items/get-steel-pipe_64.png and /dev/null differ diff --git a/www/assets/images/items/get-supercomputer_256.png b/www/assets/images/items/get-supercomputer_256.png deleted file mode 100644 index aa0c7243..00000000 Binary files a/www/assets/images/items/get-supercomputer_256.png and /dev/null differ diff --git a/www/assets/images/items/get-supercomputer_64.png b/www/assets/images/items/get-supercomputer_64.png deleted file mode 100644 index 652b0ddc..00000000 Binary files a/www/assets/images/items/get-supercomputer_64.png and /dev/null differ diff --git a/www/assets/images/items/get-turbo-motor_256.png b/www/assets/images/items/get-turbo-motor_256.png deleted file mode 100644 index 2e5786f8..00000000 Binary files a/www/assets/images/items/get-turbo-motor_256.png and /dev/null differ diff --git a/www/assets/images/items/get-turbo-motor_64.png b/www/assets/images/items/get-turbo-motor_64.png deleted file mode 100644 index c9d3479f..00000000 Binary files a/www/assets/images/items/get-turbo-motor_64.png and /dev/null differ diff --git a/www/assets/images/items/get-wire_256.png b/www/assets/images/items/get-wire_256.png deleted file mode 100644 index 1e22d8a9..00000000 Binary files a/www/assets/images/items/get-wire_256.png and /dev/null differ diff --git a/www/assets/images/items/get-wire_64.png b/www/assets/images/items/get-wire_64.png deleted file mode 100644 index 7e54f929..00000000 Binary files a/www/assets/images/items/get-wire_64.png and /dev/null differ diff --git a/www/assets/images/items/giant-ficsmas-tree-upgrade-1_256.png b/www/assets/images/items/giant-ficsmas-tree-upgrade-1_256.png deleted file mode 100644 index cd973098..00000000 Binary files a/www/assets/images/items/giant-ficsmas-tree-upgrade-1_256.png and /dev/null differ diff --git a/www/assets/images/items/giant-ficsmas-tree-upgrade-1_64.png b/www/assets/images/items/giant-ficsmas-tree-upgrade-1_64.png deleted file mode 100644 index d635601d..00000000 Binary files a/www/assets/images/items/giant-ficsmas-tree-upgrade-1_64.png and /dev/null differ diff --git a/www/assets/images/items/giant-ficsmas-tree-upgrade-2_256.png b/www/assets/images/items/giant-ficsmas-tree-upgrade-2_256.png deleted file mode 100644 index d15b6b4e..00000000 Binary files a/www/assets/images/items/giant-ficsmas-tree-upgrade-2_256.png and /dev/null differ diff --git a/www/assets/images/items/giant-ficsmas-tree-upgrade-2_64.png b/www/assets/images/items/giant-ficsmas-tree-upgrade-2_64.png deleted file mode 100644 index 73772d19..00000000 Binary files a/www/assets/images/items/giant-ficsmas-tree-upgrade-2_64.png and /dev/null differ diff --git a/www/assets/images/items/giant-ficsmas-tree-upgrade-3_256.png b/www/assets/images/items/giant-ficsmas-tree-upgrade-3_256.png deleted file mode 100644 index 1a91134d..00000000 Binary files a/www/assets/images/items/giant-ficsmas-tree-upgrade-3_256.png and /dev/null differ diff --git a/www/assets/images/items/giant-ficsmas-tree-upgrade-3_64.png b/www/assets/images/items/giant-ficsmas-tree-upgrade-3_64.png deleted file mode 100644 index 482a829e..00000000 Binary files a/www/assets/images/items/giant-ficsmas-tree-upgrade-3_64.png and /dev/null differ diff --git a/www/assets/images/items/giant-ficsmas-tree-upgrade-4_256.png b/www/assets/images/items/giant-ficsmas-tree-upgrade-4_256.png deleted file mode 100644 index 1a91134d..00000000 Binary files a/www/assets/images/items/giant-ficsmas-tree-upgrade-4_256.png and /dev/null differ diff --git a/www/assets/images/items/giant-ficsmas-tree-upgrade-4_64.png b/www/assets/images/items/giant-ficsmas-tree-upgrade-4_64.png deleted file mode 100644 index 482a829e..00000000 Binary files a/www/assets/images/items/giant-ficsmas-tree-upgrade-4_64.png and /dev/null differ diff --git a/www/assets/images/items/glass-foundation-8m-x-1m_256.png b/www/assets/images/items/glass-foundation-8m-x-1m_256.png deleted file mode 100644 index 5cfb2d5b..00000000 Binary files a/www/assets/images/items/glass-foundation-8m-x-1m_256.png and /dev/null differ diff --git a/www/assets/images/items/glass-foundation-8m-x-1m_64.png b/www/assets/images/items/glass-foundation-8m-x-1m_64.png deleted file mode 100644 index 28ab3478..00000000 Binary files a/www/assets/images/items/glass-foundation-8m-x-1m_64.png and /dev/null differ diff --git a/www/assets/images/items/glass-frame-foundation_256.png b/www/assets/images/items/glass-frame-foundation_256.png deleted file mode 100644 index 3b5884da..00000000 Binary files a/www/assets/images/items/glass-frame-foundation_256.png and /dev/null differ diff --git a/www/assets/images/items/glass-frame-foundation_64.png b/www/assets/images/items/glass-frame-foundation_64.png deleted file mode 100644 index 2834656e..00000000 Binary files a/www/assets/images/items/glass-frame-foundation_64.png and /dev/null differ diff --git a/www/assets/images/items/glass-roof-1m_256.png b/www/assets/images/items/glass-roof-1m_256.png deleted file mode 100644 index c482b77b..00000000 Binary files a/www/assets/images/items/glass-roof-1m_256.png and /dev/null differ diff --git a/www/assets/images/items/glass-roof-1m_64.png b/www/assets/images/items/glass-roof-1m_64.png deleted file mode 100644 index c63f37b1..00000000 Binary files a/www/assets/images/items/glass-roof-1m_64.png and /dev/null differ diff --git a/www/assets/images/items/glass-roof-2m_256.png b/www/assets/images/items/glass-roof-2m_256.png deleted file mode 100644 index 6652850b..00000000 Binary files a/www/assets/images/items/glass-roof-2m_256.png and /dev/null differ diff --git a/www/assets/images/items/glass-roof-2m_64.png b/www/assets/images/items/glass-roof-2m_64.png deleted file mode 100644 index 2e2d7d0a..00000000 Binary files a/www/assets/images/items/glass-roof-2m_64.png and /dev/null differ diff --git a/www/assets/images/items/glass-roof-4m_256.png b/www/assets/images/items/glass-roof-4m_256.png deleted file mode 100644 index 93d7990d..00000000 Binary files a/www/assets/images/items/glass-roof-4m_256.png and /dev/null differ diff --git a/www/assets/images/items/glass-roof-4m_64.png b/www/assets/images/items/glass-roof-4m_64.png deleted file mode 100644 index 09e1d839..00000000 Binary files a/www/assets/images/items/glass-roof-4m_64.png and /dev/null differ diff --git a/www/assets/images/items/glass-roof-flat_256.png b/www/assets/images/items/glass-roof-flat_256.png deleted file mode 100644 index ade478e0..00000000 Binary files a/www/assets/images/items/glass-roof-flat_256.png and /dev/null differ diff --git a/www/assets/images/items/glass-roof-flat_64.png b/www/assets/images/items/glass-roof-flat_64.png deleted file mode 100644 index 8d848f18..00000000 Binary files a/www/assets/images/items/glass-roof-flat_64.png and /dev/null differ diff --git a/www/assets/images/items/glass-roof-material_256.png b/www/assets/images/items/glass-roof-material_256.png deleted file mode 100644 index 22b5172f..00000000 Binary files a/www/assets/images/items/glass-roof-material_256.png and /dev/null differ diff --git a/www/assets/images/items/glass-roof-material_64.png b/www/assets/images/items/glass-roof-material_64.png deleted file mode 100644 index 262085d8..00000000 Binary files a/www/assets/images/items/glass-roof-material_64.png and /dev/null differ diff --git a/www/assets/images/items/golden-factory-cart_256.png b/www/assets/images/items/golden-factory-cart_256.png deleted file mode 100644 index 09a8c3da..00000000 Binary files a/www/assets/images/items/golden-factory-cart_256.png and /dev/null differ diff --git a/www/assets/images/items/golden-factory-cart_64.png b/www/assets/images/items/golden-factory-cart_64.png deleted file mode 100644 index dda5be0c..00000000 Binary files a/www/assets/images/items/golden-factory-cart_64.png and /dev/null differ diff --git a/www/assets/images/items/golden-ficsit-factory-cart_256.png b/www/assets/images/items/golden-ficsit-factory-cart_256.png deleted file mode 100644 index 09a8c3da..00000000 Binary files a/www/assets/images/items/golden-ficsit-factory-cart_256.png and /dev/null differ diff --git a/www/assets/images/items/golden-ficsit-factory-cart_64.png b/www/assets/images/items/golden-ficsit-factory-cart_64.png deleted file mode 100644 index dda5be0c..00000000 Binary files a/www/assets/images/items/golden-ficsit-factory-cart_64.png and /dev/null differ diff --git a/www/assets/images/items/green-power-slug_256.png b/www/assets/images/items/green-power-slug_256.png deleted file mode 100644 index 96461e53..00000000 Binary files a/www/assets/images/items/green-power-slug_256.png and /dev/null differ diff --git a/www/assets/images/items/green-power-slug_64.png b/www/assets/images/items/green-power-slug_64.png deleted file mode 100644 index cbcdd6e1..00000000 Binary files a/www/assets/images/items/green-power-slug_64.png and /dev/null differ diff --git a/www/assets/images/items/grip-metal-foundation-material_256.png b/www/assets/images/items/grip-metal-foundation-material_256.png deleted file mode 100644 index 8c5bd67b..00000000 Binary files a/www/assets/images/items/grip-metal-foundation-material_256.png and /dev/null differ diff --git a/www/assets/images/items/grip-metal-foundation-material_64.png b/www/assets/images/items/grip-metal-foundation-material_64.png deleted file mode 100644 index 95ac4196..00000000 Binary files a/www/assets/images/items/grip-metal-foundation-material_64.png and /dev/null differ diff --git a/www/assets/images/items/hard-drive_256.png b/www/assets/images/items/hard-drive_256.png deleted file mode 100644 index 5fc8bd10..00000000 Binary files a/www/assets/images/items/hard-drive_256.png and /dev/null differ diff --git a/www/assets/images/items/hard-drive_64.png b/www/assets/images/items/hard-drive_64.png deleted file mode 100644 index b7be9ac7..00000000 Binary files a/www/assets/images/items/hard-drive_64.png and /dev/null differ diff --git a/www/assets/images/items/hazard-box---personal-storage-skin_256.png b/www/assets/images/items/hazard-box---personal-storage-skin_256.png deleted file mode 100644 index 9247e758..00000000 Binary files a/www/assets/images/items/hazard-box---personal-storage-skin_256.png and /dev/null differ diff --git a/www/assets/images/items/hazard-box---personal-storage-skin_64.png b/www/assets/images/items/hazard-box---personal-storage-skin_64.png deleted file mode 100644 index 697fe1e1..00000000 Binary files a/www/assets/images/items/hazard-box---personal-storage-skin_64.png and /dev/null differ diff --git a/www/assets/images/items/hazard-storage-box_256.png b/www/assets/images/items/hazard-storage-box_256.png deleted file mode 100644 index 705c884d..00000000 Binary files a/www/assets/images/items/hazard-storage-box_256.png and /dev/null differ diff --git a/www/assets/images/items/hazard-storage-box_64.png b/www/assets/images/items/hazard-storage-box_64.png deleted file mode 100644 index a7705904..00000000 Binary files a/www/assets/images/items/hazard-storage-box_64.png and /dev/null differ diff --git a/www/assets/images/items/hazmat-suit-1_256.png b/www/assets/images/items/hazmat-suit-1_256.png deleted file mode 100644 index 55553579..00000000 Binary files a/www/assets/images/items/hazmat-suit-1_256.png and /dev/null differ diff --git a/www/assets/images/items/hazmat-suit-1_64.png b/www/assets/images/items/hazmat-suit-1_64.png deleted file mode 100644 index e11dba0b..00000000 Binary files a/www/assets/images/items/hazmat-suit-1_64.png and /dev/null differ diff --git a/www/assets/images/items/hazmat-suit_256.png b/www/assets/images/items/hazmat-suit_256.png deleted file mode 100644 index 9732db48..00000000 Binary files a/www/assets/images/items/hazmat-suit_256.png and /dev/null differ diff --git a/www/assets/images/items/hazmat-suit_64.png b/www/assets/images/items/hazmat-suit_64.png deleted file mode 100644 index b11d877f..00000000 Binary files a/www/assets/images/items/hazmat-suit_64.png and /dev/null differ diff --git a/www/assets/images/items/heat-sink_256.png b/www/assets/images/items/heat-sink_256.png deleted file mode 100644 index 82f0e939..00000000 Binary files a/www/assets/images/items/heat-sink_256.png and /dev/null differ diff --git a/www/assets/images/items/heat-sink_64.png b/www/assets/images/items/heat-sink_64.png deleted file mode 100644 index 1c163bd3..00000000 Binary files a/www/assets/images/items/heat-sink_64.png and /dev/null differ diff --git a/www/assets/images/items/heavy-modular-frame_256.png b/www/assets/images/items/heavy-modular-frame_256.png deleted file mode 100644 index d3ba2fea..00000000 Binary files a/www/assets/images/items/heavy-modular-frame_256.png and /dev/null differ diff --git a/www/assets/images/items/heavy-modular-frame_64.png b/www/assets/images/items/heavy-modular-frame_64.png deleted file mode 100644 index 3622a2cf..00000000 Binary files a/www/assets/images/items/heavy-modular-frame_64.png and /dev/null differ diff --git a/www/assets/images/items/heavy-oil-residue_256.png b/www/assets/images/items/heavy-oil-residue_256.png deleted file mode 100644 index 4a3867e5..00000000 Binary files a/www/assets/images/items/heavy-oil-residue_256.png and /dev/null differ diff --git a/www/assets/images/items/heavy-oil-residue_64.png b/www/assets/images/items/heavy-oil-residue_64.png deleted file mode 100644 index 21628f98..00000000 Binary files a/www/assets/images/items/heavy-oil-residue_64.png and /dev/null differ diff --git a/www/assets/images/items/hex-frame-window_256.png b/www/assets/images/items/hex-frame-window_256.png deleted file mode 100644 index 8f0449d2..00000000 Binary files a/www/assets/images/items/hex-frame-window_256.png and /dev/null differ diff --git a/www/assets/images/items/hex-frame-window_64.png b/www/assets/images/items/hex-frame-window_64.png deleted file mode 100644 index aacb3875..00000000 Binary files a/www/assets/images/items/hex-frame-window_64.png and /dev/null differ diff --git a/www/assets/images/items/high-speed-connector-1_256.png b/www/assets/images/items/high-speed-connector-1_256.png deleted file mode 100644 index ddcd58a5..00000000 Binary files a/www/assets/images/items/high-speed-connector-1_256.png and /dev/null differ diff --git a/www/assets/images/items/high-speed-connector-1_64.png b/www/assets/images/items/high-speed-connector-1_64.png deleted file mode 100644 index d5b2807e..00000000 Binary files a/www/assets/images/items/high-speed-connector-1_64.png and /dev/null differ diff --git a/www/assets/images/items/high-speed-connector_256.png b/www/assets/images/items/high-speed-connector_256.png deleted file mode 100644 index 40c298ba..00000000 Binary files a/www/assets/images/items/high-speed-connector_256.png and /dev/null differ diff --git a/www/assets/images/items/high-speed-connector_64.png b/www/assets/images/items/high-speed-connector_64.png deleted file mode 100644 index 0341c4bc..00000000 Binary files a/www/assets/images/items/high-speed-connector_64.png and /dev/null differ diff --git a/www/assets/images/items/hostile-organism-detection_256.png b/www/assets/images/items/hostile-organism-detection_256.png deleted file mode 100644 index 19ba374f..00000000 Binary files a/www/assets/images/items/hostile-organism-detection_256.png and /dev/null differ diff --git a/www/assets/images/items/hostile-organism-detection_64.png b/www/assets/images/items/hostile-organism-detection_64.png deleted file mode 100644 index 768084b7..00000000 Binary files a/www/assets/images/items/hostile-organism-detection_64.png and /dev/null differ diff --git a/www/assets/images/items/hover-pack-1_256.png b/www/assets/images/items/hover-pack-1_256.png deleted file mode 100644 index 55553579..00000000 Binary files a/www/assets/images/items/hover-pack-1_256.png and /dev/null differ diff --git a/www/assets/images/items/hover-pack-1_64.png b/www/assets/images/items/hover-pack-1_64.png deleted file mode 100644 index e11dba0b..00000000 Binary files a/www/assets/images/items/hover-pack-1_64.png and /dev/null differ diff --git a/www/assets/images/items/hover-pack_256.png b/www/assets/images/items/hover-pack_256.png deleted file mode 100644 index fa36dc18..00000000 Binary files a/www/assets/images/items/hover-pack_256.png and /dev/null differ diff --git a/www/assets/images/items/hover-pack_64.png b/www/assets/images/items/hover-pack_64.png deleted file mode 100644 index db58a5d9..00000000 Binary files a/www/assets/images/items/hover-pack_64.png and /dev/null differ diff --git a/www/assets/images/items/hub-parts_256.png b/www/assets/images/items/hub-parts_256.png deleted file mode 100644 index 99f973f6..00000000 Binary files a/www/assets/images/items/hub-parts_256.png and /dev/null differ diff --git a/www/assets/images/items/hub-parts_64.png b/www/assets/images/items/hub-parts_64.png deleted file mode 100644 index f71384b2..00000000 Binary files a/www/assets/images/items/hub-parts_64.png and /dev/null differ diff --git a/www/assets/images/items/hub-upgrade-1_256.png b/www/assets/images/items/hub-upgrade-1_256.png deleted file mode 100644 index 6692aab4..00000000 Binary files a/www/assets/images/items/hub-upgrade-1_256.png and /dev/null differ diff --git a/www/assets/images/items/hub-upgrade-1_64.png b/www/assets/images/items/hub-upgrade-1_64.png deleted file mode 100644 index ad557f14..00000000 Binary files a/www/assets/images/items/hub-upgrade-1_64.png and /dev/null differ diff --git a/www/assets/images/items/hub-upgrade-2_256.png b/www/assets/images/items/hub-upgrade-2_256.png deleted file mode 100644 index 6692aab4..00000000 Binary files a/www/assets/images/items/hub-upgrade-2_256.png and /dev/null differ diff --git a/www/assets/images/items/hub-upgrade-2_64.png b/www/assets/images/items/hub-upgrade-2_64.png deleted file mode 100644 index ad557f14..00000000 Binary files a/www/assets/images/items/hub-upgrade-2_64.png and /dev/null differ diff --git a/www/assets/images/items/hub-upgrade-3_256.png b/www/assets/images/items/hub-upgrade-3_256.png deleted file mode 100644 index e6c380db..00000000 Binary files a/www/assets/images/items/hub-upgrade-3_256.png and /dev/null differ diff --git a/www/assets/images/items/hub-upgrade-3_64.png b/www/assets/images/items/hub-upgrade-3_64.png deleted file mode 100644 index f5cefc70..00000000 Binary files a/www/assets/images/items/hub-upgrade-3_64.png and /dev/null differ diff --git a/www/assets/images/items/hub-upgrade-4_256.png b/www/assets/images/items/hub-upgrade-4_256.png deleted file mode 100644 index e64ce493..00000000 Binary files a/www/assets/images/items/hub-upgrade-4_256.png and /dev/null differ diff --git a/www/assets/images/items/hub-upgrade-4_64.png b/www/assets/images/items/hub-upgrade-4_64.png deleted file mode 100644 index f56fdd5f..00000000 Binary files a/www/assets/images/items/hub-upgrade-4_64.png and /dev/null differ diff --git a/www/assets/images/items/hub-upgrade-5_256.png b/www/assets/images/items/hub-upgrade-5_256.png deleted file mode 100644 index 0ce3e2a9..00000000 Binary files a/www/assets/images/items/hub-upgrade-5_256.png and /dev/null differ diff --git a/www/assets/images/items/hub-upgrade-5_64.png b/www/assets/images/items/hub-upgrade-5_64.png deleted file mode 100644 index 8c0eeefb..00000000 Binary files a/www/assets/images/items/hub-upgrade-5_64.png and /dev/null differ diff --git a/www/assets/images/items/hub-upgrade-6_256.png b/www/assets/images/items/hub-upgrade-6_256.png deleted file mode 100644 index 42119c69..00000000 Binary files a/www/assets/images/items/hub-upgrade-6_256.png and /dev/null differ diff --git a/www/assets/images/items/hub-upgrade-6_64.png b/www/assets/images/items/hub-upgrade-6_64.png deleted file mode 100644 index e47a548c..00000000 Binary files a/www/assets/images/items/hub-upgrade-6_64.png and /dev/null differ diff --git a/www/assets/images/items/hyper-tube-entrance_256.png b/www/assets/images/items/hyper-tube-entrance_256.png deleted file mode 100644 index c6d6efe1..00000000 Binary files a/www/assets/images/items/hyper-tube-entrance_256.png and /dev/null differ diff --git a/www/assets/images/items/hyper-tube-entrance_64.png b/www/assets/images/items/hyper-tube-entrance_64.png deleted file mode 100644 index 6b1f4bc1..00000000 Binary files a/www/assets/images/items/hyper-tube-entrance_64.png and /dev/null differ diff --git a/www/assets/images/items/hyper-tube-wall-attachments_256.png b/www/assets/images/items/hyper-tube-wall-attachments_256.png deleted file mode 100644 index 16ce2d97..00000000 Binary files a/www/assets/images/items/hyper-tube-wall-attachments_256.png and /dev/null differ diff --git a/www/assets/images/items/hyper-tube-wall-attachments_64.png b/www/assets/images/items/hyper-tube-wall-attachments_64.png deleted file mode 100644 index 4fc7b07d..00000000 Binary files a/www/assets/images/items/hyper-tube-wall-attachments_64.png and /dev/null differ diff --git a/www/assets/images/items/hyper-tube-wall-hole_256.png b/www/assets/images/items/hyper-tube-wall-hole_256.png deleted file mode 100644 index 886dcf03..00000000 Binary files a/www/assets/images/items/hyper-tube-wall-hole_256.png and /dev/null differ diff --git a/www/assets/images/items/hyper-tube-wall-hole_64.png b/www/assets/images/items/hyper-tube-wall-hole_64.png deleted file mode 100644 index 9757be4a..00000000 Binary files a/www/assets/images/items/hyper-tube-wall-hole_64.png and /dev/null differ diff --git a/www/assets/images/items/hyper-tube-wall-support_256.png b/www/assets/images/items/hyper-tube-wall-support_256.png deleted file mode 100644 index 92171664..00000000 Binary files a/www/assets/images/items/hyper-tube-wall-support_256.png and /dev/null differ diff --git a/www/assets/images/items/hyper-tube-wall-support_64.png b/www/assets/images/items/hyper-tube-wall-support_64.png deleted file mode 100644 index 8c325cf0..00000000 Binary files a/www/assets/images/items/hyper-tube-wall-support_64.png and /dev/null differ diff --git a/www/assets/images/items/hyper-tube_256.png b/www/assets/images/items/hyper-tube_256.png deleted file mode 100644 index 4dcf6c09..00000000 Binary files a/www/assets/images/items/hyper-tube_256.png and /dev/null differ diff --git a/www/assets/images/items/hyper-tube_64.png b/www/assets/images/items/hyper-tube_64.png deleted file mode 100644 index 2f5cf01e..00000000 Binary files a/www/assets/images/items/hyper-tube_64.png and /dev/null differ diff --git a/www/assets/images/items/hyper-tubes_256.png b/www/assets/images/items/hyper-tubes_256.png deleted file mode 100644 index ac57fe00..00000000 Binary files a/www/assets/images/items/hyper-tubes_256.png and /dev/null differ diff --git a/www/assets/images/items/hyper-tubes_64.png b/www/assets/images/items/hyper-tubes_64.png deleted file mode 100644 index b71b401a..00000000 Binary files a/www/assets/images/items/hyper-tubes_64.png and /dev/null differ diff --git a/www/assets/images/items/hypertube-entrance_256.png b/www/assets/images/items/hypertube-entrance_256.png deleted file mode 100644 index c6d6efe1..00000000 Binary files a/www/assets/images/items/hypertube-entrance_256.png and /dev/null differ diff --git a/www/assets/images/items/hypertube-entrance_64.png b/www/assets/images/items/hypertube-entrance_64.png deleted file mode 100644 index 62905c1c..00000000 Binary files a/www/assets/images/items/hypertube-entrance_64.png and /dev/null differ diff --git a/www/assets/images/items/hypertube-floor-hole-1_256.png b/www/assets/images/items/hypertube-floor-hole-1_256.png deleted file mode 100644 index 3bf78c5d..00000000 Binary files a/www/assets/images/items/hypertube-floor-hole-1_256.png and /dev/null differ diff --git a/www/assets/images/items/hypertube-floor-hole-1_64.png b/www/assets/images/items/hypertube-floor-hole-1_64.png deleted file mode 100644 index 3c20f4ce..00000000 Binary files a/www/assets/images/items/hypertube-floor-hole-1_64.png and /dev/null differ diff --git a/www/assets/images/items/hypertube-floor-hole_256.png b/www/assets/images/items/hypertube-floor-hole_256.png deleted file mode 100644 index 3bf78c5d..00000000 Binary files a/www/assets/images/items/hypertube-floor-hole_256.png and /dev/null differ diff --git a/www/assets/images/items/hypertube-floor-hole_64.png b/www/assets/images/items/hypertube-floor-hole_64.png deleted file mode 100644 index 3c20f4ce..00000000 Binary files a/www/assets/images/items/hypertube-floor-hole_64.png and /dev/null differ diff --git a/www/assets/images/items/hypertube-support_256.png b/www/assets/images/items/hypertube-support_256.png deleted file mode 100644 index 95acde86..00000000 Binary files a/www/assets/images/items/hypertube-support_256.png and /dev/null differ diff --git a/www/assets/images/items/hypertube-support_64.png b/www/assets/images/items/hypertube-support_64.png deleted file mode 100644 index d3659589..00000000 Binary files a/www/assets/images/items/hypertube-support_64.png and /dev/null differ diff --git a/www/assets/images/items/hypertube-wall-attachments_256.png b/www/assets/images/items/hypertube-wall-attachments_256.png deleted file mode 100644 index 16ce2d97..00000000 Binary files a/www/assets/images/items/hypertube-wall-attachments_256.png and /dev/null differ diff --git a/www/assets/images/items/hypertube-wall-attachments_64.png b/www/assets/images/items/hypertube-wall-attachments_64.png deleted file mode 100644 index 9c7c7b27..00000000 Binary files a/www/assets/images/items/hypertube-wall-attachments_64.png and /dev/null differ diff --git a/www/assets/images/items/hypertube-wall-hole_256.png b/www/assets/images/items/hypertube-wall-hole_256.png deleted file mode 100644 index 886dcf03..00000000 Binary files a/www/assets/images/items/hypertube-wall-hole_256.png and /dev/null differ diff --git a/www/assets/images/items/hypertube-wall-hole_64.png b/www/assets/images/items/hypertube-wall-hole_64.png deleted file mode 100644 index f80355a2..00000000 Binary files a/www/assets/images/items/hypertube-wall-hole_64.png and /dev/null differ diff --git a/www/assets/images/items/hypertube-wall-support_256.png b/www/assets/images/items/hypertube-wall-support_256.png deleted file mode 100644 index 92171664..00000000 Binary files a/www/assets/images/items/hypertube-wall-support_256.png and /dev/null differ diff --git a/www/assets/images/items/hypertube-wall-support_64.png b/www/assets/images/items/hypertube-wall-support_64.png deleted file mode 100644 index fb21436c..00000000 Binary files a/www/assets/images/items/hypertube-wall-support_64.png and /dev/null differ diff --git a/www/assets/images/items/hypertube_256.png b/www/assets/images/items/hypertube_256.png deleted file mode 100644 index 4dcf6c09..00000000 Binary files a/www/assets/images/items/hypertube_256.png and /dev/null differ diff --git a/www/assets/images/items/hypertube_64.png b/www/assets/images/items/hypertube_64.png deleted file mode 100644 index 610b3d0b..00000000 Binary files a/www/assets/images/items/hypertube_64.png and /dev/null differ diff --git a/www/assets/images/items/hypertubes_256.png b/www/assets/images/items/hypertubes_256.png deleted file mode 100644 index ac57fe00..00000000 Binary files a/www/assets/images/items/hypertubes_256.png and /dev/null differ diff --git a/www/assets/images/items/hypertubes_64.png b/www/assets/images/items/hypertubes_64.png deleted file mode 100644 index 8c0fe367..00000000 Binary files a/www/assets/images/items/hypertubes_64.png and /dev/null differ diff --git a/www/assets/images/items/improved-melee-combat_256.png b/www/assets/images/items/improved-melee-combat_256.png deleted file mode 100644 index 55553579..00000000 Binary files a/www/assets/images/items/improved-melee-combat_256.png and /dev/null differ diff --git a/www/assets/images/items/improved-melee-combat_64.png b/www/assets/images/items/improved-melee-combat_64.png deleted file mode 100644 index e11dba0b..00000000 Binary files a/www/assets/images/items/improved-melee-combat_64.png and /dev/null differ diff --git a/www/assets/images/items/indoor-lighting_256.png b/www/assets/images/items/indoor-lighting_256.png deleted file mode 100644 index a62fb643..00000000 Binary files a/www/assets/images/items/indoor-lighting_256.png and /dev/null differ diff --git a/www/assets/images/items/indoor-lighting_64.png b/www/assets/images/items/indoor-lighting_64.png deleted file mode 100644 index 274c483d..00000000 Binary files a/www/assets/images/items/indoor-lighting_64.png and /dev/null differ diff --git a/www/assets/images/items/industrial-fluid-buffer_256.png b/www/assets/images/items/industrial-fluid-buffer_256.png deleted file mode 100644 index b57aeccc..00000000 Binary files a/www/assets/images/items/industrial-fluid-buffer_256.png and /dev/null differ diff --git a/www/assets/images/items/industrial-fluid-buffer_64.png b/www/assets/images/items/industrial-fluid-buffer_64.png deleted file mode 100644 index 5a4904a8..00000000 Binary files a/www/assets/images/items/industrial-fluid-buffer_64.png and /dev/null differ diff --git a/www/assets/images/items/industrial-manufacturing_256.png b/www/assets/images/items/industrial-manufacturing_256.png deleted file mode 100644 index 8fc04297..00000000 Binary files a/www/assets/images/items/industrial-manufacturing_256.png and /dev/null differ diff --git a/www/assets/images/items/industrial-manufacturing_64.png b/www/assets/images/items/industrial-manufacturing_64.png deleted file mode 100644 index fdfe317f..00000000 Binary files a/www/assets/images/items/industrial-manufacturing_64.png and /dev/null differ diff --git a/www/assets/images/items/industrial-railing-1_256.png b/www/assets/images/items/industrial-railing-1_256.png deleted file mode 100644 index 244954bb..00000000 Binary files a/www/assets/images/items/industrial-railing-1_256.png and /dev/null differ diff --git a/www/assets/images/items/industrial-railing-1_64.png b/www/assets/images/items/industrial-railing-1_64.png deleted file mode 100644 index e11c7abc..00000000 Binary files a/www/assets/images/items/industrial-railing-1_64.png and /dev/null differ diff --git a/www/assets/images/items/industrial-railing_256.png b/www/assets/images/items/industrial-railing_256.png deleted file mode 100644 index a0921b40..00000000 Binary files a/www/assets/images/items/industrial-railing_256.png and /dev/null differ diff --git a/www/assets/images/items/industrial-railing_64.png b/www/assets/images/items/industrial-railing_64.png deleted file mode 100644 index 28818c14..00000000 Binary files a/www/assets/images/items/industrial-railing_64.png and /dev/null differ diff --git a/www/assets/images/items/industrial-storage-container_256.png b/www/assets/images/items/industrial-storage-container_256.png deleted file mode 100644 index 56edffd7..00000000 Binary files a/www/assets/images/items/industrial-storage-container_256.png and /dev/null differ diff --git a/www/assets/images/items/industrial-storage-container_64.png b/www/assets/images/items/industrial-storage-container_64.png deleted file mode 100644 index f0c8a06b..00000000 Binary files a/www/assets/images/items/industrial-storage-container_64.png and /dev/null differ diff --git a/www/assets/images/items/industrial-walkways_256.png b/www/assets/images/items/industrial-walkways_256.png deleted file mode 100644 index 98dcfe5b..00000000 Binary files a/www/assets/images/items/industrial-walkways_256.png and /dev/null differ diff --git a/www/assets/images/items/industrial-walkways_64.png b/www/assets/images/items/industrial-walkways_64.png deleted file mode 100644 index f3cdbd11..00000000 Binary files a/www/assets/images/items/industrial-walkways_64.png and /dev/null differ diff --git a/www/assets/images/items/inflated-pocket-dimension-1_256.png b/www/assets/images/items/inflated-pocket-dimension-1_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/inflated-pocket-dimension-1_256.png and /dev/null differ diff --git a/www/assets/images/items/inflated-pocket-dimension-1_64.png b/www/assets/images/items/inflated-pocket-dimension-1_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/inflated-pocket-dimension-1_64.png and /dev/null differ diff --git a/www/assets/images/items/inflated-pocket-dimension-goldingot_256.png b/www/assets/images/items/inflated-pocket-dimension-goldingot_256.png deleted file mode 100644 index 6aaf583d..00000000 Binary files a/www/assets/images/items/inflated-pocket-dimension-goldingot_256.png and /dev/null differ diff --git a/www/assets/images/items/inflated-pocket-dimension-goldingot_64.png b/www/assets/images/items/inflated-pocket-dimension-goldingot_64.png deleted file mode 100644 index f7a0a5b0..00000000 Binary files a/www/assets/images/items/inflated-pocket-dimension-goldingot_64.png and /dev/null differ diff --git a/www/assets/images/items/inflated-pocket-dimension-gunpowder_256.png b/www/assets/images/items/inflated-pocket-dimension-gunpowder_256.png deleted file mode 100644 index 6aaf583d..00000000 Binary files a/www/assets/images/items/inflated-pocket-dimension-gunpowder_256.png and /dev/null differ diff --git a/www/assets/images/items/inflated-pocket-dimension-gunpowder_64.png b/www/assets/images/items/inflated-pocket-dimension-gunpowder_64.png deleted file mode 100644 index f7a0a5b0..00000000 Binary files a/www/assets/images/items/inflated-pocket-dimension-gunpowder_64.png and /dev/null differ diff --git a/www/assets/images/items/inflated-pocket-dimension-highspeedconnector_256.png b/www/assets/images/items/inflated-pocket-dimension-highspeedconnector_256.png deleted file mode 100644 index 6aaf583d..00000000 Binary files a/www/assets/images/items/inflated-pocket-dimension-highspeedconnector_256.png and /dev/null differ diff --git a/www/assets/images/items/inflated-pocket-dimension-highspeedconnector_64.png b/www/assets/images/items/inflated-pocket-dimension-highspeedconnector_64.png deleted file mode 100644 index f7a0a5b0..00000000 Binary files a/www/assets/images/items/inflated-pocket-dimension-highspeedconnector_64.png and /dev/null differ diff --git a/www/assets/images/items/inflated-pocket-dimension-spitterparts_256.png b/www/assets/images/items/inflated-pocket-dimension-spitterparts_256.png deleted file mode 100644 index 6aaf583d..00000000 Binary files a/www/assets/images/items/inflated-pocket-dimension-spitterparts_256.png and /dev/null differ diff --git a/www/assets/images/items/inflated-pocket-dimension-spitterparts_64.png b/www/assets/images/items/inflated-pocket-dimension-spitterparts_64.png deleted file mode 100644 index f7a0a5b0..00000000 Binary files a/www/assets/images/items/inflated-pocket-dimension-spitterparts_64.png and /dev/null differ diff --git a/www/assets/images/items/inflated-pocket-dimension_256.png b/www/assets/images/items/inflated-pocket-dimension_256.png deleted file mode 100644 index 226cfeaf..00000000 Binary files a/www/assets/images/items/inflated-pocket-dimension_256.png and /dev/null differ diff --git a/www/assets/images/items/inflated-pocket-dimension_64.png b/www/assets/images/items/inflated-pocket-dimension_64.png deleted file mode 100644 index 47073671..00000000 Binary files a/www/assets/images/items/inflated-pocket-dimension_64.png and /dev/null differ diff --git a/www/assets/images/items/inner-corner-quarter-pipe_256.png b/www/assets/images/items/inner-corner-quarter-pipe_256.png deleted file mode 100644 index 47d0656c..00000000 Binary files a/www/assets/images/items/inner-corner-quarter-pipe_256.png and /dev/null differ diff --git a/www/assets/images/items/inner-corner-quarter-pipe_64.png b/www/assets/images/items/inner-corner-quarter-pipe_64.png deleted file mode 100644 index 89bf243a..00000000 Binary files a/www/assets/images/items/inner-corner-quarter-pipe_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-down-corner-1m-1_256.png b/www/assets/images/items/inv-down-corner-1m-1_256.png deleted file mode 100644 index 5d527247..00000000 Binary files a/www/assets/images/items/inv-down-corner-1m-1_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-down-corner-1m-1_64.png b/www/assets/images/items/inv-down-corner-1m-1_64.png deleted file mode 100644 index 6f57fa8d..00000000 Binary files a/www/assets/images/items/inv-down-corner-1m-1_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-down-corner-1m-2_256.png b/www/assets/images/items/inv-down-corner-1m-2_256.png deleted file mode 100644 index 487fb8a1..00000000 Binary files a/www/assets/images/items/inv-down-corner-1m-2_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-down-corner-1m-2_64.png b/www/assets/images/items/inv-down-corner-1m-2_64.png deleted file mode 100644 index 3eba9a08..00000000 Binary files a/www/assets/images/items/inv-down-corner-1m-2_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-down-corner-1m-3_256.png b/www/assets/images/items/inv-down-corner-1m-3_256.png deleted file mode 100644 index 5d527247..00000000 Binary files a/www/assets/images/items/inv-down-corner-1m-3_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-down-corner-1m-3_64.png b/www/assets/images/items/inv-down-corner-1m-3_64.png deleted file mode 100644 index a75fb070..00000000 Binary files a/www/assets/images/items/inv-down-corner-1m-3_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-down-corner-1m-asphalt_256.png b/www/assets/images/items/inv-down-corner-1m-asphalt_256.png deleted file mode 100644 index 6f5edc3f..00000000 Binary files a/www/assets/images/items/inv-down-corner-1m-asphalt_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-down-corner-1m-asphalt_64.png b/www/assets/images/items/inv-down-corner-1m-asphalt_64.png deleted file mode 100644 index e66ee409..00000000 Binary files a/www/assets/images/items/inv-down-corner-1m-asphalt_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-down-corner-1m-concrete_256.png b/www/assets/images/items/inv-down-corner-1m-concrete_256.png deleted file mode 100644 index bc5a3a25..00000000 Binary files a/www/assets/images/items/inv-down-corner-1m-concrete_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-down-corner-1m-concrete_64.png b/www/assets/images/items/inv-down-corner-1m-concrete_64.png deleted file mode 100644 index cad93000..00000000 Binary files a/www/assets/images/items/inv-down-corner-1m-concrete_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-down-corner-1m-metal_256.png b/www/assets/images/items/inv-down-corner-1m-metal_256.png deleted file mode 100644 index 5922cc02..00000000 Binary files a/www/assets/images/items/inv-down-corner-1m-metal_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-down-corner-1m-metal_64.png b/www/assets/images/items/inv-down-corner-1m-metal_64.png deleted file mode 100644 index 0a357a92..00000000 Binary files a/www/assets/images/items/inv-down-corner-1m-metal_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-down-corner-1m-polished_256.png b/www/assets/images/items/inv-down-corner-1m-polished_256.png deleted file mode 100644 index 487fb8a1..00000000 Binary files a/www/assets/images/items/inv-down-corner-1m-polished_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-down-corner-1m-polished_64.png b/www/assets/images/items/inv-down-corner-1m-polished_64.png deleted file mode 100644 index 2bbf515f..00000000 Binary files a/www/assets/images/items/inv-down-corner-1m-polished_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-down-corner-1m_256.png b/www/assets/images/items/inv-down-corner-1m_256.png deleted file mode 100644 index 5d527247..00000000 Binary files a/www/assets/images/items/inv-down-corner-1m_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-down-corner-1m_64.png b/www/assets/images/items/inv-down-corner-1m_64.png deleted file mode 100644 index 6f57fa8d..00000000 Binary files a/www/assets/images/items/inv-down-corner-1m_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-down-corner-2m-1_256.png b/www/assets/images/items/inv-down-corner-2m-1_256.png deleted file mode 100644 index 0a8e429b..00000000 Binary files a/www/assets/images/items/inv-down-corner-2m-1_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-down-corner-2m-1_64.png b/www/assets/images/items/inv-down-corner-2m-1_64.png deleted file mode 100644 index 520e32f0..00000000 Binary files a/www/assets/images/items/inv-down-corner-2m-1_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-down-corner-2m-2_256.png b/www/assets/images/items/inv-down-corner-2m-2_256.png deleted file mode 100644 index 670c1462..00000000 Binary files a/www/assets/images/items/inv-down-corner-2m-2_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-down-corner-2m-2_64.png b/www/assets/images/items/inv-down-corner-2m-2_64.png deleted file mode 100644 index abd960cb..00000000 Binary files a/www/assets/images/items/inv-down-corner-2m-2_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-down-corner-2m-3_256.png b/www/assets/images/items/inv-down-corner-2m-3_256.png deleted file mode 100644 index 0a8e429b..00000000 Binary files a/www/assets/images/items/inv-down-corner-2m-3_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-down-corner-2m-3_64.png b/www/assets/images/items/inv-down-corner-2m-3_64.png deleted file mode 100644 index cd2174be..00000000 Binary files a/www/assets/images/items/inv-down-corner-2m-3_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-down-corner-2m-asphalt_256.png b/www/assets/images/items/inv-down-corner-2m-asphalt_256.png deleted file mode 100644 index facc6b67..00000000 Binary files a/www/assets/images/items/inv-down-corner-2m-asphalt_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-down-corner-2m-asphalt_64.png b/www/assets/images/items/inv-down-corner-2m-asphalt_64.png deleted file mode 100644 index f704e2ae..00000000 Binary files a/www/assets/images/items/inv-down-corner-2m-asphalt_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-down-corner-2m-concrete_256.png b/www/assets/images/items/inv-down-corner-2m-concrete_256.png deleted file mode 100644 index 64354b80..00000000 Binary files a/www/assets/images/items/inv-down-corner-2m-concrete_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-down-corner-2m-concrete_64.png b/www/assets/images/items/inv-down-corner-2m-concrete_64.png deleted file mode 100644 index 2df2ee9c..00000000 Binary files a/www/assets/images/items/inv-down-corner-2m-concrete_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-down-corner-2m-metal_256.png b/www/assets/images/items/inv-down-corner-2m-metal_256.png deleted file mode 100644 index 143b4efb..00000000 Binary files a/www/assets/images/items/inv-down-corner-2m-metal_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-down-corner-2m-metal_64.png b/www/assets/images/items/inv-down-corner-2m-metal_64.png deleted file mode 100644 index ee4d7af7..00000000 Binary files a/www/assets/images/items/inv-down-corner-2m-metal_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-down-corner-2m-polished_256.png b/www/assets/images/items/inv-down-corner-2m-polished_256.png deleted file mode 100644 index 670c1462..00000000 Binary files a/www/assets/images/items/inv-down-corner-2m-polished_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-down-corner-2m-polished_64.png b/www/assets/images/items/inv-down-corner-2m-polished_64.png deleted file mode 100644 index d6462db5..00000000 Binary files a/www/assets/images/items/inv-down-corner-2m-polished_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-down-corner-2m_256.png b/www/assets/images/items/inv-down-corner-2m_256.png deleted file mode 100644 index 0a8e429b..00000000 Binary files a/www/assets/images/items/inv-down-corner-2m_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-down-corner-2m_64.png b/www/assets/images/items/inv-down-corner-2m_64.png deleted file mode 100644 index 520e32f0..00000000 Binary files a/www/assets/images/items/inv-down-corner-2m_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-down-corner-4m-1_256.png b/www/assets/images/items/inv-down-corner-4m-1_256.png deleted file mode 100644 index ba34878b..00000000 Binary files a/www/assets/images/items/inv-down-corner-4m-1_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-down-corner-4m-1_64.png b/www/assets/images/items/inv-down-corner-4m-1_64.png deleted file mode 100644 index 2f9f9f36..00000000 Binary files a/www/assets/images/items/inv-down-corner-4m-1_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-down-corner-4m-2_256.png b/www/assets/images/items/inv-down-corner-4m-2_256.png deleted file mode 100644 index 54606a05..00000000 Binary files a/www/assets/images/items/inv-down-corner-4m-2_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-down-corner-4m-2_64.png b/www/assets/images/items/inv-down-corner-4m-2_64.png deleted file mode 100644 index ad85114f..00000000 Binary files a/www/assets/images/items/inv-down-corner-4m-2_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-down-corner-4m-3_256.png b/www/assets/images/items/inv-down-corner-4m-3_256.png deleted file mode 100644 index ba34878b..00000000 Binary files a/www/assets/images/items/inv-down-corner-4m-3_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-down-corner-4m-3_64.png b/www/assets/images/items/inv-down-corner-4m-3_64.png deleted file mode 100644 index 01c2157a..00000000 Binary files a/www/assets/images/items/inv-down-corner-4m-3_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-down-corner-4m-asphalt_256.png b/www/assets/images/items/inv-down-corner-4m-asphalt_256.png deleted file mode 100644 index 3f16f8d4..00000000 Binary files a/www/assets/images/items/inv-down-corner-4m-asphalt_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-down-corner-4m-asphalt_64.png b/www/assets/images/items/inv-down-corner-4m-asphalt_64.png deleted file mode 100644 index 0884f291..00000000 Binary files a/www/assets/images/items/inv-down-corner-4m-asphalt_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-down-corner-4m-concrete_256.png b/www/assets/images/items/inv-down-corner-4m-concrete_256.png deleted file mode 100644 index e8525161..00000000 Binary files a/www/assets/images/items/inv-down-corner-4m-concrete_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-down-corner-4m-concrete_64.png b/www/assets/images/items/inv-down-corner-4m-concrete_64.png deleted file mode 100644 index 815b7f6f..00000000 Binary files a/www/assets/images/items/inv-down-corner-4m-concrete_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-down-corner-4m-metal_256.png b/www/assets/images/items/inv-down-corner-4m-metal_256.png deleted file mode 100644 index 71e3eadd..00000000 Binary files a/www/assets/images/items/inv-down-corner-4m-metal_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-down-corner-4m-metal_64.png b/www/assets/images/items/inv-down-corner-4m-metal_64.png deleted file mode 100644 index 83320a99..00000000 Binary files a/www/assets/images/items/inv-down-corner-4m-metal_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-down-corner-4m-polished_256.png b/www/assets/images/items/inv-down-corner-4m-polished_256.png deleted file mode 100644 index 54606a05..00000000 Binary files a/www/assets/images/items/inv-down-corner-4m-polished_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-down-corner-4m-polished_64.png b/www/assets/images/items/inv-down-corner-4m-polished_64.png deleted file mode 100644 index 8241d9d0..00000000 Binary files a/www/assets/images/items/inv-down-corner-4m-polished_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-down-corner-4m_256.png b/www/assets/images/items/inv-down-corner-4m_256.png deleted file mode 100644 index ba34878b..00000000 Binary files a/www/assets/images/items/inv-down-corner-4m_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-down-corner-4m_64.png b/www/assets/images/items/inv-down-corner-4m_64.png deleted file mode 100644 index 2f9f9f36..00000000 Binary files a/www/assets/images/items/inv-down-corner-4m_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-ramp-1m-1_256.png b/www/assets/images/items/inv-ramp-1m-1_256.png deleted file mode 100644 index 6980d601..00000000 Binary files a/www/assets/images/items/inv-ramp-1m-1_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-ramp-1m-1_64.png b/www/assets/images/items/inv-ramp-1m-1_64.png deleted file mode 100644 index 08cf55e7..00000000 Binary files a/www/assets/images/items/inv-ramp-1m-1_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-ramp-1m-2_256.png b/www/assets/images/items/inv-ramp-1m-2_256.png deleted file mode 100644 index 0d8f4dcf..00000000 Binary files a/www/assets/images/items/inv-ramp-1m-2_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-ramp-1m-2_64.png b/www/assets/images/items/inv-ramp-1m-2_64.png deleted file mode 100644 index e69553f3..00000000 Binary files a/www/assets/images/items/inv-ramp-1m-2_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-ramp-1m-3_256.png b/www/assets/images/items/inv-ramp-1m-3_256.png deleted file mode 100644 index 6980d601..00000000 Binary files a/www/assets/images/items/inv-ramp-1m-3_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-ramp-1m-3_64.png b/www/assets/images/items/inv-ramp-1m-3_64.png deleted file mode 100644 index 92a8c90d..00000000 Binary files a/www/assets/images/items/inv-ramp-1m-3_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-ramp-1m-asphalt_256.png b/www/assets/images/items/inv-ramp-1m-asphalt_256.png deleted file mode 100644 index e6ce10a2..00000000 Binary files a/www/assets/images/items/inv-ramp-1m-asphalt_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-ramp-1m-asphalt_64.png b/www/assets/images/items/inv-ramp-1m-asphalt_64.png deleted file mode 100644 index 26c60858..00000000 Binary files a/www/assets/images/items/inv-ramp-1m-asphalt_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-ramp-1m-concrete_256.png b/www/assets/images/items/inv-ramp-1m-concrete_256.png deleted file mode 100644 index 917889a9..00000000 Binary files a/www/assets/images/items/inv-ramp-1m-concrete_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-ramp-1m-concrete_64.png b/www/assets/images/items/inv-ramp-1m-concrete_64.png deleted file mode 100644 index 1a238435..00000000 Binary files a/www/assets/images/items/inv-ramp-1m-concrete_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-ramp-1m-metal_256.png b/www/assets/images/items/inv-ramp-1m-metal_256.png deleted file mode 100644 index 447cbb67..00000000 Binary files a/www/assets/images/items/inv-ramp-1m-metal_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-ramp-1m-metal_64.png b/www/assets/images/items/inv-ramp-1m-metal_64.png deleted file mode 100644 index 56fce6ad..00000000 Binary files a/www/assets/images/items/inv-ramp-1m-metal_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-ramp-1m-polished_256.png b/www/assets/images/items/inv-ramp-1m-polished_256.png deleted file mode 100644 index 0d8f4dcf..00000000 Binary files a/www/assets/images/items/inv-ramp-1m-polished_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-ramp-1m-polished_64.png b/www/assets/images/items/inv-ramp-1m-polished_64.png deleted file mode 100644 index 356803d7..00000000 Binary files a/www/assets/images/items/inv-ramp-1m-polished_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-ramp-1m_256.png b/www/assets/images/items/inv-ramp-1m_256.png deleted file mode 100644 index 6980d601..00000000 Binary files a/www/assets/images/items/inv-ramp-1m_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-ramp-1m_64.png b/www/assets/images/items/inv-ramp-1m_64.png deleted file mode 100644 index 08cf55e7..00000000 Binary files a/www/assets/images/items/inv-ramp-1m_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-ramp-2m-1_256.png b/www/assets/images/items/inv-ramp-2m-1_256.png deleted file mode 100644 index e8cf53da..00000000 Binary files a/www/assets/images/items/inv-ramp-2m-1_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-ramp-2m-1_64.png b/www/assets/images/items/inv-ramp-2m-1_64.png deleted file mode 100644 index 5cc8905e..00000000 Binary files a/www/assets/images/items/inv-ramp-2m-1_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-ramp-2m-2_256.png b/www/assets/images/items/inv-ramp-2m-2_256.png deleted file mode 100644 index 720bc4da..00000000 Binary files a/www/assets/images/items/inv-ramp-2m-2_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-ramp-2m-2_64.png b/www/assets/images/items/inv-ramp-2m-2_64.png deleted file mode 100644 index 1d5405e4..00000000 Binary files a/www/assets/images/items/inv-ramp-2m-2_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-ramp-2m-3_256.png b/www/assets/images/items/inv-ramp-2m-3_256.png deleted file mode 100644 index e8cf53da..00000000 Binary files a/www/assets/images/items/inv-ramp-2m-3_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-ramp-2m-3_64.png b/www/assets/images/items/inv-ramp-2m-3_64.png deleted file mode 100644 index 9b12ff4c..00000000 Binary files a/www/assets/images/items/inv-ramp-2m-3_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-ramp-2m-asphalt_256.png b/www/assets/images/items/inv-ramp-2m-asphalt_256.png deleted file mode 100644 index b05c5e42..00000000 Binary files a/www/assets/images/items/inv-ramp-2m-asphalt_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-ramp-2m-asphalt_64.png b/www/assets/images/items/inv-ramp-2m-asphalt_64.png deleted file mode 100644 index fabf0513..00000000 Binary files a/www/assets/images/items/inv-ramp-2m-asphalt_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-ramp-2m-concrete_256.png b/www/assets/images/items/inv-ramp-2m-concrete_256.png deleted file mode 100644 index 29b7f5e7..00000000 Binary files a/www/assets/images/items/inv-ramp-2m-concrete_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-ramp-2m-concrete_64.png b/www/assets/images/items/inv-ramp-2m-concrete_64.png deleted file mode 100644 index 16324564..00000000 Binary files a/www/assets/images/items/inv-ramp-2m-concrete_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-ramp-2m-metal_256.png b/www/assets/images/items/inv-ramp-2m-metal_256.png deleted file mode 100644 index 50fa8ddc..00000000 Binary files a/www/assets/images/items/inv-ramp-2m-metal_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-ramp-2m-metal_64.png b/www/assets/images/items/inv-ramp-2m-metal_64.png deleted file mode 100644 index f6b43d52..00000000 Binary files a/www/assets/images/items/inv-ramp-2m-metal_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-ramp-2m-polished_256.png b/www/assets/images/items/inv-ramp-2m-polished_256.png deleted file mode 100644 index 720bc4da..00000000 Binary files a/www/assets/images/items/inv-ramp-2m-polished_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-ramp-2m-polished_64.png b/www/assets/images/items/inv-ramp-2m-polished_64.png deleted file mode 100644 index 98275307..00000000 Binary files a/www/assets/images/items/inv-ramp-2m-polished_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-ramp-2m_256.png b/www/assets/images/items/inv-ramp-2m_256.png deleted file mode 100644 index e8cf53da..00000000 Binary files a/www/assets/images/items/inv-ramp-2m_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-ramp-2m_64.png b/www/assets/images/items/inv-ramp-2m_64.png deleted file mode 100644 index 5cc8905e..00000000 Binary files a/www/assets/images/items/inv-ramp-2m_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-ramp-4m-1_256.png b/www/assets/images/items/inv-ramp-4m-1_256.png deleted file mode 100644 index 3e4e4f53..00000000 Binary files a/www/assets/images/items/inv-ramp-4m-1_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-ramp-4m-1_64.png b/www/assets/images/items/inv-ramp-4m-1_64.png deleted file mode 100644 index 697cc438..00000000 Binary files a/www/assets/images/items/inv-ramp-4m-1_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-ramp-4m-2_256.png b/www/assets/images/items/inv-ramp-4m-2_256.png deleted file mode 100644 index f141047c..00000000 Binary files a/www/assets/images/items/inv-ramp-4m-2_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-ramp-4m-2_64.png b/www/assets/images/items/inv-ramp-4m-2_64.png deleted file mode 100644 index 4973240a..00000000 Binary files a/www/assets/images/items/inv-ramp-4m-2_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-ramp-4m-3_256.png b/www/assets/images/items/inv-ramp-4m-3_256.png deleted file mode 100644 index 3e4e4f53..00000000 Binary files a/www/assets/images/items/inv-ramp-4m-3_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-ramp-4m-3_64.png b/www/assets/images/items/inv-ramp-4m-3_64.png deleted file mode 100644 index 7e024256..00000000 Binary files a/www/assets/images/items/inv-ramp-4m-3_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-ramp-4m-asphalt_256.png b/www/assets/images/items/inv-ramp-4m-asphalt_256.png deleted file mode 100644 index b8b7ddd3..00000000 Binary files a/www/assets/images/items/inv-ramp-4m-asphalt_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-ramp-4m-asphalt_64.png b/www/assets/images/items/inv-ramp-4m-asphalt_64.png deleted file mode 100644 index 2a5c4b85..00000000 Binary files a/www/assets/images/items/inv-ramp-4m-asphalt_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-ramp-4m-concrete_256.png b/www/assets/images/items/inv-ramp-4m-concrete_256.png deleted file mode 100644 index 7a75e186..00000000 Binary files a/www/assets/images/items/inv-ramp-4m-concrete_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-ramp-4m-concrete_64.png b/www/assets/images/items/inv-ramp-4m-concrete_64.png deleted file mode 100644 index 37f4648d..00000000 Binary files a/www/assets/images/items/inv-ramp-4m-concrete_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-ramp-4m-metal_256.png b/www/assets/images/items/inv-ramp-4m-metal_256.png deleted file mode 100644 index 9e505092..00000000 Binary files a/www/assets/images/items/inv-ramp-4m-metal_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-ramp-4m-metal_64.png b/www/assets/images/items/inv-ramp-4m-metal_64.png deleted file mode 100644 index fd879074..00000000 Binary files a/www/assets/images/items/inv-ramp-4m-metal_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-ramp-4m-polished_256.png b/www/assets/images/items/inv-ramp-4m-polished_256.png deleted file mode 100644 index f141047c..00000000 Binary files a/www/assets/images/items/inv-ramp-4m-polished_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-ramp-4m-polished_64.png b/www/assets/images/items/inv-ramp-4m-polished_64.png deleted file mode 100644 index 58c2407e..00000000 Binary files a/www/assets/images/items/inv-ramp-4m-polished_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-ramp-4m_256.png b/www/assets/images/items/inv-ramp-4m_256.png deleted file mode 100644 index 3e4e4f53..00000000 Binary files a/www/assets/images/items/inv-ramp-4m_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-ramp-4m_64.png b/www/assets/images/items/inv-ramp-4m_64.png deleted file mode 100644 index 697cc438..00000000 Binary files a/www/assets/images/items/inv-ramp-4m_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-ramp-wall-1m-steel_256.png b/www/assets/images/items/inv-ramp-wall-1m-steel_256.png deleted file mode 100644 index acfa75a7..00000000 Binary files a/www/assets/images/items/inv-ramp-wall-1m-steel_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-ramp-wall-1m-steel_64.png b/www/assets/images/items/inv-ramp-wall-1m-steel_64.png deleted file mode 100644 index 327d9153..00000000 Binary files a/www/assets/images/items/inv-ramp-wall-1m-steel_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-ramp-wall-2m-steel_256.png b/www/assets/images/items/inv-ramp-wall-2m-steel_256.png deleted file mode 100644 index 6b11451e..00000000 Binary files a/www/assets/images/items/inv-ramp-wall-2m-steel_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-ramp-wall-2m-steel_64.png b/www/assets/images/items/inv-ramp-wall-2m-steel_64.png deleted file mode 100644 index 55c4690c..00000000 Binary files a/www/assets/images/items/inv-ramp-wall-2m-steel_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-ramp-wall-4m-steel_256.png b/www/assets/images/items/inv-ramp-wall-4m-steel_256.png deleted file mode 100644 index 43e68ffc..00000000 Binary files a/www/assets/images/items/inv-ramp-wall-4m-steel_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-ramp-wall-4m-steel_64.png b/www/assets/images/items/inv-ramp-wall-4m-steel_64.png deleted file mode 100644 index 02c6f1fd..00000000 Binary files a/www/assets/images/items/inv-ramp-wall-4m-steel_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-ramp-wall-8m-steel_256.png b/www/assets/images/items/inv-ramp-wall-8m-steel_256.png deleted file mode 100644 index 4e591167..00000000 Binary files a/www/assets/images/items/inv-ramp-wall-8m-steel_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-ramp-wall-8m-steel_64.png b/www/assets/images/items/inv-ramp-wall-8m-steel_64.png deleted file mode 100644 index fa344c9e..00000000 Binary files a/www/assets/images/items/inv-ramp-wall-8m-steel_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-up-corner-1m-1_256.png b/www/assets/images/items/inv-up-corner-1m-1_256.png deleted file mode 100644 index b41d30ae..00000000 Binary files a/www/assets/images/items/inv-up-corner-1m-1_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-up-corner-1m-1_64.png b/www/assets/images/items/inv-up-corner-1m-1_64.png deleted file mode 100644 index b701636e..00000000 Binary files a/www/assets/images/items/inv-up-corner-1m-1_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-up-corner-1m-2_256.png b/www/assets/images/items/inv-up-corner-1m-2_256.png deleted file mode 100644 index bbb19475..00000000 Binary files a/www/assets/images/items/inv-up-corner-1m-2_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-up-corner-1m-2_64.png b/www/assets/images/items/inv-up-corner-1m-2_64.png deleted file mode 100644 index e8eb93a0..00000000 Binary files a/www/assets/images/items/inv-up-corner-1m-2_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-up-corner-1m-3_256.png b/www/assets/images/items/inv-up-corner-1m-3_256.png deleted file mode 100644 index b41d30ae..00000000 Binary files a/www/assets/images/items/inv-up-corner-1m-3_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-up-corner-1m-3_64.png b/www/assets/images/items/inv-up-corner-1m-3_64.png deleted file mode 100644 index 58695786..00000000 Binary files a/www/assets/images/items/inv-up-corner-1m-3_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-up-corner-1m-asphalt_256.png b/www/assets/images/items/inv-up-corner-1m-asphalt_256.png deleted file mode 100644 index 56640944..00000000 Binary files a/www/assets/images/items/inv-up-corner-1m-asphalt_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-up-corner-1m-asphalt_64.png b/www/assets/images/items/inv-up-corner-1m-asphalt_64.png deleted file mode 100644 index a549f8db..00000000 Binary files a/www/assets/images/items/inv-up-corner-1m-asphalt_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-up-corner-1m-concrete_256.png b/www/assets/images/items/inv-up-corner-1m-concrete_256.png deleted file mode 100644 index eec520b3..00000000 Binary files a/www/assets/images/items/inv-up-corner-1m-concrete_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-up-corner-1m-concrete_64.png b/www/assets/images/items/inv-up-corner-1m-concrete_64.png deleted file mode 100644 index f7f9d726..00000000 Binary files a/www/assets/images/items/inv-up-corner-1m-concrete_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-up-corner-1m-metal_256.png b/www/assets/images/items/inv-up-corner-1m-metal_256.png deleted file mode 100644 index 79b5dd2a..00000000 Binary files a/www/assets/images/items/inv-up-corner-1m-metal_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-up-corner-1m-metal_64.png b/www/assets/images/items/inv-up-corner-1m-metal_64.png deleted file mode 100644 index 6f6cb5df..00000000 Binary files a/www/assets/images/items/inv-up-corner-1m-metal_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-up-corner-1m-polished_256.png b/www/assets/images/items/inv-up-corner-1m-polished_256.png deleted file mode 100644 index bbb19475..00000000 Binary files a/www/assets/images/items/inv-up-corner-1m-polished_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-up-corner-1m-polished_64.png b/www/assets/images/items/inv-up-corner-1m-polished_64.png deleted file mode 100644 index 2506c57d..00000000 Binary files a/www/assets/images/items/inv-up-corner-1m-polished_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-up-corner-1m_256.png b/www/assets/images/items/inv-up-corner-1m_256.png deleted file mode 100644 index b41d30ae..00000000 Binary files a/www/assets/images/items/inv-up-corner-1m_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-up-corner-1m_64.png b/www/assets/images/items/inv-up-corner-1m_64.png deleted file mode 100644 index b701636e..00000000 Binary files a/www/assets/images/items/inv-up-corner-1m_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-up-corner-2m-1_256.png b/www/assets/images/items/inv-up-corner-2m-1_256.png deleted file mode 100644 index 9306442a..00000000 Binary files a/www/assets/images/items/inv-up-corner-2m-1_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-up-corner-2m-1_64.png b/www/assets/images/items/inv-up-corner-2m-1_64.png deleted file mode 100644 index ae32cdf0..00000000 Binary files a/www/assets/images/items/inv-up-corner-2m-1_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-up-corner-2m-2_256.png b/www/assets/images/items/inv-up-corner-2m-2_256.png deleted file mode 100644 index 11255b6e..00000000 Binary files a/www/assets/images/items/inv-up-corner-2m-2_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-up-corner-2m-2_64.png b/www/assets/images/items/inv-up-corner-2m-2_64.png deleted file mode 100644 index c012109e..00000000 Binary files a/www/assets/images/items/inv-up-corner-2m-2_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-up-corner-2m-3_256.png b/www/assets/images/items/inv-up-corner-2m-3_256.png deleted file mode 100644 index 9306442a..00000000 Binary files a/www/assets/images/items/inv-up-corner-2m-3_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-up-corner-2m-3_64.png b/www/assets/images/items/inv-up-corner-2m-3_64.png deleted file mode 100644 index 0747d1a8..00000000 Binary files a/www/assets/images/items/inv-up-corner-2m-3_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-up-corner-2m-asphalt_256.png b/www/assets/images/items/inv-up-corner-2m-asphalt_256.png deleted file mode 100644 index 67fc0f15..00000000 Binary files a/www/assets/images/items/inv-up-corner-2m-asphalt_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-up-corner-2m-asphalt_64.png b/www/assets/images/items/inv-up-corner-2m-asphalt_64.png deleted file mode 100644 index b5c23b97..00000000 Binary files a/www/assets/images/items/inv-up-corner-2m-asphalt_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-up-corner-2m-concrete_256.png b/www/assets/images/items/inv-up-corner-2m-concrete_256.png deleted file mode 100644 index 066e2c9a..00000000 Binary files a/www/assets/images/items/inv-up-corner-2m-concrete_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-up-corner-2m-concrete_64.png b/www/assets/images/items/inv-up-corner-2m-concrete_64.png deleted file mode 100644 index 6c1363d9..00000000 Binary files a/www/assets/images/items/inv-up-corner-2m-concrete_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-up-corner-2m-metal_256.png b/www/assets/images/items/inv-up-corner-2m-metal_256.png deleted file mode 100644 index 427499a3..00000000 Binary files a/www/assets/images/items/inv-up-corner-2m-metal_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-up-corner-2m-metal_64.png b/www/assets/images/items/inv-up-corner-2m-metal_64.png deleted file mode 100644 index 8807366c..00000000 Binary files a/www/assets/images/items/inv-up-corner-2m-metal_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-up-corner-2m-polished_256.png b/www/assets/images/items/inv-up-corner-2m-polished_256.png deleted file mode 100644 index 11255b6e..00000000 Binary files a/www/assets/images/items/inv-up-corner-2m-polished_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-up-corner-2m-polished_64.png b/www/assets/images/items/inv-up-corner-2m-polished_64.png deleted file mode 100644 index aef8836f..00000000 Binary files a/www/assets/images/items/inv-up-corner-2m-polished_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-up-corner-2m_256.png b/www/assets/images/items/inv-up-corner-2m_256.png deleted file mode 100644 index 9306442a..00000000 Binary files a/www/assets/images/items/inv-up-corner-2m_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-up-corner-2m_64.png b/www/assets/images/items/inv-up-corner-2m_64.png deleted file mode 100644 index ae32cdf0..00000000 Binary files a/www/assets/images/items/inv-up-corner-2m_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-up-corner-4m-1_256.png b/www/assets/images/items/inv-up-corner-4m-1_256.png deleted file mode 100644 index cf8e5524..00000000 Binary files a/www/assets/images/items/inv-up-corner-4m-1_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-up-corner-4m-1_64.png b/www/assets/images/items/inv-up-corner-4m-1_64.png deleted file mode 100644 index 7b99da38..00000000 Binary files a/www/assets/images/items/inv-up-corner-4m-1_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-up-corner-4m-2_256.png b/www/assets/images/items/inv-up-corner-4m-2_256.png deleted file mode 100644 index 7ee2db52..00000000 Binary files a/www/assets/images/items/inv-up-corner-4m-2_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-up-corner-4m-2_64.png b/www/assets/images/items/inv-up-corner-4m-2_64.png deleted file mode 100644 index b4ff0e2d..00000000 Binary files a/www/assets/images/items/inv-up-corner-4m-2_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-up-corner-4m-3_256.png b/www/assets/images/items/inv-up-corner-4m-3_256.png deleted file mode 100644 index cf8e5524..00000000 Binary files a/www/assets/images/items/inv-up-corner-4m-3_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-up-corner-4m-3_64.png b/www/assets/images/items/inv-up-corner-4m-3_64.png deleted file mode 100644 index 6ca7615c..00000000 Binary files a/www/assets/images/items/inv-up-corner-4m-3_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-up-corner-4m-asphalt_256.png b/www/assets/images/items/inv-up-corner-4m-asphalt_256.png deleted file mode 100644 index 2f288999..00000000 Binary files a/www/assets/images/items/inv-up-corner-4m-asphalt_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-up-corner-4m-asphalt_64.png b/www/assets/images/items/inv-up-corner-4m-asphalt_64.png deleted file mode 100644 index aebd54cf..00000000 Binary files a/www/assets/images/items/inv-up-corner-4m-asphalt_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-up-corner-4m-concrete_256.png b/www/assets/images/items/inv-up-corner-4m-concrete_256.png deleted file mode 100644 index fb12bafe..00000000 Binary files a/www/assets/images/items/inv-up-corner-4m-concrete_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-up-corner-4m-concrete_64.png b/www/assets/images/items/inv-up-corner-4m-concrete_64.png deleted file mode 100644 index 94d60fbb..00000000 Binary files a/www/assets/images/items/inv-up-corner-4m-concrete_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-up-corner-4m-metal_256.png b/www/assets/images/items/inv-up-corner-4m-metal_256.png deleted file mode 100644 index bad19155..00000000 Binary files a/www/assets/images/items/inv-up-corner-4m-metal_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-up-corner-4m-metal_64.png b/www/assets/images/items/inv-up-corner-4m-metal_64.png deleted file mode 100644 index 0ac15c5b..00000000 Binary files a/www/assets/images/items/inv-up-corner-4m-metal_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-up-corner-4m-polished_256.png b/www/assets/images/items/inv-up-corner-4m-polished_256.png deleted file mode 100644 index 7ee2db52..00000000 Binary files a/www/assets/images/items/inv-up-corner-4m-polished_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-up-corner-4m-polished_64.png b/www/assets/images/items/inv-up-corner-4m-polished_64.png deleted file mode 100644 index 298539fa..00000000 Binary files a/www/assets/images/items/inv-up-corner-4m-polished_64.png and /dev/null differ diff --git a/www/assets/images/items/inv-up-corner-4m_256.png b/www/assets/images/items/inv-up-corner-4m_256.png deleted file mode 100644 index cf8e5524..00000000 Binary files a/www/assets/images/items/inv-up-corner-4m_256.png and /dev/null differ diff --git a/www/assets/images/items/inv-up-corner-4m_64.png b/www/assets/images/items/inv-up-corner-4m_64.png deleted file mode 100644 index 7b99da38..00000000 Binary files a/www/assets/images/items/inv-up-corner-4m_64.png and /dev/null differ diff --git a/www/assets/images/items/inverted-corner-ramp-pack_256.png b/www/assets/images/items/inverted-corner-ramp-pack_256.png deleted file mode 100644 index c0201e0d..00000000 Binary files a/www/assets/images/items/inverted-corner-ramp-pack_256.png and /dev/null differ diff --git a/www/assets/images/items/inverted-corner-ramp-pack_64.png b/www/assets/images/items/inverted-corner-ramp-pack_64.png deleted file mode 100644 index f222ce30..00000000 Binary files a/www/assets/images/items/inverted-corner-ramp-pack_64.png and /dev/null differ diff --git a/www/assets/images/items/inverted-frame-ramp_256.png b/www/assets/images/items/inverted-frame-ramp_256.png deleted file mode 100644 index 63a09edb..00000000 Binary files a/www/assets/images/items/inverted-frame-ramp_256.png and /dev/null differ diff --git a/www/assets/images/items/inverted-frame-ramp_64.png b/www/assets/images/items/inverted-frame-ramp_64.png deleted file mode 100644 index e0001960..00000000 Binary files a/www/assets/images/items/inverted-frame-ramp_64.png and /dev/null differ diff --git a/www/assets/images/items/inverted-inner-corner-quarter-pipe_256.png b/www/assets/images/items/inverted-inner-corner-quarter-pipe_256.png deleted file mode 100644 index 08139883..00000000 Binary files a/www/assets/images/items/inverted-inner-corner-quarter-pipe_256.png and /dev/null differ diff --git a/www/assets/images/items/inverted-inner-corner-quarter-pipe_64.png b/www/assets/images/items/inverted-inner-corner-quarter-pipe_64.png deleted file mode 100644 index 749380ed..00000000 Binary files a/www/assets/images/items/inverted-inner-corner-quarter-pipe_64.png and /dev/null differ diff --git a/www/assets/images/items/inverted-outer-corner-quarter-pipe_256.png b/www/assets/images/items/inverted-outer-corner-quarter-pipe_256.png deleted file mode 100644 index 6b3ea77d..00000000 Binary files a/www/assets/images/items/inverted-outer-corner-quarter-pipe_256.png and /dev/null differ diff --git a/www/assets/images/items/inverted-outer-corner-quarter-pipe_64.png b/www/assets/images/items/inverted-outer-corner-quarter-pipe_64.png deleted file mode 100644 index 2b3d23a7..00000000 Binary files a/www/assets/images/items/inverted-outer-corner-quarter-pipe_64.png and /dev/null differ diff --git a/www/assets/images/items/inverted-quarter-pipe_256.png b/www/assets/images/items/inverted-quarter-pipe_256.png deleted file mode 100644 index e0762d3e..00000000 Binary files a/www/assets/images/items/inverted-quarter-pipe_256.png and /dev/null differ diff --git a/www/assets/images/items/inverted-quarter-pipe_64.png b/www/assets/images/items/inverted-quarter-pipe_64.png deleted file mode 100644 index ace9ebf0..00000000 Binary files a/www/assets/images/items/inverted-quarter-pipe_64.png and /dev/null differ diff --git a/www/assets/images/items/inverted-ramp-8m-x-1m_256.png b/www/assets/images/items/inverted-ramp-8m-x-1m_256.png deleted file mode 100644 index 08d30102..00000000 Binary files a/www/assets/images/items/inverted-ramp-8m-x-1m_256.png and /dev/null differ diff --git a/www/assets/images/items/inverted-ramp-8m-x-1m_64.png b/www/assets/images/items/inverted-ramp-8m-x-1m_64.png deleted file mode 100644 index 5419e665..00000000 Binary files a/www/assets/images/items/inverted-ramp-8m-x-1m_64.png and /dev/null differ diff --git a/www/assets/images/items/inverted-ramp-8m-x-2m_256.png b/www/assets/images/items/inverted-ramp-8m-x-2m_256.png deleted file mode 100644 index 9b85504b..00000000 Binary files a/www/assets/images/items/inverted-ramp-8m-x-2m_256.png and /dev/null differ diff --git a/www/assets/images/items/inverted-ramp-8m-x-2m_64.png b/www/assets/images/items/inverted-ramp-8m-x-2m_64.png deleted file mode 100644 index b289508d..00000000 Binary files a/www/assets/images/items/inverted-ramp-8m-x-2m_64.png and /dev/null differ diff --git a/www/assets/images/items/inverted-ramp-8m-x-4m_256.png b/www/assets/images/items/inverted-ramp-8m-x-4m_256.png deleted file mode 100644 index ffdcfca3..00000000 Binary files a/www/assets/images/items/inverted-ramp-8m-x-4m_256.png and /dev/null differ diff --git a/www/assets/images/items/inverted-ramp-8m-x-4m_64.png b/www/assets/images/items/inverted-ramp-8m-x-4m_64.png deleted file mode 100644 index 2b933dae..00000000 Binary files a/www/assets/images/items/inverted-ramp-8m-x-4m_64.png and /dev/null differ diff --git a/www/assets/images/items/inverted-ramp-pack_256.png b/www/assets/images/items/inverted-ramp-pack_256.png deleted file mode 100644 index 2bf38a03..00000000 Binary files a/www/assets/images/items/inverted-ramp-pack_256.png and /dev/null differ diff --git a/www/assets/images/items/inverted-ramp-pack_64.png b/www/assets/images/items/inverted-ramp-pack_64.png deleted file mode 100644 index a37c8ee6..00000000 Binary files a/www/assets/images/items/inverted-ramp-pack_64.png and /dev/null differ diff --git a/www/assets/images/items/inverted-ramp-wall-bundle_256.png b/www/assets/images/items/inverted-ramp-wall-bundle_256.png deleted file mode 100644 index 69adf080..00000000 Binary files a/www/assets/images/items/inverted-ramp-wall-bundle_256.png and /dev/null differ diff --git a/www/assets/images/items/inverted-ramp-wall-bundle_64.png b/www/assets/images/items/inverted-ramp-wall-bundle_64.png deleted file mode 100644 index b62d01fd..00000000 Binary files a/www/assets/images/items/inverted-ramp-wall-bundle_64.png and /dev/null differ diff --git a/www/assets/images/items/iodine-infused-filter_256.png b/www/assets/images/items/iodine-infused-filter_256.png deleted file mode 100644 index b2f70dac..00000000 Binary files a/www/assets/images/items/iodine-infused-filter_256.png and /dev/null differ diff --git a/www/assets/images/items/iodine-infused-filter_64.png b/www/assets/images/items/iodine-infused-filter_64.png deleted file mode 100644 index 1260068a..00000000 Binary files a/www/assets/images/items/iodine-infused-filter_64.png and /dev/null differ diff --git a/www/assets/images/items/iron-ingot_256.png b/www/assets/images/items/iron-ingot_256.png deleted file mode 100644 index 94f9ee8b..00000000 Binary files a/www/assets/images/items/iron-ingot_256.png and /dev/null differ diff --git a/www/assets/images/items/iron-ingot_64.png b/www/assets/images/items/iron-ingot_64.png deleted file mode 100644 index 029ce20a..00000000 Binary files a/www/assets/images/items/iron-ingot_64.png and /dev/null differ diff --git a/www/assets/images/items/iron-ore_256.png b/www/assets/images/items/iron-ore_256.png deleted file mode 100644 index 881b45dc..00000000 Binary files a/www/assets/images/items/iron-ore_256.png and /dev/null differ diff --git a/www/assets/images/items/iron-ore_64.png b/www/assets/images/items/iron-ore_64.png deleted file mode 100644 index a782c2de..00000000 Binary files a/www/assets/images/items/iron-ore_64.png and /dev/null differ diff --git a/www/assets/images/items/iron-plate_256.png b/www/assets/images/items/iron-plate_256.png deleted file mode 100644 index 48311d31..00000000 Binary files a/www/assets/images/items/iron-plate_256.png and /dev/null differ diff --git a/www/assets/images/items/iron-plate_64.png b/www/assets/images/items/iron-plate_64.png deleted file mode 100644 index 62531a3a..00000000 Binary files a/www/assets/images/items/iron-plate_64.png and /dev/null differ diff --git a/www/assets/images/items/iron-rod_256.png b/www/assets/images/items/iron-rod_256.png deleted file mode 100644 index 142332e4..00000000 Binary files a/www/assets/images/items/iron-rod_256.png and /dev/null differ diff --git a/www/assets/images/items/iron-rod_64.png b/www/assets/images/items/iron-rod_64.png deleted file mode 100644 index 9ee84b3c..00000000 Binary files a/www/assets/images/items/iron-rod_64.png and /dev/null differ diff --git a/www/assets/images/items/it's-snowing!_256.png b/www/assets/images/items/it's-snowing!_256.png deleted file mode 100644 index 2e92463b..00000000 Binary files a/www/assets/images/items/it's-snowing!_256.png and /dev/null differ diff --git a/www/assets/images/items/it's-snowing!_64.png b/www/assets/images/items/it's-snowing!_64.png deleted file mode 100644 index 456804f2..00000000 Binary files a/www/assets/images/items/it's-snowing!_64.png and /dev/null differ diff --git a/www/assets/images/items/jetpack-1_256.png b/www/assets/images/items/jetpack-1_256.png deleted file mode 100644 index 55553579..00000000 Binary files a/www/assets/images/items/jetpack-1_256.png and /dev/null differ diff --git a/www/assets/images/items/jetpack-1_64.png b/www/assets/images/items/jetpack-1_64.png deleted file mode 100644 index e11dba0b..00000000 Binary files a/www/assets/images/items/jetpack-1_64.png and /dev/null differ diff --git a/www/assets/images/items/jetpack_256.png b/www/assets/images/items/jetpack_256.png deleted file mode 100644 index 0635ea55..00000000 Binary files a/www/assets/images/items/jetpack_256.png and /dev/null differ diff --git a/www/assets/images/items/jetpack_64.png b/www/assets/images/items/jetpack_64.png deleted file mode 100644 index 033b3160..00000000 Binary files a/www/assets/images/items/jetpack_64.png and /dev/null differ diff --git a/www/assets/images/items/jump-pad_256.png b/www/assets/images/items/jump-pad_256.png deleted file mode 100644 index b1142b7e..00000000 Binary files a/www/assets/images/items/jump-pad_256.png and /dev/null differ diff --git a/www/assets/images/items/jump-pad_64.png b/www/assets/images/items/jump-pad_64.png deleted file mode 100644 index d50be5e4..00000000 Binary files a/www/assets/images/items/jump-pad_64.png and /dev/null differ diff --git a/www/assets/images/items/jump-pads_256.png b/www/assets/images/items/jump-pads_256.png deleted file mode 100644 index ac57fe00..00000000 Binary files a/www/assets/images/items/jump-pads_256.png and /dev/null differ diff --git a/www/assets/images/items/jump-pads_64.png b/www/assets/images/items/jump-pads_64.png deleted file mode 100644 index 8c0fe367..00000000 Binary files a/www/assets/images/items/jump-pads_64.png and /dev/null differ diff --git a/www/assets/images/items/label-sign-2m_256.png b/www/assets/images/items/label-sign-2m_256.png deleted file mode 100644 index 329388e1..00000000 Binary files a/www/assets/images/items/label-sign-2m_256.png and /dev/null differ diff --git a/www/assets/images/items/label-sign-2m_64.png b/www/assets/images/items/label-sign-2m_64.png deleted file mode 100644 index fd42e165..00000000 Binary files a/www/assets/images/items/label-sign-2m_64.png and /dev/null differ diff --git a/www/assets/images/items/label-sign-3m_256.png b/www/assets/images/items/label-sign-3m_256.png deleted file mode 100644 index 1e4e8661..00000000 Binary files a/www/assets/images/items/label-sign-3m_256.png and /dev/null differ diff --git a/www/assets/images/items/label-sign-3m_64.png b/www/assets/images/items/label-sign-3m_64.png deleted file mode 100644 index 81a7e775..00000000 Binary files a/www/assets/images/items/label-sign-3m_64.png and /dev/null differ diff --git a/www/assets/images/items/label-sign-4m_256.png b/www/assets/images/items/label-sign-4m_256.png deleted file mode 100644 index e4e42ff4..00000000 Binary files a/www/assets/images/items/label-sign-4m_256.png and /dev/null differ diff --git a/www/assets/images/items/label-sign-4m_64.png b/www/assets/images/items/label-sign-4m_64.png deleted file mode 100644 index 52f1b45d..00000000 Binary files a/www/assets/images/items/label-sign-4m_64.png and /dev/null differ diff --git a/www/assets/images/items/label-sign-bundle_256.png b/www/assets/images/items/label-sign-bundle_256.png deleted file mode 100644 index 09c0a5db..00000000 Binary files a/www/assets/images/items/label-sign-bundle_256.png and /dev/null differ diff --git a/www/assets/images/items/label-sign-bundle_64.png b/www/assets/images/items/label-sign-bundle_64.png deleted file mode 100644 index f6828cdf..00000000 Binary files a/www/assets/images/items/label-sign-bundle_64.png and /dev/null differ diff --git a/www/assets/images/items/ladder_256.png b/www/assets/images/items/ladder_256.png deleted file mode 100644 index 76ba7645..00000000 Binary files a/www/assets/images/items/ladder_256.png and /dev/null differ diff --git a/www/assets/images/items/ladder_64.png b/www/assets/images/items/ladder_64.png deleted file mode 100644 index e1f7dc5c..00000000 Binary files a/www/assets/images/items/ladder_64.png and /dev/null differ diff --git a/www/assets/images/items/large-billboard_256.png b/www/assets/images/items/large-billboard_256.png deleted file mode 100644 index 224974e6..00000000 Binary files a/www/assets/images/items/large-billboard_256.png and /dev/null differ diff --git a/www/assets/images/items/large-billboard_64.png b/www/assets/images/items/large-billboard_64.png deleted file mode 100644 index 65e92b93..00000000 Binary files a/www/assets/images/items/large-billboard_64.png and /dev/null differ diff --git a/www/assets/images/items/leading-edge-production_256.png b/www/assets/images/items/leading-edge-production_256.png deleted file mode 100644 index 8fc04297..00000000 Binary files a/www/assets/images/items/leading-edge-production_256.png and /dev/null differ diff --git a/www/assets/images/items/leading-edge-production_64.png b/www/assets/images/items/leading-edge-production_64.png deleted file mode 100644 index fdfe317f..00000000 Binary files a/www/assets/images/items/leading-edge-production_64.png and /dev/null differ diff --git a/www/assets/images/items/leaves_256.png b/www/assets/images/items/leaves_256.png deleted file mode 100644 index d9b5b9dd..00000000 Binary files a/www/assets/images/items/leaves_256.png and /dev/null differ diff --git a/www/assets/images/items/leaves_64.png b/www/assets/images/items/leaves_64.png deleted file mode 100644 index 527cb4d7..00000000 Binary files a/www/assets/images/items/leaves_64.png and /dev/null differ diff --git a/www/assets/images/items/left-door-wall-steel_256.png b/www/assets/images/items/left-door-wall-steel_256.png deleted file mode 100644 index e44306e4..00000000 Binary files a/www/assets/images/items/left-door-wall-steel_256.png and /dev/null differ diff --git a/www/assets/images/items/left-door-wall-steel_64.png b/www/assets/images/items/left-door-wall-steel_64.png deleted file mode 100644 index 28ea633a..00000000 Binary files a/www/assets/images/items/left-door-wall-steel_64.png and /dev/null differ diff --git a/www/assets/images/items/left-door-wall_256.png b/www/assets/images/items/left-door-wall_256.png deleted file mode 100644 index 8f347fee..00000000 Binary files a/www/assets/images/items/left-door-wall_256.png and /dev/null differ diff --git a/www/assets/images/items/left-door-wall_64.png b/www/assets/images/items/left-door-wall_64.png deleted file mode 100644 index ce197264..00000000 Binary files a/www/assets/images/items/left-door-wall_64.png and /dev/null differ diff --git a/www/assets/images/items/lights-control-panel-1_256.png b/www/assets/images/items/lights-control-panel-1_256.png deleted file mode 100644 index c3c995b9..00000000 Binary files a/www/assets/images/items/lights-control-panel-1_256.png and /dev/null differ diff --git a/www/assets/images/items/lights-control-panel-1_64.png b/www/assets/images/items/lights-control-panel-1_64.png deleted file mode 100644 index 853f9ed2..00000000 Binary files a/www/assets/images/items/lights-control-panel-1_64.png and /dev/null differ diff --git a/www/assets/images/items/lights-control-panel_256.png b/www/assets/images/items/lights-control-panel_256.png deleted file mode 100644 index 9d2b47a2..00000000 Binary files a/www/assets/images/items/lights-control-panel_256.png and /dev/null differ diff --git a/www/assets/images/items/lights-control-panel_64.png b/www/assets/images/items/lights-control-panel_64.png deleted file mode 100644 index d3b8a725..00000000 Binary files a/www/assets/images/items/lights-control-panel_64.png and /dev/null differ diff --git a/www/assets/images/items/limestone_256.png b/www/assets/images/items/limestone_256.png deleted file mode 100644 index d47a39ea..00000000 Binary files a/www/assets/images/items/limestone_256.png and /dev/null differ diff --git a/www/assets/images/items/limestone_64.png b/www/assets/images/items/limestone_64.png deleted file mode 100644 index be1ddbf0..00000000 Binary files a/www/assets/images/items/limestone_64.png and /dev/null differ diff --git a/www/assets/images/items/liquid-biofuel_256.png b/www/assets/images/items/liquid-biofuel_256.png deleted file mode 100644 index e6241834..00000000 Binary files a/www/assets/images/items/liquid-biofuel_256.png and /dev/null differ diff --git a/www/assets/images/items/liquid-biofuel_64.png b/www/assets/images/items/liquid-biofuel_64.png deleted file mode 100644 index 69d666fb..00000000 Binary files a/www/assets/images/items/liquid-biofuel_64.png and /dev/null differ diff --git a/www/assets/images/items/logistics-mk-2_256.png b/www/assets/images/items/logistics-mk-2_256.png deleted file mode 100644 index 20750335..00000000 Binary files a/www/assets/images/items/logistics-mk-2_256.png and /dev/null differ diff --git a/www/assets/images/items/logistics-mk-2_64.png b/www/assets/images/items/logistics-mk-2_64.png deleted file mode 100644 index f6534c7c..00000000 Binary files a/www/assets/images/items/logistics-mk-2_64.png and /dev/null differ diff --git a/www/assets/images/items/logistics-mk-3_256.png b/www/assets/images/items/logistics-mk-3_256.png deleted file mode 100644 index 20750335..00000000 Binary files a/www/assets/images/items/logistics-mk-3_256.png and /dev/null differ diff --git a/www/assets/images/items/logistics-mk-3_64.png b/www/assets/images/items/logistics-mk-3_64.png deleted file mode 100644 index f6534c7c..00000000 Binary files a/www/assets/images/items/logistics-mk-3_64.png and /dev/null differ diff --git a/www/assets/images/items/logistics-mk-5_256.png b/www/assets/images/items/logistics-mk-5_256.png deleted file mode 100644 index 20750335..00000000 Binary files a/www/assets/images/items/logistics-mk-5_256.png and /dev/null differ diff --git a/www/assets/images/items/logistics-mk-5_64.png b/www/assets/images/items/logistics-mk-5_64.png deleted file mode 100644 index f6534c7c..00000000 Binary files a/www/assets/images/items/logistics-mk-5_64.png and /dev/null differ diff --git a/www/assets/images/items/logistics_256.png b/www/assets/images/items/logistics_256.png deleted file mode 100644 index 20750335..00000000 Binary files a/www/assets/images/items/logistics_256.png and /dev/null differ diff --git a/www/assets/images/items/logistics_64.png b/www/assets/images/items/logistics_64.png deleted file mode 100644 index f6534c7c..00000000 Binary files a/www/assets/images/items/logistics_64.png and /dev/null differ diff --git a/www/assets/images/items/lookout-tower_256.png b/www/assets/images/items/lookout-tower_256.png deleted file mode 100644 index 956a9bb1..00000000 Binary files a/www/assets/images/items/lookout-tower_256.png and /dev/null differ diff --git a/www/assets/images/items/lookout-tower_64.png b/www/assets/images/items/lookout-tower_64.png deleted file mode 100644 index 5ef1792f..00000000 Binary files a/www/assets/images/items/lookout-tower_64.png and /dev/null differ diff --git a/www/assets/images/items/magnetic-field-generator_256.png b/www/assets/images/items/magnetic-field-generator_256.png deleted file mode 100644 index 29880329..00000000 Binary files a/www/assets/images/items/magnetic-field-generator_256.png and /dev/null differ diff --git a/www/assets/images/items/magnetic-field-generator_64.png b/www/assets/images/items/magnetic-field-generator_64.png deleted file mode 100644 index d7a0afcf..00000000 Binary files a/www/assets/images/items/magnetic-field-generator_64.png and /dev/null differ diff --git a/www/assets/images/items/mam_256.png b/www/assets/images/items/mam_256.png deleted file mode 100644 index a10707ba..00000000 Binary files a/www/assets/images/items/mam_256.png and /dev/null differ diff --git a/www/assets/images/items/mam_64.png b/www/assets/images/items/mam_64.png deleted file mode 100644 index fb9e3e18..00000000 Binary files a/www/assets/images/items/mam_64.png and /dev/null differ diff --git a/www/assets/images/items/manufacturer_256.png b/www/assets/images/items/manufacturer_256.png deleted file mode 100644 index fa6767b0..00000000 Binary files a/www/assets/images/items/manufacturer_256.png and /dev/null differ diff --git a/www/assets/images/items/manufacturer_64.png b/www/assets/images/items/manufacturer_64.png deleted file mode 100644 index 85a5211b..00000000 Binary files a/www/assets/images/items/manufacturer_64.png and /dev/null differ diff --git a/www/assets/images/items/medical-box---personal-storage-skin_256.png b/www/assets/images/items/medical-box---personal-storage-skin_256.png deleted file mode 100644 index 5bf70de7..00000000 Binary files a/www/assets/images/items/medical-box---personal-storage-skin_256.png and /dev/null differ diff --git a/www/assets/images/items/medical-box---personal-storage-skin_64.png b/www/assets/images/items/medical-box---personal-storage-skin_64.png deleted file mode 100644 index 70805c5f..00000000 Binary files a/www/assets/images/items/medical-box---personal-storage-skin_64.png and /dev/null differ diff --git a/www/assets/images/items/medical-properties_256.png b/www/assets/images/items/medical-properties_256.png deleted file mode 100644 index 87dbf73c..00000000 Binary files a/www/assets/images/items/medical-properties_256.png and /dev/null differ diff --git a/www/assets/images/items/medical-properties_64.png b/www/assets/images/items/medical-properties_64.png deleted file mode 100644 index fb934e61..00000000 Binary files a/www/assets/images/items/medical-properties_64.png and /dev/null differ diff --git a/www/assets/images/items/medical-storage-box_256.png b/www/assets/images/items/medical-storage-box_256.png deleted file mode 100644 index 286652ef..00000000 Binary files a/www/assets/images/items/medical-storage-box_256.png and /dev/null differ diff --git a/www/assets/images/items/medical-storage-box_64.png b/www/assets/images/items/medical-storage-box_64.png deleted file mode 100644 index 2c612a94..00000000 Binary files a/www/assets/images/items/medical-storage-box_64.png and /dev/null differ diff --git a/www/assets/images/items/medicinal-inhaler-mycelia_256.png b/www/assets/images/items/medicinal-inhaler-mycelia_256.png deleted file mode 100644 index e424e2a5..00000000 Binary files a/www/assets/images/items/medicinal-inhaler-mycelia_256.png and /dev/null differ diff --git a/www/assets/images/items/medicinal-inhaler-mycelia_64.png b/www/assets/images/items/medicinal-inhaler-mycelia_64.png deleted file mode 100644 index e3b91691..00000000 Binary files a/www/assets/images/items/medicinal-inhaler-mycelia_64.png and /dev/null differ diff --git a/www/assets/images/items/medicinal-inhaler-spitterparts_256.png b/www/assets/images/items/medicinal-inhaler-spitterparts_256.png deleted file mode 100644 index e424e2a5..00000000 Binary files a/www/assets/images/items/medicinal-inhaler-spitterparts_256.png and /dev/null differ diff --git a/www/assets/images/items/medicinal-inhaler-spitterparts_64.png b/www/assets/images/items/medicinal-inhaler-spitterparts_64.png deleted file mode 100644 index e3b91691..00000000 Binary files a/www/assets/images/items/medicinal-inhaler-spitterparts_64.png and /dev/null differ diff --git a/www/assets/images/items/medicinal-inhaler_256.png b/www/assets/images/items/medicinal-inhaler_256.png deleted file mode 100644 index afdf2e66..00000000 Binary files a/www/assets/images/items/medicinal-inhaler_256.png and /dev/null differ diff --git a/www/assets/images/items/medicinal-inhaler_64.png b/www/assets/images/items/medicinal-inhaler_64.png deleted file mode 100644 index 5419c36e..00000000 Binary files a/www/assets/images/items/medicinal-inhaler_64.png and /dev/null differ diff --git a/www/assets/images/items/metal-beam_256.png b/www/assets/images/items/metal-beam_256.png deleted file mode 100644 index 572b5d70..00000000 Binary files a/www/assets/images/items/metal-beam_256.png and /dev/null differ diff --git a/www/assets/images/items/metal-beam_64.png b/www/assets/images/items/metal-beam_64.png deleted file mode 100644 index 64f71783..00000000 Binary files a/www/assets/images/items/metal-beam_64.png and /dev/null differ diff --git a/www/assets/images/items/metal-pillar-set_256.png b/www/assets/images/items/metal-pillar-set_256.png deleted file mode 100644 index 2e4fb01d..00000000 Binary files a/www/assets/images/items/metal-pillar-set_256.png and /dev/null differ diff --git a/www/assets/images/items/metal-pillar-set_64.png b/www/assets/images/items/metal-pillar-set_64.png deleted file mode 100644 index 748d12af..00000000 Binary files a/www/assets/images/items/metal-pillar-set_64.png and /dev/null differ diff --git a/www/assets/images/items/metal-roof-1m_256.png b/www/assets/images/items/metal-roof-1m_256.png deleted file mode 100644 index 7ef857f4..00000000 Binary files a/www/assets/images/items/metal-roof-1m_256.png and /dev/null differ diff --git a/www/assets/images/items/metal-roof-1m_64.png b/www/assets/images/items/metal-roof-1m_64.png deleted file mode 100644 index 736ea736..00000000 Binary files a/www/assets/images/items/metal-roof-1m_64.png and /dev/null differ diff --git a/www/assets/images/items/metal-roof-2m_256.png b/www/assets/images/items/metal-roof-2m_256.png deleted file mode 100644 index f314c397..00000000 Binary files a/www/assets/images/items/metal-roof-2m_256.png and /dev/null differ diff --git a/www/assets/images/items/metal-roof-2m_64.png b/www/assets/images/items/metal-roof-2m_64.png deleted file mode 100644 index 44b4d240..00000000 Binary files a/www/assets/images/items/metal-roof-2m_64.png and /dev/null differ diff --git a/www/assets/images/items/metal-roof-4m_256.png b/www/assets/images/items/metal-roof-4m_256.png deleted file mode 100644 index 5cd336af..00000000 Binary files a/www/assets/images/items/metal-roof-4m_256.png and /dev/null differ diff --git a/www/assets/images/items/metal-roof-4m_64.png b/www/assets/images/items/metal-roof-4m_64.png deleted file mode 100644 index 9c4112f2..00000000 Binary files a/www/assets/images/items/metal-roof-4m_64.png and /dev/null differ diff --git a/www/assets/images/items/metal-roof-flat_256.png b/www/assets/images/items/metal-roof-flat_256.png deleted file mode 100644 index 833cf418..00000000 Binary files a/www/assets/images/items/metal-roof-flat_256.png and /dev/null differ diff --git a/www/assets/images/items/metal-roof-flat_64.png b/www/assets/images/items/metal-roof-flat_64.png deleted file mode 100644 index 07133552..00000000 Binary files a/www/assets/images/items/metal-roof-flat_64.png and /dev/null differ diff --git a/www/assets/images/items/miner-mk-1_256.png b/www/assets/images/items/miner-mk-1_256.png deleted file mode 100644 index b783266f..00000000 Binary files a/www/assets/images/items/miner-mk-1_256.png and /dev/null differ diff --git a/www/assets/images/items/miner-mk-1_64.png b/www/assets/images/items/miner-mk-1_64.png deleted file mode 100644 index 63cdb420..00000000 Binary files a/www/assets/images/items/miner-mk-1_64.png and /dev/null differ diff --git a/www/assets/images/items/miner-mk-2_256.png b/www/assets/images/items/miner-mk-2_256.png deleted file mode 100644 index 547a8af7..00000000 Binary files a/www/assets/images/items/miner-mk-2_256.png and /dev/null differ diff --git a/www/assets/images/items/miner-mk-2_64.png b/www/assets/images/items/miner-mk-2_64.png deleted file mode 100644 index 210f7e19..00000000 Binary files a/www/assets/images/items/miner-mk-2_64.png and /dev/null differ diff --git a/www/assets/images/items/miner-mk-3_256.png b/www/assets/images/items/miner-mk-3_256.png deleted file mode 100644 index ff7e9411..00000000 Binary files a/www/assets/images/items/miner-mk-3_256.png and /dev/null differ diff --git a/www/assets/images/items/miner-mk-3_64.png b/www/assets/images/items/miner-mk-3_64.png deleted file mode 100644 index e11a2ea6..00000000 Binary files a/www/assets/images/items/miner-mk-3_64.png and /dev/null differ diff --git a/www/assets/images/items/modern-catwalks_256.png b/www/assets/images/items/modern-catwalks_256.png deleted file mode 100644 index e4837849..00000000 Binary files a/www/assets/images/items/modern-catwalks_256.png and /dev/null differ diff --git a/www/assets/images/items/modern-catwalks_64.png b/www/assets/images/items/modern-catwalks_64.png deleted file mode 100644 index b4fec427..00000000 Binary files a/www/assets/images/items/modern-catwalks_64.png and /dev/null differ diff --git a/www/assets/images/items/modern-railing-1_256.png b/www/assets/images/items/modern-railing-1_256.png deleted file mode 100644 index b5eb1522..00000000 Binary files a/www/assets/images/items/modern-railing-1_256.png and /dev/null differ diff --git a/www/assets/images/items/modern-railing-1_64.png b/www/assets/images/items/modern-railing-1_64.png deleted file mode 100644 index 643f7c2b..00000000 Binary files a/www/assets/images/items/modern-railing-1_64.png and /dev/null differ diff --git a/www/assets/images/items/modern-railing_256.png b/www/assets/images/items/modern-railing_256.png deleted file mode 100644 index 5c72035c..00000000 Binary files a/www/assets/images/items/modern-railing_256.png and /dev/null differ diff --git a/www/assets/images/items/modern-railing_64.png b/www/assets/images/items/modern-railing_64.png deleted file mode 100644 index 149d0c6e..00000000 Binary files a/www/assets/images/items/modern-railing_64.png and /dev/null differ diff --git a/www/assets/images/items/modular-engine_256.png b/www/assets/images/items/modular-engine_256.png deleted file mode 100644 index 5a1975af..00000000 Binary files a/www/assets/images/items/modular-engine_256.png and /dev/null differ diff --git a/www/assets/images/items/modular-engine_64.png b/www/assets/images/items/modular-engine_64.png deleted file mode 100644 index 63ca9149..00000000 Binary files a/www/assets/images/items/modular-engine_64.png and /dev/null differ diff --git a/www/assets/images/items/modular-frame_256.png b/www/assets/images/items/modular-frame_256.png deleted file mode 100644 index a40941cb..00000000 Binary files a/www/assets/images/items/modular-frame_256.png and /dev/null differ diff --git a/www/assets/images/items/modular-frame_64.png b/www/assets/images/items/modular-frame_64.png deleted file mode 100644 index e577571f..00000000 Binary files a/www/assets/images/items/modular-frame_64.png and /dev/null differ diff --git a/www/assets/images/items/monorail-train-technology_256.png b/www/assets/images/items/monorail-train-technology_256.png deleted file mode 100644 index 5af15e0b..00000000 Binary files a/www/assets/images/items/monorail-train-technology_256.png and /dev/null differ diff --git a/www/assets/images/items/monorail-train-technology_64.png b/www/assets/images/items/monorail-train-technology_64.png deleted file mode 100644 index c78faafd..00000000 Binary files a/www/assets/images/items/monorail-train-technology_64.png and /dev/null differ diff --git a/www/assets/images/items/motor_256.png b/www/assets/images/items/motor_256.png deleted file mode 100644 index 8161ac0a..00000000 Binary files a/www/assets/images/items/motor_256.png and /dev/null differ diff --git a/www/assets/images/items/motor_64.png b/www/assets/images/items/motor_64.png deleted file mode 100644 index 1ade4df4..00000000 Binary files a/www/assets/images/items/motor_64.png and /dev/null differ diff --git a/www/assets/images/items/mycelia-1_256.png b/www/assets/images/items/mycelia-1_256.png deleted file mode 100644 index 18dfd5bc..00000000 Binary files a/www/assets/images/items/mycelia-1_256.png and /dev/null differ diff --git a/www/assets/images/items/mycelia-1_64.png b/www/assets/images/items/mycelia-1_64.png deleted file mode 100644 index 04f80302..00000000 Binary files a/www/assets/images/items/mycelia-1_64.png and /dev/null differ diff --git a/www/assets/images/items/mycelia_256.png b/www/assets/images/items/mycelia_256.png deleted file mode 100644 index b0ec9a1e..00000000 Binary files a/www/assets/images/items/mycelia_256.png and /dev/null differ diff --git a/www/assets/images/items/mycelia_64.png b/www/assets/images/items/mycelia_64.png deleted file mode 100644 index 65e3eb66..00000000 Binary files a/www/assets/images/items/mycelia_64.png and /dev/null differ diff --git a/www/assets/images/items/nitric-acid_256.png b/www/assets/images/items/nitric-acid_256.png deleted file mode 100644 index ceee1984..00000000 Binary files a/www/assets/images/items/nitric-acid_256.png and /dev/null differ diff --git a/www/assets/images/items/nitric-acid_64.png b/www/assets/images/items/nitric-acid_64.png deleted file mode 100644 index b014a817..00000000 Binary files a/www/assets/images/items/nitric-acid_64.png and /dev/null differ diff --git a/www/assets/images/items/nitrogen-gas_256.png b/www/assets/images/items/nitrogen-gas_256.png deleted file mode 100644 index 94db814a..00000000 Binary files a/www/assets/images/items/nitrogen-gas_256.png and /dev/null differ diff --git a/www/assets/images/items/nitrogen-gas_64.png b/www/assets/images/items/nitrogen-gas_64.png deleted file mode 100644 index 3da2f457..00000000 Binary files a/www/assets/images/items/nitrogen-gas_64.png and /dev/null differ diff --git a/www/assets/images/items/nobelisk-detonator-1_256.png b/www/assets/images/items/nobelisk-detonator-1_256.png deleted file mode 100644 index 221c2d00..00000000 Binary files a/www/assets/images/items/nobelisk-detonator-1_256.png and /dev/null differ diff --git a/www/assets/images/items/nobelisk-detonator-1_64.png b/www/assets/images/items/nobelisk-detonator-1_64.png deleted file mode 100644 index a6efc614..00000000 Binary files a/www/assets/images/items/nobelisk-detonator-1_64.png and /dev/null differ diff --git a/www/assets/images/items/nobelisk-detonator_256.png b/www/assets/images/items/nobelisk-detonator_256.png deleted file mode 100644 index 56625d97..00000000 Binary files a/www/assets/images/items/nobelisk-detonator_256.png and /dev/null differ diff --git a/www/assets/images/items/nobelisk-detonator_64.png b/www/assets/images/items/nobelisk-detonator_64.png deleted file mode 100644 index f6afca51..00000000 Binary files a/www/assets/images/items/nobelisk-detonator_64.png and /dev/null differ diff --git a/www/assets/images/items/nobelisk-explosives_256.png b/www/assets/images/items/nobelisk-explosives_256.png deleted file mode 100644 index a38e6c38..00000000 Binary files a/www/assets/images/items/nobelisk-explosives_256.png and /dev/null differ diff --git a/www/assets/images/items/nobelisk-explosives_64.png b/www/assets/images/items/nobelisk-explosives_64.png deleted file mode 100644 index b37c2829..00000000 Binary files a/www/assets/images/items/nobelisk-explosives_64.png and /dev/null differ diff --git a/www/assets/images/items/nobelisk_256.png b/www/assets/images/items/nobelisk_256.png deleted file mode 100644 index 7ccc6f1f..00000000 Binary files a/www/assets/images/items/nobelisk_256.png and /dev/null differ diff --git a/www/assets/images/items/nobelisk_64.png b/www/assets/images/items/nobelisk_64.png deleted file mode 100644 index fbb6e175..00000000 Binary files a/www/assets/images/items/nobelisk_64.png and /dev/null differ diff --git a/www/assets/images/items/non-fissile-uranium_256.png b/www/assets/images/items/non-fissile-uranium_256.png deleted file mode 100644 index 856d8b33..00000000 Binary files a/www/assets/images/items/non-fissile-uranium_256.png and /dev/null differ diff --git a/www/assets/images/items/non-fissile-uranium_64.png b/www/assets/images/items/non-fissile-uranium_64.png deleted file mode 100644 index f9d1268b..00000000 Binary files a/www/assets/images/items/non-fissile-uranium_64.png and /dev/null differ diff --git a/www/assets/images/items/nuclear-fuel-rod_256.png b/www/assets/images/items/nuclear-fuel-rod_256.png deleted file mode 100644 index 066e3ae8..00000000 Binary files a/www/assets/images/items/nuclear-fuel-rod_256.png and /dev/null differ diff --git a/www/assets/images/items/nuclear-fuel-rod_64.png b/www/assets/images/items/nuclear-fuel-rod_64.png deleted file mode 100644 index e254578a..00000000 Binary files a/www/assets/images/items/nuclear-fuel-rod_64.png and /dev/null differ diff --git a/www/assets/images/items/nuclear-pasta_256.png b/www/assets/images/items/nuclear-pasta_256.png deleted file mode 100644 index c941c4ea..00000000 Binary files a/www/assets/images/items/nuclear-pasta_256.png and /dev/null differ diff --git a/www/assets/images/items/nuclear-pasta_64.png b/www/assets/images/items/nuclear-pasta_64.png deleted file mode 100644 index 4e54c21a..00000000 Binary files a/www/assets/images/items/nuclear-pasta_64.png and /dev/null differ diff --git a/www/assets/images/items/nuclear-power-plant_256.png b/www/assets/images/items/nuclear-power-plant_256.png deleted file mode 100644 index e5938b8b..00000000 Binary files a/www/assets/images/items/nuclear-power-plant_256.png and /dev/null differ diff --git a/www/assets/images/items/nuclear-power-plant_64.png b/www/assets/images/items/nuclear-power-plant_64.png deleted file mode 100644 index f1c24e1a..00000000 Binary files a/www/assets/images/items/nuclear-power-plant_64.png and /dev/null differ diff --git a/www/assets/images/items/nuclear-power_256.png b/www/assets/images/items/nuclear-power_256.png deleted file mode 100644 index 8fc04297..00000000 Binary files a/www/assets/images/items/nuclear-power_256.png and /dev/null differ diff --git a/www/assets/images/items/nuclear-power_64.png b/www/assets/images/items/nuclear-power_64.png deleted file mode 100644 index fdfe317f..00000000 Binary files a/www/assets/images/items/nuclear-power_64.png and /dev/null differ diff --git a/www/assets/images/items/nuclear-waste_256.png b/www/assets/images/items/nuclear-waste_256.png deleted file mode 100644 index 77262c4a..00000000 Binary files a/www/assets/images/items/nuclear-waste_256.png and /dev/null differ diff --git a/www/assets/images/items/nuclear-waste_64.png b/www/assets/images/items/nuclear-waste_64.png deleted file mode 100644 index 8f4e7bed..00000000 Binary files a/www/assets/images/items/nuclear-waste_64.png and /dev/null differ diff --git a/www/assets/images/items/number-patterns_256.png b/www/assets/images/items/number-patterns_256.png deleted file mode 100644 index 4dd6592b..00000000 Binary files a/www/assets/images/items/number-patterns_256.png and /dev/null differ diff --git a/www/assets/images/items/number-patterns_64.png b/www/assets/images/items/number-patterns_64.png deleted file mode 100644 index 46ca66b5..00000000 Binary files a/www/assets/images/items/number-patterns_64.png and /dev/null differ diff --git a/www/assets/images/items/nutritional-inhaler_256.png b/www/assets/images/items/nutritional-inhaler_256.png deleted file mode 100644 index e424e2a5..00000000 Binary files a/www/assets/images/items/nutritional-inhaler_256.png and /dev/null differ diff --git a/www/assets/images/items/nutritional-inhaler_64.png b/www/assets/images/items/nutritional-inhaler_64.png deleted file mode 100644 index e3b91691..00000000 Binary files a/www/assets/images/items/nutritional-inhaler_64.png and /dev/null differ diff --git a/www/assets/images/items/nutritional-mixture_256.png b/www/assets/images/items/nutritional-mixture_256.png deleted file mode 100644 index 87dbf73c..00000000 Binary files a/www/assets/images/items/nutritional-mixture_256.png and /dev/null differ diff --git a/www/assets/images/items/nutritional-mixture_64.png b/www/assets/images/items/nutritional-mixture_64.png deleted file mode 100644 index fb934e61..00000000 Binary files a/www/assets/images/items/nutritional-mixture_64.png and /dev/null differ diff --git a/www/assets/images/items/object-scanner-improvements_256.png b/www/assets/images/items/object-scanner-improvements_256.png deleted file mode 100644 index 87dbf73c..00000000 Binary files a/www/assets/images/items/object-scanner-improvements_256.png and /dev/null differ diff --git a/www/assets/images/items/object-scanner-improvements_64.png b/www/assets/images/items/object-scanner-improvements_64.png deleted file mode 100644 index fb934e61..00000000 Binary files a/www/assets/images/items/object-scanner-improvements_64.png and /dev/null differ diff --git a/www/assets/images/items/object-scanner_256.png b/www/assets/images/items/object-scanner_256.png deleted file mode 100644 index a3c38429..00000000 Binary files a/www/assets/images/items/object-scanner_256.png and /dev/null differ diff --git a/www/assets/images/items/object-scanner_64.png b/www/assets/images/items/object-scanner_64.png deleted file mode 100644 index 2e8e566f..00000000 Binary files a/www/assets/images/items/object-scanner_64.png and /dev/null differ diff --git a/www/assets/images/items/obstacle-clearing_256.png b/www/assets/images/items/obstacle-clearing_256.png deleted file mode 100644 index 55553579..00000000 Binary files a/www/assets/images/items/obstacle-clearing_256.png and /dev/null differ diff --git a/www/assets/images/items/obstacle-clearing_64.png b/www/assets/images/items/obstacle-clearing_64.png deleted file mode 100644 index e11dba0b..00000000 Binary files a/www/assets/images/items/obstacle-clearing_64.png and /dev/null differ diff --git a/www/assets/images/items/oil-extractor_256.png b/www/assets/images/items/oil-extractor_256.png deleted file mode 100644 index 7cfb3d71..00000000 Binary files a/www/assets/images/items/oil-extractor_256.png and /dev/null differ diff --git a/www/assets/images/items/oil-extractor_64.png b/www/assets/images/items/oil-extractor_64.png deleted file mode 100644 index 58fd1e08..00000000 Binary files a/www/assets/images/items/oil-extractor_64.png and /dev/null differ diff --git a/www/assets/images/items/oil-processing_256.png b/www/assets/images/items/oil-processing_256.png deleted file mode 100644 index 8fc04297..00000000 Binary files a/www/assets/images/items/oil-processing_256.png and /dev/null differ diff --git a/www/assets/images/items/oil-processing_64.png b/www/assets/images/items/oil-processing_64.png deleted file mode 100644 index fdfe317f..00000000 Binary files a/www/assets/images/items/oil-processing_64.png and /dev/null differ diff --git a/www/assets/images/items/organic-properties_256.png b/www/assets/images/items/organic-properties_256.png deleted file mode 100644 index f070bf02..00000000 Binary files a/www/assets/images/items/organic-properties_256.png and /dev/null differ diff --git a/www/assets/images/items/organic-properties_64.png b/www/assets/images/items/organic-properties_64.png deleted file mode 100644 index 91c491b3..00000000 Binary files a/www/assets/images/items/organic-properties_64.png and /dev/null differ diff --git a/www/assets/images/items/outer-corner-quarter-pipe_256.png b/www/assets/images/items/outer-corner-quarter-pipe_256.png deleted file mode 100644 index 6f62cf42..00000000 Binary files a/www/assets/images/items/outer-corner-quarter-pipe_256.png and /dev/null differ diff --git a/www/assets/images/items/outer-corner-quarter-pipe_64.png b/www/assets/images/items/outer-corner-quarter-pipe_64.png deleted file mode 100644 index 549a6cd3..00000000 Binary files a/www/assets/images/items/outer-corner-quarter-pipe_64.png and /dev/null differ diff --git a/www/assets/images/items/overclock-production_256.png b/www/assets/images/items/overclock-production_256.png deleted file mode 100644 index 3504edb3..00000000 Binary files a/www/assets/images/items/overclock-production_256.png and /dev/null differ diff --git a/www/assets/images/items/overclock-production_64.png b/www/assets/images/items/overclock-production_64.png deleted file mode 100644 index 2daeb4d9..00000000 Binary files a/www/assets/images/items/overclock-production_64.png and /dev/null differ diff --git a/www/assets/images/items/packaged-alumina-solution_256.png b/www/assets/images/items/packaged-alumina-solution_256.png deleted file mode 100644 index 71a694dc..00000000 Binary files a/www/assets/images/items/packaged-alumina-solution_256.png and /dev/null differ diff --git a/www/assets/images/items/packaged-alumina-solution_64.png b/www/assets/images/items/packaged-alumina-solution_64.png deleted file mode 100644 index c1cfdfe7..00000000 Binary files a/www/assets/images/items/packaged-alumina-solution_64.png and /dev/null differ diff --git a/www/assets/images/items/packaged-fuel_256.png b/www/assets/images/items/packaged-fuel_256.png deleted file mode 100644 index 3486cf0b..00000000 Binary files a/www/assets/images/items/packaged-fuel_256.png and /dev/null differ diff --git a/www/assets/images/items/packaged-fuel_64.png b/www/assets/images/items/packaged-fuel_64.png deleted file mode 100644 index 0b6ebfee..00000000 Binary files a/www/assets/images/items/packaged-fuel_64.png and /dev/null differ diff --git a/www/assets/images/items/packaged-heavy-oil-residue_256.png b/www/assets/images/items/packaged-heavy-oil-residue_256.png deleted file mode 100644 index 1e8db8c3..00000000 Binary files a/www/assets/images/items/packaged-heavy-oil-residue_256.png and /dev/null differ diff --git a/www/assets/images/items/packaged-heavy-oil-residue_64.png b/www/assets/images/items/packaged-heavy-oil-residue_64.png deleted file mode 100644 index aedda07b..00000000 Binary files a/www/assets/images/items/packaged-heavy-oil-residue_64.png and /dev/null differ diff --git a/www/assets/images/items/packaged-liquid-biofuel_256.png b/www/assets/images/items/packaged-liquid-biofuel_256.png deleted file mode 100644 index 98b6ff5c..00000000 Binary files a/www/assets/images/items/packaged-liquid-biofuel_256.png and /dev/null differ diff --git a/www/assets/images/items/packaged-liquid-biofuel_64.png b/www/assets/images/items/packaged-liquid-biofuel_64.png deleted file mode 100644 index c29badd0..00000000 Binary files a/www/assets/images/items/packaged-liquid-biofuel_64.png and /dev/null differ diff --git a/www/assets/images/items/packaged-nitric-acid_256.png b/www/assets/images/items/packaged-nitric-acid_256.png deleted file mode 100644 index 06084216..00000000 Binary files a/www/assets/images/items/packaged-nitric-acid_256.png and /dev/null differ diff --git a/www/assets/images/items/packaged-nitric-acid_64.png b/www/assets/images/items/packaged-nitric-acid_64.png deleted file mode 100644 index e6e7624b..00000000 Binary files a/www/assets/images/items/packaged-nitric-acid_64.png and /dev/null differ diff --git a/www/assets/images/items/packaged-nitrogen-gas_256.png b/www/assets/images/items/packaged-nitrogen-gas_256.png deleted file mode 100644 index bf5c4ce7..00000000 Binary files a/www/assets/images/items/packaged-nitrogen-gas_256.png and /dev/null differ diff --git a/www/assets/images/items/packaged-nitrogen-gas_64.png b/www/assets/images/items/packaged-nitrogen-gas_64.png deleted file mode 100644 index e0d81c45..00000000 Binary files a/www/assets/images/items/packaged-nitrogen-gas_64.png and /dev/null differ diff --git a/www/assets/images/items/packaged-oil_256.png b/www/assets/images/items/packaged-oil_256.png deleted file mode 100644 index 2a5d4a90..00000000 Binary files a/www/assets/images/items/packaged-oil_256.png and /dev/null differ diff --git a/www/assets/images/items/packaged-oil_64.png b/www/assets/images/items/packaged-oil_64.png deleted file mode 100644 index 98ce3dee..00000000 Binary files a/www/assets/images/items/packaged-oil_64.png and /dev/null differ diff --git a/www/assets/images/items/packaged-sulfuric-acid_256.png b/www/assets/images/items/packaged-sulfuric-acid_256.png deleted file mode 100644 index 886d3bfe..00000000 Binary files a/www/assets/images/items/packaged-sulfuric-acid_256.png and /dev/null differ diff --git a/www/assets/images/items/packaged-sulfuric-acid_64.png b/www/assets/images/items/packaged-sulfuric-acid_64.png deleted file mode 100644 index 09b80bfa..00000000 Binary files a/www/assets/images/items/packaged-sulfuric-acid_64.png and /dev/null differ diff --git a/www/assets/images/items/packaged-turbofuel_256.png b/www/assets/images/items/packaged-turbofuel_256.png deleted file mode 100644 index ae7f6ada..00000000 Binary files a/www/assets/images/items/packaged-turbofuel_256.png and /dev/null differ diff --git a/www/assets/images/items/packaged-turbofuel_64.png b/www/assets/images/items/packaged-turbofuel_64.png deleted file mode 100644 index f52ee88c..00000000 Binary files a/www/assets/images/items/packaged-turbofuel_64.png and /dev/null differ diff --git a/www/assets/images/items/packaged-water_256.png b/www/assets/images/items/packaged-water_256.png deleted file mode 100644 index bd5d575d..00000000 Binary files a/www/assets/images/items/packaged-water_256.png and /dev/null differ diff --git a/www/assets/images/items/packaged-water_64.png b/www/assets/images/items/packaged-water_64.png deleted file mode 100644 index 28ab67eb..00000000 Binary files a/www/assets/images/items/packaged-water_64.png and /dev/null differ diff --git a/www/assets/images/items/packager_256.png b/www/assets/images/items/packager_256.png deleted file mode 100644 index e34cee96..00000000 Binary files a/www/assets/images/items/packager_256.png and /dev/null differ diff --git a/www/assets/images/items/packager_64.png b/www/assets/images/items/packager_64.png deleted file mode 100644 index 6529f8fb..00000000 Binary files a/www/assets/images/items/packager_64.png and /dev/null differ diff --git a/www/assets/images/items/painted-beam_256.png b/www/assets/images/items/painted-beam_256.png deleted file mode 100644 index 4677528f..00000000 Binary files a/www/assets/images/items/painted-beam_256.png and /dev/null differ diff --git a/www/assets/images/items/painted-beam_64.png b/www/assets/images/items/painted-beam_64.png deleted file mode 100644 index af6fc694..00000000 Binary files a/www/assets/images/items/painted-beam_64.png and /dev/null differ diff --git a/www/assets/images/items/paleberry-1_256.png b/www/assets/images/items/paleberry-1_256.png deleted file mode 100644 index b788caf9..00000000 Binary files a/www/assets/images/items/paleberry-1_256.png and /dev/null differ diff --git a/www/assets/images/items/paleberry-1_64.png b/www/assets/images/items/paleberry-1_64.png deleted file mode 100644 index 7b5f06e6..00000000 Binary files a/www/assets/images/items/paleberry-1_64.png and /dev/null differ diff --git a/www/assets/images/items/paleberry_256.png b/www/assets/images/items/paleberry_256.png deleted file mode 100644 index c0910030..00000000 Binary files a/www/assets/images/items/paleberry_256.png and /dev/null differ diff --git a/www/assets/images/items/paleberry_64.png b/www/assets/images/items/paleberry_64.png deleted file mode 100644 index 9bd48ea0..00000000 Binary files a/www/assets/images/items/paleberry_64.png and /dev/null differ diff --git a/www/assets/images/items/panel-window-1_256.png b/www/assets/images/items/panel-window-1_256.png deleted file mode 100644 index 760f06f5..00000000 Binary files a/www/assets/images/items/panel-window-1_256.png and /dev/null differ diff --git a/www/assets/images/items/panel-window-1_64.png b/www/assets/images/items/panel-window-1_64.png deleted file mode 100644 index 43e9f5c6..00000000 Binary files a/www/assets/images/items/panel-window-1_64.png and /dev/null differ diff --git a/www/assets/images/items/panel-window-concrete_256.png b/www/assets/images/items/panel-window-concrete_256.png deleted file mode 100644 index 20b96b17..00000000 Binary files a/www/assets/images/items/panel-window-concrete_256.png and /dev/null differ diff --git a/www/assets/images/items/panel-window-concrete_64.png b/www/assets/images/items/panel-window-concrete_64.png deleted file mode 100644 index b38b56b0..00000000 Binary files a/www/assets/images/items/panel-window-concrete_64.png and /dev/null differ diff --git a/www/assets/images/items/panel-window-steel_256.png b/www/assets/images/items/panel-window-steel_256.png deleted file mode 100644 index 4e807cb5..00000000 Binary files a/www/assets/images/items/panel-window-steel_256.png and /dev/null differ diff --git a/www/assets/images/items/panel-window-steel_64.png b/www/assets/images/items/panel-window-steel_64.png deleted file mode 100644 index d78118f5..00000000 Binary files a/www/assets/images/items/panel-window-steel_64.png and /dev/null differ diff --git a/www/assets/images/items/panel-window_256.png b/www/assets/images/items/panel-window_256.png deleted file mode 100644 index 760f06f5..00000000 Binary files a/www/assets/images/items/panel-window_256.png and /dev/null differ diff --git a/www/assets/images/items/panel-window_64.png b/www/assets/images/items/panel-window_64.png deleted file mode 100644 index 78f0cef1..00000000 Binary files a/www/assets/images/items/panel-window_64.png and /dev/null differ diff --git a/www/assets/images/items/parachute-1_256.png b/www/assets/images/items/parachute-1_256.png deleted file mode 100644 index baf3b3fe..00000000 Binary files a/www/assets/images/items/parachute-1_256.png and /dev/null differ diff --git a/www/assets/images/items/parachute-1_64.png b/www/assets/images/items/parachute-1_64.png deleted file mode 100644 index 05991daf..00000000 Binary files a/www/assets/images/items/parachute-1_64.png and /dev/null differ diff --git a/www/assets/images/items/parachute_256.png b/www/assets/images/items/parachute_256.png deleted file mode 100644 index 4877c3ed..00000000 Binary files a/www/assets/images/items/parachute_256.png and /dev/null differ diff --git a/www/assets/images/items/parachute_64.png b/www/assets/images/items/parachute_64.png deleted file mode 100644 index 33f4c898..00000000 Binary files a/www/assets/images/items/parachute_64.png and /dev/null differ diff --git a/www/assets/images/items/part-assembly_256.png b/www/assets/images/items/part-assembly_256.png deleted file mode 100644 index 8fc04297..00000000 Binary files a/www/assets/images/items/part-assembly_256.png and /dev/null differ diff --git a/www/assets/images/items/part-assembly_64.png b/www/assets/images/items/part-assembly_64.png deleted file mode 100644 index fdfe317f..00000000 Binary files a/www/assets/images/items/part-assembly_64.png and /dev/null differ diff --git a/www/assets/images/items/particle-accelerator_256.png b/www/assets/images/items/particle-accelerator_256.png deleted file mode 100644 index 2f5bfb08..00000000 Binary files a/www/assets/images/items/particle-accelerator_256.png and /dev/null differ diff --git a/www/assets/images/items/particle-accelerator_64.png b/www/assets/images/items/particle-accelerator_64.png deleted file mode 100644 index 2bbcc520..00000000 Binary files a/www/assets/images/items/particle-accelerator_64.png and /dev/null differ diff --git a/www/assets/images/items/particle-enrichment_256.png b/www/assets/images/items/particle-enrichment_256.png deleted file mode 100644 index 8fc04297..00000000 Binary files a/www/assets/images/items/particle-enrichment_256.png and /dev/null differ diff --git a/www/assets/images/items/particle-enrichment_64.png b/www/assets/images/items/particle-enrichment_64.png deleted file mode 100644 index fdfe317f..00000000 Binary files a/www/assets/images/items/particle-enrichment_64.png and /dev/null differ diff --git a/www/assets/images/items/path-signal_256.png b/www/assets/images/items/path-signal_256.png deleted file mode 100644 index 415ee464..00000000 Binary files a/www/assets/images/items/path-signal_256.png and /dev/null differ diff --git a/www/assets/images/items/path-signal_64.png b/www/assets/images/items/path-signal_64.png deleted file mode 100644 index 0ed202bb..00000000 Binary files a/www/assets/images/items/path-signal_64.png and /dev/null differ diff --git a/www/assets/images/items/pathway-patterns_256.png b/www/assets/images/items/pathway-patterns_256.png deleted file mode 100644 index d5ddb58d..00000000 Binary files a/www/assets/images/items/pathway-patterns_256.png and /dev/null differ diff --git a/www/assets/images/items/pathway-patterns_64.png b/www/assets/images/items/pathway-patterns_64.png deleted file mode 100644 index 57dc11dd..00000000 Binary files a/www/assets/images/items/pathway-patterns_64.png and /dev/null differ diff --git a/www/assets/images/items/personal-storage-box_256.png b/www/assets/images/items/personal-storage-box_256.png deleted file mode 100644 index 4e31b9ce..00000000 Binary files a/www/assets/images/items/personal-storage-box_256.png and /dev/null differ diff --git a/www/assets/images/items/personal-storage-box_64.png b/www/assets/images/items/personal-storage-box_64.png deleted file mode 100644 index 221d43f9..00000000 Binary files a/www/assets/images/items/personal-storage-box_64.png and /dev/null differ diff --git a/www/assets/images/items/petroleum-coke_256.png b/www/assets/images/items/petroleum-coke_256.png deleted file mode 100644 index 967643bc..00000000 Binary files a/www/assets/images/items/petroleum-coke_256.png and /dev/null differ diff --git a/www/assets/images/items/petroleum-coke_64.png b/www/assets/images/items/petroleum-coke_64.png deleted file mode 100644 index aea7cbbe..00000000 Binary files a/www/assets/images/items/petroleum-coke_64.png and /dev/null differ diff --git a/www/assets/images/items/pillar-base_256.png b/www/assets/images/items/pillar-base_256.png deleted file mode 100644 index 95cbe817..00000000 Binary files a/www/assets/images/items/pillar-base_256.png and /dev/null differ diff --git a/www/assets/images/items/pillar-base_64.png b/www/assets/images/items/pillar-base_64.png deleted file mode 100644 index 8516f9af..00000000 Binary files a/www/assets/images/items/pillar-base_64.png and /dev/null differ diff --git a/www/assets/images/items/pillar-middle_256.png b/www/assets/images/items/pillar-middle_256.png deleted file mode 100644 index 1125aed3..00000000 Binary files a/www/assets/images/items/pillar-middle_256.png and /dev/null differ diff --git a/www/assets/images/items/pillar-middle_64.png b/www/assets/images/items/pillar-middle_64.png deleted file mode 100644 index 4e5aac6e..00000000 Binary files a/www/assets/images/items/pillar-middle_64.png and /dev/null differ diff --git a/www/assets/images/items/pillar-top_256.png b/www/assets/images/items/pillar-top_256.png deleted file mode 100644 index 7434abe1..00000000 Binary files a/www/assets/images/items/pillar-top_256.png and /dev/null differ diff --git a/www/assets/images/items/pillar-top_64.png b/www/assets/images/items/pillar-top_64.png deleted file mode 100644 index 58e5500c..00000000 Binary files a/www/assets/images/items/pillar-top_64.png and /dev/null differ diff --git a/www/assets/images/items/pipeline-engineering-mk-2_256.png b/www/assets/images/items/pipeline-engineering-mk-2_256.png deleted file mode 100644 index 20750335..00000000 Binary files a/www/assets/images/items/pipeline-engineering-mk-2_256.png and /dev/null differ diff --git a/www/assets/images/items/pipeline-engineering-mk-2_64.png b/www/assets/images/items/pipeline-engineering-mk-2_64.png deleted file mode 100644 index f6534c7c..00000000 Binary files a/www/assets/images/items/pipeline-engineering-mk-2_64.png and /dev/null differ diff --git a/www/assets/images/items/pipeline-floor-hole-1_256.png b/www/assets/images/items/pipeline-floor-hole-1_256.png deleted file mode 100644 index 7a8b4c5a..00000000 Binary files a/www/assets/images/items/pipeline-floor-hole-1_256.png and /dev/null differ diff --git a/www/assets/images/items/pipeline-floor-hole-1_64.png b/www/assets/images/items/pipeline-floor-hole-1_64.png deleted file mode 100644 index 70e5f580..00000000 Binary files a/www/assets/images/items/pipeline-floor-hole-1_64.png and /dev/null differ diff --git a/www/assets/images/items/pipeline-floor-hole_256.png b/www/assets/images/items/pipeline-floor-hole_256.png deleted file mode 100644 index 7c25b465..00000000 Binary files a/www/assets/images/items/pipeline-floor-hole_256.png and /dev/null differ diff --git a/www/assets/images/items/pipeline-floor-hole_64.png b/www/assets/images/items/pipeline-floor-hole_64.png deleted file mode 100644 index 82e2b155..00000000 Binary files a/www/assets/images/items/pipeline-floor-hole_64.png and /dev/null differ diff --git a/www/assets/images/items/pipeline-junction-cross_256.png b/www/assets/images/items/pipeline-junction-cross_256.png deleted file mode 100644 index b5b24d2c..00000000 Binary files a/www/assets/images/items/pipeline-junction-cross_256.png and /dev/null differ diff --git a/www/assets/images/items/pipeline-junction-cross_64.png b/www/assets/images/items/pipeline-junction-cross_64.png deleted file mode 100644 index ebbd8855..00000000 Binary files a/www/assets/images/items/pipeline-junction-cross_64.png and /dev/null differ diff --git a/www/assets/images/items/pipeline-mk-1_256.png b/www/assets/images/items/pipeline-mk-1_256.png deleted file mode 100644 index 253e799f..00000000 Binary files a/www/assets/images/items/pipeline-mk-1_256.png and /dev/null differ diff --git a/www/assets/images/items/pipeline-mk-1_64.png b/www/assets/images/items/pipeline-mk-1_64.png deleted file mode 100644 index f5232795..00000000 Binary files a/www/assets/images/items/pipeline-mk-1_64.png and /dev/null differ diff --git a/www/assets/images/items/pipeline-mk-2_256.png b/www/assets/images/items/pipeline-mk-2_256.png deleted file mode 100644 index a1733398..00000000 Binary files a/www/assets/images/items/pipeline-mk-2_256.png and /dev/null differ diff --git a/www/assets/images/items/pipeline-mk-2_64.png b/www/assets/images/items/pipeline-mk-2_64.png deleted file mode 100644 index 6cb964eb..00000000 Binary files a/www/assets/images/items/pipeline-mk-2_64.png and /dev/null differ diff --git a/www/assets/images/items/pipeline-pump-mk-1_256.png b/www/assets/images/items/pipeline-pump-mk-1_256.png deleted file mode 100644 index 52353a7c..00000000 Binary files a/www/assets/images/items/pipeline-pump-mk-1_256.png and /dev/null differ diff --git a/www/assets/images/items/pipeline-pump-mk-1_64.png b/www/assets/images/items/pipeline-pump-mk-1_64.png deleted file mode 100644 index d8f03463..00000000 Binary files a/www/assets/images/items/pipeline-pump-mk-1_64.png and /dev/null differ diff --git a/www/assets/images/items/pipeline-pump-mk-2_256.png b/www/assets/images/items/pipeline-pump-mk-2_256.png deleted file mode 100644 index 805deaf9..00000000 Binary files a/www/assets/images/items/pipeline-pump-mk-2_256.png and /dev/null differ diff --git a/www/assets/images/items/pipeline-pump-mk-2_64.png b/www/assets/images/items/pipeline-pump-mk-2_64.png deleted file mode 100644 index 9d43407a..00000000 Binary files a/www/assets/images/items/pipeline-pump-mk-2_64.png and /dev/null differ diff --git a/www/assets/images/items/pipeline-pump_256.png b/www/assets/images/items/pipeline-pump_256.png deleted file mode 100644 index 01debab4..00000000 Binary files a/www/assets/images/items/pipeline-pump_256.png and /dev/null differ diff --git a/www/assets/images/items/pipeline-pump_64.png b/www/assets/images/items/pipeline-pump_64.png deleted file mode 100644 index e51105fb..00000000 Binary files a/www/assets/images/items/pipeline-pump_64.png and /dev/null differ diff --git a/www/assets/images/items/pipeline-support_256.png b/www/assets/images/items/pipeline-support_256.png deleted file mode 100644 index db1065c1..00000000 Binary files a/www/assets/images/items/pipeline-support_256.png and /dev/null differ diff --git a/www/assets/images/items/pipeline-support_64.png b/www/assets/images/items/pipeline-support_64.png deleted file mode 100644 index 7d344fcc..00000000 Binary files a/www/assets/images/items/pipeline-support_64.png and /dev/null differ diff --git a/www/assets/images/items/pipeline-wall-attachments_256.png b/www/assets/images/items/pipeline-wall-attachments_256.png deleted file mode 100644 index f9c2281f..00000000 Binary files a/www/assets/images/items/pipeline-wall-attachments_256.png and /dev/null differ diff --git a/www/assets/images/items/pipeline-wall-attachments_64.png b/www/assets/images/items/pipeline-wall-attachments_64.png deleted file mode 100644 index e5239881..00000000 Binary files a/www/assets/images/items/pipeline-wall-attachments_64.png and /dev/null differ diff --git a/www/assets/images/items/pipeline-wall-hole_256.png b/www/assets/images/items/pipeline-wall-hole_256.png deleted file mode 100644 index 74982dbc..00000000 Binary files a/www/assets/images/items/pipeline-wall-hole_256.png and /dev/null differ diff --git a/www/assets/images/items/pipeline-wall-hole_64.png b/www/assets/images/items/pipeline-wall-hole_64.png deleted file mode 100644 index fe1fed3a..00000000 Binary files a/www/assets/images/items/pipeline-wall-hole_64.png and /dev/null differ diff --git a/www/assets/images/items/pipeline-wall-support_256.png b/www/assets/images/items/pipeline-wall-support_256.png deleted file mode 100644 index cdaae00e..00000000 Binary files a/www/assets/images/items/pipeline-wall-support_256.png and /dev/null differ diff --git a/www/assets/images/items/pipeline-wall-support_64.png b/www/assets/images/items/pipeline-wall-support_64.png deleted file mode 100644 index 6b80907d..00000000 Binary files a/www/assets/images/items/pipeline-wall-support_64.png and /dev/null differ diff --git a/www/assets/images/items/pipeline_256.png b/www/assets/images/items/pipeline_256.png deleted file mode 100644 index f13dd407..00000000 Binary files a/www/assets/images/items/pipeline_256.png and /dev/null differ diff --git a/www/assets/images/items/pipeline_64.png b/www/assets/images/items/pipeline_64.png deleted file mode 100644 index d085ad7a..00000000 Binary files a/www/assets/images/items/pipeline_64.png and /dev/null differ diff --git a/www/assets/images/items/plastic_256.png b/www/assets/images/items/plastic_256.png deleted file mode 100644 index 6a872a0b..00000000 Binary files a/www/assets/images/items/plastic_256.png and /dev/null differ diff --git a/www/assets/images/items/plastic_64.png b/www/assets/images/items/plastic_64.png deleted file mode 100644 index 446142c2..00000000 Binary files a/www/assets/images/items/plastic_64.png and /dev/null differ diff --git a/www/assets/images/items/plutonium-fuel-rod_256.png b/www/assets/images/items/plutonium-fuel-rod_256.png deleted file mode 100644 index 1bd5e1f7..00000000 Binary files a/www/assets/images/items/plutonium-fuel-rod_256.png and /dev/null differ diff --git a/www/assets/images/items/plutonium-fuel-rod_64.png b/www/assets/images/items/plutonium-fuel-rod_64.png deleted file mode 100644 index 146e0414..00000000 Binary files a/www/assets/images/items/plutonium-fuel-rod_64.png and /dev/null differ diff --git a/www/assets/images/items/plutonium-pellet_256.png b/www/assets/images/items/plutonium-pellet_256.png deleted file mode 100644 index 803037d8..00000000 Binary files a/www/assets/images/items/plutonium-pellet_256.png and /dev/null differ diff --git a/www/assets/images/items/plutonium-pellet_64.png b/www/assets/images/items/plutonium-pellet_64.png deleted file mode 100644 index c24c8579..00000000 Binary files a/www/assets/images/items/plutonium-pellet_64.png and /dev/null differ diff --git a/www/assets/images/items/plutonium-waste_256.png b/www/assets/images/items/plutonium-waste_256.png deleted file mode 100644 index 06eb334b..00000000 Binary files a/www/assets/images/items/plutonium-waste_256.png and /dev/null differ diff --git a/www/assets/images/items/plutonium-waste_64.png b/www/assets/images/items/plutonium-waste_64.png deleted file mode 100644 index cf03b328..00000000 Binary files a/www/assets/images/items/plutonium-waste_64.png and /dev/null differ diff --git a/www/assets/images/items/polymer-resin_256.png b/www/assets/images/items/polymer-resin_256.png deleted file mode 100644 index 89dd5434..00000000 Binary files a/www/assets/images/items/polymer-resin_256.png and /dev/null differ diff --git a/www/assets/images/items/polymer-resin_64.png b/www/assets/images/items/polymer-resin_64.png deleted file mode 100644 index 2cd0d3b6..00000000 Binary files a/www/assets/images/items/polymer-resin_64.png and /dev/null differ diff --git a/www/assets/images/items/portable-miner_256.png b/www/assets/images/items/portable-miner_256.png deleted file mode 100644 index da9c0d0a..00000000 Binary files a/www/assets/images/items/portable-miner_256.png and /dev/null differ diff --git a/www/assets/images/items/portable-miner_64.png b/www/assets/images/items/portable-miner_64.png deleted file mode 100644 index 3ed65759..00000000 Binary files a/www/assets/images/items/portable-miner_64.png and /dev/null differ diff --git a/www/assets/images/items/portrait-sign_256.png b/www/assets/images/items/portrait-sign_256.png deleted file mode 100644 index 602f9f2d..00000000 Binary files a/www/assets/images/items/portrait-sign_256.png and /dev/null differ diff --git a/www/assets/images/items/portrait-sign_64.png b/www/assets/images/items/portrait-sign_64.png deleted file mode 100644 index 60b529ab..00000000 Binary files a/www/assets/images/items/portrait-sign_64.png and /dev/null differ diff --git a/www/assets/images/items/power-line_256.png b/www/assets/images/items/power-line_256.png deleted file mode 100644 index 13b06464..00000000 Binary files a/www/assets/images/items/power-line_256.png and /dev/null differ diff --git a/www/assets/images/items/power-line_64.png b/www/assets/images/items/power-line_64.png deleted file mode 100644 index aa4a190c..00000000 Binary files a/www/assets/images/items/power-line_64.png and /dev/null differ diff --git a/www/assets/images/items/power-pole-mk-1_256.png b/www/assets/images/items/power-pole-mk-1_256.png deleted file mode 100644 index 5b8ea9cb..00000000 Binary files a/www/assets/images/items/power-pole-mk-1_256.png and /dev/null differ diff --git a/www/assets/images/items/power-pole-mk-1_64.png b/www/assets/images/items/power-pole-mk-1_64.png deleted file mode 100644 index bcd3f6a7..00000000 Binary files a/www/assets/images/items/power-pole-mk-1_64.png and /dev/null differ diff --git a/www/assets/images/items/power-pole-mk-2_256.png b/www/assets/images/items/power-pole-mk-2_256.png deleted file mode 100644 index d313bf5d..00000000 Binary files a/www/assets/images/items/power-pole-mk-2_256.png and /dev/null differ diff --git a/www/assets/images/items/power-pole-mk-2_64.png b/www/assets/images/items/power-pole-mk-2_64.png deleted file mode 100644 index 39b65fc1..00000000 Binary files a/www/assets/images/items/power-pole-mk-2_64.png and /dev/null differ diff --git a/www/assets/images/items/power-pole-mk-3_256.png b/www/assets/images/items/power-pole-mk-3_256.png deleted file mode 100644 index 8280ebd5..00000000 Binary files a/www/assets/images/items/power-pole-mk-3_256.png and /dev/null differ diff --git a/www/assets/images/items/power-pole-mk-3_64.png b/www/assets/images/items/power-pole-mk-3_64.png deleted file mode 100644 index 637b32d6..00000000 Binary files a/www/assets/images/items/power-pole-mk-3_64.png and /dev/null differ diff --git a/www/assets/images/items/power-poles-mk-2_256.png b/www/assets/images/items/power-poles-mk-2_256.png deleted file mode 100644 index a9cf24e7..00000000 Binary files a/www/assets/images/items/power-poles-mk-2_256.png and /dev/null differ diff --git a/www/assets/images/items/power-poles-mk-2_64.png b/www/assets/images/items/power-poles-mk-2_64.png deleted file mode 100644 index c803fb10..00000000 Binary files a/www/assets/images/items/power-poles-mk-2_64.png and /dev/null differ diff --git a/www/assets/images/items/power-poles-mk-3_256.png b/www/assets/images/items/power-poles-mk-3_256.png deleted file mode 100644 index 5db3ad68..00000000 Binary files a/www/assets/images/items/power-poles-mk-3_256.png and /dev/null differ diff --git a/www/assets/images/items/power-poles-mk-3_64.png b/www/assets/images/items/power-poles-mk-3_64.png deleted file mode 100644 index e3806961..00000000 Binary files a/www/assets/images/items/power-poles-mk-3_64.png and /dev/null differ diff --git a/www/assets/images/items/power-shard_256.png b/www/assets/images/items/power-shard_256.png deleted file mode 100644 index 9eaa7665..00000000 Binary files a/www/assets/images/items/power-shard_256.png and /dev/null differ diff --git a/www/assets/images/items/power-shard_64.png b/www/assets/images/items/power-shard_64.png deleted file mode 100644 index 78b59dc9..00000000 Binary files a/www/assets/images/items/power-shard_64.png and /dev/null differ diff --git a/www/assets/images/items/power-storage_256.png b/www/assets/images/items/power-storage_256.png deleted file mode 100644 index 60c6be12..00000000 Binary files a/www/assets/images/items/power-storage_256.png and /dev/null differ diff --git a/www/assets/images/items/power-storage_64.png b/www/assets/images/items/power-storage_64.png deleted file mode 100644 index 2845264c..00000000 Binary files a/www/assets/images/items/power-storage_64.png and /dev/null differ diff --git a/www/assets/images/items/power-switch-1_256.png b/www/assets/images/items/power-switch-1_256.png deleted file mode 100644 index 39f5d3f4..00000000 Binary files a/www/assets/images/items/power-switch-1_256.png and /dev/null differ diff --git a/www/assets/images/items/power-switch-1_64.png b/www/assets/images/items/power-switch-1_64.png deleted file mode 100644 index 15f4d5bc..00000000 Binary files a/www/assets/images/items/power-switch-1_64.png and /dev/null differ diff --git a/www/assets/images/items/power-switch_256.png b/www/assets/images/items/power-switch_256.png deleted file mode 100644 index 73a3992a..00000000 Binary files a/www/assets/images/items/power-switch_256.png and /dev/null differ diff --git a/www/assets/images/items/power-switch_64.png b/www/assets/images/items/power-switch_64.png deleted file mode 100644 index 82765e43..00000000 Binary files a/www/assets/images/items/power-switch_64.png and /dev/null differ diff --git a/www/assets/images/items/pressure-conversion-cube_256.png b/www/assets/images/items/pressure-conversion-cube_256.png deleted file mode 100644 index 60819d42..00000000 Binary files a/www/assets/images/items/pressure-conversion-cube_256.png and /dev/null differ diff --git a/www/assets/images/items/pressure-conversion-cube_64.png b/www/assets/images/items/pressure-conversion-cube_64.png deleted file mode 100644 index 783cbf08..00000000 Binary files a/www/assets/images/items/pressure-conversion-cube_64.png and /dev/null differ diff --git a/www/assets/images/items/programmable-splitter-1_256.png b/www/assets/images/items/programmable-splitter-1_256.png deleted file mode 100644 index bc5952b5..00000000 Binary files a/www/assets/images/items/programmable-splitter-1_256.png and /dev/null differ diff --git a/www/assets/images/items/programmable-splitter-1_64.png b/www/assets/images/items/programmable-splitter-1_64.png deleted file mode 100644 index 969fa182..00000000 Binary files a/www/assets/images/items/programmable-splitter-1_64.png and /dev/null differ diff --git a/www/assets/images/items/programmable-splitter_256.png b/www/assets/images/items/programmable-splitter_256.png deleted file mode 100644 index 97e055d9..00000000 Binary files a/www/assets/images/items/programmable-splitter_256.png and /dev/null differ diff --git a/www/assets/images/items/programmable-splitter_64.png b/www/assets/images/items/programmable-splitter_64.png deleted file mode 100644 index 4c841b74..00000000 Binary files a/www/assets/images/items/programmable-splitter_64.png and /dev/null differ diff --git a/www/assets/images/items/prototype-cartridges_256.png b/www/assets/images/items/prototype-cartridges_256.png deleted file mode 100644 index 7b84262e..00000000 Binary files a/www/assets/images/items/prototype-cartridges_256.png and /dev/null differ diff --git a/www/assets/images/items/prototype-cartridges_64.png b/www/assets/images/items/prototype-cartridges_64.png deleted file mode 100644 index 7413c303..00000000 Binary files a/www/assets/images/items/prototype-cartridges_64.png and /dev/null differ diff --git a/www/assets/images/items/prototype-explosives_256.png b/www/assets/images/items/prototype-explosives_256.png deleted file mode 100644 index a38e6c38..00000000 Binary files a/www/assets/images/items/prototype-explosives_256.png and /dev/null differ diff --git a/www/assets/images/items/prototype-explosives_64.png b/www/assets/images/items/prototype-explosives_64.png deleted file mode 100644 index b37c2829..00000000 Binary files a/www/assets/images/items/prototype-explosives_64.png and /dev/null differ diff --git a/www/assets/images/items/purple-power-shards_256.png b/www/assets/images/items/purple-power-shards_256.png deleted file mode 100644 index 3da06993..00000000 Binary files a/www/assets/images/items/purple-power-shards_256.png and /dev/null differ diff --git a/www/assets/images/items/purple-power-shards_64.png b/www/assets/images/items/purple-power-shards_64.png deleted file mode 100644 index 6a6dc04e..00000000 Binary files a/www/assets/images/items/purple-power-shards_64.png and /dev/null differ diff --git a/www/assets/images/items/purple-power-slug_256.png b/www/assets/images/items/purple-power-slug_256.png deleted file mode 100644 index 89f8f3fe..00000000 Binary files a/www/assets/images/items/purple-power-slug_256.png and /dev/null differ diff --git a/www/assets/images/items/purple-power-slug_64.png b/www/assets/images/items/purple-power-slug_64.png deleted file mode 100644 index 85052f23..00000000 Binary files a/www/assets/images/items/purple-power-slug_64.png and /dev/null differ diff --git a/www/assets/images/items/quarter-pipe_256.png b/www/assets/images/items/quarter-pipe_256.png deleted file mode 100644 index 3f8a1e7a..00000000 Binary files a/www/assets/images/items/quarter-pipe_256.png and /dev/null differ diff --git a/www/assets/images/items/quarter-pipe_64.png b/www/assets/images/items/quarter-pipe_64.png deleted file mode 100644 index 2c07ce4e..00000000 Binary files a/www/assets/images/items/quarter-pipe_64.png and /dev/null differ diff --git a/www/assets/images/items/quarter-pipes-pack_256.png b/www/assets/images/items/quarter-pipes-pack_256.png deleted file mode 100644 index 3f8a1e7a..00000000 Binary files a/www/assets/images/items/quarter-pipes-pack_256.png and /dev/null differ diff --git a/www/assets/images/items/quarter-pipes-pack_64.png b/www/assets/images/items/quarter-pipes-pack_64.png deleted file mode 100644 index 2c07ce4e..00000000 Binary files a/www/assets/images/items/quarter-pipes-pack_64.png and /dev/null differ diff --git a/www/assets/images/items/quartz-crystal_256.png b/www/assets/images/items/quartz-crystal_256.png deleted file mode 100644 index c06202e8..00000000 Binary files a/www/assets/images/items/quartz-crystal_256.png and /dev/null differ diff --git a/www/assets/images/items/quartz-crystal_64.png b/www/assets/images/items/quartz-crystal_64.png deleted file mode 100644 index 3159b8c5..00000000 Binary files a/www/assets/images/items/quartz-crystal_64.png and /dev/null differ diff --git a/www/assets/images/items/quartz-crystals_256.png b/www/assets/images/items/quartz-crystals_256.png deleted file mode 100644 index c4918f4b..00000000 Binary files a/www/assets/images/items/quartz-crystals_256.png and /dev/null differ diff --git a/www/assets/images/items/quartz-crystals_64.png b/www/assets/images/items/quartz-crystals_64.png deleted file mode 100644 index 45119023..00000000 Binary files a/www/assets/images/items/quartz-crystals_64.png and /dev/null differ diff --git a/www/assets/images/items/quartz_256.png b/www/assets/images/items/quartz_256.png deleted file mode 100644 index 257c6e0e..00000000 Binary files a/www/assets/images/items/quartz_256.png and /dev/null differ diff --git a/www/assets/images/items/quartz_64.png b/www/assets/images/items/quartz_64.png deleted file mode 100644 index dd62bedd..00000000 Binary files a/www/assets/images/items/quartz_64.png and /dev/null differ diff --git a/www/assets/images/items/quickwire-1_256.png b/www/assets/images/items/quickwire-1_256.png deleted file mode 100644 index 2a4432be..00000000 Binary files a/www/assets/images/items/quickwire-1_256.png and /dev/null differ diff --git a/www/assets/images/items/quickwire-1_64.png b/www/assets/images/items/quickwire-1_64.png deleted file mode 100644 index 146888a8..00000000 Binary files a/www/assets/images/items/quickwire-1_64.png and /dev/null differ diff --git a/www/assets/images/items/quickwire_256.png b/www/assets/images/items/quickwire_256.png deleted file mode 100644 index fa03aa4d..00000000 Binary files a/www/assets/images/items/quickwire_256.png and /dev/null differ diff --git a/www/assets/images/items/quickwire_64.png b/www/assets/images/items/quickwire_64.png deleted file mode 100644 index f3fbfa30..00000000 Binary files a/www/assets/images/items/quickwire_64.png and /dev/null differ diff --git a/www/assets/images/items/radar-technology_256.png b/www/assets/images/items/radar-technology_256.png deleted file mode 100644 index 0c6f01f0..00000000 Binary files a/www/assets/images/items/radar-technology_256.png and /dev/null differ diff --git a/www/assets/images/items/radar-technology_64.png b/www/assets/images/items/radar-technology_64.png deleted file mode 100644 index 317881bf..00000000 Binary files a/www/assets/images/items/radar-technology_64.png and /dev/null differ diff --git a/www/assets/images/items/radar-tower_256.png b/www/assets/images/items/radar-tower_256.png deleted file mode 100644 index a1521c2e..00000000 Binary files a/www/assets/images/items/radar-tower_256.png and /dev/null differ diff --git a/www/assets/images/items/radar-tower_64.png b/www/assets/images/items/radar-tower_64.png deleted file mode 100644 index bb8d8da3..00000000 Binary files a/www/assets/images/items/radar-tower_64.png and /dev/null differ diff --git a/www/assets/images/items/radio-control-unit-1_256.png b/www/assets/images/items/radio-control-unit-1_256.png deleted file mode 100644 index ca176e97..00000000 Binary files a/www/assets/images/items/radio-control-unit-1_256.png and /dev/null differ diff --git a/www/assets/images/items/radio-control-unit-1_64.png b/www/assets/images/items/radio-control-unit-1_64.png deleted file mode 100644 index 538b0975..00000000 Binary files a/www/assets/images/items/radio-control-unit-1_64.png and /dev/null differ diff --git a/www/assets/images/items/radio-control-unit_256.png b/www/assets/images/items/radio-control-unit_256.png deleted file mode 100644 index 5232b188..00000000 Binary files a/www/assets/images/items/radio-control-unit_256.png and /dev/null differ diff --git a/www/assets/images/items/radio-control-unit_64.png b/www/assets/images/items/radio-control-unit_64.png deleted file mode 100644 index 54c323be..00000000 Binary files a/www/assets/images/items/radio-control-unit_64.png and /dev/null differ diff --git a/www/assets/images/items/radio-signal-scanning_256.png b/www/assets/images/items/radio-signal-scanning_256.png deleted file mode 100644 index 11cb0a4c..00000000 Binary files a/www/assets/images/items/radio-signal-scanning_256.png and /dev/null differ diff --git a/www/assets/images/items/radio-signal-scanning_64.png b/www/assets/images/items/radio-signal-scanning_64.png deleted file mode 100644 index a1d63b63..00000000 Binary files a/www/assets/images/items/radio-signal-scanning_64.png and /dev/null differ diff --git a/www/assets/images/items/railway_256.png b/www/assets/images/items/railway_256.png deleted file mode 100644 index d4441fd4..00000000 Binary files a/www/assets/images/items/railway_256.png and /dev/null differ diff --git a/www/assets/images/items/railway_64.png b/www/assets/images/items/railway_64.png deleted file mode 100644 index 749a5caf..00000000 Binary files a/www/assets/images/items/railway_64.png and /dev/null differ diff --git a/www/assets/images/items/ramp-1m-1_256.png b/www/assets/images/items/ramp-1m-1_256.png deleted file mode 100644 index 27bf3b2e..00000000 Binary files a/www/assets/images/items/ramp-1m-1_256.png and /dev/null differ diff --git a/www/assets/images/items/ramp-1m-1_64.png b/www/assets/images/items/ramp-1m-1_64.png deleted file mode 100644 index 43515fa4..00000000 Binary files a/www/assets/images/items/ramp-1m-1_64.png and /dev/null differ diff --git a/www/assets/images/items/ramp-1m-2_256.png b/www/assets/images/items/ramp-1m-2_256.png deleted file mode 100644 index 742f77f3..00000000 Binary files a/www/assets/images/items/ramp-1m-2_256.png and /dev/null differ diff --git a/www/assets/images/items/ramp-1m-2_64.png b/www/assets/images/items/ramp-1m-2_64.png deleted file mode 100644 index c2381ec1..00000000 Binary files a/www/assets/images/items/ramp-1m-2_64.png and /dev/null differ diff --git a/www/assets/images/items/ramp-1m-3_256.png b/www/assets/images/items/ramp-1m-3_256.png deleted file mode 100644 index 8101e83b..00000000 Binary files a/www/assets/images/items/ramp-1m-3_256.png and /dev/null differ diff --git a/www/assets/images/items/ramp-1m-3_64.png b/www/assets/images/items/ramp-1m-3_64.png deleted file mode 100644 index 8b162f78..00000000 Binary files a/www/assets/images/items/ramp-1m-3_64.png and /dev/null differ diff --git a/www/assets/images/items/ramp-1m-asphalt_256.png b/www/assets/images/items/ramp-1m-asphalt_256.png deleted file mode 100644 index 27bf3b2e..00000000 Binary files a/www/assets/images/items/ramp-1m-asphalt_256.png and /dev/null differ diff --git a/www/assets/images/items/ramp-1m-asphalt_64.png b/www/assets/images/items/ramp-1m-asphalt_64.png deleted file mode 100644 index 43515fa4..00000000 Binary files a/www/assets/images/items/ramp-1m-asphalt_64.png and /dev/null differ diff --git a/www/assets/images/items/ramp-1m-concrete_256.png b/www/assets/images/items/ramp-1m-concrete_256.png deleted file mode 100644 index 3ea29dfe..00000000 Binary files a/www/assets/images/items/ramp-1m-concrete_256.png and /dev/null differ diff --git a/www/assets/images/items/ramp-1m-concrete_64.png b/www/assets/images/items/ramp-1m-concrete_64.png deleted file mode 100644 index ca53e1fe..00000000 Binary files a/www/assets/images/items/ramp-1m-concrete_64.png and /dev/null differ diff --git a/www/assets/images/items/ramp-1m-metal_256.png b/www/assets/images/items/ramp-1m-metal_256.png deleted file mode 100644 index 742f77f3..00000000 Binary files a/www/assets/images/items/ramp-1m-metal_256.png and /dev/null differ diff --git a/www/assets/images/items/ramp-1m-metal_64.png b/www/assets/images/items/ramp-1m-metal_64.png deleted file mode 100644 index e002e56e..00000000 Binary files a/www/assets/images/items/ramp-1m-metal_64.png and /dev/null differ diff --git a/www/assets/images/items/ramp-1m-polished_256.png b/www/assets/images/items/ramp-1m-polished_256.png deleted file mode 100644 index 8101e83b..00000000 Binary files a/www/assets/images/items/ramp-1m-polished_256.png and /dev/null differ diff --git a/www/assets/images/items/ramp-1m-polished_64.png b/www/assets/images/items/ramp-1m-polished_64.png deleted file mode 100644 index 19e8ff70..00000000 Binary files a/www/assets/images/items/ramp-1m-polished_64.png and /dev/null differ diff --git a/www/assets/images/items/ramp-1m_256.png b/www/assets/images/items/ramp-1m_256.png deleted file mode 100644 index b831aa95..00000000 Binary files a/www/assets/images/items/ramp-1m_256.png and /dev/null differ diff --git a/www/assets/images/items/ramp-1m_64.png b/www/assets/images/items/ramp-1m_64.png deleted file mode 100644 index 20737273..00000000 Binary files a/www/assets/images/items/ramp-1m_64.png and /dev/null differ diff --git a/www/assets/images/items/ramp-2m-1_256.png b/www/assets/images/items/ramp-2m-1_256.png deleted file mode 100644 index 27bf3b2e..00000000 Binary files a/www/assets/images/items/ramp-2m-1_256.png and /dev/null differ diff --git a/www/assets/images/items/ramp-2m-1_64.png b/www/assets/images/items/ramp-2m-1_64.png deleted file mode 100644 index 43515fa4..00000000 Binary files a/www/assets/images/items/ramp-2m-1_64.png and /dev/null differ diff --git a/www/assets/images/items/ramp-2m-2_256.png b/www/assets/images/items/ramp-2m-2_256.png deleted file mode 100644 index 4009f077..00000000 Binary files a/www/assets/images/items/ramp-2m-2_256.png and /dev/null differ diff --git a/www/assets/images/items/ramp-2m-2_64.png b/www/assets/images/items/ramp-2m-2_64.png deleted file mode 100644 index 5f0680cd..00000000 Binary files a/www/assets/images/items/ramp-2m-2_64.png and /dev/null differ diff --git a/www/assets/images/items/ramp-2m-3_256.png b/www/assets/images/items/ramp-2m-3_256.png deleted file mode 100644 index 634d2513..00000000 Binary files a/www/assets/images/items/ramp-2m-3_256.png and /dev/null differ diff --git a/www/assets/images/items/ramp-2m-3_64.png b/www/assets/images/items/ramp-2m-3_64.png deleted file mode 100644 index f1eb0891..00000000 Binary files a/www/assets/images/items/ramp-2m-3_64.png and /dev/null differ diff --git a/www/assets/images/items/ramp-2m-asphalt_256.png b/www/assets/images/items/ramp-2m-asphalt_256.png deleted file mode 100644 index 27bf3b2e..00000000 Binary files a/www/assets/images/items/ramp-2m-asphalt_256.png and /dev/null differ diff --git a/www/assets/images/items/ramp-2m-asphalt_64.png b/www/assets/images/items/ramp-2m-asphalt_64.png deleted file mode 100644 index 43515fa4..00000000 Binary files a/www/assets/images/items/ramp-2m-asphalt_64.png and /dev/null differ diff --git a/www/assets/images/items/ramp-2m-concrete_256.png b/www/assets/images/items/ramp-2m-concrete_256.png deleted file mode 100644 index b8e861ae..00000000 Binary files a/www/assets/images/items/ramp-2m-concrete_256.png and /dev/null differ diff --git a/www/assets/images/items/ramp-2m-concrete_64.png b/www/assets/images/items/ramp-2m-concrete_64.png deleted file mode 100644 index b4b31559..00000000 Binary files a/www/assets/images/items/ramp-2m-concrete_64.png and /dev/null differ diff --git a/www/assets/images/items/ramp-2m-metal_256.png b/www/assets/images/items/ramp-2m-metal_256.png deleted file mode 100644 index 4009f077..00000000 Binary files a/www/assets/images/items/ramp-2m-metal_256.png and /dev/null differ diff --git a/www/assets/images/items/ramp-2m-metal_64.png b/www/assets/images/items/ramp-2m-metal_64.png deleted file mode 100644 index 1ce91641..00000000 Binary files a/www/assets/images/items/ramp-2m-metal_64.png and /dev/null differ diff --git a/www/assets/images/items/ramp-2m-polished_256.png b/www/assets/images/items/ramp-2m-polished_256.png deleted file mode 100644 index 634d2513..00000000 Binary files a/www/assets/images/items/ramp-2m-polished_256.png and /dev/null differ diff --git a/www/assets/images/items/ramp-2m-polished_64.png b/www/assets/images/items/ramp-2m-polished_64.png deleted file mode 100644 index 6877fd09..00000000 Binary files a/www/assets/images/items/ramp-2m-polished_64.png and /dev/null differ diff --git a/www/assets/images/items/ramp-2m_256.png b/www/assets/images/items/ramp-2m_256.png deleted file mode 100644 index ed63e29a..00000000 Binary files a/www/assets/images/items/ramp-2m_256.png and /dev/null differ diff --git a/www/assets/images/items/ramp-2m_64.png b/www/assets/images/items/ramp-2m_64.png deleted file mode 100644 index 4ffec9d4..00000000 Binary files a/www/assets/images/items/ramp-2m_64.png and /dev/null differ diff --git a/www/assets/images/items/ramp-4m-1_256.png b/www/assets/images/items/ramp-4m-1_256.png deleted file mode 100644 index 504ae85d..00000000 Binary files a/www/assets/images/items/ramp-4m-1_256.png and /dev/null differ diff --git a/www/assets/images/items/ramp-4m-1_64.png b/www/assets/images/items/ramp-4m-1_64.png deleted file mode 100644 index 2a36b812..00000000 Binary files a/www/assets/images/items/ramp-4m-1_64.png and /dev/null differ diff --git a/www/assets/images/items/ramp-4m-2_256.png b/www/assets/images/items/ramp-4m-2_256.png deleted file mode 100644 index e3dc1c4d..00000000 Binary files a/www/assets/images/items/ramp-4m-2_256.png and /dev/null differ diff --git a/www/assets/images/items/ramp-4m-2_64.png b/www/assets/images/items/ramp-4m-2_64.png deleted file mode 100644 index 70163b0c..00000000 Binary files a/www/assets/images/items/ramp-4m-2_64.png and /dev/null differ diff --git a/www/assets/images/items/ramp-4m-3_256.png b/www/assets/images/items/ramp-4m-3_256.png deleted file mode 100644 index 5a50ab27..00000000 Binary files a/www/assets/images/items/ramp-4m-3_256.png and /dev/null differ diff --git a/www/assets/images/items/ramp-4m-3_64.png b/www/assets/images/items/ramp-4m-3_64.png deleted file mode 100644 index d899de50..00000000 Binary files a/www/assets/images/items/ramp-4m-3_64.png and /dev/null differ diff --git a/www/assets/images/items/ramp-4m-asphalt_256.png b/www/assets/images/items/ramp-4m-asphalt_256.png deleted file mode 100644 index 504ae85d..00000000 Binary files a/www/assets/images/items/ramp-4m-asphalt_256.png and /dev/null differ diff --git a/www/assets/images/items/ramp-4m-asphalt_64.png b/www/assets/images/items/ramp-4m-asphalt_64.png deleted file mode 100644 index 2a36b812..00000000 Binary files a/www/assets/images/items/ramp-4m-asphalt_64.png and /dev/null differ diff --git a/www/assets/images/items/ramp-4m-concrete_256.png b/www/assets/images/items/ramp-4m-concrete_256.png deleted file mode 100644 index f2a55a91..00000000 Binary files a/www/assets/images/items/ramp-4m-concrete_256.png and /dev/null differ diff --git a/www/assets/images/items/ramp-4m-concrete_64.png b/www/assets/images/items/ramp-4m-concrete_64.png deleted file mode 100644 index 23de1a0d..00000000 Binary files a/www/assets/images/items/ramp-4m-concrete_64.png and /dev/null differ diff --git a/www/assets/images/items/ramp-4m-metal_256.png b/www/assets/images/items/ramp-4m-metal_256.png deleted file mode 100644 index e3dc1c4d..00000000 Binary files a/www/assets/images/items/ramp-4m-metal_256.png and /dev/null differ diff --git a/www/assets/images/items/ramp-4m-metal_64.png b/www/assets/images/items/ramp-4m-metal_64.png deleted file mode 100644 index ef7677ec..00000000 Binary files a/www/assets/images/items/ramp-4m-metal_64.png and /dev/null differ diff --git a/www/assets/images/items/ramp-4m-polished_256.png b/www/assets/images/items/ramp-4m-polished_256.png deleted file mode 100644 index 5a50ab27..00000000 Binary files a/www/assets/images/items/ramp-4m-polished_256.png and /dev/null differ diff --git a/www/assets/images/items/ramp-4m-polished_64.png b/www/assets/images/items/ramp-4m-polished_64.png deleted file mode 100644 index f288e773..00000000 Binary files a/www/assets/images/items/ramp-4m-polished_64.png and /dev/null differ diff --git a/www/assets/images/items/ramp-4m_256.png b/www/assets/images/items/ramp-4m_256.png deleted file mode 100644 index a64eb2c6..00000000 Binary files a/www/assets/images/items/ramp-4m_256.png and /dev/null differ diff --git a/www/assets/images/items/ramp-4m_64.png b/www/assets/images/items/ramp-4m_64.png deleted file mode 100644 index 536c0304..00000000 Binary files a/www/assets/images/items/ramp-4m_64.png and /dev/null differ diff --git a/www/assets/images/items/ramp-8m-x-1m_256.png b/www/assets/images/items/ramp-8m-x-1m_256.png deleted file mode 100644 index 2c46637f..00000000 Binary files a/www/assets/images/items/ramp-8m-x-1m_256.png and /dev/null differ diff --git a/www/assets/images/items/ramp-8m-x-1m_64.png b/www/assets/images/items/ramp-8m-x-1m_64.png deleted file mode 100644 index f0a592c9..00000000 Binary files a/www/assets/images/items/ramp-8m-x-1m_64.png and /dev/null differ diff --git a/www/assets/images/items/ramp-8m-x-2m_256.png b/www/assets/images/items/ramp-8m-x-2m_256.png deleted file mode 100644 index 670ed39c..00000000 Binary files a/www/assets/images/items/ramp-8m-x-2m_256.png and /dev/null differ diff --git a/www/assets/images/items/ramp-8m-x-2m_64.png b/www/assets/images/items/ramp-8m-x-2m_64.png deleted file mode 100644 index e5c82119..00000000 Binary files a/www/assets/images/items/ramp-8m-x-2m_64.png and /dev/null differ diff --git a/www/assets/images/items/ramp-8m-x-4m_256.png b/www/assets/images/items/ramp-8m-x-4m_256.png deleted file mode 100644 index c6cd1de3..00000000 Binary files a/www/assets/images/items/ramp-8m-x-4m_256.png and /dev/null differ diff --git a/www/assets/images/items/ramp-8m-x-4m_64.png b/www/assets/images/items/ramp-8m-x-4m_64.png deleted file mode 100644 index 065a6883..00000000 Binary files a/www/assets/images/items/ramp-8m-x-4m_64.png and /dev/null differ diff --git a/www/assets/images/items/ramp-wall-1m-steel_256.png b/www/assets/images/items/ramp-wall-1m-steel_256.png deleted file mode 100644 index 23a0b42c..00000000 Binary files a/www/assets/images/items/ramp-wall-1m-steel_256.png and /dev/null differ diff --git a/www/assets/images/items/ramp-wall-1m-steel_64.png b/www/assets/images/items/ramp-wall-1m-steel_64.png deleted file mode 100644 index 942d277f..00000000 Binary files a/www/assets/images/items/ramp-wall-1m-steel_64.png and /dev/null differ diff --git a/www/assets/images/items/ramp-wall-2m-steel_256.png b/www/assets/images/items/ramp-wall-2m-steel_256.png deleted file mode 100644 index 3a973968..00000000 Binary files a/www/assets/images/items/ramp-wall-2m-steel_256.png and /dev/null differ diff --git a/www/assets/images/items/ramp-wall-2m-steel_64.png b/www/assets/images/items/ramp-wall-2m-steel_64.png deleted file mode 100644 index 2180e698..00000000 Binary files a/www/assets/images/items/ramp-wall-2m-steel_64.png and /dev/null differ diff --git a/www/assets/images/items/ramp-wall-4m-steel_256.png b/www/assets/images/items/ramp-wall-4m-steel_256.png deleted file mode 100644 index 9bacbd70..00000000 Binary files a/www/assets/images/items/ramp-wall-4m-steel_256.png and /dev/null differ diff --git a/www/assets/images/items/ramp-wall-4m-steel_64.png b/www/assets/images/items/ramp-wall-4m-steel_64.png deleted file mode 100644 index e0987806..00000000 Binary files a/www/assets/images/items/ramp-wall-4m-steel_64.png and /dev/null differ diff --git a/www/assets/images/items/ramp-wall-8m-steel_256.png b/www/assets/images/items/ramp-wall-8m-steel_256.png deleted file mode 100644 index 0b7288ef..00000000 Binary files a/www/assets/images/items/ramp-wall-8m-steel_256.png and /dev/null differ diff --git a/www/assets/images/items/ramp-wall-8m-steel_64.png b/www/assets/images/items/ramp-wall-8m-steel_64.png deleted file mode 100644 index b458f122..00000000 Binary files a/www/assets/images/items/ramp-wall-8m-steel_64.png and /dev/null differ diff --git a/www/assets/images/items/ramp-wall-bundle_256.png b/www/assets/images/items/ramp-wall-bundle_256.png deleted file mode 100644 index 6daca465..00000000 Binary files a/www/assets/images/items/ramp-wall-bundle_256.png and /dev/null differ diff --git a/www/assets/images/items/ramp-wall-bundle_64.png b/www/assets/images/items/ramp-wall-bundle_64.png deleted file mode 100644 index e7db3d10..00000000 Binary files a/www/assets/images/items/ramp-wall-bundle_64.png and /dev/null differ diff --git a/www/assets/images/items/raw-quartz_256.png b/www/assets/images/items/raw-quartz_256.png deleted file mode 100644 index 30096ea8..00000000 Binary files a/www/assets/images/items/raw-quartz_256.png and /dev/null differ diff --git a/www/assets/images/items/raw-quartz_64.png b/www/assets/images/items/raw-quartz_64.png deleted file mode 100644 index 41473fea..00000000 Binary files a/www/assets/images/items/raw-quartz_64.png and /dev/null differ diff --git a/www/assets/images/items/rebar-gun-1_256.png b/www/assets/images/items/rebar-gun-1_256.png deleted file mode 100644 index 0e496058..00000000 Binary files a/www/assets/images/items/rebar-gun-1_256.png and /dev/null differ diff --git a/www/assets/images/items/rebar-gun-1_64.png b/www/assets/images/items/rebar-gun-1_64.png deleted file mode 100644 index 9d7a301f..00000000 Binary files a/www/assets/images/items/rebar-gun-1_64.png and /dev/null differ diff --git a/www/assets/images/items/rebar-gun_256.png b/www/assets/images/items/rebar-gun_256.png deleted file mode 100644 index 9f78f213..00000000 Binary files a/www/assets/images/items/rebar-gun_256.png and /dev/null differ diff --git a/www/assets/images/items/rebar-gun_64.png b/www/assets/images/items/rebar-gun_64.png deleted file mode 100644 index 4ad11e77..00000000 Binary files a/www/assets/images/items/rebar-gun_64.png and /dev/null differ diff --git a/www/assets/images/items/refinery_256.png b/www/assets/images/items/refinery_256.png deleted file mode 100644 index 637f83f2..00000000 Binary files a/www/assets/images/items/refinery_256.png and /dev/null differ diff --git a/www/assets/images/items/refinery_64.png b/www/assets/images/items/refinery_64.png deleted file mode 100644 index b2d9e744..00000000 Binary files a/www/assets/images/items/refinery_64.png and /dev/null differ diff --git a/www/assets/images/items/reinforced-iron-plate_256.png b/www/assets/images/items/reinforced-iron-plate_256.png deleted file mode 100644 index 218cf6b9..00000000 Binary files a/www/assets/images/items/reinforced-iron-plate_256.png and /dev/null differ diff --git a/www/assets/images/items/reinforced-iron-plate_64.png b/www/assets/images/items/reinforced-iron-plate_64.png deleted file mode 100644 index e125bde6..00000000 Binary files a/www/assets/images/items/reinforced-iron-plate_64.png and /dev/null differ diff --git a/www/assets/images/items/reinforced-window-1_256.png b/www/assets/images/items/reinforced-window-1_256.png deleted file mode 100644 index 65412f9d..00000000 Binary files a/www/assets/images/items/reinforced-window-1_256.png and /dev/null differ diff --git a/www/assets/images/items/reinforced-window-1_64.png b/www/assets/images/items/reinforced-window-1_64.png deleted file mode 100644 index f572fbb9..00000000 Binary files a/www/assets/images/items/reinforced-window-1_64.png and /dev/null differ diff --git a/www/assets/images/items/reinforced-window-concrete_256.png b/www/assets/images/items/reinforced-window-concrete_256.png deleted file mode 100644 index b6787bec..00000000 Binary files a/www/assets/images/items/reinforced-window-concrete_256.png and /dev/null differ diff --git a/www/assets/images/items/reinforced-window-concrete_64.png b/www/assets/images/items/reinforced-window-concrete_64.png deleted file mode 100644 index 09ca943c..00000000 Binary files a/www/assets/images/items/reinforced-window-concrete_64.png and /dev/null differ diff --git a/www/assets/images/items/reinforced-window-steel_256.png b/www/assets/images/items/reinforced-window-steel_256.png deleted file mode 100644 index 963d8353..00000000 Binary files a/www/assets/images/items/reinforced-window-steel_256.png and /dev/null differ diff --git a/www/assets/images/items/reinforced-window-steel_64.png b/www/assets/images/items/reinforced-window-steel_64.png deleted file mode 100644 index 6db88df7..00000000 Binary files a/www/assets/images/items/reinforced-window-steel_64.png and /dev/null differ diff --git a/www/assets/images/items/reinforced-window_256.png b/www/assets/images/items/reinforced-window_256.png deleted file mode 100644 index 65412f9d..00000000 Binary files a/www/assets/images/items/reinforced-window_256.png and /dev/null differ diff --git a/www/assets/images/items/reinforced-window_64.png b/www/assets/images/items/reinforced-window_64.png deleted file mode 100644 index 51c1062f..00000000 Binary files a/www/assets/images/items/reinforced-window_64.png and /dev/null differ diff --git a/www/assets/images/items/research-acarapace-0-c_256.png b/www/assets/images/items/research-acarapace-0-c_256.png new file mode 100644 index 00000000..a0692fa6 Binary files /dev/null and b/www/assets/images/items/research-acarapace-0-c_256.png differ diff --git a/www/assets/images/items/research-acarapace-0-c_64.png b/www/assets/images/items/research-acarapace-0-c_64.png new file mode 100644 index 00000000..82d65b4d Binary files /dev/null and b/www/assets/images/items/research-acarapace-0-c_64.png differ diff --git a/www/assets/images/items/research-acarapace-2-c_256.png b/www/assets/images/items/research-acarapace-2-c_256.png new file mode 100644 index 00000000..119279cf Binary files /dev/null and b/www/assets/images/items/research-acarapace-2-c_256.png differ diff --git a/www/assets/images/items/research-acarapace-2-c_64.png b/www/assets/images/items/research-acarapace-2-c_64.png new file mode 100644 index 00000000..69e21dda Binary files /dev/null and b/www/assets/images/items/research-acarapace-2-c_64.png differ diff --git a/www/assets/images/items/research-acarapace-3-c_256.png b/www/assets/images/items/research-acarapace-3-c_256.png new file mode 100644 index 00000000..2a272952 Binary files /dev/null and b/www/assets/images/items/research-acarapace-3-c_256.png differ diff --git a/www/assets/images/items/research-acarapace-3-c_64.png b/www/assets/images/items/research-acarapace-3-c_64.png new file mode 100644 index 00000000..11b7fbdc Binary files /dev/null and b/www/assets/images/items/research-acarapace-3-c_64.png differ diff --git a/www/assets/images/items/research-alien-activesam-c_256.png b/www/assets/images/items/research-alien-activesam-c_256.png new file mode 100644 index 00000000..02c00359 Binary files /dev/null and b/www/assets/images/items/research-alien-activesam-c_256.png differ diff --git a/www/assets/images/items/research-alien-activesam-c_64.png b/www/assets/images/items/research-alien-activesam-c_64.png new file mode 100644 index 00000000..3389dbd5 Binary files /dev/null and b/www/assets/images/items/research-alien-activesam-c_64.png differ diff --git a/www/assets/images/items/research-alien-boosterblocker-c_256.png b/www/assets/images/items/research-alien-boosterblocker-c_256.png new file mode 100644 index 00000000..0f37d25f Binary files /dev/null and b/www/assets/images/items/research-alien-boosterblocker-c_256.png differ diff --git a/www/assets/images/items/research-alien-boosterblocker-c_64.png b/www/assets/images/items/research-alien-boosterblocker-c_64.png new file mode 100644 index 00000000..243ebc3e Binary files /dev/null and b/www/assets/images/items/research-alien-boosterblocker-c_64.png differ diff --git a/www/assets/images/items/research-alien-boosterfuel-c_256.png b/www/assets/images/items/research-alien-boosterfuel-c_256.png new file mode 100644 index 00000000..e50baf4e Binary files /dev/null and b/www/assets/images/items/research-alien-boosterfuel-c_256.png differ diff --git a/www/assets/images/items/research-alien-boosterfuel-c_64.png b/www/assets/images/items/research-alien-boosterfuel-c_64.png new file mode 100644 index 00000000..aa15e620 Binary files /dev/null and b/www/assets/images/items/research-alien-boosterfuel-c_64.png differ diff --git a/www/assets/images/items/research-alien-centralinventory-c_256.png b/www/assets/images/items/research-alien-centralinventory-c_256.png new file mode 100644 index 00000000..fc5fac06 Binary files /dev/null and b/www/assets/images/items/research-alien-centralinventory-c_256.png differ diff --git a/www/assets/images/items/research-alien-centralinventory-c_64.png b/www/assets/images/items/research-alien-centralinventory-c_64.png new file mode 100644 index 00000000..9592f647 Binary files /dev/null and b/www/assets/images/items/research-alien-centralinventory-c_64.png differ diff --git a/www/assets/images/items/research-alien-centralstackexpansion-01-c_256.png b/www/assets/images/items/research-alien-centralstackexpansion-01-c_256.png new file mode 100644 index 00000000..e74abda3 Binary files /dev/null and b/www/assets/images/items/research-alien-centralstackexpansion-01-c_256.png differ diff --git a/www/assets/images/items/research-alien-centralstackexpansion-01-c_64.png b/www/assets/images/items/research-alien-centralstackexpansion-01-c_64.png new file mode 100644 index 00000000..fc334962 Binary files /dev/null and b/www/assets/images/items/research-alien-centralstackexpansion-01-c_64.png differ diff --git a/www/assets/images/items/research-alien-centralstackexpansion-02-c_256.png b/www/assets/images/items/research-alien-centralstackexpansion-02-c_256.png new file mode 100644 index 00000000..e74abda3 Binary files /dev/null and b/www/assets/images/items/research-alien-centralstackexpansion-02-c_256.png differ diff --git a/www/assets/images/items/research-alien-centralstackexpansion-02-c_64.png b/www/assets/images/items/research-alien-centralstackexpansion-02-c_64.png new file mode 100644 index 00000000..fc334962 Binary files /dev/null and b/www/assets/images/items/research-alien-centralstackexpansion-02-c_64.png differ diff --git a/www/assets/images/items/research-alien-centralstackexpansion-03-c_256.png b/www/assets/images/items/research-alien-centralstackexpansion-03-c_256.png new file mode 100644 index 00000000..e74abda3 Binary files /dev/null and b/www/assets/images/items/research-alien-centralstackexpansion-03-c_256.png differ diff --git a/www/assets/images/items/research-alien-centralstackexpansion-03-c_64.png b/www/assets/images/items/research-alien-centralstackexpansion-03-c_64.png new file mode 100644 index 00000000..fc334962 Binary files /dev/null and b/www/assets/images/items/research-alien-centralstackexpansion-03-c_64.png differ diff --git a/www/assets/images/items/research-alien-centralstackexpansion-04-c_256.png b/www/assets/images/items/research-alien-centralstackexpansion-04-c_256.png new file mode 100644 index 00000000..e74abda3 Binary files /dev/null and b/www/assets/images/items/research-alien-centralstackexpansion-04-c_256.png differ diff --git a/www/assets/images/items/research-alien-centralstackexpansion-04-c_64.png b/www/assets/images/items/research-alien-centralstackexpansion-04-c_64.png new file mode 100644 index 00000000..fc334962 Binary files /dev/null and b/www/assets/images/items/research-alien-centralstackexpansion-04-c_64.png differ diff --git a/www/assets/images/items/research-alien-centralstorage-c_256.png b/www/assets/images/items/research-alien-centralstorage-c_256.png new file mode 100644 index 00000000..0a152cc6 Binary files /dev/null and b/www/assets/images/items/research-alien-centralstorage-c_256.png differ diff --git a/www/assets/images/items/research-alien-centralstorage-c_64.png b/www/assets/images/items/research-alien-centralstorage-c_64.png new file mode 100644 index 00000000..c40639d0 Binary files /dev/null and b/www/assets/images/items/research-alien-centralstorage-c_64.png differ diff --git a/www/assets/images/items/research-alien-centraluploadboost-01-c_256.png b/www/assets/images/items/research-alien-centraluploadboost-01-c_256.png new file mode 100644 index 00000000..321221ab Binary files /dev/null and b/www/assets/images/items/research-alien-centraluploadboost-01-c_256.png differ diff --git a/www/assets/images/items/research-alien-centraluploadboost-01-c_64.png b/www/assets/images/items/research-alien-centraluploadboost-01-c_64.png new file mode 100644 index 00000000..9204b70e Binary files /dev/null and b/www/assets/images/items/research-alien-centraluploadboost-01-c_64.png differ diff --git a/www/assets/images/items/research-alien-centraluploadboost-02-c_256.png b/www/assets/images/items/research-alien-centraluploadboost-02-c_256.png new file mode 100644 index 00000000..321221ab Binary files /dev/null and b/www/assets/images/items/research-alien-centraluploadboost-02-c_256.png differ diff --git a/www/assets/images/items/research-alien-centraluploadboost-02-c_64.png b/www/assets/images/items/research-alien-centraluploadboost-02-c_64.png new file mode 100644 index 00000000..9204b70e Binary files /dev/null and b/www/assets/images/items/research-alien-centraluploadboost-02-c_64.png differ diff --git a/www/assets/images/items/research-alien-centraluploadboost-03-c_256.png b/www/assets/images/items/research-alien-centraluploadboost-03-c_256.png new file mode 100644 index 00000000..321221ab Binary files /dev/null and b/www/assets/images/items/research-alien-centraluploadboost-03-c_256.png differ diff --git a/www/assets/images/items/research-alien-centraluploadboost-03-c_64.png b/www/assets/images/items/research-alien-centraluploadboost-03-c_64.png new file mode 100644 index 00000000..9204b70e Binary files /dev/null and b/www/assets/images/items/research-alien-centraluploadboost-03-c_64.png differ diff --git a/www/assets/images/items/research-alien-centraluploadboost-04-c_256.png b/www/assets/images/items/research-alien-centraluploadboost-04-c_256.png new file mode 100644 index 00000000..321221ab Binary files /dev/null and b/www/assets/images/items/research-alien-centraluploadboost-04-c_256.png differ diff --git a/www/assets/images/items/research-alien-centraluploadboost-04-c_64.png b/www/assets/images/items/research-alien-centraluploadboost-04-c_64.png new file mode 100644 index 00000000..9204b70e Binary files /dev/null and b/www/assets/images/items/research-alien-centraluploadboost-04-c_64.png differ diff --git a/www/assets/images/items/research-alien-mercersphere-c_256.png b/www/assets/images/items/research-alien-mercersphere-c_256.png new file mode 100644 index 00000000..ed677de0 Binary files /dev/null and b/www/assets/images/items/research-alien-mercersphere-c_256.png differ diff --git a/www/assets/images/items/research-alien-mercersphere-c_64.png b/www/assets/images/items/research-alien-mercersphere-c_64.png new file mode 100644 index 00000000..75350943 Binary files /dev/null and b/www/assets/images/items/research-alien-mercersphere-c_64.png differ diff --git a/www/assets/images/items/research-alien-powerbooster-c_256.png b/www/assets/images/items/research-alien-powerbooster-c_256.png new file mode 100644 index 00000000..11105cfe Binary files /dev/null and b/www/assets/images/items/research-alien-powerbooster-c_256.png differ diff --git a/www/assets/images/items/research-alien-powerbooster-c_64.png b/www/assets/images/items/research-alien-powerbooster-c_64.png new file mode 100644 index 00000000..a76359bf Binary files /dev/null and b/www/assets/images/items/research-alien-powerbooster-c_64.png differ diff --git a/www/assets/images/items/research-alien-productionbooster-c_256.png b/www/assets/images/items/research-alien-productionbooster-c_256.png new file mode 100644 index 00000000..d388ab7a Binary files /dev/null and b/www/assets/images/items/research-alien-productionbooster-c_256.png differ diff --git a/www/assets/images/items/research-alien-productionbooster-c_64.png b/www/assets/images/items/research-alien-productionbooster-c_64.png new file mode 100644 index 00000000..29713a0a Binary files /dev/null and b/www/assets/images/items/research-alien-productionbooster-c_64.png differ diff --git a/www/assets/images/items/research-alien-sam-c_256.png b/www/assets/images/items/research-alien-sam-c_256.png new file mode 100644 index 00000000..1d1911e0 Binary files /dev/null and b/www/assets/images/items/research-alien-sam-c_256.png differ diff --git a/www/assets/images/items/research-alien-sam-c_64.png b/www/assets/images/items/research-alien-sam-c_64.png new file mode 100644 index 00000000..68040a7f Binary files /dev/null and b/www/assets/images/items/research-alien-sam-c_64.png differ diff --git a/www/assets/images/items/research-alien-samfluctuator-c_256.png b/www/assets/images/items/research-alien-samfluctuator-c_256.png new file mode 100644 index 00000000..e9014a0a Binary files /dev/null and b/www/assets/images/items/research-alien-samfluctuator-c_256.png differ diff --git a/www/assets/images/items/research-alien-samfluctuator-c_64.png b/www/assets/images/items/research-alien-samfluctuator-c_64.png new file mode 100644 index 00000000..976299c8 Binary files /dev/null and b/www/assets/images/items/research-alien-samfluctuator-c_64.png differ diff --git a/www/assets/images/items/research-alien-somersloop-c_256.png b/www/assets/images/items/research-alien-somersloop-c_256.png new file mode 100644 index 00000000..f359a6d9 Binary files /dev/null and b/www/assets/images/items/research-alien-somersloop-c_256.png differ diff --git a/www/assets/images/items/research-alien-somersloop-c_64.png b/www/assets/images/items/research-alien-somersloop-c_64.png new file mode 100644 index 00000000..15ff3447 Binary files /dev/null and b/www/assets/images/items/research-alien-somersloop-c_64.png differ diff --git a/www/assets/images/items/research-ao-dnacapsule-c_256.png b/www/assets/images/items/research-ao-dnacapsule-c_256.png new file mode 100644 index 00000000..fb995402 Binary files /dev/null and b/www/assets/images/items/research-ao-dnacapsule-c_256.png differ diff --git a/www/assets/images/items/research-ao-dnacapsule-c_64.png b/www/assets/images/items/research-ao-dnacapsule-c_64.png new file mode 100644 index 00000000..0c5cf9d2 Binary files /dev/null and b/www/assets/images/items/research-ao-dnacapsule-c_64.png differ diff --git a/www/assets/images/items/research-ao-hatcher-c_256.png b/www/assets/images/items/research-ao-hatcher-c_256.png new file mode 100644 index 00000000..1bc2f447 Binary files /dev/null and b/www/assets/images/items/research-ao-hatcher-c_256.png differ diff --git a/www/assets/images/items/research-ao-hatcher-c_64.png b/www/assets/images/items/research-ao-hatcher-c_64.png new file mode 100644 index 00000000..25e129da Binary files /dev/null and b/www/assets/images/items/research-ao-hatcher-c_64.png differ diff --git a/www/assets/images/items/research-ao-pre-rebar-c_256.png b/www/assets/images/items/research-ao-pre-rebar-c_256.png new file mode 100644 index 00000000..61d731ba Binary files /dev/null and b/www/assets/images/items/research-ao-pre-rebar-c_256.png differ diff --git a/www/assets/images/items/research-ao-pre-rebar-c_64.png b/www/assets/images/items/research-ao-pre-rebar-c_64.png new file mode 100644 index 00000000..a5530bf4 Binary files /dev/null and b/www/assets/images/items/research-ao-pre-rebar-c_64.png differ diff --git a/www/assets/images/items/research-ao-stinger-c_256.png b/www/assets/images/items/research-ao-stinger-c_256.png new file mode 100644 index 00000000..e2f40ce4 Binary files /dev/null and b/www/assets/images/items/research-ao-stinger-c_256.png differ diff --git a/www/assets/images/items/research-ao-stinger-c_64.png b/www/assets/images/items/research-ao-stinger-c_64.png new file mode 100644 index 00000000..35721fea Binary files /dev/null and b/www/assets/images/items/research-ao-stinger-c_64.png differ diff --git a/www/assets/images/items/research-aorganisms-2-c_256.png b/www/assets/images/items/research-aorganisms-2-c_256.png new file mode 100644 index 00000000..a5dd88d3 Binary files /dev/null and b/www/assets/images/items/research-aorganisms-2-c_256.png differ diff --git a/www/assets/images/items/research-aorganisms-2-c_64.png b/www/assets/images/items/research-aorganisms-2-c_64.png new file mode 100644 index 00000000..761f58d9 Binary files /dev/null and b/www/assets/images/items/research-aorganisms-2-c_64.png differ diff --git a/www/assets/images/items/research-aorgans-0-c_256.png b/www/assets/images/items/research-aorgans-0-c_256.png new file mode 100644 index 00000000..dea8bfcf Binary files /dev/null and b/www/assets/images/items/research-aorgans-0-c_256.png differ diff --git a/www/assets/images/items/research-aorgans-0-c_64.png b/www/assets/images/items/research-aorgans-0-c_64.png new file mode 100644 index 00000000..6e5f7355 Binary files /dev/null and b/www/assets/images/items/research-aorgans-0-c_64.png differ diff --git a/www/assets/images/items/research-aorgans-2-c_256.png b/www/assets/images/items/research-aorgans-2-c_256.png new file mode 100644 index 00000000..73559d42 Binary files /dev/null and b/www/assets/images/items/research-aorgans-2-c_256.png differ diff --git a/www/assets/images/items/research-aorgans-2-c_64.png b/www/assets/images/items/research-aorgans-2-c_64.png new file mode 100644 index 00000000..58bbfa03 Binary files /dev/null and b/www/assets/images/items/research-aorgans-2-c_64.png differ diff --git a/www/assets/images/items/research-aorgans-3-c_256.png b/www/assets/images/items/research-aorgans-3-c_256.png new file mode 100644 index 00000000..daf7654d Binary files /dev/null and b/www/assets/images/items/research-aorgans-3-c_256.png differ diff --git a/www/assets/images/items/research-aorgans-3-c_64.png b/www/assets/images/items/research-aorgans-3-c_64.png new file mode 100644 index 00000000..a65fb17e Binary files /dev/null and b/www/assets/images/items/research-aorgans-3-c_64.png differ diff --git a/www/assets/images/items/research-caterium-0-c_256.png b/www/assets/images/items/research-caterium-0-c_256.png new file mode 100644 index 00000000..93ae9c1b Binary files /dev/null and b/www/assets/images/items/research-caterium-0-c_256.png differ diff --git a/www/assets/images/items/research-caterium-0-c_64.png b/www/assets/images/items/research-caterium-0-c_64.png new file mode 100644 index 00000000..45921122 Binary files /dev/null and b/www/assets/images/items/research-caterium-0-c_64.png differ diff --git a/www/assets/images/items/research-caterium-1-c_256.png b/www/assets/images/items/research-caterium-1-c_256.png new file mode 100644 index 00000000..2b6b2754 Binary files /dev/null and b/www/assets/images/items/research-caterium-1-c_256.png differ diff --git a/www/assets/images/items/research-caterium-1-c_64.png b/www/assets/images/items/research-caterium-1-c_64.png new file mode 100644 index 00000000..bfb552c2 Binary files /dev/null and b/www/assets/images/items/research-caterium-1-c_64.png differ diff --git a/www/assets/images/items/research-caterium-2-1-c_256.png b/www/assets/images/items/research-caterium-2-1-c_256.png new file mode 100644 index 00000000..4baeea2f Binary files /dev/null and b/www/assets/images/items/research-caterium-2-1-c_256.png differ diff --git a/www/assets/images/items/research-caterium-2-1-c_64.png b/www/assets/images/items/research-caterium-2-1-c_64.png new file mode 100644 index 00000000..5c3725ee Binary files /dev/null and b/www/assets/images/items/research-caterium-2-1-c_64.png differ diff --git a/www/assets/images/items/research-caterium-2-c_256.png b/www/assets/images/items/research-caterium-2-c_256.png new file mode 100644 index 00000000..d9ec1a94 Binary files /dev/null and b/www/assets/images/items/research-caterium-2-c_256.png differ diff --git a/www/assets/images/items/research-caterium-2-c_64.png b/www/assets/images/items/research-caterium-2-c_64.png new file mode 100644 index 00000000..52317c83 Binary files /dev/null and b/www/assets/images/items/research-caterium-2-c_64.png differ diff --git a/www/assets/images/items/research-caterium-3-1-c_256.png b/www/assets/images/items/research-caterium-3-1-c_256.png new file mode 100644 index 00000000..daf7654d Binary files /dev/null and b/www/assets/images/items/research-caterium-3-1-c_256.png differ diff --git a/www/assets/images/items/research-caterium-3-1-c_64.png b/www/assets/images/items/research-caterium-3-1-c_64.png new file mode 100644 index 00000000..a65fb17e Binary files /dev/null and b/www/assets/images/items/research-caterium-3-1-c_64.png differ diff --git a/www/assets/images/items/research-caterium-3-2-c_256.png b/www/assets/images/items/research-caterium-3-2-c_256.png new file mode 100644 index 00000000..d08d3696 Binary files /dev/null and b/www/assets/images/items/research-caterium-3-2-c_256.png differ diff --git a/www/assets/images/items/research-caterium-3-2-c_64.png b/www/assets/images/items/research-caterium-3-2-c_64.png new file mode 100644 index 00000000..63e0df39 Binary files /dev/null and b/www/assets/images/items/research-caterium-3-2-c_64.png differ diff --git a/www/assets/images/items/research-caterium-3-c_256.png b/www/assets/images/items/research-caterium-3-c_256.png new file mode 100644 index 00000000..0f37d25f Binary files /dev/null and b/www/assets/images/items/research-caterium-3-c_256.png differ diff --git a/www/assets/images/items/research-caterium-3-c_64.png b/www/assets/images/items/research-caterium-3-c_64.png new file mode 100644 index 00000000..243ebc3e Binary files /dev/null and b/www/assets/images/items/research-caterium-3-c_64.png differ diff --git a/www/assets/images/items/research-caterium-4-1-1-c_256.png b/www/assets/images/items/research-caterium-4-1-1-c_256.png new file mode 100644 index 00000000..44f50764 Binary files /dev/null and b/www/assets/images/items/research-caterium-4-1-1-c_256.png differ diff --git a/www/assets/images/items/research-caterium-4-1-1-c_64.png b/www/assets/images/items/research-caterium-4-1-1-c_64.png new file mode 100644 index 00000000..dbfe6a1f Binary files /dev/null and b/www/assets/images/items/research-caterium-4-1-1-c_64.png differ diff --git a/www/assets/images/items/research-caterium-4-1-2-c_256.png b/www/assets/images/items/research-caterium-4-1-2-c_256.png new file mode 100644 index 00000000..af9c242c Binary files /dev/null and b/www/assets/images/items/research-caterium-4-1-2-c_256.png differ diff --git a/www/assets/images/items/research-caterium-4-1-2-c_64.png b/www/assets/images/items/research-caterium-4-1-2-c_64.png new file mode 100644 index 00000000..abdd516b Binary files /dev/null and b/www/assets/images/items/research-caterium-4-1-2-c_64.png differ diff --git a/www/assets/images/items/research-caterium-4-1-c_256.png b/www/assets/images/items/research-caterium-4-1-c_256.png new file mode 100644 index 00000000..2d409034 Binary files /dev/null and b/www/assets/images/items/research-caterium-4-1-c_256.png differ diff --git a/www/assets/images/items/research-caterium-4-1-c_64.png b/www/assets/images/items/research-caterium-4-1-c_64.png new file mode 100644 index 00000000..a460f631 Binary files /dev/null and b/www/assets/images/items/research-caterium-4-1-c_64.png differ diff --git a/www/assets/images/items/research-caterium-4-2-c_256.png b/www/assets/images/items/research-caterium-4-2-c_256.png new file mode 100644 index 00000000..1f94d46d Binary files /dev/null and b/www/assets/images/items/research-caterium-4-2-c_256.png differ diff --git a/www/assets/images/items/research-caterium-4-2-c_64.png b/www/assets/images/items/research-caterium-4-2-c_64.png new file mode 100644 index 00000000..3454d7d7 Binary files /dev/null and b/www/assets/images/items/research-caterium-4-2-c_64.png differ diff --git a/www/assets/images/items/research-caterium-4-3-c_256.png b/www/assets/images/items/research-caterium-4-3-c_256.png new file mode 100644 index 00000000..e8ddfffd Binary files /dev/null and b/www/assets/images/items/research-caterium-4-3-c_256.png differ diff --git a/www/assets/images/items/research-caterium-4-3-c_64.png b/www/assets/images/items/research-caterium-4-3-c_64.png new file mode 100644 index 00000000..e0231742 Binary files /dev/null and b/www/assets/images/items/research-caterium-4-3-c_64.png differ diff --git a/www/assets/images/items/research-caterium-5-1-c_256.png b/www/assets/images/items/research-caterium-5-1-c_256.png new file mode 100644 index 00000000..596793eb Binary files /dev/null and b/www/assets/images/items/research-caterium-5-1-c_256.png differ diff --git a/www/assets/images/items/research-caterium-5-1-c_64.png b/www/assets/images/items/research-caterium-5-1-c_64.png new file mode 100644 index 00000000..48199f25 Binary files /dev/null and b/www/assets/images/items/research-caterium-5-1-c_64.png differ diff --git a/www/assets/images/items/research-caterium-5-c_256.png b/www/assets/images/items/research-caterium-5-c_256.png new file mode 100644 index 00000000..4f7accf6 Binary files /dev/null and b/www/assets/images/items/research-caterium-5-c_256.png differ diff --git a/www/assets/images/items/research-caterium-5-c_64.png b/www/assets/images/items/research-caterium-5-c_64.png new file mode 100644 index 00000000..0d2569b6 Binary files /dev/null and b/www/assets/images/items/research-caterium-5-c_64.png differ diff --git a/www/assets/images/items/research-caterium-6-2-c_256.png b/www/assets/images/items/research-caterium-6-2-c_256.png new file mode 100644 index 00000000..4cc33763 Binary files /dev/null and b/www/assets/images/items/research-caterium-6-2-c_256.png differ diff --git a/www/assets/images/items/research-caterium-6-2-c_64.png b/www/assets/images/items/research-caterium-6-2-c_64.png new file mode 100644 index 00000000..2e081528 Binary files /dev/null and b/www/assets/images/items/research-caterium-6-2-c_64.png differ diff --git a/www/assets/images/items/research-caterium-6-3-c_256.png b/www/assets/images/items/research-caterium-6-3-c_256.png new file mode 100644 index 00000000..370fd92f Binary files /dev/null and b/www/assets/images/items/research-caterium-6-3-c_256.png differ diff --git a/www/assets/images/items/research-caterium-6-3-c_64.png b/www/assets/images/items/research-caterium-6-3-c_64.png new file mode 100644 index 00000000..2203c072 Binary files /dev/null and b/www/assets/images/items/research-caterium-6-3-c_64.png differ diff --git a/www/assets/images/items/research-caterium-7-1-c_256.png b/www/assets/images/items/research-caterium-7-1-c_256.png new file mode 100644 index 00000000..f0b914f3 Binary files /dev/null and b/www/assets/images/items/research-caterium-7-1-c_256.png differ diff --git a/www/assets/images/items/research-caterium-7-1-c_64.png b/www/assets/images/items/research-caterium-7-1-c_64.png new file mode 100644 index 00000000..aa76bdfa Binary files /dev/null and b/www/assets/images/items/research-caterium-7-1-c_64.png differ diff --git a/www/assets/images/items/research-caterium-7-2-c_256.png b/www/assets/images/items/research-caterium-7-2-c_256.png new file mode 100644 index 00000000..98aedc91 Binary files /dev/null and b/www/assets/images/items/research-caterium-7-2-c_256.png differ diff --git a/www/assets/images/items/research-caterium-7-2-c_64.png b/www/assets/images/items/research-caterium-7-2-c_64.png new file mode 100644 index 00000000..467b3df2 Binary files /dev/null and b/www/assets/images/items/research-caterium-7-2-c_64.png differ diff --git a/www/assets/images/items/research-harddrive-0-c_256.png b/www/assets/images/items/research-harddrive-0-c_256.png new file mode 100644 index 00000000..0b765da5 Binary files /dev/null and b/www/assets/images/items/research-harddrive-0-c_256.png differ diff --git a/www/assets/images/items/research-harddrive-0-c_64.png b/www/assets/images/items/research-harddrive-0-c_64.png new file mode 100644 index 00000000..c04b7cef Binary files /dev/null and b/www/assets/images/items/research-harddrive-0-c_64.png differ diff --git a/www/assets/images/items/research-mycelia-1-c_256.png b/www/assets/images/items/research-mycelia-1-c_256.png new file mode 100644 index 00000000..aa72cd5f Binary files /dev/null and b/www/assets/images/items/research-mycelia-1-c_256.png differ diff --git a/www/assets/images/items/research-mycelia-1-c_64.png b/www/assets/images/items/research-mycelia-1-c_64.png new file mode 100644 index 00000000..9f95a0bc Binary files /dev/null and b/www/assets/images/items/research-mycelia-1-c_64.png differ diff --git a/www/assets/images/items/research-mycelia-2-1-c_256.png b/www/assets/images/items/research-mycelia-2-1-c_256.png new file mode 100644 index 00000000..27095b12 Binary files /dev/null and b/www/assets/images/items/research-mycelia-2-1-c_256.png differ diff --git a/www/assets/images/items/research-mycelia-2-1-c_64.png b/www/assets/images/items/research-mycelia-2-1-c_64.png new file mode 100644 index 00000000..a4558872 Binary files /dev/null and b/www/assets/images/items/research-mycelia-2-1-c_64.png differ diff --git a/www/assets/images/items/research-mycelia-2-c_256.png b/www/assets/images/items/research-mycelia-2-c_256.png new file mode 100644 index 00000000..27095b12 Binary files /dev/null and b/www/assets/images/items/research-mycelia-2-c_256.png differ diff --git a/www/assets/images/items/research-mycelia-2-c_64.png b/www/assets/images/items/research-mycelia-2-c_64.png new file mode 100644 index 00000000..a4558872 Binary files /dev/null and b/www/assets/images/items/research-mycelia-2-c_64.png differ diff --git a/www/assets/images/items/research-mycelia-3-c_256.png b/www/assets/images/items/research-mycelia-3-c_256.png new file mode 100644 index 00000000..c7f970e4 Binary files /dev/null and b/www/assets/images/items/research-mycelia-3-c_256.png differ diff --git a/www/assets/images/items/research-mycelia-3-c_64.png b/www/assets/images/items/research-mycelia-3-c_64.png new file mode 100644 index 00000000..b2543f4c Binary files /dev/null and b/www/assets/images/items/research-mycelia-3-c_64.png differ diff --git a/www/assets/images/items/research-mycelia-4-c_256.png b/www/assets/images/items/research-mycelia-4-c_256.png new file mode 100644 index 00000000..61d731ba Binary files /dev/null and b/www/assets/images/items/research-mycelia-4-c_256.png differ diff --git a/www/assets/images/items/research-mycelia-4-c_64.png b/www/assets/images/items/research-mycelia-4-c_64.png new file mode 100644 index 00000000..a5530bf4 Binary files /dev/null and b/www/assets/images/items/research-mycelia-4-c_64.png differ diff --git a/www/assets/images/items/research-mycelia-5-c_256.png b/www/assets/images/items/research-mycelia-5-c_256.png new file mode 100644 index 00000000..73559d42 Binary files /dev/null and b/www/assets/images/items/research-mycelia-5-c_256.png differ diff --git a/www/assets/images/items/research-mycelia-5-c_64.png b/www/assets/images/items/research-mycelia-5-c_64.png new file mode 100644 index 00000000..58bbfa03 Binary files /dev/null and b/www/assets/images/items/research-mycelia-5-c_64.png differ diff --git a/www/assets/images/items/research-mycelia-6-c_256.png b/www/assets/images/items/research-mycelia-6-c_256.png new file mode 100644 index 00000000..73559d42 Binary files /dev/null and b/www/assets/images/items/research-mycelia-6-c_256.png differ diff --git a/www/assets/images/items/research-mycelia-6-c_64.png b/www/assets/images/items/research-mycelia-6-c_64.png new file mode 100644 index 00000000..58bbfa03 Binary files /dev/null and b/www/assets/images/items/research-mycelia-6-c_64.png differ diff --git a/www/assets/images/items/research-mycelia-7-c_256.png b/www/assets/images/items/research-mycelia-7-c_256.png new file mode 100644 index 00000000..2a272952 Binary files /dev/null and b/www/assets/images/items/research-mycelia-7-c_256.png differ diff --git a/www/assets/images/items/research-mycelia-7-c_64.png b/www/assets/images/items/research-mycelia-7-c_64.png new file mode 100644 index 00000000..11b7fbdc Binary files /dev/null and b/www/assets/images/items/research-mycelia-7-c_64.png differ diff --git a/www/assets/images/items/research-mycelia-8-c_256.png b/www/assets/images/items/research-mycelia-8-c_256.png new file mode 100644 index 00000000..7a1f004a Binary files /dev/null and b/www/assets/images/items/research-mycelia-8-c_256.png differ diff --git a/www/assets/images/items/research-mycelia-8-c_64.png b/www/assets/images/items/research-mycelia-8-c_64.png new file mode 100644 index 00000000..c70a08ff Binary files /dev/null and b/www/assets/images/items/research-mycelia-8-c_64.png differ diff --git a/www/assets/images/items/research-mycelia-gasmask-c_256.png b/www/assets/images/items/research-mycelia-gasmask-c_256.png new file mode 100644 index 00000000..3209174c Binary files /dev/null and b/www/assets/images/items/research-mycelia-gasmask-c_256.png differ diff --git a/www/assets/images/items/research-mycelia-gasmask-c_64.png b/www/assets/images/items/research-mycelia-gasmask-c_64.png new file mode 100644 index 00000000..8798db08 Binary files /dev/null and b/www/assets/images/items/research-mycelia-gasmask-c_64.png differ diff --git a/www/assets/images/items/research-nutrients-0-c_256.png b/www/assets/images/items/research-nutrients-0-c_256.png new file mode 100644 index 00000000..ea9afd1f Binary files /dev/null and b/www/assets/images/items/research-nutrients-0-c_256.png differ diff --git a/www/assets/images/items/research-nutrients-0-c_64.png b/www/assets/images/items/research-nutrients-0-c_64.png new file mode 100644 index 00000000..f288d2c4 Binary files /dev/null and b/www/assets/images/items/research-nutrients-0-c_64.png differ diff --git a/www/assets/images/items/research-nutrients-1-c_256.png b/www/assets/images/items/research-nutrients-1-c_256.png new file mode 100644 index 00000000..fd9ea4a3 Binary files /dev/null and b/www/assets/images/items/research-nutrients-1-c_256.png differ diff --git a/www/assets/images/items/research-nutrients-1-c_64.png b/www/assets/images/items/research-nutrients-1-c_64.png new file mode 100644 index 00000000..d8d44e24 Binary files /dev/null and b/www/assets/images/items/research-nutrients-1-c_64.png differ diff --git a/www/assets/images/items/research-nutrients-2-c_256.png b/www/assets/images/items/research-nutrients-2-c_256.png new file mode 100644 index 00000000..b1285565 Binary files /dev/null and b/www/assets/images/items/research-nutrients-2-c_256.png differ diff --git a/www/assets/images/items/research-nutrients-2-c_64.png b/www/assets/images/items/research-nutrients-2-c_64.png new file mode 100644 index 00000000..e5e23249 Binary files /dev/null and b/www/assets/images/items/research-nutrients-2-c_64.png differ diff --git a/www/assets/images/items/research-nutrients-3-c_256.png b/www/assets/images/items/research-nutrients-3-c_256.png new file mode 100644 index 00000000..0f37d25f Binary files /dev/null and b/www/assets/images/items/research-nutrients-3-c_256.png differ diff --git a/www/assets/images/items/research-nutrients-3-c_64.png b/www/assets/images/items/research-nutrients-3-c_64.png new file mode 100644 index 00000000..243ebc3e Binary files /dev/null and b/www/assets/images/items/research-nutrients-3-c_64.png differ diff --git a/www/assets/images/items/research-nutrients-4-c_256.png b/www/assets/images/items/research-nutrients-4-c_256.png new file mode 100644 index 00000000..73559d42 Binary files /dev/null and b/www/assets/images/items/research-nutrients-4-c_256.png differ diff --git a/www/assets/images/items/research-nutrients-4-c_64.png b/www/assets/images/items/research-nutrients-4-c_64.png new file mode 100644 index 00000000..58bbfa03 Binary files /dev/null and b/www/assets/images/items/research-nutrients-4-c_64.png differ diff --git a/www/assets/images/items/research-powerslugs-1-c_256.png b/www/assets/images/items/research-powerslugs-1-c_256.png new file mode 100644 index 00000000..14459045 Binary files /dev/null and b/www/assets/images/items/research-powerslugs-1-c_256.png differ diff --git a/www/assets/images/items/research-powerslugs-1-c_64.png b/www/assets/images/items/research-powerslugs-1-c_64.png new file mode 100644 index 00000000..61b4e056 Binary files /dev/null and b/www/assets/images/items/research-powerslugs-1-c_64.png differ diff --git a/www/assets/images/items/research-powerslugs-2-c_256.png b/www/assets/images/items/research-powerslugs-2-c_256.png new file mode 100644 index 00000000..67e546db Binary files /dev/null and b/www/assets/images/items/research-powerslugs-2-c_256.png differ diff --git a/www/assets/images/items/research-powerslugs-2-c_64.png b/www/assets/images/items/research-powerslugs-2-c_64.png new file mode 100644 index 00000000..31969593 Binary files /dev/null and b/www/assets/images/items/research-powerslugs-2-c_64.png differ diff --git a/www/assets/images/items/research-powerslugs-3-c_256.png b/www/assets/images/items/research-powerslugs-3-c_256.png new file mode 100644 index 00000000..14459045 Binary files /dev/null and b/www/assets/images/items/research-powerslugs-3-c_256.png differ diff --git a/www/assets/images/items/research-powerslugs-3-c_64.png b/www/assets/images/items/research-powerslugs-3-c_64.png new file mode 100644 index 00000000..61b4e056 Binary files /dev/null and b/www/assets/images/items/research-powerslugs-3-c_64.png differ diff --git a/www/assets/images/items/research-powerslugs-4-c_256.png b/www/assets/images/items/research-powerslugs-4-c_256.png new file mode 100644 index 00000000..4a29afa2 Binary files /dev/null and b/www/assets/images/items/research-powerslugs-4-c_256.png differ diff --git a/www/assets/images/items/research-powerslugs-4-c_64.png b/www/assets/images/items/research-powerslugs-4-c_64.png new file mode 100644 index 00000000..e1b194a1 Binary files /dev/null and b/www/assets/images/items/research-powerslugs-4-c_64.png differ diff --git a/www/assets/images/items/research-powerslugs-5-c_256.png b/www/assets/images/items/research-powerslugs-5-c_256.png new file mode 100644 index 00000000..01fbc66c Binary files /dev/null and b/www/assets/images/items/research-powerslugs-5-c_256.png differ diff --git a/www/assets/images/items/research-powerslugs-5-c_64.png b/www/assets/images/items/research-powerslugs-5-c_64.png new file mode 100644 index 00000000..987162a1 Binary files /dev/null and b/www/assets/images/items/research-powerslugs-5-c_64.png differ diff --git a/www/assets/images/items/research-powerslugs-6-c_256.png b/www/assets/images/items/research-powerslugs-6-c_256.png new file mode 100644 index 00000000..96dc2961 Binary files /dev/null and b/www/assets/images/items/research-powerslugs-6-c_256.png differ diff --git a/www/assets/images/items/research-powerslugs-6-c_64.png b/www/assets/images/items/research-powerslugs-6-c_64.png new file mode 100644 index 00000000..863705c8 Binary files /dev/null and b/www/assets/images/items/research-powerslugs-6-c_64.png differ diff --git a/www/assets/images/items/research-quartz-0-c_256.png b/www/assets/images/items/research-quartz-0-c_256.png new file mode 100644 index 00000000..01c9a976 Binary files /dev/null and b/www/assets/images/items/research-quartz-0-c_256.png differ diff --git a/www/assets/images/items/research-quartz-0-c_64.png b/www/assets/images/items/research-quartz-0-c_64.png new file mode 100644 index 00000000..1f0e8d4f Binary files /dev/null and b/www/assets/images/items/research-quartz-0-c_64.png differ diff --git a/www/assets/images/items/research-quartz-1-1-c_256.png b/www/assets/images/items/research-quartz-1-1-c_256.png new file mode 100644 index 00000000..c798dd60 Binary files /dev/null and b/www/assets/images/items/research-quartz-1-1-c_256.png differ diff --git a/www/assets/images/items/research-quartz-1-1-c_64.png b/www/assets/images/items/research-quartz-1-1-c_64.png new file mode 100644 index 00000000..d3dd74b7 Binary files /dev/null and b/www/assets/images/items/research-quartz-1-1-c_64.png differ diff --git a/www/assets/images/items/research-quartz-1-2-c_256.png b/www/assets/images/items/research-quartz-1-2-c_256.png new file mode 100644 index 00000000..5fbfd166 Binary files /dev/null and b/www/assets/images/items/research-quartz-1-2-c_256.png differ diff --git a/www/assets/images/items/research-quartz-1-2-c_64.png b/www/assets/images/items/research-quartz-1-2-c_64.png new file mode 100644 index 00000000..cca9ff04 Binary files /dev/null and b/www/assets/images/items/research-quartz-1-2-c_64.png differ diff --git a/www/assets/images/items/research-quartz-2-1-c_256.png b/www/assets/images/items/research-quartz-2-1-c_256.png new file mode 100644 index 00000000..479d729b Binary files /dev/null and b/www/assets/images/items/research-quartz-2-1-c_256.png differ diff --git a/www/assets/images/items/research-quartz-2-1-c_64.png b/www/assets/images/items/research-quartz-2-1-c_64.png new file mode 100644 index 00000000..f9fd07f4 Binary files /dev/null and b/www/assets/images/items/research-quartz-2-1-c_64.png differ diff --git a/www/assets/images/items/research-quartz-2-c_256.png b/www/assets/images/items/research-quartz-2-c_256.png new file mode 100644 index 00000000..6fa3c5d1 Binary files /dev/null and b/www/assets/images/items/research-quartz-2-c_256.png differ diff --git a/www/assets/images/items/research-quartz-2-c_64.png b/www/assets/images/items/research-quartz-2-c_64.png new file mode 100644 index 00000000..778cc62a Binary files /dev/null and b/www/assets/images/items/research-quartz-2-c_64.png differ diff --git a/www/assets/images/items/research-quartz-3-1-c_256.png b/www/assets/images/items/research-quartz-3-1-c_256.png new file mode 100644 index 00000000..59504876 Binary files /dev/null and b/www/assets/images/items/research-quartz-3-1-c_256.png differ diff --git a/www/assets/images/items/research-quartz-3-1-c_64.png b/www/assets/images/items/research-quartz-3-1-c_64.png new file mode 100644 index 00000000..72b3ab8b Binary files /dev/null and b/www/assets/images/items/research-quartz-3-1-c_64.png differ diff --git a/www/assets/images/items/research-quartz-3-4-c_256.png b/www/assets/images/items/research-quartz-3-4-c_256.png new file mode 100644 index 00000000..7c06d3bc Binary files /dev/null and b/www/assets/images/items/research-quartz-3-4-c_256.png differ diff --git a/www/assets/images/items/research-quartz-3-4-c_64.png b/www/assets/images/items/research-quartz-3-4-c_64.png new file mode 100644 index 00000000..50428e6b Binary files /dev/null and b/www/assets/images/items/research-quartz-3-4-c_64.png differ diff --git a/www/assets/images/items/research-quartz-3-c_256.png b/www/assets/images/items/research-quartz-3-c_256.png new file mode 100644 index 00000000..61d731ba Binary files /dev/null and b/www/assets/images/items/research-quartz-3-c_256.png differ diff --git a/www/assets/images/items/research-quartz-3-c_64.png b/www/assets/images/items/research-quartz-3-c_64.png new file mode 100644 index 00000000..a5530bf4 Binary files /dev/null and b/www/assets/images/items/research-quartz-3-c_64.png differ diff --git a/www/assets/images/items/research-quartz-4-1-c_256.png b/www/assets/images/items/research-quartz-4-1-c_256.png new file mode 100644 index 00000000..382ca932 Binary files /dev/null and b/www/assets/images/items/research-quartz-4-1-c_256.png differ diff --git a/www/assets/images/items/research-quartz-4-1-c_64.png b/www/assets/images/items/research-quartz-4-1-c_64.png new file mode 100644 index 00000000..f571abb4 Binary files /dev/null and b/www/assets/images/items/research-quartz-4-1-c_64.png differ diff --git a/www/assets/images/items/research-quartz-4-c_256.png b/www/assets/images/items/research-quartz-4-c_256.png new file mode 100644 index 00000000..87d8ea7b Binary files /dev/null and b/www/assets/images/items/research-quartz-4-c_256.png differ diff --git a/www/assets/images/items/research-quartz-4-c_64.png b/www/assets/images/items/research-quartz-4-c_64.png new file mode 100644 index 00000000..89cb39b1 Binary files /dev/null and b/www/assets/images/items/research-quartz-4-c_64.png differ diff --git a/www/assets/images/items/research-sulfur-0-c_256.png b/www/assets/images/items/research-sulfur-0-c_256.png new file mode 100644 index 00000000..2891170d Binary files /dev/null and b/www/assets/images/items/research-sulfur-0-c_256.png differ diff --git a/www/assets/images/items/research-sulfur-0-c_64.png b/www/assets/images/items/research-sulfur-0-c_64.png new file mode 100644 index 00000000..8e38cd2b Binary files /dev/null and b/www/assets/images/items/research-sulfur-0-c_64.png differ diff --git a/www/assets/images/items/research-sulfur-1-c_256.png b/www/assets/images/items/research-sulfur-1-c_256.png new file mode 100644 index 00000000..dbc64fc9 Binary files /dev/null and b/www/assets/images/items/research-sulfur-1-c_256.png differ diff --git a/www/assets/images/items/research-sulfur-1-c_64.png b/www/assets/images/items/research-sulfur-1-c_64.png new file mode 100644 index 00000000..0b5fc434 Binary files /dev/null and b/www/assets/images/items/research-sulfur-1-c_64.png differ diff --git a/www/assets/images/items/research-sulfur-2-c_256.png b/www/assets/images/items/research-sulfur-2-c_256.png new file mode 100644 index 00000000..61d731ba Binary files /dev/null and b/www/assets/images/items/research-sulfur-2-c_256.png differ diff --git a/www/assets/images/items/research-sulfur-2-c_64.png b/www/assets/images/items/research-sulfur-2-c_64.png new file mode 100644 index 00000000..a5530bf4 Binary files /dev/null and b/www/assets/images/items/research-sulfur-2-c_64.png differ diff --git a/www/assets/images/items/research-sulfur-3-1-c_256.png b/www/assets/images/items/research-sulfur-3-1-c_256.png new file mode 100644 index 00000000..afc028d1 Binary files /dev/null and b/www/assets/images/items/research-sulfur-3-1-c_256.png differ diff --git a/www/assets/images/items/research-sulfur-3-1-c_64.png b/www/assets/images/items/research-sulfur-3-1-c_64.png new file mode 100644 index 00000000..4f8a51c7 Binary files /dev/null and b/www/assets/images/items/research-sulfur-3-1-c_64.png differ diff --git a/www/assets/images/items/research-sulfur-3-c_256.png b/www/assets/images/items/research-sulfur-3-c_256.png new file mode 100644 index 00000000..d770e36e Binary files /dev/null and b/www/assets/images/items/research-sulfur-3-c_256.png differ diff --git a/www/assets/images/items/research-sulfur-3-c_64.png b/www/assets/images/items/research-sulfur-3-c_64.png new file mode 100644 index 00000000..90a7e353 Binary files /dev/null and b/www/assets/images/items/research-sulfur-3-c_64.png differ diff --git a/www/assets/images/items/research-sulfur-4-1-c_256.png b/www/assets/images/items/research-sulfur-4-1-c_256.png new file mode 100644 index 00000000..6379d8a3 Binary files /dev/null and b/www/assets/images/items/research-sulfur-4-1-c_256.png differ diff --git a/www/assets/images/items/research-sulfur-4-1-c_64.png b/www/assets/images/items/research-sulfur-4-1-c_64.png new file mode 100644 index 00000000..ffe9e79c Binary files /dev/null and b/www/assets/images/items/research-sulfur-4-1-c_64.png differ diff --git a/www/assets/images/items/research-sulfur-4-2-c_256.png b/www/assets/images/items/research-sulfur-4-2-c_256.png new file mode 100644 index 00000000..4fd64c99 Binary files /dev/null and b/www/assets/images/items/research-sulfur-4-2-c_256.png differ diff --git a/www/assets/images/items/research-sulfur-4-2-c_64.png b/www/assets/images/items/research-sulfur-4-2-c_64.png new file mode 100644 index 00000000..e5f3526d Binary files /dev/null and b/www/assets/images/items/research-sulfur-4-2-c_64.png differ diff --git a/www/assets/images/items/research-sulfur-4-c_256.png b/www/assets/images/items/research-sulfur-4-c_256.png new file mode 100644 index 00000000..c6ed87d5 Binary files /dev/null and b/www/assets/images/items/research-sulfur-4-c_256.png differ diff --git a/www/assets/images/items/research-sulfur-4-c_64.png b/www/assets/images/items/research-sulfur-4-c_64.png new file mode 100644 index 00000000..0362f5d7 Binary files /dev/null and b/www/assets/images/items/research-sulfur-4-c_64.png differ diff --git a/www/assets/images/items/research-sulfur-5-1-c_256.png b/www/assets/images/items/research-sulfur-5-1-c_256.png new file mode 100644 index 00000000..da4aa939 Binary files /dev/null and b/www/assets/images/items/research-sulfur-5-1-c_256.png differ diff --git a/www/assets/images/items/research-sulfur-5-1-c_64.png b/www/assets/images/items/research-sulfur-5-1-c_64.png new file mode 100644 index 00000000..7ebeb461 Binary files /dev/null and b/www/assets/images/items/research-sulfur-5-1-c_64.png differ diff --git a/www/assets/images/items/research-sulfur-5-2-c_256.png b/www/assets/images/items/research-sulfur-5-2-c_256.png new file mode 100644 index 00000000..fcba7de0 Binary files /dev/null and b/www/assets/images/items/research-sulfur-5-2-c_256.png differ diff --git a/www/assets/images/items/research-sulfur-5-2-c_64.png b/www/assets/images/items/research-sulfur-5-2-c_64.png new file mode 100644 index 00000000..3b1eeafc Binary files /dev/null and b/www/assets/images/items/research-sulfur-5-2-c_64.png differ diff --git a/www/assets/images/items/research-sulfur-5-c_256.png b/www/assets/images/items/research-sulfur-5-c_256.png new file mode 100644 index 00000000..2a272952 Binary files /dev/null and b/www/assets/images/items/research-sulfur-5-c_256.png differ diff --git a/www/assets/images/items/research-sulfur-5-c_64.png b/www/assets/images/items/research-sulfur-5-c_64.png new file mode 100644 index 00000000..11b7fbdc Binary files /dev/null and b/www/assets/images/items/research-sulfur-5-c_64.png differ diff --git a/www/assets/images/items/research-sulfur-6-c_256.png b/www/assets/images/items/research-sulfur-6-c_256.png new file mode 100644 index 00000000..daf7654d Binary files /dev/null and b/www/assets/images/items/research-sulfur-6-c_256.png differ diff --git a/www/assets/images/items/research-sulfur-6-c_64.png b/www/assets/images/items/research-sulfur-6-c_64.png new file mode 100644 index 00000000..a65fb17e Binary files /dev/null and b/www/assets/images/items/research-sulfur-6-c_64.png differ diff --git a/www/assets/images/items/research-sulfur-compactedcoal-c_256.png b/www/assets/images/items/research-sulfur-compactedcoal-c_256.png new file mode 100644 index 00000000..de253035 Binary files /dev/null and b/www/assets/images/items/research-sulfur-compactedcoal-c_256.png differ diff --git a/www/assets/images/items/research-sulfur-compactedcoal-c_64.png b/www/assets/images/items/research-sulfur-compactedcoal-c_64.png new file mode 100644 index 00000000..2477a74c Binary files /dev/null and b/www/assets/images/items/research-sulfur-compactedcoal-c_64.png differ diff --git a/www/assets/images/items/research-sulfur-experimentalpower-c_256.png b/www/assets/images/items/research-sulfur-experimentalpower-c_256.png new file mode 100644 index 00000000..0f37d25f Binary files /dev/null and b/www/assets/images/items/research-sulfur-experimentalpower-c_256.png differ diff --git a/www/assets/images/items/research-sulfur-experimentalpower-c_64.png b/www/assets/images/items/research-sulfur-experimentalpower-c_64.png new file mode 100644 index 00000000..243ebc3e Binary files /dev/null and b/www/assets/images/items/research-sulfur-experimentalpower-c_64.png differ diff --git a/www/assets/images/items/research-sulfur-ionizedfuel-c_256.png b/www/assets/images/items/research-sulfur-ionizedfuel-c_256.png new file mode 100644 index 00000000..660370d5 Binary files /dev/null and b/www/assets/images/items/research-sulfur-ionizedfuel-c_256.png differ diff --git a/www/assets/images/items/research-sulfur-ionizedfuel-c_64.png b/www/assets/images/items/research-sulfur-ionizedfuel-c_64.png new file mode 100644 index 00000000..e237ba9e Binary files /dev/null and b/www/assets/images/items/research-sulfur-ionizedfuel-c_64.png differ diff --git a/www/assets/images/items/research-sulfur-rocketfuel-c_256.png b/www/assets/images/items/research-sulfur-rocketfuel-c_256.png new file mode 100644 index 00000000..d53e6755 Binary files /dev/null and b/www/assets/images/items/research-sulfur-rocketfuel-c_256.png differ diff --git a/www/assets/images/items/research-sulfur-rocketfuel-c_64.png b/www/assets/images/items/research-sulfur-rocketfuel-c_64.png new file mode 100644 index 00000000..2ab28934 Binary files /dev/null and b/www/assets/images/items/research-sulfur-rocketfuel-c_64.png differ diff --git a/www/assets/images/items/research-sulfur-turbofuel-c_256.png b/www/assets/images/items/research-sulfur-turbofuel-c_256.png new file mode 100644 index 00000000..78b6b13b Binary files /dev/null and b/www/assets/images/items/research-sulfur-turbofuel-c_256.png differ diff --git a/www/assets/images/items/research-sulfur-turbofuel-c_64.png b/www/assets/images/items/research-sulfur-turbofuel-c_64.png new file mode 100644 index 00000000..b429dd30 Binary files /dev/null and b/www/assets/images/items/research-sulfur-turbofuel-c_64.png differ diff --git a/www/assets/images/items/research-xmas-1-1-c_256.png b/www/assets/images/items/research-xmas-1-1-c_256.png new file mode 100644 index 00000000..4aaf5d2c Binary files /dev/null and b/www/assets/images/items/research-xmas-1-1-c_256.png differ diff --git a/www/assets/images/items/research-xmas-1-1-c_64.png b/www/assets/images/items/research-xmas-1-1-c_64.png new file mode 100644 index 00000000..6ee93b5e Binary files /dev/null and b/www/assets/images/items/research-xmas-1-1-c_64.png differ diff --git a/www/assets/images/items/research-xmas-1-2-c_256.png b/www/assets/images/items/research-xmas-1-2-c_256.png new file mode 100644 index 00000000..68cee7e8 Binary files /dev/null and b/www/assets/images/items/research-xmas-1-2-c_256.png differ diff --git a/www/assets/images/items/research-xmas-1-2-c_64.png b/www/assets/images/items/research-xmas-1-2-c_64.png new file mode 100644 index 00000000..f2dade1e Binary files /dev/null and b/www/assets/images/items/research-xmas-1-2-c_64.png differ diff --git a/www/assets/images/items/research-xmas-1-c_256.png b/www/assets/images/items/research-xmas-1-c_256.png new file mode 100644 index 00000000..9e55a522 Binary files /dev/null and b/www/assets/images/items/research-xmas-1-c_256.png differ diff --git a/www/assets/images/items/research-xmas-1-c_64.png b/www/assets/images/items/research-xmas-1-c_64.png new file mode 100644 index 00000000..e981a53e Binary files /dev/null and b/www/assets/images/items/research-xmas-1-c_64.png differ diff --git a/www/assets/images/items/research-xmas-2-1-c_256.png b/www/assets/images/items/research-xmas-2-1-c_256.png new file mode 100644 index 00000000..855c15af Binary files /dev/null and b/www/assets/images/items/research-xmas-2-1-c_256.png differ diff --git a/www/assets/images/items/research-xmas-2-1-c_64.png b/www/assets/images/items/research-xmas-2-1-c_64.png new file mode 100644 index 00000000..15290b4d Binary files /dev/null and b/www/assets/images/items/research-xmas-2-1-c_64.png differ diff --git a/www/assets/images/items/research-xmas-2-2-c_256.png b/www/assets/images/items/research-xmas-2-2-c_256.png new file mode 100644 index 00000000..d8149113 Binary files /dev/null and b/www/assets/images/items/research-xmas-2-2-c_256.png differ diff --git a/www/assets/images/items/research-xmas-2-2-c_64.png b/www/assets/images/items/research-xmas-2-2-c_64.png new file mode 100644 index 00000000..29a8ee02 Binary files /dev/null and b/www/assets/images/items/research-xmas-2-2-c_64.png differ diff --git a/www/assets/images/items/research-xmas-2-c_256.png b/www/assets/images/items/research-xmas-2-c_256.png new file mode 100644 index 00000000..9eab3e5f Binary files /dev/null and b/www/assets/images/items/research-xmas-2-c_256.png differ diff --git a/www/assets/images/items/research-xmas-2-c_64.png b/www/assets/images/items/research-xmas-2-c_64.png new file mode 100644 index 00000000..e64368e4 Binary files /dev/null and b/www/assets/images/items/research-xmas-2-c_64.png differ diff --git a/www/assets/images/items/research-xmas-3-1-c_256.png b/www/assets/images/items/research-xmas-3-1-c_256.png new file mode 100644 index 00000000..4ed75e22 Binary files /dev/null and b/www/assets/images/items/research-xmas-3-1-c_256.png differ diff --git a/www/assets/images/items/research-xmas-3-1-c_64.png b/www/assets/images/items/research-xmas-3-1-c_64.png new file mode 100644 index 00000000..cebdcd83 Binary files /dev/null and b/www/assets/images/items/research-xmas-3-1-c_64.png differ diff --git a/www/assets/images/items/research-xmas-3-2-c_256.png b/www/assets/images/items/research-xmas-3-2-c_256.png new file mode 100644 index 00000000..c4e5b714 Binary files /dev/null and b/www/assets/images/items/research-xmas-3-2-c_256.png differ diff --git a/www/assets/images/items/research-xmas-3-2-c_64.png b/www/assets/images/items/research-xmas-3-2-c_64.png new file mode 100644 index 00000000..07dd6a3a Binary files /dev/null and b/www/assets/images/items/research-xmas-3-2-c_64.png differ diff --git a/www/assets/images/items/research-xmas-3-c_256.png b/www/assets/images/items/research-xmas-3-c_256.png new file mode 100644 index 00000000..8f8695a1 Binary files /dev/null and b/www/assets/images/items/research-xmas-3-c_256.png differ diff --git a/www/assets/images/items/research-xmas-3-c_64.png b/www/assets/images/items/research-xmas-3-c_64.png new file mode 100644 index 00000000..298175e2 Binary files /dev/null and b/www/assets/images/items/research-xmas-3-c_64.png differ diff --git a/www/assets/images/items/research-xmas-4-1-c_256.png b/www/assets/images/items/research-xmas-4-1-c_256.png new file mode 100644 index 00000000..8faa8e89 Binary files /dev/null and b/www/assets/images/items/research-xmas-4-1-c_256.png differ diff --git a/www/assets/images/items/research-xmas-4-1-c_64.png b/www/assets/images/items/research-xmas-4-1-c_64.png new file mode 100644 index 00000000..ffb175fb Binary files /dev/null and b/www/assets/images/items/research-xmas-4-1-c_64.png differ diff --git a/www/assets/images/items/research-xmas-4-2-c_256.png b/www/assets/images/items/research-xmas-4-2-c_256.png new file mode 100644 index 00000000..b1ef4878 Binary files /dev/null and b/www/assets/images/items/research-xmas-4-2-c_256.png differ diff --git a/www/assets/images/items/research-xmas-4-2-c_64.png b/www/assets/images/items/research-xmas-4-2-c_64.png new file mode 100644 index 00000000..a98ef768 Binary files /dev/null and b/www/assets/images/items/research-xmas-4-2-c_64.png differ diff --git a/www/assets/images/items/research-xmas-4-c_256.png b/www/assets/images/items/research-xmas-4-c_256.png new file mode 100644 index 00000000..1cb908e1 Binary files /dev/null and b/www/assets/images/items/research-xmas-4-c_256.png differ diff --git a/www/assets/images/items/research-xmas-4-c_64.png b/www/assets/images/items/research-xmas-4-c_64.png new file mode 100644 index 00000000..ef726ae8 Binary files /dev/null and b/www/assets/images/items/research-xmas-4-c_64.png differ diff --git a/www/assets/images/items/research-xmas-5-c_256.png b/www/assets/images/items/research-xmas-5-c_256.png new file mode 100644 index 00000000..4968937c Binary files /dev/null and b/www/assets/images/items/research-xmas-5-c_256.png differ diff --git a/www/assets/images/items/research-xmas-5-c_64.png b/www/assets/images/items/research-xmas-5-c_64.png new file mode 100644 index 00000000..2328a930 Binary files /dev/null and b/www/assets/images/items/research-xmas-5-c_64.png differ diff --git a/www/assets/images/items/resource-sink-bonus-program_256.png b/www/assets/images/items/resource-sink-bonus-program_256.png deleted file mode 100644 index 8fc04297..00000000 Binary files a/www/assets/images/items/resource-sink-bonus-program_256.png and /dev/null differ diff --git a/www/assets/images/items/resource-sink-bonus-program_64.png b/www/assets/images/items/resource-sink-bonus-program_64.png deleted file mode 100644 index fdfe317f..00000000 Binary files a/www/assets/images/items/resource-sink-bonus-program_64.png and /dev/null differ diff --git a/www/assets/images/items/resource-well-extractor_256.png b/www/assets/images/items/resource-well-extractor_256.png deleted file mode 100644 index 89d87f32..00000000 Binary files a/www/assets/images/items/resource-well-extractor_256.png and /dev/null differ diff --git a/www/assets/images/items/resource-well-extractor_64.png b/www/assets/images/items/resource-well-extractor_64.png deleted file mode 100644 index f87fcfde..00000000 Binary files a/www/assets/images/items/resource-well-extractor_64.png and /dev/null differ diff --git a/www/assets/images/items/resource-well-pressurizer_256.png b/www/assets/images/items/resource-well-pressurizer_256.png deleted file mode 100644 index 721fffba..00000000 Binary files a/www/assets/images/items/resource-well-pressurizer_256.png and /dev/null differ diff --git a/www/assets/images/items/resource-well-pressurizer_64.png b/www/assets/images/items/resource-well-pressurizer_64.png deleted file mode 100644 index 57d3a90d..00000000 Binary files a/www/assets/images/items/resource-well-pressurizer_64.png and /dev/null differ diff --git a/www/assets/images/items/resourcesink-advancedammopack-c_256.png b/www/assets/images/items/resourcesink-advancedammopack-c_256.png new file mode 100644 index 00000000..8d5a5447 Binary files /dev/null and b/www/assets/images/items/resourcesink-advancedammopack-c_256.png differ diff --git a/www/assets/images/items/resourcesink-advancedammopack-c_64.png b/www/assets/images/items/resourcesink-advancedammopack-c_64.png new file mode 100644 index 00000000..ae5ba96c Binary files /dev/null and b/www/assets/images/items/resourcesink-advancedammopack-c_64.png differ diff --git a/www/assets/images/items/resourcesink-ailimiter-c_256.png b/www/assets/images/items/resourcesink-ailimiter-c_256.png new file mode 100644 index 00000000..47196f72 Binary files /dev/null and b/www/assets/images/items/resourcesink-ailimiter-c_256.png differ diff --git a/www/assets/images/items/resourcesink-ailimiter-c_64.png b/www/assets/images/items/resourcesink-ailimiter-c_64.png new file mode 100644 index 00000000..28535509 Binary files /dev/null and b/www/assets/images/items/resourcesink-ailimiter-c_64.png differ diff --git a/www/assets/images/items/resourcesink-alcladsheet-c_256.png b/www/assets/images/items/resourcesink-alcladsheet-c_256.png new file mode 100644 index 00000000..f63867b3 Binary files /dev/null and b/www/assets/images/items/resourcesink-alcladsheet-c_256.png differ diff --git a/www/assets/images/items/resourcesink-alcladsheet-c_64.png b/www/assets/images/items/resourcesink-alcladsheet-c_64.png new file mode 100644 index 00000000..756ffa0f Binary files /dev/null and b/www/assets/images/items/resourcesink-alcladsheet-c_64.png differ diff --git a/www/assets/images/items/resourcesink-aluminumcasing-c_256.png b/www/assets/images/items/resourcesink-aluminumcasing-c_256.png new file mode 100644 index 00000000..ad99a337 Binary files /dev/null and b/www/assets/images/items/resourcesink-aluminumcasing-c_256.png differ diff --git a/www/assets/images/items/resourcesink-aluminumcasing-c_64.png b/www/assets/images/items/resourcesink-aluminumcasing-c_64.png new file mode 100644 index 00000000..aaa8c897 Binary files /dev/null and b/www/assets/images/items/resourcesink-aluminumcasing-c_64.png differ diff --git a/www/assets/images/items/resourcesink-ammopack-c_256.png b/www/assets/images/items/resourcesink-ammopack-c_256.png new file mode 100644 index 00000000..f2e7471b Binary files /dev/null and b/www/assets/images/items/resourcesink-ammopack-c_256.png differ diff --git a/www/assets/images/items/resourcesink-ammopack-c_64.png b/www/assets/images/items/resourcesink-ammopack-c_64.png new file mode 100644 index 00000000..d178dce0 Binary files /dev/null and b/www/assets/images/items/resourcesink-ammopack-c_64.png differ diff --git a/www/assets/images/items/resourcesink-arrows-foundationpatterns-c_256.png b/www/assets/images/items/resourcesink-arrows-foundationpatterns-c_256.png new file mode 100644 index 00000000..d8eb79e4 Binary files /dev/null and b/www/assets/images/items/resourcesink-arrows-foundationpatterns-c_256.png differ diff --git a/www/assets/images/items/resourcesink-arrows-foundationpatterns-c_64.png b/www/assets/images/items/resourcesink-arrows-foundationpatterns-c_64.png new file mode 100644 index 00000000..a328882e Binary files /dev/null and b/www/assets/images/items/resourcesink-arrows-foundationpatterns-c_64.png differ diff --git a/www/assets/images/items/resourcesink-battery-c_256.png b/www/assets/images/items/resourcesink-battery-c_256.png new file mode 100644 index 00000000..0e2bc923 Binary files /dev/null and b/www/assets/images/items/resourcesink-battery-c_256.png differ diff --git a/www/assets/images/items/resourcesink-battery-c_64.png b/www/assets/images/items/resourcesink-battery-c_64.png new file mode 100644 index 00000000..301b7038 Binary files /dev/null and b/www/assets/images/items/resourcesink-battery-c_64.png differ diff --git a/www/assets/images/items/resourcesink-beamset-c_256.png b/www/assets/images/items/resourcesink-beamset-c_256.png new file mode 100644 index 00000000..fc4c831f Binary files /dev/null and b/www/assets/images/items/resourcesink-beamset-c_256.png differ diff --git a/www/assets/images/items/resourcesink-beamset-c_64.png b/www/assets/images/items/resourcesink-beamset-c_64.png new file mode 100644 index 00000000..f7302d4b Binary files /dev/null and b/www/assets/images/items/resourcesink-beamset-c_64.png differ diff --git a/www/assets/images/items/resourcesink-billboardsigns-c_256.png b/www/assets/images/items/resourcesink-billboardsigns-c_256.png new file mode 100644 index 00000000..164ff190 Binary files /dev/null and b/www/assets/images/items/resourcesink-billboardsigns-c_256.png differ diff --git a/www/assets/images/items/resourcesink-billboardsigns-c_64.png b/www/assets/images/items/resourcesink-billboardsigns-c_64.png new file mode 100644 index 00000000..e81685e3 Binary files /dev/null and b/www/assets/images/items/resourcesink-billboardsigns-c_64.png differ diff --git a/www/assets/images/items/resourcesink-biofuel-c_256.png b/www/assets/images/items/resourcesink-biofuel-c_256.png new file mode 100644 index 00000000..58182244 Binary files /dev/null and b/www/assets/images/items/resourcesink-biofuel-c_256.png differ diff --git a/www/assets/images/items/resourcesink-biofuel-c_64.png b/www/assets/images/items/resourcesink-biofuel-c_64.png new file mode 100644 index 00000000..8bb87a4d Binary files /dev/null and b/www/assets/images/items/resourcesink-biofuel-c_64.png differ diff --git a/www/assets/images/items/resourcesink-biomass-c_256.png b/www/assets/images/items/resourcesink-biomass-c_256.png new file mode 100644 index 00000000..3b355756 Binary files /dev/null and b/www/assets/images/items/resourcesink-biomass-c_256.png differ diff --git a/www/assets/images/items/resourcesink-biomass-c_64.png b/www/assets/images/items/resourcesink-biomass-c_64.png new file mode 100644 index 00000000..09080767 Binary files /dev/null and b/www/assets/images/items/resourcesink-biomass-c_64.png differ diff --git a/www/assets/images/items/resourcesink-blackpowder-c_256.png b/www/assets/images/items/resourcesink-blackpowder-c_256.png new file mode 100644 index 00000000..50970fed Binary files /dev/null and b/www/assets/images/items/resourcesink-blackpowder-c_256.png differ diff --git a/www/assets/images/items/resourcesink-blackpowder-c_64.png b/www/assets/images/items/resourcesink-blackpowder-c_64.png new file mode 100644 index 00000000..9b7f9039 Binary files /dev/null and b/www/assets/images/items/resourcesink-blackpowder-c_64.png differ diff --git a/www/assets/images/items/resourcesink-boombox-c_256.png b/www/assets/images/items/resourcesink-boombox-c_256.png new file mode 100644 index 00000000..2d79fe5f Binary files /dev/null and b/www/assets/images/items/resourcesink-boombox-c_256.png differ diff --git a/www/assets/images/items/resourcesink-boombox-c_64.png b/www/assets/images/items/resourcesink-boombox-c_64.png new file mode 100644 index 00000000..136755c1 Binary files /dev/null and b/www/assets/images/items/resourcesink-boombox-c_64.png differ diff --git a/www/assets/images/items/resourcesink-cable-c_256.png b/www/assets/images/items/resourcesink-cable-c_256.png new file mode 100644 index 00000000..6099b232 Binary files /dev/null and b/www/assets/images/items/resourcesink-cable-c_256.png differ diff --git a/www/assets/images/items/resourcesink-cable-c_64.png b/www/assets/images/items/resourcesink-cable-c_64.png new file mode 100644 index 00000000..ad0ee1df Binary files /dev/null and b/www/assets/images/items/resourcesink-cable-c_64.png differ diff --git a/www/assets/images/items/resourcesink-carbonsteel-paintfinish-c_256.png b/www/assets/images/items/resourcesink-carbonsteel-paintfinish-c_256.png new file mode 100644 index 00000000..05bf27d2 Binary files /dev/null and b/www/assets/images/items/resourcesink-carbonsteel-paintfinish-c_256.png differ diff --git a/www/assets/images/items/resourcesink-carbonsteel-paintfinish-c_64.png b/www/assets/images/items/resourcesink-carbonsteel-paintfinish-c_64.png new file mode 100644 index 00000000..186f78e0 Binary files /dev/null and b/www/assets/images/items/resourcesink-carbonsteel-paintfinish-c_64.png differ diff --git a/www/assets/images/items/resourcesink-caterium-paintfinish-c_256.png b/www/assets/images/items/resourcesink-caterium-paintfinish-c_256.png new file mode 100644 index 00000000..ed77c9f3 Binary files /dev/null and b/www/assets/images/items/resourcesink-caterium-paintfinish-c_256.png differ diff --git a/www/assets/images/items/resourcesink-caterium-paintfinish-c_64.png b/www/assets/images/items/resourcesink-caterium-paintfinish-c_64.png new file mode 100644 index 00000000..aeaa07df Binary files /dev/null and b/www/assets/images/items/resourcesink-caterium-paintfinish-c_64.png differ diff --git a/www/assets/images/items/resourcesink-catwalks-c_256.png b/www/assets/images/items/resourcesink-catwalks-c_256.png new file mode 100644 index 00000000..48b250b8 Binary files /dev/null and b/www/assets/images/items/resourcesink-catwalks-c_256.png differ diff --git a/www/assets/images/items/resourcesink-catwalks-c_64.png b/www/assets/images/items/resourcesink-catwalks-c_64.png new file mode 100644 index 00000000..15c29032 Binary files /dev/null and b/www/assets/images/items/resourcesink-catwalks-c_64.png differ diff --git a/www/assets/images/items/resourcesink-ceilinglight-c_256.png b/www/assets/images/items/resourcesink-ceilinglight-c_256.png new file mode 100644 index 00000000..b86245d4 Binary files /dev/null and b/www/assets/images/items/resourcesink-ceilinglight-c_256.png differ diff --git a/www/assets/images/items/resourcesink-ceilinglight-c_64.png b/www/assets/images/items/resourcesink-ceilinglight-c_64.png new file mode 100644 index 00000000..86c1dfaf Binary files /dev/null and b/www/assets/images/items/resourcesink-ceilinglight-c_64.png differ diff --git a/www/assets/images/items/resourcesink-checkmark-c_256.png b/www/assets/images/items/resourcesink-checkmark-c_256.png new file mode 100644 index 00000000..7430c0a4 Binary files /dev/null and b/www/assets/images/items/resourcesink-checkmark-c_256.png differ diff --git a/www/assets/images/items/resourcesink-checkmark-c_64.png b/www/assets/images/items/resourcesink-checkmark-c_64.png new file mode 100644 index 00000000..31615c16 Binary files /dev/null and b/www/assets/images/items/resourcesink-checkmark-c_64.png differ diff --git a/www/assets/images/items/resourcesink-chrome-paintfinish-c_256.png b/www/assets/images/items/resourcesink-chrome-paintfinish-c_256.png new file mode 100644 index 00000000..22ef07a9 Binary files /dev/null and b/www/assets/images/items/resourcesink-chrome-paintfinish-c_256.png differ diff --git a/www/assets/images/items/resourcesink-chrome-paintfinish-c_64.png b/www/assets/images/items/resourcesink-chrome-paintfinish-c_64.png new file mode 100644 index 00000000..22b8789f Binary files /dev/null and b/www/assets/images/items/resourcesink-chrome-paintfinish-c_64.png differ diff --git a/www/assets/images/items/resourcesink-circuitboard-c_256.png b/www/assets/images/items/resourcesink-circuitboard-c_256.png new file mode 100644 index 00000000..90472ce4 Binary files /dev/null and b/www/assets/images/items/resourcesink-circuitboard-c_256.png differ diff --git a/www/assets/images/items/resourcesink-circuitboard-c_64.png b/www/assets/images/items/resourcesink-circuitboard-c_64.png new file mode 100644 index 00000000..26edd241 Binary files /dev/null and b/www/assets/images/items/resourcesink-circuitboard-c_64.png differ diff --git a/www/assets/images/items/resourcesink-coffeecup-c_256.png b/www/assets/images/items/resourcesink-coffeecup-c_256.png new file mode 100644 index 00000000..a35a4d12 Binary files /dev/null and b/www/assets/images/items/resourcesink-coffeecup-c_256.png differ diff --git a/www/assets/images/items/resourcesink-coffeecup-c_64.png b/www/assets/images/items/resourcesink-coffeecup-c_64.png new file mode 100644 index 00000000..0c2328c0 Binary files /dev/null and b/www/assets/images/items/resourcesink-coffeecup-c_64.png differ diff --git a/www/assets/images/items/resourcesink-compactedcoal-c_256.png b/www/assets/images/items/resourcesink-compactedcoal-c_256.png new file mode 100644 index 00000000..faddf687 Binary files /dev/null and b/www/assets/images/items/resourcesink-compactedcoal-c_256.png differ diff --git a/www/assets/images/items/resourcesink-compactedcoal-c_64.png b/www/assets/images/items/resourcesink-compactedcoal-c_64.png new file mode 100644 index 00000000..83172989 Binary files /dev/null and b/www/assets/images/items/resourcesink-compactedcoal-c_64.png differ diff --git a/www/assets/images/items/resourcesink-computer-c_256.png b/www/assets/images/items/resourcesink-computer-c_256.png new file mode 100644 index 00000000..1a8e3e80 Binary files /dev/null and b/www/assets/images/items/resourcesink-computer-c_256.png differ diff --git a/www/assets/images/items/resourcesink-computer-c_64.png b/www/assets/images/items/resourcesink-computer-c_64.png new file mode 100644 index 00000000..d8e3df7f Binary files /dev/null and b/www/assets/images/items/resourcesink-computer-c_64.png differ diff --git a/www/assets/images/items/resourcesink-concrete-c_256.png b/www/assets/images/items/resourcesink-concrete-c_256.png new file mode 100644 index 00000000..9112fec4 Binary files /dev/null and b/www/assets/images/items/resourcesink-concrete-c_256.png differ diff --git a/www/assets/images/items/resourcesink-concrete-c_64.png b/www/assets/images/items/resourcesink-concrete-c_64.png new file mode 100644 index 00000000..157fd8ca Binary files /dev/null and b/www/assets/images/items/resourcesink-concrete-c_64.png differ diff --git a/www/assets/images/items/resourcesink-concretepillarset-c_256.png b/www/assets/images/items/resourcesink-concretepillarset-c_256.png new file mode 100644 index 00000000..f0c699b3 Binary files /dev/null and b/www/assets/images/items/resourcesink-concretepillarset-c_256.png differ diff --git a/www/assets/images/items/resourcesink-concretepillarset-c_64.png b/www/assets/images/items/resourcesink-concretepillarset-c_64.png new file mode 100644 index 00000000..15f4665b Binary files /dev/null and b/www/assets/images/items/resourcesink-concretepillarset-c_64.png differ diff --git a/www/assets/images/items/resourcesink-converywalls-normal-c_256.png b/www/assets/images/items/resourcesink-converywalls-normal-c_256.png new file mode 100644 index 00000000..762f6fbe Binary files /dev/null and b/www/assets/images/items/resourcesink-converywalls-normal-c_256.png differ diff --git a/www/assets/images/items/resourcesink-converywalls-normal-c_64.png b/www/assets/images/items/resourcesink-converywalls-normal-c_64.png new file mode 100644 index 00000000..a4fcc125 Binary files /dev/null and b/www/assets/images/items/resourcesink-converywalls-normal-c_64.png differ diff --git a/www/assets/images/items/resourcesink-conveyorceilingmount-c_256.png b/www/assets/images/items/resourcesink-conveyorceilingmount-c_256.png new file mode 100644 index 00000000..ce2c4738 Binary files /dev/null and b/www/assets/images/items/resourcesink-conveyorceilingmount-c_256.png differ diff --git a/www/assets/images/items/resourcesink-conveyorceilingmount-c_64.png b/www/assets/images/items/resourcesink-conveyorceilingmount-c_64.png new file mode 100644 index 00000000..aac8ac5e Binary files /dev/null and b/www/assets/images/items/resourcesink-conveyorceilingmount-c_64.png differ diff --git a/www/assets/images/items/resourcesink-conveyorlifthole-c_256.png b/www/assets/images/items/resourcesink-conveyorlifthole-c_256.png new file mode 100644 index 00000000..6dcaad95 Binary files /dev/null and b/www/assets/images/items/resourcesink-conveyorlifthole-c_256.png differ diff --git a/www/assets/images/items/resourcesink-conveyorlifthole-c_64.png b/www/assets/images/items/resourcesink-conveyorlifthole-c_64.png new file mode 100644 index 00000000..aa13654a Binary files /dev/null and b/www/assets/images/items/resourcesink-conveyorlifthole-c_64.png differ diff --git a/www/assets/images/items/resourcesink-conveyorwallmount-c_256.png b/www/assets/images/items/resourcesink-conveyorwallmount-c_256.png new file mode 100644 index 00000000..7a467e9b Binary files /dev/null and b/www/assets/images/items/resourcesink-conveyorwallmount-c_256.png differ diff --git a/www/assets/images/items/resourcesink-conveyorwallmount-c_64.png b/www/assets/images/items/resourcesink-conveyorwallmount-c_64.png new file mode 100644 index 00000000..09d83703 Binary files /dev/null and b/www/assets/images/items/resourcesink-conveyorwallmount-c_64.png differ diff --git a/www/assets/images/items/resourcesink-coolingsystem-c_256.png b/www/assets/images/items/resourcesink-coolingsystem-c_256.png new file mode 100644 index 00000000..f88aca99 Binary files /dev/null and b/www/assets/images/items/resourcesink-coolingsystem-c_256.png differ diff --git a/www/assets/images/items/resourcesink-coolingsystem-c_64.png b/www/assets/images/items/resourcesink-coolingsystem-c_64.png new file mode 100644 index 00000000..1c5b14b0 Binary files /dev/null and b/www/assets/images/items/resourcesink-coolingsystem-c_64.png differ diff --git a/www/assets/images/items/resourcesink-copper-paintfinish-c_256.png b/www/assets/images/items/resourcesink-copper-paintfinish-c_256.png new file mode 100644 index 00000000..1fc6dea8 Binary files /dev/null and b/www/assets/images/items/resourcesink-copper-paintfinish-c_256.png differ diff --git a/www/assets/images/items/resourcesink-copper-paintfinish-c_64.png b/www/assets/images/items/resourcesink-copper-paintfinish-c_64.png new file mode 100644 index 00000000..65d73f11 Binary files /dev/null and b/www/assets/images/items/resourcesink-copper-paintfinish-c_64.png differ diff --git a/www/assets/images/items/resourcesink-copperpowder-c_256.png b/www/assets/images/items/resourcesink-copperpowder-c_256.png new file mode 100644 index 00000000..ab9f20dc Binary files /dev/null and b/www/assets/images/items/resourcesink-copperpowder-c_256.png differ diff --git a/www/assets/images/items/resourcesink-copperpowder-c_64.png b/www/assets/images/items/resourcesink-copperpowder-c_64.png new file mode 100644 index 00000000..56efbe1c Binary files /dev/null and b/www/assets/images/items/resourcesink-copperpowder-c_64.png differ diff --git a/www/assets/images/items/resourcesink-coppersheet-c_256.png b/www/assets/images/items/resourcesink-coppersheet-c_256.png new file mode 100644 index 00000000..0f2cd055 Binary files /dev/null and b/www/assets/images/items/resourcesink-coppersheet-c_256.png differ diff --git a/www/assets/images/items/resourcesink-coppersheet-c_64.png b/www/assets/images/items/resourcesink-coppersheet-c_64.png new file mode 100644 index 00000000..a8a5a529 Binary files /dev/null and b/www/assets/images/items/resourcesink-coppersheet-c_64.png differ diff --git a/www/assets/images/items/resourcesink-crystaloscillator-c_256.png b/www/assets/images/items/resourcesink-crystaloscillator-c_256.png new file mode 100644 index 00000000..f9ddf998 Binary files /dev/null and b/www/assets/images/items/resourcesink-crystaloscillator-c_256.png differ diff --git a/www/assets/images/items/resourcesink-crystaloscillator-c_64.png b/www/assets/images/items/resourcesink-crystaloscillator-c_64.png new file mode 100644 index 00000000..2f0d04df Binary files /dev/null and b/www/assets/images/items/resourcesink-crystaloscillator-c_64.png differ diff --git a/www/assets/images/items/resourcesink-curvedfoundationpack-c_256.png b/www/assets/images/items/resourcesink-curvedfoundationpack-c_256.png new file mode 100644 index 00000000..347f355b Binary files /dev/null and b/www/assets/images/items/resourcesink-curvedfoundationpack-c_256.png differ diff --git a/www/assets/images/items/resourcesink-curvedfoundationpack-c_64.png b/www/assets/images/items/resourcesink-curvedfoundationpack-c_64.png new file mode 100644 index 00000000..4d284f88 Binary files /dev/null and b/www/assets/images/items/resourcesink-curvedfoundationpack-c_64.png differ diff --git a/www/assets/images/items/resourcesink-customizer-asphalt-foundationmaterial-c_256.png b/www/assets/images/items/resourcesink-customizer-asphalt-foundationmaterial-c_256.png new file mode 100644 index 00000000..c87cabbc Binary files /dev/null and b/www/assets/images/items/resourcesink-customizer-asphalt-foundationmaterial-c_256.png differ diff --git a/www/assets/images/items/resourcesink-customizer-asphalt-foundationmaterial-c_64.png b/www/assets/images/items/resourcesink-customizer-asphalt-foundationmaterial-c_64.png new file mode 100644 index 00000000..8c0262ae Binary files /dev/null and b/www/assets/images/items/resourcesink-customizer-asphalt-foundationmaterial-c_64.png differ diff --git a/www/assets/images/items/resourcesink-customizer-concrete-foundationmaterial-c_256.png b/www/assets/images/items/resourcesink-customizer-concrete-foundationmaterial-c_256.png new file mode 100644 index 00000000..629522ec Binary files /dev/null and b/www/assets/images/items/resourcesink-customizer-concrete-foundationmaterial-c_256.png differ diff --git a/www/assets/images/items/resourcesink-customizer-concrete-foundationmaterial-c_64.png b/www/assets/images/items/resourcesink-customizer-concrete-foundationmaterial-c_64.png new file mode 100644 index 00000000..a028dd22 Binary files /dev/null and b/www/assets/images/items/resourcesink-customizer-concrete-foundationmaterial-c_64.png differ diff --git a/www/assets/images/items/resourcesink-customizer-concretewallmaterial-c_256.png b/www/assets/images/items/resourcesink-customizer-concretewallmaterial-c_256.png new file mode 100644 index 00000000..d32dc7b6 Binary files /dev/null and b/www/assets/images/items/resourcesink-customizer-concretewallmaterial-c_256.png differ diff --git a/www/assets/images/items/resourcesink-customizer-concretewallmaterial-c_64.png b/www/assets/images/items/resourcesink-customizer-concretewallmaterial-c_64.png new file mode 100644 index 00000000..4a040b6b Binary files /dev/null and b/www/assets/images/items/resourcesink-customizer-concretewallmaterial-c_64.png differ diff --git a/www/assets/images/items/resourcesink-customizer-glassroofmaterial-c_256.png b/www/assets/images/items/resourcesink-customizer-glassroofmaterial-c_256.png new file mode 100644 index 00000000..419df067 Binary files /dev/null and b/www/assets/images/items/resourcesink-customizer-glassroofmaterial-c_256.png differ diff --git a/www/assets/images/items/resourcesink-customizer-glassroofmaterial-c_64.png b/www/assets/images/items/resourcesink-customizer-glassroofmaterial-c_64.png new file mode 100644 index 00000000..926c9a4e Binary files /dev/null and b/www/assets/images/items/resourcesink-customizer-glassroofmaterial-c_64.png differ diff --git a/www/assets/images/items/resourcesink-customizer-gripmetal-foundationmaterial-c_256.png b/www/assets/images/items/resourcesink-customizer-gripmetal-foundationmaterial-c_256.png new file mode 100644 index 00000000..1d2139cc Binary files /dev/null and b/www/assets/images/items/resourcesink-customizer-gripmetal-foundationmaterial-c_256.png differ diff --git a/www/assets/images/items/resourcesink-customizer-gripmetal-foundationmaterial-c_64.png b/www/assets/images/items/resourcesink-customizer-gripmetal-foundationmaterial-c_64.png new file mode 100644 index 00000000..9a1b6ff0 Binary files /dev/null and b/www/assets/images/items/resourcesink-customizer-gripmetal-foundationmaterial-c_64.png differ diff --git a/www/assets/images/items/resourcesink-customizer-polishedconcrete-foundationmaterial-c_256.png b/www/assets/images/items/resourcesink-customizer-polishedconcrete-foundationmaterial-c_256.png new file mode 100644 index 00000000..543abfc2 Binary files /dev/null and b/www/assets/images/items/resourcesink-customizer-polishedconcrete-foundationmaterial-c_256.png differ diff --git a/www/assets/images/items/resourcesink-customizer-polishedconcrete-foundationmaterial-c_64.png b/www/assets/images/items/resourcesink-customizer-polishedconcrete-foundationmaterial-c_64.png new file mode 100644 index 00000000..d6249fac Binary files /dev/null and b/www/assets/images/items/resourcesink-customizer-polishedconcrete-foundationmaterial-c_64.png differ diff --git a/www/assets/images/items/resourcesink-customizer-steelroofmaterial-c_256.png b/www/assets/images/items/resourcesink-customizer-steelroofmaterial-c_256.png new file mode 100644 index 00000000..bbd03911 Binary files /dev/null and b/www/assets/images/items/resourcesink-customizer-steelroofmaterial-c_256.png differ diff --git a/www/assets/images/items/resourcesink-customizer-steelroofmaterial-c_64.png b/www/assets/images/items/resourcesink-customizer-steelroofmaterial-c_64.png new file mode 100644 index 00000000..48553af4 Binary files /dev/null and b/www/assets/images/items/resourcesink-customizer-steelroofmaterial-c_64.png differ diff --git a/www/assets/images/items/resourcesink-customizer-steelwallmaterial-c_256.png b/www/assets/images/items/resourcesink-customizer-steelwallmaterial-c_256.png new file mode 100644 index 00000000..e0733b46 Binary files /dev/null and b/www/assets/images/items/resourcesink-customizer-steelwallmaterial-c_256.png differ diff --git a/www/assets/images/items/resourcesink-customizer-steelwallmaterial-c_64.png b/www/assets/images/items/resourcesink-customizer-steelwallmaterial-c_64.png new file mode 100644 index 00000000..f06a4c0f Binary files /dev/null and b/www/assets/images/items/resourcesink-customizer-steelwallmaterial-c_64.png differ diff --git a/www/assets/images/items/resourcesink-customizer-tarroofmaterial-c_256.png b/www/assets/images/items/resourcesink-customizer-tarroofmaterial-c_256.png new file mode 100644 index 00000000..55506e00 Binary files /dev/null and b/www/assets/images/items/resourcesink-customizer-tarroofmaterial-c_256.png differ diff --git a/www/assets/images/items/resourcesink-customizer-tarroofmaterial-c_64.png b/www/assets/images/items/resourcesink-customizer-tarroofmaterial-c_64.png new file mode 100644 index 00000000..ec6ba265 Binary files /dev/null and b/www/assets/images/items/resourcesink-customizer-tarroofmaterial-c_64.png differ diff --git a/www/assets/images/items/resourcesink-cyberwagon-c_256.png b/www/assets/images/items/resourcesink-cyberwagon-c_256.png new file mode 100644 index 00000000..c10a533d Binary files /dev/null and b/www/assets/images/items/resourcesink-cyberwagon-c_256.png differ diff --git a/www/assets/images/items/resourcesink-cyberwagon-c_64.png b/www/assets/images/items/resourcesink-cyberwagon-c_64.png new file mode 100644 index 00000000..2ac8539e Binary files /dev/null and b/www/assets/images/items/resourcesink-cyberwagon-c_64.png differ diff --git a/www/assets/images/items/resourcesink-diagonal-down-wallset-c_256.png b/www/assets/images/items/resourcesink-diagonal-down-wallset-c_256.png new file mode 100644 index 00000000..d4f2a149 Binary files /dev/null and b/www/assets/images/items/resourcesink-diagonal-down-wallset-c_256.png differ diff --git a/www/assets/images/items/resourcesink-diagonal-down-wallset-c_64.png b/www/assets/images/items/resourcesink-diagonal-down-wallset-c_64.png new file mode 100644 index 00000000..6300d975 Binary files /dev/null and b/www/assets/images/items/resourcesink-diagonal-down-wallset-c_64.png differ diff --git a/www/assets/images/items/resourcesink-diagonal-up-wallset-c_256.png b/www/assets/images/items/resourcesink-diagonal-up-wallset-c_256.png new file mode 100644 index 00000000..85897278 Binary files /dev/null and b/www/assets/images/items/resourcesink-diagonal-up-wallset-c_256.png differ diff --git a/www/assets/images/items/resourcesink-diagonal-up-wallset-c_64.png b/www/assets/images/items/resourcesink-diagonal-up-wallset-c_64.png new file mode 100644 index 00000000..ed0162fa Binary files /dev/null and b/www/assets/images/items/resourcesink-diagonal-up-wallset-c_64.png differ diff --git a/www/assets/images/items/resourcesink-diagonalramps-c_256.png b/www/assets/images/items/resourcesink-diagonalramps-c_256.png new file mode 100644 index 00000000..9a2febe3 Binary files /dev/null and b/www/assets/images/items/resourcesink-diagonalramps-c_256.png differ diff --git a/www/assets/images/items/resourcesink-diagonalramps-c_64.png b/www/assets/images/items/resourcesink-diagonalramps-c_64.png new file mode 100644 index 00000000..c675fd2d Binary files /dev/null and b/www/assets/images/items/resourcesink-diagonalramps-c_64.png differ diff --git a/www/assets/images/items/resourcesink-displaysigns-c_256.png b/www/assets/images/items/resourcesink-displaysigns-c_256.png new file mode 100644 index 00000000..5be860cb Binary files /dev/null and b/www/assets/images/items/resourcesink-displaysigns-c_256.png differ diff --git a/www/assets/images/items/resourcesink-displaysigns-c_64.png b/www/assets/images/items/resourcesink-displaysigns-c_64.png new file mode 100644 index 00000000..dc300798 Binary files /dev/null and b/www/assets/images/items/resourcesink-displaysigns-c_64.png differ diff --git a/www/assets/images/items/resourcesink-doorwalls-normal-c_256.png b/www/assets/images/items/resourcesink-doorwalls-normal-c_256.png new file mode 100644 index 00000000..71b8cddb Binary files /dev/null and b/www/assets/images/items/resourcesink-doorwalls-normal-c_256.png differ diff --git a/www/assets/images/items/resourcesink-doorwalls-normal-c_64.png b/www/assets/images/items/resourcesink-doorwalls-normal-c_64.png new file mode 100644 index 00000000..21881ee8 Binary files /dev/null and b/www/assets/images/items/resourcesink-doorwalls-normal-c_64.png differ diff --git a/www/assets/images/items/resourcesink-dotlines-foundationpatterns-c_256.png b/www/assets/images/items/resourcesink-dotlines-foundationpatterns-c_256.png new file mode 100644 index 00000000..5b2f1b41 Binary files /dev/null and b/www/assets/images/items/resourcesink-dotlines-foundationpatterns-c_256.png differ diff --git a/www/assets/images/items/resourcesink-dotlines-foundationpatterns-c_64.png b/www/assets/images/items/resourcesink-dotlines-foundationpatterns-c_64.png new file mode 100644 index 00000000..29e3514f Binary files /dev/null and b/www/assets/images/items/resourcesink-dotlines-foundationpatterns-c_64.png differ diff --git a/www/assets/images/items/resourcesink-electromagneticcontrolrod-c_256.png b/www/assets/images/items/resourcesink-electromagneticcontrolrod-c_256.png new file mode 100644 index 00000000..7e34d18f Binary files /dev/null and b/www/assets/images/items/resourcesink-electromagneticcontrolrod-c_256.png differ diff --git a/www/assets/images/items/resourcesink-electromagneticcontrolrod-c_64.png b/www/assets/images/items/resourcesink-electromagneticcontrolrod-c_64.png new file mode 100644 index 00000000..b954cb51 Binary files /dev/null and b/www/assets/images/items/resourcesink-electromagneticcontrolrod-c_64.png differ diff --git a/www/assets/images/items/resourcesink-emptycanister-c_256.png b/www/assets/images/items/resourcesink-emptycanister-c_256.png new file mode 100644 index 00000000..d19fcd64 Binary files /dev/null and b/www/assets/images/items/resourcesink-emptycanister-c_256.png differ diff --git a/www/assets/images/items/resourcesink-emptycanister-c_64.png b/www/assets/images/items/resourcesink-emptycanister-c_64.png new file mode 100644 index 00000000..7f6a2aa6 Binary files /dev/null and b/www/assets/images/items/resourcesink-emptycanister-c_64.png differ diff --git a/www/assets/images/items/resourcesink-emptyfluidtank-c_256.png b/www/assets/images/items/resourcesink-emptyfluidtank-c_256.png new file mode 100644 index 00000000..b87812aa Binary files /dev/null and b/www/assets/images/items/resourcesink-emptyfluidtank-c_256.png differ diff --git a/www/assets/images/items/resourcesink-emptyfluidtank-c_64.png b/www/assets/images/items/resourcesink-emptyfluidtank-c_64.png new file mode 100644 index 00000000..67d26766 Binary files /dev/null and b/www/assets/images/items/resourcesink-emptyfluidtank-c_64.png differ diff --git a/www/assets/images/items/resourcesink-encasedindustrialbeam-c_256.png b/www/assets/images/items/resourcesink-encasedindustrialbeam-c_256.png new file mode 100644 index 00000000..3988e83f Binary files /dev/null and b/www/assets/images/items/resourcesink-encasedindustrialbeam-c_256.png differ diff --git a/www/assets/images/items/resourcesink-encasedindustrialbeam-c_64.png b/www/assets/images/items/resourcesink-encasedindustrialbeam-c_64.png new file mode 100644 index 00000000..fd7cf390 Binary files /dev/null and b/www/assets/images/items/resourcesink-encasedindustrialbeam-c_64.png differ diff --git a/www/assets/images/items/resourcesink-explosives-c_256.png b/www/assets/images/items/resourcesink-explosives-c_256.png new file mode 100644 index 00000000..eb0d4896 Binary files /dev/null and b/www/assets/images/items/resourcesink-explosives-c_256.png differ diff --git a/www/assets/images/items/resourcesink-explosives-c_64.png b/www/assets/images/items/resourcesink-explosives-c_64.png new file mode 100644 index 00000000..7a708253 Binary files /dev/null and b/www/assets/images/items/resourcesink-explosives-c_64.png differ diff --git a/www/assets/images/items/resourcesink-fabric-c_256.png b/www/assets/images/items/resourcesink-fabric-c_256.png new file mode 100644 index 00000000..0df5b47c Binary files /dev/null and b/www/assets/images/items/resourcesink-fabric-c_256.png differ diff --git a/www/assets/images/items/resourcesink-fabric-c_64.png b/www/assets/images/items/resourcesink-fabric-c_64.png new file mode 100644 index 00000000..8ebda4a6 Binary files /dev/null and b/www/assets/images/items/resourcesink-fabric-c_64.png differ diff --git a/www/assets/images/items/resourcesink-factorybarrier-c_256.png b/www/assets/images/items/resourcesink-factorybarrier-c_256.png new file mode 100644 index 00000000..fa1edbaf Binary files /dev/null and b/www/assets/images/items/resourcesink-factorybarrier-c_256.png differ diff --git a/www/assets/images/items/resourcesink-factorybarrier-c_64.png b/www/assets/images/items/resourcesink-factorybarrier-c_64.png new file mode 100644 index 00000000..d96e8713 Binary files /dev/null and b/www/assets/images/items/resourcesink-factorybarrier-c_64.png differ diff --git a/www/assets/images/items/resourcesink-factorybarrier2-c_256.png b/www/assets/images/items/resourcesink-factorybarrier2-c_256.png new file mode 100644 index 00000000..c8053c55 Binary files /dev/null and b/www/assets/images/items/resourcesink-factorybarrier2-c_256.png differ diff --git a/www/assets/images/items/resourcesink-factorybarrier2-c_64.png b/www/assets/images/items/resourcesink-factorybarrier2-c_64.png new file mode 100644 index 00000000..a6550e02 Binary files /dev/null and b/www/assets/images/items/resourcesink-factorybarrier2-c_64.png differ diff --git a/www/assets/images/items/resourcesink-factorycart-c_256.png b/www/assets/images/items/resourcesink-factorycart-c_256.png new file mode 100644 index 00000000..2a5dfc53 Binary files /dev/null and b/www/assets/images/items/resourcesink-factorycart-c_256.png differ diff --git a/www/assets/images/items/resourcesink-factorycart-c_64.png b/www/assets/images/items/resourcesink-factorycart-c_64.png new file mode 100644 index 00000000..dd966523 Binary files /dev/null and b/www/assets/images/items/resourcesink-factorycart-c_64.png differ diff --git a/www/assets/images/items/resourcesink-factoryfence-c_256.png b/www/assets/images/items/resourcesink-factoryfence-c_256.png new file mode 100644 index 00000000..801f8391 Binary files /dev/null and b/www/assets/images/items/resourcesink-factoryfence-c_256.png differ diff --git a/www/assets/images/items/resourcesink-factoryfence-c_64.png b/www/assets/images/items/resourcesink-factoryfence-c_64.png new file mode 100644 index 00000000..2c63e90c Binary files /dev/null and b/www/assets/images/items/resourcesink-factoryfence-c_64.png differ diff --git a/www/assets/images/items/resourcesink-factoryrailing-c_256.png b/www/assets/images/items/resourcesink-factoryrailing-c_256.png new file mode 100644 index 00000000..30b38ad3 Binary files /dev/null and b/www/assets/images/items/resourcesink-factoryrailing-c_256.png differ diff --git a/www/assets/images/items/resourcesink-factoryrailing-c_64.png b/www/assets/images/items/resourcesink-factoryrailing-c_64.png new file mode 100644 index 00000000..eda5c5f6 Binary files /dev/null and b/www/assets/images/items/resourcesink-factoryrailing-c_64.png differ diff --git a/www/assets/images/items/resourcesink-fences-c_256.png b/www/assets/images/items/resourcesink-fences-c_256.png new file mode 100644 index 00000000..e82b2a07 Binary files /dev/null and b/www/assets/images/items/resourcesink-fences-c_256.png differ diff --git a/www/assets/images/items/resourcesink-fences-c_64.png b/www/assets/images/items/resourcesink-fences-c_64.png new file mode 100644 index 00000000..c5af4e2f Binary files /dev/null and b/www/assets/images/items/resourcesink-fences-c_64.png differ diff --git a/www/assets/images/items/resourcesink-ficsitetrigon-c_256.png b/www/assets/images/items/resourcesink-ficsitetrigon-c_256.png new file mode 100644 index 00000000..76711103 Binary files /dev/null and b/www/assets/images/items/resourcesink-ficsitetrigon-c_256.png differ diff --git a/www/assets/images/items/resourcesink-ficsitetrigon-c_64.png b/www/assets/images/items/resourcesink-ficsitetrigon-c_64.png new file mode 100644 index 00000000..c2ce7621 Binary files /dev/null and b/www/assets/images/items/resourcesink-ficsitetrigon-c_64.png differ diff --git a/www/assets/images/items/resourcesink-foudationpillar-c_256.png b/www/assets/images/items/resourcesink-foudationpillar-c_256.png new file mode 100644 index 00000000..6015a8e7 Binary files /dev/null and b/www/assets/images/items/resourcesink-foudationpillar-c_256.png differ diff --git a/www/assets/images/items/resourcesink-foudationpillar-c_64.png b/www/assets/images/items/resourcesink-foudationpillar-c_64.png new file mode 100644 index 00000000..c137ce37 Binary files /dev/null and b/www/assets/images/items/resourcesink-foudationpillar-c_64.png differ diff --git a/www/assets/images/items/resourcesink-foundationexpansionpack-c_256.png b/www/assets/images/items/resourcesink-foundationexpansionpack-c_256.png new file mode 100644 index 00000000..210af3f1 Binary files /dev/null and b/www/assets/images/items/resourcesink-foundationexpansionpack-c_256.png differ diff --git a/www/assets/images/items/resourcesink-foundationexpansionpack-c_64.png b/www/assets/images/items/resourcesink-foundationexpansionpack-c_64.png new file mode 100644 index 00000000..ef36c0e7 Binary files /dev/null and b/www/assets/images/items/resourcesink-foundationexpansionpack-c_64.png differ diff --git a/www/assets/images/items/resourcesink-foundationstairs-c_256.png b/www/assets/images/items/resourcesink-foundationstairs-c_256.png new file mode 100644 index 00000000..f593598b Binary files /dev/null and b/www/assets/images/items/resourcesink-foundationstairs-c_256.png differ diff --git a/www/assets/images/items/resourcesink-foundationstairs-c_64.png b/www/assets/images/items/resourcesink-foundationstairs-c_64.png new file mode 100644 index 00000000..b587d9c8 Binary files /dev/null and b/www/assets/images/items/resourcesink-foundationstairs-c_64.png differ diff --git a/www/assets/images/items/resourcesink-framepillarset-c_256.png b/www/assets/images/items/resourcesink-framepillarset-c_256.png new file mode 100644 index 00000000..5777dda3 Binary files /dev/null and b/www/assets/images/items/resourcesink-framepillarset-c_256.png differ diff --git a/www/assets/images/items/resourcesink-framepillarset-c_64.png b/www/assets/images/items/resourcesink-framepillarset-c_64.png new file mode 100644 index 00000000..3f77fdd1 Binary files /dev/null and b/www/assets/images/items/resourcesink-framepillarset-c_64.png differ diff --git a/www/assets/images/items/resourcesink-framewindows-c_256.png b/www/assets/images/items/resourcesink-framewindows-c_256.png new file mode 100644 index 00000000..a08b7061 Binary files /dev/null and b/www/assets/images/items/resourcesink-framewindows-c_256.png differ diff --git a/www/assets/images/items/resourcesink-framewindows-c_64.png b/www/assets/images/items/resourcesink-framewindows-c_64.png new file mode 100644 index 00000000..cb1dc5cd Binary files /dev/null and b/www/assets/images/items/resourcesink-framewindows-c_64.png differ diff --git a/www/assets/images/items/resourcesink-frameworkfoundations-c_256.png b/www/assets/images/items/resourcesink-frameworkfoundations-c_256.png new file mode 100644 index 00000000..5ae8f07e Binary files /dev/null and b/www/assets/images/items/resourcesink-frameworkfoundations-c_256.png differ diff --git a/www/assets/images/items/resourcesink-frameworkfoundations-c_64.png b/www/assets/images/items/resourcesink-frameworkfoundations-c_64.png new file mode 100644 index 00000000..f9c34b6e Binary files /dev/null and b/www/assets/images/items/resourcesink-frameworkfoundations-c_64.png differ diff --git a/www/assets/images/items/resourcesink-fulllines-foundationpatterns-c_256.png b/www/assets/images/items/resourcesink-fulllines-foundationpatterns-c_256.png new file mode 100644 index 00000000..61409ec8 Binary files /dev/null and b/www/assets/images/items/resourcesink-fulllines-foundationpatterns-c_256.png differ diff --git a/www/assets/images/items/resourcesink-fulllines-foundationpatterns-c_64.png b/www/assets/images/items/resourcesink-fulllines-foundationpatterns-c_64.png new file mode 100644 index 00000000..a944650d Binary files /dev/null and b/www/assets/images/items/resourcesink-fulllines-foundationpatterns-c_64.png differ diff --git a/www/assets/images/items/resourcesink-fusedmodularframe-c_256.png b/www/assets/images/items/resourcesink-fusedmodularframe-c_256.png new file mode 100644 index 00000000..b179d832 Binary files /dev/null and b/www/assets/images/items/resourcesink-fusedmodularframe-c_256.png differ diff --git a/www/assets/images/items/resourcesink-fusedmodularframe-c_64.png b/www/assets/images/items/resourcesink-fusedmodularframe-c_64.png new file mode 100644 index 00000000..28d61850 Binary files /dev/null and b/www/assets/images/items/resourcesink-fusedmodularframe-c_64.png differ diff --git a/www/assets/images/items/resourcesink-gasfilters-c_256.png b/www/assets/images/items/resourcesink-gasfilters-c_256.png new file mode 100644 index 00000000..28a7af87 Binary files /dev/null and b/www/assets/images/items/resourcesink-gasfilters-c_256.png differ diff --git a/www/assets/images/items/resourcesink-gasfilters-c_64.png b/www/assets/images/items/resourcesink-gasfilters-c_64.png new file mode 100644 index 00000000..0268b988 Binary files /dev/null and b/www/assets/images/items/resourcesink-gasfilters-c_64.png differ diff --git a/www/assets/images/items/resourcesink-gatewalls-c_256.png b/www/assets/images/items/resourcesink-gatewalls-c_256.png new file mode 100644 index 00000000..08b323e9 Binary files /dev/null and b/www/assets/images/items/resourcesink-gatewalls-c_256.png differ diff --git a/www/assets/images/items/resourcesink-gatewalls-c_64.png b/www/assets/images/items/resourcesink-gatewalls-c_64.png new file mode 100644 index 00000000..01b3f128 Binary files /dev/null and b/www/assets/images/items/resourcesink-gatewalls-c_64.png differ diff --git a/www/assets/images/items/resourcesink-goldencart-c_256.png b/www/assets/images/items/resourcesink-goldencart-c_256.png new file mode 100644 index 00000000..8582df3d Binary files /dev/null and b/www/assets/images/items/resourcesink-goldencart-c_256.png differ diff --git a/www/assets/images/items/resourcesink-goldencart-c_64.png b/www/assets/images/items/resourcesink-goldencart-c_64.png new file mode 100644 index 00000000..afef788e Binary files /dev/null and b/www/assets/images/items/resourcesink-goldencart-c_64.png differ diff --git a/www/assets/images/items/resourcesink-goldencup-c_256.png b/www/assets/images/items/resourcesink-goldencup-c_256.png new file mode 100644 index 00000000..1e5ae5d0 Binary files /dev/null and b/www/assets/images/items/resourcesink-goldencup-c_256.png differ diff --git a/www/assets/images/items/resourcesink-goldencup-c_64.png b/www/assets/images/items/resourcesink-goldencup-c_64.png new file mode 100644 index 00000000..d5f4be00 Binary files /dev/null and b/www/assets/images/items/resourcesink-goldencup-c_64.png differ diff --git a/www/assets/images/items/resourcesink-halffoundations-c_256.png b/www/assets/images/items/resourcesink-halffoundations-c_256.png new file mode 100644 index 00000000..b8f0a455 Binary files /dev/null and b/www/assets/images/items/resourcesink-halffoundations-c_256.png differ diff --git a/www/assets/images/items/resourcesink-halffoundations-c_64.png b/www/assets/images/items/resourcesink-halffoundations-c_64.png new file mode 100644 index 00000000..60a393ae Binary files /dev/null and b/www/assets/images/items/resourcesink-halffoundations-c_64.png differ diff --git a/www/assets/images/items/resourcesink-hazardboxskin-c_256.png b/www/assets/images/items/resourcesink-hazardboxskin-c_256.png new file mode 100644 index 00000000..3d82ce87 Binary files /dev/null and b/www/assets/images/items/resourcesink-hazardboxskin-c_256.png differ diff --git a/www/assets/images/items/resourcesink-hazardboxskin-c_64.png b/www/assets/images/items/resourcesink-hazardboxskin-c_64.png new file mode 100644 index 00000000..e8db3cd6 Binary files /dev/null and b/www/assets/images/items/resourcesink-hazardboxskin-c_64.png differ diff --git a/www/assets/images/items/resourcesink-healthpack-c_256.png b/www/assets/images/items/resourcesink-healthpack-c_256.png new file mode 100644 index 00000000..af9622a9 Binary files /dev/null and b/www/assets/images/items/resourcesink-healthpack-c_256.png differ diff --git a/www/assets/images/items/resourcesink-healthpack-c_64.png b/www/assets/images/items/resourcesink-healthpack-c_64.png new file mode 100644 index 00000000..bd9fa403 Binary files /dev/null and b/www/assets/images/items/resourcesink-healthpack-c_64.png differ diff --git a/www/assets/images/items/resourcesink-heatsink-c_256.png b/www/assets/images/items/resourcesink-heatsink-c_256.png new file mode 100644 index 00000000..c5ce4e58 Binary files /dev/null and b/www/assets/images/items/resourcesink-heatsink-c_256.png differ diff --git a/www/assets/images/items/resourcesink-heatsink-c_64.png b/www/assets/images/items/resourcesink-heatsink-c_64.png new file mode 100644 index 00000000..d0a28b24 Binary files /dev/null and b/www/assets/images/items/resourcesink-heatsink-c_64.png differ diff --git a/www/assets/images/items/resourcesink-heavymodularframe-c_256.png b/www/assets/images/items/resourcesink-heavymodularframe-c_256.png new file mode 100644 index 00000000..f3e340fa Binary files /dev/null and b/www/assets/images/items/resourcesink-heavymodularframe-c_256.png differ diff --git a/www/assets/images/items/resourcesink-heavymodularframe-c_64.png b/www/assets/images/items/resourcesink-heavymodularframe-c_64.png new file mode 100644 index 00000000..1b364104 Binary files /dev/null and b/www/assets/images/items/resourcesink-heavymodularframe-c_64.png differ diff --git a/www/assets/images/items/resourcesink-highspeedconnector-c_256.png b/www/assets/images/items/resourcesink-highspeedconnector-c_256.png new file mode 100644 index 00000000..09fcc315 Binary files /dev/null and b/www/assets/images/items/resourcesink-highspeedconnector-c_256.png differ diff --git a/www/assets/images/items/resourcesink-highspeedconnector-c_64.png b/www/assets/images/items/resourcesink-highspeedconnector-c_64.png new file mode 100644 index 00000000..7978c9a6 Binary files /dev/null and b/www/assets/images/items/resourcesink-highspeedconnector-c_64.png differ diff --git a/www/assets/images/items/resourcesink-hypertubefloorhole-c_256.png b/www/assets/images/items/resourcesink-hypertubefloorhole-c_256.png new file mode 100644 index 00000000..46da9068 Binary files /dev/null and b/www/assets/images/items/resourcesink-hypertubefloorhole-c_256.png differ diff --git a/www/assets/images/items/resourcesink-hypertubefloorhole-c_64.png b/www/assets/images/items/resourcesink-hypertubefloorhole-c_64.png new file mode 100644 index 00000000..9804651f Binary files /dev/null and b/www/assets/images/items/resourcesink-hypertubefloorhole-c_64.png differ diff --git a/www/assets/images/items/resourcesink-hypertubewallattachements-c_256.png b/www/assets/images/items/resourcesink-hypertubewallattachements-c_256.png new file mode 100644 index 00000000..2ac5fa19 Binary files /dev/null and b/www/assets/images/items/resourcesink-hypertubewallattachements-c_256.png differ diff --git a/www/assets/images/items/resourcesink-hypertubewallattachements-c_64.png b/www/assets/images/items/resourcesink-hypertubewallattachements-c_64.png new file mode 100644 index 00000000..6fa2a9ff Binary files /dev/null and b/www/assets/images/items/resourcesink-hypertubewallattachements-c_64.png differ diff --git a/www/assets/images/items/resourcesink-iconsfactory-foundationpatterns-c_256.png b/www/assets/images/items/resourcesink-iconsfactory-foundationpatterns-c_256.png new file mode 100644 index 00000000..44655d17 Binary files /dev/null and b/www/assets/images/items/resourcesink-iconsfactory-foundationpatterns-c_256.png differ diff --git a/www/assets/images/items/resourcesink-iconsfactory-foundationpatterns-c_64.png b/www/assets/images/items/resourcesink-iconsfactory-foundationpatterns-c_64.png new file mode 100644 index 00000000..2d9383cb Binary files /dev/null and b/www/assets/images/items/resourcesink-iconsfactory-foundationpatterns-c_64.png differ diff --git a/www/assets/images/items/resourcesink-iconstransport-foundationpatterns-c_256.png b/www/assets/images/items/resourcesink-iconstransport-foundationpatterns-c_256.png new file mode 100644 index 00000000..b21d26bb Binary files /dev/null and b/www/assets/images/items/resourcesink-iconstransport-foundationpatterns-c_256.png differ diff --git a/www/assets/images/items/resourcesink-iconstransport-foundationpatterns-c_64.png b/www/assets/images/items/resourcesink-iconstransport-foundationpatterns-c_64.png new file mode 100644 index 00000000..145f2a34 Binary files /dev/null and b/www/assets/images/items/resourcesink-iconstransport-foundationpatterns-c_64.png differ diff --git a/www/assets/images/items/resourcesink-invertedcornerramps-c_256.png b/www/assets/images/items/resourcesink-invertedcornerramps-c_256.png new file mode 100644 index 00000000..6f2d3c48 Binary files /dev/null and b/www/assets/images/items/resourcesink-invertedcornerramps-c_256.png differ diff --git a/www/assets/images/items/resourcesink-invertedcornerramps-c_64.png b/www/assets/images/items/resourcesink-invertedcornerramps-c_64.png new file mode 100644 index 00000000..294bb501 Binary files /dev/null and b/www/assets/images/items/resourcesink-invertedcornerramps-c_64.png differ diff --git a/www/assets/images/items/resourcesink-invertedramppack-c_256.png b/www/assets/images/items/resourcesink-invertedramppack-c_256.png new file mode 100644 index 00000000..e6373a41 Binary files /dev/null and b/www/assets/images/items/resourcesink-invertedramppack-c_256.png differ diff --git a/www/assets/images/items/resourcesink-invertedramppack-c_64.png b/www/assets/images/items/resourcesink-invertedramppack-c_64.png new file mode 100644 index 00000000..1aee551f Binary files /dev/null and b/www/assets/images/items/resourcesink-invertedramppack-c_64.png differ diff --git a/www/assets/images/items/resourcesink-ionizedfuel-c_256.png b/www/assets/images/items/resourcesink-ionizedfuel-c_256.png new file mode 100644 index 00000000..1a318080 Binary files /dev/null and b/www/assets/images/items/resourcesink-ionizedfuel-c_256.png differ diff --git a/www/assets/images/items/resourcesink-ionizedfuel-c_64.png b/www/assets/images/items/resourcesink-ionizedfuel-c_64.png new file mode 100644 index 00000000..d3d733be Binary files /dev/null and b/www/assets/images/items/resourcesink-ionizedfuel-c_64.png differ diff --git a/www/assets/images/items/resourcesink-labelsigns-c_256.png b/www/assets/images/items/resourcesink-labelsigns-c_256.png new file mode 100644 index 00000000..ad684dde Binary files /dev/null and b/www/assets/images/items/resourcesink-labelsigns-c_256.png differ diff --git a/www/assets/images/items/resourcesink-labelsigns-c_64.png b/www/assets/images/items/resourcesink-labelsigns-c_64.png new file mode 100644 index 00000000..50c1dc73 Binary files /dev/null and b/www/assets/images/items/resourcesink-labelsigns-c_64.png differ diff --git a/www/assets/images/items/resourcesink-ladders-c_256.png b/www/assets/images/items/resourcesink-ladders-c_256.png new file mode 100644 index 00000000..d2ee3b36 Binary files /dev/null and b/www/assets/images/items/resourcesink-ladders-c_256.png differ diff --git a/www/assets/images/items/resourcesink-ladders-c_64.png b/www/assets/images/items/resourcesink-ladders-c_64.png new file mode 100644 index 00000000..6514ac8b Binary files /dev/null and b/www/assets/images/items/resourcesink-ladders-c_64.png differ diff --git a/www/assets/images/items/resourcesink-lightcontrolpanel-c_256.png b/www/assets/images/items/resourcesink-lightcontrolpanel-c_256.png new file mode 100644 index 00000000..616d7aa0 Binary files /dev/null and b/www/assets/images/items/resourcesink-lightcontrolpanel-c_256.png differ diff --git a/www/assets/images/items/resourcesink-lightcontrolpanel-c_64.png b/www/assets/images/items/resourcesink-lightcontrolpanel-c_64.png new file mode 100644 index 00000000..4ab2b8c2 Binary files /dev/null and b/www/assets/images/items/resourcesink-lightcontrolpanel-c_64.png differ diff --git a/www/assets/images/items/resourcesink-lighttower-c_256.png b/www/assets/images/items/resourcesink-lighttower-c_256.png new file mode 100644 index 00000000..62ca0a85 Binary files /dev/null and b/www/assets/images/items/resourcesink-lighttower-c_256.png differ diff --git a/www/assets/images/items/resourcesink-lighttower-c_64.png b/www/assets/images/items/resourcesink-lighttower-c_64.png new file mode 100644 index 00000000..a4744d11 Binary files /dev/null and b/www/assets/images/items/resourcesink-lighttower-c_64.png differ diff --git a/www/assets/images/items/resourcesink-medicalboxskin-c_256.png b/www/assets/images/items/resourcesink-medicalboxskin-c_256.png new file mode 100644 index 00000000..c7f2c0a5 Binary files /dev/null and b/www/assets/images/items/resourcesink-medicalboxskin-c_256.png differ diff --git a/www/assets/images/items/resourcesink-medicalboxskin-c_64.png b/www/assets/images/items/resourcesink-medicalboxskin-c_64.png new file mode 100644 index 00000000..6f21345d Binary files /dev/null and b/www/assets/images/items/resourcesink-medicalboxskin-c_64.png differ diff --git a/www/assets/images/items/resourcesink-modularframe-c_256.png b/www/assets/images/items/resourcesink-modularframe-c_256.png new file mode 100644 index 00000000..3a8a7113 Binary files /dev/null and b/www/assets/images/items/resourcesink-modularframe-c_256.png differ diff --git a/www/assets/images/items/resourcesink-modularframe-c_64.png b/www/assets/images/items/resourcesink-modularframe-c_64.png new file mode 100644 index 00000000..5bf9b409 Binary files /dev/null and b/www/assets/images/items/resourcesink-modularframe-c_64.png differ diff --git a/www/assets/images/items/resourcesink-motor-c_256.png b/www/assets/images/items/resourcesink-motor-c_256.png new file mode 100644 index 00000000..423536bc Binary files /dev/null and b/www/assets/images/items/resourcesink-motor-c_256.png differ diff --git a/www/assets/images/items/resourcesink-motor-c_64.png b/www/assets/images/items/resourcesink-motor-c_64.png new file mode 100644 index 00000000..95227f65 Binary files /dev/null and b/www/assets/images/items/resourcesink-motor-c_64.png differ diff --git a/www/assets/images/items/resourcesink-neuralquantumprocessor-c_256.png b/www/assets/images/items/resourcesink-neuralquantumprocessor-c_256.png new file mode 100644 index 00000000..6dec02dc Binary files /dev/null and b/www/assets/images/items/resourcesink-neuralquantumprocessor-c_256.png differ diff --git a/www/assets/images/items/resourcesink-neuralquantumprocessor-c_64.png b/www/assets/images/items/resourcesink-neuralquantumprocessor-c_64.png new file mode 100644 index 00000000..0627c8cf Binary files /dev/null and b/www/assets/images/items/resourcesink-neuralquantumprocessor-c_64.png differ diff --git a/www/assets/images/items/resourcesink-nobeliskcluster-c_256.png b/www/assets/images/items/resourcesink-nobeliskcluster-c_256.png new file mode 100644 index 00000000..8f9d5dc7 Binary files /dev/null and b/www/assets/images/items/resourcesink-nobeliskcluster-c_256.png differ diff --git a/www/assets/images/items/resourcesink-nobeliskcluster-c_64.png b/www/assets/images/items/resourcesink-nobeliskcluster-c_64.png new file mode 100644 index 00000000..0413d21f Binary files /dev/null and b/www/assets/images/items/resourcesink-nobeliskcluster-c_64.png differ diff --git a/www/assets/images/items/resourcesink-nobeliskgas-c_256.png b/www/assets/images/items/resourcesink-nobeliskgas-c_256.png new file mode 100644 index 00000000..defecb66 Binary files /dev/null and b/www/assets/images/items/resourcesink-nobeliskgas-c_256.png differ diff --git a/www/assets/images/items/resourcesink-nobeliskgas-c_64.png b/www/assets/images/items/resourcesink-nobeliskgas-c_64.png new file mode 100644 index 00000000..e23e6bfe Binary files /dev/null and b/www/assets/images/items/resourcesink-nobeliskgas-c_64.png differ diff --git a/www/assets/images/items/resourcesink-nobeliskpulse-c_256.png b/www/assets/images/items/resourcesink-nobeliskpulse-c_256.png new file mode 100644 index 00000000..51bf80d9 Binary files /dev/null and b/www/assets/images/items/resourcesink-nobeliskpulse-c_256.png differ diff --git a/www/assets/images/items/resourcesink-nobeliskpulse-c_64.png b/www/assets/images/items/resourcesink-nobeliskpulse-c_64.png new file mode 100644 index 00000000..d61dc47f Binary files /dev/null and b/www/assets/images/items/resourcesink-nobeliskpulse-c_64.png differ diff --git a/www/assets/images/items/resourcesink-noindicator-pipelinemk1-c_256.png b/www/assets/images/items/resourcesink-noindicator-pipelinemk1-c_256.png new file mode 100644 index 00000000..71de64c1 Binary files /dev/null and b/www/assets/images/items/resourcesink-noindicator-pipelinemk1-c_256.png differ diff --git a/www/assets/images/items/resourcesink-noindicator-pipelinemk1-c_64.png b/www/assets/images/items/resourcesink-noindicator-pipelinemk1-c_64.png new file mode 100644 index 00000000..b5f2e930 Binary files /dev/null and b/www/assets/images/items/resourcesink-noindicator-pipelinemk1-c_64.png differ diff --git a/www/assets/images/items/resourcesink-noindicator-pipelinemk2-c_256.png b/www/assets/images/items/resourcesink-noindicator-pipelinemk2-c_256.png new file mode 100644 index 00000000..e97fa9eb Binary files /dev/null and b/www/assets/images/items/resourcesink-noindicator-pipelinemk2-c_256.png differ diff --git a/www/assets/images/items/resourcesink-noindicator-pipelinemk2-c_64.png b/www/assets/images/items/resourcesink-noindicator-pipelinemk2-c_64.png new file mode 100644 index 00000000..9de01461 Binary files /dev/null and b/www/assets/images/items/resourcesink-noindicator-pipelinemk2-c_64.png differ diff --git a/www/assets/images/items/resourcesink-number-foundationpatterns-c_256.png b/www/assets/images/items/resourcesink-number-foundationpatterns-c_256.png new file mode 100644 index 00000000..090e58b0 Binary files /dev/null and b/www/assets/images/items/resourcesink-number-foundationpatterns-c_256.png differ diff --git a/www/assets/images/items/resourcesink-number-foundationpatterns-c_64.png b/www/assets/images/items/resourcesink-number-foundationpatterns-c_64.png new file mode 100644 index 00000000..7156f13b Binary files /dev/null and b/www/assets/images/items/resourcesink-number-foundationpatterns-c_64.png differ diff --git a/www/assets/images/items/resourcesink-packagedbiofuel-c_256.png b/www/assets/images/items/resourcesink-packagedbiofuel-c_256.png new file mode 100644 index 00000000..b0f4adb2 Binary files /dev/null and b/www/assets/images/items/resourcesink-packagedbiofuel-c_256.png differ diff --git a/www/assets/images/items/resourcesink-packagedbiofuel-c_64.png b/www/assets/images/items/resourcesink-packagedbiofuel-c_64.png new file mode 100644 index 00000000..d1378db8 Binary files /dev/null and b/www/assets/images/items/resourcesink-packagedbiofuel-c_64.png differ diff --git a/www/assets/images/items/resourcesink-packagedfuel-c_256.png b/www/assets/images/items/resourcesink-packagedfuel-c_256.png new file mode 100644 index 00000000..61984eae Binary files /dev/null and b/www/assets/images/items/resourcesink-packagedfuel-c_256.png differ diff --git a/www/assets/images/items/resourcesink-packagedfuel-c_64.png b/www/assets/images/items/resourcesink-packagedfuel-c_64.png new file mode 100644 index 00000000..98996d63 Binary files /dev/null and b/www/assets/images/items/resourcesink-packagedfuel-c_64.png differ diff --git a/www/assets/images/items/resourcesink-packagedturbofuel-c_256.png b/www/assets/images/items/resourcesink-packagedturbofuel-c_256.png new file mode 100644 index 00000000..67fae5b2 Binary files /dev/null and b/www/assets/images/items/resourcesink-packagedturbofuel-c_256.png differ diff --git a/www/assets/images/items/resourcesink-packagedturbofuel-c_64.png b/www/assets/images/items/resourcesink-packagedturbofuel-c_64.png new file mode 100644 index 00000000..18d8e35c Binary files /dev/null and b/www/assets/images/items/resourcesink-packagedturbofuel-c_64.png differ diff --git a/www/assets/images/items/resourcesink-pathways-foundationpatterns-c_256.png b/www/assets/images/items/resourcesink-pathways-foundationpatterns-c_256.png new file mode 100644 index 00000000..058534af Binary files /dev/null and b/www/assets/images/items/resourcesink-pathways-foundationpatterns-c_256.png differ diff --git a/www/assets/images/items/resourcesink-pathways-foundationpatterns-c_64.png b/www/assets/images/items/resourcesink-pathways-foundationpatterns-c_64.png new file mode 100644 index 00000000..329c1d67 Binary files /dev/null and b/www/assets/images/items/resourcesink-pathways-foundationpatterns-c_64.png differ diff --git a/www/assets/images/items/resourcesink-pipelinefloorhole-c_256.png b/www/assets/images/items/resourcesink-pipelinefloorhole-c_256.png new file mode 100644 index 00000000..d11d4207 Binary files /dev/null and b/www/assets/images/items/resourcesink-pipelinefloorhole-c_256.png differ diff --git a/www/assets/images/items/resourcesink-pipelinefloorhole-c_64.png b/www/assets/images/items/resourcesink-pipelinefloorhole-c_64.png new file mode 100644 index 00000000..441303c9 Binary files /dev/null and b/www/assets/images/items/resourcesink-pipelinefloorhole-c_64.png differ diff --git a/www/assets/images/items/resourcesink-pipelinewallattachments-c_256.png b/www/assets/images/items/resourcesink-pipelinewallattachments-c_256.png new file mode 100644 index 00000000..81242071 Binary files /dev/null and b/www/assets/images/items/resourcesink-pipelinewallattachments-c_256.png differ diff --git a/www/assets/images/items/resourcesink-pipelinewallattachments-c_64.png b/www/assets/images/items/resourcesink-pipelinewallattachments-c_64.png new file mode 100644 index 00000000..cac97f67 Binary files /dev/null and b/www/assets/images/items/resourcesink-pipelinewallattachments-c_64.png differ diff --git a/www/assets/images/items/resourcesink-plastic-c_256.png b/www/assets/images/items/resourcesink-plastic-c_256.png new file mode 100644 index 00000000..51120109 Binary files /dev/null and b/www/assets/images/items/resourcesink-plastic-c_256.png differ diff --git a/www/assets/images/items/resourcesink-plastic-c_64.png b/www/assets/images/items/resourcesink-plastic-c_64.png new file mode 100644 index 00000000..25ce5e16 Binary files /dev/null and b/www/assets/images/items/resourcesink-plastic-c_64.png differ diff --git a/www/assets/images/items/resourcesink-plate-c_256.png b/www/assets/images/items/resourcesink-plate-c_256.png new file mode 100644 index 00000000..75ffc9db Binary files /dev/null and b/www/assets/images/items/resourcesink-plate-c_256.png differ diff --git a/www/assets/images/items/resourcesink-plate-c_64.png b/www/assets/images/items/resourcesink-plate-c_64.png new file mode 100644 index 00000000..9e223e7c Binary files /dev/null and b/www/assets/images/items/resourcesink-plate-c_64.png differ diff --git a/www/assets/images/items/resourcesink-pressureconversioncube-c_256.png b/www/assets/images/items/resourcesink-pressureconversioncube-c_256.png new file mode 100644 index 00000000..705906dd Binary files /dev/null and b/www/assets/images/items/resourcesink-pressureconversioncube-c_256.png differ diff --git a/www/assets/images/items/resourcesink-pressureconversioncube-c_64.png b/www/assets/images/items/resourcesink-pressureconversioncube-c_64.png new file mode 100644 index 00000000..430bc534 Binary files /dev/null and b/www/assets/images/items/resourcesink-pressureconversioncube-c_64.png differ diff --git a/www/assets/images/items/resourcesink-purchasable-harddrive-c_256.png b/www/assets/images/items/resourcesink-purchasable-harddrive-c_256.png new file mode 100644 index 00000000..be0340ee Binary files /dev/null and b/www/assets/images/items/resourcesink-purchasable-harddrive-c_256.png differ diff --git a/www/assets/images/items/resourcesink-purchasable-harddrive-c_64.png b/www/assets/images/items/resourcesink-purchasable-harddrive-c_64.png new file mode 100644 index 00000000..35bc1194 Binary files /dev/null and b/www/assets/images/items/resourcesink-purchasable-harddrive-c_64.png differ diff --git a/www/assets/images/items/resourcesink-quarterpipeextensions-c_256.png b/www/assets/images/items/resourcesink-quarterpipeextensions-c_256.png new file mode 100644 index 00000000..49c7de76 Binary files /dev/null and b/www/assets/images/items/resourcesink-quarterpipeextensions-c_256.png differ diff --git a/www/assets/images/items/resourcesink-quarterpipeextensions-c_64.png b/www/assets/images/items/resourcesink-quarterpipeextensions-c_64.png new file mode 100644 index 00000000..a0d5653d Binary files /dev/null and b/www/assets/images/items/resourcesink-quarterpipeextensions-c_64.png differ diff --git a/www/assets/images/items/resourcesink-quartzcrystal-c_256.png b/www/assets/images/items/resourcesink-quartzcrystal-c_256.png new file mode 100644 index 00000000..3bb0dfbf Binary files /dev/null and b/www/assets/images/items/resourcesink-quartzcrystal-c_256.png differ diff --git a/www/assets/images/items/resourcesink-quartzcrystal-c_64.png b/www/assets/images/items/resourcesink-quartzcrystal-c_64.png new file mode 100644 index 00000000..534afb8a Binary files /dev/null and b/www/assets/images/items/resourcesink-quartzcrystal-c_64.png differ diff --git a/www/assets/images/items/resourcesink-quickwire-c_256.png b/www/assets/images/items/resourcesink-quickwire-c_256.png new file mode 100644 index 00000000..96117fe7 Binary files /dev/null and b/www/assets/images/items/resourcesink-quickwire-c_256.png differ diff --git a/www/assets/images/items/resourcesink-quickwire-c_64.png b/www/assets/images/items/resourcesink-quickwire-c_64.png new file mode 100644 index 00000000..eaec4273 Binary files /dev/null and b/www/assets/images/items/resourcesink-quickwire-c_64.png differ diff --git a/www/assets/images/items/resourcesink-radiationfilters-c_256.png b/www/assets/images/items/resourcesink-radiationfilters-c_256.png new file mode 100644 index 00000000..6b891bd9 Binary files /dev/null and b/www/assets/images/items/resourcesink-radiationfilters-c_256.png differ diff --git a/www/assets/images/items/resourcesink-radiationfilters-c_64.png b/www/assets/images/items/resourcesink-radiationfilters-c_64.png new file mode 100644 index 00000000..efd3d766 Binary files /dev/null and b/www/assets/images/items/resourcesink-radiationfilters-c_64.png differ diff --git a/www/assets/images/items/resourcesink-radiocontrolunit-c_256.png b/www/assets/images/items/resourcesink-radiocontrolunit-c_256.png new file mode 100644 index 00000000..d9b414d0 Binary files /dev/null and b/www/assets/images/items/resourcesink-radiocontrolunit-c_256.png differ diff --git a/www/assets/images/items/resourcesink-radiocontrolunit-c_64.png b/www/assets/images/items/resourcesink-radiocontrolunit-c_64.png new file mode 100644 index 00000000..d198639d Binary files /dev/null and b/www/assets/images/items/resourcesink-radiocontrolunit-c_64.png differ diff --git a/www/assets/images/items/resourcesink-rebarexplosive-c_256.png b/www/assets/images/items/resourcesink-rebarexplosive-c_256.png new file mode 100644 index 00000000..4fd64c99 Binary files /dev/null and b/www/assets/images/items/resourcesink-rebarexplosive-c_256.png differ diff --git a/www/assets/images/items/resourcesink-rebarexplosive-c_64.png b/www/assets/images/items/resourcesink-rebarexplosive-c_64.png new file mode 100644 index 00000000..e5f3526d Binary files /dev/null and b/www/assets/images/items/resourcesink-rebarexplosive-c_64.png differ diff --git a/www/assets/images/items/resourcesink-rebarshatter-c_256.png b/www/assets/images/items/resourcesink-rebarshatter-c_256.png new file mode 100644 index 00000000..479d729b Binary files /dev/null and b/www/assets/images/items/resourcesink-rebarshatter-c_256.png differ diff --git a/www/assets/images/items/resourcesink-rebarshatter-c_64.png b/www/assets/images/items/resourcesink-rebarshatter-c_64.png new file mode 100644 index 00000000..f9fd07f4 Binary files /dev/null and b/www/assets/images/items/resourcesink-rebarshatter-c_64.png differ diff --git a/www/assets/images/items/resourcesink-rebarstun-c_256.png b/www/assets/images/items/resourcesink-rebarstun-c_256.png new file mode 100644 index 00000000..d08d3696 Binary files /dev/null and b/www/assets/images/items/resourcesink-rebarstun-c_256.png differ diff --git a/www/assets/images/items/resourcesink-rebarstun-c_64.png b/www/assets/images/items/resourcesink-rebarstun-c_64.png new file mode 100644 index 00000000..63e0df39 Binary files /dev/null and b/www/assets/images/items/resourcesink-rebarstun-c_64.png differ diff --git a/www/assets/images/items/resourcesink-reinforcedironplate-c_256.png b/www/assets/images/items/resourcesink-reinforcedironplate-c_256.png new file mode 100644 index 00000000..010d3310 Binary files /dev/null and b/www/assets/images/items/resourcesink-reinforcedironplate-c_256.png differ diff --git a/www/assets/images/items/resourcesink-reinforcedironplate-c_64.png b/www/assets/images/items/resourcesink-reinforcedironplate-c_64.png new file mode 100644 index 00000000..7de4e6b8 Binary files /dev/null and b/www/assets/images/items/resourcesink-reinforcedironplate-c_64.png differ diff --git a/www/assets/images/items/resourcesink-rifleammohoming-c_256.png b/www/assets/images/items/resourcesink-rifleammohoming-c_256.png new file mode 100644 index 00000000..97c794f2 Binary files /dev/null and b/www/assets/images/items/resourcesink-rifleammohoming-c_256.png differ diff --git a/www/assets/images/items/resourcesink-rifleammohoming-c_64.png b/www/assets/images/items/resourcesink-rifleammohoming-c_64.png new file mode 100644 index 00000000..2c4487f4 Binary files /dev/null and b/www/assets/images/items/resourcesink-rifleammohoming-c_64.png differ diff --git a/www/assets/images/items/resourcesink-rifleammoturbo-c_256.png b/www/assets/images/items/resourcesink-rifleammoturbo-c_256.png new file mode 100644 index 00000000..878d1cb7 Binary files /dev/null and b/www/assets/images/items/resourcesink-rifleammoturbo-c_256.png differ diff --git a/www/assets/images/items/resourcesink-rifleammoturbo-c_64.png b/www/assets/images/items/resourcesink-rifleammoturbo-c_64.png new file mode 100644 index 00000000..b43772ad Binary files /dev/null and b/www/assets/images/items/resourcesink-rifleammoturbo-c_64.png differ diff --git a/www/assets/images/items/resourcesink-rocketfuel-c_256.png b/www/assets/images/items/resourcesink-rocketfuel-c_256.png new file mode 100644 index 00000000..04e59ca7 Binary files /dev/null and b/www/assets/images/items/resourcesink-rocketfuel-c_256.png differ diff --git a/www/assets/images/items/resourcesink-rocketfuel-c_64.png b/www/assets/images/items/resourcesink-rocketfuel-c_64.png new file mode 100644 index 00000000..b15f784c Binary files /dev/null and b/www/assets/images/items/resourcesink-rocketfuel-c_64.png differ diff --git a/www/assets/images/items/resourcesink-rod-c_256.png b/www/assets/images/items/resourcesink-rod-c_256.png new file mode 100644 index 00000000..d4641ef1 Binary files /dev/null and b/www/assets/images/items/resourcesink-rod-c_256.png differ diff --git a/www/assets/images/items/resourcesink-rod-c_64.png b/www/assets/images/items/resourcesink-rod-c_64.png new file mode 100644 index 00000000..7f1966bc Binary files /dev/null and b/www/assets/images/items/resourcesink-rod-c_64.png differ diff --git a/www/assets/images/items/resourcesink-roofs-basic-c_256.png b/www/assets/images/items/resourcesink-roofs-basic-c_256.png new file mode 100644 index 00000000..35b828ab Binary files /dev/null and b/www/assets/images/items/resourcesink-roofs-basic-c_256.png differ diff --git a/www/assets/images/items/resourcesink-roofs-basic-c_64.png b/www/assets/images/items/resourcesink-roofs-basic-c_64.png new file mode 100644 index 00000000..ed73d764 Binary files /dev/null and b/www/assets/images/items/resourcesink-roofs-basic-c_64.png differ diff --git a/www/assets/images/items/resourcesink-roofs-corners-c_256.png b/www/assets/images/items/resourcesink-roofs-corners-c_256.png new file mode 100644 index 00000000..dc4dbeed Binary files /dev/null and b/www/assets/images/items/resourcesink-roofs-corners-c_256.png differ diff --git a/www/assets/images/items/resourcesink-roofs-corners-c_64.png b/www/assets/images/items/resourcesink-roofs-corners-c_64.png new file mode 100644 index 00000000..a6f3cdda Binary files /dev/null and b/www/assets/images/items/resourcesink-roofs-corners-c_64.png differ diff --git a/www/assets/images/items/resourcesink-rotor-c_256.png b/www/assets/images/items/resourcesink-rotor-c_256.png new file mode 100644 index 00000000..3bdfb512 Binary files /dev/null and b/www/assets/images/items/resourcesink-rotor-c_256.png differ diff --git a/www/assets/images/items/resourcesink-rotor-c_64.png b/www/assets/images/items/resourcesink-rotor-c_64.png new file mode 100644 index 00000000..8f3499a2 Binary files /dev/null and b/www/assets/images/items/resourcesink-rotor-c_64.png differ diff --git a/www/assets/images/items/resourcesink-rubber-c_256.png b/www/assets/images/items/resourcesink-rubber-c_256.png new file mode 100644 index 00000000..a58f6bde Binary files /dev/null and b/www/assets/images/items/resourcesink-rubber-c_256.png differ diff --git a/www/assets/images/items/resourcesink-rubber-c_64.png b/www/assets/images/items/resourcesink-rubber-c_64.png new file mode 100644 index 00000000..f12cd3de Binary files /dev/null and b/www/assets/images/items/resourcesink-rubber-c_64.png differ diff --git a/www/assets/images/items/resourcesink-screw-c_256.png b/www/assets/images/items/resourcesink-screw-c_256.png new file mode 100644 index 00000000..a8400877 Binary files /dev/null and b/www/assets/images/items/resourcesink-screw-c_256.png differ diff --git a/www/assets/images/items/resourcesink-screw-c_64.png b/www/assets/images/items/resourcesink-screw-c_64.png new file mode 100644 index 00000000..8e142075 Binary files /dev/null and b/www/assets/images/items/resourcesink-screw-c_64.png differ diff --git a/www/assets/images/items/resourcesink-silica-c_256.png b/www/assets/images/items/resourcesink-silica-c_256.png new file mode 100644 index 00000000..dbae9851 Binary files /dev/null and b/www/assets/images/items/resourcesink-silica-c_256.png differ diff --git a/www/assets/images/items/resourcesink-silica-c_64.png b/www/assets/images/items/resourcesink-silica-c_64.png new file mode 100644 index 00000000..b7b9c953 Binary files /dev/null and b/www/assets/images/items/resourcesink-silica-c_64.png differ diff --git a/www/assets/images/items/resourcesink-smokelesspowder-c_256.png b/www/assets/images/items/resourcesink-smokelesspowder-c_256.png new file mode 100644 index 00000000..fd994e76 Binary files /dev/null and b/www/assets/images/items/resourcesink-smokelesspowder-c_256.png differ diff --git a/www/assets/images/items/resourcesink-smokelesspowder-c_64.png b/www/assets/images/items/resourcesink-smokelesspowder-c_64.png new file mode 100644 index 00000000..7f959a68 Binary files /dev/null and b/www/assets/images/items/resourcesink-smokelesspowder-c_64.png differ diff --git a/www/assets/images/items/resourcesink-stator-c_256.png b/www/assets/images/items/resourcesink-stator-c_256.png new file mode 100644 index 00000000..00099e24 Binary files /dev/null and b/www/assets/images/items/resourcesink-stator-c_256.png differ diff --git a/www/assets/images/items/resourcesink-stator-c_64.png b/www/assets/images/items/resourcesink-stator-c_64.png new file mode 100644 index 00000000..743afb90 Binary files /dev/null and b/www/assets/images/items/resourcesink-stator-c_64.png differ diff --git a/www/assets/images/items/resourcesink-statue-hoggo-c_256.png b/www/assets/images/items/resourcesink-statue-hoggo-c_256.png new file mode 100644 index 00000000..66b77ba5 Binary files /dev/null and b/www/assets/images/items/resourcesink-statue-hoggo-c_256.png differ diff --git a/www/assets/images/items/resourcesink-statue-hoggo-c_64.png b/www/assets/images/items/resourcesink-statue-hoggo-c_64.png new file mode 100644 index 00000000..a01af0c0 Binary files /dev/null and b/www/assets/images/items/resourcesink-statue-hoggo-c_64.png differ diff --git a/www/assets/images/items/resourcesink-statuebronzepioneer-c_256.png b/www/assets/images/items/resourcesink-statuebronzepioneer-c_256.png new file mode 100644 index 00000000..6f41f7ac Binary files /dev/null and b/www/assets/images/items/resourcesink-statuebronzepioneer-c_256.png differ diff --git a/www/assets/images/items/resourcesink-statuebronzepioneer-c_64.png b/www/assets/images/items/resourcesink-statuebronzepioneer-c_64.png new file mode 100644 index 00000000..8c9bad85 Binary files /dev/null and b/www/assets/images/items/resourcesink-statuebronzepioneer-c_64.png differ diff --git a/www/assets/images/items/resourcesink-statuegoldennut-c_256.png b/www/assets/images/items/resourcesink-statuegoldennut-c_256.png new file mode 100644 index 00000000..4cf5cc01 Binary files /dev/null and b/www/assets/images/items/resourcesink-statuegoldennut-c_256.png differ diff --git a/www/assets/images/items/resourcesink-statuegoldennut-c_64.png b/www/assets/images/items/resourcesink-statuegoldennut-c_64.png new file mode 100644 index 00000000..7720ad56 Binary files /dev/null and b/www/assets/images/items/resourcesink-statuegoldennut-c_64.png differ diff --git a/www/assets/images/items/resourcesink-statuegoldpioneer-c_256.png b/www/assets/images/items/resourcesink-statuegoldpioneer-c_256.png new file mode 100644 index 00000000..de41dbf0 Binary files /dev/null and b/www/assets/images/items/resourcesink-statuegoldpioneer-c_256.png differ diff --git a/www/assets/images/items/resourcesink-statuegoldpioneer-c_64.png b/www/assets/images/items/resourcesink-statuegoldpioneer-c_64.png new file mode 100644 index 00000000..fb4d32ff Binary files /dev/null and b/www/assets/images/items/resourcesink-statuegoldpioneer-c_64.png differ diff --git a/www/assets/images/items/resourcesink-statuelizarddoggo-c_256.png b/www/assets/images/items/resourcesink-statuelizarddoggo-c_256.png new file mode 100644 index 00000000..e2408a21 Binary files /dev/null and b/www/assets/images/items/resourcesink-statuelizarddoggo-c_256.png differ diff --git a/www/assets/images/items/resourcesink-statuelizarddoggo-c_64.png b/www/assets/images/items/resourcesink-statuelizarddoggo-c_64.png new file mode 100644 index 00000000..9740f74f Binary files /dev/null and b/www/assets/images/items/resourcesink-statuelizarddoggo-c_64.png differ diff --git a/www/assets/images/items/resourcesink-statuesilverpioneer-c_256.png b/www/assets/images/items/resourcesink-statuesilverpioneer-c_256.png new file mode 100644 index 00000000..8e50ef4d Binary files /dev/null and b/www/assets/images/items/resourcesink-statuesilverpioneer-c_256.png differ diff --git a/www/assets/images/items/resourcesink-statuesilverpioneer-c_64.png b/www/assets/images/items/resourcesink-statuesilverpioneer-c_64.png new file mode 100644 index 00000000..a9ae9ce6 Binary files /dev/null and b/www/assets/images/items/resourcesink-statuesilverpioneer-c_64.png differ diff --git a/www/assets/images/items/resourcesink-statuespacegiraffe-c_256.png b/www/assets/images/items/resourcesink-statuespacegiraffe-c_256.png new file mode 100644 index 00000000..125854f1 Binary files /dev/null and b/www/assets/images/items/resourcesink-statuespacegiraffe-c_256.png differ diff --git a/www/assets/images/items/resourcesink-statuespacegiraffe-c_64.png b/www/assets/images/items/resourcesink-statuespacegiraffe-c_64.png new file mode 100644 index 00000000..7a0e2377 Binary files /dev/null and b/www/assets/images/items/resourcesink-statuespacegiraffe-c_64.png differ diff --git a/www/assets/images/items/resourcesink-steelbeam-c_256.png b/www/assets/images/items/resourcesink-steelbeam-c_256.png new file mode 100644 index 00000000..18d798cb Binary files /dev/null and b/www/assets/images/items/resourcesink-steelbeam-c_256.png differ diff --git a/www/assets/images/items/resourcesink-steelbeam-c_64.png b/www/assets/images/items/resourcesink-steelbeam-c_64.png new file mode 100644 index 00000000..718bda2d Binary files /dev/null and b/www/assets/images/items/resourcesink-steelbeam-c_64.png differ diff --git a/www/assets/images/items/resourcesink-steelpipe-c_256.png b/www/assets/images/items/resourcesink-steelpipe-c_256.png new file mode 100644 index 00000000..dffc724e Binary files /dev/null and b/www/assets/images/items/resourcesink-steelpipe-c_256.png differ diff --git a/www/assets/images/items/resourcesink-steelpipe-c_64.png b/www/assets/images/items/resourcesink-steelpipe-c_64.png new file mode 100644 index 00000000..f7fd5fc2 Binary files /dev/null and b/www/assets/images/items/resourcesink-steelpipe-c_64.png differ diff --git a/www/assets/images/items/resourcesink-streetlight-c_256.png b/www/assets/images/items/resourcesink-streetlight-c_256.png new file mode 100644 index 00000000..38b9c306 Binary files /dev/null and b/www/assets/images/items/resourcesink-streetlight-c_256.png differ diff --git a/www/assets/images/items/resourcesink-streetlight-c_64.png b/www/assets/images/items/resourcesink-streetlight-c_64.png new file mode 100644 index 00000000..15fcc2a4 Binary files /dev/null and b/www/assets/images/items/resourcesink-streetlight-c_64.png differ diff --git a/www/assets/images/items/resourcesink-supercomputer-c_256.png b/www/assets/images/items/resourcesink-supercomputer-c_256.png new file mode 100644 index 00000000..1de2ae53 Binary files /dev/null and b/www/assets/images/items/resourcesink-supercomputer-c_256.png differ diff --git a/www/assets/images/items/resourcesink-supercomputer-c_64.png b/www/assets/images/items/resourcesink-supercomputer-c_64.png new file mode 100644 index 00000000..ab44fb42 Binary files /dev/null and b/www/assets/images/items/resourcesink-supercomputer-c_64.png differ diff --git a/www/assets/images/items/resourcesink-superpositionoscillator-c_256.png b/www/assets/images/items/resourcesink-superpositionoscillator-c_256.png new file mode 100644 index 00000000..2a91beee Binary files /dev/null and b/www/assets/images/items/resourcesink-superpositionoscillator-c_256.png differ diff --git a/www/assets/images/items/resourcesink-superpositionoscillator-c_64.png b/www/assets/images/items/resourcesink-superpositionoscillator-c_64.png new file mode 100644 index 00000000..d28c8768 Binary files /dev/null and b/www/assets/images/items/resourcesink-superpositionoscillator-c_64.png differ diff --git a/www/assets/images/items/resourcesink-syntheticpowershard-c_256.png b/www/assets/images/items/resourcesink-syntheticpowershard-c_256.png new file mode 100644 index 00000000..793ffa4e Binary files /dev/null and b/www/assets/images/items/resourcesink-syntheticpowershard-c_256.png differ diff --git a/www/assets/images/items/resourcesink-syntheticpowershard-c_64.png b/www/assets/images/items/resourcesink-syntheticpowershard-c_64.png new file mode 100644 index 00000000..1006d66f Binary files /dev/null and b/www/assets/images/items/resourcesink-syntheticpowershard-c_64.png differ diff --git a/www/assets/images/items/resourcesink-tilted-walls-c_256.png b/www/assets/images/items/resourcesink-tilted-walls-c_256.png new file mode 100644 index 00000000..3ff417b1 Binary files /dev/null and b/www/assets/images/items/resourcesink-tilted-walls-c_256.png differ diff --git a/www/assets/images/items/resourcesink-tilted-walls-c_64.png b/www/assets/images/items/resourcesink-tilted-walls-c_64.png new file mode 100644 index 00000000..0b0a73f2 Binary files /dev/null and b/www/assets/images/items/resourcesink-tilted-walls-c_64.png differ diff --git a/www/assets/images/items/resourcesink-timecrystal-c_256.png b/www/assets/images/items/resourcesink-timecrystal-c_256.png new file mode 100644 index 00000000..d3778332 Binary files /dev/null and b/www/assets/images/items/resourcesink-timecrystal-c_256.png differ diff --git a/www/assets/images/items/resourcesink-timecrystal-c_64.png b/www/assets/images/items/resourcesink-timecrystal-c_64.png new file mode 100644 index 00000000..21669172 Binary files /dev/null and b/www/assets/images/items/resourcesink-timecrystal-c_64.png differ diff --git a/www/assets/images/items/resourcesink-turbomotor-c_256.png b/www/assets/images/items/resourcesink-turbomotor-c_256.png new file mode 100644 index 00000000..d4b72ace Binary files /dev/null and b/www/assets/images/items/resourcesink-turbomotor-c_256.png differ diff --git a/www/assets/images/items/resourcesink-turbomotor-c_64.png b/www/assets/images/items/resourcesink-turbomotor-c_64.png new file mode 100644 index 00000000..f2eada87 Binary files /dev/null and b/www/assets/images/items/resourcesink-turbomotor-c_64.png differ diff --git a/www/assets/images/items/resourcesink-unpainted-paintfinish-c_256.png b/www/assets/images/items/resourcesink-unpainted-paintfinish-c_256.png new file mode 100644 index 00000000..a2fc3912 Binary files /dev/null and b/www/assets/images/items/resourcesink-unpainted-paintfinish-c_256.png differ diff --git a/www/assets/images/items/resourcesink-unpainted-paintfinish-c_64.png b/www/assets/images/items/resourcesink-unpainted-paintfinish-c_64.png new file mode 100644 index 00000000..9e36889a Binary files /dev/null and b/www/assets/images/items/resourcesink-unpainted-paintfinish-c_64.png differ diff --git a/www/assets/images/items/resourcesink-walkways-c_256.png b/www/assets/images/items/resourcesink-walkways-c_256.png new file mode 100644 index 00000000..c4665689 Binary files /dev/null and b/www/assets/images/items/resourcesink-walkways-c_256.png differ diff --git a/www/assets/images/items/resourcesink-walkways-c_64.png b/www/assets/images/items/resourcesink-walkways-c_64.png new file mode 100644 index 00000000..68714cd1 Binary files /dev/null and b/www/assets/images/items/resourcesink-walkways-c_64.png differ diff --git a/www/assets/images/items/resourcesink-wallpowerpoles-c_256.png b/www/assets/images/items/resourcesink-wallpowerpoles-c_256.png new file mode 100644 index 00000000..eee73e25 Binary files /dev/null and b/www/assets/images/items/resourcesink-wallpowerpoles-c_256.png differ diff --git a/www/assets/images/items/resourcesink-wallpowerpoles-c_64.png b/www/assets/images/items/resourcesink-wallpowerpoles-c_64.png new file mode 100644 index 00000000..ba527c03 Binary files /dev/null and b/www/assets/images/items/resourcesink-wallpowerpoles-c_64.png differ diff --git a/www/assets/images/items/resourcesink-wallpowerpolesmk2-c_256.png b/www/assets/images/items/resourcesink-wallpowerpolesmk2-c_256.png new file mode 100644 index 00000000..b35729cd Binary files /dev/null and b/www/assets/images/items/resourcesink-wallpowerpolesmk2-c_256.png differ diff --git a/www/assets/images/items/resourcesink-wallpowerpolesmk2-c_64.png b/www/assets/images/items/resourcesink-wallpowerpolesmk2-c_64.png new file mode 100644 index 00000000..57782a63 Binary files /dev/null and b/www/assets/images/items/resourcesink-wallpowerpolesmk2-c_64.png differ diff --git a/www/assets/images/items/resourcesink-wallpowerpolesmk3-c_256.png b/www/assets/images/items/resourcesink-wallpowerpolesmk3-c_256.png new file mode 100644 index 00000000..849915c9 Binary files /dev/null and b/www/assets/images/items/resourcesink-wallpowerpolesmk3-c_256.png differ diff --git a/www/assets/images/items/resourcesink-wallpowerpolesmk3-c_64.png b/www/assets/images/items/resourcesink-wallpowerpolesmk3-c_64.png new file mode 100644 index 00000000..17dbae65 Binary files /dev/null and b/www/assets/images/items/resourcesink-wallpowerpolesmk3-c_64.png differ diff --git a/www/assets/images/items/resourcesink-windowedwalls-c_256.png b/www/assets/images/items/resourcesink-windowedwalls-c_256.png new file mode 100644 index 00000000..de0c1b82 Binary files /dev/null and b/www/assets/images/items/resourcesink-windowedwalls-c_256.png differ diff --git a/www/assets/images/items/resourcesink-windowedwalls-c_64.png b/www/assets/images/items/resourcesink-windowedwalls-c_64.png new file mode 100644 index 00000000..5002fe32 Binary files /dev/null and b/www/assets/images/items/resourcesink-windowedwalls-c_64.png differ diff --git a/www/assets/images/items/resourcesink-wire-c_256.png b/www/assets/images/items/resourcesink-wire-c_256.png new file mode 100644 index 00000000..afadbb9b Binary files /dev/null and b/www/assets/images/items/resourcesink-wire-c_256.png differ diff --git a/www/assets/images/items/resourcesink-wire-c_64.png b/www/assets/images/items/resourcesink-wire-c_64.png new file mode 100644 index 00000000..07e2710a Binary files /dev/null and b/www/assets/images/items/resourcesink-wire-c_64.png differ diff --git a/www/assets/images/items/resourcesink-zones-foundationpatterns-c_256.png b/www/assets/images/items/resourcesink-zones-foundationpatterns-c_256.png new file mode 100644 index 00000000..8d2578e2 Binary files /dev/null and b/www/assets/images/items/resourcesink-zones-foundationpatterns-c_256.png differ diff --git a/www/assets/images/items/resourcesink-zones-foundationpatterns-c_64.png b/www/assets/images/items/resourcesink-zones-foundationpatterns-c_64.png new file mode 100644 index 00000000..729edccf Binary files /dev/null and b/www/assets/images/items/resourcesink-zones-foundationpatterns-c_64.png differ diff --git a/www/assets/images/items/rifle-cartridge_256.png b/www/assets/images/items/rifle-cartridge_256.png deleted file mode 100644 index 5896d892..00000000 Binary files a/www/assets/images/items/rifle-cartridge_256.png and /dev/null differ diff --git a/www/assets/images/items/rifle-cartridge_64.png b/www/assets/images/items/rifle-cartridge_64.png deleted file mode 100644 index 432c59fa..00000000 Binary files a/www/assets/images/items/rifle-cartridge_64.png and /dev/null differ diff --git a/www/assets/images/items/rifle-cartridges_256.png b/www/assets/images/items/rifle-cartridges_256.png deleted file mode 100644 index 7b84262e..00000000 Binary files a/www/assets/images/items/rifle-cartridges_256.png and /dev/null differ diff --git a/www/assets/images/items/rifle-cartridges_64.png b/www/assets/images/items/rifle-cartridges_64.png deleted file mode 100644 index 7413c303..00000000 Binary files a/www/assets/images/items/rifle-cartridges_64.png and /dev/null differ diff --git a/www/assets/images/items/rifle-prototype_256.png b/www/assets/images/items/rifle-prototype_256.png deleted file mode 100644 index d02bce60..00000000 Binary files a/www/assets/images/items/rifle-prototype_256.png and /dev/null differ diff --git a/www/assets/images/items/rifle-prototype_64.png b/www/assets/images/items/rifle-prototype_64.png deleted file mode 100644 index 46e38de1..00000000 Binary files a/www/assets/images/items/rifle-prototype_64.png and /dev/null differ diff --git a/www/assets/images/items/rifle_256.png b/www/assets/images/items/rifle_256.png deleted file mode 100644 index 337096b9..00000000 Binary files a/www/assets/images/items/rifle_256.png and /dev/null differ diff --git a/www/assets/images/items/rifle_64.png b/www/assets/images/items/rifle_64.png deleted file mode 100644 index 677e9ad5..00000000 Binary files a/www/assets/images/items/rifle_64.png and /dev/null differ diff --git a/www/assets/images/items/right-door-wall-steel_256.png b/www/assets/images/items/right-door-wall-steel_256.png deleted file mode 100644 index 8339f8ab..00000000 Binary files a/www/assets/images/items/right-door-wall-steel_256.png and /dev/null differ diff --git a/www/assets/images/items/right-door-wall-steel_64.png b/www/assets/images/items/right-door-wall-steel_64.png deleted file mode 100644 index 1e4a77f2..00000000 Binary files a/www/assets/images/items/right-door-wall-steel_64.png and /dev/null differ diff --git a/www/assets/images/items/right-door-wall_256.png b/www/assets/images/items/right-door-wall_256.png deleted file mode 100644 index ecd96a9b..00000000 Binary files a/www/assets/images/items/right-door-wall_256.png and /dev/null differ diff --git a/www/assets/images/items/right-door-wall_64.png b/www/assets/images/items/right-door-wall_64.png deleted file mode 100644 index 0d1b9ed3..00000000 Binary files a/www/assets/images/items/right-door-wall_64.png and /dev/null differ diff --git a/www/assets/images/items/road-barrier-1_256.png b/www/assets/images/items/road-barrier-1_256.png deleted file mode 100644 index 00adc0e7..00000000 Binary files a/www/assets/images/items/road-barrier-1_256.png and /dev/null differ diff --git a/www/assets/images/items/road-barrier-1_64.png b/www/assets/images/items/road-barrier-1_64.png deleted file mode 100644 index a0500b7b..00000000 Binary files a/www/assets/images/items/road-barrier-1_64.png and /dev/null differ diff --git a/www/assets/images/items/road-barrier-concrete_256.png b/www/assets/images/items/road-barrier-concrete_256.png deleted file mode 100644 index 22303e0a..00000000 Binary files a/www/assets/images/items/road-barrier-concrete_256.png and /dev/null differ diff --git a/www/assets/images/items/road-barrier-concrete_64.png b/www/assets/images/items/road-barrier-concrete_64.png deleted file mode 100644 index 9c3c4e86..00000000 Binary files a/www/assets/images/items/road-barrier-concrete_64.png and /dev/null differ diff --git a/www/assets/images/items/road-barrier_256.png b/www/assets/images/items/road-barrier_256.png deleted file mode 100644 index 00adc0e7..00000000 Binary files a/www/assets/images/items/road-barrier_256.png and /dev/null differ diff --git a/www/assets/images/items/road-barrier_64.png b/www/assets/images/items/road-barrier_64.png deleted file mode 100644 index 567e9ab8..00000000 Binary files a/www/assets/images/items/road-barrier_64.png and /dev/null differ diff --git a/www/assets/images/items/rotor_256.png b/www/assets/images/items/rotor_256.png deleted file mode 100644 index f426df8a..00000000 Binary files a/www/assets/images/items/rotor_256.png and /dev/null differ diff --git a/www/assets/images/items/rotor_64.png b/www/assets/images/items/rotor_64.png deleted file mode 100644 index 3d92bd00..00000000 Binary files a/www/assets/images/items/rotor_64.png and /dev/null differ diff --git a/www/assets/images/items/rubber_256.png b/www/assets/images/items/rubber_256.png deleted file mode 100644 index c3d2fc2b..00000000 Binary files a/www/assets/images/items/rubber_256.png and /dev/null differ diff --git a/www/assets/images/items/rubber_64.png b/www/assets/images/items/rubber_64.png deleted file mode 100644 index 9343f33c..00000000 Binary files a/www/assets/images/items/rubber_64.png and /dev/null differ diff --git a/www/assets/images/items/schematic-1-1-c_256.png b/www/assets/images/items/schematic-1-1-c_256.png new file mode 100644 index 00000000..7a579ab3 Binary files /dev/null and b/www/assets/images/items/schematic-1-1-c_256.png differ diff --git a/www/assets/images/items/schematic-1-1-c_64.png b/www/assets/images/items/schematic-1-1-c_64.png new file mode 100644 index 00000000..fcd6bdc4 Binary files /dev/null and b/www/assets/images/items/schematic-1-1-c_64.png differ diff --git a/www/assets/images/items/schematic-1-2-c_256.png b/www/assets/images/items/schematic-1-2-c_256.png new file mode 100644 index 00000000..76d28b31 Binary files /dev/null and b/www/assets/images/items/schematic-1-2-c_256.png differ diff --git a/www/assets/images/items/schematic-1-2-c_64.png b/www/assets/images/items/schematic-1-2-c_64.png new file mode 100644 index 00000000..deb0fef7 Binary files /dev/null and b/www/assets/images/items/schematic-1-2-c_64.png differ diff --git a/www/assets/images/items/schematic-1-3-c_256.png b/www/assets/images/items/schematic-1-3-c_256.png new file mode 100644 index 00000000..a9590caa Binary files /dev/null and b/www/assets/images/items/schematic-1-3-c_256.png differ diff --git a/www/assets/images/items/schematic-1-3-c_64.png b/www/assets/images/items/schematic-1-3-c_64.png new file mode 100644 index 00000000..4dd7ca49 Binary files /dev/null and b/www/assets/images/items/schematic-1-3-c_64.png differ diff --git a/www/assets/images/items/schematic-2-1-c_256.png b/www/assets/images/items/schematic-2-1-c_256.png new file mode 100644 index 00000000..32981a24 Binary files /dev/null and b/www/assets/images/items/schematic-2-1-c_256.png differ diff --git a/www/assets/images/items/schematic-2-1-c_64.png b/www/assets/images/items/schematic-2-1-c_64.png new file mode 100644 index 00000000..38991f54 Binary files /dev/null and b/www/assets/images/items/schematic-2-1-c_64.png differ diff --git a/www/assets/images/items/schematic-2-2-c_256.png b/www/assets/images/items/schematic-2-2-c_256.png new file mode 100644 index 00000000..c9fcf009 Binary files /dev/null and b/www/assets/images/items/schematic-2-2-c_256.png differ diff --git a/www/assets/images/items/schematic-2-2-c_64.png b/www/assets/images/items/schematic-2-2-c_64.png new file mode 100644 index 00000000..10075a3c Binary files /dev/null and b/www/assets/images/items/schematic-2-2-c_64.png differ diff --git a/www/assets/images/items/schematic-2-3-c_256.png b/www/assets/images/items/schematic-2-3-c_256.png new file mode 100644 index 00000000..388c620b Binary files /dev/null and b/www/assets/images/items/schematic-2-3-c_256.png differ diff --git a/www/assets/images/items/schematic-2-3-c_64.png b/www/assets/images/items/schematic-2-3-c_64.png new file mode 100644 index 00000000..30dfd612 Binary files /dev/null and b/www/assets/images/items/schematic-2-3-c_64.png differ diff --git a/www/assets/images/items/schematic-2-5-c_256.png b/www/assets/images/items/schematic-2-5-c_256.png new file mode 100644 index 00000000..a8c53c57 Binary files /dev/null and b/www/assets/images/items/schematic-2-5-c_256.png differ diff --git a/www/assets/images/items/schematic-2-5-c_64.png b/www/assets/images/items/schematic-2-5-c_64.png new file mode 100644 index 00000000..e1c5941e Binary files /dev/null and b/www/assets/images/items/schematic-2-5-c_64.png differ diff --git a/www/assets/images/items/schematic-3-1-c_256.png b/www/assets/images/items/schematic-3-1-c_256.png new file mode 100644 index 00000000..54907800 Binary files /dev/null and b/www/assets/images/items/schematic-3-1-c_256.png differ diff --git a/www/assets/images/items/schematic-3-1-c_64.png b/www/assets/images/items/schematic-3-1-c_64.png new file mode 100644 index 00000000..22692dbf Binary files /dev/null and b/www/assets/images/items/schematic-3-1-c_64.png differ diff --git a/www/assets/images/items/schematic-3-2-c_256.png b/www/assets/images/items/schematic-3-2-c_256.png new file mode 100644 index 00000000..76d28b31 Binary files /dev/null and b/www/assets/images/items/schematic-3-2-c_256.png differ diff --git a/www/assets/images/items/schematic-3-2-c_64.png b/www/assets/images/items/schematic-3-2-c_64.png new file mode 100644 index 00000000..deb0fef7 Binary files /dev/null and b/www/assets/images/items/schematic-3-2-c_64.png differ diff --git a/www/assets/images/items/schematic-3-3-c_256.png b/www/assets/images/items/schematic-3-3-c_256.png new file mode 100644 index 00000000..b1a6d821 Binary files /dev/null and b/www/assets/images/items/schematic-3-3-c_256.png differ diff --git a/www/assets/images/items/schematic-3-3-c_64.png b/www/assets/images/items/schematic-3-3-c_64.png new file mode 100644 index 00000000..1b4e9b69 Binary files /dev/null and b/www/assets/images/items/schematic-3-3-c_64.png differ diff --git a/www/assets/images/items/schematic-3-4-c_256.png b/www/assets/images/items/schematic-3-4-c_256.png new file mode 100644 index 00000000..32981a24 Binary files /dev/null and b/www/assets/images/items/schematic-3-4-c_256.png differ diff --git a/www/assets/images/items/schematic-3-4-c_64.png b/www/assets/images/items/schematic-3-4-c_64.png new file mode 100644 index 00000000..38991f54 Binary files /dev/null and b/www/assets/images/items/schematic-3-4-c_64.png differ diff --git a/www/assets/images/items/schematic-4-1-c_256.png b/www/assets/images/items/schematic-4-1-c_256.png new file mode 100644 index 00000000..32981a24 Binary files /dev/null and b/www/assets/images/items/schematic-4-1-c_256.png differ diff --git a/www/assets/images/items/schematic-4-1-c_64.png b/www/assets/images/items/schematic-4-1-c_64.png new file mode 100644 index 00000000..38991f54 Binary files /dev/null and b/www/assets/images/items/schematic-4-1-c_64.png differ diff --git a/www/assets/images/items/schematic-4-2-c_256.png b/www/assets/images/items/schematic-4-2-c_256.png new file mode 100644 index 00000000..7240b366 Binary files /dev/null and b/www/assets/images/items/schematic-4-2-c_256.png differ diff --git a/www/assets/images/items/schematic-4-2-c_64.png b/www/assets/images/items/schematic-4-2-c_64.png new file mode 100644 index 00000000..280d4edf Binary files /dev/null and b/www/assets/images/items/schematic-4-2-c_64.png differ diff --git a/www/assets/images/items/schematic-4-3-c_256.png b/www/assets/images/items/schematic-4-3-c_256.png new file mode 100644 index 00000000..2f290a07 Binary files /dev/null and b/www/assets/images/items/schematic-4-3-c_256.png differ diff --git a/www/assets/images/items/schematic-4-3-c_64.png b/www/assets/images/items/schematic-4-3-c_64.png new file mode 100644 index 00000000..46deb818 Binary files /dev/null and b/www/assets/images/items/schematic-4-3-c_64.png differ diff --git a/www/assets/images/items/schematic-4-4-c_256.png b/www/assets/images/items/schematic-4-4-c_256.png new file mode 100644 index 00000000..41f2ded0 Binary files /dev/null and b/www/assets/images/items/schematic-4-4-c_256.png differ diff --git a/www/assets/images/items/schematic-4-4-c_64.png b/www/assets/images/items/schematic-4-4-c_64.png new file mode 100644 index 00000000..837338cd Binary files /dev/null and b/www/assets/images/items/schematic-4-4-c_64.png differ diff --git a/www/assets/images/items/schematic-4-5-c_256.png b/www/assets/images/items/schematic-4-5-c_256.png new file mode 100644 index 00000000..1dc44e59 Binary files /dev/null and b/www/assets/images/items/schematic-4-5-c_256.png differ diff --git a/www/assets/images/items/schematic-4-5-c_64.png b/www/assets/images/items/schematic-4-5-c_64.png new file mode 100644 index 00000000..08ecf297 Binary files /dev/null and b/www/assets/images/items/schematic-4-5-c_64.png differ diff --git a/www/assets/images/items/schematic-5-1-c_256.png b/www/assets/images/items/schematic-5-1-c_256.png new file mode 100644 index 00000000..ab75e879 Binary files /dev/null and b/www/assets/images/items/schematic-5-1-c_256.png differ diff --git a/www/assets/images/items/schematic-5-1-c_64.png b/www/assets/images/items/schematic-5-1-c_64.png new file mode 100644 index 00000000..815c8a54 Binary files /dev/null and b/www/assets/images/items/schematic-5-1-c_64.png differ diff --git a/www/assets/images/items/schematic-5-2-c_256.png b/www/assets/images/items/schematic-5-2-c_256.png new file mode 100644 index 00000000..32981a24 Binary files /dev/null and b/www/assets/images/items/schematic-5-2-c_256.png differ diff --git a/www/assets/images/items/schematic-5-2-c_64.png b/www/assets/images/items/schematic-5-2-c_64.png new file mode 100644 index 00000000..38991f54 Binary files /dev/null and b/www/assets/images/items/schematic-5-2-c_64.png differ diff --git a/www/assets/images/items/schematic-5-3-c_256.png b/www/assets/images/items/schematic-5-3-c_256.png new file mode 100644 index 00000000..76d28b31 Binary files /dev/null and b/www/assets/images/items/schematic-5-3-c_256.png differ diff --git a/www/assets/images/items/schematic-5-3-c_64.png b/www/assets/images/items/schematic-5-3-c_64.png new file mode 100644 index 00000000..deb0fef7 Binary files /dev/null and b/www/assets/images/items/schematic-5-3-c_64.png differ diff --git a/www/assets/images/items/schematic-5-4-c_256.png b/www/assets/images/items/schematic-5-4-c_256.png new file mode 100644 index 00000000..23fc9de8 Binary files /dev/null and b/www/assets/images/items/schematic-5-4-c_256.png differ diff --git a/www/assets/images/items/schematic-5-4-c_64.png b/www/assets/images/items/schematic-5-4-c_64.png new file mode 100644 index 00000000..742abe48 Binary files /dev/null and b/www/assets/images/items/schematic-5-4-c_64.png differ diff --git a/www/assets/images/items/schematic-5-5-c_256.png b/www/assets/images/items/schematic-5-5-c_256.png new file mode 100644 index 00000000..54907800 Binary files /dev/null and b/www/assets/images/items/schematic-5-5-c_256.png differ diff --git a/www/assets/images/items/schematic-5-5-c_64.png b/www/assets/images/items/schematic-5-5-c_64.png new file mode 100644 index 00000000..22692dbf Binary files /dev/null and b/www/assets/images/items/schematic-5-5-c_64.png differ diff --git a/www/assets/images/items/schematic-6-1-c_256.png b/www/assets/images/items/schematic-6-1-c_256.png new file mode 100644 index 00000000..76d28b31 Binary files /dev/null and b/www/assets/images/items/schematic-6-1-c_256.png differ diff --git a/www/assets/images/items/schematic-6-1-c_64.png b/www/assets/images/items/schematic-6-1-c_64.png new file mode 100644 index 00000000..deb0fef7 Binary files /dev/null and b/www/assets/images/items/schematic-6-1-c_64.png differ diff --git a/www/assets/images/items/schematic-6-2-c_256.png b/www/assets/images/items/schematic-6-2-c_256.png new file mode 100644 index 00000000..5a12c94b Binary files /dev/null and b/www/assets/images/items/schematic-6-2-c_256.png differ diff --git a/www/assets/images/items/schematic-6-2-c_64.png b/www/assets/images/items/schematic-6-2-c_64.png new file mode 100644 index 00000000..f60175d1 Binary files /dev/null and b/www/assets/images/items/schematic-6-2-c_64.png differ diff --git a/www/assets/images/items/schematic-6-3-c_256.png b/www/assets/images/items/schematic-6-3-c_256.png new file mode 100644 index 00000000..47995928 Binary files /dev/null and b/www/assets/images/items/schematic-6-3-c_256.png differ diff --git a/www/assets/images/items/schematic-6-3-c_64.png b/www/assets/images/items/schematic-6-3-c_64.png new file mode 100644 index 00000000..7704e597 Binary files /dev/null and b/www/assets/images/items/schematic-6-3-c_64.png differ diff --git a/www/assets/images/items/schematic-6-5-c_256.png b/www/assets/images/items/schematic-6-5-c_256.png new file mode 100644 index 00000000..e0aceb43 Binary files /dev/null and b/www/assets/images/items/schematic-6-5-c_256.png differ diff --git a/www/assets/images/items/schematic-6-5-c_64.png b/www/assets/images/items/schematic-6-5-c_64.png new file mode 100644 index 00000000..0a7edd35 Binary files /dev/null and b/www/assets/images/items/schematic-6-5-c_64.png differ diff --git a/www/assets/images/items/schematic-6-6-c_256.png b/www/assets/images/items/schematic-6-6-c_256.png new file mode 100644 index 00000000..1dc44e59 Binary files /dev/null and b/www/assets/images/items/schematic-6-6-c_256.png differ diff --git a/www/assets/images/items/schematic-6-6-c_64.png b/www/assets/images/items/schematic-6-6-c_64.png new file mode 100644 index 00000000..08ecf297 Binary files /dev/null and b/www/assets/images/items/schematic-6-6-c_64.png differ diff --git a/www/assets/images/items/schematic-6-7-c_256.png b/www/assets/images/items/schematic-6-7-c_256.png new file mode 100644 index 00000000..041c27ce Binary files /dev/null and b/www/assets/images/items/schematic-6-7-c_256.png differ diff --git a/www/assets/images/items/schematic-6-7-c_64.png b/www/assets/images/items/schematic-6-7-c_64.png new file mode 100644 index 00000000..8f5b0f6f Binary files /dev/null and b/www/assets/images/items/schematic-6-7-c_64.png differ diff --git a/www/assets/images/items/schematic-7-1-c_256.png b/www/assets/images/items/schematic-7-1-c_256.png new file mode 100644 index 00000000..32981a24 Binary files /dev/null and b/www/assets/images/items/schematic-7-1-c_256.png differ diff --git a/www/assets/images/items/schematic-7-1-c_64.png b/www/assets/images/items/schematic-7-1-c_64.png new file mode 100644 index 00000000..38991f54 Binary files /dev/null and b/www/assets/images/items/schematic-7-1-c_64.png differ diff --git a/www/assets/images/items/schematic-7-2-c_256.png b/www/assets/images/items/schematic-7-2-c_256.png new file mode 100644 index 00000000..76d28b31 Binary files /dev/null and b/www/assets/images/items/schematic-7-2-c_256.png differ diff --git a/www/assets/images/items/schematic-7-2-c_64.png b/www/assets/images/items/schematic-7-2-c_64.png new file mode 100644 index 00000000..deb0fef7 Binary files /dev/null and b/www/assets/images/items/schematic-7-2-c_64.png differ diff --git a/www/assets/images/items/schematic-7-3-c_256.png b/www/assets/images/items/schematic-7-3-c_256.png new file mode 100644 index 00000000..1b1ec046 Binary files /dev/null and b/www/assets/images/items/schematic-7-3-c_256.png differ diff --git a/www/assets/images/items/schematic-7-3-c_64.png b/www/assets/images/items/schematic-7-3-c_64.png new file mode 100644 index 00000000..7c159fce Binary files /dev/null and b/www/assets/images/items/schematic-7-3-c_64.png differ diff --git a/www/assets/images/items/schematic-7-4-c_256.png b/www/assets/images/items/schematic-7-4-c_256.png new file mode 100644 index 00000000..08a71e0f Binary files /dev/null and b/www/assets/images/items/schematic-7-4-c_256.png differ diff --git a/www/assets/images/items/schematic-7-4-c_64.png b/www/assets/images/items/schematic-7-4-c_64.png new file mode 100644 index 00000000..bf072120 Binary files /dev/null and b/www/assets/images/items/schematic-7-4-c_64.png differ diff --git a/www/assets/images/items/schematic-7-5-c_256.png b/www/assets/images/items/schematic-7-5-c_256.png new file mode 100644 index 00000000..32981a24 Binary files /dev/null and b/www/assets/images/items/schematic-7-5-c_256.png differ diff --git a/www/assets/images/items/schematic-7-5-c_64.png b/www/assets/images/items/schematic-7-5-c_64.png new file mode 100644 index 00000000..38991f54 Binary files /dev/null and b/www/assets/images/items/schematic-7-5-c_64.png differ diff --git a/www/assets/images/items/schematic-8-1-c_256.png b/www/assets/images/items/schematic-8-1-c_256.png new file mode 100644 index 00000000..54907800 Binary files /dev/null and b/www/assets/images/items/schematic-8-1-c_256.png differ diff --git a/www/assets/images/items/schematic-8-1-c_64.png b/www/assets/images/items/schematic-8-1-c_64.png new file mode 100644 index 00000000..22692dbf Binary files /dev/null and b/www/assets/images/items/schematic-8-1-c_64.png differ diff --git a/www/assets/images/items/schematic-8-2-c_256.png b/www/assets/images/items/schematic-8-2-c_256.png new file mode 100644 index 00000000..32981a24 Binary files /dev/null and b/www/assets/images/items/schematic-8-2-c_256.png differ diff --git a/www/assets/images/items/schematic-8-2-c_64.png b/www/assets/images/items/schematic-8-2-c_64.png new file mode 100644 index 00000000..38991f54 Binary files /dev/null and b/www/assets/images/items/schematic-8-2-c_64.png differ diff --git a/www/assets/images/items/schematic-8-3-c_256.png b/www/assets/images/items/schematic-8-3-c_256.png new file mode 100644 index 00000000..5a12c94b Binary files /dev/null and b/www/assets/images/items/schematic-8-3-c_256.png differ diff --git a/www/assets/images/items/schematic-8-3-c_64.png b/www/assets/images/items/schematic-8-3-c_64.png new file mode 100644 index 00000000..f60175d1 Binary files /dev/null and b/www/assets/images/items/schematic-8-3-c_64.png differ diff --git a/www/assets/images/items/schematic-8-4-c_256.png b/www/assets/images/items/schematic-8-4-c_256.png new file mode 100644 index 00000000..591b00c0 Binary files /dev/null and b/www/assets/images/items/schematic-8-4-c_256.png differ diff --git a/www/assets/images/items/schematic-8-4-c_64.png b/www/assets/images/items/schematic-8-4-c_64.png new file mode 100644 index 00000000..16b7bb45 Binary files /dev/null and b/www/assets/images/items/schematic-8-4-c_64.png differ diff --git a/www/assets/images/items/schematic-8-5-c_256.png b/www/assets/images/items/schematic-8-5-c_256.png new file mode 100644 index 00000000..5b92ac82 Binary files /dev/null and b/www/assets/images/items/schematic-8-5-c_256.png differ diff --git a/www/assets/images/items/schematic-8-5-c_64.png b/www/assets/images/items/schematic-8-5-c_64.png new file mode 100644 index 00000000..d3f1e67e Binary files /dev/null and b/www/assets/images/items/schematic-8-5-c_64.png differ diff --git a/www/assets/images/items/schematic-9-1-c_256.png b/www/assets/images/items/schematic-9-1-c_256.png new file mode 100644 index 00000000..b23930d1 Binary files /dev/null and b/www/assets/images/items/schematic-9-1-c_256.png differ diff --git a/www/assets/images/items/schematic-9-1-c_64.png b/www/assets/images/items/schematic-9-1-c_64.png new file mode 100644 index 00000000..d57f799f Binary files /dev/null and b/www/assets/images/items/schematic-9-1-c_64.png differ diff --git a/www/assets/images/items/schematic-9-2-c_256.png b/www/assets/images/items/schematic-9-2-c_256.png new file mode 100644 index 00000000..5b92ac82 Binary files /dev/null and b/www/assets/images/items/schematic-9-2-c_256.png differ diff --git a/www/assets/images/items/schematic-9-2-c_64.png b/www/assets/images/items/schematic-9-2-c_64.png new file mode 100644 index 00000000..d3f1e67e Binary files /dev/null and b/www/assets/images/items/schematic-9-2-c_64.png differ diff --git a/www/assets/images/items/schematic-9-3-c_256.png b/www/assets/images/items/schematic-9-3-c_256.png new file mode 100644 index 00000000..1dc44e59 Binary files /dev/null and b/www/assets/images/items/schematic-9-3-c_256.png differ diff --git a/www/assets/images/items/schematic-9-3-c_64.png b/www/assets/images/items/schematic-9-3-c_64.png new file mode 100644 index 00000000..08ecf297 Binary files /dev/null and b/www/assets/images/items/schematic-9-3-c_64.png differ diff --git a/www/assets/images/items/schematic-9-4-c_256.png b/www/assets/images/items/schematic-9-4-c_256.png new file mode 100644 index 00000000..29ac776f Binary files /dev/null and b/www/assets/images/items/schematic-9-4-c_256.png differ diff --git a/www/assets/images/items/schematic-9-4-c_64.png b/www/assets/images/items/schematic-9-4-c_64.png new file mode 100644 index 00000000..b07927f6 Binary files /dev/null and b/www/assets/images/items/schematic-9-4-c_64.png differ diff --git a/www/assets/images/items/schematic-9-5-c_256.png b/www/assets/images/items/schematic-9-5-c_256.png new file mode 100644 index 00000000..4ba7f3e3 Binary files /dev/null and b/www/assets/images/items/schematic-9-5-c_256.png differ diff --git a/www/assets/images/items/schematic-9-5-c_64.png b/www/assets/images/items/schematic-9-5-c_64.png new file mode 100644 index 00000000..53f99702 Binary files /dev/null and b/www/assets/images/items/schematic-9-5-c_64.png differ diff --git a/www/assets/images/items/schematic-absoluteficsit-c_256.png b/www/assets/images/items/schematic-absoluteficsit-c_256.png new file mode 100644 index 00000000..397666bc Binary files /dev/null and b/www/assets/images/items/schematic-absoluteficsit-c_256.png differ diff --git a/www/assets/images/items/schematic-absoluteficsit-c_64.png b/www/assets/images/items/schematic-absoluteficsit-c_64.png new file mode 100644 index 00000000..cebd3ca4 Binary files /dev/null and b/www/assets/images/items/schematic-absoluteficsit-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-adheredironplate-c_256.png b/www/assets/images/items/schematic-alternate-adheredironplate-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-adheredironplate-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-adheredironplate-c_64.png b/www/assets/images/items/schematic-alternate-adheredironplate-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-adheredironplate-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-ailimiter-plastic-c_256.png b/www/assets/images/items/schematic-alternate-ailimiter-plastic-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-ailimiter-plastic-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-ailimiter-plastic-c_64.png b/www/assets/images/items/schematic-alternate-ailimiter-plastic-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-ailimiter-plastic-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-alcladcasing-c_256.png b/www/assets/images/items/schematic-alternate-alcladcasing-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-alcladcasing-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-alcladcasing-c_64.png b/www/assets/images/items/schematic-alternate-alcladcasing-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-alcladcasing-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-aluminumrod-c_256.png b/www/assets/images/items/schematic-alternate-aluminumrod-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-aluminumrod-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-aluminumrod-c_64.png b/www/assets/images/items/schematic-alternate-aluminumrod-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-aluminumrod-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-automatedminer-c_256.png b/www/assets/images/items/schematic-alternate-automatedminer-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-automatedminer-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-automatedminer-c_64.png b/www/assets/images/items/schematic-alternate-automatedminer-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-automatedminer-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-boltedframe-c_256.png b/www/assets/images/items/schematic-alternate-boltedframe-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-boltedframe-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-boltedframe-c_64.png b/www/assets/images/items/schematic-alternate-boltedframe-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-boltedframe-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-cable1-c_256.png b/www/assets/images/items/schematic-alternate-cable1-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-cable1-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-cable1-c_64.png b/www/assets/images/items/schematic-alternate-cable1-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-cable1-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-cable2-c_256.png b/www/assets/images/items/schematic-alternate-cable2-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-cable2-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-cable2-c_64.png b/www/assets/images/items/schematic-alternate-cable2-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-cable2-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-cateriumingot-leached-c_256.png b/www/assets/images/items/schematic-alternate-cateriumingot-leached-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-cateriumingot-leached-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-cateriumingot-leached-c_64.png b/www/assets/images/items/schematic-alternate-cateriumingot-leached-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-cateriumingot-leached-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-cateriumingot-tempered-c_256.png b/www/assets/images/items/schematic-alternate-cateriumingot-tempered-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-cateriumingot-tempered-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-cateriumingot-tempered-c_64.png b/www/assets/images/items/schematic-alternate-cateriumingot-tempered-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-cateriumingot-tempered-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-circuitboard1-c_256.png b/www/assets/images/items/schematic-alternate-circuitboard1-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-circuitboard1-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-circuitboard1-c_64.png b/www/assets/images/items/schematic-alternate-circuitboard1-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-circuitboard1-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-circuitboard2-c_256.png b/www/assets/images/items/schematic-alternate-circuitboard2-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-circuitboard2-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-circuitboard2-c_64.png b/www/assets/images/items/schematic-alternate-circuitboard2-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-circuitboard2-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-classicbattery-c_256.png b/www/assets/images/items/schematic-alternate-classicbattery-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-classicbattery-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-classicbattery-c_64.png b/www/assets/images/items/schematic-alternate-classicbattery-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-classicbattery-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-coal1-c_256.png b/www/assets/images/items/schematic-alternate-coal1-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-coal1-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-coal1-c_64.png b/www/assets/images/items/schematic-alternate-coal1-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-coal1-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-coal2-c_256.png b/www/assets/images/items/schematic-alternate-coal2-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-coal2-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-coal2-c_64.png b/www/assets/images/items/schematic-alternate-coal2-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-coal2-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-coatedcable-c_256.png b/www/assets/images/items/schematic-alternate-coatedcable-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-coatedcable-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-coatedcable-c_64.png b/www/assets/images/items/schematic-alternate-coatedcable-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-coatedcable-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-coatedironcanister-c_256.png b/www/assets/images/items/schematic-alternate-coatedironcanister-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-coatedironcanister-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-coatedironcanister-c_64.png b/www/assets/images/items/schematic-alternate-coatedironcanister-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-coatedironcanister-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-coatedironplate-c_256.png b/www/assets/images/items/schematic-alternate-coatedironplate-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-coatedironplate-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-coatedironplate-c_64.png b/www/assets/images/items/schematic-alternate-coatedironplate-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-coatedironplate-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-cokesteelingot-c_256.png b/www/assets/images/items/schematic-alternate-cokesteelingot-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-cokesteelingot-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-cokesteelingot-c_64.png b/www/assets/images/items/schematic-alternate-cokesteelingot-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-cokesteelingot-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-computer1-c_256.png b/www/assets/images/items/schematic-alternate-computer1-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-computer1-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-computer1-c_64.png b/www/assets/images/items/schematic-alternate-computer1-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-computer1-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-computer2-c_256.png b/www/assets/images/items/schematic-alternate-computer2-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-computer2-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-computer2-c_64.png b/www/assets/images/items/schematic-alternate-computer2-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-computer2-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-concrete-c_256.png b/www/assets/images/items/schematic-alternate-concrete-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-concrete-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-concrete-c_64.png b/www/assets/images/items/schematic-alternate-concrete-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-concrete-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-coolingdevice-c_256.png b/www/assets/images/items/schematic-alternate-coolingdevice-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-coolingdevice-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-coolingdevice-c_64.png b/www/assets/images/items/schematic-alternate-coolingdevice-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-coolingdevice-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-copperalloyingot-c_256.png b/www/assets/images/items/schematic-alternate-copperalloyingot-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-copperalloyingot-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-copperalloyingot-c_64.png b/www/assets/images/items/schematic-alternate-copperalloyingot-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-copperalloyingot-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-copperingot-leached-c_256.png b/www/assets/images/items/schematic-alternate-copperingot-leached-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-copperingot-leached-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-copperingot-leached-c_64.png b/www/assets/images/items/schematic-alternate-copperingot-leached-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-copperingot-leached-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-copperingot-tempered-c_256.png b/www/assets/images/items/schematic-alternate-copperingot-tempered-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-copperingot-tempered-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-copperingot-tempered-c_64.png b/www/assets/images/items/schematic-alternate-copperingot-tempered-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-copperingot-tempered-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-copperrotor-c_256.png b/www/assets/images/items/schematic-alternate-copperrotor-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-copperrotor-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-copperrotor-c_64.png b/www/assets/images/items/schematic-alternate-copperrotor-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-copperrotor-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-crystaloscillator-c_256.png b/www/assets/images/items/schematic-alternate-crystaloscillator-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-crystaloscillator-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-crystaloscillator-c_64.png b/www/assets/images/items/schematic-alternate-crystaloscillator-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-crystaloscillator-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-darkmatter-crystallization-c_256.png b/www/assets/images/items/schematic-alternate-darkmatter-crystallization-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-darkmatter-crystallization-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-darkmatter-crystallization-c_64.png b/www/assets/images/items/schematic-alternate-darkmatter-crystallization-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-darkmatter-crystallization-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-darkmatter-trap-c_256.png b/www/assets/images/items/schematic-alternate-darkmatter-trap-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-darkmatter-trap-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-darkmatter-trap-c_64.png b/www/assets/images/items/schematic-alternate-darkmatter-trap-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-darkmatter-trap-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-diamond-cloudy-c_256.png b/www/assets/images/items/schematic-alternate-diamond-cloudy-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-diamond-cloudy-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-diamond-cloudy-c_64.png b/www/assets/images/items/schematic-alternate-diamond-cloudy-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-diamond-cloudy-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-diamond-oilbased-c_256.png b/www/assets/images/items/schematic-alternate-diamond-oilbased-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-diamond-oilbased-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-diamond-oilbased-c_64.png b/www/assets/images/items/schematic-alternate-diamond-oilbased-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-diamond-oilbased-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-diamond-petroleum-c_256.png b/www/assets/images/items/schematic-alternate-diamond-petroleum-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-diamond-petroleum-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-diamond-petroleum-c_64.png b/www/assets/images/items/schematic-alternate-diamond-petroleum-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-diamond-petroleum-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-diamond-pink-c_256.png b/www/assets/images/items/schematic-alternate-diamond-pink-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-diamond-pink-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-diamond-pink-c_64.png b/www/assets/images/items/schematic-alternate-diamond-pink-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-diamond-pink-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-diamond-turbo-c_256.png b/www/assets/images/items/schematic-alternate-diamond-turbo-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-diamond-turbo-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-diamond-turbo-c_64.png b/www/assets/images/items/schematic-alternate-diamond-turbo-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-diamond-turbo-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-dilutedfuel-c_256.png b/www/assets/images/items/schematic-alternate-dilutedfuel-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-dilutedfuel-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-dilutedfuel-c_64.png b/www/assets/images/items/schematic-alternate-dilutedfuel-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-dilutedfuel-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-dilutedpackagedfuel-c_256.png b/www/assets/images/items/schematic-alternate-dilutedpackagedfuel-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-dilutedpackagedfuel-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-dilutedpackagedfuel-c_64.png b/www/assets/images/items/schematic-alternate-dilutedpackagedfuel-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-dilutedpackagedfuel-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-electricmotor-c_256.png b/www/assets/images/items/schematic-alternate-electricmotor-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-electricmotor-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-electricmotor-c_64.png b/www/assets/images/items/schematic-alternate-electricmotor-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-electricmotor-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-electroaluminumscrap-c_256.png b/www/assets/images/items/schematic-alternate-electroaluminumscrap-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-electroaluminumscrap-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-electroaluminumscrap-c_64.png b/www/assets/images/items/schematic-alternate-electroaluminumscrap-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-electroaluminumscrap-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-electrodecircuitboard-c_256.png b/www/assets/images/items/schematic-alternate-electrodecircuitboard-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-electrodecircuitboard-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-electrodecircuitboard-c_64.png b/www/assets/images/items/schematic-alternate-electrodecircuitboard-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-electrodecircuitboard-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-electromagneticcontrolrod1-c_256.png b/www/assets/images/items/schematic-alternate-electromagneticcontrolrod1-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-electromagneticcontrolrod1-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-electromagneticcontrolrod1-c_64.png b/www/assets/images/items/schematic-alternate-electromagneticcontrolrod1-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-electromagneticcontrolrod1-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-fertileuranium-c_256.png b/www/assets/images/items/schematic-alternate-fertileuranium-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-fertileuranium-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-fertileuranium-c_64.png b/www/assets/images/items/schematic-alternate-fertileuranium-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-fertileuranium-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-flexibleframework-c_256.png b/www/assets/images/items/schematic-alternate-flexibleframework-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-flexibleframework-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-flexibleframework-c_64.png b/www/assets/images/items/schematic-alternate-flexibleframework-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-flexibleframework-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-fusedwire-c_256.png b/www/assets/images/items/schematic-alternate-fusedwire-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-fusedwire-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-fusedwire-c_64.png b/www/assets/images/items/schematic-alternate-fusedwire-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-fusedwire-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-gunpowder1-c_256.png b/www/assets/images/items/schematic-alternate-gunpowder1-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-gunpowder1-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-gunpowder1-c_64.png b/www/assets/images/items/schematic-alternate-gunpowder1-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-gunpowder1-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-heatfusedframe-c_256.png b/www/assets/images/items/schematic-alternate-heatfusedframe-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-heatfusedframe-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-heatfusedframe-c_64.png b/www/assets/images/items/schematic-alternate-heatfusedframe-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-heatfusedframe-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-heatsink1-c_256.png b/www/assets/images/items/schematic-alternate-heatsink1-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-heatsink1-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-heatsink1-c_64.png b/www/assets/images/items/schematic-alternate-heatsink1-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-heatsink1-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-heavyflexibleframe-c_256.png b/www/assets/images/items/schematic-alternate-heavyflexibleframe-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-heavyflexibleframe-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-heavyflexibleframe-c_64.png b/www/assets/images/items/schematic-alternate-heavyflexibleframe-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-heavyflexibleframe-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-heavymodularframe-c_256.png b/www/assets/images/items/schematic-alternate-heavymodularframe-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-heavymodularframe-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-heavymodularframe-c_64.png b/www/assets/images/items/schematic-alternate-heavymodularframe-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-heavymodularframe-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-heavyoilresidue-c_256.png b/www/assets/images/items/schematic-alternate-heavyoilresidue-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-heavyoilresidue-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-heavyoilresidue-c_64.png b/www/assets/images/items/schematic-alternate-heavyoilresidue-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-heavyoilresidue-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-highspeedconnector-c_256.png b/www/assets/images/items/schematic-alternate-highspeedconnector-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-highspeedconnector-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-highspeedconnector-c_64.png b/www/assets/images/items/schematic-alternate-highspeedconnector-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-highspeedconnector-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-highspeedwiring-c_256.png b/www/assets/images/items/schematic-alternate-highspeedwiring-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-highspeedwiring-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-highspeedwiring-c_64.png b/www/assets/images/items/schematic-alternate-highspeedwiring-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-highspeedwiring-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-ingotiron-c_256.png b/www/assets/images/items/schematic-alternate-ingotiron-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-ingotiron-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-ingotiron-c_64.png b/www/assets/images/items/schematic-alternate-ingotiron-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-ingotiron-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-ingotsteel1-c_256.png b/www/assets/images/items/schematic-alternate-ingotsteel1-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-ingotsteel1-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-ingotsteel1-c_64.png b/www/assets/images/items/schematic-alternate-ingotsteel1-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-ingotsteel1-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-ingotsteel2-c_256.png b/www/assets/images/items/schematic-alternate-ingotsteel2-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-ingotsteel2-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-ingotsteel2-c_64.png b/www/assets/images/items/schematic-alternate-ingotsteel2-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-ingotsteel2-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-instantplutoniumcell-c_256.png b/www/assets/images/items/schematic-alternate-instantplutoniumcell-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-instantplutoniumcell-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-instantplutoniumcell-c_64.png b/www/assets/images/items/schematic-alternate-instantplutoniumcell-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-instantplutoniumcell-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-instantscrap-c_256.png b/www/assets/images/items/schematic-alternate-instantscrap-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-instantscrap-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-instantscrap-c_64.png b/www/assets/images/items/schematic-alternate-instantscrap-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-instantscrap-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-inventoryslots1-c_256.png b/www/assets/images/items/schematic-alternate-inventoryslots1-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-inventoryslots1-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-inventoryslots1-c_64.png b/www/assets/images/items/schematic-alternate-inventoryslots1-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-inventoryslots1-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-inventoryslots2-c_256.png b/www/assets/images/items/schematic-alternate-inventoryslots2-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-inventoryslots2-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-inventoryslots2-c_64.png b/www/assets/images/items/schematic-alternate-inventoryslots2-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-inventoryslots2-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-ionizedfuel-dark-c_256.png b/www/assets/images/items/schematic-alternate-ionizedfuel-dark-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-ionizedfuel-dark-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-ionizedfuel-dark-c_64.png b/www/assets/images/items/schematic-alternate-ionizedfuel-dark-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-ionizedfuel-dark-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-ironingot-basic-c_256.png b/www/assets/images/items/schematic-alternate-ironingot-basic-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-ironingot-basic-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-ironingot-basic-c_64.png b/www/assets/images/items/schematic-alternate-ironingot-basic-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-ironingot-basic-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-ironingot-leached-c_256.png b/www/assets/images/items/schematic-alternate-ironingot-leached-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-ironingot-leached-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-ironingot-leached-c_64.png b/www/assets/images/items/schematic-alternate-ironingot-leached-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-ironingot-leached-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-modularframe-c_256.png b/www/assets/images/items/schematic-alternate-modularframe-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-modularframe-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-modularframe-c_64.png b/www/assets/images/items/schematic-alternate-modularframe-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-modularframe-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-motor1-c_256.png b/www/assets/images/items/schematic-alternate-motor1-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-motor1-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-motor1-c_64.png b/www/assets/images/items/schematic-alternate-motor1-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-motor1-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-nuclearfuelrod1-c_256.png b/www/assets/images/items/schematic-alternate-nuclearfuelrod1-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-nuclearfuelrod1-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-nuclearfuelrod1-c_64.png b/www/assets/images/items/schematic-alternate-nuclearfuelrod1-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-nuclearfuelrod1-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-ocsupercomputer-c_256.png b/www/assets/images/items/schematic-alternate-ocsupercomputer-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-ocsupercomputer-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-ocsupercomputer-c_64.png b/www/assets/images/items/schematic-alternate-ocsupercomputer-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-ocsupercomputer-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-plastic1-c_256.png b/www/assets/images/items/schematic-alternate-plastic1-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-plastic1-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-plastic1-c_64.png b/www/assets/images/items/schematic-alternate-plastic1-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-plastic1-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-plasticsmartplating-c_256.png b/www/assets/images/items/schematic-alternate-plasticsmartplating-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-plasticsmartplating-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-plasticsmartplating-c_64.png b/www/assets/images/items/schematic-alternate-plasticsmartplating-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-plasticsmartplating-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-plutoniumfuelunit-c_256.png b/www/assets/images/items/schematic-alternate-plutoniumfuelunit-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-plutoniumfuelunit-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-plutoniumfuelunit-c_64.png b/www/assets/images/items/schematic-alternate-plutoniumfuelunit-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-plutoniumfuelunit-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-polymerresin-c_256.png b/www/assets/images/items/schematic-alternate-polymerresin-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-polymerresin-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-polymerresin-c_64.png b/www/assets/images/items/schematic-alternate-polymerresin-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-polymerresin-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-purealuminumingot-c_256.png b/www/assets/images/items/schematic-alternate-purealuminumingot-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-purealuminumingot-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-purealuminumingot-c_64.png b/www/assets/images/items/schematic-alternate-purealuminumingot-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-purealuminumingot-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-purecateriumingot-c_256.png b/www/assets/images/items/schematic-alternate-purecateriumingot-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-purecateriumingot-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-purecateriumingot-c_64.png b/www/assets/images/items/schematic-alternate-purecateriumingot-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-purecateriumingot-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-purecopperingot-c_256.png b/www/assets/images/items/schematic-alternate-purecopperingot-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-purecopperingot-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-purecopperingot-c_64.png b/www/assets/images/items/schematic-alternate-purecopperingot-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-purecopperingot-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-pureironingot-c_256.png b/www/assets/images/items/schematic-alternate-pureironingot-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-pureironingot-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-pureironingot-c_64.png b/www/assets/images/items/schematic-alternate-pureironingot-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-pureironingot-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-purequartzcrystal-c_256.png b/www/assets/images/items/schematic-alternate-purequartzcrystal-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-purequartzcrystal-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-purequartzcrystal-c_64.png b/www/assets/images/items/schematic-alternate-purequartzcrystal-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-purequartzcrystal-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-quartz-fused-c_256.png b/www/assets/images/items/schematic-alternate-quartz-fused-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-quartz-fused-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-quartz-fused-c_64.png b/www/assets/images/items/schematic-alternate-quartz-fused-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-quartz-fused-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-quartz-purified-c_256.png b/www/assets/images/items/schematic-alternate-quartz-purified-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-quartz-purified-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-quartz-purified-c_64.png b/www/assets/images/items/schematic-alternate-quartz-purified-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-quartz-purified-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-quickwire-c_256.png b/www/assets/images/items/schematic-alternate-quickwire-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-quickwire-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-quickwire-c_64.png b/www/assets/images/items/schematic-alternate-quickwire-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-quickwire-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-radiocontrolsystem-c_256.png b/www/assets/images/items/schematic-alternate-radiocontrolsystem-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-radiocontrolsystem-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-radiocontrolsystem-c_64.png b/www/assets/images/items/schematic-alternate-radiocontrolsystem-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-radiocontrolsystem-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-radiocontrolunit1-c_256.png b/www/assets/images/items/schematic-alternate-radiocontrolunit1-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-radiocontrolunit1-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-radiocontrolunit1-c_64.png b/www/assets/images/items/schematic-alternate-radiocontrolunit1-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-radiocontrolunit1-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-recycledrubber-c_256.png b/www/assets/images/items/schematic-alternate-recycledrubber-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-recycledrubber-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-recycledrubber-c_64.png b/www/assets/images/items/schematic-alternate-recycledrubber-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-recycledrubber-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-reinforcedironplate1-c_256.png b/www/assets/images/items/schematic-alternate-reinforcedironplate1-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-reinforcedironplate1-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-reinforcedironplate1-c_64.png b/www/assets/images/items/schematic-alternate-reinforcedironplate1-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-reinforcedironplate1-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-reinforcedironplate2-c_256.png b/www/assets/images/items/schematic-alternate-reinforcedironplate2-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-reinforcedironplate2-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-reinforcedironplate2-c_64.png b/www/assets/images/items/schematic-alternate-reinforcedironplate2-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-reinforcedironplate2-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-reinforcedsteelplate-c_256.png b/www/assets/images/items/schematic-alternate-reinforcedsteelplate-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-reinforcedsteelplate-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-reinforcedsteelplate-c_64.png b/www/assets/images/items/schematic-alternate-reinforcedsteelplate-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-reinforcedsteelplate-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-rocketfuel-nitro-c_256.png b/www/assets/images/items/schematic-alternate-rocketfuel-nitro-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-rocketfuel-nitro-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-rocketfuel-nitro-c_64.png b/www/assets/images/items/schematic-alternate-rocketfuel-nitro-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-rocketfuel-nitro-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-rotor-c_256.png b/www/assets/images/items/schematic-alternate-rotor-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-rotor-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-rotor-c_64.png b/www/assets/images/items/schematic-alternate-rotor-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-rotor-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-rubberconcrete-c_256.png b/www/assets/images/items/schematic-alternate-rubberconcrete-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-rubberconcrete-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-rubberconcrete-c_64.png b/www/assets/images/items/schematic-alternate-rubberconcrete-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-rubberconcrete-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-screw-c_256.png b/www/assets/images/items/schematic-alternate-screw-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-screw-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-screw-c_64.png b/www/assets/images/items/schematic-alternate-screw-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-screw-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-screw2-c_256.png b/www/assets/images/items/schematic-alternate-screw2-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-screw2-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-screw2-c_64.png b/www/assets/images/items/schematic-alternate-screw2-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-screw2-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-silica-c_256.png b/www/assets/images/items/schematic-alternate-silica-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-silica-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-silica-c_64.png b/www/assets/images/items/schematic-alternate-silica-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-silica-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-sloppyalumina-c_256.png b/www/assets/images/items/schematic-alternate-sloppyalumina-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-sloppyalumina-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-sloppyalumina-c_64.png b/www/assets/images/items/schematic-alternate-sloppyalumina-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-sloppyalumina-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-stator-c_256.png b/www/assets/images/items/schematic-alternate-stator-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-stator-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-stator-c_64.png b/www/assets/images/items/schematic-alternate-stator-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-stator-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-steamedcoppersheet-c_256.png b/www/assets/images/items/schematic-alternate-steamedcoppersheet-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-steamedcoppersheet-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-steamedcoppersheet-c_64.png b/www/assets/images/items/schematic-alternate-steamedcoppersheet-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-steamedcoppersheet-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-steelbeam-aluminum-c_256.png b/www/assets/images/items/schematic-alternate-steelbeam-aluminum-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-steelbeam-aluminum-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-steelbeam-aluminum-c_64.png b/www/assets/images/items/schematic-alternate-steelbeam-aluminum-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-steelbeam-aluminum-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-steelbeam-molded-c_256.png b/www/assets/images/items/schematic-alternate-steelbeam-molded-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-steelbeam-molded-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-steelbeam-molded-c_64.png b/www/assets/images/items/schematic-alternate-steelbeam-molded-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-steelbeam-molded-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-steelcanister-c_256.png b/www/assets/images/items/schematic-alternate-steelcanister-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-steelcanister-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-steelcanister-c_64.png b/www/assets/images/items/schematic-alternate-steelcanister-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-steelcanister-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-steelcastedplate-c_256.png b/www/assets/images/items/schematic-alternate-steelcastedplate-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-steelcastedplate-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-steelcastedplate-c_64.png b/www/assets/images/items/schematic-alternate-steelcastedplate-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-steelcastedplate-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-steelpipe-iron-c_256.png b/www/assets/images/items/schematic-alternate-steelpipe-iron-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-steelpipe-iron-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-steelpipe-iron-c_64.png b/www/assets/images/items/schematic-alternate-steelpipe-iron-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-steelpipe-iron-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-steelpipe-molded-c_256.png b/www/assets/images/items/schematic-alternate-steelpipe-molded-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-steelpipe-molded-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-steelpipe-molded-c_64.png b/www/assets/images/items/schematic-alternate-steelpipe-molded-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-steelpipe-molded-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-steelrod-c_256.png b/www/assets/images/items/schematic-alternate-steelrod-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-steelrod-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-steelrod-c_64.png b/www/assets/images/items/schematic-alternate-steelrod-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-steelrod-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-superstatecomputer-c_256.png b/www/assets/images/items/schematic-alternate-superstatecomputer-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-superstatecomputer-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-superstatecomputer-c_64.png b/www/assets/images/items/schematic-alternate-superstatecomputer-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-superstatecomputer-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-turboblendfuel-c_256.png b/www/assets/images/items/schematic-alternate-turboblendfuel-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-turboblendfuel-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-turboblendfuel-c_64.png b/www/assets/images/items/schematic-alternate-turboblendfuel-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-turboblendfuel-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-turboheavyfuel-c_256.png b/www/assets/images/items/schematic-alternate-turboheavyfuel-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-turboheavyfuel-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-turboheavyfuel-c_64.png b/www/assets/images/items/schematic-alternate-turboheavyfuel-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-turboheavyfuel-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-turbomotor1-c_256.png b/www/assets/images/items/schematic-alternate-turbomotor1-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-turbomotor1-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-turbomotor1-c_64.png b/www/assets/images/items/schematic-alternate-turbomotor1-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-turbomotor1-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-turbopressuremotor-c_256.png b/www/assets/images/items/schematic-alternate-turbopressuremotor-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-turbopressuremotor-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-turbopressuremotor-c_64.png b/www/assets/images/items/schematic-alternate-turbopressuremotor-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-turbopressuremotor-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-uraniumcell1-c_256.png b/www/assets/images/items/schematic-alternate-uraniumcell1-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-uraniumcell1-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-uraniumcell1-c_64.png b/www/assets/images/items/schematic-alternate-uraniumcell1-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-uraniumcell1-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-wetconcrete-c_256.png b/www/assets/images/items/schematic-alternate-wetconcrete-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-wetconcrete-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-wetconcrete-c_64.png b/www/assets/images/items/schematic-alternate-wetconcrete-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-wetconcrete-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-wire1-c_256.png b/www/assets/images/items/schematic-alternate-wire1-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-wire1-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-wire1-c_64.png b/www/assets/images/items/schematic-alternate-wire1-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-wire1-c_64.png differ diff --git a/www/assets/images/items/schematic-alternate-wire2-c_256.png b/www/assets/images/items/schematic-alternate-wire2-c_256.png new file mode 100644 index 00000000..f09aae26 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-wire2-c_256.png differ diff --git a/www/assets/images/items/schematic-alternate-wire2-c_64.png b/www/assets/images/items/schematic-alternate-wire2-c_64.png new file mode 100644 index 00000000..70ad0475 Binary files /dev/null and b/www/assets/images/items/schematic-alternate-wire2-c_64.png differ diff --git a/www/assets/images/items/schematic-goat-c_256.png b/www/assets/images/items/schematic-goat-c_256.png new file mode 100644 index 00000000..bd4b5f65 Binary files /dev/null and b/www/assets/images/items/schematic-goat-c_256.png differ diff --git a/www/assets/images/items/schematic-goat-c_64.png b/www/assets/images/items/schematic-goat-c_64.png new file mode 100644 index 00000000..44ecfb8c Binary files /dev/null and b/www/assets/images/items/schematic-goat-c_64.png differ diff --git a/www/assets/images/items/schematic-helmet-beta-c_256.png b/www/assets/images/items/schematic-helmet-beta-c_256.png new file mode 100644 index 00000000..3de8caff Binary files /dev/null and b/www/assets/images/items/schematic-helmet-beta-c_256.png differ diff --git a/www/assets/images/items/schematic-helmet-beta-c_64.png b/www/assets/images/items/schematic-helmet-beta-c_64.png new file mode 100644 index 00000000..6a3d206c Binary files /dev/null and b/www/assets/images/items/schematic-helmet-beta-c_64.png differ diff --git a/www/assets/images/items/schematic-helmet-bobble-c_256.png b/www/assets/images/items/schematic-helmet-bobble-c_256.png new file mode 100644 index 00000000..c958014a Binary files /dev/null and b/www/assets/images/items/schematic-helmet-bobble-c_256.png differ diff --git a/www/assets/images/items/schematic-helmet-bobble-c_64.png b/www/assets/images/items/schematic-helmet-bobble-c_64.png new file mode 100644 index 00000000..2f8c2dc7 Binary files /dev/null and b/www/assets/images/items/schematic-helmet-bobble-c_64.png differ diff --git a/www/assets/images/items/schematic-helmet-default-c_256.png b/www/assets/images/items/schematic-helmet-default-c_256.png new file mode 100644 index 00000000..3c06694e Binary files /dev/null and b/www/assets/images/items/schematic-helmet-default-c_256.png differ diff --git a/www/assets/images/items/schematic-helmet-default-c_64.png b/www/assets/images/items/schematic-helmet-default-c_64.png new file mode 100644 index 00000000..868e64be Binary files /dev/null and b/www/assets/images/items/schematic-helmet-default-c_64.png differ diff --git a/www/assets/images/items/schematic-helmet-ficsmas-c_256.png b/www/assets/images/items/schematic-helmet-ficsmas-c_256.png new file mode 100644 index 00000000..55ec2891 Binary files /dev/null and b/www/assets/images/items/schematic-helmet-ficsmas-c_256.png differ diff --git a/www/assets/images/items/schematic-helmet-ficsmas-c_64.png b/www/assets/images/items/schematic-helmet-ficsmas-c_64.png new file mode 100644 index 00000000..edfa7212 Binary files /dev/null and b/www/assets/images/items/schematic-helmet-ficsmas-c_64.png differ diff --git a/www/assets/images/items/schematic-helmet-golden-c_256.png b/www/assets/images/items/schematic-helmet-golden-c_256.png new file mode 100644 index 00000000..bb074c40 Binary files /dev/null and b/www/assets/images/items/schematic-helmet-golden-c_256.png differ diff --git a/www/assets/images/items/schematic-helmet-golden-c_64.png b/www/assets/images/items/schematic-helmet-golden-c_64.png new file mode 100644 index 00000000..85afa0f5 Binary files /dev/null and b/www/assets/images/items/schematic-helmet-golden-c_64.png differ diff --git a/www/assets/images/items/schematic-helmet-scout-c_256.png b/www/assets/images/items/schematic-helmet-scout-c_256.png new file mode 100644 index 00000000..45c04797 Binary files /dev/null and b/www/assets/images/items/schematic-helmet-scout-c_256.png differ diff --git a/www/assets/images/items/schematic-helmet-scout-c_64.png b/www/assets/images/items/schematic-helmet-scout-c_64.png new file mode 100644 index 00000000..2c5a8a8a Binary files /dev/null and b/www/assets/images/items/schematic-helmet-scout-c_64.png differ diff --git a/www/assets/images/items/schematic-helmet-welder-c_256.png b/www/assets/images/items/schematic-helmet-welder-c_256.png new file mode 100644 index 00000000..6515962b Binary files /dev/null and b/www/assets/images/items/schematic-helmet-welder-c_256.png differ diff --git a/www/assets/images/items/schematic-helmet-welder-c_64.png b/www/assets/images/items/schematic-helmet-welder-c_64.png new file mode 100644 index 00000000..27d32669 Binary files /dev/null and b/www/assets/images/items/schematic-helmet-welder-c_64.png differ diff --git a/www/assets/images/items/schematic-joelsyntholm-c_256.png b/www/assets/images/items/schematic-joelsyntholm-c_256.png new file mode 100644 index 00000000..63084c2f Binary files /dev/null and b/www/assets/images/items/schematic-joelsyntholm-c_256.png differ diff --git a/www/assets/images/items/schematic-joelsyntholm-c_64.png b/www/assets/images/items/schematic-joelsyntholm-c_64.png new file mode 100644 index 00000000..76c2c2ca Binary files /dev/null and b/www/assets/images/items/schematic-joelsyntholm-c_64.png differ diff --git a/www/assets/images/items/schematic-lemichael-c_256.png b/www/assets/images/items/schematic-lemichael-c_256.png new file mode 100644 index 00000000..99d2a2fd Binary files /dev/null and b/www/assets/images/items/schematic-lemichael-c_256.png differ diff --git a/www/assets/images/items/schematic-lemichael-c_64.png b/www/assets/images/items/schematic-lemichael-c_64.png new file mode 100644 index 00000000..ad774dbf Binary files /dev/null and b/www/assets/images/items/schematic-lemichael-c_64.png differ diff --git a/www/assets/images/items/schematic-sanctum-c_256.png b/www/assets/images/items/schematic-sanctum-c_256.png new file mode 100644 index 00000000..3ccecb61 Binary files /dev/null and b/www/assets/images/items/schematic-sanctum-c_256.png differ diff --git a/www/assets/images/items/schematic-sanctum-c_64.png b/www/assets/images/items/schematic-sanctum-c_64.png new file mode 100644 index 00000000..7f232bc3 Binary files /dev/null and b/www/assets/images/items/schematic-sanctum-c_64.png differ diff --git a/www/assets/images/items/schematic-sanctum2-c_256.png b/www/assets/images/items/schematic-sanctum2-c_256.png new file mode 100644 index 00000000..8397a4a3 Binary files /dev/null and b/www/assets/images/items/schematic-sanctum2-c_256.png differ diff --git a/www/assets/images/items/schematic-sanctum2-c_64.png b/www/assets/images/items/schematic-sanctum2-c_64.png new file mode 100644 index 00000000..ef257e06 Binary files /dev/null and b/www/assets/images/items/schematic-sanctum2-c_64.png differ diff --git a/www/assets/images/items/schematic-skin-buildgun-camo-c_256.png b/www/assets/images/items/schematic-skin-buildgun-camo-c_256.png new file mode 100644 index 00000000..d99ac7c5 Binary files /dev/null and b/www/assets/images/items/schematic-skin-buildgun-camo-c_256.png differ diff --git a/www/assets/images/items/schematic-skin-buildgun-camo-c_64.png b/www/assets/images/items/schematic-skin-buildgun-camo-c_64.png new file mode 100644 index 00000000..9660c2b1 Binary files /dev/null and b/www/assets/images/items/schematic-skin-buildgun-camo-c_64.png differ diff --git a/www/assets/images/items/schematic-skin-buildgun-coloredsides-c_256.png b/www/assets/images/items/schematic-skin-buildgun-coloredsides-c_256.png new file mode 100644 index 00000000..43548918 Binary files /dev/null and b/www/assets/images/items/schematic-skin-buildgun-coloredsides-c_256.png differ diff --git a/www/assets/images/items/schematic-skin-buildgun-coloredsides-c_64.png b/www/assets/images/items/schematic-skin-buildgun-coloredsides-c_64.png new file mode 100644 index 00000000..c83836ae Binary files /dev/null and b/www/assets/images/items/schematic-skin-buildgun-coloredsides-c_64.png differ diff --git a/www/assets/images/items/schematic-skin-buildgun-default-c_256.png b/www/assets/images/items/schematic-skin-buildgun-default-c_256.png new file mode 100644 index 00000000..93c64e6c Binary files /dev/null and b/www/assets/images/items/schematic-skin-buildgun-default-c_256.png differ diff --git a/www/assets/images/items/schematic-skin-buildgun-default-c_64.png b/www/assets/images/items/schematic-skin-buildgun-default-c_64.png new file mode 100644 index 00000000..36e59610 Binary files /dev/null and b/www/assets/images/items/schematic-skin-buildgun-default-c_64.png differ diff --git a/www/assets/images/items/schematic-skin-buildgun-golden-c_256.png b/www/assets/images/items/schematic-skin-buildgun-golden-c_256.png new file mode 100644 index 00000000..7952c369 Binary files /dev/null and b/www/assets/images/items/schematic-skin-buildgun-golden-c_256.png differ diff --git a/www/assets/images/items/schematic-skin-buildgun-golden-c_64.png b/www/assets/images/items/schematic-skin-buildgun-golden-c_64.png new file mode 100644 index 00000000..9bc56eed Binary files /dev/null and b/www/assets/images/items/schematic-skin-buildgun-golden-c_64.png differ diff --git a/www/assets/images/items/schematic-skin-buildgun-halfnhalf-c_256.png b/www/assets/images/items/schematic-skin-buildgun-halfnhalf-c_256.png new file mode 100644 index 00000000..eb74a90c Binary files /dev/null and b/www/assets/images/items/schematic-skin-buildgun-halfnhalf-c_256.png differ diff --git a/www/assets/images/items/schematic-skin-buildgun-halfnhalf-c_64.png b/www/assets/images/items/schematic-skin-buildgun-halfnhalf-c_64.png new file mode 100644 index 00000000..42f5d26f Binary files /dev/null and b/www/assets/images/items/schematic-skin-buildgun-halfnhalf-c_64.png differ diff --git a/www/assets/images/items/schematic-skin-buildgun-striped-c_256.png b/www/assets/images/items/schematic-skin-buildgun-striped-c_256.png new file mode 100644 index 00000000..3f69d6e1 Binary files /dev/null and b/www/assets/images/items/schematic-skin-buildgun-striped-c_256.png differ diff --git a/www/assets/images/items/schematic-skin-buildgun-striped-c_64.png b/www/assets/images/items/schematic-skin-buildgun-striped-c_64.png new file mode 100644 index 00000000..3133ed0a Binary files /dev/null and b/www/assets/images/items/schematic-skin-buildgun-striped-c_64.png differ diff --git a/www/assets/images/items/schematic-trinket-airfreshener-c_256.png b/www/assets/images/items/schematic-trinket-airfreshener-c_256.png new file mode 100644 index 00000000..ff8a7021 Binary files /dev/null and b/www/assets/images/items/schematic-trinket-airfreshener-c_256.png differ diff --git a/www/assets/images/items/schematic-trinket-airfreshener-c_64.png b/www/assets/images/items/schematic-trinket-airfreshener-c_64.png new file mode 100644 index 00000000..01dc3fff Binary files /dev/null and b/www/assets/images/items/schematic-trinket-airfreshener-c_64.png differ diff --git a/www/assets/images/items/schematic-trinket-checkit-c_256.png b/www/assets/images/items/schematic-trinket-checkit-c_256.png new file mode 100644 index 00000000..5462ccd6 Binary files /dev/null and b/www/assets/images/items/schematic-trinket-checkit-c_256.png differ diff --git a/www/assets/images/items/schematic-trinket-checkit-c_64.png b/www/assets/images/items/schematic-trinket-checkit-c_64.png new file mode 100644 index 00000000..0dc7007a Binary files /dev/null and b/www/assets/images/items/schematic-trinket-checkit-c_64.png differ diff --git a/www/assets/images/items/schematic-trinket-default-c_256.png b/www/assets/images/items/schematic-trinket-default-c_256.png new file mode 100644 index 00000000..fe7fca79 Binary files /dev/null and b/www/assets/images/items/schematic-trinket-default-c_256.png differ diff --git a/www/assets/images/items/schematic-trinket-default-c_64.png b/www/assets/images/items/schematic-trinket-default-c_64.png new file mode 100644 index 00000000..b3c228e6 Binary files /dev/null and b/www/assets/images/items/schematic-trinket-default-c_64.png differ diff --git a/www/assets/images/items/schematic-trinket-ficsitcoupon-c_256.png b/www/assets/images/items/schematic-trinket-ficsitcoupon-c_256.png new file mode 100644 index 00000000..bf669de7 Binary files /dev/null and b/www/assets/images/items/schematic-trinket-ficsitcoupon-c_256.png differ diff --git a/www/assets/images/items/schematic-trinket-ficsitcoupon-c_64.png b/www/assets/images/items/schematic-trinket-ficsitcoupon-c_64.png new file mode 100644 index 00000000..d1f7b415 Binary files /dev/null and b/www/assets/images/items/schematic-trinket-ficsitcoupon-c_64.png differ diff --git a/www/assets/images/items/schematic-trinket-ficsmasball-c_256.png b/www/assets/images/items/schematic-trinket-ficsmasball-c_256.png new file mode 100644 index 00000000..7bd8648f Binary files /dev/null and b/www/assets/images/items/schematic-trinket-ficsmasball-c_256.png differ diff --git a/www/assets/images/items/schematic-trinket-ficsmasball-c_64.png b/www/assets/images/items/schematic-trinket-ficsmasball-c_64.png new file mode 100644 index 00000000..106468a4 Binary files /dev/null and b/www/assets/images/items/schematic-trinket-ficsmasball-c_64.png differ diff --git a/www/assets/images/items/schematic-trinket-ficsmasstar-c_256.png b/www/assets/images/items/schematic-trinket-ficsmasstar-c_256.png new file mode 100644 index 00000000..cc67ddac Binary files /dev/null and b/www/assets/images/items/schematic-trinket-ficsmasstar-c_256.png differ diff --git a/www/assets/images/items/schematic-trinket-ficsmasstar-c_64.png b/www/assets/images/items/schematic-trinket-ficsmasstar-c_64.png new file mode 100644 index 00000000..b65961b3 Binary files /dev/null and b/www/assets/images/items/schematic-trinket-ficsmasstar-c_64.png differ diff --git a/www/assets/images/items/schematic-trinket-nuclearwaste-c_256.png b/www/assets/images/items/schematic-trinket-nuclearwaste-c_256.png new file mode 100644 index 00000000..3f91f3f0 Binary files /dev/null and b/www/assets/images/items/schematic-trinket-nuclearwaste-c_256.png differ diff --git a/www/assets/images/items/schematic-trinket-nuclearwaste-c_64.png b/www/assets/images/items/schematic-trinket-nuclearwaste-c_64.png new file mode 100644 index 00000000..f2c33f29 Binary files /dev/null and b/www/assets/images/items/schematic-trinket-nuclearwaste-c_64.png differ diff --git a/www/assets/images/items/schematic-trinket-nut-c_256.png b/www/assets/images/items/schematic-trinket-nut-c_256.png new file mode 100644 index 00000000..f00f6a5e Binary files /dev/null and b/www/assets/images/items/schematic-trinket-nut-c_256.png differ diff --git a/www/assets/images/items/schematic-trinket-nut-c_64.png b/www/assets/images/items/schematic-trinket-nut-c_64.png new file mode 100644 index 00000000..643aad8b Binary files /dev/null and b/www/assets/images/items/schematic-trinket-nut-c_64.png differ diff --git a/www/assets/images/items/schematic-trinket-somersloop-c_256.png b/www/assets/images/items/schematic-trinket-somersloop-c_256.png new file mode 100644 index 00000000..4a5063ba Binary files /dev/null and b/www/assets/images/items/schematic-trinket-somersloop-c_256.png differ diff --git a/www/assets/images/items/schematic-trinket-somersloop-c_64.png b/www/assets/images/items/schematic-trinket-somersloop-c_64.png new file mode 100644 index 00000000..083f3a3a Binary files /dev/null and b/www/assets/images/items/schematic-trinket-somersloop-c_64.png differ diff --git a/www/assets/images/items/schematic-tutorial1-5-c_256.png b/www/assets/images/items/schematic-tutorial1-5-c_256.png new file mode 100644 index 00000000..f77ef27b Binary files /dev/null and b/www/assets/images/items/schematic-tutorial1-5-c_256.png differ diff --git a/www/assets/images/items/schematic-tutorial1-5-c_64.png b/www/assets/images/items/schematic-tutorial1-5-c_64.png new file mode 100644 index 00000000..e07b9343 Binary files /dev/null and b/www/assets/images/items/schematic-tutorial1-5-c_64.png differ diff --git a/www/assets/images/items/schematic-tutorial1-c_256.png b/www/assets/images/items/schematic-tutorial1-c_256.png new file mode 100644 index 00000000..f77ef27b Binary files /dev/null and b/www/assets/images/items/schematic-tutorial1-c_256.png differ diff --git a/www/assets/images/items/schematic-tutorial1-c_64.png b/www/assets/images/items/schematic-tutorial1-c_64.png new file mode 100644 index 00000000..e07b9343 Binary files /dev/null and b/www/assets/images/items/schematic-tutorial1-c_64.png differ diff --git a/www/assets/images/items/schematic-tutorial2-c_256.png b/www/assets/images/items/schematic-tutorial2-c_256.png new file mode 100644 index 00000000..27b58701 Binary files /dev/null and b/www/assets/images/items/schematic-tutorial2-c_256.png differ diff --git a/www/assets/images/items/schematic-tutorial2-c_64.png b/www/assets/images/items/schematic-tutorial2-c_64.png new file mode 100644 index 00000000..9beca5bb Binary files /dev/null and b/www/assets/images/items/schematic-tutorial2-c_64.png differ diff --git a/www/assets/images/items/schematic-tutorial3-c_256.png b/www/assets/images/items/schematic-tutorial3-c_256.png new file mode 100644 index 00000000..85790351 Binary files /dev/null and b/www/assets/images/items/schematic-tutorial3-c_256.png differ diff --git a/www/assets/images/items/schematic-tutorial3-c_64.png b/www/assets/images/items/schematic-tutorial3-c_64.png new file mode 100644 index 00000000..5bad16c8 Binary files /dev/null and b/www/assets/images/items/schematic-tutorial3-c_64.png differ diff --git a/www/assets/images/items/schematic-tutorial4-c_256.png b/www/assets/images/items/schematic-tutorial4-c_256.png new file mode 100644 index 00000000..9ac6ebfd Binary files /dev/null and b/www/assets/images/items/schematic-tutorial4-c_256.png differ diff --git a/www/assets/images/items/schematic-tutorial4-c_64.png b/www/assets/images/items/schematic-tutorial4-c_64.png new file mode 100644 index 00000000..ffde4db3 Binary files /dev/null and b/www/assets/images/items/schematic-tutorial4-c_64.png differ diff --git a/www/assets/images/items/schematic-tutorial5-c_256.png b/www/assets/images/items/schematic-tutorial5-c_256.png new file mode 100644 index 00000000..550e8c1f Binary files /dev/null and b/www/assets/images/items/schematic-tutorial5-c_256.png differ diff --git a/www/assets/images/items/schematic-tutorial5-c_64.png b/www/assets/images/items/schematic-tutorial5-c_64.png new file mode 100644 index 00000000..5222da5d Binary files /dev/null and b/www/assets/images/items/schematic-tutorial5-c_64.png differ diff --git a/www/assets/images/items/screw_256.png b/www/assets/images/items/screw_256.png deleted file mode 100644 index 0a8c23be..00000000 Binary files a/www/assets/images/items/screw_256.png and /dev/null differ diff --git a/www/assets/images/items/screw_64.png b/www/assets/images/items/screw_64.png deleted file mode 100644 index 8e14c2b0..00000000 Binary files a/www/assets/images/items/screw_64.png and /dev/null differ diff --git a/www/assets/images/items/side-door-wall-1_256.png b/www/assets/images/items/side-door-wall-1_256.png deleted file mode 100644 index b535a713..00000000 Binary files a/www/assets/images/items/side-door-wall-1_256.png and /dev/null differ diff --git a/www/assets/images/items/side-door-wall-1_64.png b/www/assets/images/items/side-door-wall-1_64.png deleted file mode 100644 index 873ea426..00000000 Binary files a/www/assets/images/items/side-door-wall-1_64.png and /dev/null differ diff --git a/www/assets/images/items/side-door-wall-concrete_256.png b/www/assets/images/items/side-door-wall-concrete_256.png deleted file mode 100644 index 9185050d..00000000 Binary files a/www/assets/images/items/side-door-wall-concrete_256.png and /dev/null differ diff --git a/www/assets/images/items/side-door-wall-concrete_64.png b/www/assets/images/items/side-door-wall-concrete_64.png deleted file mode 100644 index 16a66513..00000000 Binary files a/www/assets/images/items/side-door-wall-concrete_64.png and /dev/null differ diff --git a/www/assets/images/items/side-door-wall-steel_256.png b/www/assets/images/items/side-door-wall-steel_256.png deleted file mode 100644 index edf38511..00000000 Binary files a/www/assets/images/items/side-door-wall-steel_256.png and /dev/null differ diff --git a/www/assets/images/items/side-door-wall-steel_64.png b/www/assets/images/items/side-door-wall-steel_64.png deleted file mode 100644 index 00b64ff1..00000000 Binary files a/www/assets/images/items/side-door-wall-steel_64.png and /dev/null differ diff --git a/www/assets/images/items/side-door-wall_256.png b/www/assets/images/items/side-door-wall_256.png deleted file mode 100644 index b535a713..00000000 Binary files a/www/assets/images/items/side-door-wall_256.png and /dev/null differ diff --git a/www/assets/images/items/side-door-wall_64.png b/www/assets/images/items/side-door-wall_64.png deleted file mode 100644 index 7a117a0f..00000000 Binary files a/www/assets/images/items/side-door-wall_64.png and /dev/null differ diff --git a/www/assets/images/items/signal-technologies_256.png b/www/assets/images/items/signal-technologies_256.png deleted file mode 100644 index 87dbf73c..00000000 Binary files a/www/assets/images/items/signal-technologies_256.png and /dev/null differ diff --git a/www/assets/images/items/signal-technologies_64.png b/www/assets/images/items/signal-technologies_64.png deleted file mode 100644 index fb934e61..00000000 Binary files a/www/assets/images/items/signal-technologies_64.png and /dev/null differ diff --git a/www/assets/images/items/silica-1_256.png b/www/assets/images/items/silica-1_256.png deleted file mode 100644 index b1c16f65..00000000 Binary files a/www/assets/images/items/silica-1_256.png and /dev/null differ diff --git a/www/assets/images/items/silica-1_64.png b/www/assets/images/items/silica-1_64.png deleted file mode 100644 index 520319ca..00000000 Binary files a/www/assets/images/items/silica-1_64.png and /dev/null differ diff --git a/www/assets/images/items/silica_256.png b/www/assets/images/items/silica_256.png deleted file mode 100644 index 53fb455b..00000000 Binary files a/www/assets/images/items/silica_256.png and /dev/null differ diff --git a/www/assets/images/items/silica_64.png b/www/assets/images/items/silica_64.png deleted file mode 100644 index dcf5553f..00000000 Binary files a/www/assets/images/items/silica_64.png and /dev/null differ diff --git a/www/assets/images/items/single-window-1_256.png b/www/assets/images/items/single-window-1_256.png deleted file mode 100644 index 0797828f..00000000 Binary files a/www/assets/images/items/single-window-1_256.png and /dev/null differ diff --git a/www/assets/images/items/single-window-1_64.png b/www/assets/images/items/single-window-1_64.png deleted file mode 100644 index 1cbaa016..00000000 Binary files a/www/assets/images/items/single-window-1_64.png and /dev/null differ diff --git a/www/assets/images/items/single-window-concrete_256.png b/www/assets/images/items/single-window-concrete_256.png deleted file mode 100644 index 37e83795..00000000 Binary files a/www/assets/images/items/single-window-concrete_256.png and /dev/null differ diff --git a/www/assets/images/items/single-window-concrete_64.png b/www/assets/images/items/single-window-concrete_64.png deleted file mode 100644 index f3e3974f..00000000 Binary files a/www/assets/images/items/single-window-concrete_64.png and /dev/null differ diff --git a/www/assets/images/items/single-window-steel_256.png b/www/assets/images/items/single-window-steel_256.png deleted file mode 100644 index 8b033e63..00000000 Binary files a/www/assets/images/items/single-window-steel_256.png and /dev/null differ diff --git a/www/assets/images/items/single-window-steel_64.png b/www/assets/images/items/single-window-steel_64.png deleted file mode 100644 index 94e6f2e0..00000000 Binary files a/www/assets/images/items/single-window-steel_64.png and /dev/null differ diff --git a/www/assets/images/items/single-window_256.png b/www/assets/images/items/single-window_256.png deleted file mode 100644 index 0797828f..00000000 Binary files a/www/assets/images/items/single-window_256.png and /dev/null differ diff --git a/www/assets/images/items/single-window_64.png b/www/assets/images/items/single-window_64.png deleted file mode 100644 index 135e16bb..00000000 Binary files a/www/assets/images/items/single-window_64.png and /dev/null differ diff --git a/www/assets/images/items/slug-scanning_256.png b/www/assets/images/items/slug-scanning_256.png deleted file mode 100644 index e98f53f4..00000000 Binary files a/www/assets/images/items/slug-scanning_256.png and /dev/null differ diff --git a/www/assets/images/items/slug-scanning_64.png b/www/assets/images/items/slug-scanning_64.png deleted file mode 100644 index 74ae2e09..00000000 Binary files a/www/assets/images/items/slug-scanning_64.png and /dev/null differ diff --git a/www/assets/images/items/small-billboard_256.png b/www/assets/images/items/small-billboard_256.png deleted file mode 100644 index 09d95b7f..00000000 Binary files a/www/assets/images/items/small-billboard_256.png and /dev/null differ diff --git a/www/assets/images/items/small-billboard_64.png b/www/assets/images/items/small-billboard_64.png deleted file mode 100644 index 0c8cc15f..00000000 Binary files a/www/assets/images/items/small-billboard_64.png and /dev/null differ diff --git a/www/assets/images/items/small-concrete-pillar-concrete_256.png b/www/assets/images/items/small-concrete-pillar-concrete_256.png deleted file mode 100644 index d75ec755..00000000 Binary files a/www/assets/images/items/small-concrete-pillar-concrete_256.png and /dev/null differ diff --git a/www/assets/images/items/small-concrete-pillar-concrete_64.png b/www/assets/images/items/small-concrete-pillar-concrete_64.png deleted file mode 100644 index f604123c..00000000 Binary files a/www/assets/images/items/small-concrete-pillar-concrete_64.png and /dev/null differ diff --git a/www/assets/images/items/small-concrete-pillar_256.png b/www/assets/images/items/small-concrete-pillar_256.png deleted file mode 100644 index d75ec755..00000000 Binary files a/www/assets/images/items/small-concrete-pillar_256.png and /dev/null differ diff --git a/www/assets/images/items/small-concrete-pillar_64.png b/www/assets/images/items/small-concrete-pillar_64.png deleted file mode 100644 index 10100c41..00000000 Binary files a/www/assets/images/items/small-concrete-pillar_64.png and /dev/null differ diff --git a/www/assets/images/items/small-frame-pillar_256.png b/www/assets/images/items/small-frame-pillar_256.png deleted file mode 100644 index 0be90b14..00000000 Binary files a/www/assets/images/items/small-frame-pillar_256.png and /dev/null differ diff --git a/www/assets/images/items/small-frame-pillar_64.png b/www/assets/images/items/small-frame-pillar_64.png deleted file mode 100644 index b67133a2..00000000 Binary files a/www/assets/images/items/small-frame-pillar_64.png and /dev/null differ diff --git a/www/assets/images/items/small-metal-pillar-metal_256.png b/www/assets/images/items/small-metal-pillar-metal_256.png deleted file mode 100644 index fb24db11..00000000 Binary files a/www/assets/images/items/small-metal-pillar-metal_256.png and /dev/null differ diff --git a/www/assets/images/items/small-metal-pillar-metal_64.png b/www/assets/images/items/small-metal-pillar-metal_64.png deleted file mode 100644 index 07cdb56f..00000000 Binary files a/www/assets/images/items/small-metal-pillar-metal_64.png and /dev/null differ diff --git a/www/assets/images/items/small-metal-pillar_256.png b/www/assets/images/items/small-metal-pillar_256.png deleted file mode 100644 index fb24db11..00000000 Binary files a/www/assets/images/items/small-metal-pillar_256.png and /dev/null differ diff --git a/www/assets/images/items/small-metal-pillar_64.png b/www/assets/images/items/small-metal-pillar_64.png deleted file mode 100644 index 1ec408aa..00000000 Binary files a/www/assets/images/items/small-metal-pillar_64.png and /dev/null differ diff --git a/www/assets/images/items/small-pillar-support_256.png b/www/assets/images/items/small-pillar-support_256.png deleted file mode 100644 index 15d24951..00000000 Binary files a/www/assets/images/items/small-pillar-support_256.png and /dev/null differ diff --git a/www/assets/images/items/small-pillar-support_64.png b/www/assets/images/items/small-pillar-support_64.png deleted file mode 100644 index 7b5400ad..00000000 Binary files a/www/assets/images/items/small-pillar-support_64.png and /dev/null differ diff --git a/www/assets/images/items/smart-plating_256.png b/www/assets/images/items/smart-plating_256.png deleted file mode 100644 index b5105c21..00000000 Binary files a/www/assets/images/items/smart-plating_256.png and /dev/null differ diff --git a/www/assets/images/items/smart-plating_64.png b/www/assets/images/items/smart-plating_64.png deleted file mode 100644 index 3aa63485..00000000 Binary files a/www/assets/images/items/smart-plating_64.png and /dev/null differ diff --git a/www/assets/images/items/smart-splitter-1_256.png b/www/assets/images/items/smart-splitter-1_256.png deleted file mode 100644 index d1aa1095..00000000 Binary files a/www/assets/images/items/smart-splitter-1_256.png and /dev/null differ diff --git a/www/assets/images/items/smart-splitter-1_64.png b/www/assets/images/items/smart-splitter-1_64.png deleted file mode 100644 index 02396335..00000000 Binary files a/www/assets/images/items/smart-splitter-1_64.png and /dev/null differ diff --git a/www/assets/images/items/smart-splitter_256.png b/www/assets/images/items/smart-splitter_256.png deleted file mode 100644 index e9c8724f..00000000 Binary files a/www/assets/images/items/smart-splitter_256.png and /dev/null differ diff --git a/www/assets/images/items/smart-splitter_64.png b/www/assets/images/items/smart-splitter_64.png deleted file mode 100644 index c83166cb..00000000 Binary files a/www/assets/images/items/smart-splitter_64.png and /dev/null differ diff --git a/www/assets/images/items/smelter_256.png b/www/assets/images/items/smelter_256.png deleted file mode 100644 index 7bd733b7..00000000 Binary files a/www/assets/images/items/smelter_256.png and /dev/null differ diff --git a/www/assets/images/items/smelter_64.png b/www/assets/images/items/smelter_64.png deleted file mode 100644 index 8de2b11b..00000000 Binary files a/www/assets/images/items/smelter_64.png and /dev/null differ diff --git a/www/assets/images/items/snowfight!_256.png b/www/assets/images/items/snowfight!_256.png deleted file mode 100644 index 88faec56..00000000 Binary files a/www/assets/images/items/snowfight!_256.png and /dev/null differ diff --git a/www/assets/images/items/snowfight!_64.png b/www/assets/images/items/snowfight!_64.png deleted file mode 100644 index 3640cc76..00000000 Binary files a/www/assets/images/items/snowfight!_64.png and /dev/null differ diff --git a/www/assets/images/items/snutt_256.png b/www/assets/images/items/snutt_256.png deleted file mode 100644 index 012fce5f..00000000 Binary files a/www/assets/images/items/snutt_256.png and /dev/null differ diff --git a/www/assets/images/items/snutt_64.png b/www/assets/images/items/snutt_64.png deleted file mode 100644 index b7204f3f..00000000 Binary files a/www/assets/images/items/snutt_64.png and /dev/null differ diff --git a/www/assets/images/items/solid-biofuel_256.png b/www/assets/images/items/solid-biofuel_256.png deleted file mode 100644 index 6f9abc65..00000000 Binary files a/www/assets/images/items/solid-biofuel_256.png and /dev/null differ diff --git a/www/assets/images/items/solid-biofuel_64.png b/www/assets/images/items/solid-biofuel_64.png deleted file mode 100644 index de6ebf9b..00000000 Binary files a/www/assets/images/items/solid-biofuel_64.png and /dev/null differ diff --git a/www/assets/images/items/solid-line-patterns_256.png b/www/assets/images/items/solid-line-patterns_256.png deleted file mode 100644 index 8a982eb7..00000000 Binary files a/www/assets/images/items/solid-line-patterns_256.png and /dev/null differ diff --git a/www/assets/images/items/solid-line-patterns_64.png b/www/assets/images/items/solid-line-patterns_64.png deleted file mode 100644 index 2dc1b30d..00000000 Binary files a/www/assets/images/items/solid-line-patterns_64.png and /dev/null differ diff --git a/www/assets/images/items/space-elevator_256.png b/www/assets/images/items/space-elevator_256.png deleted file mode 100644 index d7b6533c..00000000 Binary files a/www/assets/images/items/space-elevator_256.png and /dev/null differ diff --git a/www/assets/images/items/space-elevator_64.png b/www/assets/images/items/space-elevator_64.png deleted file mode 100644 index 51f036bc..00000000 Binary files a/www/assets/images/items/space-elevator_64.png and /dev/null differ diff --git a/www/assets/images/items/spiked-rebar_256.png b/www/assets/images/items/spiked-rebar_256.png deleted file mode 100644 index cfc2c6b7..00000000 Binary files a/www/assets/images/items/spiked-rebar_256.png and /dev/null differ diff --git a/www/assets/images/items/spiked-rebar_64.png b/www/assets/images/items/spiked-rebar_64.png deleted file mode 100644 index 20d8d3f6..00000000 Binary files a/www/assets/images/items/spiked-rebar_64.png and /dev/null differ diff --git a/www/assets/images/items/spiked-rebars_256.png b/www/assets/images/items/spiked-rebars_256.png deleted file mode 100644 index 55bb8a55..00000000 Binary files a/www/assets/images/items/spiked-rebars_256.png and /dev/null differ diff --git a/www/assets/images/items/spiked-rebars_64.png b/www/assets/images/items/spiked-rebars_64.png deleted file mode 100644 index 01ed6578..00000000 Binary files a/www/assets/images/items/spiked-rebars_64.png and /dev/null differ diff --git a/www/assets/images/items/square-sign-0-5m_256.png b/www/assets/images/items/square-sign-0-5m_256.png deleted file mode 100644 index f8754d75..00000000 Binary files a/www/assets/images/items/square-sign-0-5m_256.png and /dev/null differ diff --git a/www/assets/images/items/square-sign-0-5m_64.png b/www/assets/images/items/square-sign-0-5m_64.png deleted file mode 100644 index 71c67e7d..00000000 Binary files a/www/assets/images/items/square-sign-0-5m_64.png and /dev/null differ diff --git a/www/assets/images/items/square-sign-1m_256.png b/www/assets/images/items/square-sign-1m_256.png deleted file mode 100644 index 7c9265cc..00000000 Binary files a/www/assets/images/items/square-sign-1m_256.png and /dev/null differ diff --git a/www/assets/images/items/square-sign-1m_64.png b/www/assets/images/items/square-sign-1m_64.png deleted file mode 100644 index 017571ef..00000000 Binary files a/www/assets/images/items/square-sign-1m_64.png and /dev/null differ diff --git a/www/assets/images/items/square-sign-2m_256.png b/www/assets/images/items/square-sign-2m_256.png deleted file mode 100644 index 3eade055..00000000 Binary files a/www/assets/images/items/square-sign-2m_256.png and /dev/null differ diff --git a/www/assets/images/items/square-sign-2m_64.png b/www/assets/images/items/square-sign-2m_64.png deleted file mode 100644 index 1c846724..00000000 Binary files a/www/assets/images/items/square-sign-2m_64.png and /dev/null differ diff --git a/www/assets/images/items/stackable-conveyor-pole_256.png b/www/assets/images/items/stackable-conveyor-pole_256.png deleted file mode 100644 index e9c6bcf0..00000000 Binary files a/www/assets/images/items/stackable-conveyor-pole_256.png and /dev/null differ diff --git a/www/assets/images/items/stackable-conveyor-pole_64.png b/www/assets/images/items/stackable-conveyor-pole_64.png deleted file mode 100644 index c16312bb..00000000 Binary files a/www/assets/images/items/stackable-conveyor-pole_64.png and /dev/null differ diff --git a/www/assets/images/items/stackable-hypertube-support_256.png b/www/assets/images/items/stackable-hypertube-support_256.png deleted file mode 100644 index cf2867c1..00000000 Binary files a/www/assets/images/items/stackable-hypertube-support_256.png and /dev/null differ diff --git a/www/assets/images/items/stackable-hypertube-support_64.png b/www/assets/images/items/stackable-hypertube-support_64.png deleted file mode 100644 index 44c04eda..00000000 Binary files a/www/assets/images/items/stackable-hypertube-support_64.png and /dev/null differ diff --git a/www/assets/images/items/stackable-pipeline-support_256.png b/www/assets/images/items/stackable-pipeline-support_256.png deleted file mode 100644 index ca812b24..00000000 Binary files a/www/assets/images/items/stackable-pipeline-support_256.png and /dev/null differ diff --git a/www/assets/images/items/stackable-pipeline-support_64.png b/www/assets/images/items/stackable-pipeline-support_64.png deleted file mode 100644 index 4bc7b052..00000000 Binary files a/www/assets/images/items/stackable-pipeline-support_64.png and /dev/null differ diff --git a/www/assets/images/items/stairs-left_256.png b/www/assets/images/items/stairs-left_256.png deleted file mode 100644 index 2adf496e..00000000 Binary files a/www/assets/images/items/stairs-left_256.png and /dev/null differ diff --git a/www/assets/images/items/stairs-left_64.png b/www/assets/images/items/stairs-left_64.png deleted file mode 100644 index 23399ecb..00000000 Binary files a/www/assets/images/items/stairs-left_64.png and /dev/null differ diff --git a/www/assets/images/items/stairs-right_256.png b/www/assets/images/items/stairs-right_256.png deleted file mode 100644 index 50cd42d7..00000000 Binary files a/www/assets/images/items/stairs-right_256.png and /dev/null differ diff --git a/www/assets/images/items/stairs-right_64.png b/www/assets/images/items/stairs-right_64.png deleted file mode 100644 index fe728775..00000000 Binary files a/www/assets/images/items/stairs-right_64.png and /dev/null differ diff --git a/www/assets/images/items/stairs_256.png b/www/assets/images/items/stairs_256.png deleted file mode 100644 index 53b4c2ac..00000000 Binary files a/www/assets/images/items/stairs_256.png and /dev/null differ diff --git a/www/assets/images/items/stairs_64.png b/www/assets/images/items/stairs_64.png deleted file mode 100644 index 4576b3dd..00000000 Binary files a/www/assets/images/items/stairs_64.png and /dev/null differ diff --git a/www/assets/images/items/stator_256.png b/www/assets/images/items/stator_256.png deleted file mode 100644 index 850115a6..00000000 Binary files a/www/assets/images/items/stator_256.png and /dev/null differ diff --git a/www/assets/images/items/stator_64.png b/www/assets/images/items/stator_64.png deleted file mode 100644 index 70bba977..00000000 Binary files a/www/assets/images/items/stator_64.png and /dev/null differ diff --git a/www/assets/images/items/steel-beam_256.png b/www/assets/images/items/steel-beam_256.png deleted file mode 100644 index eb881349..00000000 Binary files a/www/assets/images/items/steel-beam_256.png and /dev/null differ diff --git a/www/assets/images/items/steel-beam_64.png b/www/assets/images/items/steel-beam_64.png deleted file mode 100644 index f6356147..00000000 Binary files a/www/assets/images/items/steel-beam_64.png and /dev/null differ diff --git a/www/assets/images/items/steel-framed-windows_256.png b/www/assets/images/items/steel-framed-windows_256.png deleted file mode 100644 index eaba511b..00000000 Binary files a/www/assets/images/items/steel-framed-windows_256.png and /dev/null differ diff --git a/www/assets/images/items/steel-framed-windows_64.png b/www/assets/images/items/steel-framed-windows_64.png deleted file mode 100644 index 51c0edc9..00000000 Binary files a/www/assets/images/items/steel-framed-windows_64.png and /dev/null differ diff --git a/www/assets/images/items/steel-ingot_256.png b/www/assets/images/items/steel-ingot_256.png deleted file mode 100644 index 59822422..00000000 Binary files a/www/assets/images/items/steel-ingot_256.png and /dev/null differ diff --git a/www/assets/images/items/steel-ingot_64.png b/www/assets/images/items/steel-ingot_64.png deleted file mode 100644 index 30a40cf3..00000000 Binary files a/www/assets/images/items/steel-ingot_64.png and /dev/null differ diff --git a/www/assets/images/items/steel-pipe_256.png b/www/assets/images/items/steel-pipe_256.png deleted file mode 100644 index 97aeb129..00000000 Binary files a/www/assets/images/items/steel-pipe_256.png and /dev/null differ diff --git a/www/assets/images/items/steel-pipe_64.png b/www/assets/images/items/steel-pipe_64.png deleted file mode 100644 index 7c114df2..00000000 Binary files a/www/assets/images/items/steel-pipe_64.png and /dev/null differ diff --git a/www/assets/images/items/steel-roof-material_256.png b/www/assets/images/items/steel-roof-material_256.png deleted file mode 100644 index 31e768ae..00000000 Binary files a/www/assets/images/items/steel-roof-material_256.png and /dev/null differ diff --git a/www/assets/images/items/steel-roof-material_64.png b/www/assets/images/items/steel-roof-material_64.png deleted file mode 100644 index ec36df34..00000000 Binary files a/www/assets/images/items/steel-roof-material_64.png and /dev/null differ diff --git a/www/assets/images/items/steel-wall-material_256.png b/www/assets/images/items/steel-wall-material_256.png deleted file mode 100644 index 452924cb..00000000 Binary files a/www/assets/images/items/steel-wall-material_256.png and /dev/null differ diff --git a/www/assets/images/items/steel-wall-material_64.png b/www/assets/images/items/steel-wall-material_64.png deleted file mode 100644 index 3bbe8c13..00000000 Binary files a/www/assets/images/items/steel-wall-material_64.png and /dev/null differ diff --git a/www/assets/images/items/storage-container_256.png b/www/assets/images/items/storage-container_256.png deleted file mode 100644 index e70b39fa..00000000 Binary files a/www/assets/images/items/storage-container_256.png and /dev/null differ diff --git a/www/assets/images/items/storage-container_64.png b/www/assets/images/items/storage-container_64.png deleted file mode 100644 index c421e067..00000000 Binary files a/www/assets/images/items/storage-container_64.png and /dev/null differ diff --git a/www/assets/images/items/street-light-1_256.png b/www/assets/images/items/street-light-1_256.png deleted file mode 100644 index e6add245..00000000 Binary files a/www/assets/images/items/street-light-1_256.png and /dev/null differ diff --git a/www/assets/images/items/street-light-1_64.png b/www/assets/images/items/street-light-1_64.png deleted file mode 100644 index 66b0770b..00000000 Binary files a/www/assets/images/items/street-light-1_64.png and /dev/null differ diff --git a/www/assets/images/items/street-light_256.png b/www/assets/images/items/street-light_256.png deleted file mode 100644 index 6ea2bc71..00000000 Binary files a/www/assets/images/items/street-light_256.png and /dev/null differ diff --git a/www/assets/images/items/street-light_64.png b/www/assets/images/items/street-light_64.png deleted file mode 100644 index 564e3106..00000000 Binary files a/www/assets/images/items/street-light_64.png and /dev/null differ diff --git a/www/assets/images/items/structural-analysis_256.png b/www/assets/images/items/structural-analysis_256.png deleted file mode 100644 index f070bf02..00000000 Binary files a/www/assets/images/items/structural-analysis_256.png and /dev/null differ diff --git a/www/assets/images/items/structural-analysis_64.png b/www/assets/images/items/structural-analysis_64.png deleted file mode 100644 index 91c491b3..00000000 Binary files a/www/assets/images/items/structural-analysis_64.png and /dev/null differ diff --git a/www/assets/images/items/structural-beam-pack_256.png b/www/assets/images/items/structural-beam-pack_256.png deleted file mode 100644 index 9c1ef2fd..00000000 Binary files a/www/assets/images/items/structural-beam-pack_256.png and /dev/null differ diff --git a/www/assets/images/items/structural-beam-pack_64.png b/www/assets/images/items/structural-beam-pack_64.png deleted file mode 100644 index 67091aaf..00000000 Binary files a/www/assets/images/items/structural-beam-pack_64.png and /dev/null differ diff --git a/www/assets/images/items/structural-frame-set_256.png b/www/assets/images/items/structural-frame-set_256.png deleted file mode 100644 index 377bed2b..00000000 Binary files a/www/assets/images/items/structural-frame-set_256.png and /dev/null differ diff --git a/www/assets/images/items/structural-frame-set_64.png b/www/assets/images/items/structural-frame-set_64.png deleted file mode 100644 index 49ec270d..00000000 Binary files a/www/assets/images/items/structural-frame-set_64.png and /dev/null differ diff --git a/www/assets/images/items/sulfur-1_256.png b/www/assets/images/items/sulfur-1_256.png deleted file mode 100644 index 8671c0a5..00000000 Binary files a/www/assets/images/items/sulfur-1_256.png and /dev/null differ diff --git a/www/assets/images/items/sulfur-1_64.png b/www/assets/images/items/sulfur-1_64.png deleted file mode 100644 index 3b8ae2ad..00000000 Binary files a/www/assets/images/items/sulfur-1_64.png and /dev/null differ diff --git a/www/assets/images/items/sulfur_256.png b/www/assets/images/items/sulfur_256.png deleted file mode 100644 index deabe7dd..00000000 Binary files a/www/assets/images/items/sulfur_256.png and /dev/null differ diff --git a/www/assets/images/items/sulfur_64.png b/www/assets/images/items/sulfur_64.png deleted file mode 100644 index 18d3c082..00000000 Binary files a/www/assets/images/items/sulfur_64.png and /dev/null differ diff --git a/www/assets/images/items/sulfuric-acid_256.png b/www/assets/images/items/sulfuric-acid_256.png deleted file mode 100644 index 1a747716..00000000 Binary files a/www/assets/images/items/sulfuric-acid_256.png and /dev/null differ diff --git a/www/assets/images/items/sulfuric-acid_64.png b/www/assets/images/items/sulfuric-acid_64.png deleted file mode 100644 index 20c3aecc..00000000 Binary files a/www/assets/images/items/sulfuric-acid_64.png and /dev/null differ diff --git a/www/assets/images/items/supercomputer-1_256.png b/www/assets/images/items/supercomputer-1_256.png deleted file mode 100644 index 9f428fdf..00000000 Binary files a/www/assets/images/items/supercomputer-1_256.png and /dev/null differ diff --git a/www/assets/images/items/supercomputer-1_64.png b/www/assets/images/items/supercomputer-1_64.png deleted file mode 100644 index d9243ce1..00000000 Binary files a/www/assets/images/items/supercomputer-1_64.png and /dev/null differ diff --git a/www/assets/images/items/supercomputer_256.png b/www/assets/images/items/supercomputer_256.png deleted file mode 100644 index aa0c7243..00000000 Binary files a/www/assets/images/items/supercomputer_256.png and /dev/null differ diff --git a/www/assets/images/items/supercomputer_64.png b/www/assets/images/items/supercomputer_64.png deleted file mode 100644 index 652b0ddc..00000000 Binary files a/www/assets/images/items/supercomputer_64.png and /dev/null differ diff --git a/www/assets/images/items/tar-roof-1m_256.png b/www/assets/images/items/tar-roof-1m_256.png deleted file mode 100644 index 64ca8dda..00000000 Binary files a/www/assets/images/items/tar-roof-1m_256.png and /dev/null differ diff --git a/www/assets/images/items/tar-roof-1m_64.png b/www/assets/images/items/tar-roof-1m_64.png deleted file mode 100644 index 109351f4..00000000 Binary files a/www/assets/images/items/tar-roof-1m_64.png and /dev/null differ diff --git a/www/assets/images/items/tar-roof-2m_256.png b/www/assets/images/items/tar-roof-2m_256.png deleted file mode 100644 index 2428cf53..00000000 Binary files a/www/assets/images/items/tar-roof-2m_256.png and /dev/null differ diff --git a/www/assets/images/items/tar-roof-2m_64.png b/www/assets/images/items/tar-roof-2m_64.png deleted file mode 100644 index b1a5c651..00000000 Binary files a/www/assets/images/items/tar-roof-2m_64.png and /dev/null differ diff --git a/www/assets/images/items/tar-roof-4m_256.png b/www/assets/images/items/tar-roof-4m_256.png deleted file mode 100644 index 4cc6b91c..00000000 Binary files a/www/assets/images/items/tar-roof-4m_256.png and /dev/null differ diff --git a/www/assets/images/items/tar-roof-4m_64.png b/www/assets/images/items/tar-roof-4m_64.png deleted file mode 100644 index 4249ce8f..00000000 Binary files a/www/assets/images/items/tar-roof-4m_64.png and /dev/null differ diff --git a/www/assets/images/items/tar-roof-flat_256.png b/www/assets/images/items/tar-roof-flat_256.png deleted file mode 100644 index 0983b3f1..00000000 Binary files a/www/assets/images/items/tar-roof-flat_256.png and /dev/null differ diff --git a/www/assets/images/items/tar-roof-flat_64.png b/www/assets/images/items/tar-roof-flat_64.png deleted file mode 100644 index 050185f8..00000000 Binary files a/www/assets/images/items/tar-roof-flat_64.png and /dev/null differ diff --git a/www/assets/images/items/tar-roof-material_256.png b/www/assets/images/items/tar-roof-material_256.png deleted file mode 100644 index 8faa06ba..00000000 Binary files a/www/assets/images/items/tar-roof-material_256.png and /dev/null differ diff --git a/www/assets/images/items/tar-roof-material_64.png b/www/assets/images/items/tar-roof-material_64.png deleted file mode 100644 index 51fc472f..00000000 Binary files a/www/assets/images/items/tar-roof-material_64.png and /dev/null differ diff --git a/www/assets/images/items/the-explorer_256.png b/www/assets/images/items/the-explorer_256.png deleted file mode 100644 index bff0e122..00000000 Binary files a/www/assets/images/items/the-explorer_256.png and /dev/null differ diff --git a/www/assets/images/items/the-explorer_64.png b/www/assets/images/items/the-explorer_64.png deleted file mode 100644 index 3f1775e5..00000000 Binary files a/www/assets/images/items/the-explorer_64.png and /dev/null differ diff --git a/www/assets/images/items/the-hub_256.png b/www/assets/images/items/the-hub_256.png deleted file mode 100644 index f63c1f46..00000000 Binary files a/www/assets/images/items/the-hub_256.png and /dev/null differ diff --git a/www/assets/images/items/the-hub_64.png b/www/assets/images/items/the-hub_64.png deleted file mode 100644 index e74bfaea..00000000 Binary files a/www/assets/images/items/the-hub_64.png and /dev/null differ diff --git a/www/assets/images/items/the-rifle_256.png b/www/assets/images/items/the-rifle_256.png deleted file mode 100644 index d02bce60..00000000 Binary files a/www/assets/images/items/the-rifle_256.png and /dev/null differ diff --git a/www/assets/images/items/the-rifle_64.png b/www/assets/images/items/the-rifle_64.png deleted file mode 100644 index 46e38de1..00000000 Binary files a/www/assets/images/items/the-rifle_64.png and /dev/null differ diff --git a/www/assets/images/items/thermal-propulsion-rocket_256.png b/www/assets/images/items/thermal-propulsion-rocket_256.png deleted file mode 100644 index 7dcdcc05..00000000 Binary files a/www/assets/images/items/thermal-propulsion-rocket_256.png and /dev/null differ diff --git a/www/assets/images/items/thermal-propulsion-rocket_64.png b/www/assets/images/items/thermal-propulsion-rocket_64.png deleted file mode 100644 index d08b5a69..00000000 Binary files a/www/assets/images/items/thermal-propulsion-rocket_64.png and /dev/null differ diff --git a/www/assets/images/items/tilted-corner-wall-4m-1_256.png b/www/assets/images/items/tilted-corner-wall-4m-1_256.png deleted file mode 100644 index f0115832..00000000 Binary files a/www/assets/images/items/tilted-corner-wall-4m-1_256.png and /dev/null differ diff --git a/www/assets/images/items/tilted-corner-wall-4m-1_64.png b/www/assets/images/items/tilted-corner-wall-4m-1_64.png deleted file mode 100644 index 3c05f5ed..00000000 Binary files a/www/assets/images/items/tilted-corner-wall-4m-1_64.png and /dev/null differ diff --git a/www/assets/images/items/tilted-corner-wall-4m-concrete_256.png b/www/assets/images/items/tilted-corner-wall-4m-concrete_256.png deleted file mode 100644 index 4dab85e1..00000000 Binary files a/www/assets/images/items/tilted-corner-wall-4m-concrete_256.png and /dev/null differ diff --git a/www/assets/images/items/tilted-corner-wall-4m-concrete_64.png b/www/assets/images/items/tilted-corner-wall-4m-concrete_64.png deleted file mode 100644 index 365e9a76..00000000 Binary files a/www/assets/images/items/tilted-corner-wall-4m-concrete_64.png and /dev/null differ diff --git a/www/assets/images/items/tilted-corner-wall-4m-steel_256.png b/www/assets/images/items/tilted-corner-wall-4m-steel_256.png deleted file mode 100644 index f8d79619..00000000 Binary files a/www/assets/images/items/tilted-corner-wall-4m-steel_256.png and /dev/null differ diff --git a/www/assets/images/items/tilted-corner-wall-4m-steel_64.png b/www/assets/images/items/tilted-corner-wall-4m-steel_64.png deleted file mode 100644 index d86eddcd..00000000 Binary files a/www/assets/images/items/tilted-corner-wall-4m-steel_64.png and /dev/null differ diff --git a/www/assets/images/items/tilted-corner-wall-4m_256.png b/www/assets/images/items/tilted-corner-wall-4m_256.png deleted file mode 100644 index f0115832..00000000 Binary files a/www/assets/images/items/tilted-corner-wall-4m_256.png and /dev/null differ diff --git a/www/assets/images/items/tilted-corner-wall-4m_64.png b/www/assets/images/items/tilted-corner-wall-4m_64.png deleted file mode 100644 index 562132fe..00000000 Binary files a/www/assets/images/items/tilted-corner-wall-4m_64.png and /dev/null differ diff --git a/www/assets/images/items/tilted-corner-wall-8m-1_256.png b/www/assets/images/items/tilted-corner-wall-8m-1_256.png deleted file mode 100644 index 64a566a4..00000000 Binary files a/www/assets/images/items/tilted-corner-wall-8m-1_256.png and /dev/null differ diff --git a/www/assets/images/items/tilted-corner-wall-8m-1_64.png b/www/assets/images/items/tilted-corner-wall-8m-1_64.png deleted file mode 100644 index af22573a..00000000 Binary files a/www/assets/images/items/tilted-corner-wall-8m-1_64.png and /dev/null differ diff --git a/www/assets/images/items/tilted-corner-wall-8m-concrete_256.png b/www/assets/images/items/tilted-corner-wall-8m-concrete_256.png deleted file mode 100644 index 54da91c0..00000000 Binary files a/www/assets/images/items/tilted-corner-wall-8m-concrete_256.png and /dev/null differ diff --git a/www/assets/images/items/tilted-corner-wall-8m-concrete_64.png b/www/assets/images/items/tilted-corner-wall-8m-concrete_64.png deleted file mode 100644 index 19b90546..00000000 Binary files a/www/assets/images/items/tilted-corner-wall-8m-concrete_64.png and /dev/null differ diff --git a/www/assets/images/items/tilted-corner-wall-8m-steel_256.png b/www/assets/images/items/tilted-corner-wall-8m-steel_256.png deleted file mode 100644 index 3da21385..00000000 Binary files a/www/assets/images/items/tilted-corner-wall-8m-steel_256.png and /dev/null differ diff --git a/www/assets/images/items/tilted-corner-wall-8m-steel_64.png b/www/assets/images/items/tilted-corner-wall-8m-steel_64.png deleted file mode 100644 index c520b2e0..00000000 Binary files a/www/assets/images/items/tilted-corner-wall-8m-steel_64.png and /dev/null differ diff --git a/www/assets/images/items/tilted-corner-wall-8m_256.png b/www/assets/images/items/tilted-corner-wall-8m_256.png deleted file mode 100644 index 64a566a4..00000000 Binary files a/www/assets/images/items/tilted-corner-wall-8m_256.png and /dev/null differ diff --git a/www/assets/images/items/tilted-corner-wall-8m_64.png b/www/assets/images/items/tilted-corner-wall-8m_64.png deleted file mode 100644 index 531d9a55..00000000 Binary files a/www/assets/images/items/tilted-corner-wall-8m_64.png and /dev/null differ diff --git a/www/assets/images/items/tilted-jump-pad_256.png b/www/assets/images/items/tilted-jump-pad_256.png deleted file mode 100644 index 33a2c979..00000000 Binary files a/www/assets/images/items/tilted-jump-pad_256.png and /dev/null differ diff --git a/www/assets/images/items/tilted-jump-pad_64.png b/www/assets/images/items/tilted-jump-pad_64.png deleted file mode 100644 index 05a6e5c8..00000000 Binary files a/www/assets/images/items/tilted-jump-pad_64.png and /dev/null differ diff --git a/www/assets/images/items/tilted-wall-4m-1_256.png b/www/assets/images/items/tilted-wall-4m-1_256.png deleted file mode 100644 index 1a5931c7..00000000 Binary files a/www/assets/images/items/tilted-wall-4m-1_256.png and /dev/null differ diff --git a/www/assets/images/items/tilted-wall-4m-1_64.png b/www/assets/images/items/tilted-wall-4m-1_64.png deleted file mode 100644 index 0c4b27a5..00000000 Binary files a/www/assets/images/items/tilted-wall-4m-1_64.png and /dev/null differ diff --git a/www/assets/images/items/tilted-wall-4m-concrete_256.png b/www/assets/images/items/tilted-wall-4m-concrete_256.png deleted file mode 100644 index 76bf9048..00000000 Binary files a/www/assets/images/items/tilted-wall-4m-concrete_256.png and /dev/null differ diff --git a/www/assets/images/items/tilted-wall-4m-concrete_64.png b/www/assets/images/items/tilted-wall-4m-concrete_64.png deleted file mode 100644 index ffcbe8a3..00000000 Binary files a/www/assets/images/items/tilted-wall-4m-concrete_64.png and /dev/null differ diff --git a/www/assets/images/items/tilted-wall-4m-steel-1_256.png b/www/assets/images/items/tilted-wall-4m-steel-1_256.png deleted file mode 100644 index ca9c7c4a..00000000 Binary files a/www/assets/images/items/tilted-wall-4m-steel-1_256.png and /dev/null differ diff --git a/www/assets/images/items/tilted-wall-4m-steel-1_64.png b/www/assets/images/items/tilted-wall-4m-steel-1_64.png deleted file mode 100644 index ac544a10..00000000 Binary files a/www/assets/images/items/tilted-wall-4m-steel-1_64.png and /dev/null differ diff --git a/www/assets/images/items/tilted-wall-4m-steel_256.png b/www/assets/images/items/tilted-wall-4m-steel_256.png deleted file mode 100644 index 2bd5e10d..00000000 Binary files a/www/assets/images/items/tilted-wall-4m-steel_256.png and /dev/null differ diff --git a/www/assets/images/items/tilted-wall-4m-steel_64.png b/www/assets/images/items/tilted-wall-4m-steel_64.png deleted file mode 100644 index 8450cedd..00000000 Binary files a/www/assets/images/items/tilted-wall-4m-steel_64.png and /dev/null differ diff --git a/www/assets/images/items/tilted-wall-4m_256.png b/www/assets/images/items/tilted-wall-4m_256.png deleted file mode 100644 index 1a5931c7..00000000 Binary files a/www/assets/images/items/tilted-wall-4m_256.png and /dev/null differ diff --git a/www/assets/images/items/tilted-wall-4m_64.png b/www/assets/images/items/tilted-wall-4m_64.png deleted file mode 100644 index 9efacc8d..00000000 Binary files a/www/assets/images/items/tilted-wall-4m_64.png and /dev/null differ diff --git a/www/assets/images/items/tilted-wall-8m-1_256.png b/www/assets/images/items/tilted-wall-8m-1_256.png deleted file mode 100644 index 62e0ebba..00000000 Binary files a/www/assets/images/items/tilted-wall-8m-1_256.png and /dev/null differ diff --git a/www/assets/images/items/tilted-wall-8m-1_64.png b/www/assets/images/items/tilted-wall-8m-1_64.png deleted file mode 100644 index aa89b54f..00000000 Binary files a/www/assets/images/items/tilted-wall-8m-1_64.png and /dev/null differ diff --git a/www/assets/images/items/tilted-wall-8m-concrete_256.png b/www/assets/images/items/tilted-wall-8m-concrete_256.png deleted file mode 100644 index 03abef6c..00000000 Binary files a/www/assets/images/items/tilted-wall-8m-concrete_256.png and /dev/null differ diff --git a/www/assets/images/items/tilted-wall-8m-concrete_64.png b/www/assets/images/items/tilted-wall-8m-concrete_64.png deleted file mode 100644 index fabd6b77..00000000 Binary files a/www/assets/images/items/tilted-wall-8m-concrete_64.png and /dev/null differ diff --git a/www/assets/images/items/tilted-wall-8m-steel_256.png b/www/assets/images/items/tilted-wall-8m-steel_256.png deleted file mode 100644 index be92ecfd..00000000 Binary files a/www/assets/images/items/tilted-wall-8m-steel_256.png and /dev/null differ diff --git a/www/assets/images/items/tilted-wall-8m-steel_64.png b/www/assets/images/items/tilted-wall-8m-steel_64.png deleted file mode 100644 index befcdcab..00000000 Binary files a/www/assets/images/items/tilted-wall-8m-steel_64.png and /dev/null differ diff --git a/www/assets/images/items/tilted-wall-8m_256.png b/www/assets/images/items/tilted-wall-8m_256.png deleted file mode 100644 index 62e0ebba..00000000 Binary files a/www/assets/images/items/tilted-wall-8m_256.png and /dev/null differ diff --git a/www/assets/images/items/tilted-wall-8m_64.png b/www/assets/images/items/tilted-wall-8m_64.png deleted file mode 100644 index e01ee301..00000000 Binary files a/www/assets/images/items/tilted-wall-8m_64.png and /dev/null differ diff --git a/www/assets/images/items/tilted-walls_256.png b/www/assets/images/items/tilted-walls_256.png deleted file mode 100644 index 3b7a5554..00000000 Binary files a/www/assets/images/items/tilted-walls_256.png and /dev/null differ diff --git a/www/assets/images/items/tilted-walls_64.png b/www/assets/images/items/tilted-walls_64.png deleted file mode 100644 index a347a74e..00000000 Binary files a/www/assets/images/items/tilted-walls_64.png and /dev/null differ diff --git a/www/assets/images/items/tractor_256.png b/www/assets/images/items/tractor_256.png deleted file mode 100644 index cf2b2a21..00000000 Binary files a/www/assets/images/items/tractor_256.png and /dev/null differ diff --git a/www/assets/images/items/tractor_64.png b/www/assets/images/items/tractor_64.png deleted file mode 100644 index 1c8ad07e..00000000 Binary files a/www/assets/images/items/tractor_64.png and /dev/null differ diff --git a/www/assets/images/items/train-station_256.png b/www/assets/images/items/train-station_256.png deleted file mode 100644 index aac02716..00000000 Binary files a/www/assets/images/items/train-station_256.png and /dev/null differ diff --git a/www/assets/images/items/train-station_64.png b/www/assets/images/items/train-station_64.png deleted file mode 100644 index 851d1820..00000000 Binary files a/www/assets/images/items/train-station_64.png and /dev/null differ diff --git a/www/assets/images/items/transportation-icon-patterns_256.png b/www/assets/images/items/transportation-icon-patterns_256.png deleted file mode 100644 index e66637b4..00000000 Binary files a/www/assets/images/items/transportation-icon-patterns_256.png and /dev/null differ diff --git a/www/assets/images/items/transportation-icon-patterns_64.png b/www/assets/images/items/transportation-icon-patterns_64.png deleted file mode 100644 index d8d7dade..00000000 Binary files a/www/assets/images/items/transportation-icon-patterns_64.png and /dev/null differ diff --git a/www/assets/images/items/truck-station_256.png b/www/assets/images/items/truck-station_256.png deleted file mode 100644 index e3455f29..00000000 Binary files a/www/assets/images/items/truck-station_256.png and /dev/null differ diff --git a/www/assets/images/items/truck-station_64.png b/www/assets/images/items/truck-station_64.png deleted file mode 100644 index 467c514f..00000000 Binary files a/www/assets/images/items/truck-station_64.png and /dev/null differ diff --git a/www/assets/images/items/truck_256.png b/www/assets/images/items/truck_256.png deleted file mode 100644 index a249db13..00000000 Binary files a/www/assets/images/items/truck_256.png and /dev/null differ diff --git a/www/assets/images/items/truck_64.png b/www/assets/images/items/truck_64.png deleted file mode 100644 index 7f0b1b0f..00000000 Binary files a/www/assets/images/items/truck_64.png and /dev/null differ diff --git a/www/assets/images/items/turbo-motor_256.png b/www/assets/images/items/turbo-motor_256.png deleted file mode 100644 index 2e5786f8..00000000 Binary files a/www/assets/images/items/turbo-motor_256.png and /dev/null differ diff --git a/www/assets/images/items/turbo-motor_64.png b/www/assets/images/items/turbo-motor_64.png deleted file mode 100644 index c9d3479f..00000000 Binary files a/www/assets/images/items/turbo-motor_64.png and /dev/null differ diff --git a/www/assets/images/items/turbofuel_256.png b/www/assets/images/items/turbofuel_256.png deleted file mode 100644 index d5190505..00000000 Binary files a/www/assets/images/items/turbofuel_256.png and /dev/null differ diff --git a/www/assets/images/items/turbofuel_64.png b/www/assets/images/items/turbofuel_64.png deleted file mode 100644 index 6d61fabe..00000000 Binary files a/www/assets/images/items/turbofuel_64.png and /dev/null differ diff --git a/www/assets/images/items/u-jelly-landing-pad_256.png b/www/assets/images/items/u-jelly-landing-pad_256.png deleted file mode 100644 index 15d94744..00000000 Binary files a/www/assets/images/items/u-jelly-landing-pad_256.png and /dev/null differ diff --git a/www/assets/images/items/u-jelly-landing-pad_64.png b/www/assets/images/items/u-jelly-landing-pad_64.png deleted file mode 100644 index 9a1c3834..00000000 Binary files a/www/assets/images/items/u-jelly-landing-pad_64.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-8m-x-1m-inverted_256.png b/www/assets/images/items/up-corner-8m-x-1m-inverted_256.png deleted file mode 100644 index cccd8950..00000000 Binary files a/www/assets/images/items/up-corner-8m-x-1m-inverted_256.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-8m-x-1m-inverted_64.png b/www/assets/images/items/up-corner-8m-x-1m-inverted_64.png deleted file mode 100644 index 65c7586b..00000000 Binary files a/www/assets/images/items/up-corner-8m-x-1m-inverted_64.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-8m-x-2m-inverted_256.png b/www/assets/images/items/up-corner-8m-x-2m-inverted_256.png deleted file mode 100644 index 4a66b3b9..00000000 Binary files a/www/assets/images/items/up-corner-8m-x-2m-inverted_256.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-8m-x-2m-inverted_64.png b/www/assets/images/items/up-corner-8m-x-2m-inverted_64.png deleted file mode 100644 index cdd86d8f..00000000 Binary files a/www/assets/images/items/up-corner-8m-x-2m-inverted_64.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-8m-x-4m-inverted_256.png b/www/assets/images/items/up-corner-8m-x-4m-inverted_256.png deleted file mode 100644 index 5ef2225c..00000000 Binary files a/www/assets/images/items/up-corner-8m-x-4m-inverted_256.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-8m-x-4m-inverted_64.png b/www/assets/images/items/up-corner-8m-x-4m-inverted_64.png deleted file mode 100644 index d2a8e9d9..00000000 Binary files a/www/assets/images/items/up-corner-8m-x-4m-inverted_64.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-ramp-1m-1_256.png b/www/assets/images/items/up-corner-ramp-1m-1_256.png deleted file mode 100644 index 2ef510cf..00000000 Binary files a/www/assets/images/items/up-corner-ramp-1m-1_256.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-ramp-1m-1_64.png b/www/assets/images/items/up-corner-ramp-1m-1_64.png deleted file mode 100644 index 018395fd..00000000 Binary files a/www/assets/images/items/up-corner-ramp-1m-1_64.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-ramp-1m-2_256.png b/www/assets/images/items/up-corner-ramp-1m-2_256.png deleted file mode 100644 index 51128483..00000000 Binary files a/www/assets/images/items/up-corner-ramp-1m-2_256.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-ramp-1m-2_64.png b/www/assets/images/items/up-corner-ramp-1m-2_64.png deleted file mode 100644 index ef8dd2ae..00000000 Binary files a/www/assets/images/items/up-corner-ramp-1m-2_64.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-ramp-1m-3_256.png b/www/assets/images/items/up-corner-ramp-1m-3_256.png deleted file mode 100644 index 0057f830..00000000 Binary files a/www/assets/images/items/up-corner-ramp-1m-3_256.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-ramp-1m-3_64.png b/www/assets/images/items/up-corner-ramp-1m-3_64.png deleted file mode 100644 index 7e20c942..00000000 Binary files a/www/assets/images/items/up-corner-ramp-1m-3_64.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-ramp-1m-asphalt_256.png b/www/assets/images/items/up-corner-ramp-1m-asphalt_256.png deleted file mode 100644 index 2ef510cf..00000000 Binary files a/www/assets/images/items/up-corner-ramp-1m-asphalt_256.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-ramp-1m-asphalt_64.png b/www/assets/images/items/up-corner-ramp-1m-asphalt_64.png deleted file mode 100644 index 018395fd..00000000 Binary files a/www/assets/images/items/up-corner-ramp-1m-asphalt_64.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-ramp-1m-concrete_256.png b/www/assets/images/items/up-corner-ramp-1m-concrete_256.png deleted file mode 100644 index 317ab60e..00000000 Binary files a/www/assets/images/items/up-corner-ramp-1m-concrete_256.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-ramp-1m-concrete_64.png b/www/assets/images/items/up-corner-ramp-1m-concrete_64.png deleted file mode 100644 index 96ccdf2d..00000000 Binary files a/www/assets/images/items/up-corner-ramp-1m-concrete_64.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-ramp-1m-metal_256.png b/www/assets/images/items/up-corner-ramp-1m-metal_256.png deleted file mode 100644 index 51128483..00000000 Binary files a/www/assets/images/items/up-corner-ramp-1m-metal_256.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-ramp-1m-metal_64.png b/www/assets/images/items/up-corner-ramp-1m-metal_64.png deleted file mode 100644 index 6f8f7377..00000000 Binary files a/www/assets/images/items/up-corner-ramp-1m-metal_64.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-ramp-1m-polished_256.png b/www/assets/images/items/up-corner-ramp-1m-polished_256.png deleted file mode 100644 index 0057f830..00000000 Binary files a/www/assets/images/items/up-corner-ramp-1m-polished_256.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-ramp-1m-polished_64.png b/www/assets/images/items/up-corner-ramp-1m-polished_64.png deleted file mode 100644 index 9575699f..00000000 Binary files a/www/assets/images/items/up-corner-ramp-1m-polished_64.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-ramp-1m_256.png b/www/assets/images/items/up-corner-ramp-1m_256.png deleted file mode 100644 index f250d154..00000000 Binary files a/www/assets/images/items/up-corner-ramp-1m_256.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-ramp-1m_64.png b/www/assets/images/items/up-corner-ramp-1m_64.png deleted file mode 100644 index 07d5fbf1..00000000 Binary files a/www/assets/images/items/up-corner-ramp-1m_64.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-ramp-2m-1_256.png b/www/assets/images/items/up-corner-ramp-2m-1_256.png deleted file mode 100644 index 2ef510cf..00000000 Binary files a/www/assets/images/items/up-corner-ramp-2m-1_256.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-ramp-2m-1_64.png b/www/assets/images/items/up-corner-ramp-2m-1_64.png deleted file mode 100644 index 018395fd..00000000 Binary files a/www/assets/images/items/up-corner-ramp-2m-1_64.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-ramp-2m-2_256.png b/www/assets/images/items/up-corner-ramp-2m-2_256.png deleted file mode 100644 index 21a4a40c..00000000 Binary files a/www/assets/images/items/up-corner-ramp-2m-2_256.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-ramp-2m-2_64.png b/www/assets/images/items/up-corner-ramp-2m-2_64.png deleted file mode 100644 index b0cf0097..00000000 Binary files a/www/assets/images/items/up-corner-ramp-2m-2_64.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-ramp-2m-3_256.png b/www/assets/images/items/up-corner-ramp-2m-3_256.png deleted file mode 100644 index caf65223..00000000 Binary files a/www/assets/images/items/up-corner-ramp-2m-3_256.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-ramp-2m-3_64.png b/www/assets/images/items/up-corner-ramp-2m-3_64.png deleted file mode 100644 index 1872b95c..00000000 Binary files a/www/assets/images/items/up-corner-ramp-2m-3_64.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-ramp-2m-asphalt_256.png b/www/assets/images/items/up-corner-ramp-2m-asphalt_256.png deleted file mode 100644 index 2ef510cf..00000000 Binary files a/www/assets/images/items/up-corner-ramp-2m-asphalt_256.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-ramp-2m-asphalt_64.png b/www/assets/images/items/up-corner-ramp-2m-asphalt_64.png deleted file mode 100644 index 018395fd..00000000 Binary files a/www/assets/images/items/up-corner-ramp-2m-asphalt_64.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-ramp-2m-concrete_256.png b/www/assets/images/items/up-corner-ramp-2m-concrete_256.png deleted file mode 100644 index 2c15ad88..00000000 Binary files a/www/assets/images/items/up-corner-ramp-2m-concrete_256.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-ramp-2m-concrete_64.png b/www/assets/images/items/up-corner-ramp-2m-concrete_64.png deleted file mode 100644 index 9320bb9a..00000000 Binary files a/www/assets/images/items/up-corner-ramp-2m-concrete_64.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-ramp-2m-metal_256.png b/www/assets/images/items/up-corner-ramp-2m-metal_256.png deleted file mode 100644 index 21a4a40c..00000000 Binary files a/www/assets/images/items/up-corner-ramp-2m-metal_256.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-ramp-2m-metal_64.png b/www/assets/images/items/up-corner-ramp-2m-metal_64.png deleted file mode 100644 index 5f998536..00000000 Binary files a/www/assets/images/items/up-corner-ramp-2m-metal_64.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-ramp-2m-polished_256.png b/www/assets/images/items/up-corner-ramp-2m-polished_256.png deleted file mode 100644 index caf65223..00000000 Binary files a/www/assets/images/items/up-corner-ramp-2m-polished_256.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-ramp-2m-polished_64.png b/www/assets/images/items/up-corner-ramp-2m-polished_64.png deleted file mode 100644 index 33a91d3b..00000000 Binary files a/www/assets/images/items/up-corner-ramp-2m-polished_64.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-ramp-2m_256.png b/www/assets/images/items/up-corner-ramp-2m_256.png deleted file mode 100644 index c5bea832..00000000 Binary files a/www/assets/images/items/up-corner-ramp-2m_256.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-ramp-2m_64.png b/www/assets/images/items/up-corner-ramp-2m_64.png deleted file mode 100644 index bf02a513..00000000 Binary files a/www/assets/images/items/up-corner-ramp-2m_64.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-ramp-4m-1_256.png b/www/assets/images/items/up-corner-ramp-4m-1_256.png deleted file mode 100644 index 041aa5b4..00000000 Binary files a/www/assets/images/items/up-corner-ramp-4m-1_256.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-ramp-4m-1_64.png b/www/assets/images/items/up-corner-ramp-4m-1_64.png deleted file mode 100644 index 2ef610f9..00000000 Binary files a/www/assets/images/items/up-corner-ramp-4m-1_64.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-ramp-4m-2_256.png b/www/assets/images/items/up-corner-ramp-4m-2_256.png deleted file mode 100644 index 4a2c5118..00000000 Binary files a/www/assets/images/items/up-corner-ramp-4m-2_256.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-ramp-4m-2_64.png b/www/assets/images/items/up-corner-ramp-4m-2_64.png deleted file mode 100644 index 871bda95..00000000 Binary files a/www/assets/images/items/up-corner-ramp-4m-2_64.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-ramp-4m-3_256.png b/www/assets/images/items/up-corner-ramp-4m-3_256.png deleted file mode 100644 index 815945e1..00000000 Binary files a/www/assets/images/items/up-corner-ramp-4m-3_256.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-ramp-4m-3_64.png b/www/assets/images/items/up-corner-ramp-4m-3_64.png deleted file mode 100644 index cbe5651e..00000000 Binary files a/www/assets/images/items/up-corner-ramp-4m-3_64.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-ramp-4m-asphalt_256.png b/www/assets/images/items/up-corner-ramp-4m-asphalt_256.png deleted file mode 100644 index 041aa5b4..00000000 Binary files a/www/assets/images/items/up-corner-ramp-4m-asphalt_256.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-ramp-4m-asphalt_64.png b/www/assets/images/items/up-corner-ramp-4m-asphalt_64.png deleted file mode 100644 index 2ef610f9..00000000 Binary files a/www/assets/images/items/up-corner-ramp-4m-asphalt_64.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-ramp-4m-concrete_256.png b/www/assets/images/items/up-corner-ramp-4m-concrete_256.png deleted file mode 100644 index 4c93735c..00000000 Binary files a/www/assets/images/items/up-corner-ramp-4m-concrete_256.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-ramp-4m-concrete_64.png b/www/assets/images/items/up-corner-ramp-4m-concrete_64.png deleted file mode 100644 index a909fc2b..00000000 Binary files a/www/assets/images/items/up-corner-ramp-4m-concrete_64.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-ramp-4m-metal_256.png b/www/assets/images/items/up-corner-ramp-4m-metal_256.png deleted file mode 100644 index 4a2c5118..00000000 Binary files a/www/assets/images/items/up-corner-ramp-4m-metal_256.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-ramp-4m-metal_64.png b/www/assets/images/items/up-corner-ramp-4m-metal_64.png deleted file mode 100644 index c971baa6..00000000 Binary files a/www/assets/images/items/up-corner-ramp-4m-metal_64.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-ramp-4m-polished_256.png b/www/assets/images/items/up-corner-ramp-4m-polished_256.png deleted file mode 100644 index 815945e1..00000000 Binary files a/www/assets/images/items/up-corner-ramp-4m-polished_256.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-ramp-4m-polished_64.png b/www/assets/images/items/up-corner-ramp-4m-polished_64.png deleted file mode 100644 index fa9a802e..00000000 Binary files a/www/assets/images/items/up-corner-ramp-4m-polished_64.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-ramp-4m_256.png b/www/assets/images/items/up-corner-ramp-4m_256.png deleted file mode 100644 index 8af237c4..00000000 Binary files a/www/assets/images/items/up-corner-ramp-4m_256.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-ramp-4m_64.png b/www/assets/images/items/up-corner-ramp-4m_64.png deleted file mode 100644 index 94d7318a..00000000 Binary files a/www/assets/images/items/up-corner-ramp-4m_64.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-ramp-8m-x-1m_256.png b/www/assets/images/items/up-corner-ramp-8m-x-1m_256.png deleted file mode 100644 index f09edc16..00000000 Binary files a/www/assets/images/items/up-corner-ramp-8m-x-1m_256.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-ramp-8m-x-1m_64.png b/www/assets/images/items/up-corner-ramp-8m-x-1m_64.png deleted file mode 100644 index d4dca07d..00000000 Binary files a/www/assets/images/items/up-corner-ramp-8m-x-1m_64.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-ramp-8m-x-2m_256.png b/www/assets/images/items/up-corner-ramp-8m-x-2m_256.png deleted file mode 100644 index 9ec34c85..00000000 Binary files a/www/assets/images/items/up-corner-ramp-8m-x-2m_256.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-ramp-8m-x-2m_64.png b/www/assets/images/items/up-corner-ramp-8m-x-2m_64.png deleted file mode 100644 index 9f114a11..00000000 Binary files a/www/assets/images/items/up-corner-ramp-8m-x-2m_64.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-ramp-8m-x-4m_256.png b/www/assets/images/items/up-corner-ramp-8m-x-4m_256.png deleted file mode 100644 index 3ce32e81..00000000 Binary files a/www/assets/images/items/up-corner-ramp-8m-x-4m_256.png and /dev/null differ diff --git a/www/assets/images/items/up-corner-ramp-8m-x-4m_64.png b/www/assets/images/items/up-corner-ramp-8m-x-4m_64.png deleted file mode 100644 index 37f81499..00000000 Binary files a/www/assets/images/items/up-corner-ramp-8m-x-4m_64.png and /dev/null differ diff --git a/www/assets/images/items/uranium-fuel-rod_256.png b/www/assets/images/items/uranium-fuel-rod_256.png deleted file mode 100644 index 066e3ae8..00000000 Binary files a/www/assets/images/items/uranium-fuel-rod_256.png and /dev/null differ diff --git a/www/assets/images/items/uranium-fuel-rod_64.png b/www/assets/images/items/uranium-fuel-rod_64.png deleted file mode 100644 index 468dee8c..00000000 Binary files a/www/assets/images/items/uranium-fuel-rod_64.png and /dev/null differ diff --git a/www/assets/images/items/uranium-pellet_256.png b/www/assets/images/items/uranium-pellet_256.png deleted file mode 100644 index f0020872..00000000 Binary files a/www/assets/images/items/uranium-pellet_256.png and /dev/null differ diff --git a/www/assets/images/items/uranium-pellet_64.png b/www/assets/images/items/uranium-pellet_64.png deleted file mode 100644 index c990edc5..00000000 Binary files a/www/assets/images/items/uranium-pellet_64.png and /dev/null differ diff --git a/www/assets/images/items/uranium-waste_256.png b/www/assets/images/items/uranium-waste_256.png deleted file mode 100644 index 77262c4a..00000000 Binary files a/www/assets/images/items/uranium-waste_256.png and /dev/null differ diff --git a/www/assets/images/items/uranium-waste_64.png b/www/assets/images/items/uranium-waste_64.png deleted file mode 100644 index f0f9c4a0..00000000 Binary files a/www/assets/images/items/uranium-waste_64.png and /dev/null differ diff --git a/www/assets/images/items/uranium_256.png b/www/assets/images/items/uranium_256.png deleted file mode 100644 index 5faa9933..00000000 Binary files a/www/assets/images/items/uranium_256.png and /dev/null differ diff --git a/www/assets/images/items/uranium_64.png b/www/assets/images/items/uranium_64.png deleted file mode 100644 index 4496aa82..00000000 Binary files a/www/assets/images/items/uranium_64.png and /dev/null differ diff --git a/www/assets/images/items/valve_256.png b/www/assets/images/items/valve_256.png deleted file mode 100644 index 2ae890b1..00000000 Binary files a/www/assets/images/items/valve_256.png and /dev/null differ diff --git a/www/assets/images/items/valve_64.png b/www/assets/images/items/valve_64.png deleted file mode 100644 index e7bb5849..00000000 Binary files a/www/assets/images/items/valve_64.png and /dev/null differ diff --git a/www/assets/images/items/vehicular-transport_256.png b/www/assets/images/items/vehicular-transport_256.png deleted file mode 100644 index 5af15e0b..00000000 Binary files a/www/assets/images/items/vehicular-transport_256.png and /dev/null differ diff --git a/www/assets/images/items/vehicular-transport_64.png b/www/assets/images/items/vehicular-transport_64.png deleted file mode 100644 index c78faafd..00000000 Binary files a/www/assets/images/items/vehicular-transport_64.png and /dev/null differ diff --git a/www/assets/images/items/versatile-framework_256.png b/www/assets/images/items/versatile-framework_256.png deleted file mode 100644 index cfcb9182..00000000 Binary files a/www/assets/images/items/versatile-framework_256.png and /dev/null differ diff --git a/www/assets/images/items/versatile-framework_64.png b/www/assets/images/items/versatile-framework_64.png deleted file mode 100644 index 12bf2dff..00000000 Binary files a/www/assets/images/items/versatile-framework_64.png and /dev/null differ diff --git a/www/assets/images/items/volatile-applications_256.png b/www/assets/images/items/volatile-applications_256.png deleted file mode 100644 index 87dbf73c..00000000 Binary files a/www/assets/images/items/volatile-applications_256.png and /dev/null differ diff --git a/www/assets/images/items/volatile-applications_64.png b/www/assets/images/items/volatile-applications_64.png deleted file mode 100644 index fb934e61..00000000 Binary files a/www/assets/images/items/volatile-applications_64.png and /dev/null differ diff --git a/www/assets/images/items/walkway-crossing_256.png b/www/assets/images/items/walkway-crossing_256.png deleted file mode 100644 index b82243cd..00000000 Binary files a/www/assets/images/items/walkway-crossing_256.png and /dev/null differ diff --git a/www/assets/images/items/walkway-crossing_64.png b/www/assets/images/items/walkway-crossing_64.png deleted file mode 100644 index 7de36604..00000000 Binary files a/www/assets/images/items/walkway-crossing_64.png and /dev/null differ diff --git a/www/assets/images/items/walkway-ramp_256.png b/www/assets/images/items/walkway-ramp_256.png deleted file mode 100644 index 9b144ae9..00000000 Binary files a/www/assets/images/items/walkway-ramp_256.png and /dev/null differ diff --git a/www/assets/images/items/walkway-ramp_64.png b/www/assets/images/items/walkway-ramp_64.png deleted file mode 100644 index afcede41..00000000 Binary files a/www/assets/images/items/walkway-ramp_64.png and /dev/null differ diff --git a/www/assets/images/items/walkway-straight_256.png b/www/assets/images/items/walkway-straight_256.png deleted file mode 100644 index 7776cfa2..00000000 Binary files a/www/assets/images/items/walkway-straight_256.png and /dev/null differ diff --git a/www/assets/images/items/walkway-straight_64.png b/www/assets/images/items/walkway-straight_64.png deleted file mode 100644 index f75be81e..00000000 Binary files a/www/assets/images/items/walkway-straight_64.png and /dev/null differ diff --git a/www/assets/images/items/walkway-t-crossing_256.png b/www/assets/images/items/walkway-t-crossing_256.png deleted file mode 100644 index db838878..00000000 Binary files a/www/assets/images/items/walkway-t-crossing_256.png and /dev/null differ diff --git a/www/assets/images/items/walkway-t-crossing_64.png b/www/assets/images/items/walkway-t-crossing_64.png deleted file mode 100644 index ef53d80d..00000000 Binary files a/www/assets/images/items/walkway-t-crossing_64.png and /dev/null differ diff --git a/www/assets/images/items/walkway-turn_256.png b/www/assets/images/items/walkway-turn_256.png deleted file mode 100644 index db838878..00000000 Binary files a/www/assets/images/items/walkway-turn_256.png and /dev/null differ diff --git a/www/assets/images/items/walkway-turn_64.png b/www/assets/images/items/walkway-turn_64.png deleted file mode 100644 index ef53d80d..00000000 Binary files a/www/assets/images/items/walkway-turn_64.png and /dev/null differ diff --git a/www/assets/images/items/wall-8m-x-4m-steel_256.png b/www/assets/images/items/wall-8m-x-4m-steel_256.png deleted file mode 100644 index 04bf2cbd..00000000 Binary files a/www/assets/images/items/wall-8m-x-4m-steel_256.png and /dev/null differ diff --git a/www/assets/images/items/wall-8m-x-4m-steel_64.png b/www/assets/images/items/wall-8m-x-4m-steel_64.png deleted file mode 100644 index bbd8cbe4..00000000 Binary files a/www/assets/images/items/wall-8m-x-4m-steel_64.png and /dev/null differ diff --git a/www/assets/images/items/wall-8m-x-4m_256.png b/www/assets/images/items/wall-8m-x-4m_256.png deleted file mode 100644 index 3c59dd92..00000000 Binary files a/www/assets/images/items/wall-8m-x-4m_256.png and /dev/null differ diff --git a/www/assets/images/items/wall-8m-x-4m_64.png b/www/assets/images/items/wall-8m-x-4m_64.png deleted file mode 100644 index 0145579d..00000000 Binary files a/www/assets/images/items/wall-8m-x-4m_64.png and /dev/null differ diff --git a/www/assets/images/items/wall-conveyor-perpendicular-steel_256.png b/www/assets/images/items/wall-conveyor-perpendicular-steel_256.png deleted file mode 100644 index ca781591..00000000 Binary files a/www/assets/images/items/wall-conveyor-perpendicular-steel_256.png and /dev/null differ diff --git a/www/assets/images/items/wall-conveyor-perpendicular-steel_64.png b/www/assets/images/items/wall-conveyor-perpendicular-steel_64.png deleted file mode 100644 index 7a453eb1..00000000 Binary files a/www/assets/images/items/wall-conveyor-perpendicular-steel_64.png and /dev/null differ diff --git a/www/assets/images/items/wall-conveyor-perpendicular_256.png b/www/assets/images/items/wall-conveyor-perpendicular_256.png deleted file mode 100644 index 55c23dd6..00000000 Binary files a/www/assets/images/items/wall-conveyor-perpendicular_256.png and /dev/null differ diff --git a/www/assets/images/items/wall-conveyor-perpendicular_64.png b/www/assets/images/items/wall-conveyor-perpendicular_64.png deleted file mode 100644 index 34985949..00000000 Binary files a/www/assets/images/items/wall-conveyor-perpendicular_64.png and /dev/null differ diff --git a/www/assets/images/items/wall-conveyor-x1-steel_256.png b/www/assets/images/items/wall-conveyor-x1-steel_256.png deleted file mode 100644 index be94ce23..00000000 Binary files a/www/assets/images/items/wall-conveyor-x1-steel_256.png and /dev/null differ diff --git a/www/assets/images/items/wall-conveyor-x1-steel_64.png b/www/assets/images/items/wall-conveyor-x1-steel_64.png deleted file mode 100644 index 576d982d..00000000 Binary files a/www/assets/images/items/wall-conveyor-x1-steel_64.png and /dev/null differ diff --git a/www/assets/images/items/wall-conveyor-x1_256.png b/www/assets/images/items/wall-conveyor-x1_256.png deleted file mode 100644 index 3a750b28..00000000 Binary files a/www/assets/images/items/wall-conveyor-x1_256.png and /dev/null differ diff --git a/www/assets/images/items/wall-conveyor-x1_64.png b/www/assets/images/items/wall-conveyor-x1_64.png deleted file mode 100644 index 6f9c0604..00000000 Binary files a/www/assets/images/items/wall-conveyor-x1_64.png and /dev/null differ diff --git a/www/assets/images/items/wall-conveyor-x2-steel_256.png b/www/assets/images/items/wall-conveyor-x2-steel_256.png deleted file mode 100644 index f2aa3a2b..00000000 Binary files a/www/assets/images/items/wall-conveyor-x2-steel_256.png and /dev/null differ diff --git a/www/assets/images/items/wall-conveyor-x2-steel_64.png b/www/assets/images/items/wall-conveyor-x2-steel_64.png deleted file mode 100644 index 9da8c264..00000000 Binary files a/www/assets/images/items/wall-conveyor-x2-steel_64.png and /dev/null differ diff --git a/www/assets/images/items/wall-conveyor-x2_256.png b/www/assets/images/items/wall-conveyor-x2_256.png deleted file mode 100644 index 5a92703a..00000000 Binary files a/www/assets/images/items/wall-conveyor-x2_256.png and /dev/null differ diff --git a/www/assets/images/items/wall-conveyor-x2_64.png b/www/assets/images/items/wall-conveyor-x2_64.png deleted file mode 100644 index 4f57f5bb..00000000 Binary files a/www/assets/images/items/wall-conveyor-x2_64.png and /dev/null differ diff --git a/www/assets/images/items/wall-conveyor-x3-steel_256.png b/www/assets/images/items/wall-conveyor-x3-steel_256.png deleted file mode 100644 index 3ee88455..00000000 Binary files a/www/assets/images/items/wall-conveyor-x3-steel_256.png and /dev/null differ diff --git a/www/assets/images/items/wall-conveyor-x3-steel_64.png b/www/assets/images/items/wall-conveyor-x3-steel_64.png deleted file mode 100644 index cff8a95a..00000000 Binary files a/www/assets/images/items/wall-conveyor-x3-steel_64.png and /dev/null differ diff --git a/www/assets/images/items/wall-conveyor-x3_256.png b/www/assets/images/items/wall-conveyor-x3_256.png deleted file mode 100644 index 584a16cd..00000000 Binary files a/www/assets/images/items/wall-conveyor-x3_256.png and /dev/null differ diff --git a/www/assets/images/items/wall-conveyor-x3_64.png b/www/assets/images/items/wall-conveyor-x3_64.png deleted file mode 100644 index e43a5ca9..00000000 Binary files a/www/assets/images/items/wall-conveyor-x3_64.png and /dev/null differ diff --git a/www/assets/images/items/wall-mounted-flood-light_256.png b/www/assets/images/items/wall-mounted-flood-light_256.png deleted file mode 100644 index a643b017..00000000 Binary files a/www/assets/images/items/wall-mounted-flood-light_256.png and /dev/null differ diff --git a/www/assets/images/items/wall-mounted-flood-light_64.png b/www/assets/images/items/wall-mounted-flood-light_64.png deleted file mode 100644 index 12e51e6a..00000000 Binary files a/www/assets/images/items/wall-mounted-flood-light_64.png and /dev/null differ diff --git a/www/assets/images/items/wall-outlet-mk-1_256.png b/www/assets/images/items/wall-outlet-mk-1_256.png deleted file mode 100644 index 065a2ebf..00000000 Binary files a/www/assets/images/items/wall-outlet-mk-1_256.png and /dev/null differ diff --git a/www/assets/images/items/wall-outlet-mk-1_64.png b/www/assets/images/items/wall-outlet-mk-1_64.png deleted file mode 100644 index 26cd4b86..00000000 Binary files a/www/assets/images/items/wall-outlet-mk-1_64.png and /dev/null differ diff --git a/www/assets/images/items/wall-outlet-mk-2_256.png b/www/assets/images/items/wall-outlet-mk-2_256.png deleted file mode 100644 index 079f988f..00000000 Binary files a/www/assets/images/items/wall-outlet-mk-2_256.png and /dev/null differ diff --git a/www/assets/images/items/wall-outlet-mk-2_64.png b/www/assets/images/items/wall-outlet-mk-2_64.png deleted file mode 100644 index 22e7aca6..00000000 Binary files a/www/assets/images/items/wall-outlet-mk-2_64.png and /dev/null differ diff --git a/www/assets/images/items/wall-outlet-mk-3_256.png b/www/assets/images/items/wall-outlet-mk-3_256.png deleted file mode 100644 index 9de2fa57..00000000 Binary files a/www/assets/images/items/wall-outlet-mk-3_256.png and /dev/null differ diff --git a/www/assets/images/items/wall-outlet-mk-3_64.png b/www/assets/images/items/wall-outlet-mk-3_64.png deleted file mode 100644 index a3115b33..00000000 Binary files a/www/assets/images/items/wall-outlet-mk-3_64.png and /dev/null differ diff --git a/www/assets/images/items/wall-power-outlets-mk-1_256.png b/www/assets/images/items/wall-power-outlets-mk-1_256.png deleted file mode 100644 index 0097fed1..00000000 Binary files a/www/assets/images/items/wall-power-outlets-mk-1_256.png and /dev/null differ diff --git a/www/assets/images/items/wall-power-outlets-mk-1_64.png b/www/assets/images/items/wall-power-outlets-mk-1_64.png deleted file mode 100644 index 0c0c97e5..00000000 Binary files a/www/assets/images/items/wall-power-outlets-mk-1_64.png and /dev/null differ diff --git a/www/assets/images/items/wall-power-outlets-mk-2_256.png b/www/assets/images/items/wall-power-outlets-mk-2_256.png deleted file mode 100644 index de616e21..00000000 Binary files a/www/assets/images/items/wall-power-outlets-mk-2_256.png and /dev/null differ diff --git a/www/assets/images/items/wall-power-outlets-mk-2_64.png b/www/assets/images/items/wall-power-outlets-mk-2_64.png deleted file mode 100644 index bc7a52b6..00000000 Binary files a/www/assets/images/items/wall-power-outlets-mk-2_64.png and /dev/null differ diff --git a/www/assets/images/items/wall-power-outlets-mk-3_256.png b/www/assets/images/items/wall-power-outlets-mk-3_256.png deleted file mode 100644 index 4e883807..00000000 Binary files a/www/assets/images/items/wall-power-outlets-mk-3_256.png and /dev/null differ diff --git a/www/assets/images/items/wall-power-outlets-mk-3_64.png b/www/assets/images/items/wall-power-outlets-mk-3_64.png deleted file mode 100644 index fb59420f..00000000 Binary files a/www/assets/images/items/wall-power-outlets-mk-3_64.png and /dev/null differ diff --git a/www/assets/images/items/water-extractor_256.png b/www/assets/images/items/water-extractor_256.png deleted file mode 100644 index 9c58d999..00000000 Binary files a/www/assets/images/items/water-extractor_256.png and /dev/null differ diff --git a/www/assets/images/items/water-extractor_64.png b/www/assets/images/items/water-extractor_64.png deleted file mode 100644 index 426b7048..00000000 Binary files a/www/assets/images/items/water-extractor_64.png and /dev/null differ diff --git a/www/assets/images/items/water_256.png b/www/assets/images/items/water_256.png deleted file mode 100644 index c5c9ac00..00000000 Binary files a/www/assets/images/items/water_256.png and /dev/null differ diff --git a/www/assets/images/items/water_64.png b/www/assets/images/items/water_64.png deleted file mode 100644 index ce8ed315..00000000 Binary files a/www/assets/images/items/water_64.png and /dev/null differ diff --git a/www/assets/images/items/windowed-walls_256.png b/www/assets/images/items/windowed-walls_256.png deleted file mode 100644 index 288d9fc5..00000000 Binary files a/www/assets/images/items/windowed-walls_256.png and /dev/null differ diff --git a/www/assets/images/items/windowed-walls_64.png b/www/assets/images/items/windowed-walls_64.png deleted file mode 100644 index 95c1ac62..00000000 Binary files a/www/assets/images/items/windowed-walls_64.png and /dev/null differ diff --git a/www/assets/images/items/wire_256.png b/www/assets/images/items/wire_256.png deleted file mode 100644 index 1e22d8a9..00000000 Binary files a/www/assets/images/items/wire_256.png and /dev/null differ diff --git a/www/assets/images/items/wire_64.png b/www/assets/images/items/wire_64.png deleted file mode 100644 index 7e54f929..00000000 Binary files a/www/assets/images/items/wire_64.png and /dev/null differ diff --git a/www/assets/images/items/wood_256.png b/www/assets/images/items/wood_256.png deleted file mode 100644 index 60792502..00000000 Binary files a/www/assets/images/items/wood_256.png and /dev/null differ diff --git a/www/assets/images/items/wood_64.png b/www/assets/images/items/wood_64.png deleted file mode 100644 index 5ab40c3b..00000000 Binary files a/www/assets/images/items/wood_64.png and /dev/null differ diff --git a/www/assets/images/items/xeno-basher_256.png b/www/assets/images/items/xeno-basher_256.png deleted file mode 100644 index a35998c0..00000000 Binary files a/www/assets/images/items/xeno-basher_256.png and /dev/null differ diff --git a/www/assets/images/items/xeno-basher_64.png b/www/assets/images/items/xeno-basher_64.png deleted file mode 100644 index d80b0717..00000000 Binary files a/www/assets/images/items/xeno-basher_64.png and /dev/null differ diff --git a/www/assets/images/items/xeno-zapper_256.png b/www/assets/images/items/xeno-zapper_256.png deleted file mode 100644 index f74b0d93..00000000 Binary files a/www/assets/images/items/xeno-zapper_256.png and /dev/null differ diff --git a/www/assets/images/items/xeno-zapper_64.png b/www/assets/images/items/xeno-zapper_64.png deleted file mode 100644 index 22b9ce17..00000000 Binary files a/www/assets/images/items/xeno-zapper_64.png and /dev/null differ diff --git a/www/assets/images/items/yellow-power-shards_256.png b/www/assets/images/items/yellow-power-shards_256.png deleted file mode 100644 index 29cccf74..00000000 Binary files a/www/assets/images/items/yellow-power-shards_256.png and /dev/null differ diff --git a/www/assets/images/items/yellow-power-shards_64.png b/www/assets/images/items/yellow-power-shards_64.png deleted file mode 100644 index 304ce117..00000000 Binary files a/www/assets/images/items/yellow-power-shards_64.png and /dev/null differ diff --git a/www/assets/images/items/yellow-power-slug_256.png b/www/assets/images/items/yellow-power-slug_256.png deleted file mode 100644 index 4118785a..00000000 Binary files a/www/assets/images/items/yellow-power-slug_256.png and /dev/null differ diff --git a/www/assets/images/items/yellow-power-slug_64.png b/www/assets/images/items/yellow-power-slug_64.png deleted file mode 100644 index 3af43a34..00000000 Binary files a/www/assets/images/items/yellow-power-slug_64.png and /dev/null differ diff --git a/www/assets/images/items/zipline-1_256.png b/www/assets/images/items/zipline-1_256.png deleted file mode 100644 index 547264dc..00000000 Binary files a/www/assets/images/items/zipline-1_256.png and /dev/null differ diff --git a/www/assets/images/items/zipline-1_64.png b/www/assets/images/items/zipline-1_64.png deleted file mode 100644 index 2968a70f..00000000 Binary files a/www/assets/images/items/zipline-1_64.png and /dev/null differ diff --git a/www/assets/images/items/zipline_256.png b/www/assets/images/items/zipline_256.png deleted file mode 100644 index 00fe4128..00000000 Binary files a/www/assets/images/items/zipline_256.png and /dev/null differ diff --git a/www/assets/images/items/zipline_64.png b/www/assets/images/items/zipline_64.png deleted file mode 100644 index 7698cd39..00000000 Binary files a/www/assets/images/items/zipline_64.png and /dev/null differ diff --git a/www/index.php b/www/index.php index ac5433e6..f120e1ad 100644 --- a/www/index.php +++ b/www/index.php @@ -3,7 +3,7 @@ - [U5] Satisfactory Tools + Satisfactory Tools diff --git a/yarn.lock b/yarn.lock index bf55d0f2..633ae1c2 100644 --- a/yarn.lock +++ b/yarn.lock @@ -115,6 +115,11 @@ dependencies: axios "*" +"@types/base-64@^1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@types/base-64/-/base-64-1.0.0.tgz#de9c6070ea457fbd65a1b5ebf13976b3ac0bdad0" + integrity sha512-AvCJx/HrfYHmOQRFdVvgKMplXfzTUizmh0tz9GFTpDePWgCY4uoKll84zKlaRoeiYiCr7c9ZnqSTzkl0BUVD6g== + "@types/bootstrap@^5.1.6": version "5.1.6" resolved "https://registry.yarnpkg.com/@types/bootstrap/-/bootstrap-5.1.6.tgz#669a0cd7fb37bca12424e0d68f1f4704cfcdb780" @@ -128,6 +133,11 @@ resolved "https://registry.yarnpkg.com/@types/cytoscape/-/cytoscape-3.19.2.tgz#cd5fed34add5c513cd00adf53a196f8aab8e7c69" integrity sha512-naM/VSuE9FVVmj4ef3FZDEiDltqvm7jnOnbnWDRWfGB4jN/9b2XfYnOGGK5i6E24AlN2mUR+tGTORYPPp5i3Qw== +"@types/file-saver@^2.0.5": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@types/file-saver/-/file-saver-2.0.5.tgz#9ee342a5d1314bb0928375424a2f162f97c310c7" + integrity sha512-zv9kNf3keYegP5oThGLaPk8E081DFDuwfqjtiTzm6PoxChdJ1raSuADf2YGCVIyrSynLrgc8JWv296s7Q7pQSQ== + "@types/jquery@*": version "3.5.9" resolved "https://registry.yarnpkg.com/@types/jquery/-/jquery-3.5.9.tgz#08e4b1dcff0626926ffe545a2bc90f18140c53d6" @@ -160,6 +170,11 @@ resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz#d3357479a0fdfdd5907fe67e17e0a85c906e1301" integrity sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw== +"@types/pako@^2.0.0": + version "2.0.0" + resolved "https://registry.yarnpkg.com/@types/pako/-/pako-2.0.0.tgz#12ab4c19107528452e73ac99132c875ccd43bdfb" + integrity sha512-10+iaz93qR5WYxTo+PMifD5TSxiOtdRaxBf7INGGXMQgTCu8Z/7GYWYFUOS3q/G0nE5boj1r4FEB+WSy7s5gbA== + "@types/perfect-scrollbar@^1.3.0": version "1.3.0" resolved "https://registry.yarnpkg.com/@types/perfect-scrollbar/-/perfect-scrollbar-1.3.0.tgz#3db3f5564ad31399ac90ad78906aedc511ea00b1" @@ -621,6 +636,11 @@ balanced-match@^1.0.0: resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== +base-64@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/base-64/-/base-64-1.0.0.tgz#09d0f2084e32a3fd08c2475b973788eee6ae8f4a" + integrity sha512-kwDPIFCGx0NZHog36dj+tHiwP4QMzsZ3AgMViUBKI0+V5n4U0ufTCUMhnQ04diaRI8EX/QcPfql7zlhZ7j4zgg== + base64-js@^1.0.2, base64-js@^1.3.1: version "1.5.1" resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" @@ -1709,6 +1729,11 @@ figgy-pudding@^3.5.1: resolved "https://registry.yarnpkg.com/figgy-pudding/-/figgy-pudding-3.5.2.tgz#b4eee8148abb01dcf1d1ac34367d59e12fa61d6e" integrity sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw== +file-saver@^2.0.5: + version "2.0.5" + resolved "https://registry.yarnpkg.com/file-saver/-/file-saver-2.0.5.tgz#d61cfe2ce059f414d899e9dd6d4107ee25670c38" + integrity sha512-P9bmyZ3h/PRG+Nzga+rbdI4OEpNDzAVyy74uVO9ATgzLK6VtAsYybF/+TOCvrc0MO793d6+42lLyZTw7/ArVzA== + file-uri-to-path@1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd" @@ -3214,6 +3239,11 @@ p-try@^2.0.0: resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== +pako@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/pako/-/pako-2.1.0.tgz#266cc37f98c7d883545d11335c00fbd4062c9a86" + integrity sha512-w+eufiZ1WuJYgPXbV/PO3NCMEc3xqylkKHzp8bxp1uW4qaSNQUkwmLLEc3kKsfz8lpV1F8Ht3U1Cm+9Srog2ug== + pako@~1.0.5: version "1.0.11" resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.11.tgz#6c9599d340d54dfd3946380252a35705a6b992bf"