added bread pudding and orange cake (thanks to CalebDavis)

master
TenPlus1 2017-07-28 16:59:00 +01:00
parent a896639e9e
commit e3127ee5e0
12 changed files with 31 additions and 1 deletions

View File

@ -18,5 +18,6 @@ Change log:
- 0.2 - Added meat pie
- 0.3 - Fix cake inside - Added banana cake
- 0.4 - Added support for stamina mod
- 0.5 - Added Orange and Bread cake (thanks to CalebDavis)
Lucky Blocks: 9
Lucky Blocks: 12

View File

@ -252,6 +252,32 @@ minetest.register_craft({
replacements = {{ "mobs:bucket_milk", "bucket:bucket_empty"}}
})
-- bread pudding
register_pie("brpd","Bread Pudding")
minetest.register_craft({
output = "pie:brpd_0",
recipe = {
{"farming:bread", "mobs:bucket_milk", "farming:bread"},
{"farming:sugar", "mobs:egg", "farming:sugar"},
{"farming:wheat", "farming:flour", "farming:wheat"},
},
replacements = {{ "mobs:bucket_milk", "bucket:bucket_empty"}}
})
-- orange pie
register_pie("orange","Orange Pie")
minetest.register_craft({
output = "pie:orange_0",
recipe = {
{"ethereal:orange", "mobs:bucket_milk", "ethereal:orange"},
{"farming:sugar", "mobs:egg", "farming:sugar"},
{"farming:wheat", "farming:flour", "farming:wheat"},
},
replacements = {{ "mobs:bucket_milk", "bucket:bucket_empty"}}
})
-- add lucky blocks
if minetest.get_modpath("lucky_block") then
@ -263,6 +289,9 @@ lucky_block:add_blocks({
{"nod", "pie:rvel_0", 0},
{"nod", "pie:scsk_0", 0},
{"nod", "pie:bana_0", 0},
{"nod", "pie:orange_0", 0},
{"tro", "pie:orange_0", "default_place_node_hard", true},
{"nod", "pie:brpd_0", 0},
{"nod", "pie:meat_0", 0},
{"lig"},
})

BIN
textures/brpd_bottom.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 280 B

BIN
textures/brpd_inside.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 310 B

BIN
textures/brpd_inv.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 394 B

BIN
textures/brpd_side.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 244 B

BIN
textures/brpd_top.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 394 B

BIN
textures/orange_bottom.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 215 B

BIN
textures/orange_inside.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 265 B

BIN
textures/orange_inv.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 342 B

BIN
textures/orange_side.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 238 B

BIN
textures/orange_top.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 200 B