survival inprovements

master
Toby plowy 2017-07-27 23:41:43 +02:00
parent adfcb92a59
commit 09efe30931
13 changed files with 37 additions and 11 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 680 KiB

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 MiB

After

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 MiB

After

Width:  |  Height:  |  Size: 607 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 MiB

After

Width:  |  Height:  |  Size: 506 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 607 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 506 KiB

View File

@ -96,7 +96,7 @@ minetest.register_node("decoblocks:bamboo_block", {
minetest.register_node("decoblocks:bamboo_planks", {
description = "Bamboo Wood Planks",
tiles = {"decoblocks_bamboo_planks.png"},
groups = {cracky = 3, stone = 2},
groups = {choppy = 3, oddly_breakable_by_hand = 2, flammable = 3, wood = 1},
sounds = default.node_sound_stone_defaults(),
})

Binary file not shown.

Before

Width:  |  Height:  |  Size: 405 B

After

Width:  |  Height:  |  Size: 704 B

View File

@ -13,7 +13,7 @@ minetest.register_craftitem("farming:corn", {
minetest.register_node("farming:corn_1", {
drawtype = "plantlike",
tiles = {"farming_corn_1.png"},
visual_scale = 1.4,
visual_scale = 2,
paramtype = "light",
sunlight_propagates = true,
waving = 1,
@ -31,7 +31,7 @@ minetest.register_node("farming:corn_1", {
minetest.register_node("farming:corn_2", {
drawtype = "plantlike",
tiles = {"farming_corn_2.png"},
visual_scale = 1.4,
visual_scale = 2,
paramtype = "light",
sunlight_propagates = true,
waving = 1,
@ -49,7 +49,7 @@ minetest.register_node("farming:corn_2", {
minetest.register_node("farming:corn_3", {
drawtype = "plantlike",
tiles = {"farming_corn_3.png"},
visual_scale = 1.4,
visual_scale = 2,
paramtype = "light",
waving = 1,
sunlight_propagates = true,
@ -67,7 +67,7 @@ minetest.register_node("farming:corn_3", {
minetest.register_node("farming:corn_4", {
drawtype = "plantlike",
tiles = {"farming_corn_4.png"},
visual_scale = 1.4,
visual_scale = 2,
paramtype = "light",
waving = 1,
sunlight_propagates = true,
@ -91,7 +91,7 @@ minetest.register_node("farming:corn_4", {
minetest.register_node("farming:corn_5", {
drawtype = "plantlike",
tiles = {"farming_corn_5.png^[colorize:brown:50"},
visual_scale = 1.45,
visual_scale = 2,
paramtype = "light",
waving = 1,
drop = "",

View File

@ -38,12 +38,19 @@ minetest.register_craft( {
})
minetest.register_craft( {
output = "mapgen:bamboo_wood 4",
output = "decoblocks:bamboo_planks 4",
recipe = {
{ "mapgen:bamboo",},
}
})
minetest.register_craft( {
output = "decoblocks:bamboo_planks 4",
recipe = {
{ "mapgen:bamboo_with_leaves",},
}
})
minetest.register_craft( {
output = "mapgen:yellow_ipe_wood 4",
recipe = {

View File

@ -324,6 +324,17 @@
y_max = 31000,
})
minetest.register_ore({
ore_type = "scatter",
ore = "mapgen:savanna_iron",
wherein = "mapgen:savanna_stone",
clust_scarcity = 7 * 7 * 7,
clust_num_ores = 9,
clust_size = 3,
y_min = -1025,
y_max = 31000,
})
minetest.register_ore({
ore_type = "scatter",
ore = "default:stone_with_coal",

View File

@ -1703,14 +1703,22 @@ minetest.register_node("mapgen:limestone", {
minetest.register_node("mapgen:savanna_cobblestone_stone", {
description = "Savanna Cobblestone",
tiles = {"mapgen_savanna_cobblestone_stone.png"},
groups = {cracky = 2},
groups = {cracky = 3, stone = 1},
sounds = default.node_sound_stone_defaults()
})
minetest.register_node("mapgen:savanna_coal", {
description = "Savanna Coal",
description = "Savanna Stone With Coal",
tiles = {"mapgen_savannah_coal.png"},
groups = {cracky = 2, ore=1},
groups = {cracky = 3, stone = 1, ore=1},
drop = 'default:coal_lump',
sounds = default.node_sound_stone_defaults()
})
minetest.register_node("mapgen:savanna_iron", {
description = "Savanna Stone With Iron",
tiles = {"mapgen_savannah_iron.png"},
groups = {cracky = 2, stone = 1, ore=1},
drop = 'default:coal_lump',
sounds = default.node_sound_stone_defaults()
})
@ -1718,7 +1726,7 @@ minetest.register_node("mapgen:savanna_coal", {
minetest.register_node("mapgen:savanna_stone", {
description = "Savannah Stone",
tiles = {"mapgen_savannah_stone.png"},
groups = {cracky = 2, stone=1},
groups = {cracky = 3, stone=1},
drop = 'mapgen:savanna_cobblestone_stone',
sounds = default.node_sound_stone_defaults()
})

Binary file not shown.

After

Width:  |  Height:  |  Size: 862 B