Mob Spawns - Goldiriath/Goldiriath GitHub Wiki

With MobSpawn profiles, you can configure the way mobspawn signs spawn mobs, follows in an example configuration.

profiles.yml

hellzombie:
    name: '&4Zombie of Hell'
    time_threshold: 600
    type: ZOMBIE
    # Required: stats
    stats:
        level: 3
        # Optional: If not present, the damage is calculated from the 'hand' item, which must then be present.
        damage: 6
        health: 30
    # Optional: loot table
    loot:
        profile: basic_loot
        tier: SWARM
    # Optional: items
    items:
        hand: IRON_SWORD:5
        helmet: LEATHER_HELMET:3
        chestplate: DIAMOND_CHESTPLATE:2
        leggings: GOLD_LEGGINGS
        boots: IRON_BOOTS:15
    # Optional: potion effects
    potions:
        SPEED:
            duration: -1
            amplifier: 1
            ambient: true

Potion effects: You can find the possible effect types here.