Esempio n. 1
0
 public override void NPCLoot(NPC npc)
 {
     if (npc.TypeName == "Blood Crawler")
     {
         TervaniaUtils.DropItem(npc, 2f, ModContent.ItemType <Items.Souls.Normal.Crimson.BloodCrawlerSoul>());
     }
 }
Esempio n. 2
0
 public override void NPCLoot(NPC npc)
 {
     if (npc.TypeName == "The Hungry")
     {
         TervaniaUtils.DropItem(npc, 1.5f, ModContent.ItemType <Items.Souls.Normal.Underworld.TheHungrySoul>());
     }
 }
Esempio n. 3
0
 public override void NPCLoot(NPC npc)
 {
     if (npc.TypeName == "Spazmatism")
     {
         TervaniaUtils.DropItem(npc, 10f, ModContent.ItemType <Items.Souls.Boss.SpazmatismSoul>());
     }
 }
Esempio n. 4
0
 public override void NPCLoot(NPC npc)
 {
     if (npc.type == NPCID.Medusa)
     {
         TervaniaUtils.DropItem(npc, 2.5f, ModContent.ItemType <Items.Souls.Hardmode.Underground.MedusaSoul>());
     }
 }
 public override void NPCLoot(NPC npc)
 {
     if (npc.TypeName == "Mushi Ladybug")
     {
         TervaniaUtils.DropItem(npc, 3f, ModContent.ItemType <Items.Souls.Normal.Underground.MushiLadybugSoul>());
     }
 }
 public override void NPCLoot(NPC npc)
 {
     if (npc.TypeName == "Crimtane Bunny")
     {
         TervaniaUtils.DropItem(npc, 2f, ModContent.ItemType <Items.Souls.Normal.Crimson.CrimtaneBunnySoul>());
     }
 }
Esempio n. 7
0
 public override void NPCLoot(NPC npc)
 {
     if (npc.TypeName == "Shark")
     {
         TervaniaUtils.DropItem(npc, 2.5f, ModContent.ItemType <Items.Souls.Normal.Overworld.SharkSoul>());
     }
 }
Esempio n. 8
0
 public override void NPCLoot(NPC npc)
 {
     if (npc.type == NPCID.Skeleton)
     {
         TervaniaUtils.DropItem(npc, 5f, ModContent.ItemType <Items.Souls.Normal.Underground.SkeletonSoul>());
     }
 }
Esempio n. 9
0
 public override void NPCLoot(NPC npc)
 {
     if (npc.TypeName == "Demon")
     {
         TervaniaUtils.DropItem(npc, 2f, ModContent.ItemType <Items.Souls.Normal.Underworld.DemonSoul>());
     }
 }
Esempio n. 10
0
 public override void NPCLoot(NPC npc)
 {
     if (npc.type == NPCID.LavaSlime)
     {
         TervaniaUtils.DropItem(npc, 2.5f, ModContent.ItemType <Items.Souls.Normal.Underworld.LavaSlimeSoul>());
     }
 }
Esempio n. 11
0
 public override void NPCLoot(NPC npc)
 {
     if (npc.type >= -65)
     {
         TervaniaUtils.DropItem(npc, 0.001f, ModContent.ItemType <Items.Souls.DrakSolz.Secret.SolarEclipseSoul>());
     }
 }
Esempio n. 12
0
 public override void NPCLoot(NPC npc)
 {
     if (npc.type == NPCID.SandSlime)
     {
         TervaniaUtils.DropItem(npc, 2f, ModContent.ItemType <Items.Souls.Normal.Desert.SandSlimeSoul>());
     }
 }
Esempio n. 13
0
 public override void NPCLoot(NPC npc)
 {
     if (npc.type == NPCID.UndeadViking)
     {
         TervaniaUtils.DropItem(npc, 2.5f, ModContent.ItemType <Items.Souls.Normal.Ice.UndeadVikingSoul>());
     }
 }
 public override void NPCLoot(NPC npc)
 {
     if (npc.TypeName == "Moonlight Butterfly")
     {
         TervaniaUtils.DropItem(npc, 4f, ModContent.ItemType <Items.Souls.DrakSolz.Overworld.MoonlightButterflySoul>());
     }
 }
Esempio n. 15
0
 public override void NPCLoot(NPC npc)
 {
     if (npc.type == NPCID.IceBat)
     {
         TervaniaUtils.DropItem(npc, 2f, ModContent.ItemType <Items.Souls.Normal.Ice.IceBatSoul>());
     }
 }
