Skip to content

Commit

Permalink
one more thing
Browse files Browse the repository at this point in the history
  • Loading branch information
70000hp committed Oct 9, 2023
1 parent 16ddf25 commit 1e802ea
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/main/java/com/hbm/crafting/WeaponRecipes.java
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public static void register() {
CraftingManager.addRecipeAuto(new ItemStack(ModItems.gun_revolver_saturnite, 1), new Object[] { "SSR", "TWM", 'S', BIGMT.plate(), 'W', ModItems.bolt_dura_steel, 'T', ModItems.wire_tungsten, 'R', ModItems.gun_revolver,'M', ModItems.motor });
CraftingManager.addRecipeAuto(new ItemStack(ModItems.gun_revolver_gold, 1), new Object[] { "SSM", " RW", 'S', GOLD.plate(), 'W', W.ingot(), 'R', ModItems.wire_gold, 'M', ModItems.mechanism_revolver_1 });
CraftingManager.addRecipeAuto(new ItemStack(ModItems.gun_revolver_schrabidium, 1), new Object[] { "SSM", " RW", 'S', SA326.block(), 'W', W.ingot(), 'R', ModItems.wire_schrabidium, 'M', ModItems.mechanism_special });
CraftingManager.addRecipeAuto(new ItemStack(ModItems.gun_revolver_pip, 1), new Object[] { " G ", "SSP", " TI", 'G', KEY_ANYPANE, 'S', STEEL.plate(), 'P', ModItems.mechanism_revolver_2, 'T', ModItems.wire_tungsten, 'I', ANY_PLASTIC.ingot() });
CraftingManager.addRecipeAuto(new ItemStack(ModItems.gun_revolver_pip, 1), new Object[] { "PGP", " R ", 'G', KEY_ANYPANE, 'R', ModItems.gun_revolver_nopip, 'P', ANY_PLASTIC.ingot() });
CraftingManager.addRecipeAuto(new ItemStack(ModItems.gun_revolver_nopip, 1), new Object[] { "SSP", " TI", 'S', STEEL.plate(), 'P', ModItems.mechanism_revolver_2, 'T', ModItems.wire_tungsten, 'I', ANY_PLASTIC.ingot() });
CraftingManager.addRecipeAuto(new ItemStack(ModItems.gun_revolver_blackjack, 1), new Object[] { "SSP", " TI", 'S', STEEL.plate(), 'P', ModItems.mechanism_revolver_2, 'T', ModItems.wire_tungsten, 'I', KEY_PLANKS });
CraftingManager.addRecipeAuto(new ItemStack(ModItems.gun_revolver_silver, 1), new Object[] { "SSP", " TI", 'S', AL.plate(), 'P', ModItems.mechanism_revolver_2, 'T', ModItems.wire_tungsten, 'I', KEY_PLANKS });
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/hbm/handler/BulletConfiguration.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public class BulletConfiguration implements Cloneable {
//damage bounds
public float dmgMin;
public float dmgMax;
public float headshotMult = 1.3F;
public float headshotMult = 1.4F;

//acceleration torwards neg Y
public double gravity;
Expand Down
8 changes: 4 additions & 4 deletions src/main/java/com/hbm/handler/guncfg/Gun44MagnumFactory.java
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public static GunConfiguration getNovacConfig() {

GunConfiguration config = getBaseConfig();

config.durability = 2500;
config.durability = 4000;
config.equipSound = "hbm:weapon.yeehaw";
config.name = "ifHorseshoe";
config.manufacturer = EnumGunManufacturer.IF;
Expand All @@ -96,7 +96,7 @@ public static GunConfiguration getMacintoshConfig() {

GunConfiguration config = getBaseConfig();

config.durability = 4000;
config.durability = 5000;
config.equipSound = "hbm:weapon.yeehaw";
config.name = "ifScope";
config.manufacturer = EnumGunManufacturer.IF;
Expand All @@ -119,7 +119,7 @@ public static GunConfiguration getBlackjackConfig() {

GunConfiguration config = getBaseConfig();

config.durability = 4000;
config.durability = 3000;
config.ammoCap = 5;

config.allowsInfinity = false;
Expand All @@ -140,7 +140,7 @@ public static GunConfiguration getSilverConfig() {

GunConfiguration config = getBaseConfig();

config.durability = 4000;
config.durability = 1500;
config.ammoCap = 6;

config.allowsInfinity = false;
Expand Down

0 comments on commit 1e802ea

Please sign in to comment.