Stardew Valley
0 of 0

File information

Last updated

Original upload

Created by

aedenthorn

Uploaded by

aedenthorn

Virus scan

Safe to use

Tags for this mod

Mod articles

  • Advanced Loot Framework API

    Add a IAdvancedLootFrameworkApi interface to your project:

        public interface IAdvancedLootFrameworkApi
        {
            List<object> LoadPossibleTreasures(List<string> itemTypeList, int minItemValue, int maxItemValue);
            
            List<Item> GetChestItems(List<object> treasures, int maxItems, int minItemValue, int maxItemValue, int mult, float increaseRate, int baseValue);
            
            int GetChestCoins(int mult, float increaseRate, int baseMin, int baseMax);
            
            Chest MakeChest(List<Item> chestItems, int coins, Vector2 chestSpot);
            
            Chest MakeChest(List<object> treasures, int maxItems, i...