From c5db8af7c8e7750c7cb0cd20d966526aa0998f88 Mon Sep 17 00:00:00 2001 From: vizthex123 Date: Mon, 10 Sep 2018 19:58:43 -0500 Subject: [PATCH] Delete CompressedSCoin.cs --- Items/CompressedSCoin.cs | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 Items/CompressedSCoin.cs diff --git a/Items/CompressedSCoin.cs b/Items/CompressedSCoin.cs deleted file mode 100644 index af13693..0000000 --- a/Items/CompressedSCoin.cs +++ /dev/null @@ -1,30 +0,0 @@ -using Terraria; -using Terraria.ID; -using Terraria.ModLoader; -using Microsoft.Xna.Framework; - -namespace StrangeThings.Items -{ - public class CompressedSCoin : ModItem - { - public override void SetStaticDefaults() - { - DisplayName.SetDefault("Compressed Silver Coins"); - Tooltip.SetDefault("A small stack of Silver coins that has been compressed"); - } - public override void SetDefaults() - { - item.rare = 0; - item.maxStack = 999; - } - - public override void AddRecipes() - { - ModRecipe recipe = new ModRecipe(mod); - recipe.AddIngredient(ItemID.SilverCoin, 25); - recipe.AddTile(TileID.Anvils); - recipe.SetResult(this); - recipe.AddRecipe(); - } - } -} \ No newline at end of file