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

◆ RegisterBoss_EOC()

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

Definition at line 455 of file ItemDropDatabase.cs.

456 {
457 Conditions.NotExpert condition = new Conditions.NotExpert();
458 Conditions.IsCrimsonAndNotExpert condition2 = new Conditions.IsCrimsonAndNotExpert();
459 Conditions.IsCorruptionAndNotExpert condition3 = new Conditions.IsCorruptionAndNotExpert();
460 short type = 4;
461 RegisterToNPC(type, ItemDropRule.BossBag(3319));
462 RegisterToNPC(type, ItemDropRule.MasterModeCommonDrop(4924));
463 RegisterToNPC(type, ItemDropRule.MasterModeCommonDrop(3763));
464 RegisterToNPC(type, ItemDropRule.MasterModeDropOnAllPlayers(4798, _masterModeDropRng));
465 RegisterToNPC(type, ItemDropRule.ByCondition(condition, 2112, 7));
466 RegisterToNPC(type, ItemDropRule.ByCondition(condition, 1299, 40));
467 RegisterToNPC(type, ItemDropRule.ByCondition(condition2, 880, 1, 30, 90));
468 RegisterToNPC(type, ItemDropRule.ByCondition(condition2, 2171, 1, 1, 3));
469 RegisterToNPC(type, ItemDropRule.ByCondition(condition3, 47, 1, 20, 50));
470 RegisterToNPC(type, ItemDropRule.ByCondition(condition3, 56, 1, 30, 90));
471 RegisterToNPC(type, ItemDropRule.ByCondition(condition3, 59, 1, 1, 3));
472 }
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.MasterModeCommonDrop(), Terraria.GameContent.ItemDropRules.ItemDropRule.MasterModeDropOnAllPlayers(), and Terraria.GameContent.ItemDropRules.ItemDropDatabase.RegisterToNPC().

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