LTDV9/packet/kubejs/server_scripts/dioaluo.js
3944Realms 459b1b8b89
Some checks failed
Deploy to Remote Server / deploy (push) Failing after 2m8s
再次初始化
2026-01-28 17:45:31 +08:00

45 lines
1.5 KiB
JavaScript

LootJS.modifiers((event) => {
event
.addEntityLootModifier('legendary_monsters:posessed_paladin')
.addLoot('celestial_core:treasure_fragment');
event
.addEntityLootModifier("legendary_monsters:ancient_guardian")
.addLoot('celestial_core:treasure_fragment');
event
.addEntityLootModifier('legendary_monsters:cloud_golem')
.addLoot('celestial_core:treasure_fragment');
event
.addEntityLootModifier('legendary_monsters:overgrown_colossus')
.addLoot('celestial_core:treasure_fragment');
event
.addEntityLootModifier("goety:skull_lord")
.addLoot('goety:cursed_paladin_helmet','goety:cursed_paladin_chestplate','goety:cursed_paladin_leggings','goety:cursed_paladin_boots');
event
.addEntityLootModifier("soulsweapons:chaos_monarch")
.addLoot('minecraft:netherite_ingot');
event
.addEntityLootModifier("cataclysm:netherite_monstrosity")
.addLoot('goety:shrouded_blueprint','fumo:cirno_item','19x minecraft:ancient_debris','celestial_artifacts:heart_of_revenge');
event
.addEntityLootModifier("mowziesmobs:frostmaw")
.addLoot('4x minecraft:enchanted_golden_apple','celestial_artifacts:freeze_ring','soulsweapons:frostmourne');
event
.addEntityLootModifier("minecraft:villager")
.addLoot('minecraft:emerald','minecraft:bread');
event
.addEntityLootModifier("minecraft:wandering_trader")
.addLoot('4x minecraft:emerald','minecraft:golden_apple');
event
.addEntityLootModifier("iceandfire:troll")
.addLoot('4x ice_and_fire_delight:troll_intestines');
});