1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2025-06-28 14:16:06 +02:00

Updated homedecor

This commit is contained in:
LeMagnesium
2015-05-15 13:18:20 +02:00
parent 405afef5a0
commit a363690ff7
852 changed files with 13519 additions and 6231 deletions

View File

@ -1,3 +1,3 @@
default
intllib?
screwdriver?

View File

@ -12,6 +12,20 @@
signs_lib = {}
local screwdriver = screwdriver or {}
signs_lib.wallmounted_rotate = function(pos, node, user, mode, new_param2)
if mode ~= screwdriver.ROTATE_AXIS then return false end
minetest.swap_node(pos, {name = node.name, param2 = (node.param2 + 1) % 6})
for _, v in ipairs(minetest.get_objects_inside_radius(pos, 0.5)) do
local e = v:get_luaentity()
if e and e.name == "signs:text" then
v:remove()
end
end
signs_lib.update_sign(pos)
return true
end
signs_lib.modpath = minetest.get_modpath("signs_lib")
signs_lib.regular_wall_sign_model = {
@ -697,6 +711,7 @@ minetest.register_node(":default:sign_wall", {
on_punch = function(pos, node, puncher)
signs_lib.update_sign(pos)
end,
on_rotate = signs_lib.wallmounted_rotate
})
minetest.register_node(":signs:sign_yard", {
@ -831,6 +846,7 @@ minetest.register_node(":locked_sign:sign_wall_locked", {
return pname == owner or pname == minetest.setting_get("name")
or minetest.check_player_privs(pname, {sign_editor=true})
end,
on_rotate = signs_lib.wallmounted_rotate
})
-- metal, colored signs

View File

Before

Width:  |  Height:  |  Size: 81 KiB

After

Width:  |  Height:  |  Size: 81 KiB

0
mods/homedecor_modpack/signs_lib/textures/hdf_20.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 67 B

After

Width:  |  Height:  |  Size: 67 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_21.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 83 B

After

Width:  |  Height:  |  Size: 83 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_22.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 83 B

After

Width:  |  Height:  |  Size: 83 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_23.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 97 B

After

Width:  |  Height:  |  Size: 97 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_24.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 112 B

After

Width:  |  Height:  |  Size: 112 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_25.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 125 B

After

Width:  |  Height:  |  Size: 125 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_26.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 120 B

After

Width:  |  Height:  |  Size: 120 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_27.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 78 B

After

Width:  |  Height:  |  Size: 78 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_28.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 88 B

After

Width:  |  Height:  |  Size: 88 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_29.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 88 B

After

Width:  |  Height:  |  Size: 88 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_2a.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 90 B

After

Width:  |  Height:  |  Size: 90 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_2b.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 84 B

After

Width:  |  Height:  |  Size: 84 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_2c.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 79 B

After

Width:  |  Height:  |  Size: 79 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_2d.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 77 B

After

Width:  |  Height:  |  Size: 77 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_2e.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 77 B

After

Width:  |  Height:  |  Size: 77 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_2f.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 93 B

After

Width:  |  Height:  |  Size: 93 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_30.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 97 B

After

Width:  |  Height:  |  Size: 97 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_31.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 87 B

After

Width:  |  Height:  |  Size: 87 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_32.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 113 B

After

Width:  |  Height:  |  Size: 113 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_33.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 109 B

After

Width:  |  Height:  |  Size: 109 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_34.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 103 B

After

Width:  |  Height:  |  Size: 103 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_35.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 109 B

After

Width:  |  Height:  |  Size: 109 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_36.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 104 B

After

Width:  |  Height:  |  Size: 104 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_37.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 95 B

After

Width:  |  Height:  |  Size: 95 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_38.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 104 B

After

Width:  |  Height:  |  Size: 104 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_39.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 110 B

After

Width:  |  Height:  |  Size: 110 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_3a.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 77 B

After

Width:  |  Height:  |  Size: 77 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_3b.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 80 B

After

Width:  |  Height:  |  Size: 80 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_3c.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 96 B

After

Width:  |  Height:  |  Size: 96 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_3d.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 80 B

After

Width:  |  Height:  |  Size: 80 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_3e.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 95 B

After

Width:  |  Height:  |  Size: 95 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_3f.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 102 B

After

Width:  |  Height:  |  Size: 102 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_40.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 128 B

After

Width:  |  Height:  |  Size: 128 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_41.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 117 B

After

Width:  |  Height:  |  Size: 117 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_42.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 97 B

After

Width:  |  Height:  |  Size: 97 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_43.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 113 B

After

Width:  |  Height:  |  Size: 113 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_44.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 104 B

After

Width:  |  Height:  |  Size: 104 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_45.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 92 B

After

Width:  |  Height:  |  Size: 92 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_46.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 91 B

After

Width:  |  Height:  |  Size: 91 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_47.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 118 B

After

Width:  |  Height:  |  Size: 118 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_48.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 89 B

After

Width:  |  Height:  |  Size: 89 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_49.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 77 B

After

Width:  |  Height:  |  Size: 77 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_4a.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 91 B

After

Width:  |  Height:  |  Size: 91 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_4b.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 114 B

After

Width:  |  Height:  |  Size: 114 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_4c.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 82 B

After

Width:  |  Height:  |  Size: 82 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_4d.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 108 B

After

Width:  |  Height:  |  Size: 108 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_4e.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 103 B

After

Width:  |  Height:  |  Size: 103 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_4f.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 116 B

After

Width:  |  Height:  |  Size: 116 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_50.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 99 B

After

Width:  |  Height:  |  Size: 99 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_51.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 122 B

After

Width:  |  Height:  |  Size: 122 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_52.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 100 B

After

Width:  |  Height:  |  Size: 100 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_53.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 111 B

After

Width:  |  Height:  |  Size: 111 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_54.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 85 B

After

Width:  |  Height:  |  Size: 85 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_55.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 95 B

After

Width:  |  Height:  |  Size: 95 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_56.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 103 B

After

Width:  |  Height:  |  Size: 103 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_57.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 107 B

After

Width:  |  Height:  |  Size: 107 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_58.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 115 B

After

Width:  |  Height:  |  Size: 115 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_59.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 105 B

After

Width:  |  Height:  |  Size: 105 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_5a.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 108 B

After

Width:  |  Height:  |  Size: 108 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_5b.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 80 B

After

Width:  |  Height:  |  Size: 80 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_5c.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 94 B

After

Width:  |  Height:  |  Size: 94 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_5d.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 80 B

After

Width:  |  Height:  |  Size: 80 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_5e.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 96 B

After

Width:  |  Height:  |  Size: 96 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_5f.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 76 B

After

Width:  |  Height:  |  Size: 76 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_60.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 78 B

After

Width:  |  Height:  |  Size: 78 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_61.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 102 B

After

Width:  |  Height:  |  Size: 102 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_62.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 99 B

After

Width:  |  Height:  |  Size: 99 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_63.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 98 B

After

Width:  |  Height:  |  Size: 98 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_64.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 105 B

After

Width:  |  Height:  |  Size: 105 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_65.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 98 B

After

Width:  |  Height:  |  Size: 98 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_66.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 89 B

After

Width:  |  Height:  |  Size: 89 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_67.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 101 B

After

Width:  |  Height:  |  Size: 101 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_68.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 93 B

After

Width:  |  Height:  |  Size: 93 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_69.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 82 B

After

Width:  |  Height:  |  Size: 82 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_6a.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 83 B

After

Width:  |  Height:  |  Size: 83 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_6b.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 103 B

After

Width:  |  Height:  |  Size: 103 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_6c.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 77 B

After

Width:  |  Height:  |  Size: 77 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_6d.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 99 B

After

Width:  |  Height:  |  Size: 99 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_6e.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 93 B

After

Width:  |  Height:  |  Size: 93 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_6f.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 97 B

After

Width:  |  Height:  |  Size: 97 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_70.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 100 B

After

Width:  |  Height:  |  Size: 100 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_71.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 100 B

After

Width:  |  Height:  |  Size: 100 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_72.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 87 B

After

Width:  |  Height:  |  Size: 87 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_73.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 100 B

After

Width:  |  Height:  |  Size: 100 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_74.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 92 B

After

Width:  |  Height:  |  Size: 92 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_75.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 91 B

After

Width:  |  Height:  |  Size: 91 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_76.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 98 B

After

Width:  |  Height:  |  Size: 98 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_77.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 107 B

After

Width:  |  Height:  |  Size: 107 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_78.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 99 B

After

Width:  |  Height:  |  Size: 99 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_79.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 102 B

After

Width:  |  Height:  |  Size: 102 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_7a.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 95 B

After

Width:  |  Height:  |  Size: 95 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_7b.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 88 B

After

Width:  |  Height:  |  Size: 88 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_7c.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 67 B

After

Width:  |  Height:  |  Size: 67 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_7d.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 87 B

After

Width:  |  Height:  |  Size: 87 B

0
mods/homedecor_modpack/signs_lib/textures/hdf_7e.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 87 B

After

Width:  |  Height:  |  Size: 87 B

View File

Before

Width:  |  Height:  |  Size: 280 B

After

Width:  |  Height:  |  Size: 280 B

View File

Before

Width:  |  Height:  |  Size: 129 B

After

Width:  |  Height:  |  Size: 129 B

Some files were not shown because too many files have changed in this diff Show More