Main public logs
Jump to navigation
Jump to search
Combined display of all available logs of Caves of Qud Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 14:09, 21 May 2023 Librarianmage talk contribs created page Talk:Random cooking effects (Created page with "== Code for processing weights == Made a little script to make the weights and tables automatically: <syntaxhighlight lang="python"> import xml.etree.ElementTree as ET data_dir = "../shortcuts/data/StreamingAssets/Base/" tree = ET.parse(data_dir + "ObjectBlueprints/Data.xml") objects = tree.getroot() cooking_objects = { obj.attrib['Name'][len('ProceduralCookingIngredient_'):]: obj for obj in objects if obj.attrib['Inherits'] == 'IngredientMapping'} data = di...")