add oranges

master
tchncs 2016-05-22 09:22:25 +02:00
parent c2135919d1
commit 6c590ce10d
9 changed files with 84 additions and 1 deletions

View File

@ -72,6 +72,7 @@ dofile(farming.path.."/rhubarb.lua")
dofile(farming.path.."/beanpole.lua")
dofile(farming.path.."/grapes.lua")
dofile(farming.path.."/barley.lua")
dofile(farming.path.."/oranges.lua")
dofile(farming.path.."/donut.lua")
dofile(farming.path.."/mapgen.lua")
dofile(farming.path.."/compatibility.lua") -- Farming Plus compatibility

82
oranges.lua Normal file
View File

@ -0,0 +1,82 @@
minetest.register_craftitem("farming:orange_seed", {
description = "Orange Seeds",
inventory_image = "farming_orange_seed.png",
on_place = function(itemstack, placer, pointed_thing)
return farming.place_seed(itemstack, placer, pointed_thing, "farming:orange_1")
end
})
minetest.register_node("farming:orange_1", {
paramtype = "light",
walkable = false,
drawtype = "plantlike",
drop = "",
tiles = {"farming_orange_1.png"},
selection_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, -0.5, 0.5, -0.5+3/16, 0.5}
},
},
groups = {snappy=3, flammable=2, not_in_creative_inventory=1,plant=1},
sounds = default.node_sound_leaves_defaults(),
})
minetest.register_node("farming:orange_2", {
paramtype = "light",
walkable = false,
drawtype = "plantlike",
drop = "",
tiles = {"farming_orange_2.png"},
selection_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, -0.5, 0.5, -0.5+8/16, 0.5}
},
},
groups = {snappy=3, flammable=2, not_in_creative_inventory=1,plant=1},
sounds = default.node_sound_leaves_defaults(),
})
minetest.register_node("farming:orange_3", {
paramtype = "light",
walkable = false,
drawtype = "plantlike",
drop = "",
tiles = {"farming_orange_3.png"},
selection_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, -0.5, 0.5, -0.5+14/16, 0.5}
},
},
groups = {snappy=3, flammable=2, not_in_creative_inventory=1,plant=1},
sounds = default.node_sound_leaves_defaults(),
})
minetest.register_node("farming:orange", {
paramtype = "light",
walkable = false,
drawtype = "plantlike",
tiles = {"farming_orange_4.png"},
drop = {
max_items = 6,
items = {
{ items = {'farming:orange_seed'} },
{ items = {'farming:orange_seed'}, rarity = 2},
{ items = {'farming:orange_seed'}, rarity = 5},
{ items = {'farming:orange_item'} },
{ items = {'farming:orange_item'}, rarity = 2 },
{ items = {'farming:orange_item'}, rarity = 5 }
}
},
groups = {snappy=3, flammable=2, not_in_creative_inventory=1,plant=1},
sounds = default.node_sound_leaves_defaults(),
})
minetest.register_craftitem("farming:orange_item", {
description = "Orange",
inventory_image = "farming_orange.png",
on_use = minetest.item_eat(4),
})

BIN
textures/farming_orange.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 544 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 108 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 193 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 451 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 460 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 281 B

View File

@ -1,7 +1,7 @@
* [ ] orange trees from farming_plus
* [x] banana trees from farming_plus
* [x] carrot_seed
* [ ] orange_seed
* [x] orange_seed
* [x] tomato_seed
* [x] potatoe_seed
* [x] rhubarb_seed