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/ExquisiteGel.cs

21 lines
445 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
{
public class ExquisiteGel : ModItem
2024-11-10 21:50:01 +00:00
{
public override void SetDefaults()
{
// Placeholder 'Royal Gel' item
Item.width = 1;
Item.height = 1;
Item.maxStack = 999;
Item.value = Item.buyPrice(silver: 2);
Item.rare = ItemRarityID.Blue;
}
}
}