change bamboo floor recipe and add bamboo block
This commit is contained in:
parent
80bd5dfebf
commit
b29634b363
@ -17,6 +17,7 @@ Ethereal Mapgen mod for Minetest (works on all except v6)
|
||||
- Tweaked mapgen decorations
|
||||
- Added more lucky blocks
|
||||
- Added igloo to glacier biome
|
||||
- 2x2 bamboo = bamboo floor, 3x3 bamboo or 2x bamboo floor = bamboo block, blocks can be made into sticks, bamboo stairs need blocks to craft
|
||||
|
||||
### 1.24
|
||||
|
||||
|
31
extra.lua
31
extra.lua
@ -25,6 +25,31 @@ minetest.register_node("ethereal:bamboo_floor", {
|
||||
-- Craft Bamboo into Bamboo Flooring
|
||||
minetest.register_craft({
|
||||
output = "ethereal:bamboo_floor 2",
|
||||
recipe = {
|
||||
{"ethereal:bamboo", "ethereal:bamboo"},
|
||||
{"ethereal:bamboo", "ethereal:bamboo"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "ethereal:bamboo_block",
|
||||
recipe = {
|
||||
{"ethereal:bamboo_floor"},
|
||||
{"ethereal:bamboo_floor"},
|
||||
}
|
||||
})
|
||||
|
||||
-- Bamboo Block
|
||||
minetest.register_node("ethereal:bamboo_block", {
|
||||
description = S("Bamboo Block"),
|
||||
tiles = { "bamboo_floor.png" },
|
||||
paramtype = "light",
|
||||
groups = {snappy = 3, choppy = 3 , flammable = 2, wood = 1},
|
||||
sounds = default.node_sound_wood_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "ethereal:bamboo_block",
|
||||
recipe = {
|
||||
{"ethereal:bamboo", "ethereal:bamboo", "ethereal:bamboo"},
|
||||
{"ethereal:bamboo", "ethereal:bamboo", "ethereal:bamboo"},
|
||||
@ -207,9 +232,9 @@ minetest.register_node("ethereal:paper_wall", {
|
||||
minetest.register_craft({
|
||||
output = "ethereal:paper_wall",
|
||||
recipe = {
|
||||
{"default:stick", "default:paper", "default:stick"},
|
||||
{"default:stick", "default:paper", "default:stick"},
|
||||
{"default:stick", "default:paper", "default:stick"},
|
||||
{"group:stick", "default:paper", "group:stick"},
|
||||
{"group:stick", "default:paper", "group:stick"},
|
||||
{"group:stick", "default:paper", "group:stick"},
|
||||
}
|
||||
})
|
||||
|
||||
|
@ -98,7 +98,7 @@ stairs.register_all("redwood_wood", "ethereal:redwood_wood",
|
||||
S("Redwood Slab"),
|
||||
default.node_sound_wood_defaults())
|
||||
|
||||
stairs.register_all("bamboo_wood", "ethereal:bamboo_floor",
|
||||
stairs.register_all("bamboo_wood", "ethereal:bamboo_block",
|
||||
{snappy = 3, choppy = 2, oddly_breakable_by_hand = 1, flammable = 3},
|
||||
{"bamboo_floor.png"},
|
||||
S("Bamboo stair"),
|
||||
@ -202,7 +202,7 @@ stairsplus:register_all("ethereal", "redwood_wood", "ethereal:redwood_wood", {
|
||||
sounds = default.node_sound_wood_defaults(),
|
||||
})
|
||||
|
||||
stairsplus:register_all("ethereal", "bamboo_wood", "ethereal:bamboo_floor", {
|
||||
stairsplus:register_all("ethereal", "bamboo_wood", "ethereal:bamboo_block", {
|
||||
description = S("Bamboo"),
|
||||
tiles = {"bamboo_floor.png"},
|
||||
groups = {snappy = 3, choppy = 2, oddly_breakable_by_hand = 1, flammable = 3},
|
||||
@ -307,7 +307,7 @@ stairs.register_stair_and_slab("redwood_wood", "ethereal:redwood_wood",
|
||||
S("Redwood Slab"),
|
||||
default.node_sound_wood_defaults())
|
||||
|
||||
stairs.register_stair_and_slab("bamboo_wood", "ethereal:bamboo_floor",
|
||||
stairs.register_stair_and_slab("bamboo_wood", "ethereal:bamboo_block",
|
||||
{snappy = 3, choppy = 2, oddly_breakable_by_hand = 1, flammable = 3},
|
||||
{"bamboo_floor.png"},
|
||||
S("Bamboo stair"),
|
||||
|
2
wood.lua
2
wood.lua
@ -248,7 +248,7 @@ minetest.register_node("ethereal:bamboo", {
|
||||
type = "fixed",
|
||||
fixed = {-0.3, -0.5, -0.3, 0.3, 0.5, 0.3}
|
||||
},
|
||||
groups = {choppy = 3, oddly_breakable_by_hand = 1, flammable = 2, tree = 1},
|
||||
groups = {choppy = 3, oddly_breakable_by_hand = 1, flammable = 2},--tree = 1
|
||||
sounds = default.node_sound_leaves_defaults(),
|
||||
after_dig_node = function(pos, node, metadata, digger)
|
||||
default.dig_up(pos, node, digger)
|
||||
|
Loading…
x
Reference in New Issue
Block a user