How do I add research speed bonuses?

Hello. I was making a focus tree mod for Iran. I added a focus that you have to do to start working on your research or industry. But it seems like it is not adding any bonus.  

The code you've used "research_bonus" isn't a thing HOI4 uses, which would be why it doesn't work.

The code to add research bonuses is:

add_tech_bonus = {

    bonus = 0.5

    uses = 1

    category = radar_tech

}

"category = radar_tech" can be swapped out to any research category "industry", "artillery", etc.

Or you can swap it out for specific items such as:

technology = TECH_ID

Thanks, but how do I add more bonuses at the same time?

You can add the same reward multiple times for different categories.

add_tech_bonus = {

    bonus = 0.5

    uses = 1

    category = radar_tech

}

add_tech_bonus = {

    bonus = 0.5

    uses = 1

    category = infantry_equipment

}

add_tech_bonus = {

    bonus = 0.5

    uses = 1

    category = artillery

}


Or, if you just want multiple uses for the same tech, for example 3 radar tech boosts:

add_tech_bonus = {

    bonus = 0.5

    uses = 3

    category = radar_tech

}