add clay block, lump brick block and brick and other changes
This commit is contained in:
parent
c91482d957
commit
088976fc12
BIN
blendermodels/MineTurtle.blend
Normal file
BIN
blendermodels/MineTurtle.blend
Normal file
Binary file not shown.
@ -1385,3 +1385,25 @@ minetest.register_craft({
|
|||||||
{'deco:soapstone_brick', 'deco:soapstone_brick'},
|
{'deco:soapstone_brick', 'deco:soapstone_brick'},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
-- clay bricks
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = 'deco:brick_block 1',
|
||||||
|
recipe = {
|
||||||
|
{'deco:brick', 'deco:brick'},
|
||||||
|
{'deco:brick', 'deco:brick'},
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_node("deco:brick_block", {
|
||||||
|
description = "Brick Block",
|
||||||
|
sounds = default.node_sound_stone_defaults(),
|
||||||
|
groups = {cracky=3},
|
||||||
|
tiles = {"deco_brick.png"},
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craftitem("deco:brick", {
|
||||||
|
description = "Brick",
|
||||||
|
inventory_image = "deco_brick_wield.png",
|
||||||
|
})
|
BIN
mods/deco/textures/deco_brick_wield.png
Normal file
BIN
mods/deco/textures/deco_brick_wield.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 520 B |
@ -63,10 +63,46 @@ minetest.register_node("mapgen:gravel", {
|
|||||||
tiles = {"mapgen_gravel.png"},
|
tiles = {"mapgen_gravel.png"},
|
||||||
is_ground_content = true,
|
is_ground_content = true,
|
||||||
drop = 'mapgen:gravel',
|
drop = 'mapgen:gravel',
|
||||||
groups = {crumbly=2, soil=1, falling_node=1},
|
groups = {crumbly=2, falling_node=1},
|
||||||
|
sounds = default.node_sound_gravel_defaults(),
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_node("mapgen:clay", {
|
||||||
|
description = "Clay Block",
|
||||||
|
tiles = {"mapgen_clay.png"},
|
||||||
|
is_ground_content = true,
|
||||||
|
drop = "mapgen:clay_lump 4",
|
||||||
|
groups = {crumbly = 3, oddly_breakable_by_hand=3, falling_node=1},
|
||||||
sounds = default.node_sound_dirt_defaults(),
|
sounds = default.node_sound_dirt_defaults(),
|
||||||
})
|
})
|
||||||
|
|
||||||
|
minetest.register_craftitem("mapgen:clay_lump", {
|
||||||
|
description = "Clay Lump",
|
||||||
|
inventory_image = "mapgen_clay_lump.png",
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
type = "cooking",
|
||||||
|
output = "deco:brick",
|
||||||
|
recipe = "mapgen:clay_lump",
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = 'mapgen:clay_lump 4',
|
||||||
|
recipe = {
|
||||||
|
{'mapgen:clay'},
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = 'mapgen:clay 1',
|
||||||
|
recipe = {
|
||||||
|
{'mapgen:clay_lump', 'mapgen:clay_lump'},
|
||||||
|
{'mapgen:clay_lump', 'mapgen:clay_lump'},
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
minetest.register_node("mapgen:grass", {
|
minetest.register_node("mapgen:grass", {
|
||||||
description = "Dirt with Grass",
|
description = "Dirt with Grass",
|
||||||
tiles = {"mapgen_grass.png", "mapgen_dirt.png", "mapgen_dirt.png^mapgen_grass_side_1.png"},
|
tiles = {"mapgen_grass.png", "mapgen_dirt.png", "mapgen_dirt.png^mapgen_grass_side_1.png"},
|
||||||
@ -732,3 +768,17 @@ minetest.register_node(":base:leaves", {
|
|||||||
groups = {crumbly=3, soil=1, not_in_creative_inventory=1},
|
groups = {crumbly=3, soil=1, not_in_creative_inventory=1},
|
||||||
sounds = default.node_sound_dirt_defaults(),
|
sounds = default.node_sound_dirt_defaults(),
|
||||||
})
|
})
|
||||||
|
|
||||||
|
minetest.register_node("mapgen:force_field", {
|
||||||
|
description = "Alien Forcefield",
|
||||||
|
tiles = {
|
||||||
|
{name="mapgen_force.png", animation={type="vertical_frames", aspect_w=128, aspect_h=128, length=1.5}},
|
||||||
|
},
|
||||||
|
sunlight_propagates = true,
|
||||||
|
paramtype = "light",
|
||||||
|
drawtype = "glasslike",
|
||||||
|
inventory_image = minetest.inventorycube("mapgen_force_inv_wield.png"),
|
||||||
|
wield_image = minetest.inventorycube("mapgen_force_inv_wield.png"),
|
||||||
|
is_ground_content = true,
|
||||||
|
groups = {not_in_creative_inventory=1},
|
||||||
|
})
|
@ -11,6 +11,7 @@ minetest.register_biome({
|
|||||||
node_underwater = "mapgen:sand",
|
node_underwater = "mapgen:sand",
|
||||||
y_min = 60,
|
y_min = 60,
|
||||||
y_max = 160,
|
y_max = 160,
|
||||||
|
node_shore_filler = "mapgen:sand",
|
||||||
heat_point = 45,
|
heat_point = 45,
|
||||||
humidity_point = 45,
|
humidity_point = 45,
|
||||||
})
|
})
|
||||||
|
BIN
mods/mapgen/textures/mapgen_force.png
Normal file
BIN
mods/mapgen/textures/mapgen_force.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 231 B |
BIN
mods/mapgen/textures/mapgen_force_inv_wield.png
Normal file
BIN
mods/mapgen/textures/mapgen_force_inv_wield.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 181 B |
BIN
mods/tools/textures/tool_j_pick.png
Normal file
BIN
mods/tools/textures/tool_j_pick.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 298 B |
BIN
mods/tools/textures/tool_j_shovel.png
Normal file
BIN
mods/tools/textures/tool_j_shovel.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 251 B |
BIN
mods/tools/textures/tool_j_sword.png
Normal file
BIN
mods/tools/textures/tool_j_sword.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 194 B |
Loading…
x
Reference in New Issue
Block a user