pythonprogrammer11
Terrarian
With the Example Mod I know you can change the basic stats of weapons like damage and critical strike chance, but I'm trying to change the tooltip of the Picksaw.
This is what I have:
using Terraria;
using Terraria.ID;
using Terraria.ModLoader;
namespace trainhead1201sMod.Items
{
public class Picksaw : GlobalItem
{
public override void SetDefaults(Item item) { <---- I've tried changing this to SetStaticDefaults since that's were the tooltips are but it didn't change anything
if (item.type == ItemID.Picksaw) {
Tooltip.SetDefault("Able to mine Voskium");
}
}
}
}
This is what I have:
using Terraria;
using Terraria.ID;
using Terraria.ModLoader;
namespace trainhead1201sMod.Items
{
public class Picksaw : GlobalItem
{
public override void SetDefaults(Item item) { <---- I've tried changing this to SetStaticDefaults since that's were the tooltips are but it didn't change anything
if (item.type == ItemID.Picksaw) {
Tooltip.SetDefault("Able to mine Voskium");
}
}
}
}