This repository has been archived on 2024-12-27. You can view files and clone it, but cannot push or open issues or pull requests.
continuity/Content/Items/Materials/ExquisiteGel.cs

19 lines
402 B
C#
Raw Normal View History

2024-11-10 21:50:01 +00:00
using Terraria;
using Terraria.ID;
using Terraria.ModLoader;
namespace Continuity.Content.Items
2024-11-10 21:50:01 +00:00
{
public class ExquisiteGel : ModItem
2024-11-10 21:50:01 +00:00
{
public override void SetDefaults()
{
Item.width = 26;
Item.height = 28;
2024-11-10 21:50:01 +00:00
Item.maxStack = 999;
Item.value = Item.buyPrice(silver: 2);
Item.rare = ItemRarityID.Blue;
}
}
}