Esempio n. 16
0
 public override void NPCLoot(NPC npc)
 {
     if (npc.type == NPCID.CultistBoss)
     {
         TervaniaUtils.DropItem(npc, 10f, ModContent.ItemType <Items.Souls.Boss.LunaticCultistSoul>());
     }
 }
Esempio n. 17
0
 public override void NPCLoot(NPC npc)
 {
     if (npc.TypeName == "Jungle Bat")
     {
         TervaniaUtils.DropItem(npc, 1f, ModContent.ItemType <Items.Souls.Normal.Jungle.JungleBatSoul>());
     }
 }
Esempio n. 18
0
 public override void NPCLoot(NPC npc)
 {
     if (npc.TypeName == "Purple Slime")
     {
         TervaniaUtils.DropItem(npc, 5f, ModContent.ItemType <Items.Souls.Normal.Overworld.PurpleSlimeSoul>());
     }
 }
Esempio n. 19
0
 public override void NPCLoot(NPC npc)
 {
     if (npc.TypeName == "Bone Serpent")
     {
         TervaniaUtils.DropItem(npc, 3f, ModContent.ItemType <Items.Souls.Normal.Underworld.BoneSerpentSoul>());
     }
 }
Esempio n. 20
0
 public override void NPCLoot(NPC npc)
 {
     if (npc.TypeName == "Granite Elemental")
     {
         TervaniaUtils.DropItem(npc, 2f, ModContent.ItemType <Items.Souls.Normal.Underground.GraniteElementalSoul>());
     }
 }
Esempio n. 21
0
 public override void NPCLoot(NPC npc)
 {
     if (npc.TypeName == "Eye of Cthulhu")
     {
         TervaniaUtils.DropItem(npc, 10f, ModContent.ItemType <Items.Souls.Boss.EyeofCthulhuSoul>());
     }
 }
Esempio n. 22
0
 public override void NPCLoot(NPC npc)
 {
     if (npc.TypeName == "Humanity")
     {
         TervaniaUtils.DropItem(npc, 1f, ModContent.ItemType <Items.Souls.DrakSolz.Overworld.HumanitySoul>());
     }
 }
Esempio n. 23
0
 public override void NPCLoot(NPC npc)
 {
     if (npc.TypeName == "Skeletron")
     {
         TervaniaUtils.DropItem(npc, 5f, ModContent.ItemType <Items.Souls.Boss.SkeletronSoul>());
     }
 }
Esempio n. 24
0
 public override void NPCLoot(NPC npc)
 {
     if (npc.TypeName == "Hallow Dog")
     {
         TervaniaUtils.DropItem(npc, 2.5f, ModContent.ItemType <Items.Souls.DrakSolz.Overworld.HallowDogSoul>());
     }
 }
Esempio n. 25
0
 public override void NPCLoot(NPC npc)
 {
     if (npc.TypeName == "Giant Shelly")
     {
         TervaniaUtils.DropItem(npc, 4f, ModContent.ItemType <Items.Souls.Normal.Underground.GiantShellySoul>());
     }
 }
Esempio n. 26
0
 public override void NPCLoot(NPC npc)
 {
     if (npc.type == NPCID.WallofFlesh)
     {
         TervaniaUtils.DropItem(npc, 10f, ModContent.ItemType <Items.Souls.Boss.WallofFleshSoul>());
     }
 }
Esempio n. 27
0
 public override void NPCLoot(NPC npc)
 {
     if (npc.TypeName == "Baby Slime")
     {
         TervaniaUtils.DropItem(npc, 2f, ModContent.ItemType <Items.Souls.Normal.Underground.BabySlimeSoul>());
     }
 }
Esempio n. 28
0
 public override void NPCLoot(NPC npc)
 {
     if (npc.TypeName == "Sand Elemental")
     {
         TervaniaUtils.DropItem(npc, 1f, ModContent.ItemType <Items.Souls.Hardmode.Desert.SandElementalSoul>());
     }
 }
Esempio n. 29
0
 public override void NPCLoot(NPC npc)
 {
     if (npc.TypeName == "Spinwheel")
     {
         TervaniaUtils.DropItem(npc, 5f, ModContent.ItemType <Items.Souls.DrakSolz.Overworld.SpinwheelSoul>());
     }
 }
Esempio n. 30
0
 public override void NPCLoot(NPC npc)
 {
     if (npc.TypeName == "Lac Beetle")
     {
         TervaniaUtils.DropItem(npc, 5f, ModContent.ItemType <Items.Souls.Normal.Jungle.LacBeetleSoul>());
     }
 }