add lucky block drops

master
tenplus1 2022-08-19 12:09:30 +01:00
parent bf574e306a
commit 39a52e59c2
2 changed files with 9 additions and 1 deletions

View File

@ -32,7 +32,7 @@ re-arranged code, tweaked lucky blocks, updated translations
- 1.98 - New formspec textures and Kefir drink by Sirrobzeroone
- 1.99 - Barrel now has 4 slots for recipe items (and drinking glasses) and a water slot to fill up barrel with water buckets ready for fermenting, fix mineclone2 compatibility
Lucky Blocks: 18
Lucky Blocks: 22
Wine Mod API

View File

@ -14,6 +14,10 @@ lucky_block:add_blocks({
{"dro", {"wine:glass_coffee_liquor"}, 5},
{"dro", {"wine:glass_brandy"}, 5},
{"dro", {"wine:glass_champagne"}, 5},
{"dro", {"wine:glass_sparkling_agave_juice"}, 5},
{"dro", {"wine:glass_sparkling_apple_juice"}, 5},
{"dro", {"wine:glass_sparkling_carrot_juice"}, 5},
{"dro", {"wine:glass_sparkling_blackberry_juice"}, 5},
{"dro", {"wine:wine_barrel"}, 1},
{"tel", 5, 1},
{"nod", "default:chest", 0, {
@ -32,5 +36,9 @@ lucky_block:add_blocks({
{name = "wine:bottle_coffee_liquor", max = 1},
{name = "wine:bottle_brandy", max = 1},
{name = "wine:bottle_champagne", max = 1},
{name = "wine:bottle_sparkling_agave_juice", max = 1},
{name = "wine:bottle_sparkling_apple_juice", max = 1},
{name = "wine:bottle_sparkling_carrot_juice", max = 1},
{name = "wine:bottle_sparkling_blackberry_juice", max = 1},
{name = "wine:blue_agave", max = 4}}},
})