Initial Commit

master
D00Med 2017-07-17 13:17:05 +10:00
parent c0ddbe9d42
commit a43a0ae357
14 changed files with 158 additions and 0 deletions

1
depends.txt Normal file
View File

@ -0,0 +1 @@
default

1
description.txt Normal file
View File

@ -0,0 +1 @@
Adds fruit to trees

132
init.lua Normal file
View File

@ -0,0 +1,132 @@
minetest.register_node("fruit:leaves_with_pear", {
description = "Leaves with Pear",
drawtype = "allfaces",
tiles = {
"default_leaves.png^fruit_pear_leaves.png",
},
paramtype = "light",
groups = {snappy=1, oddly_breakeable_by_hand=1, not_in_creative_inventory=1},
drop = "default:leaves",
on_destruct = function(pos)
minetest.add_item(pos, "fruit:pear")
end,
sounds = default.node_sound_leaves_defaults()
})
minetest.register_node("fruit:leaves_with_plum", {
description = "Leaves with Plum",
drawtype = "allfaces",
tiles = {
"default_leaves.png^fruit_plum_leaves.png",
},
paramtype = "light",
groups = {snappy=1, oddly_breakeable_by_hand=1, not_in_creative_inventory=1},
drop = "default:leaves",
on_destruct = function(pos)
minetest.add_item(pos, "fruit:plum")
end,
sounds = default.node_sound_leaves_defaults()
})
minetest.register_node("fruit:leaves_with_peach", {
description = "Leaves with Peach",
drawtype = "allfaces",
tiles = {
"default_leaves.png^fruit_peach_leaves.png",
},
paramtype = "light",
groups = {snappy=1, oddly_breakeable_by_hand=1, not_in_creative_inventory=1},
drop = "default:leaves",
on_destruct = function(pos)
minetest.add_item(pos, "fruit:peach")
end,
sounds = default.node_sound_leaves_defaults()
})
minetest.register_node("fruit:leaves_with_orange", {
description = "Leaves with Orange",
drawtype = "allfaces",
tiles = {
"default_acacia_leaves.png^fruit_orange_leaves.png",
},
paramtype = "light",
groups = {snappy=1, oddly_breakeable_by_hand=1, not_in_creative_inventory=1},
drop = "default:acacia_leaves",
on_destruct = function(pos)
minetest.add_item(pos, "fruit:orange")
end,
sounds = default.node_sound_leaves_defaults()
})
minetest.register_craftitem("fruit:pear", {
description = "Pear",
inventory_image = "fruit_pear.png",
on_use = minetest.item_eat(2)
})
minetest.register_craftitem("fruit:plum", {
description = "Plum",
inventory_image = "fruit_plum.png",
on_use = minetest.item_eat(1)
})
minetest.register_craftitem("fruit:peach", {
description = "Peach",
inventory_image = "fruit_peach.png",
on_use = minetest.item_eat(2)
})
minetest.register_craftitem("fruit:orange", {
description = "Orange",
inventory_image = "fruit_orange.png",
on_use = minetest.item_eat(2)
})
fruit = {}
function fruit.register_ores()
minetest.register_ore({
ore_type = "blob",
ore = "fruit:leaves_with_orange",
wherein = "default:acacia_leaves",
clust_scarcity = 15 * 15 * 15,
clust_num_ores = 6,
clust_size = 5,
y_min = 0,
y_max = 31000,
})
minetest.register_ore({
ore_type = "blob",
ore = "fruit:leaves_with_peach",
wherein = "default:leaves",
clust_scarcity = 15 * 15 * 15,
clust_num_ores = 6,
clust_size = 5,
y_min = 0,
y_max = 31000,
})
minetest.register_ore({
ore_type = "blob",
ore = "fruit:leaves_with_pear",
wherein = "default:leaves",
clust_scarcity = 15 * 15 * 15,
clust_num_ores = 6,
clust_size = 5,
y_min = 0,
y_max = 31000,
})
minetest.register_ore({
ore_type = "blob",
ore = "fruit:leaves_with_plum",
wherein = "default:leaves",
clust_scarcity = 15 * 15 * 15,
clust_num_ores = 6,
clust_size = 5,
y_min = 0,
y_max = 31000,
})
end

24
license.txt Normal file
View File

@ -0,0 +1,24 @@
License for Code
----------------
Copyright (C) 2017 D00Med <heiselong@gmx.com>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
License for Textures, Models and Sounds
---------------------------------------
CC-BY-SA 3.0 UNPORTED. Created by D00Med

BIN
screenshot.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 856 B

BIN
screenshot2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

BIN
textures/fruit_orange.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 399 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 187 B

BIN
textures/fruit_peach.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 471 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 185 B

BIN
textures/fruit_pear.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 428 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 234 B

BIN
textures/fruit_plum.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 332 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 187 B