Add crafting for cinemas projectors and reels #5529

Open
opened 2023-11-20 01:31:05 +00:00 by AliasAlreadyTaken · 2 comments

The projector needs to have a pretty expensive recipe, the reel a moderately expensive one

The projector needs to have a pretty expensive recipe, the reel a moderately expensive one
AliasAlreadyTaken added the
1. kind/enhancement
3. source/art
labels 2023-11-20 01:31:15 +00:00

If I know what you have in mind I might me able to make it for you.

If I know what you have in mind I might me able to make it for you.

My suggestion for the projector:

minetest.register_craft({
    type = "shaped",
    output = "yl_cinema:flatscreen_base",
    recipe = {
        {"", "basic_materials:gear_steel", "basic_materials:gear_steel"},
        {"digistuff:camera", "digilines:wire_std_00000000",  "digilines:wire_std_00000000"},
        {"digistuff:button", "digistuff:button",  "digistuff:button"}
    }
})

and for the reel:

minetest.register_craft({
    type = "shapeless",
    output = "yl_cinema:movie_reel",
    recipe = {
        "digilines:wire_std_00000000",
        "basic_materials:gear_steel",
        "default:gold_ingot",
    },
})
My suggestion for the projector: ```lua minetest.register_craft({ type = "shaped", output = "yl_cinema:flatscreen_base", recipe = { {"", "basic_materials:gear_steel", "basic_materials:gear_steel"}, {"digistuff:camera", "digilines:wire_std_00000000", "digilines:wire_std_00000000"}, {"digistuff:button", "digistuff:button", "digistuff:button"} } }) and for the reel: minetest.register_craft({ type = "shapeless", output = "yl_cinema:movie_reel", recipe = { "digilines:wire_std_00000000", "basic_materials:gear_steel", "default:gold_ingot", }, }) ```
Sign in to join this conversation.
No Milestone
No project
No Assignees
3 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: your-land/bugtracker#5529
No description provided.