0.2.0 commit

This commit is contained in:
mikx
2025-02-11 16:04:10 -05:00
commit b861945511
28 changed files with 843 additions and 0 deletions

24
tMxConfigs.cs Normal file
View File

@@ -0,0 +1,24 @@
using System.ComponentModel;
using Terraria.ModLoader.Config;
namespace tMx
{
public class tMxConfigs : ModConfig
{
[Header("Tweaks")]
[Label("No Potions Delay")]
[Tooltip("No delay between healing/mana potions use. Debuff = Off")]
[DefaultValue(false)]
public bool NoPotionDelay;
[Header("Mechanics")]
[Label("Protect item(s) from pig.")]
[Tooltip("The clean command will not delete researched item(s) present in your piggy bank.")]
[DefaultValue(false)]
public bool CleanResearchedPiggyProtect;
public override ConfigScope Mode => (ConfigScope)0;
}
}