Cleaned up crafting materials.

This commit is contained in:
Big Duckie
2022-07-05 16:20:48 -06:00
parent 13d9498d2c
commit 0cee270cdb
9 changed files with 24 additions and 32 deletions
@@ -8,7 +8,6 @@ public class BrokenBand : ModItem
{ {
public override void SetStaticDefaults() public override void SetStaticDefaults()
{ {
DisplayName.SetDefault("Broken Band");
Tooltip.SetDefault("[c/C9FF4C:Crafting Ingredient]\n'This broken band feels oddly important to you...' \nIt would be wise to keep it."); Tooltip.SetDefault("[c/C9FF4C:Crafting Ingredient]\n'This broken band feels oddly important to you...' \nIt would be wise to keep it.");
} }
+12 -13
View File
@@ -8,7 +8,6 @@ public class GoddessGold : ModItem
{ {
public override void SetStaticDefaults() public override void SetStaticDefaults()
{ {
DisplayName.SetDefault("Goddess Gold");
Tooltip.SetDefault("[c/C9FF4C:Crafting Ingredient]\nGold to fit a goddess!"); Tooltip.SetDefault("[c/C9FF4C:Crafting Ingredient]\nGold to fit a goddess!");
} }
@@ -23,18 +22,18 @@ public class GoddessGold : ModItem
public override void AddRecipes() public override void AddRecipes()
{ {
Recipe val = CreateRecipe(); CreateRecipe()
val.AddIngredient(ItemID.Ectoplasm); .AddIngredient(ItemID.Ectoplasm)
val.AddIngredient(ItemID.GoldBar, 2); .AddIngredient(ItemID.GoldBar, 2)
val.AddIngredient(ModContent.ItemType<SoulofWisdom>()); .AddIngredient(ModContent.ItemType<SoulofWisdom>())
val.AddTile(TileID.AdamantiteForge); .AddTile(TileID.AdamantiteForge)
val.Register(); .Register();
Recipe val2 = CreateRecipe(); CreateRecipe()
val2.AddIngredient(ItemID.Ectoplasm); .AddIngredient(ItemID.Ectoplasm)
val2.AddIngredient(ItemID.PlatinumBar, 2); .AddIngredient(ItemID.PlatinumBar, 2)
val2.AddIngredient(ModContent.ItemType<SoulofWisdom>()); .AddIngredient(ModContent.ItemType<SoulofWisdom>())
val2.AddTile(TileID.AdamantiteForge); .AddTile(TileID.AdamantiteForge)
val2.Register(); .Register();
} }
} }
@@ -7,7 +7,6 @@ public class NatureToken : ModItem
{ {
public override void SetStaticDefaults() public override void SetStaticDefaults()
{ {
DisplayName.SetDefault("Nature Token");
Tooltip.SetDefault("[c/C9FF4C:Crafting Ingredient]\nUsed to convert the raw power of nature into weapons"); Tooltip.SetDefault("[c/C9FF4C:Crafting Ingredient]\nUsed to convert the raw power of nature into weapons");
} }
@@ -7,7 +7,6 @@ public class OminousBook : ModItem
{ {
public override void SetStaticDefaults() public override void SetStaticDefaults()
{ {
DisplayName.SetDefault("Ominous Book");
Tooltip.SetDefault("[c/C9FF4C:Crafting Ingredient]\nAn ominous presence emits from this book. Maybe pack some gems and bring it to an altar?"); Tooltip.SetDefault("[c/C9FF4C:Crafting Ingredient]\nAn ominous presence emits from this book. Maybe pack some gems and bring it to an altar?");
} }
@@ -7,7 +7,6 @@ public class RainbowDust : ModItem
{ {
public override void SetStaticDefaults() public override void SetStaticDefaults()
{ {
DisplayName.SetDefault("Rainbow Dust");
Tooltip.SetDefault("[c/C9FF4C:Crafting Ingredient]\nDon't inhale it!"); Tooltip.SetDefault("[c/C9FF4C:Crafting Ingredient]\nDon't inhale it!");
} }
@@ -7,7 +7,6 @@ public class RainbowHandle : ModItem
{ {
public override void SetStaticDefaults() public override void SetStaticDefaults()
{ {
DisplayName.SetDefault("Rainbow Handle");
Tooltip.SetDefault("[c/C9FF4C:Crafting Ingredient]\nUsed to craft The Rainbow Demon \n[c/FF2B6E:Currently Unobtainable]"); Tooltip.SetDefault("[c/C9FF4C:Crafting Ingredient]\nUsed to craft The Rainbow Demon \n[c/FF2B6E:Currently Unobtainable]");
} }
@@ -7,7 +7,6 @@ public class RainbowMuzzle : ModItem
{ {
public override void SetStaticDefaults() public override void SetStaticDefaults()
{ {
DisplayName.SetDefault("Rainbow Muzzle");
Tooltip.SetDefault("[c/C9FF4C:Crafting Ingredient]\nUsed to craft The Rainbow Demon \n[c/FF2B6E:Currently Unobtainable]"); Tooltip.SetDefault("[c/C9FF4C:Crafting Ingredient]\nUsed to craft The Rainbow Demon \n[c/FF2B6E:Currently Unobtainable]");
} }
@@ -7,7 +7,6 @@ public class RainbowToken : ModItem
{ {
public override void SetStaticDefaults() public override void SetStaticDefaults()
{ {
DisplayName.SetDefault("Rainbow Token");
Tooltip.SetDefault("[c/C9FF4C:Crafting Ingredient]\nUsed to convert the raw power of rainbows into weapons"); Tooltip.SetDefault("[c/C9FF4C:Crafting Ingredient]\nUsed to convert the raw power of rainbows into weapons");
} }
@@ -22,10 +21,10 @@ public class RainbowToken : ModItem
public override void AddRecipes() public override void AddRecipes()
{ {
Recipe val = CreateRecipe(); CreateRecipe()
val.AddIngredient(ModContent.ItemType<NatureToken>(), 4); .AddIngredient(ModContent.ItemType<NatureToken>(), 4)
val.AddIngredient(ModContent.ItemType<RainbowDust>(), 40); .AddIngredient(ModContent.ItemType<RainbowDust>(), 40)
val.AddTile(ModContent.TileType<global::FabusMod.Tiles.RainbowStation>()); .AddTile(ModContent.TileType<global::FabusMod.Tiles.RainbowStation>())
val.Register(); .Register();
} }
} }
@@ -21,16 +21,16 @@ public class SoulofWisdom : ModItem
Item.maxStack = 99; Item.maxStack = 99;
Item.value = Item.sellPrice(0, 2, 40, 0); Item.value = Item.sellPrice(0, 2, 40, 0);
Item.rare = ItemRarityID.Pink; Item.rare = ItemRarityID.Pink;
//Sets.ItemNoGravity[Item.type] = true; ItemID.Sets.ItemNoGravity[Type] = true;
} }
public override void AddRecipes() public override void AddRecipes()
{ {
Recipe val = CreateRecipe(); CreateRecipe()
val.AddIngredient(ItemID.SoulofFright, 1); .AddIngredient(ItemID.SoulofFright)
val.AddIngredient(ItemID.SoulofMight, 1); .AddIngredient(ItemID.SoulofMight)
val.AddIngredient(ItemID.SoulofSight, 1); .AddIngredient(ItemID.SoulofSight)
val.AddTile(TileID.AdamantiteForge); .AddTile(TileID.AdamantiteForge)
val.Register(); .Register();
} }
} }