Add files via upload
This commit is contained in:
parent
6d105ff39a
commit
b6d3896f15
@ -25,6 +25,7 @@ New In This Version
|
||||
-------------------
|
||||
Name changed to Your Dad's BBQ Mod.
|
||||
Added a new smoker, renamed old smoker "Propane Grill."
|
||||
Grills, propane, bags of charcoal, and beer no longer kill grass.
|
||||
Added spatula, basting brush, and grill brush. All three play sounds when used with any of the grills while they are active.
|
||||
Removed mutton (Mobs-Redo has offically added mutton).
|
||||
Hotdog and hamburger meats must now be crafted, cooked, and combined with bread to make finished product.
|
||||
|
@ -37,6 +37,7 @@ minetest.register_node("bbq:chimney_smoke", {
|
||||
inventory_image = "bbq_chimney_smoke.png",
|
||||
wield_image = "bbq_chimney_smoke.png",
|
||||
drawtype = "plantlike",
|
||||
sunlight_propagates = true,
|
||||
tiles = {
|
||||
{
|
||||
image = "bbq_chimney_smoke_animation.png",
|
||||
@ -94,6 +95,7 @@ minetest.register_node("bbq:charcoal_bag", {
|
||||
inventory_image = "bbq_charcoal_bag.png",
|
||||
wield_image = "bbq_charcoal_bag.png",
|
||||
drawtype = "plantlike",
|
||||
sunlight_propagates = true,
|
||||
tiles = {
|
||||
"bbq_charcoal_bag_top.png", "bbq_charcoal_bag_top.png",
|
||||
"bbq_charcoal_bag_side.png", "bbq_charcoal_bag_side.png",
|
||||
@ -125,6 +127,7 @@ minetest.register_node("bbq:propane", {
|
||||
inventory_image = "bbq_propane.png",
|
||||
wield_image = "bbq_propane.png",
|
||||
drawtype = "plantlike",
|
||||
sunlight_propagates = true,
|
||||
tiles = {"bbq_propane.png"},
|
||||
groups = {explody = 1, dig_immediate = 3, attached_node = 1},
|
||||
sounds = default.node_sound_metal_defaults(),
|
||||
@ -142,6 +145,7 @@ minetest.register_node("bbq:beer", {
|
||||
inventory_image = "bbq_beer.png",
|
||||
wield_image = "bbq_beer.png",
|
||||
drawtype = "plantlike",
|
||||
sunlight_propagates = true,
|
||||
tiles = {
|
||||
"bbq_beer_top.png", "bbq_beer_top.png^[transformFy",
|
||||
"bbq_beer.png", "bbq_beer.png",
|
||||
|
@ -438,7 +438,7 @@ minetest.register_node("bbq:kettle_grill_base", {
|
||||
"bbq_kettle.png^[transformFX", "bbq_kettle.png",
|
||||
"bbq_kettle_side.png", "bbq_kettle_side.png",
|
||||
},
|
||||
|
||||
sunlight_propagates = true,
|
||||
paramtype2 = "facedir",
|
||||
drawtype = "nodebox",
|
||||
node_box = {
|
||||
|
@ -276,6 +276,7 @@ minetest.register_node("bbq:propane_grill", {
|
||||
},
|
||||
},
|
||||
|
||||
sunlight_propagates = true,
|
||||
groups = {cracky=2},
|
||||
legacy_facedir_simple = true,
|
||||
is_ground_content = false,
|
||||
@ -372,14 +373,7 @@ minetest.register_node("bbq:propane_grill_active", {
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
sunlight_propagates = true,
|
||||
drop = "bbq:propane_grill",
|
||||
groups = {cracky=2, not_in_creative_inventory=1},
|
||||
legacy_facedir_simple = true,
|
||||
|
12
smoker.lua
12
smoker.lua
@ -291,7 +291,7 @@ minetest.register_node("bbq:smoker", {
|
||||
|
||||
},
|
||||
},
|
||||
|
||||
sunlight_propagates = true,
|
||||
groups = {cracky=2},
|
||||
legacy_facedir_simple = true,
|
||||
is_ground_content = false,
|
||||
@ -416,15 +416,7 @@ minetest.register_node("bbq:smoker_active", {
|
||||
},
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
sunlight_propagates = true,
|
||||
drop = "bbq:smoker",
|
||||
groups = {cracky=2, not_in_creative_inventory=1},
|
||||
legacy_facedir_simple = true,
|
||||
|
Loading…
Reference in New Issue
Block a user