-- 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: 03-who-is-hurt -- TODO: build a party list and solve the task (see the chapter).