No revivification mod

The mod was removed a while ago from the base game.
Or - to be exact - it got merged with “Classic Zombies” (now named “Dark Days of the Dead”).

You can still find it on its own in some modpacks though, and you can transfer it from an older version of the game. Just remember to change the “ident” to “id” within the modinfo.json file.

If you don’t have an older version anymore, you can create a folder in the /data/mods folder of your game and add this as an modinfo.json file:

[
  {
    "type": "MOD_INFO",
    "id": "no_reviving_zombies",
    "name": "Prevent Zombie Revivication",
    "description": "Disables zombie revival.",
    "category": "rebalance",
    "dependencies": [ "dda" ]
  },
  {
    "type": "monster_adjustment",
    "species": "ZOMBIE",
    "flag": { "name": "REVIVES", "value": false }
  }
]
1 Like