added new machine, updated readme.

master
NathanSalapat 2015-05-06 13:36:47 -05:00
parent 1eea691cf2
commit d9e94e6e92
10 changed files with 1553 additions and 1946 deletions

View File

@ -14,21 +14,22 @@ local amount3 = {}
minetest.register_node('mylandscaping:mixer', {
description = 'concrete mixer',
drawtype = 'mesh',
mesh = 'mylandscaping_sphere.obj',
tiles = {"mylandscaping_concrete.png"},
mesh = 'mylandscaping_crusher.obj',
tiles = {
{name='mylandscaping_tex1.png'},{name='mylandscaping_supports.png'},{name='mylandscaping_base.png'},{name='mylandscaping_hopper.png'},{name='mylandscaping_crusher.png'}},
groups = {oddly_breakable_by_hand=2},
paramtype = 'light',
paramtype2 = 'facedir',
selection_box = {
type = 'fixed',
fixed = {
{-0.5, -0.5, -0.5, 0.5, 0.5, 0.5},
{-0.5, -0.5, -0.5, 1.5, 1.5, 0.5},
}
},
collision_box = {
type = 'fixed',
fixed = {
{-0.5, -0.5, -0.5, 0.5, 0.5, 0.5},
{-0.5, -0.5, -0.5, 1.5, 1.5, 0.5},
}
},

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -13,21 +13,22 @@ local amount3 = {}
minetest.register_node('mylandscaping:mixer', {
description = 'concrete mixer',
drawtype = 'mesh',
mesh = 'mylandscaping_sphere.obj',
tiles = {"myconcrete_concrete.png"},
mesh = 'mylandscaping_crusher.obj',
tiles = {
{name='mylandscaping_tex1.png'},{name='mylandscaping_supports.png'},{name='mylandscaping_base.png'},{name='mylandscaping_hopper.png'},{name='mylandscaping_crusher.png'}},
groups = {oddly_breakable_by_hand=2},
paramtype = 'light',
paramtype2 = 'facedir',
selection_box = {
type = 'fixed',
fixed = {
{-0.5, -0.5, -0.5, 0.5, 0.5, 0.5},
{-0.5, -0.5, -0.5, 1.5, 1.5, 0.5},
}
},
collision_box = {
type = 'fixed',
fixed = {
{-0.5, -0.5, -0.5, 0.5, 0.5, 0.5},
{-0.5, -0.5, -0.5, 1.5, 1.5, 0.5},
}
},

View File

@ -1,5 +1,5 @@
# Mod Contributors
Natan
Nathan
Don
# mylandscaping
@ -13,3 +13,4 @@ This is a Minetest mod that adds retaining walls and column nodes.
## Dependencies
- default
- bucket

View File

@ -1,22 +1,22 @@
minetest.register_craft({
output = 'mylandscaping:machine',
output = 'mylandscaping:machine 1',
recipe = {
{'default:shovel_steel', 'bucket:bucket_with_water', ''},
{'default:steel_ingot', 'mylandscaping:cement_bag', 'default:steel_ingot'},
{'default:shovel_steel', 'bucket:bucket_water', ''},
{'default:steel_ingot', 'mylandscaping:concrete_bag', 'default:steel_ingot'},
{'default:steel_ingot', 'default:steel_ingot', 'default:steel_ingot'},
}
})
--[[minetest.register_craft({
output = 'mylandscaping:conretemachine',
minetest.register_craft({
output = 'mylandscaping:mixer 1',
recipe = {
{'', '', ''},
{'', '', ''},
{'', '', ''},
{'default:pick_steel', 'default:paper', 'default:chest'},
{'group:stick', 'default:paper', 'group:stick'},
{'default:steel_ingot', 'default:steel_ingot', 'default:steel_ingot'},
}
})--]]
})
minetest.register_craftitem('mylandscaping:concrete_bag', {
description = 'Bag of Concrete Mix',
description = 'Bag of Concrete hgsd Mix',
inventory_image = 'mylandscaping_cement_bag.png',
})

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB