Added Sundial, Staff of Shifting Sands and Timekeeper to Dune Wyrm's expert drops.
This commit is contained in:
parent
e2e8537a01
commit
4f10fb0226
@ -2,6 +2,7 @@ using Decimation.Content.Items.Misc.Souls;
|
||||
using Decimation.Content.Items.Placeable.DuneWyrm;
|
||||
using Decimation.Content.Items.Tools;
|
||||
using Decimation.Content.Items.Vanity.DuneWyrm;
|
||||
using Decimation.Content.Items.Weapons.DuneWyrm;
|
||||
using Decimation.Lib.Items;
|
||||
using Terraria;
|
||||
using Terraria.ID;
|
||||
@ -18,10 +19,24 @@ namespace Decimation.Content.Items.Boss.DuneWyrm
|
||||
player.QuickSpawnItem(ModContent.ItemType<SoulofTime>(), Main.rand.Next(20, 35));
|
||||
player.QuickSpawnItem(ItemID.FossilOre, Main.rand.Next(10, 15));
|
||||
player.QuickSpawnItem(ModContent.ItemType<TheHourGlass>());
|
||||
|
||||
if (Main.rand.NextBool(7))
|
||||
player.QuickSpawnItem(ModContent.ItemType<DuneWyrmMask>());
|
||||
if (Main.rand.NextBool(13))
|
||||
player.QuickSpawnItem(ModContent.ItemType<DuneWyrmTrophy>());
|
||||
|
||||
switch (Main.rand.Next(3))
|
||||
{
|
||||
case 0:
|
||||
player.QuickSpawnItem(ModContent.ItemType<Sundial>());
|
||||
break;
|
||||
case 1:
|
||||
player.QuickSpawnItem(ModContent.ItemType<StaffofShiftingSands>());
|
||||
break;
|
||||
case 2:
|
||||
player.QuickSpawnItem(ModContent.ItemType<Timekeeper>());
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user