1.2.0 - Added the Vanilla Material(s) & Quantity to config

This commit is contained in:
mikx
2025-02-17 16:39:08 -05:00
parent 24d23a47e8
commit 243549733b
6 changed files with 45 additions and 6 deletions

View File

@@ -4,6 +4,7 @@ using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Terraria.ID;
using Terraria.ModLoader.Config;
namespace tTP
@@ -17,6 +18,14 @@ namespace tTP
[DefaultValue(true)]
public bool UsetMxTablets;
[Label("Vanilla Material(s)")]
[Tooltip("Add the ItemID (a number) of each material you want in the recipe.")]
public List<int> VanillaMatsList = new List<int>() { 22, 75 };
[Label("Material(s) Quantity")]
[Tooltip("Add the quantity for each ItemID you entered in the material list.")]
public List<int> VanillaMatsListQty = new List<int>() { 10, 1 };
public override ConfigScope Mode => (ConfigScope)0;
}
}