chore: Replace magic numbers in Plantera Recipes
This commit is contained in:
parent
dfa70f05e0
commit
9f89c4bfbc
1 changed files with 3 additions and 3 deletions
|
@ -14,7 +14,7 @@ namespace Continuity.Content
|
||||||
recipe.AddIngredient(ItemID.BeeKeeper, 1);
|
recipe.AddIngredient(ItemID.BeeKeeper, 1);
|
||||||
recipe.AddIngredient(ItemID.Stinger, 3);
|
recipe.AddIngredient(ItemID.Stinger, 3);
|
||||||
recipe.AddIngredient(ModContent.ItemType<PalishadeTissue>(), 9);
|
recipe.AddIngredient(ModContent.ItemType<PalishadeTissue>(), 9);
|
||||||
recipe.AddIngredient(331, 6);
|
recipe.AddIngredient(ItemID.JungleSpores, 6);
|
||||||
recipe.Register();
|
recipe.Register();
|
||||||
|
|
||||||
// The Axe
|
// The Axe
|
||||||
|
@ -22,7 +22,7 @@ namespace Continuity.Content
|
||||||
recipe.AddIngredient(ItemID.ChlorophyteClaymore, 1);
|
recipe.AddIngredient(ItemID.ChlorophyteClaymore, 1);
|
||||||
recipe.AddIngredient(ItemID.Stinger, 2);
|
recipe.AddIngredient(ItemID.Stinger, 2);
|
||||||
recipe.AddIngredient(ModContent.ItemType<PalishadeTissue>(), 10);
|
recipe.AddIngredient(ModContent.ItemType<PalishadeTissue>(), 10);
|
||||||
recipe.AddIngredient(331, 3);
|
recipe.AddIngredient(ItemID.JungleSpores, 3);
|
||||||
recipe.Register();
|
recipe.Register();
|
||||||
|
|
||||||
// Temple Key
|
// Temple Key
|
||||||
|
@ -61,7 +61,7 @@ namespace Continuity.Content
|
||||||
recipe.AddIngredient(ItemID.ChlorophyteBar, 10);
|
recipe.AddIngredient(ItemID.ChlorophyteBar, 10);
|
||||||
recipe.AddIngredient(ModContent.ItemType<PalishadeTissue>(), 8);
|
recipe.AddIngredient(ModContent.ItemType<PalishadeTissue>(), 8);
|
||||||
recipe.AddIngredient(ItemID.Vine, 1);
|
recipe.AddIngredient(ItemID.Vine, 1);
|
||||||
recipe.AddIngredient(331, 8);
|
recipe.AddIngredient(ItemID.JungleSpores, 8);
|
||||||
recipe.Register();
|
recipe.Register();
|
||||||
|
|
||||||
// Venus Magnum
|
// Venus Magnum
|
||||||
|
|
Reference in a new issue