Choco
Created page with "local p = {} local data = {} -- Called by the data templates to register themselves function p.register(frame) local args = frame.args local name = args.name or "Unknown" data[name] = args return "" -- don't output anything directly end -- Get data for a monster function p.get(monster) return data[monster] end -- Generate a table row for the monster list function p.row(frame) local monster = frame.args[1] local m = data[monster] if not..."