diff --git a/mods/shit_poop/init.lua b/mods/shit_poop/init.lua index d89a520..c44dbd3 100644 --- a/mods/shit_poop/init.lua +++ b/mods/shit_poop/init.lua @@ -362,6 +362,17 @@ minetest.register_node("poop:flux_capacitor", { drop = 'poop:Poop', groups = {cracky=3, stone=1}, }) + +minetest.register_node("poop:transparent", { + description = "Transparent", + drawtype = "glasslike", + tiles = {"transparent.png"}, + paramtype = "light", + is_ground_content = false, + sunlight_propagates = true, + sounds = default.node_sound_glass_defaults(), + groups = {cracky=3,oddly_breakable_by_hand=3}, +}) minetest.register_alias("mapgen_stone", "poop:floor") local pooped_things = 0 diff --git a/mods/shit_poop/textures/1.png b/mods/shit_poop/textures/1.png index 276f50b..f7a70d3 100644 Binary files a/mods/shit_poop/textures/1.png and b/mods/shit_poop/textures/1.png differ diff --git a/mods/shit_poop/textures/destruction_counter_meter_empty.png b/mods/shit_poop/textures/destruction_counter_meter_empty.png deleted file mode 100644 index ab77b8f..0000000 Binary files a/mods/shit_poop/textures/destruction_counter_meter_empty.png and /dev/null differ diff --git a/mods/shit_poop/textures/destruction_counter_meter_full.png b/mods/shit_poop/textures/destruction_counter_meter_full.png deleted file mode 100644 index 65891df..0000000 Binary files a/mods/shit_poop/textures/destruction_counter_meter_full.png and /dev/null differ diff --git a/mods/shit_poop/textures/shit_count.png b/mods/shit_poop/textures/shit_count.png new file mode 100644 index 0000000..96e6fe5 Binary files /dev/null and b/mods/shit_poop/textures/shit_count.png differ diff --git a/mods/shit_poop/textures/shit_count1.png b/mods/shit_poop/textures/shit_count1.png new file mode 100644 index 0000000..123770d Binary files /dev/null and b/mods/shit_poop/textures/shit_count1.png differ diff --git a/mods/shit_poop/textures/transparent.png b/mods/shit_poop/textures/transparent.png new file mode 100644 index 0000000..53cde52 Binary files /dev/null and b/mods/shit_poop/textures/transparent.png differ