chore: restructure files
This commit is contained in:
parent
74522e3418
commit
6481b733fb
2 changed files with 4 additions and 1 deletions
|
@ -14,7 +14,9 @@ namespace Continuity.Content
|
||||||
{
|
{
|
||||||
if (npc.type == NPCID.Plantera)
|
if (npc.type == NPCID.Plantera)
|
||||||
{
|
{
|
||||||
npcLoot.Add(ItemDropRule.Common(ModContent.ItemType<PalishadeTissue>(), 1, 25, 35));
|
LeadingConditionRule notExpertRule = new LeadingConditionRule(new Conditions.NotExpert());
|
||||||
|
notExpertRule.OnSuccess(ItemDropRule.Common(ModContent.ItemType<PalishadeTissue>(), 1, 10, 35));
|
||||||
|
npcLoot.Add(notExpertRule);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -25,6 +27,7 @@ namespace Continuity.Content
|
||||||
{
|
{
|
||||||
if (item.type == ItemID.PlanteraBossBag)
|
if (item.type == ItemID.PlanteraBossBag)
|
||||||
{
|
{
|
||||||
|
itemLoot.Add(ItemDropRule.Common(ModContent.ItemType<PalishadeTissue>(), 1, 25, 35));
|
||||||
short[] toRemove = {
|
short[] toRemove = {
|
||||||
ItemID.TheAxe,
|
ItemID.TheAxe,
|
||||||
ItemID.PygmyStaff,
|
ItemID.PygmyStaff,
|
Reference in a new issue