Differences From Artifact [4e1556f916]:
- File mods/starlit/terrain.lua — part of check-in [cade6683f7] at 2024-05-03 00:10:09 on branch trunk — add sprint, improve bio job, rebalance stamina regen, various fixes (user: lexi, size: 6819) [annotate] [blame] [check-ins using]
To Artifact [e1d816e7a5]:
- File mods/starlit/terrain.lua — part of check-in [3df08bd5ac] at 2024-05-06 16:20:04 on branch trunk — complete (-ish) matter compiler UI (power drain still missing), add printable chemical light (user: lexi, size: 6773) [annotate] [blame] [check-ins using]
240 240 tiles = {'starlit-terrain-feldspar.png'}; 241 241 excludeOre = true; 242 242 recover = starlit.type.fab { 243 243 time = { shred = 3; }; 244 244 cost = { shredPower = 3; }; 245 245 }; 246 246 recover_vary = function(rng, ctx) 247 - -- print('vary!', rng:int(), rng:int(0,10)) 248 247 return starlit.type.fab { 249 248 element = { 250 249 aluminum = rng:int(0,4); 251 250 potassium = rng:int(0,2); 252 251 calcium = rng:int(0,2); 253 252 } 254 253 };