mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2025-12-20 16:55:19 +01:00
Various adaptations on watershed
This commit is contained in:
@@ -4,7 +4,7 @@ minetest.register_alias("watershed:appling", "default:sapling")
|
||||
|
||||
minetest.register_alias("watershed:acaciatree", "moretrees:acacia_tree")
|
||||
|
||||
minetest.register_alias("watershed:acacialeaf", "moretrees:acacia_sapling")
|
||||
minetest.register_alias("watershed:acacialeaf", "moretrees:acacia_leaves")
|
||||
|
||||
minetest.register_alias("watershed:acacialing", "moretrees:acacia_sapling")
|
||||
|
||||
@@ -43,7 +43,7 @@ minetest.register_alias("watershed:stone", "default:stone")
|
||||
minetest.register_alias("watershed:cactus", "default:cactus")
|
||||
|
||||
minetest.register_node("watershed:goldengrass", {
|
||||
description = "Golden grass",
|
||||
description = "Golden Grass",
|
||||
drawtype = "plantlike",
|
||||
tiles = {"watershed_goldengrass.png"},
|
||||
inventory_image = "watershed_goldengrass.png",
|
||||
@@ -61,7 +61,7 @@ minetest.register_node("watershed:goldengrass", {
|
||||
})
|
||||
|
||||
minetest.register_node("watershed:drygrass", {
|
||||
description = "Dry grass",
|
||||
description = "Dry Dirt",
|
||||
tiles = {"watershed_drygrass.png"},
|
||||
is_ground_content = false,
|
||||
groups = {crumbly=1,soil=1},
|
||||
@@ -102,7 +102,9 @@ minetest.register_node("watershed:freshice", {
|
||||
sounds = default.node_sound_glass_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_node("watershed:cloud", {
|
||||
minetest.register_alias("watershed:cloud", "default:cloud")
|
||||
|
||||
minetest.override_item("default:cloud", {
|
||||
description = "Cloud",
|
||||
drawtype = "glasslike",
|
||||
tiles = {"watershed_cloud.png"},
|
||||
@@ -141,159 +143,17 @@ minetest.register_alias("watershed:pinewood", "default:pinewood")
|
||||
|
||||
|
||||
|
||||
minetest.register_node("watershed:freshwater", {
|
||||
description = "Freshwater source",
|
||||
inventory_image = minetest.inventorycube("watershed_freshwater.png"),
|
||||
drawtype = "liquid",
|
||||
tiles = {
|
||||
{
|
||||
name="watershed_freshwateranim.png",
|
||||
animation={type="vertical_frames",
|
||||
aspect_w=16, aspect_h=16, length=2.0}
|
||||
}
|
||||
},
|
||||
special_tiles = {
|
||||
{
|
||||
name="watershed_freshwateranim.png",
|
||||
animation={type="vertical_frames",
|
||||
aspect_w=16, aspect_h=16, length=2.0},
|
||||
backface_culling = false,
|
||||
}
|
||||
},
|
||||
alpha = WATER_ALPHA,
|
||||
paramtype = "light",
|
||||
is_ground_content = false,
|
||||
walkable = false,
|
||||
pointable = false,
|
||||
diggable = false,
|
||||
buildable_to = true,
|
||||
drop = "",
|
||||
drowning = 1,
|
||||
liquidtype = "source",
|
||||
liquid_alternative_flowing = "watershed:freshwaterflow",
|
||||
liquid_alternative_source = "watershed:freshwater",
|
||||
liquid_viscosity = WATER_VISC,
|
||||
liquid_renewable = false,
|
||||
liquid_range = 2,
|
||||
post_effect_color = {a=64, r=100, g=150, b=200},
|
||||
groups = {water=3, liquid=3, puts_out_fire=1},
|
||||
})
|
||||
minetest.register_alias("watershed:freshwater", "default:river_water_source")
|
||||
|
||||
minetest.register_node("watershed:freshwaterflow", {
|
||||
description = "Flowing freshwater",
|
||||
inventory_image = minetest.inventorycube("watershed_freshwater.png"),
|
||||
drawtype = "flowingliquid",
|
||||
tiles = {"watershed_freshwater.png"},
|
||||
special_tiles = {
|
||||
{
|
||||
image="watershed_freshwaterflowanim.png",
|
||||
backface_culling=false,
|
||||
animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=0.8}
|
||||
},
|
||||
{
|
||||
image="watershed_freshwaterflowanim.png",
|
||||
backface_culling=true,
|
||||
animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=0.8}
|
||||
},
|
||||
},
|
||||
alpha = WATER_ALPHA,
|
||||
paramtype = "light",
|
||||
paramtype2 = "flowingliquid",
|
||||
is_ground_content = false,
|
||||
walkable = false,
|
||||
pointable = false,
|
||||
diggable = false,
|
||||
buildable_to = true,
|
||||
drop = "",
|
||||
drowning = 1,
|
||||
liquidtype = "flowing",
|
||||
liquid_alternative_flowing = "watershed:freshwaterflow",
|
||||
liquid_alternative_source = "watershed:freshwater",
|
||||
liquid_viscosity = WATER_VISC,
|
||||
liquid_renewable = false,
|
||||
liquid_range = 2,
|
||||
post_effect_color = {a=64, r=100, g=150, b=200},
|
||||
groups = {water=3, liquid=3, puts_out_fire=1, not_in_creative_inventory=1},
|
||||
})
|
||||
minetest.register_alias("watershed:freshwaterflow", "default:river_water_flowing")
|
||||
|
||||
minetest.register_alias("watershed:lava", "default:lava_source")
|
||||
|
||||
minetest.register_alias("watershed:lavaflow", "default:lava_flowing")
|
||||
|
||||
minetest.register_node("watershed:mixwater", {
|
||||
description = "Mixed water source",
|
||||
inventory_image = minetest.inventorycube("watershed_mixwater.png"),
|
||||
drawtype = "liquid",
|
||||
tiles = {
|
||||
{
|
||||
name="watershed_mixwateranim.png",
|
||||
animation={type="vertical_frames",
|
||||
aspect_w=16, aspect_h=16, length=2.0}
|
||||
}
|
||||
},
|
||||
special_tiles = {
|
||||
{
|
||||
name="watershed_mixwateranim.png",
|
||||
animation={type="vertical_frames",
|
||||
aspect_w=16, aspect_h=16, length=2.0},
|
||||
backface_culling = false,
|
||||
}
|
||||
},
|
||||
alpha = WATER_ALPHA,
|
||||
paramtype = "light",
|
||||
is_ground_content = false,
|
||||
walkable = false,
|
||||
pointable = false,
|
||||
diggable = false,
|
||||
buildable_to = true,
|
||||
drop = "",
|
||||
drowning = 1,
|
||||
liquidtype = "source",
|
||||
liquid_alternative_flowing = "watershed:mixwaterflow",
|
||||
liquid_alternative_source = "watershed:mixwater",
|
||||
liquid_viscosity = WATER_VISC,
|
||||
liquid_renewable = false,
|
||||
liquid_range = 2,
|
||||
post_effect_color = {a=64, r=100, g=120, b=200},
|
||||
groups = {water=3, liquid=3, puts_out_fire=1},
|
||||
})
|
||||
minetest.register_alias("watershed:mixwater", "default:river_water_source")
|
||||
|
||||
minetest.register_node("watershed:mixwaterflow", {
|
||||
description = "Flowing mixed water",
|
||||
inventory_image = minetest.inventorycube("watershed_mixwater.png"),
|
||||
drawtype = "flowingliquid",
|
||||
tiles = {"watershed_mixwater.png"},
|
||||
special_tiles = {
|
||||
{
|
||||
image="watershed_mixwaterflowanim.png",
|
||||
backface_culling=false,
|
||||
animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=0.8}
|
||||
},
|
||||
{
|
||||
image="watershed_mixwaterflowanim.png",
|
||||
backface_culling=true,
|
||||
animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=0.8}
|
||||
},
|
||||
},
|
||||
alpha = WATER_ALPHA,
|
||||
paramtype = "light",
|
||||
paramtype2 = "flowingliquid",
|
||||
is_ground_content = false,
|
||||
walkable = false,
|
||||
pointable = false,
|
||||
diggable = false,
|
||||
buildable_to = true,
|
||||
drop = "",
|
||||
drowning = 1,
|
||||
liquidtype = "flowing",
|
||||
liquid_alternative_flowing = "watershed:mixwaterflow",
|
||||
liquid_alternative_source = "watershed:mixwater",
|
||||
liquid_viscosity = WATER_VISC,
|
||||
liquid_renewable = false,
|
||||
liquid_range = 2,
|
||||
post_effect_color = {a=64, r=100, g=120, b=200},
|
||||
groups = {water=3, liquid=3, puts_out_fire=1, not_in_creative_inventory=1},
|
||||
})
|
||||
minetest.register_alias("watershed:mixwaterflow", "default:river_water_flowing")
|
||||
|
||||
-- Items
|
||||
|
||||
@@ -340,16 +200,10 @@ bucket.register_liquid(
|
||||
"watershed:freshwaterflow",
|
||||
"watershed:bucket_freshwater",
|
||||
"watershed_bucketfreshwater.png",
|
||||
"WS Fresh Water Bucket"
|
||||
"River Water Bucket"
|
||||
)
|
||||
|
||||
bucket.register_liquid(
|
||||
"watershed:lava",
|
||||
"watershed:lavaflow",
|
||||
"watershed:bucket_lava",
|
||||
"bucket_lava.png",
|
||||
"WS Lava Bucket"
|
||||
)
|
||||
minetest.register_alias("watershed:bucket_lava", "bucket:bucket_lava")
|
||||
|
||||
-- Fuel
|
||||
|
||||
@@ -359,19 +213,3 @@ minetest.register_craft({
|
||||
burntime = 60,
|
||||
replacements = {{"watershed:bucket_lava", "bucket:bucket_empty"}},
|
||||
})
|
||||
|
||||
-- Register stairs and slabs
|
||||
|
||||
stairs.register_stair_and_slab("acaciawood", "watershed:acaciawood",
|
||||
{snappy=2,choppy=2,oddly_breakable_by_hand=2,flammable=3},
|
||||
{"watershed_acaciawood.png"},
|
||||
"Acaciawood stair",
|
||||
"Acaciawood slab",
|
||||
default.node_sound_wood_defaults())
|
||||
|
||||
stairs.register_stair_and_slab("pinewood", "watershed:pinewood",
|
||||
{snappy=2,choppy=2,oddly_breakable_by_hand=2,flammable=3},
|
||||
{"watershed_pinewood.png"},
|
||||
"Pinewood stair",
|
||||
"Pinewood slab",
|
||||
default.node_sound_wood_defaults())
|
||||
|
||||
Reference in New Issue
Block a user