This commit is contained in:
2022-12-04 12:34:29 +01:00
parent 979b6adde2
commit 6383b3938b
6 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -16,4 +16,4 @@ public class NpcLoot : GlobalNPC
npcLoot.Add(ItemDropRule.Common(ModContent.ItemType<MithrilPebbleOfPigSmiting>(), 400, 1, 1)); npcLoot.Add(ItemDropRule.Common(ModContent.ItemType<MithrilPebbleOfPigSmiting>(), 400, 1, 1));
} }
} }
} }
+1 -1
View File
@@ -39,4 +39,4 @@ public class CopperSwordOnAStick : ModItem {
.AddIngredient(ItemID.CopperShortsword) .AddIngredient(ItemID.CopperShortsword)
.Register(); .Register();
} }
} }
+1 -1
View File
@@ -49,4 +49,4 @@ public class KatanaRedo : GlobalItem {
return null; return null;
} }
} }
+1 -1
View File
@@ -44,4 +44,4 @@ public class MithrilPebbleOfPigSmiting : ModItem {
Item.shootSpeed = 20f; Item.shootSpeed = 20f;
Item.shoot = ModContent.ProjectileType<MithrilPebbleOfPigSmitingProjectile>(); Item.shoot = ModContent.ProjectileType<MithrilPebbleOfPigSmitingProjectile>();
} }
} }
@@ -29,4 +29,4 @@ class CopperSwordOnAStickProjectile : ModProjectile {
DrawOriginOffsetX = 0; DrawOriginOffsetX = 0;
DrawOffsetX = 0; DrawOffsetX = 0;
} }
} }
@@ -28,4 +28,4 @@ class MithrilPebbleOfPigSmitingProjectile : ModProjectile {
Main.dust[dust].noGravity = true; Main.dust[dust].noGravity = true;
Main.dust[dust].velocity *= 0.3f; Main.dust[dust].velocity *= 0.3f;
} }
} }