Differences From
Artifact [5877ccf3fb]:
345 345 local tb = {
346 346 kind = 'vert', mode = 'sw';
347 347 padding = 0.5,
348 348 {kind = 'hztl', padding = 0.25;
349 349 {kind = 'label', text = 'Name', w = 2, h = barh};
350 350 {kind = 'label', text = user.persona.name, w = 4, h = barh}};
351 351 }
352 - local statBars = {'hunger', 'thirst', 'fatigue', 'morale', 'irradiation', 'illness'}
352 + local statBars = {'nutrition', 'hydration', 'fatigue', 'morale', 'irradiation', 'illness'}
353 353 for idx, id in ipairs(statBars) do
354 354 local s = starlit.world.stats[id]
355 355 local amt, sv = user:effectiveStat(id)
356 356 local min, max = starlit.world.species.statRange(user.persona.species, user.persona.speciesVariant, id)
357 357 local st = string.format('%s / %s', s.desc(amt, true), s.desc(max))
358 358 table.insert(tb, {kind = 'hztl', padding = 0.25;
359 359 {kind = 'label', w=2, h=barh, text = s.name};