Toggle menu
15
236
81
27.8K
Kenshi Wiki
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Module:Faction/data: Difference between revisions

From Kenshi Wiki
Prd (talk | contribs)
Created page with "local factions = { ['The Holy Nation'] = { ['base'] = { ['String ID'] = '1083-gamedata.base', ['AI'] = { ['heals strangers'] = true, ['squad formation'] = 'MILITARY', ['trustworthy'] = 0 }, ['armour vendor quality chance'] = { {'armors 0', 15}, {'armors 1', 60}, {'armors 2', 50}, {'armors 3', 15},..."
 
(No difference)

Latest revision as of 20:29, 26 May 2025


From https://kenshi.fandom.com/wiki/Module:Faction/data


local factions = {
    ['The Holy Nation'] = {
        ['base'] = {
            ['String ID'] = '1083-gamedata.base',
            ['AI'] = {
                ['heals strangers'] = true,
                ['squad formation'] = 'MILITARY',
                ['trustworthy'] = 0
            },
            ['armour vendor quality chance'] = {
                {'armors 0', 15},
                {'armors 1', 60},
                {'armors 2', 50},
                {'armors 3', 15},
                {'armors 4', 0},
                {'armors 5', 0}
            }
            -- TODO
        }
    },
    ['Mongrel'] = {
        ['base'] = {
            ['String ID'] = '18891-rebirth.mod',
            ['AI'] = {
                ['heals strangers'] = true,
                ['squad formation'] = 'MILITARY',
                ['trustworthy'] = 0
            },
            ['armour vendor quality chance'] = {
                {'armors 0', 0},
                {'armors 1', 20},
                {'armors 2', 50},
                {'armors 3', 20},
                {'armors 4', 8},
                {'armors 5', 0}
            }
            -- TODO
        }
    }
}

return factions