CNCs

data/cncs.lua

CNC machines have the ability to mill material items into smaller variations of the same material.

Defaults

-- speed effects the overall production time for this machine
-- time_modifiers effect how long this machine takes to create certain shapes.
-- max_dimensions specified are the maximum possible input/output item sizes.
-- allowed_materials are what type of material this machine can deal with.

-- Models: 
--     gr_prop_gr_cnc_01c 
--     gr_prop_gr_cnc_01b
--     gr_prop_gr_cnc_01c

local cncs = {
    {
        model           = `gr_prop_gr_cnc_01c`,
        position        = vector3(832.91,-3238.50,-98.70),
        object_offset   = vector3(0,0,-1),
        heading         = 16.72,
        speed           = 1.0,

        time_modifiers = {
            cuboid   = 1.0,
            cylinder = 0.5,
            sphere   = 0.5,
        },

        max_dimensions = {
            width  = 100,
            height = 100,
            depth  = 100
        },

        allowed_materials = {
            'billet_aluminium',
            'billet_steel',
        },
    },
}

Last updated