1
0
mirror of https://github.com/mt-mods/basic_materials.git synced 2025-07-04 17:10:25 +02:00

Initial commit

This commit is contained in:
Vanessa Dannenberg
2018-10-30 21:02:29 -04:00
commit 1262769de3
37 changed files with 1422 additions and 0 deletions

14
init.lua Normal file
View File

@ -0,0 +1,14 @@
-- Basic materials mod
-- by Vanessa Dannenberg
-- This mod supplies all those little random craft items that everyone always
-- seems to need, such as metal bars (ala rebar), plastic, wire, and so on.
local modpath = minetest.get_modpath("basic_materials")
basic_materials = {}
dofile(modpath.."/metals.lua")
dofile(modpath.."/plastics.lua")
dofile(modpath.."/electrical-electronic.lua")
dofile(modpath.."/misc.lua")