-- A small Hero class (provided). local Hero = {} Hero.__index = Hero function Hero.new(name, hp) return setmetatable({ name = name, hp = hp, max_hp = hp }, Hero) end -- Homework 28: 02-total-hp -- TODO: build a party list and solve the task (see the chapter).