Mod is only just out of date. Some lines changed. I cannot provide more assistance than the following. If you can't do the following, you'll just have to wait for the author, or for someone else to start a "repacked" mod.
Unzip the mod file. Open info.json. Change
old
"factorio_version": "0.18",
to
new
"factorio_version": "1.1",
Save and close.
If you run it now, you'll get an error about demo-hit-effects.
Go into the prototypes folder, and open entity.lua. Find these two lines:
old
local hit_effects = require ("__base__.prototypes.entity.demo-hit-effects")
local sounds = require("__base__.prototypes.entity.demo-sounds")
And remove the word "demo-
" from both lines so they look like
new
local hit_effects = require ("__base__.prototypes.entity.hit-effects")
local sounds = require("__base__.prototypes.entity.sounds")
If you run it now, you'll get an error about turrets technology for the medium tank.
Open technology.lua. On line 288 is the following:
old
prerequisites = {"ScrapTank","advanced-electronics","electric-engine","logistics-2","rocketry","fluid-handling","turrets"},
Change the last word so it looks like this:
new
prerequisites = {"ScrapTank","advanced-electronics","electric-engine","logistics-2","rocketry","fluid-handling","gun-turret"},
There's a second usage of turret tech here we need to change.
On line 579 look for this line:
old
prerequisites = {"turrets","ScrapTank"},
Again, change it to this:
new
prerequisites = {"gun-turret","ScrapTank"},
Save and close, and you should be good to go!