Page 1 of 1

Technology effect types

Posted: Fri Aug 21, 2020 5:28 pm
by Daxanius
I am new to modding in Factorio and I am currently trying to add a research that increases player mining speed (like the steel axe).

The problem is, I don't know what types of effects there are in technology.
I have been looking for quite a while without any success.

Does anyone know where I can find a list with effect types so I can hopefully find something about increasing mining speed?

Code: Select all

  effects =
  {
      {
          type = "unlock-recipe", -- but what other types are there?
          recipe = "advanced-steel-axe"
      },
  },

Re: Technology effect types

Posted: Fri Aug 21, 2020 5:59 pm
by Xorimuth

Re: Technology effect types

Posted: Fri Aug 21, 2020 6:00 pm
by ickputzdirwech
You are looking for character-mining-speed

Here you can find all options:
https://lua-api.factorio.com/latest/Con ... l#Modifier

Edit: looks like someone else was faster

Re: Technology effect types

Posted: Sat Aug 22, 2020 3:20 am
by Daxanius
ickputzdirwech wrote: Fri Aug 21, 2020 6:00 pm You are looking for character-mining-speed

Here you can find all options:
https://lua-api.factorio.com/latest/Con ... l#Modifier

Edit: looks like someone else was faster
Thanks a lot!