mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-11-17 07:50:29 +01:00
TWeak the Spider Cobweb From "mobs" mod
This commit is contained in:
parent
b3cf918f02
commit
a3cee45129
|
@ -78,9 +78,9 @@ if not minetest.get_modpath("ethereal") then
|
||||||
minetest.register_alias("ethereal:crystal_spike", "default:sandstone")
|
minetest.register_alias("ethereal:crystal_spike", "default:sandstone")
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Cobweb
|
-- Spider Cobweb
|
||||||
|
|
||||||
minetest.register_node("mobs:cobweb", {
|
minetest.register_node("mobs:spider_cobweb", {
|
||||||
description = "Spider Cobweb", --Description changé pour éviter conflit avec homedecor_modpack
|
description = "Spider Cobweb", --Description changé pour éviter conflit avec homedecor_modpack
|
||||||
drawtype = "plantlike",
|
drawtype = "plantlike",
|
||||||
visual_scale = 1.1,
|
visual_scale = 1.1,
|
||||||
|
@ -90,8 +90,8 @@ minetest.register_node("mobs:cobweb", {
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
liquid_viscosity = 11,
|
liquid_viscosity = 11,
|
||||||
liquidtype = "source",
|
liquidtype = "source",
|
||||||
liquid_alternative_flowing = "mobs:cobweb",
|
liquid_alternative_flowing = "mobs:spider_cobweb",
|
||||||
liquid_alternative_source = "mobs:cobweb",
|
liquid_alternative_source = "mobs:spider_cobweb",
|
||||||
liquid_renewable = false,
|
liquid_renewable = false,
|
||||||
liquid_range = 0,
|
liquid_range = 0,
|
||||||
walkable = false,
|
walkable = false,
|
||||||
|
@ -100,3 +100,12 @@ minetest.register_node("mobs:cobweb", {
|
||||||
sounds = default.node_sound_leaves_defaults(),
|
sounds = default.node_sound_leaves_defaults(),
|
||||||
})
|
})
|
||||||
|
|
||||||
|
-- Spider Cobweb craft
|
||||||
|
minetest.register_craft( {
|
||||||
|
output = "mobs:spider_cobweb",
|
||||||
|
recipe = {
|
||||||
|
{ "farming:string", "", "farming:string" },
|
||||||
|
{ "", "farming:string", "" },
|
||||||
|
{ "farming:string", "", "farming:string" }
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
Loading…
Reference in New Issue
Block a user