forked from mtcontrib/scaffolding
Compare commits
2 Commits
8ad6591315
...
master
Author | SHA1 | Date | |
---|---|---|---|
dbbbc3fb5f | |||
4a4196d8a3 |
1
depends.txt
Normal file
1
depends.txt
Normal file
@ -0,0 +1 @@
|
||||
default
|
26
init.lua
26
init.lua
@ -1,7 +1,7 @@
|
||||
local buildPlatform = function(node, pos, itemstack)
|
||||
-- code for the building platforms
|
||||
local posZ = {'1', '0', '-1', '-1', '0', '0', '1', '1' };
|
||||
local posX = {'0', '-1', '0', '0', '1', '1', '0', '0' };
|
||||
posZ = {'1', '0', '-1', '-1', '0', '0', '1', '1' };
|
||||
posX = {'0', '-1', '0', '0', '1', '1', '0', '0' };
|
||||
|
||||
for nameCount = 1, 8 do
|
||||
pos.z = pos.z + posZ[nameCount];
|
||||
@ -20,8 +20,8 @@ local buildScaffolding = function(node, pos, itemstack, player)
|
||||
-- many thanks to addi for improveing (rewriteing) my crappy code --
|
||||
|
||||
-- code for the building scaffolding
|
||||
local height = 0;
|
||||
local depth = 0; -- !!Note!! depth is not needed at the moment
|
||||
height = 0;
|
||||
depth = 0; -- !!Note!! depth is not needed at the moment
|
||||
|
||||
|
||||
--[[ debug stuff ]]
|
||||
@ -75,6 +75,7 @@ minetest.register_node("scaffolding:scaffolding", {
|
||||
is_ground_content = true,
|
||||
groups = {snappy=2,cracky=3,oddly_breakable_by_hand=3},
|
||||
sounds = default.node_sound_wood_defaults(),
|
||||
use_texture_alpha = "blend",
|
||||
on_punch = function(pos, node, puncher)
|
||||
local tool = puncher:get_wielded_item():get_name()
|
||||
if tool and tool == "scaffolding:scaffolding_wrench" then
|
||||
@ -132,6 +133,7 @@ minetest.register_node("scaffolding:reinforced_scaffolding", {
|
||||
is_ground_content = true,
|
||||
groups = {snappy=2,cracky=3,oddly_breakable_by_hand=3},
|
||||
sounds = default.node_sound_wood_defaults(),
|
||||
use_texture_alpha = "blend",
|
||||
on_punch = function(pos, node, puncher)
|
||||
local tool = puncher:get_wielded_item():get_name()
|
||||
if tool and tool == "scaffolding:scaffolding_wrench" then
|
||||
@ -177,6 +179,7 @@ minetest.register_node("scaffolding:reinforced_scaffolding", {
|
||||
is_ground_content = true,
|
||||
groups = {snappy=2,cracky=3,oddly_breakable_by_hand=3},
|
||||
sounds = default.node_sound_wood_defaults(),
|
||||
use_texture_alpha = "blend",
|
||||
on_punch = function(pos, node, puncher)
|
||||
local tool = puncher:get_wielded_item():get_name()
|
||||
if tool and tool == "scaffolding:scaffolding_wrench" then
|
||||
@ -217,6 +220,7 @@ minetest.register_node("scaffolding:reinforced_scaffolding", {
|
||||
is_ground_content = true,
|
||||
groups = {snappy=2,cracky=3,oddly_breakable_by_hand=3},
|
||||
sounds = default.node_sound_wood_defaults(),
|
||||
use_texture_alpha = "blend",
|
||||
on_punch = function(pos, node, puncher)
|
||||
local tool = puncher:get_wielded_item():get_name()
|
||||
if tool and tool == "scaffolding:scaffolding_wrench" then
|
||||
@ -250,6 +254,7 @@ minetest.register_node("scaffolding:reinforced_scaffolding", {
|
||||
is_ground_content = true,
|
||||
groups = {snappy=2,cracky=3},
|
||||
sounds = default.node_sound_wood_defaults(),
|
||||
use_texture_alpha = "blend",
|
||||
node_box = {
|
||||
type = "fixed",
|
||||
fixed = {
|
||||
@ -308,6 +313,7 @@ minetest.register_node("scaffolding:reinforced_scaffolding", {
|
||||
is_ground_content = true,
|
||||
groups = {snappy=2,cracky=3},
|
||||
sounds = default.node_sound_wood_defaults(),
|
||||
use_texture_alpha = "blend",
|
||||
on_punch = function(pos, node, puncher)
|
||||
local tool = puncher:get_wielded_item():get_name()
|
||||
if tool and tool == "scaffolding:scaffolding_wrench" then
|
||||
@ -353,6 +359,7 @@ minetest.register_node("scaffolding:reinforced_scaffolding", {
|
||||
is_ground_content = true,
|
||||
groups = {snappy=2,cracky=3},
|
||||
sounds = default.node_sound_wood_defaults(),
|
||||
use_texture_alpha = "blend",
|
||||
on_punch = function(pos, node, puncher)
|
||||
local tool = puncher:get_wielded_item():get_name()
|
||||
if tool and tool == "scaffolding:scaffolding_wrench" then
|
||||
@ -393,6 +400,7 @@ minetest.register_node("scaffolding:reinforced_scaffolding", {
|
||||
is_ground_content = true,
|
||||
groups = {snappy=2,cracky=3},
|
||||
sounds = default.node_sound_wood_defaults(),
|
||||
use_texture_alpha = "blend",
|
||||
on_punch = function(pos, node, puncher)
|
||||
local tool = puncher:get_wielded_item():get_name()
|
||||
if tool and tool == "scaffolding:scaffolding_wrench" then
|
||||
@ -421,18 +429,18 @@ minetest.register_node("scaffolding:reinforced_scaffolding", {
|
||||
minetest.register_craft({
|
||||
output = 'scaffolding:scaffolding 12',
|
||||
recipe = {
|
||||
{'default:wood', 'default:wood', 'default:wood'},
|
||||
{'group:wood', 'group:wood', 'group:wood'},
|
||||
{'default:stick', '', 'default:stick'},
|
||||
{'default:wood', 'default:wood', 'default:wood'},
|
||||
{'group:wood', 'group:wood', 'group:wood'},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'scaffolding:scaffolding 4',
|
||||
recipe = {
|
||||
{'default:wood'},
|
||||
{'group:wood'},
|
||||
{'default:stick'},
|
||||
{'default:wood'},
|
||||
{'group:wood'},
|
||||
}
|
||||
})
|
||||
|
||||
@ -541,5 +549,3 @@ minetest.register_craft({
|
||||
{'default:steel_ingot', '', ''},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.log("action", "[scaffolding] loaded.")
|
||||
|
4
mod.conf
4
mod.conf
@ -1,4 +1,2 @@
|
||||
name = scaffolding
|
||||
title = Scaffolding
|
||||
description = Say Goodbye To Dirt Scaffolding.
|
||||
depends = default
|
||||
description = Adds the ability quickly build and remove scaffolding
|
||||
|
BIN
screenshot.png
Normal file
BIN
screenshot.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1015 KiB |
Reference in New Issue
Block a user