feat: placeholder RoyalGel
item
This commit is contained in:
parent
0ed2b3836e
commit
c98a1d0e0c
2 changed files with 20 additions and 0 deletions
20
Content/Items/RoyalGel.cs
Normal file
20
Content/Items/RoyalGel.cs
Normal file
|
@ -0,0 +1,20 @@
|
|||
using Terraria;
|
||||
using Terraria.ID;
|
||||
using Terraria.ModLoader;
|
||||
|
||||
namespace Continuity.Content.Items
|
||||
{
|
||||
public class RoyalGel : ModItem
|
||||
{
|
||||
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;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
BIN
Content/Items/RoyalGel.png
Normal file
BIN
Content/Items/RoyalGel.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 710 B |
Reference in a new issue