Zombie Config - ZenarchistCode/ZenModPack GitHub Wiki

What Is This?

This mod allows adding simple loot spawns via JSON, and adding extra shock/bleed damage etc.

Config Explanation:

Config file: profiles/Zenarchist/ZenZombieConfig.json

{
    "ConfigVersion": "1",
    "GlobalCrawlerChance": 0.0010000000474974514, // Chance of any zombie to spawn as a crawler
    "ZombieCarDamage": 1.2000000476837159, // Multiplier affects damage to car when running zeds over (faster = more damage, set as 0 to disable)
    "AllZombieLoot": [ // Config which affects ALL zombies
        {
            "ItemTypes": [
                "Zen_Cassette_RandomTape" // List of items which can spawn in this config
            ],
            "SpawnChance": 0.009999999776482582, // Chance to spawn
            "ItemMinHealth": 0.10000000149011612, // Item's minimum possible health
            "ItemMaxHealth": 1.0, // Item's maximum possible health
            "ItemMinQuantity": 1.0, // Item's minimum possible quantity
            "ItemMaxQuantity": 1.0 // Item's minimum possible quantity
        },
        {
            "ItemTypes": [
                "ZenJournal",
                "Zen_Walkman",
                "Zen_CassetteCase",
                "Empty_ZenFlask"
            ],
            "SpawnChance": 0.009999999776482582,
            "ItemMinHealth": 0.10000000149011612,
            "ItemMaxHealth": 1.0,
            "ItemMinQuantity": 1.0,
            "ItemMaxQuantity": 1.0
        },
        {
            "ItemTypes": [
                "Pen_Black",
                "Pen_Red",
                "Pen_Green",
                "Pen_Blue",
                "Pen_Pink",
                "Pen_Purple",
                "Pen_Orange"
            ],
            "SpawnChance": 0.009999999776482582,
            "ItemMinHealth": 0.10000000149011612,
            "ItemMaxHealth": 1.0,
            "ItemMinQuantity": 1.0,
            "ItemMaxQuantity": 1.0
        }
    ],
    "ZombieData": [ // Config which affects specific zombies (name doesn't need to be exact - ZmbM_Hunt" will affect all hunter zeds
        {
            "ClassName": "ZmbM_HermitSkinny_Beige",
            "ExtraShockDamage": 0, // Extra shock damage dealt by this zed
            "ExtraBleedChance": 0.0, // Extra chance of being cut by this zed
            "CrawlerChance": 0.8999999761581421, // Specific chance of this zed spawning as crawler
            "Clothing": [ // Attachment config (clothes)
                {
                    "ItemTypes": [
                        "GhillieHood_Tan",
                        "GhillieHood_Mossy",
                        "GhillieHood_Woodland"
                    ],
                    "SpawnChance": 0.8999999761581421,
                    "ItemMinHealth": 0.0,
                    "ItemMaxHealth": 0.0
                },
                {
                    "ItemTypes": [
                        "GhillieBushrag_Tan",
                        "GhillieSuit_Tan",
                        "GhillieTop_Tan",
                        "GhillieBushrag_Mossy",
                        "GhillieSuit_Mossy",
                        "GhillieTop_Mossy",
                        "GhillieBushrag_Woodland",
                        "GhillieSuit_Woodland",
                        "GhillieTop_Woodland",
                        "GhillieBushrag_Tan",
                        "GhillieBushrag_Mossy",
                        "GhillieBushrag_Woodland",
                        "GhillieBushrag_Tan",
                        "GhillieBushrag_Mossy",
                        "GhillieBushrag_Woodland"
                    ],
                    "SpawnChance": 0.5,
                    "ItemMinHealth": 0.0,
                    "ItemMaxHealth": 0.0
                }
            ],
            "Loot": [ // Cargo loot config (items)
                {
                    "ItemTypes": [
                        "Worm"
                    ],
                    "SpawnChance": 0.8999999761581421,
                    "ItemMinHealth": 0.0,
                    "ItemMaxHealth": 1.0,
                    "ItemMinQuantity": 1.0,
                    "ItemMaxQuantity": 1.0
                }
            ]
        },
        {
            "ClassName": "ZmbM_Hunter",
            "ExtraShockDamage": 0,
            "ExtraBleedChance": 0.0,
            "CrawlerChance": -1.0,
            "Clothing": [],
            "Loot": [
                {
                    "ItemTypes": [
                        "ZenSwissKnife",
                        "ZenFlask",
                        "ZenJameson",
                        "ZenZippoLighter_Zenarchist",
                        "ZenFlint",
                        "Zen_Canteen_Black"
                    ],
                    "SpawnChance": 0.10000000149011612,
                    "ItemMinHealth": 0.10000000149011612,
                    "ItemMaxHealth": 1.0,
                    "ItemMinQuantity": 0.5,
                    "ItemMaxQuantity": 1.0
                }
            ]
        },
        {
            "ClassName": "ZmbM_Fisherman",
            "ExtraShockDamage": 0,
            "ExtraBleedChance": 0.0,
            "CrawlerChance": -1.0,
            "Clothing": [],
            "Loot": [
                {
                    "ItemTypes": [
                        "ZenSwissKnife",
                        "ZenFlask",
                        "ZenJameson",
                        "ZenZippoLighter_Zenarchist",
                        "ZenFlint",
                        "Zen_Canteen_Black"
                    ],
                    "SpawnChance": 0.10000000149011612,
                    "ItemMinHealth": 0.10000000149011612,
                    "ItemMaxHealth": 1.0,
                    "ItemMinQuantity": 0.5,
                    "ItemMaxQuantity": 1.0
                }
            ]
        }
    ]
}

Master Config

To disable this mod set "ZenZombieConfig": 0 in %server_profile/Zenarchist/Utilities/ZenModPackConfig.json