tModLoader Reduced Grinding

I was wondering if you could make something that would stop/start rain?
Thanks if you do and thanks even if you don't wanna!
Sorry I tried to do it, but I couldn't get it to work. What Terraria uses to make the rain start is "Main.StartRain();", but I tried it and it didn't work, so I asked for help on Discord. Apparently I have to do something called a reflection, and the Heroes mod source has an example of this: HERO's Mod - Creative Mode + Server Management + And Over 25 tools [1.3.4.4 compatible]. I tried it out, but I still couldn't get it to work and it was very confusing, so if anyone would like to do it, I'd appriciate it and here are the 2 files I already have for it (also my mod is open source when you use extract in the info page for my mod in tmodlaoder's mod menu):
Bottle_of_Rain.png
Code:
using Terraria;
using Terraria.ID;
using Terraria.ModLoader;

namespace ReducedGrinding.Items
{
    public class Bottle_of_Rain : ModItem
    {
        public override void SetStaticDefaults()
        {
            DisplayName.SetDefault("Bottle of Rain");
            Tooltip.SetDefault("Makes it rain.");
        }

        public override void SetDefaults()
        {
            item.width = 20;
            item.height = 30;
            item.maxStack = 30;
            item.rare = 0;
            item.useAnimation = 45;
            item.useTime = 45;
            item.useStyle = 4;
            item.value = 5 //Place holder value
            item.UseSound = SoundID.Item3;
            item.consumable = true;
        }

        public override bool CanUseItem(Player player)
        {
            if (<not_raining>)
                return true
            else
            {
                Main.NewText("It's already raining.", 255, 255, 255);
                return false;
            }
        }

        public override bool UseItem(Player player)
        {
            <make_it_rain>
        }

        public override void AddRecipes()
        {
                ModRecipe recipe = new ModRecipe(mod);
                recipe.AddIngredient(ItemID.BottledWater, 1); //place holder recipe
                recipe.AddTile(TileID.Bottles);
                recipe.SetResult(this);
                recipe.AddRecipe();
        }
    }
}
===============================================================================================================
New update, 4.16: Reduced Trifold Map's default drop rate configuration.
 
Last edited:
Sorry I tried to do it, but I couldn't get it to work. What Terraria uses to make the rain start is "Main.StartRain();", but I tried it and it didn't work, so I asked for help on Discord. Apparently I have to do something called a reflection, and the Heroes mod source has an example of this: HERO's Mod - Creative Mode + Server Management + And Over 25 tools [1.3.4.4 compatible]. I tried it out, but I still couldn't get it to work and it was very confusing, so if anyone would like to do it, I'd appriciate it and here are the 2 files I already have for it (also my mod is open source when you use extract in the info page for my mod in tmodlaoder's mod menu):
View attachment 175466
Code:
using Terraria;
using Terraria.ID;
using Terraria.ModLoader;

namespace ReducedGrinding.Items
{
    public class Bottle_of_Rain : ModItem
    {
        public override void SetStaticDefaults()
        {
            DisplayName.SetDefault("Bottle of Rain");
            Tooltip.SetDefault("Makes it rain.");
        }

        public override void SetDefaults()
        {
            item.width = 20;
            item.height = 30;
            item.maxStack = 30;
            item.rare = 0;
            item.useAnimation = 45;
            item.useTime = 45;
            item.useStyle = 4;
            item.value = 5 //Place holder value
            item.UseSound = SoundID.Item3;
            item.consumable = true;
        }

        public override bool CanUseItem(Player player)
        {
            if (<not_raining>)
                return true
            else
            {
                Main.NewText("It's already raining.", 255, 255, 255);
                return false;
            }
        }

        public override bool UseItem(Player player)
        {
            <make_it_rain>
        }

        public override void AddRecipes()
        {
                ModRecipe recipe = new ModRecipe(mod);
                recipe.AddIngredient(ItemID.BottledWater, 1); //place holder recipe
                recipe.AddTile(TileID.Bottles);
                recipe.SetResult(this);
                recipe.AddRecipe();
        }
    }
}
===============================================================================================================
New update, 4.16: Reduced Trifold Map's default drop rate configuration.
have you ask the thorium devs? because they make an item that starts rain too, but has a 10-15 seconds to start rain after using their item.
 
I really appreciate it, thank you for trying!

Yeah there's plenty of items that start rain, but nothing that stops it.
 
Can you point me in the direction of a tutorial on how to make your mod have a functioning configuration file? Or even just post an excerpt of your code that implements it?
 
have you ask the thorium devs? because they make an item that starts rain too, but has a 10-15 seconds to start rain after using their item.

