Module:Blast resistance 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 blast resistance values. It is meant to be the single source for this information; this way, when new blocks are added or values are changed, they can be changed here and automatically propagate everywhere they are used.

Adding values

To add a value, add ['block'] = 'value', on a separate line, replacing block with the block's in-game name in lowercase and value with the correct value, which can be found in the game code.

See also


local blast_resistance = { }

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

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

return blast_resistance