construction times

Post your ideas and suggestions how to improve the game.

Moderator: ickputzdirwech

Post Reply
tadpolefeet
Burner Inserter
Burner Inserter
Posts: 6
Joined: Mon Jan 13, 2020 5:06 pm
Contact:

construction times

Post by tadpolefeet »

in the player inventory, the red science recipe has a time of 5 seconds. Due to the crafting speed multiplier of assembly machine 1, in that machine the time taken is 10 seconds. However, the time displayed in the recipe is still 5 seconds. I suggest that the gui of recipies in non-player inventories is edited to reflect the actual time taken to craft the itemin that machine
Attachments
Factorio Screenshot 2020.01.14 - 21.35.57.07.png
Factorio Screenshot 2020.01.14 - 21.35.57.07.png (377.17 KiB) Viewed 1571 times
Factorio Screenshot 2020.01.14 - 21.34.40.43.png
Factorio Screenshot 2020.01.14 - 21.34.40.43.png (439.61 KiB) Viewed 1571 times

conn11
Filter Inserter
Filter Inserter
Posts: 385
Joined: Wed Sep 14, 2016 5:02 pm
Contact:

Re: construction times

Post by conn11 »

The baseline crafting time remains unchanged, only the crafting speed and therefore effective time to craft differs depending on wich tier of assembler (or by crafting manually) you are using. The Assembly machines GUI dose show the crafting speed of 0,5, so the all the informations are there, only not precalculated.

User avatar
leadraven
Filter Inserter
Filter Inserter
Posts: 354
Joined: Fri Jan 18, 2019 7:23 pm
Contact:

Re: construction times

Post by leadraven »

I think it is one of the biggest misunderstanding remaining in the game at the moment. This 5s actually is "5 work units", not "5 seconds". And assembler1 performs 0.5 "work units per second".

tadpolefeet
Burner Inserter
Burner Inserter
Posts: 6
Joined: Mon Jan 13, 2020 5:06 pm
Contact:

Re: construction times

Post by tadpolefeet »

this is merely a suggestion - that the actual time to produce is also displayed. i feel it would make the game slightly simpler for newer players

nctdev
Burner Inserter
Burner Inserter
Posts: 16
Joined: Tue Sep 03, 2019 6:30 pm
Contact:

Re: construction times

Post by nctdev »

I suggest that the gui of recipies in non-player inventories is edited to reflect the actual time taken to craft
Big, big yes. I know that this "5s to craft" is not really a SI unit for time, but it would be helpful to have that clear when designing some stuff not yet available in /blueprints on reddit etc.

tadpolefeet
Burner Inserter
Burner Inserter
Posts: 6
Joined: Mon Jan 13, 2020 5:06 pm
Contact:

Re: construction times

Post by tadpolefeet »

nctdev wrote:
Wed Jan 15, 2020 8:14 pm
I suggest that the gui of recipies in non-player inventories is edited to reflect the actual time taken to craft
Big, big yes. I know that this "5s to craft" is not really a SI unit for time, but it would be helpful to have that clear when designing some stuff not yet available in /blueprints on reddit etc.
exactly! it gets even more complicated when new players learn how to use beacons for the first time!

User avatar
BlueTemplar
Smart Inserter
Smart Inserter
Posts: 2420
Joined: Fri Jun 08, 2018 2:16 pm
Contact:

Re: construction times

Post by BlueTemplar »

In physics, "work" has energy units.
It seems to be internally represented as energy_required, but which seems to have actual units of time rather than energy (otherwise efficiency modules would slow production down ?), the default being 1s ?

Code: Select all

  {
    type = "recipe",
    name = "iron-gear-wheel",
    normal =
    {
      ingredients = {{"iron-plate", 2}},
      result = "iron-gear-wheel"
    },
    expensive =
    {
      ingredients = {{"iron-plate", 4}},
      result = "iron-gear-wheel"
    }
  },

Code: Select all

  {
    type = "recipe",
    name = "burner-mining-drill",
    normal =
    {
      energy_required = 2,
      ingredients =
      {
        {"iron-gear-wheel", 3},
        {"stone-furnace", 1},
        {"iron-plate", 3}
      },
      result = "burner-mining-drill"
    },
    expensive =
    {
      energy_required = 4,
      ingredients =
      {
        {"iron-gear-wheel", 6},
        {"stone-furnace", 2},
        {"iron-plate", 6}
      },
      result = "burner-mining-drill"
    }
  },
Expensive :
Image
BobDiggity (mod-scenario-pack)

Post Reply

Return to “Ideas and Suggestions”