diff --git a/Content/BossOverrides.cs b/Content/PlanteraOverrides.cs similarity index 83% rename from Content/BossOverrides.cs rename to Content/PlanteraOverrides.cs index d6272e9..18d651b 100644 --- a/Content/BossOverrides.cs +++ b/Content/PlanteraOverrides.cs @@ -14,7 +14,9 @@ namespace Continuity.Content { if (npc.type == NPCID.Plantera) { - npcLoot.Add(ItemDropRule.Common(ModContent.ItemType(), 1, 25, 35)); + LeadingConditionRule notExpertRule = new LeadingConditionRule(new Conditions.NotExpert()); + notExpertRule.OnSuccess(ItemDropRule.Common(ModContent.ItemType(), 1, 10, 35)); + npcLoot.Add(notExpertRule); } } } @@ -25,6 +27,7 @@ namespace Continuity.Content { if (item.type == ItemID.PlanteraBossBag) { + itemLoot.Add(ItemDropRule.Common(ModContent.ItemType(), 1, 25, 35)); short[] toRemove = { ItemID.TheAxe, ItemID.PygmyStaff, diff --git a/Content/Recipes.cs b/Content/PlanteraRecipes.cs similarity index 100% rename from Content/Recipes.cs rename to Content/PlanteraRecipes.cs