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