championsDropArtifacts
作者:rebot | 分类:模组
Minecraft 版本: 1.21 1.21.1
平台: datapack
标签: game-mechanics
NOTE: THIS DATAPACK DEPENDS ON THE CHAMPIONS MOD FOUND HERE
Bosses are meant to be used alongside champions-entities.toml (config) to balance them individually. I highly advise limiting bosses to rank 1, and swarming mobs (like silverfish) to rank 2 unless your modpack has very high stat scaling.
To easily use something like Google Sheets to generate a CSV and champions-entities.toml, I recommend this Java app I wrote here on GitHub
Adds support for Artifacts mod drops to the Champions mod loot table. Also adds several modded mobs to the Champion whitelist.
Feel free to use this as a blueprint for your own individual setup to save some time having to F3+I individual mobs for their IDs.
To disable modded boss champions/minibosses you can remove anything from alexsmobs:farseer and beyond alongside minecraft:wither, minecraft:ender_dragon, and minecraft:warden.
This is created for an upcoming adventure modpack. I will not be updating this for other packs. It is meant to be adjusted for your use case after download.
champion_loot override ``` { "pools": [ { "name": "tier#1", "rolls": 1, "entries": [ { "type": "item", "name": "minecraft:book", "weight": 10, "conditions": [ { "condition": "champions:champion_properties", "entity": "this", "tier": { "min": 1, "max": 1 } }, { "condition": "killed_by_player" } ], "functions": [ { "function": "enchant_randomly" } ] }, { "type": "item", "name": "minecraft:iron_ingot", "weight": 40, "conditions": [ { "condition": "champions:champion_properties", "entity": "this", "tier": { "min": 1, "max": 1 } }, { "condition": "killed_by_player" } ], "functions": [ { "add": false, "count": { "type": "minecraft:uniform", "max": 2, "min": 1 }, "function": "minecraft:set_count" } ] }, { "type": "item", "name": "minecraft:air", "weight": 50, "conditions": [ { "condition": "champions:champion_properties", "entity": "this", "tier": { "min": 1, "max": 1 } }, { "condition": "killed_by_player" } ] } ] }, { "name": "tier#2", "rolls": 1, "entries": [ { "type": "item", "name": "minecraft:book", "weight": 15, "conditions": [ { "condition": "champions:champion_properties", "entity": "this", "tier": { "min": 2, "max": 2 } }, { "condition": "killed_by_player" } ], "functions": [ { "function": "enchant_randomly" } ] }, { "type": "item", "name": "minecraft:iron_ingot", "weight": 55, "conditions": [ { "condition": "champions:champion_properties", "entity": "this", "tier": { "min": 2, "max": 2 } }, { "condition": "killed_by_player" } ], "functions": [ { "add": false, "count": { "type": "minecraft:uniform", "max": 3, "min": 2 }, "function": "minecraft:set_count" } ] }, { "type": "item", "name": "artifacts:everlasting_beef", "weight": 1, "conditions": [ { "condition": "champions:champion_properties", "entity": "this", "tier": { "min": 2, "max": 2 } }, { "condition": "killed_by_player" } ] }, { "type": "item", "name": "artifacts:night_vision_goggles", "weight": 1, "conditions": [ { "condition": "champions:champion_properties", "entity": "this", "tier": { "min": 2, "max": 2 } }, { "condition": "killed_by_player" } ] }, { "type": "item", "name": "artifacts:panic_necklace", "weight": 1, "conditions": [ { "condition": "champions:champion_properties", "entity": "this", "tier": { "min": 2, "max": 2 } }, { "condition": "killed_by_player" } ] }, { "type": "item", "name": "artifacts:pocket_piston", "weight": 1, "conditions": [ { "condition": "champions:champion_properties", "entity": "this", "tier": { "min": 2, "max": 2 } }, { "condition": "killed_by_player" } ] }, { "type": "item", "name": "artifacts:rooted_boots", "weight": 1, "conditions": [ { "condition": "champions:champion_properties", "entity": "this", "tier": { "min": 2, "max": 2 } }, { "condition": "killed_by_player" } ] }, { "type": "item", "name": "artifacts:scarf_of_invisibility", "weight": 1, "conditions": [ { "condition": "champions:champion_properties", "entity": "this", "tier": { "min": 2, "max": 2 } }, { "condition": "killed_by_player" } ] }, { "type": "item", "name": "artifacts:snowshoes", "weight": 1, "conditions": [ { "condition": "champions:champion_properties", "entity": "this", "tier": { "min": 2, "max": 2 } }, { "condition": "killed_by_player" } ] }, { "type": "item", "name": "artifacts:steadfast_spikes", "weight": 1, "conditions": [ { "condition": "champions:champion_properties", "entity": "this", "tier": { "min": 2, "max": 2 } }, { "condition": "killed_by_player" } ] }, { "type": "item", "name": "artifacts:thorn_pendant", "weight": 1, "conditions": [ { "condition": "champions:champion_properties", "entity": "this", "tier": { "min": 2, "max": 2 } }, { "condition": "killed_by_player" } ] }, { "type": "item", "name": "artifacts:umbrella", "weight": 1, "conditions": [ { "condition": "champions:champion_properties", "entity": "this", "tier": { "min": 2, "max": 2 } }, { "condition": "killed_by_player" } ] }, { "type": "item", "name": "artifacts:universal_attractor", "weight": 1, "conditions": [ { "condition": "champions:champion_properties", "entity": "this", "tier": { "min": 2, "max": 2 } }, { "condition": "killed_by_player" } ] }, { "type": "item", "name": "artifacts:whoopee_cushion", "weight": 1, "conditions": [ { "condition": "champions:champion_properties", "entity": "this", "tier": { "min": 2, "max": 2 } }, { "condition": "killed_by_player" } ] } ] }, { "name": "tier#3", "rolls": 1, "entries": [ { "type": "item", "name": "minecraft:book", "weight": 15, "conditions": [ { "condition": "champions:champion_properties", "entity": "this", "tier": { "min": 3, "max": 3 } }, { "condition": "killed_by_player" } ], "functions": [ { "function": "enchant_randomly" } ] }, { "type": "item", "name": "minecraft:iron_ingot", "weight": 35, "conditions": [ { "condition": "champions:champion_properties", "entity": "this", "tier": { "min": 3, "max": 3 } }, { "condition": "killed_by_player" } ], "functions": [ { "add": false, "count": { "type": "minecraft:uniform", "max": 4, "min": 3 }, "function": "minecraft:set_count" } ] }, { "type": "item", "name": "minecraft:gold_ingot", "weight": 35, "conditions": [ { "condition": "champions:champion_properties", "entity": "this", "tier": { "min": 3, "max": 3 } }, { "condition": "killed_by_player" } ], "functions": [ { "add": false, "count": { "type": "minecraft:uniform", "max": 4, "min": 3 }, "function": "minecraft:set_count" } ] }, { "type": "item", "name": "artifacts:antidote_vessel", "weight": 1, "conditions": [ { "condition": "champions:champion_properties", "entity": "this", "tier": { "min": 3, "max": 3 } }, { "condition": "killed_by_player" } ] }, { "type": "item", "name": "artifacts:flame_pendant", "weight": 1, "conditions": [ { "condition": "champions:champion_properties", "entity": "this", "tier": { "min": 3, "max": 3 } }, { "condition": "killed_by_player" } ] }, { "type": "item", "name": "artifacts:flippers", "weight": 1, "conditions": [ { "condition": "champions:champion_properties", "entity": "this", "tier": { "min": 3, "max": 3 } }, { "condition": "killed_by_player" } ] }, { "type": "item", "name": "artifacts:kitty_slippers", "weight": 1, "conditions": [ { "condition": "champions:champion_properties", "entity": "this", "tier": { "min": 3, "max": 3 } }, { "condition": "killed_by_player" } ] }, { "type": "item", "name": "artifacts:novelty_drinking_hat", "weight": 1, "conditions": [ { "condition": "champions:champion_properties", "entity": "this", "tier": { "min": 3, "max": 3 } }, { "condition": "killed_by_player" } ] }, { "type": "item", "name": "artifacts:onion_ring", "weight": 1, "conditions": [ { "condition": "champions:champion_properties", "entity": "this", "tier": { "min": 3, "max": 3 } }, { "condition": "killed_by_player" } ] }, { "type": "item", "name": "artifacts:pickaxe_heater", "weight": 1, "conditions": [ { "condition": "champions:champion_properties", "entity": "this", "tier": { "min": 3, "max": 3 } }, { "condition": "killed_by_player" } ] }, { "type": "item", "name": "artifacts:plastic_drinking_hat", "weight": 1, "conditions": [ { "condition": "champions:champion_properties", "entity": "this", "tier": { "min": 3, "max": 3 } }, { "condition": "killed_by_player" } ] }, { "type": "item", "name": "artifacts:shock_pendant", "weight": 1, "conditions": [ { "condition": "champions:champion_properties", "entity": "this", "tier": { "min": 3, "max": 3 } }, { "condition": "killed_by_player" } ] } ] }, { "name": "tier#4", "rolls": 1, "entries": [ { "type": "item", "name": "minecraft:book", "weight": 8, "conditions": [ { "condition": "champions:champion_properties", "entity": "this", "tier": { "min": 4, "max": 4 } }, { "condition": "killed_by_player" } ], "functions": [ { "function": "enchant_randomly" } ] }, { "type": "item", "name": "minecraft:iron_ingot", "weight": 7, "conditions": [ { "condition": "champions:champion_properties", "entity": "this", "tier": { "min": 4, "max": 4 } }, { "condition": "killed_by_player" } ], "functions": [ { "add": false, "count": { "type": "minecraft:uniform", "max": 4, "min": 3 }, "function": "minecraft:set_count" } ] }, { "type": "item", "name": "minecraft:gold_ingot", "weight": 7, "conditions": [ { "condition": "champions:champion_properties", "entity": "this", "tier": { "min": 4, "max": 4 } }, { "condition": "killed_by_player" } ], "functions": [ { "add": false, "count": { "type": "minecraft:uniform", "max": 6, "min": 4 }, "function": "minecraft:set_count" } ] }, { "type": "item", "name": "minecraft:diamond", "weight": 8, "conditions": [ { "condition": "champions:champion_properties", "entity": "this", "tier": { "min": 4, "max": 4 } }, { "condition": "killed_by_player" } ], "functions": [ { "add": false, "count": { "type": "minecraft:uniform", "max": 3, "min": 1 }, "function": "minecraft:set_count" } ] }, { "type": "item", "name": "artifacts:anglers_hat", "weight": 5, "conditions": [ { "condition": "champions:champion_properties", "entity": "this", "tier": { "min": 4, "max": 4 } }, { "condition": "killed_by_player" } ] }, { "type": "item", "name": "artifacts:aqua_dashers", "weight": 5, "conditions": [ { "condition": "champions:champion_properties", "entity": "this", "tier": { "min": 4, "max": 4 } }, { "condition": "killed_by_player" } ] }, { "type": "item", "name": "artifacts:charm_of_sinking", "weight": 5, "conditions": [ { "condition": "champions:champion_properties", "entity": "this", "tier": { "min": 4, "max": 4 } }, { "condition": "killed_by_player" } ] }, { "type": "item", "name": "artifacts:cowboy_hat", "weight": 5, "conditions": [ { "condition": "champions:champion_properties", "entity": "this", "tier": { "min": 4, "max": 4 } }, { "condition": "killed_by_player" } ] }, { "type": "item", "name": "artifacts:cloud_in_a_bottle", "weight": 5, "conditions": [ { "condition": "champions:champion_properties", "entity": "this", "tier": { "min": 4, "max": 4 } }, { "condition": "killed_by_player" } ] }, { "type": "item", "name": "artifacts:digging_claws", "weight": 5, "conditions": [ { "condition": "champions:champion_properties", "entity": "this", "tier": { "min": 4, "max": 4 } }, { "condition": "killed_by_player" } ] }, { "type": "item", "name": "artifacts:fire_gauntlet", "weight": 5, "conditions": [ { "condition": "champions:champion_properties", "entity": "this", "tier": { "min": 4, "max": 4 } }, { "condition": "killed_by_player" } ] }, { "type": "item", "name": "artifacts:golden_hook", "weight": 5, "conditions": [ { "condition": "champions:champion_properties", "entity": "this", "tier": { "min": 4, "max": 4 } }, { "condition": "killed_by_player" } ] }, { "type": "item", "name": "artifacts:lucky_scarf", "weight": 5, "conditions": [ { "condition": "champions:champion_properties", "entity": "this", "tier": { "min": 4, "max": 4 } }, { "condition": "killed_by_player" } ] }, { "type": "item", "name": "artifacts:obsidian_skull", "weight": 5, "conditions": [ { "condition": "champions:champion_properties", "entity": "this", "tier": { "min": 4, "max": 4 } }, { "condition": "killed_by_player" } ] }, { "type": "item", "name": "artifacts:snorkel", "weight": 5, "conditions": [ { "condition": "champions:champion_properties", "entity": "this", "tier": { "min": 4, "max": 4 } }, { "condition": "killed_by_player" } ] }, { "type": "item", "name": "artifacts:strider_shoes", "weight": 5, "conditions": [ { "condition": "champions:champion_properties", "entity": "this", "tier": { "min": 4, "max": 4 } }, { "condition": "killed_by_player" } ] }, { "type": "item", "name": "artifacts:superstitious_hat", "weight": 5, "conditions": [ { "condition": "champions:champion_properties", "entity": "this", "tier": { "min": 4, "max": 4 } }, { "condition": "killed_by_player" } ] }, { "type": "item", "name": "artifacts:villager_hat", "weight": 5, "conditions": [ { "condition": "champions:champion_properties", "entity": "this", "tier": { "min": 4, "max": 4 } }, { "condition": "killed_by_player" } ] } ] }, { "name": "tier#5", "rolls": 2, "entries": [ { "type": "item", "name": "artifacts:bunny_hoppers", "weight": 1, "conditions": [ { "condition": "champions:champion_properties", "entity": "this", "tier": { "min": 5, "max": 5 } }, { "condition": "killed_by_player" } ] }, { "type": "item", "name": "artifacts:charm_of_shrinking", "weight": 1, "conditions": [ { "condition": "champions:champion_properties", "entity": "this", "tier": { "min": 5, "max": 5 } }, { "condition": "killed_by_player" } ] }, { "type": "item", "name": "artifacts:chorus_totem", "weight": 1, "conditions": [ { "condition": "champions:champion_properties", "entity": "this", "tier": { "min": 5, "max": 5 } }, { "condition": "killed_by_player" } ] }, { "type": "item", "name": "artifacts:cross_necklace", "weight": 1, "conditions": [ { "condition": "champions:champion_properties", "entity": "this", "tier": { "min": 5, "max": 5 } }, { "condition": "killed_by_player" } ] }, { "type": "item", "name": "artifacts:crystal_heart", "weight": 1, "conditions": [ { "condition": "champions:champion_properties", "entity": "this", "tier": { "min": 5, "max": 5 } }, { "condition": "killed_by_player" } ] }, { "type": "item", "name": "artifacts:feral_claws", "weight": 1, "conditions": [ { "condition": "champions:champion_properties", "entity": "this", "tier": { "min": 5, "max": 5 } }, { "condition": "killed_by_player" } ] }, { "type": "item", "name": "artifacts:helium_flamingo", "weight": 1, "conditions": [ { "condition": "champions:champion_properties", "entity": "this", "tier": { "min": 5, "max": 5 } }, { "condition": "killed_by_player" } ] }, { "type": "item", "name": "artifacts:power_glove", "weight": 1, "conditions": [ { "condition": "champions:champion_properties", "entity": "this", "tier": { "min": 5, "max": 5 } }, { "condition": "killed_by_player" } ] }, { "type": "item", "name": "artifacts:running_shoes", "weight": 1, "conditions": [ { "condition": "champions:champion_properties", "entity": "this", "tier": { "min": 5, "max": 5 } }, { "condition": "killed_by_player" } ] }, { "type": "item", "name": "artifacts:vampiric_glove", "weight": 1, "conditions": [ { "condition": "champions:champion_properties", "entity": "this", "tier": { "min": 5, "max": 5 } }, { "condition": "killed_by_player" } ] }, { "type": "item", "name": "artifacts:warp_drive", "weight": 1, "conditions": [ { "condition": "champions:champion_properties", "entity": "this", "tier": { "min": 5, "max": 5 } }, { "condition": "killed_by_player" } ] }, { "type": "item", "name": "artifacts:withered_bracelet", "weight": 1, "conditions": [ { "condition": "champions:champion_properties", "entity": "this", "tier": { "min": 5, "max": 5 } }, { "condition": "killed_by_player" } ] } ] } ] } ``` allow_champions JSON ``` { "values": [ "alexsmobs:alligator_snapping_turtle", "alexsmobs:bone_serpent", "alexsmobs:crimson_mosquito", "alexsmobs:centipede_head", "alexsmobs:dropbear", "alexsmobs:mimicube", "alexsmobs:murmur", "alexsmobs:skelewag", "alexsmobs:skreecher", "alexsmobs:soul_vulture", "alexsmobs:straddler", "alexsmobs:guster", "alexsmobs:rocky_roller", "alexscaves:boundroid", "alexscaves:brainiac", "alexscaves:ferrouslime", "alexscaves:magnetron", "alexscaves:mine_guardian", "alexscaves:teletor", "alexscaves:underzealot", "alexscaves:watcher", "alexscaves:corrodent", "alexscaves:vesper", "alexscaves:caniac", "alexscaves:caramel_cube", "alexscaves:gingerbread_man", "alexscaves:gumbeeper", "alexscaves:licowitch", "cataclysm:urchinkin", "cataclysm:draugr", "cataclysm:deepling", "cataclysm:deepling_angler", "cataclysm:deepling_priest", "cataclysm:deepling_warlock", "cataclysm:deepling_brute", "cataclysm:endermaptera", "cataclysm:elite_draugr", "cataclysm:lionfish", "cataclysm:symbiocto", "cataclysm:royal_draugr", "cataclysm:koboleton", "cataclysm:the_watcher", "eidolon_repraised:zombie_brute", "eidolon_repraised:giant_skeleton", "eidolon_repraised:necromancer", "eidolon_repraised:wraith", "illagerinvasion:alchemist", "illagerinvasion:archivist", "illagerinvasion:basher", "illagerinvasion:firecaller", "minecraft:illusioner", "illagerinvasion:surrendered", "illagerinvasion:marauder", "illagerinvasion:necromancer", "illagerinvasion:provoker", "illagerinvasion:sorcerer", "minecraft:blaze", "minecraft:bogged", "minecraft:breeze", "minecraft:cave_spider", "minecraft:creeper", "minecraft:drowned", "minecraft:elder_guardian", "minecraft:ender_dragon", "minecraft:enderman", "minecraft:endermite", "minecraft:evoker", "minecraft:ghast", "minecraft:giant", "minecraft:guardian", "minecraft:husk", "minecraft:illusioner", "minecraft:magma_cube", "minecraft:phantom", "minecraft:piglin", "minecraft:piglin_brute", "minecraft:pillager", "minecraft:ravager", "minecraft:shulker", "minecraft:silverfish", "minecraft:skeleton", "minecraft:slime", "minecraft:spider", "minecraft:stray", "minecraft:vex", "minecraft:vindicator", "minecraft:warden", "minecraft:witch", "minecraft:wither", "minecraft:wither_skeleton", "minecraft:zoglin", "minecraft:zombie", "minecraft:zombie_villager", "minecraft:zombified_piglin", "mowziesmobs:elokosa_howler", "mowziesmobs:elokosa_follower_howler", "mowziesmobs:foliaath", "mowziesmobs:naga", "mowziesmobs:umvuthana", "mowziesmobs:umvuthana_raptor", "mowziesmobs:umvuthana_crane", "occultism:possessed_blaze", "occultism:possessed_enderman", "occultism:possessed_endermite", "occultism:possessed_ghast", "occultism:possessed_phantom", "occultism:possessed_shulker", "occultism:possessed_skeleton", "occultism:possessed_weak_shulker", "occultism:wild_horde_creeper", "occultism:wild_horde_drowned", "occultism:wild_horde_husk", "occultism:wild_horde_silverfish", "occultism:wild_hunt_skeleton", "occultism:wild_hunt_wither_skeleton", "occultism:possessed_evoker", "the_bumblezone:beehemoth", "quark:forgotten", "quark:foxhound", "quark:wraith", "rottencreatures:burned", "rottencreatures:dead_beard", "rottencreatures:frostbitten", "rottencreatures:glacial_hunter", "rottencreatures:hunter_wolf", "rottencreatures:immortal", "rottencreatures:mummy", "rottencreatures:scarab", "rottencreatures:skeleton_lackey", "rottencreatures:swampy", "rottencreatures:undead_miner", "rottencreatures:zap", "rottencreatures:zombie_lackey", "supplementaries:plunderer", "alexsmobs:farseer", "alexsmobs:warped_mosco", "alexsmobs:void_worm", "alexscaves:forsaken", "alexscaves:luxtructosaurus", "alexscaves:gum_worm", "bosses_of_mass_destruction:gauntlet", "bosses_of_mass_destruction:lich", "bosses_of_mass_destruction:obsidilith", "bosses_of_mass_destruction:void_blossom", "cataclysm:amethyst_crab", "cataclysm:ancient_remnant", "cataclysm:aptrgangr", "cataclysm:cindaria", "cataclysm:clawdian", "cataclysm:coral_golem", "cataclysm:coralssus", "cataclysm:hippocamtus", "cataclysm:the_harbinger", "cataclysm:the_prowler", "cataclysm:ender_golem", "cataclysm:ender_guardian", "cataclysm:ignis", "cataclysm:ignited_berserker", "cataclysm:ignited_revenant", "cataclysm:kobolediator", "cataclysm:maledictus", "cataclysm:modern_remnant", "cataclysm:netherite_monstrosity", "cataclysm:scylla", "cataclysm:the_leviathan", "cataclysm:wadjet", "mowziesmobs:frostmaw", "mowziesmobs:ferrous_wroughtnaut", "mowziesmobs:umvuthi", "mowziesmobs:sculptor", "mutantmonsters:mutant_creeper", "mutantmonsters:mutant_enderman", "mutantmonsters:mutant_skeleton", "mutantmonsters:mutant_zombie", "occultism:marid_unbound", "occultism:possessed_breeze", "occultism:possessed_strong_breeze", "occultism:possessed_weak_breeze", "occultism:possessed_elder_guardian", "occultism:possessed_guardian", "occultism:possessed_warden", "occultism:possessed_witch", "illagerinvasion:invoker", "illagerinvasion:inquisitor" ] } ```请登录后举报
暂无评论,抢个沙发吧~