I don't think that'll do any good. I saw an example of it, and it had be bouncing all over the place, and I was getting errors everywhere. I think they would have to walk me through each step, which means they might as well code it for me. I tried looking online for a tutorial on reflections in tmodloader, but I couldn't find anything. Maybe someday if somebody doesn't already post a code for the rain in a bottle I was making, I might ask for some help.

Can you point me in the direction of a tutorial on how to make your mod have a functioning configuration file? Or even just post an excerpt of your code that implements it?

Here's a guide on it: https://forums.terraria.org/index.p...-to-config-files-and-optional-features.48581/
For a copy of my file that controls configurations, extract my mod into the mod reader folder by going into the mod menu>my mod's info>extract. The file is called Config.cs
 
Hi, the terraria server (tmodloader) is only 32 bits? i used the War Potion and the server was out of "buffer" lol a lot of monsters.. and i thnik that's because of memory.. but is using 1gb only of ram.. any ideas? i asked in tmodloader forums but seems nobody knows. I have thorium, spirit, tremor and joost mods.. Thanks for the mod!
 
Hi, the terraria server (tmodloader) is only 32 bits? i used the War Potion and the server was out of "buffer" lol a lot of monsters.. and i thnik that's because of memory.. but is using 1gb only of ram.. any ideas? i asked in tmodloader forums but seems nobody knows. I have thorium, spirit, tremor and joost mods.. Thanks for the mod!
Sorry, I don't know why I got my email late that somebody replied to this forum. I'm not really an expert in stuff like that, but it sounds like your PC can't handle that many NPCs. You can search for "WarPotionSpawnrateMultiplier" and "WarPotionMaxSpawnsMultiplier" in the configuration file and try lowering them.
 
hey, this mod creates 2 configs -
1 - documents/My Games/Terraria/Mod Configs/Reduced Grinding.json
2 - documents/My Games/Terraria/ModLoader/Mod Configs/Reduced Grinding.json
I just tweaked 2-nd config and it seem to have no impact, which means that 1-st config is what is used.
imkSushi's Mod Config.json and Chad's Furniture.json do same - have 2 configs and i dont know what to tweak. What can be the problem?
 
hey, this mod creates 2 configs -
1 - documents/My Games/Terraria/Mod Configs/Reduced Grinding.json
2 - documents/My Games/Terraria/ModLoader/Mod Configs/Reduced Grinding.json
I just tweaked 2-nd config and it seem to have no impact, which means that 1-st config is what is used.
imkSushi's Mod Config.json and Chad's Furniture.json do same - have 2 configs and i dont know what to tweak. What can be the problem?
I've noticed this too. I have no idea why it does that. There's 2 configuration locations:
  • C:\Users\name\Documents\My Games\Terraria\Mod Configs
  • C:\Users\name\Documents\My Games\Terraria\ModLoader\Mod Configs
The one that affects the mod is which is in the ModLoader's Configuration folder:
  • C:\Users\name\Documents\My Games\Terraria\ModLoader\Mod Configs
 
I adjusted the drop rate for Tally Counters in the config, for some reason that seems to have caused Angry Bones to drop Gold Keys like candy but still no Tally Counters.

Edit: Just incase I tried adjusting the Golden Key drop rate in the config instead. Still no Tally Counter drops.
 
Last edited:
I adjusted the drop rate for Tally Counters in the config, for some reason that seems to have caused Angry Bones to drop Gold Keys like candy but still no Tally Counters.

Edit: Just incase I tried adjusting the Golden Key drop rate in the config instead. Still no Tally Counter drops.
Something is wrong with my notifications because I keep getting them late. I fixed the bug.
 
I really appreciate it, thank you for trying!

Yeah there's plenty of items that start rain, but nothing that stops it.
Thanks to CrimsHallowHero who sent me coding for the Rain Potion I was able to add it to the game. I updated and added the new Rain Potion.
 
Sorry if I'm being a hassle or sounding demanding, but would it be possible to add an item that starts a Slime Rain? I've been trying for real world days to kill a Pinky for Thorium mod's Tracker NPC and one just refuses to spawn, a Slime Rain usually spawns at least one. I'd just use Cheat Sheet but as I said in the thread for that the NPC browser has been crashing the game when I try.
 
Sorry if I'm being a hassle or sounding demanding, but would it be possible to add an item that starts a Slime Rain? I've been trying for real world days to kill a Pinky for Thorium mod's Tracker NPC and one just refuses to spawn, a Slime Rain usually spawns at least one. I'd just use Cheat Sheet but as I said in the thread for that the NPC browser has been crashing the game when I try.
With the new Rain Potion, I was able to figure out how to make the Slime Rain Potion, so I updated and added it:

  • Added Slime Rain Potion.
  • Fixed bug that caused Rain Potion ingredients that are excluded because of configuration to appear as empty boxes in the recipe.
 
