Mining Facility - KerbalColonies/KerbalColoniesCore GitHub Wiki

Used to gather ore and metalore locally.

Currently has fixed rates, a rework is planned.

type: KCMiningFacility

resourceProduction node

The resourceProduction node defines the mined resources per kerbal and kerbin day. It needs to be present in the level 0 node but may be left empty in higher levels, then the lower level value is used.

The resourceProduction node contains variables with the resource name as variable name and as value "rate, max stored".

level
{
    0
    {
        basegroupName = KC_Base_Extraction_T1
        resources { RocketParts = 250 }

        upgradeTime = 200
        maxKerbals = 2
        allowedTraits = Engineer

        resourceProduction
        {
            Ore = 200,400
            MetalOre = 40,80
        }
    }
}