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

View File

@@ -0,0 +1,23 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Terraria.ID;
using Terraria.ModLoader;
using Terraria;
namespace tMx.Content.Items.Materials
{
public class FrozenTablet : ModItem
{
public override void SetDefaults()
{
Item.ResearchUnlockCount = 666;
Item.value = Item.buyPrice(gold: 1);
Item.rare = ItemRarityID.Blue;
Item.material = true;
Item.maxStack = 666;
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

View File

@@ -0,0 +1,23 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Terraria.ID;
using Terraria.ModLoader;
using Terraria;
namespace tMx.Content.Items.Materials
{
public class MoltenTablet : ModItem
{
public override void SetDefaults()
{
Item.ResearchUnlockCount = 666;
Item.value = Item.buyPrice(gold: 1);
Item.rare = ItemRarityID.Red;
Item.material = true;
Item.maxStack = 666;
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.