Feed The Beast Wiki

Follow the Feed The Beast Wiki on Discord or Mastodon!

(sitenotice-read-more)

Feed The Beast Wiki
Advertisement

Documentation for this module may be created at Module:Navbox/SecurityCraft/en/doc

local p = {}
p.navbox = function(navbox, highlightline, group, list, line, ni, nid, l)

local sc = l{"SecurityCraft", [=[SecurityCraft]=]}

local blocks = [=[Blocks]=]
local items = [=[Items]=]
local modules = [=[Modules]=]
local mechanics = [=[Mechanics]=]

return navbox{title = sc, mod = "SECUR", modname = "SecurityCraft",
		list{title = blocks,
			ni{"Laser Block"},
			ni{"Keypad"},
			ni{"Keycard Reader"},
			ni{"Inventory Scanner"},
			ni{"Protecto"}
	},
		list{title = items,
			ni{"Codebreaker"}
	},
    	list{title = modules,
    		ni{"Whitelist Module"},
    		ni{"Blacklist Module"},
    		ni{"Harming Module"},
    		ni{"Disguise Module"},
    		ni{"Redstone Module"},
    		ni{"Storage Module"},
    		ni{"Smart Module"}
	},
    	list{title = mechanics,
    		l{"Ownership", [=[Ownership]=]},
    		l{"Options (SecurityCraft)", [=[Options]=]},
    		l{"Module (SecurityCraft)", [=[Module]=]},
    		l{"Passcodes", [=[Passcodes]=]}
    	}
}

end
return p
Advertisement