peoposed update for bag recipies
when bags was first created, wool and farming were not in minetest_game, and so that people didnt have a load of dependancies I made the recipe from wood and sticks. now that wool and cotton are available it makes a lot more sense to craft the bags from these items. they are harder to obtain, but bags are valuable items in game, so i think the extra effort to obtain the items is justified.
This commit is contained in:
parent
2d6a0ed606
commit
570d2cb162
18
bags.lua
18
bags.lua
@ -127,27 +127,27 @@ minetest.register_tool("unified_inventory:bag_large", {
|
|||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "unified_inventory:bag_small",
|
output = "unified_inventory:bag_small",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"", "group:stick", ""},
|
{"", "farming:cotton", ""},
|
||||||
{"group:wood", "group:wood", "group:wood"},
|
{"group:wool", "group:wool", "group:wool"},
|
||||||
{"group:wood", "group:wood", "group:wood"},
|
{"group:wool", "group:wool", "group:wool"},
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "unified_inventory:bag_medium",
|
output = "unified_inventory:bag_medium",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"", "", ""},
|
{"", "", ""},
|
||||||
{"group:stick", "unified_inventory:bag_small", "group:stick"},
|
{"farming:cotton", "unified_inventory:bag_small", "farming:cotton"},
|
||||||
{"group:stick", "unified_inventory:bag_small", "group:stick"},
|
{"farming:cotton", "unified_inventory:bag_small", "farming:cotton"},
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "unified_inventory:bag_large",
|
output = "unified_inventory:bag_large",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"", "", ""},
|
{"", "", ""},
|
||||||
{"group:stick", "unified_inventory:bag_medium", "group:stick"},
|
{"farming:cotton", "unified_inventory:bag_medium", "farming:cotton"},
|
||||||
{"group:stick", "unified_inventory:bag_medium", "group:stick"},
|
{"farming:cotton", "unified_inventory:bag_medium", "farming:cotton"},
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user