Module:Hardness values

From Aether Project Wiki
Jump to navigation Jump to search
This is the documentation page. It will be transcluded into the main module page. See Template:Documentation for more information

This module lists the hardness values for all blocks.


local hardness = { }

local the_aether = {
	['purple flower'] = '0',
}

for item, value in pairs( the_aether ) do
	hardness[item] = value
end

return hardness