Update
This commit is contained in:
parent
db2139f7ba
commit
18ff69274f
14 changed files with 565 additions and 11 deletions
|
|
@ -2,7 +2,8 @@ rgt_towns.main = {}
|
|||
ns = rgt_towns.main
|
||||
|
||||
ns.plots = {
|
||||
"empty_plot"
|
||||
"empty_plot",
|
||||
"house"
|
||||
}
|
||||
|
||||
rgt_towns.register_spawner {
|
||||
|
|
@ -41,3 +42,17 @@ rgt_towns.register_plot{
|
|||
ground_level = 5,
|
||||
can_build = ns.plots
|
||||
}
|
||||
|
||||
rgt_towns.register_plot{
|
||||
name = "house",
|
||||
label = "House",
|
||||
description = "Hello world",
|
||||
schematic = minetest.get_modpath(minetest.get_current_modname()).."/schems/house.mts",
|
||||
recipe = {
|
||||
"oak_planks 1", "oak_planks 1", "oak_planks 1",
|
||||
"oak_log 1", "glass 1", "oak_log 1",
|
||||
"cobble 1", "cobble 1", "cobble 1",
|
||||
},
|
||||
ground_level = 5,
|
||||
can_build = ns.plots
|
||||
}
|
||||
Binary file not shown.
BIN
mods/rgt_towns/rgt_towns_main/schems/house.mts
Normal file
BIN
mods/rgt_towns/rgt_towns_main/schems/house.mts
Normal file
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue