diff --git a/init.lua b/init.lua index 5b05421..8fd7a2e 100644 --- a/init.lua +++ b/init.lua @@ -1019,3 +1019,16 @@ if minetest.get_modpath("farming")~=nil then } }) end + + +if minetest.get_modpath("bucket")~=nil then + bucket.register_liquid( + "swaz:water_source", + "swaz:water_flowing", + "swaz:bucket_swampy_water", + "swaz_swampy_water.png", + S("Swampy Water Bucket"), + {tool = 1, water_bucket = 1}, + true + ) +end diff --git a/locale/swaz.es.tr b/locale/swaz.es.tr index de97b00..7c82169 100644 --- a/locale/swaz.es.tr +++ b/locale/swaz.es.tr @@ -33,3 +33,4 @@ Barberry Bush Leaves=Hojas de agracejo Barberry Bush Sapling=RetoƱo de agracejo Iris=Iris flower=flor +Swampy Water Bucket=Cubo de agua fangosa diff --git a/mod.conf b/mod.conf index 932ff38..d4ddd2a 100644 --- a/mod.conf +++ b/mod.conf @@ -1,3 +1,3 @@ name = swaz depends = default, flowers, baldcypress, willow, farming, dye -optional_depends = stairs, basic_materials, farming +optional_depends = stairs, basic_materials, farming, bucket diff --git a/textures/bucket_swampy_water.png b/textures/bucket_swampy_water.png new file mode 100644 index 0000000..b1d9c04 Binary files /dev/null and b/textures/bucket_swampy_water.png differ diff --git a/textures/swaz_swampy_water.png b/textures/swaz_swampy_water.png new file mode 100644 index 0000000..d634b85 Binary files /dev/null and b/textures/swaz_swampy_water.png differ