Clean up tile items.
This commit is contained in:
@@ -8,7 +8,6 @@ public class RainbowStation : ModItem
|
|||||||
{
|
{
|
||||||
public override void SetStaticDefaults()
|
public override void SetStaticDefaults()
|
||||||
{
|
{
|
||||||
DisplayName.SetDefault("Rainbow Station");
|
|
||||||
Tooltip.SetDefault("Used to craft rainbow weapons");
|
Tooltip.SetDefault("Used to craft rainbow weapons");
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -29,10 +28,10 @@ public class RainbowStation : ModItem
|
|||||||
|
|
||||||
public override void AddRecipes()
|
public override void AddRecipes()
|
||||||
{
|
{
|
||||||
Recipe val = CreateRecipe();
|
CreateRecipe()
|
||||||
val.AddIngredient(ItemID.LunarCraftingStation, 1);
|
.AddIngredient(ItemID.LunarCraftingStation)
|
||||||
val.AddIngredient(ModContent.ItemType<Bars.RainbowChunk>(), 12);
|
.AddIngredient(ModContent.ItemType<Bars.RainbowChunk>(), 12)
|
||||||
val.AddTile(TileID.LunarCraftingStation);
|
.AddTile(TileID.LunarCraftingStation)
|
||||||
val.Register();
|
.Register();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,7 +8,6 @@ public class ReinforcedWorkBench : ModItem
|
|||||||
{
|
{
|
||||||
public override void SetStaticDefaults()
|
public override void SetStaticDefaults()
|
||||||
{
|
{
|
||||||
DisplayName.SetDefault("Reinforced Work Bench");
|
|
||||||
Tooltip.SetDefault("Used to craft stone-plated weapons");
|
Tooltip.SetDefault("Used to craft stone-plated weapons");
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -28,9 +27,9 @@ public class ReinforcedWorkBench : ModItem
|
|||||||
|
|
||||||
public override void AddRecipes()
|
public override void AddRecipes()
|
||||||
{
|
{
|
||||||
Recipe val = CreateRecipe();
|
CreateRecipe()
|
||||||
val.AddIngredient(ItemID.WorkBench, 1);
|
.AddIngredient(ItemID.WorkBench, 1)
|
||||||
val.AddIngredient(ItemID.StoneBlock, 12);
|
.AddIngredient(ItemID.StoneBlock, 12)
|
||||||
val.Register();
|
.Register();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user