With the new Rain Potion, I was able to figure out how to make the Slime Rain Potion, so I updated and added it:

  • Added Slime Rain Potion.
  • Fixed bug that caused Rain Potion ingredients that are excluded because of configuration to appear as empty boxes in the recipe.

Thank you, that will make farming gel pre mechanic and finding Pinkys to kill a lot easier.
 
Would it be possible to get a version of this mod with just the War Potion? No increased drop rates or anything?
You can shut everything off in the configs, except the War Potion. Here's a copy of the configuration with everything shut off except the war potion:
Code:
{
  "BagBoneRattleIncrease": 0.0,
  "BagFishronWingsIncrease": 0.0,
  "BagEatersBoneIncrease": 0.0,
  "BagBinocularsIncrease": 0.0,
  "BagTheAxeIncrease": 0.0,
  "BagSeedlingIncrease": 0.0,
  "BagHoneyedGogglesIncrease": 0.0,
  "BagNectarIncrease": 0.0,
  "BagBookofSkullsIncrease": 0.0,
  "BagSkeletronBoneKey": 0.0,
  "JungleCrateSeaweed": 0.0,
  "JungleCrateFlowerBoots": 0.0,
  "JungleCrateLivingMahoganyWand": 0.0,
  "JungleCrateRichMahoganyLeafWand": 0.0,
  "WoodenIronAndGoldCrateLivingLoom": 0.0,
  "WoodenIronAndGoldCrateLeafWand": 0.0,
  "WoodenIronAndGoldCrateLivingWoodWand": 0.0,
  "WoodenIronAndGoldCrateWaterWalkingBoots": 0.0,
  "WoodenIronAndGoldCrateWaterFlippers": 0.0,
  "LootSkeletronBoneKey": 0.0,
  "LootBookofSkullsIncrease": 0.0,
  "LootBoneRattleIncrease": 0.0,
  "LootFishronWingsIncrease": 0.0,
  "LootEatersBoneIncrease": 0.0,
  "LootBinocularsIncrease": 0.0,
  "LootTheAxeIncrease": 0.0,
  "LootSeedlingIncrease": 0.0,
  "LootHoneyedGogglesIncrease": 0.0,
  "LootNectarIncrease": 0.0,
  "BiomeKeyIncreaseForOneMechBossDown": 0.0,
  "BiomeKeyIncreaseForTwoMechBossDown": 0.0,
  "BiomeKeyIncreaseForThreeMechBossDown": 0.0,
  "ExpertLootAdhesiveBandageIncrease": 0.0,
  "LootAdhesiveBandageIncrease": 0.0,
  "LootRodofDiscordIncrease": 0.0,
  "ExpertLootTrifoldMapIncrease": 0.0,
  "LootTrifoldMapIncrease": 0.0,
  "ExpertLootNazarIncrease": 0.0,
  "LootNazarIncrease": 0.0,
  "ExpertLootBezoarIncrease": 0.0,
  "LootBezoarIncrease": 0.0,
  "ExpertLootVitaminsIncrease": 0.0,
  "LootVitaminsIncrease": 0.0,
  "ExpertLootBlindfoldIncrease": 0.0,
  "LootBlindfoldIncrease": 0.0,
  "ExpertLootFastClockIncrease": 0.0,
  "LootFastClockIncrease": 0.0,
  "LootLizardEggIncrease": 0.0,
  "LootTurtleShellIncrease": 0.0,
  "LootFrozenTurtleShellIncrease": 0.0,
  "ExpertLootPaladinsShieldIncrease": 0.0,
  "LootPaladinsShieldIncrease": 0.0,
  "PirateLootCoinGunIncrease": 0.0,
  "PirateLootLuckyCoinIncrease": 0.0,
  "PirateLootDiscountCardIncrease": 0.0,
  "PirateLootPirateStaffIncrease": 0.0,
  "PirateLootGoldRingIncrease": 0.0,
  "PirateShipLootCoinGunIncrease": 0.0,
  "PirateShipLootLuckyCoinIncrease": 0.0,
  "PirateShipLootDiscountCardIncrease": 0.0,
  "PirateShipLootPirateShipStaffIncrease": 0.0,
  "PirateShipLootGoldRingIncrease": 0.0,
  "ExpertLootSlimeStaffIncrease": 0.0,
  "LootSlimeStaffIncrease": 0.0,
  "ExpertLootMegaphoneIncrease": 0.0,
  "LootMegaphoneIncrease": 0.0,
  "ExpertLootArmorPolishIncrease": 0.0,
  "LootArmorPolishIncrease": 0.0,
  "LootElfHatIncrease": 0.0,
  "LootElfShirtIncrease": 0.0,
  "LootElfPantsIncrease": 0.0,
  "ExpertLootWispinaBottleIncrease": 0.0,
  "LootWispinaBottleIncrease": 0.0,
  "LootAncientShadowHelmetIncrease": 0.0,
  "LootAncientShadowScalemailIncrease": 0.0,
  "LootAncientShadowGreavesIncrease": 0.0,
  "LootEyePatchIncrease": 0.0,
  "LootRobotHatIncrease": 0.0,
  "LootSailorHatIncrease": 0.0,
  "LootSailorShirtIncrease": 0.0,
  "LootSailorPantsIncrease": 0.0,
  "LootSkullIncrease": 0.0,
  "LootAncientNecroHelmetIncrease": 0.0,
  "LootBoneFeatherIncrease": 0.0,
  "LootCascadeIncrease": 0.0,
  "LootHelFireIncrease": 0.0,
  "ExpertLootMagnetSphereIncrease": 0.0,
  "LootMagnetSphereIncrease": 0.0,
  "LootAncientCobaltHelmetIncrease": 0.0,
  "LootAncientCobaltBreastplateIncrease": 0.0,
  "LootAncientCobaltLeggingsIncrease": 0.0,
  "LootClothierVoodooDollIncrease": 0.0,
  "LootGoldenFurnitureIncrease": 0.0,
  "ExpertLootKeybrandIncrease": 0.0,
  "LootKeybrandIncrease": 0.0,
  "LootPlumbersHatIncrease": 0.0,
  "LootBoneWandIncrease": 0.0,
  "LootChainKnifeIncrease": 0.0,
  "ExpertLootDeathSickleIncrease": 0.0,
  "LootDeathSickleIncrease": 0.0,
  "LootZombieArmIncrease": 0.0,
  "LootBoneSwordIncrease": 0.0,
  "LootAncientGoldHelmetIncrease": 0.0,
  "ExpertLootBlessedAppleIncrease": 0.0,
  "LootBlessedAppleIncrease": 0.0,
  "LootCutlassIncrease": 0.0,
  "LootGiantHarpyFeatherIncrease": 0.0,
  "LootHarpoonIncrease": 0.0,
  "LootIceSickleIncrease": 0.0,
  "LootKrakenIncrease": 0.0,
  "LootMarrowIncrease": 0.0,
  "LootMeatGrinderIncrease": 0.0,
  "LootUziIncrease": 0.0,
  "LootYeletsIncrease": 0.0,
  "LootBeamSwordIncrease": 0.0,
  "LootBlackLensIncrease": 0.0,
  "LootEskimoHoodIncrease": 0.0,
  "LootEskimoCoatIncrease": 0.0,
  "LootEskimoPantsIncrease": 0.0,
  "HellBatLootMagmaStoneIncrease": 0.0,
  "LavaBatLootMagmaStoneIncrease": 0.0,
  "LootSnowballLauncherIncrease": 0.0,
  "LootTatteredBeeWingIncrease": 0.0,
  "LootAncientIronHelmetIncrease": 0.0,
  "LootBrainScramblerIncrease": 0.0,
  "LootJellyfishNecklaceIncrease": 0.0,
  "LootLamiaClothesIncrease": 0.0,
  "LootMagicQuiverIncrease": 0.0,
  "ExpertLootMoonStoneIncrease": 0.0,
  "LootMoonStoneIncrease": 0.0,
  "LootPirateMapIncrease": 0.0,
  "LootFireFeatherIncrease": 0.0,
  "LootUnicornonaStickIncrease": 0.0,
  "LootWhoopieCushionIncrease": 0.0,
  "LootAmarokIncrease": 0.0,
  "LootGoodieBagIncrease": 0.0,
  "LootBonePickaxeIncrease": 0.0,
  "LootPsychoKnifeIncrease": 0.0,
  "ExpertLootPsychoKnifeIncrease": 0.0,
  "LootBunnyHoodIncrease": 0.0,
  "LootMummyCostumeIncrease": 0.0,
  "LootObsidianRoseIncrease": 0.0,
  "LootGoldenKeyIncrease": 0.0,
  "LootMoonCharmIncrease": 0.0,
  "LootAncientHornIncrease": 0.0,
  "LootDemonScytheIncrease": 0.0,
  "LootDivingHelmetIncrease": 0.0,
  "LootEyeSpringIncrease": 0.0,
  "LootFrostStaffIncrease": 0.0,
  "LootLihzahrdPowerCellIncrease": 0.0,
  "LootLivingFireBlockIncrease": 0.0,
  "LootMandibleBladeIncrease": 0.0,
  "LootMeteoriteIncrease": 0.0,
  "LootPedguinssuitIncrease": 0.0,
  "LootShackleIncrease": 0.0,
  "LootVikingHelmetIncrease": 0.0,
  "LootUmbrellaHatIncrease": 0.0,
  "LootMiningHelmetIncrease": 0.0,
  "LootMiningShirtIncrease": 0.0,
  "LootMiningPantsIncrease": 0.0,
  "LootBrokenBatWingIncrease": 0.0,
  "LootDesertSpiritLampIncrease": 0.0,
  "LootHookIncrease": 0.0,
  "LootLightShardIncrease": 0.0,
  "LootMoonMaskIncrease": 0.0,
  "LootSunMaskIncrease": 0.0,
  "LootGiantBowIncrease": 0.0,
  "LootRainArmorIncrease": 0.0,
  "LootRocketLauncherIncrease": 0.0,
  "LootToySledIncrease": 0.0,
  "LootSniperRifleIncrease": 0.0,
  "LootTacticalShotgunIncrease": 0.0,
  "LootAncientClothIncrease": 0.0,
  "LootDarkShardIncrease": 0.0,
  "LootNimbusRodIncrease": 0.0,
  "LootRifleScopeIncrease": 0.0,
  "LootSWATHelmetIncrease": 0.0,
  "LootBlackBeltIncrease": 0.0,
  "LootTabiIncrease": 0.0,
  "LootPresentIncrease": 0.0,
  "ExpertLootMoneyTroughIncrease": 0.0,
  "LootMoneyTroughIncrease": 0.0,
  "LootSoulofNightIncrease": 0.0,
  "ExpertLootSoulofNightIncrease": 0.0,
  "LootSoulofLightIncrease": 0.0,
  "ExpertLootSoulofLightIncrease": 0.0,
  "LootTallyCounterIncrease": 0.0,
  "LootBananarangIncrease": 0.0,
  "LootDualHookIncrease": 0.0,
  "LootMagicDaggerIncrease": 0.0,
  "LootTitanGloveIncrease": 0.0,
  "LootPhilosophersStoneIncrease": 0.0,
  "LootCrossNecklaceIncrease": 0.0,
  "LootStarCloakIncrease": 0.0,
  "LootDartRifleIncrease": 0.0,
  "LootWormHookIncrease": 0.0,
  "LootChainGuillotinesIncrease": 0.0,
  "LootClingerStaffIncrease": 0.0,
  "LootPutridScentIncrease": 0.0,
  "LootLifeDrainIncrease": 0.0,
  "LootDartPistolIncrease": 0.0,
  "LootFetidBaghnakhsIncrease": 0.0,
  "LootFleshKnucklesIncrease": 0.0,
  "LootTendonHookIncrease": 0.0,
  "LootDaedalusStormbowIncrease": 0.0,
  "LootFlyingKnifeIncrease": 0.0,
  "LootCrystalVileShardIncrease": 0.0,
  "LootIlluminantHookIncrease": 0.0,
  "LootBloodyMacheteIncrease": 0.0,
  "LootRallyIncrease": 0.0,
  "LootFestiveWingsIncrease": 0.0,
  "LootBabyGrinchsMischiefWhistleIncrease": 0.0,
  "LootReindeerBellsIncrease": 0.0,
  "LootPocketMirrorIncrease": 0.0,
  "ExpertLootPocketMirrorIncrease": 0.0,
  "LootMothronWingsIncrease": 0.0,
  "ExpertLootMothronWingsIncrease": 0.0,
  "LootKOCannonIncrease": 0.0,
  "IceSlimeAndSpikedIceSlimeLootFi:red:em": 0.0,
  "TombCrawlerAndDuneSplicerLootPyramidChestItem": 0.0,
  "HellBiomeModdedShadowBoxLoot": 0.0,
  "SlimeStaffIncreaseToSurfaceSlimes": false,
  "SlimeStaffIncreaseToUndergroundSlimes": false,
  "SlimeStaffIncreaseToCavernSlimess": false,
  "SlimeStaffIncreaseToIceSpikedSlimes": false,
  "SlimeStaffIncreaseToSpikedJungleSlimes": false,
  "TravelingMerchantLifeformAnalyzerIncrease": 0.0,
  "TravelingMerchantDPSMeterIncrease": 0.0,
  "TravelingMerchantStopwatchIncrease": 0.0,
  "TravelingMerchantMetalDetector": 0.0,
  "TravelingMerchantCelestialMagnetIncrease": 0.0,
  "TravelingMerchantAmmoBoxIncrease": 0.0,
  "TravelingMerchantPaintSprayerIncrease": 0.0,
  "TravelingMerchantBrickLayerIncrease": 0.0,
  "TravelingMerchantPortableCementMixerIncrease": 0.0,
  "TravelingMerchantExtendoGripIncrease": 0.0,
  "TravelingMerchantGatligatorIncrease": 0.0,
  "TravelingMerchantPulseBowIncrease": 0.0,
  "TravelingMerchantSakeIncrease": 0.0,
  "TravelingMerchantPhoIncrease": 0.0,
  "TravelingMerchantPadThaiIncrease": 0.0,
  "TravelingMerchantUltraBrightTorchIncrease": 0.0,
  "TravelingMerchantMagicHatIncrease": 0.0,
  "TravelingMerchantGypsyRobeIncrease": 0.0,
  "TravelingMerchantGiIncrease": 0.0,
  "TravelingMerchantPresseratorIncrease": 0.0,
  "TravelingMerchantYellowCounterweightIncrease": 0.0,
  "TravelingMerchantBlackCounterweightIncrease": 0.0,
  "TravelingMerchantSittingDucksFishingPoleIncrease": 0.0,
  "TravelingMerchantKatanaIncrease": 0.0,
  "TravelingMerchantCode1Increase": 0.0,
  "TravelingMerchantRevolverIncrease": 0.0,
  "TravelingMerchantCode2Increase": 0.0,
  "TravelingMerchantRedTeamBlockIncrease": 0.0,
  "TravelingMerchantRedTeamPlatformIncrease": 0.0,
  "TravelingMerchantYellowTeamBlockIncrease": 0.0,
  "TravelingMerchantYellowTeamPlatformIncrease": 0.0,
  "TravelingMerchantGreenTeamBlockIncrease": 0.0,
  "TravelingMerchantGreenTeamPlatformIncrease": 0.0,
  "TravelingMerchantBlueTeamBlockIncrease": 0.0,
  "TravelingMerchantBlueTeamPlatformIncrease": 0.0,
  "TravelingMerchantPinkTeamBlockIncrease": 0.0,
  "TravelingMerchantPinkTeamPlatformIncrease": 0.0,
  "TravelingMerchantWhiteTeamBlockIncrease": 0.0,
  "TravelingMerchantWhiteTeamPlatformIncrease": 0.0,
  "TravelingMerchantDiamondRingIncrease": 0.0,
  "TravelingMerchantAngelHaloIncrease": 0.0,
  "TravelingMerchantFezIncrease": 0.0,
  "TravelingMerchantWinterCapeIncrease": 0.0,
  "TravelingMerchantRedCapeIncrease": 0.0,
  "TravelingMerchantCrimsonCapeIncrease": 0.0,
  "TravelingMerchantMysteriousCapeIncrease": 0.0,
  "TravelingMerchantKimonoIncrease": 0.0,
  "TravelingMerchantWaterGunIncrease": 0.0,
  "TravelingMerchantCompanionCubeIncrease": 0.0,
  "TravelingMerchantChaliceIncrease": 0.0,
  "TravelingMerchantArcaneRuneWallIncrease": 0.0,
  "TravelingMerchantFancyDishesIncrease": 0.0,
  "TravelingMerchantDynastyWoodIncrease": 0.0,
  "TravelingMerchantRedDynastyShinglesIncrease": 0.0,
  "TravelingMerchantBlueDynastyShinglesIncrease": 0.0,
  "TravelingMerchantZebraSkinIncrease": 0.0,
  "TravelingMerchantLeopardSkinIncrease": 0.0,
  "TravelingMerchantTigerSkinIncrease": 0.0,
  "TravelingMerchantCastleMarsbergIncrease": 0.0,
  "TravelingMerchantMartiaLisaIncrease": 0.0,
  "TravelingMerchantTheTruthIsUpThereIncrease": 0.0,
  "TravelingMerchantNotAKidNorASquidIncrease": 0.0,
  "TravelingMerchantAcornsIncrease": 0.0,
  "TravelingMerchantColdSnapIncrease": 0.0,
  "TravelingMerchantCursedSaintIncrease": 0.0,
  "TravelingMerchantSnowfellasIncrease": 0.0,
  "TravelingMerchantTheSeasonIncrease": 0.0,
  "TravelingMerchantAlwaysXMasForConfigurations": false,
  "ChanceThatEnemyKillWillResetTravelingMerchant": 0.0,
  "QuestFishermansGuideIncrease": 0.0,
  "QuestWeatherRadioIncrease": 0.0,
  "QuestSextantIncrease": 0.0,
  "QuestAnglerHatIncrease": 0.0,
  "QuestAnglerVestIncrease": 0.0,
  "QuestAnglerPantsIncrease": 0.0,
  "QuestHighTestFishingLineIncrease": 0.0,
  "QuestAnglerEarringIncrease": 0.0,
  "QuestTackleBoxIncrease": 0.0,
  "QuestHardcoreFinWingsIncrease": 0.0,
  "QuestHardcoreBottomlessBucketIncrease": 0.0,
  "QuestHardcoreSuperAbsorbantSpongeIncrease": 0.0,
  "QuestHardcoreHotlineFishingHookIncrease": 0.0,
  "QuestGoldenFishingRodIncrease": 0.0,
  "QuestCoralstoneBlockIncrease": 0.0,
  "QuestTrophyIncrease": 0.0,
  "QuestDecorativeFurnitureIncrease": 0.0,
  "WitchDoctorSellsSeaweed": false,
  "WitchDoctorSellsFlowerBoots": false,
  "WitchDoctorSellsHoneyDispenser": false,
  "WitchDoctorSellsStaffofRegrowth": false,
  "MechanicSellsDartTrapAfterSkeletronDefeated": false,
  "MechanicSellsGeyserAfterWallofFleshDefeated": false,
  "MechanicSellsLihzahrdTrapsAfterGolemDefeated": false,
  "MechanicSellsWoodenSpikesAfterGolemDefeated": false,
  "MerchantSellsFi:red:em": false,
  "MerchantSellsPyramidItems": false,
  "MerchantSellsCloudInABottleWhenInSky": false,
  "MerchantSellsBlizzardInABottleWhenInSnow": false,
  "MerchantSellsSandstormInABottleWhenInDesert": false,
  "ChestSalesmanSpawnable": false,
  "ChestSalesmanPreHardmodeChestsRequireHardmodeActivated": false,
  "ChestSalesmanSellsGoldChest": false,
  "ChestSalesmanSellsIceChest": false,
  "ChestSalesmanSellsIvyChest": false,
  "ChestSalesmanSellsLihzahrdChest": false,
  "ChestSalesmanSellsLivingWoodChest": false,
  "ChestSalesmanSellsSkywareChest": false,
  "ChestSalesmanSellsOceanChest": false,
  "ChestSalesmanSellsWebCoveredChest": false,
  "ChestSalesmanSellsShadowChest": false,
  "ChestSalesmanSellsBiomeChest": false,
  "EnchantedSwordRecipe": false,
  "ArkhalisRecipe": false,
  "UseEnchangedSwordInNightsEdgeRecipe": false,
  "UseArkhalisInNightsEdgeRecipe": false,
  "UseCloudinaBottleRecipe": false,
  "UseBlizzardinaBottleRecipe": false,
  "UseSandstorminaBottleRecipe": false,
  "UseCustomCelestialSigilRecipe": false,
  "CustomCelestialSigilEachLunarFragmentCost": false,
  "UseChlorophyteAcceleratorRecipe": false,
  "ChlorophyteAcceleratorHallowedBarCost": 0,
  "ChlorophyteAcceleratorLihzahrdBrickCost": 10,
  "ChlorophyteAcceleratorWireCost": 10,
  "ChlorophyteAcceleratorChlorophyteOreCost": 1,
  "ChlorophyteAcceleratorHallowedBarInput": 0,
  "ChlorophyteAcceleratorMudBlockInput": 60,
  "ChlorophyteAcceleratorLihzahrdPowerCellInput": 1,
  "ChlorophyteAcceleratorChlorophyteOreOutput": 60,
  "UseTimePotionRecipe": false,
  "TimePotionNeonTetraCost": 1,
  "TimePotionGlowingMushroomCost": 1,
  "LivingWoodChestRecipe": false,
  "HermesBootsRecipe": false,
  "HermesBootsSilkCost": 46,
  "HermesBootsSwiftnessPotionCost": 4,
  "LavaCharmRecipe": false,
  "LavaCharmFireblossomCost": 1,
  "LavaCharmWaterleafCost": 1,
  "LavaCharmHellstoneBarCost": 15,
  "ExpertChangePotionRecipe_SET_TO_FALSE_IF_YOU_THINK_PLAYERS_MIGHT_ABUSE_THIS": false,
  "ExpertChangePotionMushroomCost": 1,
  "ExpertChangePotionGlowingMushroomCost": 1,
  "CrateDowngradeRecipes": false,
  "UseRainPotionRecipe": false,
  "RainPotionWaterleafCost": 1,
  "RainPotionRainCloudCost": 1,
  "UseSlimeRainPotionRecipe": false,
  "SlimeRainPotionRainPotionCost": 1,
  "SlimeRainPotionWaterleafCost": 0,
  "SlimeRainPotionRainCloudCost": 0,
  "SlimeRainPotionGelCost": 1,
  "BattlePotionSpawnrateMultiplier": 1.0,
  "BattlePotionMaxSpawnsMultiplier": 1.0,
  "WarPotionSpawnrateMultiplier": 10.0,
  "WarPotionMaxSpawnsMultiplier": 10.0,
  "WarPotionPowderCost": 7,
  "WarPotionDurationInFrames": 25200,
  "NewCharacterMiningPotions": 0,
  "NewCharacterCopperBars": 0,
  "NewCharacterIronBars": 0,
  "NewCharacterSilverBars": 0,
  "NewCharacterGoldBars": 0,
  "NewCharacterBarrels": 0,
  "NewCharacterCopperCoins": 0,
  "NewCharacterSilverCoins": 0,
  "NewCharacterGoldCoins": 0,
  "NewCharacterPlatinumCoins": 0,
  "NewCharacterWarPotions": 0,
  "ExtractinatorGivesAmberMosquito": 0.0,
  "ExtractinatorGivesDiamond": 0.0,
  "ExtractinatorGivesRuby": 0.0,
  "ExtractinatorGivesEmerald": 0.0,
  "ExtractinatorGivesSapphire": 0.0,
  "ExtractinatorGivesTopaz": 0.0,
  "ExtractinatorGivesAmethyst": 0.0,
  "ExtractinatorGivesAmber": 0.0,
  "ExtractinatorGivesGoldOre": 0.0,
  "ExtractinatorGivesPlatinumOre": 0.0,
  "ExtractinatorGivesFossilOre": 0.0,
  "ExtractinatorGivesSilverOre": 0.0,
  "ExtractinatorGivesTungstenOre": 0.0,
  "ExtractinatorGivesIronOre": 0.0,
  "ExtractinatorGivesLeadOre": 0.0,
  "ExtractinatorGivesCopperOre": 0.0,
  "ExtractinatorGivesTinOre": 0.0,
  "ExtractinatorGivesPlatinumCoin": 0.0,
  "ExtractinatorGivesGoldCoin": 0.0,
  "ExtractinatorGivesSilverCoin": 0.0,
  "ExtractinatorGivesCopperCoin": 0.0,
  "FishCatchBecomesGoldenCarp": 0.0,
  "FishCatchBecomesBlueJellyfish": 0.0,
  "FishCatchBecomesPinkJellyfish": 0.0,
  "FishCatchBecomesGreenJellyfish": 0.0,
  "FishCatchBecomesChaosFish": 0.0,
  "FishCatchBecomesReaverSharkBeforeEyeOfCthulhuEaterOfWorldsAndSkeletronDowned": 0.0,
  "FishCatchBecomesReaverSharkAfterEyeOfCthulhuEaterOfWorldsAndSkeletronDowned": 0.0,
  "FishCatchBecomesReaverSharkAfterAllMechBossesDowned": 0.0,
  "FishCatchBecomesSawtoothSharkBeforeEyeOfCthulhuEaterOfWorldsAndSkeletronDowned": 0.0,
  "FishCatchBecomesSawtoothSharkAfterEyeOfCthulhuEaterOfWorldsAndSkeletronDowned": 0.0,
  "FishCatchBecomesSawtoothSharkAfterAllMechBossesDowned": 0.0,
  "FishCatchBecomesScalyTruffle": 0.0,
  "FishCatchBecomesZephyrFish": 0.0,
  "FishCatchBecomesToxikarp": 0.0,
  "FishCatchBecomesBladetongue": 0.0,
  "FishCatchBecomesCrystalSerpent": 0.0,
  "FishCatchBecomesPurpleClubberfish": 0.0,
  "FishCatchBecomesRockfish": 0.0,
  "FishCatchBecomesFrogLeg": 0.0,
  "FishCatchBecomesSwordfish": 0.0,
  "FishCatchBecomesBalloonPufferfish": 0.0,
  "FishCatchBecomesFrostDaggerfish": 0.0,
  "FishCatchBecomesWoodenCrate": 0.0,
  "FishCatchBecomesIronCrate": 0.0,
  "FishCatchBecomesJungleCrate": 0.0,
  "FishCatchBecomesSkyCrate": 0.0,
  "FishCatchBecomesCorruptCrate": 0.0,
  "FishCatchBecomesCrimsonCrate": 0.0,
  "FishCatchBecomesHallowedCrate": 0.0,
  "FishCatchBecomesDungeonCrate": 0.0,
  "FishCatchBecomesGoldenCrate": 0.0,
  "CrateUpgradesDependingOnFishingPower": false
}
 
Back
Top Bottom