Material Configuration

The materials configuration table can be found in data/materials.lua

Materials are one of three main factors to engine stress/damage (the other two being quality and size).

-- strength = 0-1
-- weight   = 0-1

Materials = {
    steel = {
        strength = 0.6,
        weight = 0.8,
    },

    aluminum = {
        strength = 0.4,
        weight = 0.18,
    },

    titanium = {
        strength = 0.8,
        weight = 0.4,
    },

    forgedSteel = {
        strength = 1.0,
        weight = 0.7,
    },

    super = {
        strength = 1.0,
        weight = 0.0,
    }
}

Last updated