Cooked Fish


Allows raw fish to be cooked in a furnace

Content
7 months ago
1.0 - 1.1
2.23K
Combat

g βœ… -> Cooked fish heals you for 120 instead of 80 of raw fish

2 years ago

Title. For those wondering what the mod does.

2 years ago

Is it possible to add a code where the fish can be cooked with this Mod? https://mods.factorio.com/mod/fire-place

2 years ago

i_i, I really love that idea, but that is something the campfire mod would need to enable. I see there's a post about this on that mod too, so hopefully it is something they can implement.

2 years ago

i_i, I really love that idea, but that is something the campfire mod would need to enable.

If the campfire mod is active, you could actually remove data.raw["assembling-machine"]["camp-fire"].fixed_recipe. Then make a copy of your cooked-fish recipes, with some additions/changes:

{
    type = "recipe",

    -- New name
    name = "cooked-fish-recipe-campfire",

    -- Changed category
    category = "burning",                   
    energy_required = 16,
    enabled = true,

    -- Only usable in machines
    hide_from_player_crafting = true,       
    ingredients = {{"raw-fish", 1}},

    -- Results instead of result        
    results = {                             
        { 
            type = "item", 
            name = "cooked-fish",
            amount = 1,
        },

        {
            type = "item",
            name = "coal",
            amount = 1,
            probability = 0.01,
        },
    },

    -- Icon and subgroup depend on this 
    main_product = "cooked-fish"            
}

Didn't test this, but that's how I would go about it. :-D

2 years ago

Thank you Pi-C, that's a great idea. I was just working on implementing it when I got a notification that the fire place mod had been updated to allow compatibility!

i_i, you can now cook fish on the campfire :D

2 years ago

Great! I'd already thought about making a bridging mod myself, now the two of you have saved me the work. I'll try out your recipes tomorrow.

New response