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


https://kenshi.fandom.com/wiki/Module:Vendor_List/data


-- TODO: Instructions, documentation
-- currently this is basically a dump of all values presented by FCS for a few objects into lua datatable

local vendor_lists = {
    ['shinobi gear'] = {
        ['base'] = {
            ['String ID'] = '42079-rebirth.mod',
            ['items count'] = 40,
            ['money item'] = {
                ['max'] = 0,
                ['min'] = 0,
                ['prob'] = 0
            }
        },
        ['clothing'] = {
            {'Fog Mask', 100},
            {'Armoured Rags (colored)', 100},
            {'Blackened Chain Shirt', 15},
            {'Blackened Chainmail', 15},
            {'Dark Leather Shirt', 50},
            {'Drifter\'s Boots', 250},
            {'Drifter\'s Leather Pants', 250},
            {'Rusty Chainmail', 50},
            {'Rusty Chain Shirt', 50},
            {'Swamp Ninja Mask', 50},
            {'Black Cloth Shirt', 100},
            {'Black Rag Shirt', 250},
            {'Assassin\'s Rags', 100},
            {'Mercenary Leather Armour', 100},
            {'Armoured Hood', 100},
            {'Ninja Mask', 100}
        },
        ['weapon manufacturers'] = {
            {'Catun Scrapmaster', 40},
            {'Ancient', 100},
            {'Skeleton Smiths', 100}
        },
        ['weapons'] = {
            {'Katana', 50},
            {'Ninja Blade', 250},
            {'Nodachi', 20},
            {'Guardless Katana', 100},
            {'Wakizashi', 150}
        }
    },
    ['house contents'] = {
        ['base'] = {
            ['String ID'] = '42076-rebirth.mod',
            ['items count'] = 40,
            ['money item'] = {
                ['max'] = 0,
                ['min'] = 0,
                ['prob'] = 0
            },
        },
        ['items'] = {
            {'Basic First Aid Kit', 100},
            {'Book', 5},
            {'Bread', 25},
            {'Fabrics', 200},
            {'Rice Bowl', 25},
            {'Hacksaw', 50},
            {'Leather', 50},
            {'Hashish', 5},
            {'Cactus Rum', 50},
            {'Water Jug', 400},
            {'Chewsticks', 25},
            {'Cooked Vegetables', 25},
            {'Cup', 400},
            {'Damaged Book', 100},
            {'Dried Meat', 50},
            {'Greenfruit', 50},
            {'Grog', 100},
            {'Small Emperor Statue', 100},
            {'The Holy Flame', 100},
            {'Wooden Bowl', 400}
        }
    },
    ['shek military ruin loot'] = {
        ['base'] = {
            ['String ID'] = '51329-rebirth.mod',
            ['items count'] = 40,
            ['money item'] = {
                ['max'] = 0,
                ['min'] = 0,
                ['prob'] = 0
            }
        },
        ['clothing'] = {
            {'Rusty Chain Shirt', 100},
            {'Rusty Chainmail', 50}
        },
        ['items'] = {
            {'Animal Claw', 100},
            {'Armour Plating', 100},
            {'Cup', 100},
            {'Damaged Book', 100},
            {'Empty Rum Bottle', 100},
            {'Fabrics', 100},
            {'Iron Plates', 100},
            {'Leather', 100},
            {'Ration Pack', 100},
            {'Raw Iron', 500},
            {'Raw Stone', 1000},
            {'Cactus Rum', 25},
            {'Steel Bars', 100},
            {'Tools', 100},
            {'Water', 200},
            {'Water Jug', 200}
        },
        ['weapon manufacturers'] = {
            {'Unknown', 100}
        },
        ['weapons'] = {
            {'Plank', 500},
            {'Fragment Axe', 500},
            {'Exile Plank', 1000}
        }
    }
}

return vendor_lists