spoorn / SpoornBountyMobs

https://www.curseforge.com/minecraft/mc-mods/spoorn-bounty-mobs
GNU General Public License v3.0
0 stars 1 forks source link

Is my syntax correct for modifying drops? It's not working. #11

Closed Ricenami closed 2 years ago

Ricenami commented 2 years ago
{
         // Chance for mob to spawn with a bounty [1/value] [default = 300]
    "bountyChance": 300,
    // True if Bounty mobs should glow through walls permanently, else false [default = false]
    "bountyMobPermanentGlow": true,
    // Duration in seconds Bounty mobs should glow when they are first found if bountyMobPermanentGlow is false [default = 20]
    "bountyMobGlowDuration": 40,
    // Player's Bounty Hunter level increments at this value [default = 10]
    "playerBountyHunterLevelIntervals": 10,
    // Bonus health for Player per Bounty Hunter level [default = 2 (one heart)]
    "playerBonusHealthPerBountyHunterLevel": 2.0,
    // Bonus damage for Player per Bounty Hunter tier [default = 0.5]
    "playerBonusDamagePerBountyHunterTier": 0.5,
    // Percentage of player's Bounty score LOST on death [default = 20, min=0, max=100]
    "playerDeathBountyScorePenalty": 20.0,
    // Set to false if you don't want potion particle effects on HUD from Bounty mob attacks [default = true]
    "showBountyParticleEffects": true,
    // Set to false to disable broadcast message when a player is near a bounty mob [default = true]
    "broadcastMessageWhenBountySpawned": false,
    // Set to false to disable broadcast message when a player kills a bounty mob [default = true]
    "broadcastMessageWhenPlayerKillBountyMob": true,
    // Set to false to disable broadcast message when a player increases their Bounty Level [default = true]
    "broadcastMessageWhenBountyLevelUp": true,
    // Common tier bounty mobs
    "COMMON_TIER": {
        // Spawn weight of this tier (higher number is higher chance of spawn) [default = 20]
        "spawnChance": 20,
        // This tier's Mob size scale [default = 1.5]
        "mobSizeScale": 1.5,
        // This tier's mob outline color in Decimal format [default = 20228]
        "glowColor": 20228,
        // Base bonus health for this tier [default = 20]
        "baseBonusHealth": 20,
        // Experience scale for this tier [default = 3]
        "experienceScale": 3,
        // Health increase per bounty score milestone [default = 5]
        "milestoneHealthIncrease": 5,
        // Damage increase per player bounty score level [default = 0.2]
        "milestoneDamageIncrease": 0.2,
        /* Here you can configure what loot drops from bounty mobs.  See comments below for information on each data field.
           This works for any modded mobs or items as well, as long as you get the identifier regexes right!
           If any identifiers are missing or do not exist in the game, it will simply be skipped and fail safely.
           If any of the mob identifiers conflict (e.g. you specify a "minecraft:creeper" entry, but also a wildcard default ".*" entry,
           only the first matched drop data in the drops list will be applied.
           Example:

           "drops": [
            {
                "entityId": "minecraft:creeper",
                "dropChance": 0.5,
                "rolls": 10,
                "items": [
                    {
                        "item": "minecraft:enchanted_book{StoredEnchantments:[{id:"minecraft:blast_protection",lvl:2s}]}",
                        "weight": 1
                    },
                    {
                        "item": "wilderworld:mint_icecream",
                        "weight": 2
                    },
                    {
                        "item": "minecraft:tnt",
                        "weight": 3
                    },
                    {
                        "item": "minecraft:sand",
                        "weight": 4
                    },
                    {
                        "item": "minecraft:gunpowder",
                        "weight": 5
                    },
                    {
                        "item": "numismatic-overhaul:bronze_coin",
                        "weight": 6
                    },
                    {
                        "item": "numismatic-overhaul:bronze_coin",
                        "weight": 7
                    },
                    {
                        "item": "numismatic-overhaul:bronze_coin",
                        "weight": 8
                    }
            },
            {
                "entityId": "minecraft:zombie",
                "dropChance": 0.5,
                "rolls": 10,
                "items": [
                    {
                        "item": "minecraft:enchanted_book{StoredEnchantments:[{id:"minecraft:sharpness",lvl:2s}]}",
                        "weight": 1
                    },
                    {
                        "item": "minecraft:iron_ingot",
                        "weight": 2
                    },
                    {
                        "item": "minecraft:iron_nugget",
                        "weight": 3
                    },
                    {
                        "item": "minecraft:iron_nugget",
                        "weight": 4
                    },
                    {
                        "item": "minecraft:rotten_flesh",
                        "weight": 5
                    },
                    {
                        "item": "numismatic-overhaul:bronze_coin",
                        "weight": 6
                    },
                    {
                        "item": "numismatic-overhaul:bronze_coin",
                        "weight": 7
                    },
                    {
                        "item": "numismatic-overhaul:bronze_coin",
                        "weight": 8
                    }
                ]
            },
            {
                "entityId": "minecraft:skeleton",
                "dropChance": 0.5,
                "rolls": 10,
                "items": [
                    {
                        "item": "minecraft:enchanted_book{StoredEnchantments:[{id:"minecraft:smite",lvl:2s}]}",
                        "weight": 1
                    },
                    {
                        "item": "nyfsquiver:basic_quiver",
                        "weight": 2
                    },
                    {
                        "item": "minecraft:bow",
                        "weight": 3
                    },
                    {
                        "item": "minecraft:arrow",
                        "weight": 4
                    },
                    {
                        "item": "minecraft:bones",
                        "weight": 5
                    },
                    {
                        "item": "numismatic-overhaul:bronze_coin",
                        "weight": 6
                    },
                    {
                        "item": "numismatic-overhaul:bronze_coin",
                        "weight": 7
                    },
                    {
                        "item": "numismatic-overhaul:bronze_coin",
                        "weight": 8
                    }
                ]
            },
            {
                "entityId": "minecraft:witch",
                "dropChance": 0.5,
                "rolls": 10,
                "items": [
                    {
                        "item": "extraalchemy:potion_bag",
                        "weight": 1
                    },
                    {
                        "item": "minecraft:blaze_powder",
                        "weight": 2
                    },
                    {
                        "item": "minecraft:redstone_dust",
                        "weight": 3
                    },
                    {
                        "item": "minecraft:sugar",
                        "weight": 4
                    },
                    {
                        "item": "minecraft:nether_bricks",
                        "weight": 5
                    },
                    {
                        "item": "numismatic-overhaul:bronze_coin",
                        "weight": 6
                    },
                    {
                        "item": "numismatic-overhaul:bronze_coin",
                        "weight": 7
                    },
                    {
                        "item": "numismatic-overhaul:bronze_coin",
                        "weight": 8
                    }
                ]
            },
            {
                "entityId": "minecraft:spider",
                "dropChance": 0.5,
                "rolls": 10,
                "items": [
                    {
                        "item": "minecraft:enchanted_book{StoredEnchantments:[{id:"minecraft:bane_of_arthropods",lvl:2s}]}",
                        "weight": 1
                    },
                    {
                        "item": "minecraft:experience_bottle",
                        "weight": 2
                    },
                    {
                        "item": "minecraft:cobweb",
                        "weight": 3
                    },
                    {
                        "item": "minecraft:spider_eye",
                        "weight": 4
                    },
                    {
                        "item": "minecraft:string",
                        "weight": 5
                    },
                    {
                        "item": "numismatic-overhaul:bronze_coin",
                        "weight": 6
                    },
                    {
                        "item": "numismatic-overhaul:bronze_coin",
                        "weight": 7
                    },
                    {
                        "item": "numismatic-overhaul:bronze_coin",
                        "weight": 8
                    }
                ]
            }
           ]
    },
    // Uncommon tier bounty mobs
    "UNCOMMON_TIER": {
        // Spawn weight of this tier (higher number is higher chance of spawn) [default = 15]
        "spawnChance": 15,
        // This tier's Mob size scale [default = 1.75]
        "mobSizeScale": 1.75,
        // This tier's mob outline color in Decimal format [default = 8729344]
        "glowColor": 8729344,
        // Base bonus health for this tier [default = 30]
        "baseBonusHealth": 30,
        // Experience scale for this tier [default = 6]
        "experienceScale": 6,
        // Health increase per bounty score milestone [default = 10]
        "milestoneHealthIncrease": 10,
        // Damage increase per player bounty score level [default = 0.2]
        "milestoneDamageIncrease": 0.2,
        // Drops data.  See COMMON_TIER's config for example configuration schema and documentation.
        "drops": [
            {
                "entityId": "minecraft:creeper",
                "dropChance": 0.5,
                "rolls": 20,
                "items": [
                    {
                        "item": "minecraft:enchanted_book{StoredEnchantments:[{id:"minecraft:blast_protection",lvl:3s}]}",
                        "weight": 1
                    },
                    {
                        "item": "wilderworld:mint_icecream",
                        "weight": 2
                    },
                    {
                        "item": "minecraft:tnt",
                        "weight": 3
                    },
                    {
                        "item": "minecraft:sand",
                        "weight": 4
                    },
                    {
                        "item": "minecraft:gunpowder",
                        "weight": 5
                    },
                    {
                        "item": "numismatic-overhaul:bronze_coin",
                        "weight": 6
                    },
                    {
                        "item": "numismatic-overhaul:bronze_coin",
                        "weight": 7
                    },
                    {
                        "item": "numismatic-overhaul:bronze_coin",
                        "weight": 8
                    }
            },
            {
                "entityId": "minecraft:zombie",
                "dropChance": 0.5,
                "rolls": 20,
                "items": [
                    {
                        "item": "minecraft:enchanted_book{StoredEnchantments:[{id:"minecraft:sharpness",lvl:3s}]}",
                        "weight": 1
                    },
                    {
                        "item": "minecraft:iron_ingot",
                        "weight": 2
                    },
                    {
                        "item": "minecraft:iron_nugget",
                        "weight": 3
                    },
                    {
                        "item": "minecraft:iron_nugget",
                        "weight": 4
                    },
                    {
                        "item": "minecraft:rotten_flesh",
                        "weight": 5
                    },
                    {
                        "item": "numismatic-overhaul:bronze_coin",
                        "weight": 6
                    },
                    {
                        "item": "numismatic-overhaul:bronze_coin",
                        "weight": 7
                    },
                    {
                        "item": "numismatic-overhaul:bronze_coin",
                        "weight": 8
                    }
                ]
            },
            {
                "entityId": "minecraft:skeleton",
                "dropChance": 0.5,
                "rolls": 20,
                "items": [
                    {
                        "item": "minecraft:enchanted_book{StoredEnchantments:[{id:"minecraft:smite",lvl:3s}]}",
                        "weight": 1
                    },
                    {
                        "item": "nyfsquiver:iron_quiver",
                        "weight": 2
                    },
                    {
                        "item": "minecraft:bow",
                        "weight": 3
                    },
                    {
                        "item": "minecraft:arrow",
                        "weight": 4
                    },
                    {
                        "item": "minecraft:bones",
                        "weight": 5
                    },
                    {
                        "item": "numismatic-overhaul:bronze_coin",
                        "weight": 6
                    },
                    {
                        "item": "numismatic-overhaul:bronze_coin",
                        "weight": 7
                    },
                    {
                        "item": "numismatic-overhaul:bronze_coin",
                        "weight": 8
                    }
                ]
            },
            {
                "entityId": "minecraft:witch",
                "dropChance": 0.5,
                "rolls": 20,
                "items": [
                    {
                        "item": "extraalchemy:potion_bag",
                        "weight": 1
                    },
                    {
                        "item": "minecraft:blaze_powder",
                        "weight": 2
                    },
                    {
                        "item": "minecraft:redstone_dust",
                        "weight": 3
                    },
                    {
                        "item": "minecraft:sugar",
                        "weight": 4
                    },
                    {
                        "item": "minecraft:nether_bricks",
                        "weight": 5
                    },
                    {
                        "item": "numismatic-overhaul:bronze_coin",
                        "weight": 6
                    },
                    {
                        "item": "numismatic-overhaul:bronze_coin",
                        "weight": 7
                    },
                    {
                        "item": "numismatic-overhaul:bronze_coin",
                        "weight": 8
                    }
                ]
            },
            {
                "entityId": "minecraft:spider",
                "dropChance": 0.5,
                "rolls": 20,
                "items": [
                    {
                        "item": "minecraft:enchanted_book{StoredEnchantments:[{id:"minecraft:bane_of_arthropods",lvl:3s}]}",
                        "weight": 1
                    },
                    {
                        "item": "minecraft:experience_bottle",
                        "weight": 2
                    },
                    {
                        "item": "minecraft:cobweb",
                        "weight": 3
                    },
                    {
                        "item": "minecraft:spider_eye",
                        "weight": 4
                    },
                    {
                        "item": "minecraft:string",
                        "weight": 5
                    },
                    {
                        "item": "numismatic-overhaul:bronze_coin",
                        "weight": 6
                    },
                    {
                        "item": "numismatic-overhaul:bronze_coin",
                        "weight": 7
                    },
                    {
                        "item": "numismatic-overhaul:bronze_coin",
                        "weight": 8
                    }
                ]
            }
           ]
    },
    // Rare tier bounty mobs
    "RARE_TIER": {
        // Spawn weight of this tier (higher number is higher chance of spawn) [default = 10]
        "spawnChance": 10,
        // This tier's Mob size scale [default = 2.0]
        "mobSizeScale": 2.5,
        // This tier's mob outline color in Decimal format [default = 3179]
        "glowColor": 3179,
        // Base bonus health for this tier [default = 40]
        "baseBonusHealth": 40,
        // Experience scale for this tier [default = 9]
        "experienceScale": 9,
        // Health increase per bounty score milestone [default = 15]
        "milestoneHealthIncrease": 15,
        // Damage increase per player bounty score level [default = 0.3]
        "milestoneDamageIncrease": 0.3,
        // Drops data.  See COMMON_TIER's config for example configuration schema and documentation.
        "drops": [
            {
                "entityId": "minecraft:creeper",
                "dropChance": 0.5,
                "rolls": 25,
                "items": [
                    {
                        "item": "minecraft:enchanted_book{StoredEnchantments:[{id:"minecraft:blast_protection",lvl:4s}]}",
                        "weight": 1
                    },
                    {
                        "item": "wilderworld:mint_icecream",
                        "weight": 2
                    },
                    {
                        "item": "minecraft:tnt",
                        "weight": 3
                    },
                    {
                        "item": "minecraft:sand",
                        "weight": 4
                    },
                    {
                        "item": "minecraft:gunpowder",
                        "weight": 5
                    },
                    {
                        "item": "numismatic-overhaul:bronze_coin",
                        "weight": 6
                    },
                    {
                        "item": "numismatic-overhaul:bronze_coin",
                        "weight": 7
                    },
                    {
                        "item": "numismatic-overhaul:bronze_coin",
                        "weight": 8
                    }
            },
            {
                "entityId": "minecraft:zombie",
                "dropChance": 0.5,
                "rolls": 25,
                "items": [
                    {
                        "item": "minecraft:enchanted_book{StoredEnchantments:[{id:"minecraft:sharpness",lvl:4s}]}",
                        "weight": 1
                    },
                    {
                        "item": "minecraft:iron_ingot",
                        "weight": 2
                    },
                    {
                        "item": "minecraft:iron_nugget",
                        "weight": 3
                    },
                    {
                        "item": "minecraft:iron_nugget",
                        "weight": 4
                    },
                    {
                        "item": "minecraft:rotten_flesh",
                        "weight": 5
                    },
                    {
                        "item": "numismatic-overhaul:bronze_coin",
                        "weight": 6
                    },
                    {
                        "item": "numismatic-overhaul:bronze_coin",
                        "weight": 7
                    },
                    {
                        "item": "numismatic-overhaul:bronze_coin",
                        "weight": 8
                    }
                ]
            },
            {
                "entityId": "minecraft:skeleton",
                "dropChance": 0.5,
                "rolls": 25,
                "items": [
                    {
                        "item": "minecraft:enchanted_book{StoredEnchantments:[{id:"minecraft:smite",lvl:4s}]}",
                        "weight": 1
                    },
                    {
                        "item": "nyfsquiver:gold_quiver",
                        "weight": 2
                    },
                    {
                        "item": "minecraft:bow",
                        "weight": 3
                    },
                    {
                        "item": "minecraft:arrow",
                        "weight": 4
                    },
                    {
                        "item": "minecraft:bones",
                        "weight": 5
                    },
                    {
                        "item": "numismatic-overhaul:bronze_coin",
                        "weight": 6
                    },
                    {
                        "item": "numismatic-overhaul:bronze_coin",
                        "weight": 7
                    },
                    {
                        "item": "numismatic-overhaul:bronze_coin",
                        "weight": 8
                    }
                ]
            },
            {
                "entityId": "minecraft:witch",
                "dropChance": 0.5,
                "rolls": 20,
                "items": [
                    {
                        "item": "extraalchemy:potion_bag",
                        "weight": 1
                    },
                    {
                        "item": "minecraft:blaze_rod",
                        "weight": 2
                    },
                    {
                        "item": "minecraft:redstone_block",
                        "weight": 3
                    },
                    {
                        "item": "minecraft:sugar_cane",
                        "weight": 4
                    },
                    {
                        "item": "minecraft:netherite_scrap",
                        "weight": 5
                    },
                    {
                        "item": "numismatic-overhaul:bronze_coin",
                        "weight": 6
                    },
                    {
                        "item": "numismatic-overhaul:bronze_coin",
                        "weight": 7
                    },
                    {
                        "item": "numismatic-overhaul:bronze_coin",
                        "weight": 8
                    }
                ]
            },
            {
                "entityId": "minecraft:spider",
                "dropChance": 0.5,
                "rolls": 25,
                "items": [
                    {
                        "item": "minecraft:enchanted_book{StoredEnchantments:[{id:"minecraft:bane_of_arthropods",lvl:4s}]}",
                        "weight": 1
                    },
                    {
                        "item": "minecraft:experience_bottle",
                        "weight": 2
                    },
                    {
                        "item": "minecraft:cobweb",
                        "weight": 3
                    },
                    {
                        "item": "minecraft:spider_eye",
                        "weight": 4
                    },
                    {
                        "item": "minecraft:string",
                        "weight": 5
                    },
                    {
                        "item": "numismatic-overhaul:bronze_coin",
                        "weight": 6
                    },
                    {
                        "item": "numismatic-overhaul:bronze_coin",
                        "weight": 7
                    },
                    {
                        "item": "numismatic-overhaul:bronze_coin",
                        "weight": 8
                    }
                ]
            }
           ]
    },
    // Epic tier bounty mobs
    "EPIC_TIER": {
        // Spawn weight of this tier (higher number is higher chance of spawn) [default = 6]
        "spawnChance": 6,
        // This tier's Mob size scale [default = 2.3]
        "mobSizeScale": 3,
        // This tier's mob outline color in Decimal format [default = 2949204]
        "glowColor": 2949204,
        // Base bonus health for this tier [default = 50]
        "baseBonusHealth": 50,
        // Experience scale for this tier [default = 12]
        "experienceScale": 12,
        // Health increase per bounty score milestone [default = 20]
        "milestoneHealthIncrease": 20,
        // Damage increase per player bounty score level [default = 0.4]
        "milestoneDamageIncrease": 0.4,
        // Drops data.  See COMMON_TIER's config for example configuration schema and documentation.
        "drops": [
            {
                "entityId": "minecraft:creeper",
                "dropChance": 0.5,
                "rolls": 10,
                "items": [
                    {
                        "item": "numismatic-overhaul:silver_coin",
                        "weight": 1
                    },
                    {
                        "item": "minecraft:enchanted_book{StoredEnchantments:[{id:"minecraft:blast_protection",lvl:5s}]}",
                        "weight": 2
                    },
                    {
                        "item": "guild:guild_master_table",
                        "weight": 3
                    },
                    {
                        "item": "vanillatweaks:dynamite",
                        "weight": 4
                    },
                    {
                        "item": "minecraft:tnt",
                        "weight": 5
                    },
                    {
                        "item": "minecraft:gunpowder",
                        "weight": 6
                    },
                    {
                        "item": "numismatic-overhaul:bronze_coin",
                        "weight": 7
                    },
                    {
                        "item": "numismatic-overhaul:bronze_coin",
                        "weight": 8
                    }
            },
            {
                "entityId": "minecraft:zombie",
                "dropChance": 0.5,
                "rolls": 10,
                "items": [
                    {
                        "item": "minecraft:enchanted_book{StoredEnchantments:[{id:"minecraft:sharpness",lvl:5s}]}",
                        "weight": 2
                    },
                    {
                        "item": "numismatic-overhaul:silver_coin",
                        "weight": 1
                    },
                    {
                        "item": "guild:guild_master_table",
                        "weight": 3
                    },
                    {
                        "item": "minecraft:iron_block",
                        "weight": 4
                    },
                    {
                        "item": "minecraft:iron_ingot",
                        "weight": 5
                    },
                    {
                        "item": "minecraft:iron_nugget",
                        "weight": 6
                    },
                    {
                        "item": "numismatic-overhaul:bronze_coin",
                        "weight": 7
                    },
                    {
                        "item": "numismatic-overhaul:bronze_coin",
                        "weight": 8
                    }
                ]
            },
            {
                "entityId": "minecraft:skeleton",
                "dropChance": 0.5,
                "rolls": 10,
                "items": [
                    {
                        "item": "minecraft:enchanted_book{StoredEnchantments:[{id:"minecraft:smite",lvl:5s}]}",
                        "weight": 2
                    },
                    {
                        "item": "numismatic-overhaul:silver_coin",
                        "weight": 1
                    },
                    {
                        "item": "nyfsquiver:silver_quiver",
                        "weight": 3
                    },
                    {
                        "item": "guild:guild_master_table",
                        "weight": 4
                    },
                    {
                        "item": "minecraft:bow",
                        "weight": 5
                    },
                    {
                        "item": "minecraft:arrow",
                        "weight": 6
                    },
                    {
                        "item": "minecraft:bone",
                        "weight": 7
                    },
                    {
                        "item": "numismatic-overhaul:bronze_coin",
                        "weight": 8
                    }
                ]
            },
            {
                "entityId": "minecraft:witch",
                "dropChance": 0.5,
                "rolls": 15,
                "items": [
                    {
                        "item": "extraalchemy:potion_bag",
                        "weight": 2
                    },
                    {
                        "item": "numismatic-overhaul:silver_coin",
                        "weight": 1
                    },
                    {
                        "item": "minecraft:blaze_rod",
                        "weight": 3
                    },
                    {
                        "item": "minecraft:redstone_block",
                        "weight": 4
                    },
                    {
                        "item": "minecraft:netherite_ingot",
                        "weight": 5
                    },
                    {
                        "item": "minecraft:sugar_cane",
                        "weight": 6
                    },
                    {
                        "item": "numismatic-overhaul:bronze_coin",
                        "weight": 7
                    },
                    {
                        "item": "numismatic-overhaul:bronze_coin",
                        "weight": 8
                    }
                ]
            },
            {
                "entityId": "minecraft:spider",
                "dropChance": 0.5,
                "rolls": 15,
                "items": [
                    {
                        "item": "minecraft:enchanted_book{StoredEnchantments:[{id:"minecraft:bane_of_arthropods",lvl:5s}]}",
                        "weight": 2
                    },
                    {
                        "item": "minecraft:experience_bottle",
                        "weight": 3
                    },
                    {
                        "item": "numismatic-overhaul:silver_coin",
                        "weight": 1
                    },
                    {
                        "item": "minecraft:spider_eye",
                        "weight": 4
                    },
                    {
                        "item": "minecraft:string",
                        "weight": 5
                    },
                    {
                        "item": "numismatic-overhaul:bronze_coin",
                        "weight": 6
                    },
                    {
                        "item": "numismatic-overhaul:bronze_coin",
                        "weight": 7
                    },
                    {
                        "item": "numismatic-overhaul:bronze_coin",
                        "weight": 8
                    }
                ]
            }
           ]
    },
    // Legendary tier bounty mobs
    "LEGENDARY_TIER": {
        // Spawn weight of this tier (higher number is higher chance of spawn) [default = 3]
        "spawnChance": 4.5,
        // This tier's Mob size scale [default = 2.7]
        "mobSizeScale": 3.7,
        // This tier's mob outline color in Decimal format [default = 32093]
        "glowColor": 32093,
        // Base bonus health for this tier [default = 60]
        "baseBonusHealth": 60,
        // Experience scale for this tier [default = 15]
        "experienceScale": 15,
        // Health increase per bounty score milestone [default = 25]
        "milestoneHealthIncrease": 25,
        // Damage increase per player bounty score level [default = 0.5]
        "milestoneDamageIncrease": 0.5,
        // Drops data.  See COMMON_TIER's config for example configuration schema and documentation.
        "drops": [
            {
                "entityId": "minecraft:creeper",
                "dropChance": 0.75,
                "rolls": 30,
                "items": [
                    {
                        "item": "minecraft:totem_of_undying",
                        "weight": 1
                    },
                    {
                        "item": "minecraft:gold",
                        "weight": 2
                    },
                    {
                        "item": "minecraft:tnt",
                        "weight": 3
                    },
                    {
                        "item": "vanillatweaks:dynamite",
                        "weight": 4
                    },
                    {
                        "item": "numismatic-overhaul:silver_coin",
                        "weight": 5
                    },
                    {
                        "item": "numismatic-overhaul:silver_coin",
                        "weight": 6
                    },
                    {
                        "item": "numismatic-overhaul:silver_coin",
                        "weight": 7
                    },
                    {
                        "item": "numismatic-overhaul:silver_coin",
                        "weight": 8
                    }
            },
            {
                "entityId": "minecraft:zombie",
                "dropChance": 0.75,
                "rolls": 30,
                "items": [
                    {
                        "item": "minecraft:enchanted_golden_apple",
                        "weight": 2
                    },
                    {
                        "item": "minecraft:diamond",
                        "weight": 1
                    },
                    {
                        "item": "minecraft:iron_block",
                        "weight": 3
                    },
                    {
                        "item": "minecraft:iron_block",
                        "weight": 4
                    },
                    {
                        "item": "numismatic-overhaul:silver_coin",
                        "weight": 5
                    },
                    {
                        "item": "numismatic-overhaul:silver_coin",
                        "weight": 6
                    },
                    {
                        "item": "numismatic-overhaul:silver_coin",
                        "weight": 7
                    },
                    {
                        "item": "numismatic-overhaul:silver_coin",
                        "weight": 8
                    }
                ]
            },
            {
                "entityId": "minecraft:skeleton",
                "dropChance": 0.75,
                "rolls": 30,
                "items": [
                    {
                        "item": "impaled:atlan",
                        "weight": 1
                    },
                    {
                        "item": "minecraft:gold_block",
                        "weight": 2
                    },
                    {
                        "item": "minecraft:golden_apple",
                        "weight": 3
                    },
                    {
                        "item": "lootgoblins:gold_bone_item",
                        "weight": 4
                    },
                    {
                        "item": "numismatic-overhaul:silver_coin",
                        "weight": 5
                    },
                    {
                        "item": "numismatic-overhaul:silver_coin",
                        "weight": 6
                    },
                    {
                        "item": "numismatic-overhaul:silver_coin",
                        "weight": 7
                    },
                    {
                        "item": "numismatic-overhaul:silver_coin",
                        "weight": 8
                    }
                ]
            },
            {
                "entityId": "minecraft:witch",
                "dropChance": 0.75,
                "rolls": 30,
                "items": [
                    {
                        "item": "minecraft:netherite_ingot",
                        "weight": 2
                    },
                    {
                        "item": "minecraft:netherite_ingot",
                        "weight": 1
                    },
                    {
                        "item": "minecraft:netherite_ingot",
                        "weight": 3
                    },
                    {
                        "item": "minecraft:redstone_block",
                        "weight": 4
                    },
                    {
                        "item": "minecraft:netherite_scrap",
                        "weight": 5
                    },
                    {
                        "item": "minecraft:gold_block",
                        "weight": 6
                    },
                    {
                        "item": "numismatic-overhaul:silver_coin",
                        "weight": 7
                    },
                    {
                        "item": "numismatic-overhaul:silver_coin",
                        "weight": 8
                    }
                ]
            },
            {
                "entityId": "minecraft:spider",
                "dropChance": 0.75,
                "rolls": 30,
                "items": [
                    {
                        "item": "minecraft:enchanted_golden_apple",
                        "weight": 2
                    },
                    {
                        "item": "minecraft:experience_bottle",
                        "weight": 3
                    },
                    {
                        "item": "minecraft:golden_apple",
                        "weight": 1
                    },
                    {
                        "item": "minecraft:lootgoblins_iron_eye_item",
                        "weight": 4
                    },
                    {
                        "item": "minecraft:string",
                        "weight": 5
                    },
                    {
                        "item": "numismatic-overhaul:silver_coin",
                        "weight": 6
                    },
                    {
                        "item": "numismatic-overhaul:silver_coin",
                        "weight": 7
                    },
                    {
                        "item": "numismatic-overhaul:silver_coin",
                        "weight": 8
                    }
                ]
            }
           ]
    },
    // Doom tier bounty mobs
    "DOOM_TIER": {
        // Spawn weight of this tier (higher number is higher chance of spawn) [default = 1]
        "spawnChance": 1,
        // This tier's Mob size scale [default = 3.0]
        "mobSizeScale": 8.0,
        // This tier's mob outline color in Decimal format [default = 7012352]
        "glowColor": 7012352,
        // Base bonus health for this tier [default = 70]
        "baseBonusHealth": 100,
        // Experience scale for this tier [default = 20]
        "experienceScale": 75,
        // Health increase per bounty score milestone [default = 30]
        "milestoneHealthIncrease": 30,
        // Damage increase per player bounty score level [default = 0.6]
        "milestoneDamageIncrease": 0.6,
        // Drops data.  See COMMON_TIER's config for example configuration schema and documentation.
        "drops": [
            {
                "entityId": "minecraft:creeper",
                "dropChance": 0.5,
                "rolls": 100,
                "items": [
                    {
                        "item": "minecraft:totem_of_undying",
                        "weight": 1
                    },
                    {
                        "item": "minecraft:diamond_block",
                        "weight": 2
                    },
                    {
                        "item": "minecraft:netherite_ingot",
                        "weight": 3
                    },
                    {
                        "item": "minecraft:enchanted_golden_apple",
                        "weight": 4
                    },
                    {
                        "item": "numismatic-overhaul:gold_coin",
                        "weight": 5
                    },
                    {
                        "item": "minecraft:iron_block",
                        "weight": 6
                    },
                    {
                        "item": "minecraft:experience_bottle",
                        "weight": 7
                    },
                    {
                        "item": "minecraft:gold_block",
                        "weight": 8
                    }
                ]
            },
            {
                "entityId": "minecraft:zombie",
                "dropChance": 0.5,
                "rolls": 100,
                "items": [
                    {
                        "item": "minecraft:totem_of_undying",
                        "weight": 1
                    },
                    {
                        "item": "minecraft:diamond_block",
                        "weight": 2
                    },
                    {
                        "item": "minecraft:netherite_ingot",
                        "weight": 3
                    },
                    {
                        "item": "minecraft:enchanted_golden_apple",
                        "weight": 4
                    },
                    {
                        "item": "numismatic-overhaul:gold_coin",
                        "weight": 5
                    },
                    {
                        "item": "minecraft:iron_block",
                        "weight": 6
                    },
                    {
                        "item": "minecraft:experience_bottle",
                        "weight": 7
                    },
                    {
                        "item": "minecraft:gold_block",
                        "weight": 8
                    }
                ]
            },
            {
                "entityId": "minecraft:skeleton",
                "dropChance": 0.5,
                "rolls": 100,
                "items": [
                    {
                        "item": "minecraft:totem_of_undying",
                        "weight": 1
                    },
                    {
                        "item": "minecraft:diamond_block",
                        "weight": 2
                    },
                    {
                        "item": "minecraft:netherite_ingot",
                        "weight": 3
                    },
                    {
                        "item": "minecraft:enchanted_golden_apple",
                        "weight": 4
                    },
                    {
                        "item": "numismatic-overhaul:gold_coin",
                        "weight": 5
                    },
                    {
                        "item": "minecraft:iron_block",
                        "weight": 6
                    },
                    {
                        "item": "minecraft:experience_bottle",
                        "weight": 7
                    },
                    {
                        "item": "minecraft:gold_block",
                        "weight": 8
                    }
                ]
            },
            {
                "entityId": "minecraft:witch",
                "dropChance": 0.5,
                "rolls": 100,
                "items": [
                    {
                        "item": "minecraft:totem_of_undying",
                        "weight": 1
                    },
                    {
                        "item": "minecraft:diamond_block",
                        "weight": 2
                    },
                    {
                        "item": "minecraft:netherite_ingot",
                        "weight": 3
                    },
                    {
                        "item": "minecraft:enchanted_golden_apple",
                        "weight": 4
                    },
                    {
                        "item": "numismatic-overhaul:gold_coin",
                        "weight": 5
                    },
                    {
                        "item": "minecraft:iron_block",
                        "weight": 6
                    },
                    {
                        "item": "minecraft:experience_bottle",
                        "weight": 7
                    },
                    {
                        "item": "minecraft:gold_block",
                        "weight": 8
                    }
                ]
            },
            {
                "entityId": "minecraft:spider",
                "dropChance": 0.5,
                "rolls": 100,
                "items": [
                    {
                        "item": "minecraft:totem_of_undying",
                        "weight": 1
                    },
                    {
                        "item": "minecraft:diamond_block",
                        "weight": 2
                    },
                    {
                        "item": "minecraft:netherite_ingot",
                        "weight": 3
                    },
                    {
                        "item": "minecraft:enchanted_golden_apple",
                        "weight": 4
                    },
                    {
                        "item": "numismatic-overhaul:gold_coin",
                        "weight": 5
                    },
                    {
                        "item": "minecraft:iron_block",
                        "weight": 6
                    },
                    {
                        "item": "minecraft:experience_bottle",
                        "weight": 7
                    },
                    {
                        "item": "minecraft:gold_block",
                        "weight": 8
                    }
                ]
            }
           ]
    }
}
spoorn commented 2 years ago

ah, yes it's invalid. You added drops for the tiers, but it's commented out at the top:

image

You instead put your drops into the commented example. There were also missing brackets, for each "items" array within each "drops" object. Also, Strings within Strings need to have the quotation marks escaped using '\'.

I also noticed you have all the weights set to in order from 1-8. Weights are relative, so if you want all the items to drop at the same rate, put them to the same weight, like "1". If you intended to make them from rare to common like that, then that's fine.

I'd suggest you use a better text editor if possible that has support for json5, such as Visual Studio Code. I fixed it for you here though: https://gist.github.com/spoorn/fec99b87bc6a34a2ddf93cd4dc71e355

Another thing, I noticed you're adding NBT tags to the item drops: "item": "minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:blast_protection\",lvl:2s}]}",. I don't yet support NBT tags and there's an open Issue for it: https://github.com/spoorn/SpoornBountyMobs/issues/5. I'll try to see if I can add support for this later today

spoorn commented 2 years ago

I just added support for NBT data. Update to the latest SpoornBountyMobs for 1.18+, and copy paste the gist I linked above and it should work. Let me know if there are still problems!

Ricenami commented 2 years ago

Hey, I really appreciate all of the help. I used your fixed config file, and updated to 2.6.4 1.18.2, but unfortunately I got an error and crashed.

Here's the crash report:

---- Minecraft Crash Report ---- // Uh... Did I do that?

Time: 6/23/22, 4:43 PM Description: Exception in server tick loop

java.lang.RuntimeException: [SpoornBountyMobs] [SpoornBountyEntityRegistry] Item regex {minecraft:enchanted_book{StoredEnchantments:[{id:"minecraft:blast_protection",lvl:2s}]}} is not in a valid format. Please check the config file at config/spoornbountymobs.json5 for acceptable formats. at Not Enough Crashes deobfuscated stack trace.(1.18.2+build.2) at org.spoorn.spoornbountymobs.entity.SpoornBountyEntityRegistry.lambda$registerServerStartedCallback$2(SpoornBountyEntityRegistry.java:127) at net.fabricmc.fabric.api.event.lifecycle.v1.ServerLifecycleEvents.lambda$static$2(ServerLifecycleEvents.java:49) at net.minecraft.server.MinecraftServer.handler$dlf000$afterSetupServer(MinecraftServer:7312) at net.minecraft.server.MinecraftServer.runServer(MinecraftServer:676) at net.minecraft.server.MinecraftServer.method_29739(MinecraftServer:273) at java.lang.Thread.run(Thread.java:833)

A detailed walkthrough of the error, its code path and all known details is as follows:

-- System Details -- Details: Minecraft Version: 1.18.2 Minecraft Version ID: 1.18.2 Operating System: Windows 10 (amd64) version 10.0 Java Version: 17.0.1, Microsoft Java VM Version: OpenJDK 64-Bit Server VM (mixed mode), Microsoft Memory: 10139840376 bytes (9670 MiB) / 17179869184 bytes (16384 MiB) up to 17179869184 bytes (16384 MiB) CPUs: 16 Processor Vendor: AuthenticAMD Processor Name: AMD Ryzen 7 5800X 8-Core Processor
Identifier: AuthenticAMD Family 25 Model 33 Stepping 0 Microarchitecture: unknown Frequency (GHz): 4.20 Number of physical packages: 1 Number of physical CPUs: 8 Number of logical CPUs: 16 Graphics card #0 name: NVIDIA GeForce RTX 3080 Graphics card #0 vendor: NVIDIA (0x10de) Graphics card #0 VRAM (MB): 4095.00 Graphics card #0 deviceId: 0x2216 Graphics card #0 versionInfo: DriverVersion=30.0.15.1259 Memory slot #0 capacity (MB): 8192.00 Memory slot #0 clockSpeed (GHz): 3.60 Memory slot #0 type: DDR4 Memory slot #1 capacity (MB): 8192.00 Memory slot #1 clockSpeed (GHz): 3.60 Memory slot #1 type: DDR4 Memory slot #2 capacity (MB): 8192.00 Memory slot #2 clockSpeed (GHz): 3.60 Memory slot #2 type: DDR4 Memory slot #3 capacity (MB): 8192.00 Memory slot #3 clockSpeed (GHz): 3.60 Memory slot #3 type: DDR4 Virtual memory max (MB): 37547.03 Virtual memory used (MB): 30760.36 Swap memory total (MB): 4864.00 Swap memory used (MB): 80.18 JVM Flags: 22 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xss1M -Xms16G -Xmx16G -XX:+UseG1GC -XX:+ParallelRefProcEnabled -XX:MaxGCPauseMillis=200 -XX:+UnlockExperimentalVMOptions -XX:+DisableExplicitGC -XX:+AlwaysPreTouch -XX:G1NewSizePercent=40 -XX:G1MaxNewSizePercent=50 -XX:G1HeapRegionSize=16M -XX:G1ReservePercent=15 -XX:G1HeapWastePercent=5 -XX:G1MixedGCCountTarget=4 -XX:InitiatingHeapOccupancyPercent=20 -XX:G1MixedGCLiveThresholdPercent=90 -XX:G1RSetUpdatingPauseTimePercent=5 -XX:SurvivorRatio=32 -XX:+PerfDisableSharedMem -XX:MaxTenuringThreshold=1 Fabric Mods: advancednetherite: Advanced Netherite 1.5.1-1.18.2 advancementplaques: Advancement Plaques 1.4.4 ambientsounds: Ambiend Sounds (Fabric) 5.0.16 appleskin: AppleSkin 2.4.0+mc1.18.2 arcanus: Arcanus 1.28 architectury: Architectury 4.5.74 armorchroma: Armor Chroma 1.2.1 artifacts: Artifacts 7.0.3+fabric expandability: ExpandAbility 6.0.0 step-height-entity-attribute: Step Height Entity Attribute 1.0.0 attributefix: AttributeFix 14.0.2 autoconfig1u: Auto Config v1 Updated 3.4.0 awesomedungeon: Awesome Dungeon 2.0.9 awesomedungeonend: Awesome Dungeon Edition end 1.0.2 awesomedungeonnether: Awesome Dungeon Edition Nether 1.0.2 awesomedungeonocean: Awesome Dungeon Edition Ocean 2.0.7 balm-fabric: Balm 3.0.0+0 bclib: BCLib 1.4.6 beaconoverhaul: Beacon Overhaul 1.6.0+1.18.2 reach-entity-attributes: Reach Entity Attributes 2.1.1 betterbiomeblend: Better Biome Blend 1.18.2-1.3.5-fabric betterdungeons: YUNG's Better Dungeons 1.18.2-Fabric-2.1.0 betterenchantmentboosting: Better Enchantment Boosting 1.2.0 betterend: Better End 1.1.0 betterf3: BetterF3 1.2.5 betterfpsdist: Better FPS distance Mod 1.18-1.8 bettermending: Better Mending 1.2.0+1.18.2 midnightlib: MidnightLib 0.4.4 bettermineshafts: YUNG's Better Mineshafts 1.18.2-Fabric-2.1.3 bettermounthud: Better Mount HUD 1.1.4 betternether: Better Nether 6.1.1 betterstrongholds: YUNG's Better Strongholds 1.18.2-Fabric-2.1.1 blur: Blur (Fabric) 2.4.1 bookshelf: Bookshelf 13.0.13 bosses_of_mass_destruction: Bosses of Mass Destruction (Beta) 1.3.7-1.18.2 maelstrom_library: Maelstrom Library 1.2.4-1.18.2 multipart_entities: MultipartEntities 1.1.5-1.18.2 capetweaks: Cape Tweaks 1.0.0 cardinal-components: Cardinal Components API 4.1.4 cardinal-components-base: Cardinal Components API (base) 4.1.4 cardinal-components-block: Cardinal Components API (blocks) 4.1.4 cardinal-components-chunk: Cardinal Components API (chunks) 4.1.4 cardinal-components-entity: Cardinal Components API (entities) 4.1.4 cardinal-components-item: Cardinal Components API (items) 4.1.4 cardinal-components-level: Cardinal Components API (world saves) 4.1.4 cardinal-components-scoreboard: Cardinal Components API (scoreboard) 4.1.4 cardinal-components-world: Cardinal Components API (worlds) 4.1.4 carpet: Carpet Mod 1.4.69 carrier: Carrier 1.10.0 advanced_runtime_resource_pack: Runtime Resource Pack 0.5.5 chat_heads: Chat Heads 0.6.0 chatsounds: Chat Sounds 1.1.2 chime: Chime 1.2.1 chubby_stuff: Chubby Stuff 1.0.1 chunky: Chunky 1.2.164 cleancut: CleanCut 1.18.2-5.0-fabric cleardespawn: Clear Despawn 1.1.7 clickadv: Clickable Advancements Mod 2.6 cloth-api: Cloth API 3.2.64 cloth-client-events-v0: Cloth Client Events v0 3.2.64 cloth-common-events-v1: Cloth Common Events v1 3.2.64 cloth-datagen-api-v1: Cloth Datagen v1 3.2.64 cloth-scissors-api-v1: Cloth Scissors API v1 3.2.64 cloth-utils-v1: Cloth Utils v1 3.2.64 cloth-config: Cloth Config v6 6.2.62 cloth-basic-math: cloth-basic-math 0.6.1 collective-fabric: Collective (Fabric) 4.26 fiber: fiber 0.23.0-2 colytra: Colytra 2.1.1-1.18.1 companion: Companion 2.0.1 cosmetic-armor: Cosmetic Armor 1.3.1 couplings: Couplings 1.8.0+1.18.2 com_electronwill_night-config_core: core 3.6.5 com_electronwill_night-config_toml: toml 3.6.5 craftingtweaks: Crafting Tweaks 13.0.0 create: Create mc1.18.2_v0.4.1+631 com_google_code_findbugs_jsr305: jsr305 3.0.2 fake-player-api: Fake Player API 0.3.0 flywheel: Flywheel 1.18-0.7.0.26 forge_tags: Forge Tags 2.1 milk: Milk Lib 0.3.2 dripstone_fluid_lib: Dripstone Fluid Lib 1.2.0 noindium: No Indium? 1.0.1+1.18.2 porting_lib: Porting Lib 1.1.317-beta+1.18.2-dev.7ad1f24 serialization_hooks: Serialization Hooks 0.2.0+1.18.f5d4aa6 registrate-fabric: Registrate for Fabric MC1.18.2-1.0.3 creativecore: CreativeCore (Fabric) 2.6.5 creeperoverhaul: Creeper Overhaul 1.3.0 crops_love_rain: Crops Love Rain 1.2.2 custom-crosshair-mod: Custom Crosshair Mod 1.4.0-fabric damagetilt: Damage Tilt 1.18-fabric-0.1.2 darkpaintings: DarkPaintings 10.0.3 dashloader: DashLoader 4.0.0 com_github_luben_zstd-jni: zstd-jni 1.5.2-2 dev_quantumfusion_hyphen: Hyphen 0.2.2 dev_quantumfusion_taski: Taski 1.1.0 dawn: Dawn API 3.3.0 deathknell: DeathKnell 3.0.2 deathlog: DeathLog 0.2.9+1.18 debugify: Debugify 1.11.0 com_github_llamalad7_mixinextras: mixinextras 0.0.10 despawningeggshatch-fabric: Despawning Eggs Hatch (Fabric) 2.3 dragonfight: Dragonfight Mod 1.18.2-2.4 dual_riders: Dual Riders 1.1.1 dualwielding: Dual Wielding 1.1.0 dummmmmmy: MmmMmmMmmMmm 1.18-1.5.0 dusk: Dusk Mod 1.18.2-2.1 dynamicfps: Dynamic FPS 2.0.6 com_moandjiezana_toml_toml4j: toml4j 0.7.2 earthbounds: Earthbounds 1.0.5c easiervillagertrading: EasierVillagerTrading 1.18.2-fabric0.47.10-1.5.4 gbfabrictools: GBfabrictools 1.3.4+1.18.2 eatinganimationid: Eating Animation 1.8 ecologics: Ecologics 1.5.4 effective: Effective 1.2.1 enchdesc: EnchantmentDescriptions 10.0.4 endgoblintraders: End Goblin Traders 1.5 (Re-upload) enhancedcelestials: Enhanced Celestials 2.0.7 entitycollisionfpsfix: Entity Collision FPS Fix 1.0.0 equipmentcompare: Equipment Compare 1.2.12 experiencebugfix: Experience Bug Fix 18 extraalchemy: Extra Alchemy 1.8.1 extrasounds: ExtraSounds 2.3.1+1.18.2 fabric: Fabric API 0.56.0+1.18.2 fabric-api-base: Fabric API Base 0.4.4+d7c144a860 fabric-api-lookup-api-v1: Fabric API Lookup API (v1) 1.6.2+2373a54560 fabric-biome-api-v1: Fabric Biome API (v1) 8.0.4+7b0f312660 fabric-blockrenderlayer-v1: Fabric BlockRenderLayer Registration (v1) 1.1.12+3ac43d9560 fabric-command-api-v1: Fabric Command API (v1) 1.1.9+d7c144a860 fabric-commands-v0: Fabric Commands (v0) 0.2.8+b4f4f6cd60 fabric-containers-v0: Fabric Containers (v0) 0.1.22+d7c144a860 fabric-content-registries-v0: Fabric Content Registries (v0) 3.1.0+6f01bfd860 fabric-convention-tags-v1: Fabric Convention Tags 1.0.1+474e4f7960 fabric-crash-report-info-v1: Fabric Crash Report Info (v1) 0.2.1+ee261a3e60 fabric-data-generation-api-v1: Fabric Data Generation API (v1) 3.0.0+9fcb91d260 fabric-dimensions-v1: Fabric Dimensions API (v1) 2.1.19+ffb2c71e60 fabric-entity-events-v1: Fabric Entity Events (v1) 1.4.8+d7c144a860 fabric-events-interaction-v0: Fabric Events Interaction (v0) 0.4.19+d7c144a860 fabric-events-lifecycle-v0: Fabric Events Lifecycle (v0) 0.2.18+d7c144a860 fabric-game-rule-api-v1: Fabric Game Rule API (v1) 1.0.13+d7c144a860 fabric-item-api-v1: Fabric Item API (v1) 1.5.1+6c4e5d0960 fabric-item-groups-v0: Fabric Item Groups (v0) 0.3.13+91896a4960 fabric-key-binding-api-v1: Fabric Key Binding API (v1) 1.0.12+54e5b2ec60 fabric-keybindings-v0: Fabric Key Bindings (v0) 0.2.10+b4f4f6cd60 fabric-lifecycle-events-v1: Fabric Lifecycle Events (v1) 2.1.0+cc71601c60 fabric-loot-api-v2: Fabric Loot API (v2) 1.0.0+e747827960 fabric-loot-tables-v1: Fabric Loot Tables (v1) 1.1.0+e747827960 fabric-mining-level-api-v1: Fabric Mining Level API (v1) 2.1.3+cc71601c60 fabric-models-v0: Fabric Models (v0) 0.3.6+d7c144a860 fabric-networking-api-v1: Fabric Networking API (v1) 1.0.22+e6b169eb60 fabric-networking-v0: Fabric Networking (v0) 0.3.9+b4f4f6cd60 fabric-object-builder-api-v1: Fabric Object Builder API (v1) 2.1.2+032c981d60 fabric-particles-v1: Fabric Particles (v1) 0.2.12+526dc1ac60 fabric-registry-sync-v0: Fabric Registry Sync (v0) 0.9.9+0d9ab37260 fabric-renderer-api-v1: Fabric Renderer API (v1) 0.4.13+d882b91560 fabric-renderer-indigo: Fabric Renderer - Indigo 0.5.0+7faf0d8860 fabric-renderer-registries-v1: Fabric Renderer Registries (v1) 3.2.11+b4f4f6cd60 fabric-rendering-data-attachment-v1: Fabric Rendering Data Attachment (v1) 0.3.7+d7c144a860 fabric-rendering-fluids-v1: Fabric Rendering Fluids (v1) 2.0.2+54e5b2ec60 fabric-rendering-v0: Fabric Rendering (v0) 1.1.13+b4f4f6cd60 fabric-rendering-v1: Fabric Rendering (v1) 1.10.7+54e5b2ec60 fabric-resource-conditions-api-v1: Fabric Resource Conditions API (v1) 2.0.3+91b7aa6660 fabric-resource-loader-v0: Fabric Resource Loader (v0) 0.5.1+e747827960 fabric-screen-api-v1: Fabric Screen API (v1) 1.0.10+d882b91560 fabric-screen-handler-api-v1: Fabric Screen Handler API (v1) 1.2.1+1f6558e860 fabric-textures-v0: Fabric Textures (v0) 1.0.12+3ac43d9560 fabric-transfer-api-v1: Fabric Transfer API (v1) 1.6.3+f4563ac860 fabric-transitive-access-wideners-v1: Fabric Transitive Access Wideners (v1) 1.1.0+e747827960 fabric-language-kotlin: Fabric Language Kotlin 1.7.3+kotlin.1.6.20 org_jetbrains_kotlin_kotlin-reflect: kotlin-reflect 1.6.20 org_jetbrains_kotlin_kotlin-stdlib: kotlin-stdlib 1.6.20 org_jetbrains_kotlin_kotlin-stdlib-jdk7: kotlin-stdlib-jdk7 1.6.20 org_jetbrains_kotlin_kotlin-stdlib-jdk8: kotlin-stdlib-jdk8 1.6.20 org_jetbrains_kotlinx_kotlinx-coroutines-core-jvm: kotlinx-coroutines-core-jvm 1.6.1 org_jetbrains_kotlinx_kotlinx-coroutines-jdk8: kotlinx-coroutines-jdk8 1.6.1 org_jetbrains_kotlinx_kotlinx-serialization-cbor-jvm: kotlinx-serialization-cbor-jvm 1.3.2 org_jetbrains_kotlinx_kotlinx-serialization-core-jvm: kotlinx-serialization-core-jvm 1.3.2 org_jetbrains_kotlinx_kotlinx-serialization-json-jvm: kotlinx-serialization-json-jvm 1.3.2 fabricloader: Fabric Loader 0.14.6 fallingleaves: Falling Leaves 1.10.0+1.18.2 fallingtree: FallingTree 3.4.1 farmersdelight: Farmer's Delight 1.18.2-0.2.1 farsight: Farsight Mod 1.18-1.9 fasttoolswitching: Fast Tool Switching 1.0.0 feature_nbt_deadlock_be_gone: Feature NBT Deadlock Be Gone - Fabric 2.0.0+1.18.2-rc1 ferritecore: FerriteCore 4.2.0 fleeinganimals: Fleeing Mobs 1.0.1 flesh2leather: Flesh2Leather 1.0.3+1.18.2 flytre_lib: FlytreLib 1.8.1 forgeconfigapiport: Forge Config API Port 3.2.0 fractalportals: FractalPortals 1.3.3 customportalapi: Custom Portal Api 0.0.1-beta50-1.18 friendlyfire: FriendlyFire 11.0.2 friendsandfoes: Friends&Foes 1.4.3 mm: Manningham Mills 2.3 furnacemk2: Furnace Mk2 0.1.13 geckolib3: Geckolib 3.0.42 com_eliotlash_mclib_mclib: mclib 18 com_eliotlash_molang_molang: molang 18 giantspawn-fabric: Giant Spawn (Fabric) 2.7 go-fish: Go Fish 1.5.0-1.18.2 goblintraders: Goblin Traders 1.5.1 goldenhoppers: Golden Hoppers 1.3.3 grindenchantments: Grind Enchantments 1.5.1+1.18.2 guardvillagers: Guard Villagers Fabric 1.18.2-1.0.14 guild: Guild 0.4.0 highlighter: Highlighter 1.1.2 hookshot: Hookshot 25.0 hopobetterruinedportal: Hopo Better Ruined Portal 1.3 hopobetterunderwaterruins: Hopo Better Underwater Ruins 1.0.5 horseinboat: HorseInBoat 1.1.2 iceberg: Iceberg 1.0.38 illuminations: Illuminations 1.10.4 immersive_armors: Immersive Armors 1.3.4 impaled: Impaled 1.1.3 incantationem: Incantationem 1.1.3+1.18.2 indium: Indium 1.0.6+mc1.18.2 infinitetrading-fabric: Infinite Trading (Fabric) 2.1 inmis: Inmis 2.6.0-1.18.2 omega-config: OmegaConfig 1.2.3-1.18.1 inventorytabs: Inventory Tabs 0.4.4-1.18.x iris: Iris 1.2.4-build.38 org_anarres_jcpp: jcpp 1.4.14 itemborders: Item Borders 1.1.5 itemmodelfix: Item Model Fix 1.0.3+1.18 java: OpenJDK 64-Bit Server VM 17 journeymap-fabric: Journeymap 5.8.4 journeymap-api-fabric: JourneyMap API 1.18.2-1.8-fabric-SNAPSHOT keepthatmusic: Keep That Music 0.0.3 krypton: Krypton 0.1.9 com_velocitypowered_velocity-native: velocity-native 1.1.0-SNAPSHOT lapisreserve: Lapis Reserve 1.0.8 lazydfu: LazyDFU 0.1.2 legendarytooltips: Legendary Tooltips 1.2.4 libraryferret: Library Ferret 1.0.3 lithium: Lithium 0.7.10 lootgoblins: Lootgoblins 1.0.8 lootr: Lootr 0.3.20.57 lucky: Lucky Block 1.18.2-13.0 make_bubbles_pop: Make Bubbles Pop Mod 0.0.1-1.18.2 memoryleakfix: memory Leak Fix 1.18.2-0.3.3 minecraft: Minecraft 1.18.2 modid: Creatures Of The Snow 2.1.0+1.18.2 modmenu: Mod Menu 3.1.0 monsters_in_the_closet: Monsters in the Closet 1.0.3+1.18 morevillagers-fabric: MoreVillagersFabric 3.2.0-SNAPSHOT mostructures: Mo' Structures 1.4.2+1.18.2 mousewheelie: Mouse Wheelie 1.9.0+mc1.18.2 amecsapi: Amecs API 1.3.6+mc22w06a coat: Coat 1.0.0-beta.18+mc1.18.2 tweed4_annotated: tweed4_annotated 1.3.0+mc1.18.2 tweed4_base: tweed4_base 1.5.0+mc1.18.2 tweed4_data: tweed4_data 1.2.1+mc1.18.2 tweed4_data_hjson: tweed4_data_hjson 1.1.0+mc1.18.2 tweed4_tailor_coat: tweed4_tailor_coat 1.1.2+mc1.18.2 tweed4_tailor_screen: tweed4_tailor_screen 1.1.1+mc1.18.2 not_enough_gamerules: Not Enough Gamerules 1.4.2-release notenoughanimations: NotEnoughAnimations 1.5.0 notenoughcrashes: Not Enough Crashes 4.1.6+1.18.2 noweakattack: No Weak Attack 1.2.0 numismatic-overhaul: Numismatic Overhaul 0.2.2+1.18 stacc: Stacc 1.3.0 nyfsquiver: Nyf's Quivers Fabric-0.5.0-1.18.2 owo: oωo 0.7.2-no-cme+1.18 oxidized: Oxidized 1.6.4 packet_size_doubler: Packet Size Doubler 1.1.0 patchouli: Patchouli 1.18.2-69-FABRIC pehkui: Pehkui 3.3.2+1.14.4-1.19 kanos_config: Kanos Config 0.3.1+1.14.4-1.19 pickupnotifier: Pick Up Notifier 3.2.0 pipe: Pipe 1.7.0 pling: Pling 1.5.0 polymorph: Polymorph 0.0.20-1.18.2 portal_accessibility: Nether Portal Accessibility 1.0.0-mc1.18.2 presencefootsteps: Presence Footsteps 1.5.0 kirin: Kirin UI 1.10.0 prettybeaches: Pretty Beaches 7.0.0 probablychests: Probably Chests 0.4.3 libgui: LibGui 5.3.2+1.18.2 jankson: Jankson 4.0.0+j1.2.0 blue_endless_jankson: jankson 1.2.1 libninepatch: LibNinePatch 1.1.0 publicguiannouncement: Public Gui Announcement 3.2.0.1 puzzleslib: Puzzles Lib 3.3.5 rare-ice: Rare Ice 0.4.1 repurposed_structures: Repurposed Structures 4.1.11+1.18.2 reroll: Reroll 1.5.0-1.18.2 omega-config-gui: Omega Config GUI 1.2.1-1.18.1 cloth-config-lite: cloth-config-lite 2.0.6 respawnablepets: Respawnable Pets 1.18-4 revamped_phantoms: Revamped Phantoms 0.2.3 ringsofascension: Rings of Ascension 1.0.1 roughlyenoughitems: Roughly Enough Items 8.2.490 rpgdifficulty: Rpg Difficulty 1.0.12 saplanting: Saplanting fabric-1.18.2-1.1.1 screencopy: Screencopy 1.1.0 com_github_ramanrajarathinam_native-utils: native-utils 1.0.0 io_github_imurx_arboard: arboard 1.1.0 seamless_loading_screen: Seamless Loading Screen 1.4.0+1.18.2 securecrops: Secure Crops [Fabric] 0.2.0-1.18.2 seedfix: Seed Fix 1.0.1 sentimentality3: Sentimentality 3 1.5.0 sewing-machine: Sewing Machine 1.5.2 shifty-hotbar: Shifty Hotbar 1.1 simple_veinminer: Cyan's Simple Veinminer 1.2.1 completeconfig: CompleteConfig 1.3.3 skeletonhorsespawn-fabric: Skeleton Horse Spawn (Fabric) 1.9 skinlayers: 3d Skin Layers 1.4.6-mc1.18.2 skylorlib: SkyLib 1.3.35 slimyboyos: Slimy Boyos 4.0.0.7 smoothchunk: Smooth chunk save Mod 1.18.2-1.9 smoothcoasters: SmoothCoasters 1.18.2-v1 smoothscrollingeverywhere: Smooth Scrolling Everywhere 3.0.3-unstable smoothswapping: Smooth Swapping 0.4.4 sodium: Sodium 0.4.1+build.15 org_joml_joml: joml 1.10.2 sound_physics_remastered: Sound Physics Remastered 1.18.2-1.0.6 soundcategories: Sound Categories 1.2.4+1.18 spark: spark 1.9.11 fabric-permissions-api-v0: fabric-permissions-api 0.1-SNAPSHOT spoornbountymobs: SpoornBountyMobs 2.6.4-1.18 org_apache_commons_commons-math3: commons-math3 3.3 spoornweaponattributes: SpoornWeaponAttributes 3.4 net_objecthunter_exp4j: exp4j 0.4.8 stackablepotions: Stackable Potions 1.0.0 starlight: Starlight 1.0.2+fabric.89b8d9f stoneholm: Stoneholm 1.4.3 strawgolem: Straw Golem 2.0.0b1 sync: Sync (Fabric) 3.2 crowdin-translate: CrowdinTranslate 1.4+1.18.2 smart-recipes: Smart Recipes 0.2.0+1.18.2 team_reborn_energy: Energy 2.2.0 t_and_t: Towns and Towers - Structure Add-on 1.6 tenshilib: TenshiLib 1.18.2-1.6.5 the_aether: Paradise Lost 1.6.8+1.18.2 gud_recipe_confidence: Recipe Confidence 1.0.2 incubus_core: Incubus Core 1.6.6+1.18.2 moretags: More Tags 3.0.3 satin: Satin 1.7.2 the_extractinator: The Extractinator 1.0.8 things: Things 0.2.16+1.18 thonkutil: ThonkUtil 2.12.0+1.18 thonkutil-base: ThonkUtil Base 1.12.0+93f5607360 thonkutil-capes-v1: ThonkUtil Capes (v1) 1.3.1+974d16dd60 thonkutil-coords-v1: ThonkUtil Coords (v1) 1.0.18+4c66479160 thonkutil-customization-v1: ThonkUtil Customization (v1) 1.0.13+4c66479160 thonkutil-legacy: ThonkUtil Legacy 1.0.19+aa74e18060 thonkutil-modchecker-v1: ThonkUtil ModChecker (v1) 1.0.11+4c66479160 thonkutil-potions-v0: ThonkUtil Potions (v0) 1.4.0+6d0d59d760 thonkutil-titlescreen-v1: ThonkUtil TitleScreen (v1) 1.1.8+4c66479160 thonkutil-trades-v1: ThonkUtil Trades (v1) 1.1.19+4c66479160 toolleveling: ToolLeveling+ 1.18.1 - 1.3.0 toolstats: ToolStats 9.0.1 tooltipfix: ToolTip Fix 1.0.4-1.18 tradingpost: Trading Post 3.2.0 transparent_cosmetics: Transparent Cosmetics 1.4.0 trashslot: TrashSlot 11.0.2 travelersbackpack: Traveler's Backpack 1.18.2-7.1.1 travelerstitles: Traveler's Titles 1.18.2-Fabric-2.1.1 trinketofundying: Trinket of Undying 2.0.1-1.18 trinkets: Trinkets 3.3.0 unstructured: Unstructured 0.4+1.18.2 vanilla-hammers: Vanilla Hammers 3.3.0-1.18.2 magna: Magna 1.7.0-1.18-pre1 static-content: Static Content 1.0.2-1.16.2 staticdata: Static Data 1.1.2 vanillaexcavators: Vanilla Excavators 1.1.0 vanillatweaks: VanillaTweaks 1.5.58 visuality: Visuality 0.4.2 goosik-config: goosik-config 0.2.0 tlcosmetica: Cosmetica 0.4.0 visualworkbench: Visual Workbench 3.3.0 walllanterns: Lanterns Belong on Walls 1.2.0 wandering_collector: Wandering Collector 1.1.2+mc1.18.2 waterdripsound: Drip Sounds 1.18-0.3.0 waystones: Waystones 2.5.3 weaponthrow: Weapon Throw 1.18.2-1.7 wilderworld: WilderWorld 2.2.2 chord: Chord 1.8.0+1.18.2-fabric wolveswitharmor: Wolves With Armor 1.7.1-1.18.2 maybe-data: Maybe data 1.2.1-1.18.2 xps: Xp Obelisk 0.3.9.r_for_1.18.x_Fabric yungsapi: YUNG's API 1.18.2-Fabric-2.0.8 yungsbridges: YUNG's Bridges 1.18.2-Fabric-2.1.0 yungsextras: YUNG's Extras 1.18.2-Fabric-2.1.0 zombiehorsespawn-fabric: Zombie Horse Spawn (Fabric) 3.0 Loaded Shaderpack: ComplementaryShaders_v4.4.zip Profile: Custom (+22 options changed by user) Flywheel Backend: GL33 Instanced Arrays Server Running: true Player Count: 0 / 8; [] Data Packs: vanilla, Fabric Mods World Generation: Experimental Type: Integrated Server (map_client.txt) Is Modded: Definitely; Client brand changed to 'fabric'; Server brand changed to 'fabric' Client Crashes Since Restart: 0 Integrated Server Crashes Since Restart: 1 Suspected Mods: Minecraft (minecraft), SpoornBountyMobs (spoornbountymobs), Fabric Lifecycle Events (v1) (fabric-lifecycle-events-v1)

spoorn commented 2 years ago

@Ricenami I think when I copied and pasted it, the formatting got messed up. Try this? https://gist.github.com/spoorn/fec99b87bc6a34a2ddf93cd4dc71e355

Also, as a tip, when you copy and paste stuff, put it on https://gist.github.com/ or https://pastebin.com/. Sometimes formatting gets messed up when putting them directly into github comments, and it makes it harder to scroll since the page gets so long. Some people are extremely nitpicky when it comes to this and may outright deny helping you because of it 😞

Ricenami commented 2 years ago

Oh okay thanks for the heads up, I just signed up for github a few days ago. Really appreciate how easy-going you are. And everything is working perfectly, thank you so much again. Take care.

spoorn commented 2 years ago

no problem! let me know if you need more help