Skip to content
jwvanderbeck-Unity edited this page Apr 30, 2020 · 2 revisions

Old Style

MODULE
{
    name = TestFlightCore
    title = LMDE-H
    configuration = engineConfig = LMDE-H:LMDE-H
    maxData = 10000
    techTransferMax = 2000
    techTransfer = 
    rndMaxData = 2500
    rndCost = 1.05
    rndRate = 0.51800401282227
}
MODULE
{
    name = TestFlightCore
    title = LMDE-J
    configuration = engineConfig = LMDE-J:LMDE-J
    maxData = 10000
    techTransferMax = 2000
    techTransfer = LMDE-H:50
    rndMaxData = 2500
    rndCost = 1.05
    rndRate = 0.51800401282227
}
MODULE
{
    name = TestFlightCore
    title = TR-201
    configuration = engineConfig = TR-201:TR-201
    maxData = 10000
    techTransferMax = 2000
    techTransfer = LMDE-H,LMDE-J:50
    rndMaxData = 2500
    rndCost = 1.05
    rndRate = 0.51800401282227
}

New Style

MODULE
{
    name = TestFlightCore
    configVersion = 2
    CONFIG
    {
        title = LMDE-H
        configuration = engineConfig = LMDE-H:LMDE-H
        maxData = 10000
        techTransferMax = 2000
        techTransfer = 
        rndMaxData = 2500
        rndCost = 1.05
        rndRate = 0.51800401282227
    }
    CONFIG
    {
        title = LMDE-J
        configuration = engineConfig = LMDE-J:LMDE-J
        maxData = 10000
        techTransferMax = 2000
        techTransfer = LMDE-H:50
        rndMaxData = 2500
        rndCost = 1.05
        rndRate = 0.51800401282227
    }
    CONFIG
    {
        title = TR-201
        configuration = engineConfig = TR-201:TR-201
        maxData = 10000
        techTransferMax = 2000
        techTransfer = LMDE-H,LMDE-J:50
        rndMaxData = 2500
        rndCost = 1.05
        rndRate = 0.51800401282227
    }
}