Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ ExpertGetsRerolls()

static IItemDropRule Terraria.GameContent.ItemDropRules.ItemDropRule.ExpertGetsRerolls ( int itemId,
int chanceDenominator,
int expertRerolls )
inlinestatic

Definition at line 20 of file ItemDropRule.cs.

21 {
22 return new DropBasedOnExpertMode(WithRerolls(itemId, 0, chanceDenominator), WithRerolls(itemId, expertRerolls, chanceDenominator));
23 }
static IItemDropRule WithRerolls(int itemId, int rerolls, int chanceDenominator=1, int minimumDropped=1, int maximumDropped=1)

References Terraria.GameContent.ItemDropRules.ItemDropRule.WithRerolls().

Referenced by Terraria.GameContent.ItemDropRules.ItemDropDatabase.RegisterEclipse(), Terraria.GameContent.ItemDropRules.ItemDropDatabase.RegisterHardmodeDungeonDrops(), and Terraria.GameContent.ItemDropRules.ItemDropRule.StatusImmunityItem().