summaryrefslogtreecommitdiff
path: root/framedglass
diff options
context:
space:
mode:
authorVanessa Ezekowitz <vanessaezekowitz@gmail.com>2018-02-13 14:05:34 -0500
committerVanessa Ezekowitz <vanessaezekowitz@gmail.com>2018-02-13 14:05:34 -0500
commit335d9a3eddcb590c3ca5de9cba9b152e5e560af1 (patch)
tree1b95d73b945fbc9924438c28a35d7f1019fa255f /framedglass
parent1d0f113f4c5afcf8479973f2e01786fb9a1fbbb7 (diff)
downloaddreambuilder_modpack-335d9a3eddcb590c3ca5de9cba9b152e5e560af1.tar
dreambuilder_modpack-335d9a3eddcb590c3ca5de9cba9b152e5e560af1.tar.gz
dreambuilder_modpack-335d9a3eddcb590c3ca5de9cba9b152e5e560af1.tar.bz2
dreambuilder_modpack-335d9a3eddcb590c3ca5de9cba9b152e5e560af1.tar.xz
dreambuilder_modpack-335d9a3eddcb590c3ca5de9cba9b152e5e560af1.zip
removed boost_cart and carbone_mobs -- too many crashes
updated blox, homedecor, plantlifed, cottages, farming_redo, framedglass, gloopblocks, mesecons, moreblocks, moretrees, pipeworks, player_textures, replacer, signs_lib, stained_glass, technic, travelnet, unified_inventory, unifieddyes, and worldedit.
Diffstat (limited to 'framedglass')
-rw-r--r--framedglass/README.md14
-rw-r--r--framedglass/init.lua44
2 files changed, 36 insertions, 22 deletions
diff --git a/framedglass/README.md b/framedglass/README.md
new file mode 100644
index 0000000..88d3132
--- /dev/null
+++ b/framedglass/README.md
@@ -0,0 +1,14 @@
+Framed Glass
+============
+
+Framed glass adds glass nodes with a frame that connects automatically to neighbouring nodes.
+
+License
+=======
+
+Copyright (C) 2013 Maciej Kasatkin (RealBadAngel) and contributors.
+
+All code and textures are licensed under the GNU LGPLv2+.
+
+Credits for contributing:
+ * VanessaE \ No newline at end of file
diff --git a/framedglass/init.lua b/framedglass/init.lua
index 06b4472..d42a07b 100644
--- a/framedglass/init.lua
+++ b/framedglass/init.lua
@@ -39,7 +39,7 @@ minetest.register_craft({
})
minetest.register_node("framedglass:wooden_framed_glass", {
- description = "Деревянное окно",
+ description = "Wooden-framed Glass",
drawtype = "glasslike_framed",
tiles = {"framedglass_wooden_frame.png","framedglass_glass_face_streaks.png"},
paramtype = "light",
@@ -49,7 +49,7 @@ minetest.register_node("framedglass:wooden_framed_glass", {
})
minetest.register_node("framedglass:steel_framed_glass", {
- description = "Стальное окно",
+ description = "Steel-framed Glass",
drawtype = "glasslike_framed",
tiles = {"framedglass_steel_frame.png","framedglass_glass_face_streaks.png"},
paramtype = "light",
@@ -59,7 +59,7 @@ minetest.register_node("framedglass:steel_framed_glass", {
})
minetest.register_node("framedglass:wooden_framed_obsidian_glass", {
- description = "Деревянное окно с обсидиановым стеклом",
+ description = "Wooden-framed Obsidian Glass",
drawtype = "glasslike_framed",
tiles = {"framedglass_wooden_frame.png","framedglass_glass_face_clean.png"},
paramtype = "light",
@@ -164,7 +164,7 @@ local return_dye_after_dig = function(pos, oldnode, oldmetadata, digger)
end
minetest.register_node("framedglass:steel_framed_obsidian_glass", {
- description = "Стальное окно с обсидиановым стеклом",
+ description = "Steel-framed Obsidian Glass",
drawtype = "glasslike_framed",
tiles = {"framedglass_steel_frame.png","framedglass_glass_face_clean.png"},
paramtype = "light",
@@ -177,7 +177,7 @@ minetest.register_node("framedglass:steel_framed_obsidian_glass", {
function add_coloured_framedglass(name, desc, color)
minetest.register_node( "framedglass:steel_framed_obsidian_glass"..name, {
- description = "Стальное окно с "..desc.." обсидиановым стеклом",
+ description = "Steel-framed "..desc.." Obsidian Glass",
tiles = {
"framedglass_steel_frame.png",
{ name = "framedglass_whiteglass.png", color = color }
@@ -195,20 +195,20 @@ function add_coloured_framedglass(name, desc, color)
})
end
-add_coloured_framedglass ("red", "красным", 0xffff0000)
-add_coloured_framedglass ("orange", "оранжевым", 0xfffe7f00)
-add_coloured_framedglass ("yellow", "жёлтым", 0xffffff01)
-add_coloured_framedglass ("green", "зелёным", 0xff0cff00)
-add_coloured_framedglass ("cyan", "голубым", 0xff7affff)
-add_coloured_framedglass ("blue", "синим", 0xff1600ff)
-add_coloured_framedglass ("violet", "фиолетовым", 0xff7d00ff)
-add_coloured_framedglass ("magenta", "пурпурным", 0xfffd05ff)
-
-add_coloured_framedglass ("darkgreen", "тёмно-зелёным", 0xff144f00)
-add_coloured_framedglass ("pink", "розовым", 0xffffa4a4)
-add_coloured_framedglass ("brown", "коричневым", 0xff542a00)
-
-add_coloured_framedglass ("white", "белым", 0xffffffff)
-add_coloured_framedglass ("grey", "серым", 0xff7f817e)
-add_coloured_framedglass ("darkgrey", "тёмно-серым", 0xff3f403e)
-add_coloured_framedglass ("black", "чёрным", 0xff000000)
+add_coloured_framedglass ("red", "Red", 0xffff0000)
+add_coloured_framedglass ("orange", "Orange", 0xfffe7f00)
+add_coloured_framedglass ("yellow", "Yellow", 0xffffff01)
+add_coloured_framedglass ("green", "Green", 0xff0cff00)
+add_coloured_framedglass ("cyan", "Cyan", 0xff7affff)
+add_coloured_framedglass ("blue", "Blue", 0xff1600ff)
+add_coloured_framedglass ("violet", "Violet", 0xff7d00ff)
+add_coloured_framedglass ("magenta", "Magenta", 0xfffd05ff)
+
+add_coloured_framedglass ("darkgreen", "Dark Green", 0xff144f00)
+add_coloured_framedglass ("pink", "Pink", 0xffffa4a4)
+add_coloured_framedglass ("brown", "Brown", 0xff542a00)
+
+add_coloured_framedglass ("white", "White", 0xffffffff)
+add_coloured_framedglass ("grey", "Grey", 0xff7f817e)
+add_coloured_framedglass ("darkgrey", "Dark Grey", 0xff3f403e)
+add_coloured_framedglass ("black", "Black", 0xff000000)