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

◆ RegisterBoss_QueenBee()

void Terraria.GameContent.ItemDropRules.ItemDropDatabase.RegisterBoss_QueenBee ( )
inlineprivate

Definition at line 520 of file ItemDropDatabase.cs.

521 {
522 Conditions.NotExpert condition = new Conditions.NotExpert();
523 short type = 222;
524 RegisterToNPC(type, ItemDropRule.BossBag(3322));
525 RegisterToNPC(type, ItemDropRule.MasterModeCommonDrop(4928));
526 RegisterToNPC(type, ItemDropRule.MasterModeDropOnAllPlayers(4802, _masterModeDropRng));
527 RegisterToNPC(type, ItemDropRule.ByCondition(condition, 2108, 7));
528 RegisterToNPC(type, new DropBasedOnExpertMode(ItemDropRule.OneFromOptionsNotScalingWithLuck(1, 1121, 1123, 2888), ItemDropRule.DropNothing()));
529 RegisterToNPC(type, ItemDropRule.ByCondition(condition, 1132, 3));
530 RegisterToNPC(type, ItemDropRule.ByCondition(condition, 1170, 15));
531 RegisterToNPC(type, ItemDropRule.ByCondition(condition, 2502, 20));
532 RegisterToNPC(type, ItemDropRule.ByCondition(condition, 1129, 3)).OnFailedRoll(ItemDropRule.OneFromOptionsNotScalingWithLuck(2, 842, 843, 844));
533 RegisterToNPC(type, ItemDropRule.ByCondition(condition, 1130, 4, 10, 30, 3));
534 RegisterToNPC(type, ItemDropRule.ByCondition(condition, 2431, 1, 16, 26));
535 }
IItemDropRule RegisterToNPC(int type, IItemDropRule entry)

References Terraria.GameContent.ItemDropRules.ItemDropDatabase._masterModeDropRng, Terraria.GameContent.ItemDropRules.ItemDropRule.BossBag(), Terraria.GameContent.ItemDropRules.ItemDropRule.ByCondition(), Terraria.GameContent.ItemDropRules.ItemDropRule.DropNothing(), Terraria.GameContent.ItemDropRules.ItemDropRule.MasterModeCommonDrop(), Terraria.GameContent.ItemDropRules.ItemDropRule.MasterModeDropOnAllPlayers(), Terraria.GameContent.ItemDropRules.ItemDropRule.OneFromOptionsNotScalingWithLuck(), and Terraria.GameContent.ItemDropRules.ItemDropDatabase.RegisterToNPC().

Referenced by Terraria.GameContent.ItemDropRules.ItemDropDatabase.RegisterBosses().