second commit

master
ak399 2013-09-08 17:09:37 -04:00
parent c1998c5699
commit d18696dd06
63 changed files with 149 additions and 0 deletions

2
depends.txt Normal file
View File

@ -0,0 +1,2 @@
default
moreores

141
init.lua Normal file
View File

@ -0,0 +1,141 @@
--ithildin node
minetest.register_node("ithildin:ithildin_0", {
description = "Ithildin",
tiles = { 'ithildin_0.png' },
inventory_image = ("ithildin_1.png"),
drawtype = 'glasslike',
walkable = false,
pointable = false,
sunlight_propagates = true,
drop = "ithildin:ithildin_0",
groups = {snappy=2,cracky=3},
sounds = default.node_sound_glass_defaults(),
furnace_burntime = 4,
})
minetest.register_node("ithildin:ithildin_1", {
description = "Ithildin",
tiles = { 'ithildin_1.png' },
drawtype = 'glasslike',
walkable = true,
pointable = true,
sunlight_propagates = true,
light_source = 8,
drop = "ithildin:ithildin_0",
groups = {snappy=2,cracky=3},
sounds = default.node_sound_glass_defaults(),
furnace_burntime = 4,
})
--ithildin_stone node
minetest.register_node("ithildin:ithildin_stone_0", {
description = "Ithildin Stone",
tiles = {"ithildin_stone_0.png"},
inventory_image = ("ithildin_stone_1.png"),
drawtype = 'normal',
-- post_effect_color = {a=191, r=0, g=0, b=127}
walkable = true,
pointable = true,
sunlight_propagates = false,
drop = "ithildin:ithildin_stone_0",
groups = {snappy=2,cracky=3},
sounds = default.node_sound_glass_defaults(),
furnace_burntime = 4,
})
minetest.register_node("ithildin:ithildin_stone_1", {
description = "Ithildin Stone",
tiles = { 'ithildin_stone_1.png' },
drawtype = 'normal',
-- post_effect_color = { r=0, g=0, b=127, a=191 }
walkable = false,
pointable = true,
sunlight_propagates = true,
light_source = 8,
drop = "ithildin:ithildin_stone_0",
groups = {snappy=2,cracky=3},
sounds = default.node_sound_glass_defaults(),
furnace_burntime = 4,
})
--craft
minetest.register_craft({
output = "ithildin:ithildin_0",
recipe = {
{"default:torch", "moreores:mithril_ingot", "default:torch"},
{"default:glass", "", "default:glass"},
{"default:torch", "moreores:mithril_ingot", "default:torch"},
},
})
minetest.register_craft({
output = "ithildin:ithildin_stone_0",
recipe = {
{"ithildin:ithildin_0"},
{"default:stone"},
},
})
minetest.register_craft({
output = "ithildin:ithildin_0",
recipe = {
{"ithildin:ithildin_stone_0"},
},
replacement = {
{"default:stone"},
},
})
--ithildin function
minetest.register_abm(
{nodenames = {"ithildin:ithildin_1"},
interval = 1,
chance = 1,
action = function(pos, node, active_object_count, active_object_count_wider)
if minetest.env:get_timeofday() > 0.2 and minetest.env:get_timeofday() < 0.8
then
minetest.env:set_node(pos, {name="ithildin:ithildin_0"})
end
end,
})
minetest.register_abm(
{nodenames = {"ithildin:ithildin_0"},
interval = 1,
chance = 1,
action = function(pos, node, active_object_count, active_object_count_wider)
if minetest.env:get_timeofday() < 0.2 or minetest.env:get_timeofday() > 0.8
then
minetest.env:set_node(pos, {name="ithildin:ithildin_1"})
end
end,
})
--ithildin_stone function
minetest.register_abm(
{nodenames = {"ithildin:ithildin_stone_1"},
interval = 1,
chance = 1,
action = function(pos, node, active_object_count, active_object_count_wider)
if minetest.env:get_timeofday() > 0.2 and minetest.env:get_timeofday() < 0.8
then
minetest.env:set_node(pos, {name="ithildin:ithildin_stone_0"})
end
end,
})
minetest.register_abm(
{nodenames = {"ithildin:ithildin_stone_0"},
interval = 1,
chance = 1,
action = function(pos, node, active_object_count, active_object_count_wider)
if minetest.env:get_timeofday() < 0.2 or minetest.env:get_timeofday() > 0.8
then
minetest.env:set_node(pos, {name="ithildin:ithildin_stone_1"})
end
end,
})

5
license.txt Normal file
View File

@ -0,0 +1,5 @@
ak399's Ithildin Mod (quasi-fork of fishyWET's Lord of the Test mod)
===
All code in this project is licensed under the LGPL version 3 or later. That means you have unlimited freedom to distribute and modify the work however you see fit, provided that if you decide to distribute it or any modified versions of it, you must also use the same license. The LGPL also grants the additional freedom to write extensions for the software and distribute them without the extensions being subject to the terms of the LGPL, although the software itself retains its license.

1
readme.txt Normal file
View File

@ -0,0 +1 @@
rename the folder to ithildin to get it to work.

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 637 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 500 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 500 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 637 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 637 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 637 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 637 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 637 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 500 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 500 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 637 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 637 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 637 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 637 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 637 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 637 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 469 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 558 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 558 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 934 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 934 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 934 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 934 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 934 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 558 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 558 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 934 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 934 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 934 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 934 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 934 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 934 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 597 B

BIN
textures/ithildin_0.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 500 B

BIN
textures/ithildin_1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 708 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 558 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 934 B