Compare commits
4 Commits
auto-build
...
master
Author | SHA1 | Date | |
---|---|---|---|
dbbbc3fb5f | |||
4a4196d8a3 | |||
930edb43d2 | |||
0fb0cfea17 |
16
init.lua
@ -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'},
|
||||
}
|
||||
})
|
||||
|
||||
|
2
mod.conf
Normal file
@ -0,0 +1,2 @@
|
||||
name = scaffolding
|
||||
description = Adds the ability quickly build and remove scaffolding
|
BIN
screenshot.png
Normal file
After Width: | Height: | Size: 1015 KiB |
Before Width: | Height: | Size: 484 B After Width: | Height: | Size: 701 B |
Before Width: | Height: | Size: 392 B After Width: | Height: | Size: 554 B |
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 407 B |
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 441 B |
Before Width: | Height: | Size: 492 B After Width: | Height: | Size: 714 B |
Before Width: | Height: | Size: 404 B After Width: | Height: | Size: 555 B |
Before Width: | Height: | Size: 3.0 KiB After Width: | Height: | Size: 481 B |