diff --git a/src/main/java/systems/brn/plasticgun/PlasticGun.java b/src/main/java/systems/brn/plasticgun/PlasticGun.java index 6187163..b8e0263 100644 --- a/src/main/java/systems/brn/plasticgun/PlasticGun.java +++ b/src/main/java/systems/brn/plasticgun/PlasticGun.java @@ -112,12 +112,12 @@ public class PlasticGun implements ModInitializer { grenades.add(new GrenadeItem("grenade_k417", 1, 7f, 0.5f, 70, false, true, 0, 0, 0, 10, 0)); // K417 Fragmentation Grenade - shurikens.add(new ShurikenItem("wooden_shuriken", 0.1, 5, 4f)); - shurikens.add(new ShurikenItem("stone_shuriken", 0.2, 5, 4f)); - shurikens.add(new ShurikenItem("iron_shuriken", 0.4, 5, 4f)); - shurikens.add(new ShurikenItem("golden_shuriken", 0.3, 5, 4f)); - shurikens.add(new ShurikenItem("diamond_shuriken", 0.8, 5, 4f)); - shurikens.add(new ShurikenItem("netherite_shuriken", 1, 5, 4f)); + shurikens.add(new ShurikenItem("wooden_shuriken", 1, 5, 4f)); + shurikens.add(new ShurikenItem("stone_shuriken", 2, 5, 4f)); + shurikens.add(new ShurikenItem("iron_shuriken", 4, 5, 4f)); + shurikens.add(new ShurikenItem("golden_shuriken", 3, 5, 4f)); + shurikens.add(new ShurikenItem("diamond_shuriken", 4, 5, 4f)); + shurikens.add(new ShurikenItem("netherite_shuriken", 8, 5, 4f)); GRENADE_ENTITY_TYPE = Registry.register( diff --git a/src/main/java/systems/brn/plasticgun/grenades/GrenadeEntity.java b/src/main/java/systems/brn/plasticgun/grenades/GrenadeEntity.java index be774d7..8c7159b 100644 --- a/src/main/java/systems/brn/plasticgun/grenades/GrenadeEntity.java +++ b/src/main/java/systems/brn/plasticgun/grenades/GrenadeEntity.java @@ -119,6 +119,7 @@ public class GrenadeEntity extends ThrowableProjectile implements PolymerEntity for (Entity entity : nearbyEntities) { if (entity instanceof LivingEntity livingEntity) { livingEntity.addStatusEffect(new StatusEffectInstance(StatusEffects.SLOWNESS, stunDuration, 255, true, false)); + livingEntity.addStatusEffect(new StatusEffectInstance(StatusEffects.JUMP_BOOST, stunDuration, 255, true, false)); } } stunDuration = 0; diff --git a/src/main/resources/assets/plasticgun/textures/item/diamond_shuriken.png b/src/main/resources/assets/plasticgun/textures/item/diamond_shuriken.png new file mode 100644 index 0000000..813df1a Binary files /dev/null and b/src/main/resources/assets/plasticgun/textures/item/diamond_shuriken.png differ diff --git a/src/main/resources/assets/plasticgun/textures/item/golden_shuriken.png b/src/main/resources/assets/plasticgun/textures/item/golden_shuriken.png new file mode 100644 index 0000000..2f792fa Binary files /dev/null and b/src/main/resources/assets/plasticgun/textures/item/golden_shuriken.png differ diff --git a/src/main/resources/assets/plasticgun/textures/item/grenade_rgd_5.png b/src/main/resources/assets/plasticgun/textures/item/grenade_rgd_5.png new file mode 100644 index 0000000..6ca0510 Binary files /dev/null and b/src/main/resources/assets/plasticgun/textures/item/grenade_rgd_5.png differ diff --git a/src/main/resources/assets/plasticgun/textures/item/iron_shuriken.png b/src/main/resources/assets/plasticgun/textures/item/iron_shuriken.png new file mode 100644 index 0000000..6c5334a Binary files /dev/null and b/src/main/resources/assets/plasticgun/textures/item/iron_shuriken.png differ diff --git a/src/main/resources/assets/plasticgun/textures/item/netherite_shuriken.png b/src/main/resources/assets/plasticgun/textures/item/netherite_shuriken.png new file mode 100644 index 0000000..7a69e6c Binary files /dev/null and b/src/main/resources/assets/plasticgun/textures/item/netherite_shuriken.png differ diff --git a/src/main/resources/assets/plasticgun/textures/item/stone_shuriken.png b/src/main/resources/assets/plasticgun/textures/item/stone_shuriken.png new file mode 100644 index 0000000..debf3fc Binary files /dev/null and b/src/main/resources/assets/plasticgun/textures/item/stone_shuriken.png differ diff --git a/src/main/resources/assets/plasticgun/textures/item/wooden_shuriken.png b/src/main/resources/assets/plasticgun/textures/item/wooden_shuriken.png new file mode 100644 index 0000000..be2b4d3 Binary files /dev/null and b/src/main/resources/assets/plasticgun/textures/item/wooden_shuriken.png differ