Module:Faction/data: Difference between revisions
From Kenshi Wiki
More actions
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