├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── App.config ├── Buffs ├── GreaterMultiBobber.cs ├── GreaterMultiBobber.png ├── MultiBobber.cs ├── MultiBobber.png ├── SuperMultiBobber.cs └── SuperMultiBobber.png ├── Configuration ├── Config.cs └── DropDownBoxes │ ├── Angler.cs │ ├── BattlePotions.cs │ ├── BobberPotions.cs │ ├── BossLoot.cs │ ├── EnchantedSundial.cs │ ├── NonBossLoot.cs │ ├── StaffOfDifficulty.cs │ ├── TravelingMerchant.cs │ ├── UniversalPylon.cs │ └── WorldGeneration.cs ├── Currencies └── FishCoinCurrency.cs ├── Global ├── Buffs.cs ├── BumblebeeTunaSwap.cs ├── CrystalBallDisplaysLuck.cs ├── FasterBossSummons.cs ├── Fishing.cs ├── Item.cs ├── LuckInfoDisplay.cs ├── LuckInfoDisplay.png ├── MoreFishingBobbers.cs ├── NPCLoot.cs ├── Player.cs ├── Recipes.cs ├── Shimmer.cs ├── Shops.cs ├── SpawnRates.cs ├── SpawnSmallMimic.cs ├── Update.cs ├── ValueModification.cs └── WorldGen.cs ├── Items ├── BuffPotions │ ├── GreaterBattlePotion.cs │ ├── GreaterBattlePotion.png │ ├── GreaterMultiBobberPotion.cs │ ├── GreaterMultiBobberPotion.png │ ├── MultiBobberPotion.cs │ ├── MultiBobberPotion.png │ ├── SuperBattlePotion.cs │ ├── SuperBattlePotion.png │ ├── SuperMultiBobberPotion.cs │ └── SuperMultiBobberPotion.png ├── FishCoin.cs ├── FishCoin.png ├── FishCostumeBag.cs ├── FishCostumeBag.png ├── MerchantDice.cs ├── MerchantDice.png ├── MermaidCostumeBag.cs ├── MermaidCostumeBag.png ├── MoonWatch.cs ├── MoonWatch.png ├── NicePresent.cs ├── NicePresent.png ├── Placeable │ ├── BestiaryTrophy.cs │ ├── BestiaryTrophy.png │ ├── SlimeTrophy.cs │ └── SlimeTrophy.png ├── PlanteraSap.cs ├── PlanteraSap.png ├── PumpkinPieMedallion.cs ├── PumpkinPieMedallion.png ├── StaffOfDifficulty.cs ├── StaffOfDifficulty.png ├── WorldPeaceStandard.cs └── WorldPeaceStandard.png ├── LICENSE ├── Localization ├── en-US.hjson └── pt-BR.hjson ├── Properties └── launchSettings.json ├── ReducedGrinding.cs ├── ReducedGrinding.csproj ├── ReducedGrinding.sln ├── Tiles ├── BestiaryTrophy.cs ├── BestiaryTrophy.png ├── SlimeTrophy.cs └── SlimeTrophy.png ├── description.txt ├── description_workshop.txt ├── icon.png └── icon_workshop.png /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/.gitignore -------------------------------------------------------------------------------- /App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/App.config -------------------------------------------------------------------------------- /Buffs/GreaterMultiBobber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Buffs/GreaterMultiBobber.cs -------------------------------------------------------------------------------- /Buffs/GreaterMultiBobber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Buffs/GreaterMultiBobber.png -------------------------------------------------------------------------------- /Buffs/MultiBobber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Buffs/MultiBobber.cs -------------------------------------------------------------------------------- /Buffs/MultiBobber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Buffs/MultiBobber.png -------------------------------------------------------------------------------- /Buffs/SuperMultiBobber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Buffs/SuperMultiBobber.cs -------------------------------------------------------------------------------- /Buffs/SuperMultiBobber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Buffs/SuperMultiBobber.png -------------------------------------------------------------------------------- /Configuration/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Configuration/Config.cs -------------------------------------------------------------------------------- /Configuration/DropDownBoxes/Angler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Configuration/DropDownBoxes/Angler.cs -------------------------------------------------------------------------------- /Configuration/DropDownBoxes/BattlePotions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Configuration/DropDownBoxes/BattlePotions.cs -------------------------------------------------------------------------------- /Configuration/DropDownBoxes/BobberPotions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Configuration/DropDownBoxes/BobberPotions.cs -------------------------------------------------------------------------------- /Configuration/DropDownBoxes/BossLoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Configuration/DropDownBoxes/BossLoot.cs -------------------------------------------------------------------------------- /Configuration/DropDownBoxes/EnchantedSundial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Configuration/DropDownBoxes/EnchantedSundial.cs -------------------------------------------------------------------------------- /Configuration/DropDownBoxes/NonBossLoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Configuration/DropDownBoxes/NonBossLoot.cs -------------------------------------------------------------------------------- /Configuration/DropDownBoxes/StaffOfDifficulty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Configuration/DropDownBoxes/StaffOfDifficulty.cs -------------------------------------------------------------------------------- /Configuration/DropDownBoxes/TravelingMerchant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Configuration/DropDownBoxes/TravelingMerchant.cs -------------------------------------------------------------------------------- /Configuration/DropDownBoxes/UniversalPylon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Configuration/DropDownBoxes/UniversalPylon.cs -------------------------------------------------------------------------------- /Configuration/DropDownBoxes/WorldGeneration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Configuration/DropDownBoxes/WorldGeneration.cs -------------------------------------------------------------------------------- /Currencies/FishCoinCurrency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Currencies/FishCoinCurrency.cs -------------------------------------------------------------------------------- /Global/Buffs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Global/Buffs.cs -------------------------------------------------------------------------------- /Global/BumblebeeTunaSwap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Global/BumblebeeTunaSwap.cs -------------------------------------------------------------------------------- /Global/CrystalBallDisplaysLuck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Global/CrystalBallDisplaysLuck.cs -------------------------------------------------------------------------------- /Global/FasterBossSummons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Global/FasterBossSummons.cs -------------------------------------------------------------------------------- /Global/Fishing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Global/Fishing.cs -------------------------------------------------------------------------------- /Global/Item.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Global/Item.cs -------------------------------------------------------------------------------- /Global/LuckInfoDisplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Global/LuckInfoDisplay.cs -------------------------------------------------------------------------------- /Global/LuckInfoDisplay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Global/LuckInfoDisplay.png -------------------------------------------------------------------------------- /Global/MoreFishingBobbers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Global/MoreFishingBobbers.cs -------------------------------------------------------------------------------- /Global/NPCLoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Global/NPCLoot.cs -------------------------------------------------------------------------------- /Global/Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Global/Player.cs -------------------------------------------------------------------------------- /Global/Recipes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Global/Recipes.cs -------------------------------------------------------------------------------- /Global/Shimmer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Global/Shimmer.cs -------------------------------------------------------------------------------- /Global/Shops.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Global/Shops.cs -------------------------------------------------------------------------------- /Global/SpawnRates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Global/SpawnRates.cs -------------------------------------------------------------------------------- /Global/SpawnSmallMimic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Global/SpawnSmallMimic.cs -------------------------------------------------------------------------------- /Global/Update.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Global/Update.cs -------------------------------------------------------------------------------- /Global/ValueModification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Global/ValueModification.cs -------------------------------------------------------------------------------- /Global/WorldGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Global/WorldGen.cs -------------------------------------------------------------------------------- /Items/BuffPotions/GreaterBattlePotion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Items/BuffPotions/GreaterBattlePotion.cs -------------------------------------------------------------------------------- /Items/BuffPotions/GreaterBattlePotion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Items/BuffPotions/GreaterBattlePotion.png -------------------------------------------------------------------------------- /Items/BuffPotions/GreaterMultiBobberPotion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Items/BuffPotions/GreaterMultiBobberPotion.cs -------------------------------------------------------------------------------- /Items/BuffPotions/GreaterMultiBobberPotion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Items/BuffPotions/GreaterMultiBobberPotion.png -------------------------------------------------------------------------------- /Items/BuffPotions/MultiBobberPotion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Items/BuffPotions/MultiBobberPotion.cs -------------------------------------------------------------------------------- /Items/BuffPotions/MultiBobberPotion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Items/BuffPotions/MultiBobberPotion.png -------------------------------------------------------------------------------- /Items/BuffPotions/SuperBattlePotion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Items/BuffPotions/SuperBattlePotion.cs -------------------------------------------------------------------------------- /Items/BuffPotions/SuperBattlePotion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Items/BuffPotions/SuperBattlePotion.png -------------------------------------------------------------------------------- /Items/BuffPotions/SuperMultiBobberPotion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Items/BuffPotions/SuperMultiBobberPotion.cs -------------------------------------------------------------------------------- /Items/BuffPotions/SuperMultiBobberPotion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Items/BuffPotions/SuperMultiBobberPotion.png -------------------------------------------------------------------------------- /Items/FishCoin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Items/FishCoin.cs -------------------------------------------------------------------------------- /Items/FishCoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Items/FishCoin.png -------------------------------------------------------------------------------- /Items/FishCostumeBag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Items/FishCostumeBag.cs -------------------------------------------------------------------------------- /Items/FishCostumeBag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Items/FishCostumeBag.png -------------------------------------------------------------------------------- /Items/MerchantDice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Items/MerchantDice.cs -------------------------------------------------------------------------------- /Items/MerchantDice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Items/MerchantDice.png -------------------------------------------------------------------------------- /Items/MermaidCostumeBag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Items/MermaidCostumeBag.cs -------------------------------------------------------------------------------- /Items/MermaidCostumeBag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Items/MermaidCostumeBag.png -------------------------------------------------------------------------------- /Items/MoonWatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Items/MoonWatch.cs -------------------------------------------------------------------------------- /Items/MoonWatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Items/MoonWatch.png -------------------------------------------------------------------------------- /Items/NicePresent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Items/NicePresent.cs -------------------------------------------------------------------------------- /Items/NicePresent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Items/NicePresent.png -------------------------------------------------------------------------------- /Items/Placeable/BestiaryTrophy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Items/Placeable/BestiaryTrophy.cs -------------------------------------------------------------------------------- /Items/Placeable/BestiaryTrophy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Items/Placeable/BestiaryTrophy.png -------------------------------------------------------------------------------- /Items/Placeable/SlimeTrophy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Items/Placeable/SlimeTrophy.cs -------------------------------------------------------------------------------- /Items/Placeable/SlimeTrophy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Items/Placeable/SlimeTrophy.png -------------------------------------------------------------------------------- /Items/PlanteraSap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Items/PlanteraSap.cs -------------------------------------------------------------------------------- /Items/PlanteraSap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Items/PlanteraSap.png -------------------------------------------------------------------------------- /Items/PumpkinPieMedallion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Items/PumpkinPieMedallion.cs -------------------------------------------------------------------------------- /Items/PumpkinPieMedallion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Items/PumpkinPieMedallion.png -------------------------------------------------------------------------------- /Items/StaffOfDifficulty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Items/StaffOfDifficulty.cs -------------------------------------------------------------------------------- /Items/StaffOfDifficulty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Items/StaffOfDifficulty.png -------------------------------------------------------------------------------- /Items/WorldPeaceStandard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Items/WorldPeaceStandard.cs -------------------------------------------------------------------------------- /Items/WorldPeaceStandard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Items/WorldPeaceStandard.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/LICENSE -------------------------------------------------------------------------------- /Localization/en-US.hjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Localization/en-US.hjson -------------------------------------------------------------------------------- /Localization/pt-BR.hjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Localization/pt-BR.hjson -------------------------------------------------------------------------------- /Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Properties/launchSettings.json -------------------------------------------------------------------------------- /ReducedGrinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/ReducedGrinding.cs -------------------------------------------------------------------------------- /ReducedGrinding.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/ReducedGrinding.csproj -------------------------------------------------------------------------------- /ReducedGrinding.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/ReducedGrinding.sln -------------------------------------------------------------------------------- /Tiles/BestiaryTrophy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Tiles/BestiaryTrophy.cs -------------------------------------------------------------------------------- /Tiles/BestiaryTrophy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Tiles/BestiaryTrophy.png -------------------------------------------------------------------------------- /Tiles/SlimeTrophy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Tiles/SlimeTrophy.cs -------------------------------------------------------------------------------- /Tiles/SlimeTrophy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/Tiles/SlimeTrophy.png -------------------------------------------------------------------------------- /description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/description.txt -------------------------------------------------------------------------------- /description_workshop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/description_workshop.txt -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/icon.png -------------------------------------------------------------------------------- /icon_workshop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragon3025/Reduced-Grinding/HEAD/icon_workshop.png --------------------------------------------------------------------------------