Toggle menu
15
237
102
27.9K
Kenshi Wiki
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.
Revision as of 20:29, 26 May 2025 by 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},...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)


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