Some wield_scale changes to the longstick + create minerals

master
migdyn 2019-02-02 14:46:19 +00:00
parent 7d22ddb0fe
commit 529023a634
5 changed files with 38 additions and 0 deletions

8
mods/main/recipes.lua Normal file
View File

@ -0,0 +1,8 @@
minetest.register_craft({
output = "main:pickaxe_steel"
recipe = {
{"main:steel_ingot", "main:steel_ingot", "main:steel_ingot"},
{"main:steel_ingot", "main:stick", "main:steel_ingot"},
{"", "main:stick", ""}
}
})

0
mods/minerals/README.txt Normal file
View File

0
mods/minerals/init.lua Normal file
View File

View File

@ -210,6 +210,36 @@ minetest.register_node("quicksand:quicksand", {
groups = {crumbly = 1, quicksandy = 2},
})
------------
--Weak quicksand
----------
minetest.register_node("quicksand:quicksand_weak", {
description = "Weak Quicksand",
drawtype = "liquid",
paramtype = "light",
tiles = {name = "quicksand_quicksand_weak.png"},
post_effect_color = {r = 80, g = 50, b = 10},
--Behavior
walkable = false,
pointable = true,
buildable_to = false,
diggable = true,
is_ground_content = false,
--Properties
liquid_range = 0,
liquid_viscosity = 10,
liquid_renewable = false,
drowning = 1,
damage_per_second = 3,
liquidtype = "source",
liquid_alternative_flowing = "quicksand:quicksand_weak",
liquid_alternative_source = "quicksand:quicksand_weak",
groups = {crumbly = 1, quicksandy = 3},
})
-----------
--Longstick
-----------

Binary file not shown.

Before

Width:  |  Height:  |  Size: 340 B

After

Width:  |  Height:  |  Size: 376 B