This mod allows to build Geobays + Save Points for 1 Ferrite Dust, which is the minimum cost allowed by the game.

Compatibility:
Compatible with NEXT 1.63

Installation:
- remove or rename DISABLEMODS.TXT file from PCBANKS folder (I rename it into ENABLEMODS.TXT).
- create a MODS folder into \Steam\steamapps\common\No Man's Sky\GAMEDATA\PCBANKS folder.
- copy/paste included .pak file into the MODS folder.

Warning:
This mod might not be compatible with other modifications to the base building elements, more precisely, any other mod that modifies:
\METADATA\REALITY\TABLES\NMS_REALITY_GCPRODUCTTABLE.MBIN

How to add Quick Geobays to your own NMS_REALITY_GCPRODUCTTABLE.MBIN file:

FIND
<Property name="Id" value="GARAGE_S" />

GO TO
<Property name="Requirements">

REPLACE
      <Property name="Requirements">
        <Property value="GcTechnologyRequirement.xml">
          <Property name="ID" value="CASING" />
          <Property name="InventoryType" value="GcInventoryType.xml">
            <Property name="InventoryType" value="Product" />
          </Property>
          <Property name="Amount" value="5" />
        </Property>
        <Property value="GcTechnologyRequirement.xml">
          <Property name="ID" value="POWERCELL" />
          <Property name="InventoryType" value="GcInventoryType.xml">
            <Property name="InventoryType" value="Product" />
          </Property>
          <Property name="Amount" value="4" />
        </Property>
        <Property value="GcTechnologyRequirement.xml">
          <Property name="ID" value="LUSH1" />
          <Property name="InventoryType" value="GcInventoryType.xml">
            <Property name="InventoryType" value="Substance" />
          </Property>
          <Property name="Amount" value="100" />
        </Property>
      </Property>
		  
WITH

      <Property name="Requirements">
        <Property value="GcTechnologyRequirement.xml">
          <Property name="ID" value="LAND1" />
          <Property name="InventoryType" value="GcInventoryType.xml">
            <Property name="InventoryType" value="Substance" />
          </Property>
          <Property name="Amount" value="1" />
        </Property>
      </Property>

REPEAT ALL THESE STEPS FOR
<Property name="Id" value="GARAGE_M" />
<Property name="Id" value="GARAGE_L" />
<Property name="Id" value="GARAGE_B" />
<Property name="Id" value="SUMMON_GARAGE" />

-----

How to add Quick Save Points to your own NMS_REALITY_GCPRODUCTTABLE.MBIN file:

FIND
<Property name="Id" value="BUILDSAVE" />

GO TO
<Property name="Requirements">

REPLACE
		<Property value="GcTechnologyRequirement.xml">
          <Property name="ID" value="CASING" />
          <Property name="InventoryType" value="GcInventoryType.xml">
            <Property name="InventoryType" value="Product" />
          </Property>
          <Property name="Amount" value="2" />
        </Property>
        <Property value="GcTechnologyRequirement.xml">
          <Property name="ID" value="JELLY" />
          <Property name="InventoryType" value="GcInventoryType.xml">
            <Property name="InventoryType" value="Product" />
          </Property>
          <Property name="Amount" value="1" />
		</Property>
		  
WITH

		<Property value="GcTechnologyRequirement.xml">
          <Property name="ID" value="LAND1" />
          <Property name="InventoryType" value="GcInventoryType.xml">
            <Property name="InventoryType" value="Substance" />
          </Property>
          <Property name="Amount" value="1" />
        </Property>


Silver70