diff --git a/src/main/java/com/s5gi/giGuns/giGuns.java b/src/main/java/com/s5gi/giGuns/giGuns.java index 1e265d3..3e116e9 100644 --- a/src/main/java/com/s5gi/giGuns/giGuns.java +++ b/src/main/java/com/s5gi/giGuns/giGuns.java @@ -10,6 +10,8 @@ import org.bukkit.World; import org.bukkit.entity.Entity; import org.bukkit.entity.Player; import org.bukkit.entity.Snowball; +import org.bukkit.event.block.Action; +import org.bukkit.inventory.ItemStack; import org.bukkit.plugin.java.JavaPlugin; public final class giGuns extends JavaPlugin { @@ -44,11 +46,24 @@ public final class giGuns extends JavaPlugin { getCommand("getgun").setExecutor((commandSender, command, s, args) -> { if (commandSender instanceof Player player) { - IGun gun = GunHandler.registeredGuns.values().stream().toList().get(Integer.parseInt(args[0])); + IGun gun = GunHandler.guns.get(Integer.parseInt(args[0])); player.getInventory().addItem(gun.compileGun()); } return false; }); + getCommand("getammo").setExecutor((commandSender, command, s, args) -> { + if (commandSender instanceof Player player) { + if (player.getInventory().getItemInMainHand() !=null && + player.getInventory().getItemInMainHand().getItemMeta()!=null && + GunHandler.isRegisteredGun(player.getInventory().getItemInMainHand().getItemMeta().getItemName())) { + IGun gun = GunHandler.getRegisteredGun(player.getInventory().getItemInMainHand().getItemMeta().getItemName()); + ItemStack ammo = gun.bulletType().getItem(); + ammo.setAmount(64); + player.getInventory().addItem(ammo); + } + } + return false; + }); } @Override diff --git a/src/main/java/com/s5gi/giGuns/guns/BulletType.java b/src/main/java/com/s5gi/giGuns/guns/BulletType.java index 68827eb..efea4f1 100644 --- a/src/main/java/com/s5gi/giGuns/guns/BulletType.java +++ b/src/main/java/com/s5gi/giGuns/guns/BulletType.java @@ -6,14 +6,15 @@ import org.bukkit.NamespacedKey; import org.bukkit.inventory.ItemStack; import org.bukkit.inventory.ShapedRecipe; import org.bukkit.inventory.meta.ItemMeta; +import org.bukkit.inventory.meta.components.CustomModelDataComponent; + +import java.util.List; public enum BulletType { // Penetration in blocks/entities a bullet can travel through before it stops PISTOL("&cPistol", BulletType.Recipes.pistol()), RIFLE("&eRifle", BulletType.Recipes.rifle()), HEAVY("&6Heavy", BulletType.Recipes.heavy()), - EXPLOSIVE("&4Explosive", BulletType.Recipes.explosive()), - GRENADE("&2Grenade", BulletType.Recipes.grenade()), ANTI_TANK("&9Anti-Tank", BulletType.Recipes.antiTank()),; private final String prettyName; @@ -41,16 +42,19 @@ public enum BulletType { } public static class Recipes { - public static ItemStack makeAmmo(String prettyName) { + public static ItemStack makeAmmo(String prettyName, int textureID) { ItemStack gunItem = new ItemStack(Material.BLACK_DYE); ItemMeta meta = gunItem.getItemMeta(); meta.setItemName(giGuns.color(prettyName + " Ammo")); + CustomModelDataComponent component = meta.getCustomModelDataComponent(); + component.setStrings(List.of("ammomodel" + textureID)); + meta.setCustomModelDataComponent(component); gunItem.setItemMeta(meta); return gunItem; } public static ShapedRecipe pistol() { - ShapedRecipe recipe = new ShapedRecipe(NamespacedKey.fromString("giguns:pistol_ammo"), makeAmmo("&cPistol")); + ShapedRecipe recipe = new ShapedRecipe(NamespacedKey.fromString("giguns:pistol_ammo"), makeAmmo("&cPistol", 0)); recipe.shape(" c ", "ngn", "nnn"); recipe.setIngredient('c', Material.COPPER_INGOT); recipe.setIngredient('n', Material.IRON_NUGGET); @@ -58,7 +62,7 @@ public enum BulletType { return recipe; } public static ShapedRecipe rifle() { - ShapedRecipe recipe = new ShapedRecipe(NamespacedKey.fromString("giguns:rifle_ammo"), makeAmmo("&eRifle")); + ShapedRecipe recipe = new ShapedRecipe(NamespacedKey.fromString("giguns:rifle_ammo"), makeAmmo("&eRifle", 1)); recipe.shape(" c ", "ngn", "nIn"); recipe.setIngredient('c', Material.COPPER_INGOT); recipe.setIngredient('n', Material.IRON_NUGGET); @@ -67,7 +71,7 @@ public enum BulletType { return recipe; } public static ShapedRecipe heavy() { - ShapedRecipe recipe = new ShapedRecipe(NamespacedKey.fromString("giguns:heavy_ammo"), makeAmmo("&6Heavy")); + ShapedRecipe recipe = new ShapedRecipe(NamespacedKey.fromString("giguns:heavy_ammo"), makeAmmo("&6Heavy", 2)); recipe.shape(" c ", "IgI", "InI"); recipe.setIngredient('c', Material.COPPER_INGOT); recipe.setIngredient('n', Material.IRON_NUGGET); @@ -75,24 +79,8 @@ public enum BulletType { recipe.setIngredient('I', Material.IRON_INGOT); return recipe; } - public static ShapedRecipe explosive() { - ShapedRecipe recipe = new ShapedRecipe(NamespacedKey.fromString("giguns:explosive_ammo"), makeAmmo("&4Explosive")); - recipe.shape(" c ", "ngn", "nIn"); - recipe.setIngredient('c', Material.COPPER_INGOT); - recipe.setIngredient('n', Material.IRON_NUGGET); - recipe.setIngredient('g', Material.GUNPOWDER); - recipe.setIngredient('I', Material.BLAZE_POWDER); - return recipe; - } - public static ShapedRecipe grenade() { - ShapedRecipe recipe = new ShapedRecipe(NamespacedKey.fromString("giguns:grenade_ammo"), makeAmmo("&2Grenade")); - recipe.shape(" I ", "ITI", "III"); - recipe.setIngredient('T', Material.TNT); - recipe.setIngredient('I', Material.IRON_INGOT); - return recipe; - } public static ShapedRecipe antiTank() { - ShapedRecipe recipe = new ShapedRecipe(NamespacedKey.fromString("giguns:antitank_ammo"), makeAmmo("&9Anti-Tank")); + ShapedRecipe recipe = new ShapedRecipe(NamespacedKey.fromString("giguns:antitank_ammo"), makeAmmo("&9Anti-Tank", 3)); recipe.shape(" B ", "ITI", "III"); recipe.setIngredient('T', Material.TNT); recipe.setIngredient('I', Material.IRON_INGOT); diff --git a/src/main/java/com/s5gi/giGuns/guns/GunHandler.java b/src/main/java/com/s5gi/giGuns/guns/GunHandler.java index f8938fc..88ebf3b 100644 --- a/src/main/java/com/s5gi/giGuns/guns/GunHandler.java +++ b/src/main/java/com/s5gi/giGuns/guns/GunHandler.java @@ -9,6 +9,7 @@ import org.bukkit.event.block.Action; import org.bukkit.event.entity.ProjectileHitEvent; import org.bukkit.event.player.PlayerInteractAtEntityEvent; import org.bukkit.event.player.PlayerInteractEvent; +import org.bukkit.inventory.EquipmentSlot; import org.bukkit.inventory.ItemStack; import org.bukkit.inventory.PlayerInventory; import org.bukkit.metadata.FixedMetadataValue; @@ -19,12 +20,14 @@ import java.util.HashMap; import java.util.List; public class GunHandler implements Listener { + public static ArrayList guns = new ArrayList<>(); public static HashMap registeredGuns = new HashMap<>(); public static HashMap physicsBullets = new HashMap<>(); public static HashMap lastLocationsOfBullets = new HashMap<>(); public static void register(IGun gun) { registeredGuns.put(giGuns.color(gun.name()), gun); + guns.add(gun); giGuns.plugin.getServer().addRecipe(gun.recipe()); } @@ -80,7 +83,7 @@ public class GunHandler implements Listener { physbullet.setMetadata("isBullet", new FixedMetadataValue(giGuns.plugin, true)); physbullet.setMetadata("bornAt", new FixedMetadataValue(giGuns.plugin, System.currentTimeMillis())); for (Sound sound : gun.sound()) { - world.playSound(from.getEyeLocation(), sound, SoundCategory.PLAYERS, 15f, gun.soundPitch()); + world.playSound(from.getEyeLocation(), sound, SoundCategory.PLAYERS, gun.soundVolume(), gun.soundPitch()); } from.setCooldown(from.getInventory().getItemInMainHand(), gun.cooldown()); lastLocationsOfBullets.put(physbullet, physbullet.getLocation()); @@ -89,15 +92,29 @@ public class GunHandler implements Listener { @EventHandler public static void onRightClick(PlayerInteractEvent event) { - if (event.getPlayer().getInventory().getItemInMainHand() !=null && event.getPlayer().getInventory().getItemInMainHand().getItemMeta()!=null && GunHandler.isRegisteredGun(event.getPlayer().getInventory().getItemInMainHand().getItemMeta().getItemName()) - && (event.getAction() == Action.RIGHT_CLICK_BLOCK || event.getAction() == Action.RIGHT_CLICK_AIR)) { - event.setCancelled(true); - shoot(event.getPlayer()); - } else if (event.getPlayer().getInventory().getItemInMainHand() != null && - event.getPlayer().getInventory().getItemInMainHand().getType().equals(Material.BLACK_DYE) && - event.getPlayer().getInventory().getItemInMainHand().getItemMeta()!=null && - event.getPlayer().getInventory().getItemInMainHand().getItemMeta().getItemName().contains("Ammo")) { - event.setCancelled(true); + if (event.getAction() == Action.RIGHT_CLICK_BLOCK || event.getAction() == Action.RIGHT_CLICK_AIR) { + if (event.getHand() == EquipmentSlot.HAND) { + if (event.getPlayer().getInventory().getItemInMainHand() !=null && event.getPlayer().getInventory().getItemInMainHand().getItemMeta()!=null && GunHandler.isRegisteredGun(event.getPlayer().getInventory().getItemInMainHand().getItemMeta().getItemName())) { + event.setCancelled(true); + shoot(event.getPlayer()); + } else if (event.getPlayer().getInventory().getItemInMainHand() != null && + event.getPlayer().getInventory().getItemInMainHand().getType().equals(Material.BLACK_DYE) && + event.getPlayer().getInventory().getItemInMainHand().getItemMeta()!=null && + event.getPlayer().getInventory().getItemInMainHand().getItemMeta().getItemName().contains("Ammo")) { + event.setCancelled(true); + } + } else if (event.getHand() == EquipmentSlot.OFF_HAND) { + if (event.getPlayer().getInventory().getItemInOffHand() !=null && event.getPlayer().getInventory().getItemInOffHand().getItemMeta()!=null && GunHandler.isRegisteredGun(event.getPlayer().getInventory().getItemInOffHand().getItemMeta().getItemName())) { + event.setCancelled(true); + } + else if (event.getPlayer().getInventory().getItemInOffHand() != null && + event.getPlayer().getInventory().getItemInOffHand().getType().equals(Material.BLACK_DYE) && + event.getPlayer().getInventory().getItemInOffHand().getItemMeta()!=null && + event.getPlayer().getInventory().getItemInOffHand().getItemMeta().getItemName().contains("Ammo")) { + event.setCancelled(true); + } + + } } } @EventHandler @@ -128,19 +145,20 @@ public class GunHandler implements Listener { } else { double dueDamage = gun.damage()-Math.min(GunHandler.Calc.getDamageAfterArmor(damagedPlayer), gun.damage()-0.5f); damagedPlayer.damage(dueDamage, bulletOwner); - gun.onHitPlayer(damagedPlayer.getLocation(), damagedPlayer); + gun.onHitEntity(damagedPlayer.getLocation(), damagedPlayer); + Calc.makeBlood(event.getEntity().getLocation(), (float) dueDamage); physicsBullets.remove(physbullet); - } } else if (event.getHitEntity() instanceof LivingEntity livingEntity) { livingEntity.damage(gun.damage(), bulletOwner); - gun.onHitPlayer(livingEntity.getLocation(), livingEntity); + gun.onHitEntity(event.getEntity().getLocation(), livingEntity); + Calc.makeBlood(event.getEntity().getLocation(), (int) gun.damage()); physicsBullets.remove(physbullet); } if (event.getHitBlock()!=null) { event.getHitBlock().getDrops().clear(); - gun.onHitBlock(event.getHitBlock().getLocation(), event.getHitBlock()); + gun.onHitBlock(event.getEntity().getLocation(), event.getHitBlock()); physicsBullets.remove(physbullet); } @@ -216,15 +234,19 @@ public class GunHandler implements Listener { } public static void drawParticleLine(Location from, Location to) { - Vector direction = to.toVector().subtract(from.toVector()); - double distance = direction.length(); - direction.normalize(); + Vector direction = to.toVector().subtract(from.toVector()); + double distance = direction.length(); + direction.normalize(); - for (double d = 0; d < distance; d += 0.5) { - Location point = from.clone().add(direction.clone().multiply(d)); - from.getWorld().spawnParticle(Particle.DUST, point, 3, 0.01f, 0.01f, 0.01f, 0, new Particle.DustOptions(Color.WHITE, 0.5f)); + for (double d = 0; d < distance; d += 0.5) { + Location point = from.clone().add(direction.clone().multiply(d)); + from.getWorld().spawnParticle(Particle.DUST, point, 3, 0.01f, 0.01f, 0.01f, 0, new Particle.DustOptions(Color.WHITE, 0.5f)); - } + } + } + + public static void makeBlood(Location location, float damage) { + location.getWorld().spawnParticle(Particle.BLOCK_CRUMBLE, location, (int) damage * 8, 0.1f, 0.1f, 0.1f, Material.RED_WOOL.createBlockData()); } } } diff --git a/src/main/java/com/s5gi/giGuns/guns/Guns.java b/src/main/java/com/s5gi/giGuns/guns/Guns.java index 29a7b02..37bac8e 100644 --- a/src/main/java/com/s5gi/giGuns/guns/Guns.java +++ b/src/main/java/com/s5gi/giGuns/guns/Guns.java @@ -10,6 +10,7 @@ public class Guns { GunHandler.register(new m1Bazooka()); GunHandler.register(new barrettM82()); GunHandler.register(new AK47()); + GunHandler.register(new m4a1s()); } // public static final IGun hecateII = new IGun() { diff --git a/src/main/java/com/s5gi/giGuns/guns/IGun.java b/src/main/java/com/s5gi/giGuns/guns/IGun.java index 7f78e56..f71cf71 100644 --- a/src/main/java/com/s5gi/giGuns/guns/IGun.java +++ b/src/main/java/com/s5gi/giGuns/guns/IGun.java @@ -1,7 +1,6 @@ package com.s5gi.giGuns.guns; import com.s5gi.giGuns.giGuns; -import org.bukkit.Color; import org.bukkit.Location; import org.bukkit.Material; import org.bukkit.Sound; @@ -9,30 +8,29 @@ import org.bukkit.block.Block; import org.bukkit.entity.LivingEntity; import org.bukkit.inventory.CraftingRecipe; import org.bukkit.inventory.ItemStack; -import org.bukkit.inventory.meta.ItemMeta; +import org.bukkit.inventory.meta.CrossbowMeta; import org.bukkit.inventory.meta.components.CustomModelDataComponent; -import org.jetbrains.annotations.NotNull; import java.util.ArrayList; import java.util.List; -import java.util.Map; public interface IGun { String name(); List description(); - Material getItem(); + BulletType bulletType(); List sound(); float soundPitch(); - void onHitPlayer(Location location, LivingEntity entity); + default float soundVolume() { + return 15f; + } + void onHitEntity(Location location, LivingEntity entity); void onHitBlock(Location location, Block block); double bulletSpeed(); double damage(); //in ticks int cooldown(); - default int textureId() { - return 0; - } + int textureId(); CraftingRecipe recipe(); default List getLore() { List lore = new ArrayList<>(); @@ -45,10 +43,11 @@ public interface IGun { } default ItemStack compileGun() { IGun gun = this; - ItemStack gunItem = new ItemStack(gun.getItem()); - ItemMeta meta = gunItem.getItemMeta(); + ItemStack gunItem = new ItemStack(Material.CROSSBOW); + CrossbowMeta meta = (CrossbowMeta) gunItem.getItemMeta(); meta.setItemName(giGuns.color(gun.name())); meta.setLore(gun.getLore()); + meta.addChargedProjectile(new ItemStack(Material.LIGHT, 1)); CustomModelDataComponent component = meta.getCustomModelDataComponent(); component.setStrings(List.of("gunmodel" + gun.textureId())); meta.setCustomModelDataComponent(component); diff --git a/src/main/java/com/s5gi/giGuns/guns/ind/AK47.java b/src/main/java/com/s5gi/giGuns/guns/ind/AK47.java index bad333b..f15b3d1 100644 --- a/src/main/java/com/s5gi/giGuns/guns/ind/AK47.java +++ b/src/main/java/com/s5gi/giGuns/guns/ind/AK47.java @@ -21,7 +21,7 @@ public class AK47 implements IGun { @Override public int textureId() { - return 1; + return 2; } @Override @@ -29,11 +29,6 @@ public class AK47 implements IGun { return List.of("&cSoviet &eUnion", "&7A gas-operated, long-stroke piston, closed rotating bolt, assault rifle"); } - @Override - public Material getItem() { - return Material.DIAMOND_HOE; - } - @Override public BulletType bulletType() { return BulletType.RIFLE; @@ -50,7 +45,7 @@ public class AK47 implements IGun { } @Override - public void onHitPlayer(Location location, LivingEntity entity) { + public void onHitEntity(Location location, LivingEntity entity) { } diff --git a/src/main/java/com/s5gi/giGuns/guns/ind/_1911.java b/src/main/java/com/s5gi/giGuns/guns/ind/_1911.java index 9edaec1..81a33fd 100644 --- a/src/main/java/com/s5gi/giGuns/guns/ind/_1911.java +++ b/src/main/java/com/s5gi/giGuns/guns/ind/_1911.java @@ -25,11 +25,6 @@ public class _1911 implements IGun { } - @Override - public Material getItem() { - return Material.WOODEN_HOE; - } - @Override public BulletType bulletType() { return BulletType.PISTOL; @@ -46,7 +41,7 @@ public class _1911 implements IGun { } @Override - public void onHitPlayer(Location location, LivingEntity entity) { + public void onHitEntity(Location location, LivingEntity entity) { } @@ -70,6 +65,11 @@ public class _1911 implements IGun { return 3; } + @Override + public int textureId() { + return 0; + } + @Override public boolean gravity() { return true; diff --git a/src/main/java/com/s5gi/giGuns/guns/ind/barrettM82.java b/src/main/java/com/s5gi/giGuns/guns/ind/barrettM82.java index 02f8fad..aeb068d 100644 --- a/src/main/java/com/s5gi/giGuns/guns/ind/barrettM82.java +++ b/src/main/java/com/s5gi/giGuns/guns/ind/barrettM82.java @@ -1,5 +1,6 @@ package com.s5gi.giGuns.guns.ind; +import com.s5gi.giGuns.giGuns; import com.s5gi.giGuns.guns.BulletType; import com.s5gi.giGuns.guns.IGun; import org.bukkit.Location; @@ -9,7 +10,10 @@ import org.bukkit.Sound; import org.bukkit.block.Block; import org.bukkit.entity.LivingEntity; import org.bukkit.inventory.CraftingRecipe; +import org.bukkit.inventory.ItemStack; import org.bukkit.inventory.ShapedRecipe; +import org.bukkit.inventory.meta.CrossbowMeta; +import org.bukkit.inventory.meta.components.CustomModelDataComponent; import java.util.List; @@ -25,8 +29,8 @@ public class barrettM82 implements IGun { } @Override - public Material getItem() { - return Material.STONE_HOE; + public int textureId() { + return 4; } @Override @@ -45,7 +49,7 @@ public class barrettM82 implements IGun { } @Override - public void onHitPlayer(Location location, LivingEntity entity) { + public void onHitEntity(Location location, LivingEntity entity) { } diff --git a/src/main/java/com/s5gi/giGuns/guns/ind/desertDeagle.java b/src/main/java/com/s5gi/giGuns/guns/ind/desertDeagle.java index a32bff0..472812e 100644 --- a/src/main/java/com/s5gi/giGuns/guns/ind/desertDeagle.java +++ b/src/main/java/com/s5gi/giGuns/guns/ind/desertDeagle.java @@ -24,11 +24,6 @@ public class desertDeagle implements IGun { return List.of("&9U.S.A.", "&7A single-action, gas-operated, semi-automatic pistol"); } - @Override - public Material getItem() { - return Material.DIAMOND_HOE; - } - @Override public BulletType bulletType() { return BulletType.HEAVY; @@ -45,7 +40,7 @@ public class desertDeagle implements IGun { } @Override - public void onHitPlayer(Location location, LivingEntity entity) { + public void onHitEntity(Location location, LivingEntity entity) { } @@ -69,6 +64,11 @@ public class desertDeagle implements IGun { return 15; } + @Override + public int textureId() { + return 1; + } + @Override public CraftingRecipe recipe() { ShapedRecipe recipe = new ShapedRecipe(NamespacedKey.fromString("giguns:desert_eagle"), compileGun()); diff --git a/src/main/java/com/s5gi/giGuns/guns/ind/hecateII.java b/src/main/java/com/s5gi/giGuns/guns/ind/hecateII.java index 62bd4db..b7efc15 100644 --- a/src/main/java/com/s5gi/giGuns/guns/ind/hecateII.java +++ b/src/main/java/com/s5gi/giGuns/guns/ind/hecateII.java @@ -25,11 +25,6 @@ public class hecateII implements IGun { } - @Override - public Material getItem() { - return Material.IRON_HOE; - } - @Override public BulletType bulletType() { return BulletType.HEAVY; @@ -46,7 +41,7 @@ public class hecateII implements IGun { } @Override - public void onHitPlayer(Location location, LivingEntity entity) { + public void onHitEntity(Location location, LivingEntity entity) { } @@ -70,6 +65,11 @@ public class hecateII implements IGun { return 30; } + @Override + public int textureId() { + return 3; + } + @Override public CraftingRecipe recipe() { ShapedRecipe recipe = new ShapedRecipe(NamespacedKey.fromString("giguns:hekateii"), compileGun()); diff --git a/src/main/java/com/s5gi/giGuns/guns/ind/m1Bazooka.java b/src/main/java/com/s5gi/giGuns/guns/ind/m1Bazooka.java index 31d9110..7cf8e61 100644 --- a/src/main/java/com/s5gi/giGuns/guns/ind/m1Bazooka.java +++ b/src/main/java/com/s5gi/giGuns/guns/ind/m1Bazooka.java @@ -21,11 +21,6 @@ public class m1Bazooka implements IGun { return List.of("&9U.S.A.", "&7A man-portable recoilless anti-tank rocket launcher"); } - @Override - public Material getItem() { - return Material.GOLDEN_HOE; - } - @Override public BulletType bulletType() { return BulletType.ANTI_TANK; @@ -42,7 +37,7 @@ public class m1Bazooka implements IGun { } @Override - public void onHitPlayer(Location location, LivingEntity entity) { + public void onHitEntity(Location location, LivingEntity entity) { explode(location); } @@ -71,6 +66,11 @@ public class m1Bazooka implements IGun { return 200; } + @Override + public int textureId() { + return 5; + } + @Override public CraftingRecipe recipe() { ShapedRecipe recipe = new ShapedRecipe(NamespacedKey.fromString("giguns:m1_bazooka"), compileGun()); diff --git a/src/main/java/com/s5gi/giGuns/guns/ind/m4a1s.java b/src/main/java/com/s5gi/giGuns/guns/ind/m4a1s.java new file mode 100644 index 0000000..0c2f741 --- /dev/null +++ b/src/main/java/com/s5gi/giGuns/guns/ind/m4a1s.java @@ -0,0 +1,94 @@ +package com.s5gi.giGuns.guns.ind; + +import com.s5gi.giGuns.guns.BulletType; +import com.s5gi.giGuns.guns.IGun; +import org.bukkit.Location; +import org.bukkit.Material; +import org.bukkit.NamespacedKey; +import org.bukkit.Sound; +import org.bukkit.block.Block; +import org.bukkit.entity.LivingEntity; +import org.bukkit.inventory.CraftingRecipe; +import org.bukkit.inventory.ShapedRecipe; + +import java.util.List; + +public class m4a1s implements IGun { + @Override + public String name() { + return "&cM4A1-S"; + } + + @Override + public List description() { + return List.of("&9U.S.A.", "&7A variant of the base M4 Carbine (Suppressed)"); + } + + @Override + public BulletType bulletType() { + return BulletType.RIFLE; + } + + @Override + public List sound() { + return List.of(Sound.ENTITY_FIREWORK_ROCKET_BLAST); + + } + + @Override + public float soundPitch() { + return 1; + } + + @Override + public void onHitEntity(Location location, LivingEntity entity) { + + } + + @Override + public void onHitBlock(Location location, Block block) { + + } + + @Override + public double bulletSpeed() { + return 3.4; + } + + @Override + public double damage() { + return 5; + } + + @Override + public int cooldown() { + return 3; + } + + @Override + public boolean gravity() { + return true; + } + + @Override + public int textureId() { + return 6; + } + + @Override + public float soundVolume() { + return 0.5f; + } + + @Override + public CraftingRecipe recipe() { + ShapedRecipe recipe = new ShapedRecipe(NamespacedKey.fromString("giguns:m4a1s"), compileGun()); + recipe.shape("iii","rdI","iis"); + recipe.setIngredient('i', Material.IRON_INGOT); + recipe.setIngredient('I', Material.IRON_BLOCK); + recipe.setIngredient('r', Material.BREEZE_ROD); + recipe.setIngredient('d', Material.DISPENSER); + recipe.setIngredient('s', Material.STICK); + return recipe; + } +} diff --git a/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/items/black_dye.json b/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/items/black_dye.json new file mode 100644 index 0000000..c83b74d --- /dev/null +++ b/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/items/black_dye.json @@ -0,0 +1,40 @@ +{ + "model": { + "type": "select", + "property": "custom_model_data", + "fallback": { + "type": "model", + "model": "item/black_dye" + }, + "cases": [ + { + "when": "ammomodel0", + "model": { + "type": "model", + "model": "item/pistolammo" + } + }, + { + "when": "ammomodel1", + "model": { + "type": "model", + "model": "item/rifleammo" + } + }, + { + "when": "ammomodel2", + "model": { + "type": "model", + "model": "item/heavyammo" + } + }, + { + "when": "ammomodel3", + "model": { + "type": "model", + "model": "item/antitankammo" + } + } + ] + } +} \ No newline at end of file diff --git a/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/items/crossbow.json b/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/items/crossbow.json new file mode 100644 index 0000000..acf2137 --- /dev/null +++ b/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/items/crossbow.json @@ -0,0 +1,62 @@ +{ + "model": { + "type": "select", + "property": "custom_model_data", + "fallback": { + "type": "model", + "model": "item/crossbow" + }, + "cases": [ + { + "when": "gunmodel0", + "model": { + "type": "model", + "model": "item/1911" + } + }, + { + "when": "gunmodel1", + "model": { + "type": "model", + "model": "item/deserteagle" + } + }, + { + "when": "gunmodel2", + "model": { + "type": "model", + "model": "item/ak47" + } + }, + { + "when": "gunmodel3", + "model": { + "type": "model", + "model": "item/hecateii" + } + }, + { + "when": "gunmodel4", + "model": { + "type": "model", + "model": "item/barettm82" + } + }, + { + "when": "gunmodel5", + "model": { + "type": "model", + "model": "item/m1bazooka" + } + }, + { + "when": "gunmodel6", + "model": { + "type": "model", + "model": "item/m4a1s" + } + } + + ] + } +} \ No newline at end of file diff --git a/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/models/item/1911.json b/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/models/item/1911.json index fc1d785..1e4e993 100644 --- a/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/models/item/1911.json +++ b/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/models/item/1911.json @@ -33,6 +33,12 @@ } ], "display": { + "thirdperson_righthand": { + "rotation": [0, -20.5, 0] + }, + "firstperson_righthand": { + "translation": [13, 1.5, 0] + }, "gui": { "rotation": [36, 118, 3], "translation": [4.25, 0, 0], diff --git a/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/models/item/ak47.json b/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/models/item/ak47.json index db87a02..f0ad1de 100644 --- a/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/models/item/ak47.json +++ b/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/models/item/ak47.json @@ -80,7 +80,7 @@ "name": "stock", "from": [8, 2, 16], "to": [9, 3.25, 22], - "rotation": {"angle": 0, "axis": "x", "origin": [8, 3, 22]}, + "rotation": {"angle": 0, "axis": "y", "origin": [8, 3, 22]}, "faces": { "north": {"uv": [7.5, 5.75, 7.75, 6], "texture": "#0"}, "east": {"uv": [6, 5.75, 7.5, 6], "texture": "#0"}, @@ -121,13 +121,14 @@ ], "display": { "thirdperson_righthand": { - "translation": [-0.25, 6.75, -4] + "rotation": [0, -13.75, 0], + "translation": [1, 6.75, -4] }, "thirdperson_lefthand": { "translation": [1, 6.75, -4.25] }, "firstperson_righthand": { - "translation": [0, 9, -2] + "translation": [7.25, 9, -2] }, "firstperson_lefthand": { "translation": [0, 5, 0] diff --git a/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/models/item/antitankammo.json b/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/models/item/antitankammo.json new file mode 100644 index 0000000..a93f998 --- /dev/null +++ b/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/models/item/antitankammo.json @@ -0,0 +1,48 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [8, 8], + "textures": { + "0": "item/antitankammo", + "particle": "item/antitankammo" + }, + "elements": [ + { + "from": [7.5, 0, 7.5], + "to": [8.5, 4.75, 8.5], + "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 0, 7.5]}, + "faces": { + "north": {"uv": [0, 0, 2, 10], "texture": "#0"}, + "east": {"uv": [2, 0, 4, 10], "texture": "#0"}, + "south": {"uv": [4, 0, 6, 10], "texture": "#0"}, + "west": {"uv": [6, 0, 8, 10], "texture": "#0"}, + "up": {"uv": [10, 2, 8, 0], "texture": "#0"}, + "down": {"uv": [10, 2, 8, 4], "texture": "#0"} + } + } + ], + "display": { + "thirdperson_righthand": { + "translation": [0, 7.75, 0] + }, + "thirdperson_lefthand": { + "translation": [0, 7.5, 0] + }, + "firstperson_righthand": { + "translation": [0, 7.5, 1.25] + }, + "firstperson_lefthand": { + "translation": [0, 6.75, 1.5] + }, + "ground": { + "translation": [0, 5.25, 0] + }, + "gui": { + "translation": [0, 14, 0], + "scale": [2.5, 2.5, 2.5] + }, + "fixed": { + "translation": [0, 13.5, 0], + "scale": [2.5, 2.5, 2.5] + } + } +} \ No newline at end of file diff --git a/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/models/item/barettm82.json b/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/models/item/barettm82.json index 92993c0..2a91ee5 100644 --- a/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/models/item/barettm82.json +++ b/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/models/item/barettm82.json @@ -147,13 +147,14 @@ ], "display": { "thirdperson_righthand": { - "translation": [0.5, 6.75, -6.5] + "rotation": [0, -14.75, 0], + "translation": [2, 6.25, -7.25] }, "thirdperson_lefthand": { "translation": [-0.5, 6.75, -6.5] }, "firstperson_righthand": { - "translation": [-0.75, 9.75, -7.5] + "translation": [9, 9, -6.25] }, "firstperson_lefthand": { "translation": [-2.25, 6.5, -5] diff --git a/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/models/item/deserteagle.json b/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/models/item/deserteagle.json index e26a9c8..3b1cd99 100644 --- a/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/models/item/deserteagle.json +++ b/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/models/item/deserteagle.json @@ -9,7 +9,7 @@ { "from": [6, 5, 1], "to": [9, 8, 9], - "rotation": {"angle": 0, "axis": "x", "origin": [7, 5, 9]}, + "rotation": {"angle": 0, "axis": "y", "origin": [7, 5, 9]}, "faces": { "north": {"uv": [6, 4, 7.5, 5.5], "texture": "#0"}, "east": {"uv": [1, 9, 5, 10.5], "texture": "#0"}, @@ -61,13 +61,14 @@ ], "display": { "thirdperson_righthand": { - "translation": [0.5, 3.5, 0] + "rotation": [0, -15.25, 0], + "translation": [1.25, 3.5, -1.25] }, "thirdperson_lefthand": { "translation": [-0.5, 3.5, 0] }, "firstperson_righthand": { - "translation": [0, 6, 0] + "translation": [9.5, 6.25, 0] }, "firstperson_lefthand": { "translation": [0, 2.75, 0] diff --git a/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/models/item/heavyammo.json b/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/models/item/heavyammo.json new file mode 100644 index 0000000..a808242 --- /dev/null +++ b/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/models/item/heavyammo.json @@ -0,0 +1,48 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [8, 8], + "textures": { + "0": "item/heavyammo", + "particle": "item/heavyammo" + }, + "elements": [ + { + "from": [7.5, 0, 7.5], + "to": [8.5, 4.75, 8.5], + "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 0, 7.5]}, + "faces": { + "north": {"uv": [0, 0, 2, 10], "texture": "#0"}, + "east": {"uv": [2, 0, 4, 10], "texture": "#0"}, + "south": {"uv": [4, 0, 6, 10], "texture": "#0"}, + "west": {"uv": [6, 0, 8, 10], "texture": "#0"}, + "up": {"uv": [10, 2, 8, 0], "texture": "#0"}, + "down": {"uv": [10, 2, 8, 4], "texture": "#0"} + } + } + ], + "display": { + "thirdperson_righthand": { + "translation": [0, 8, 0] + }, + "thirdperson_lefthand": { + "translation": [0, 7.5, 0] + }, + "firstperson_righthand": { + "translation": [0, 7.5, 2.25] + }, + "firstperson_lefthand": { + "translation": [3.25, 6.5, 0] + }, + "ground": { + "translation": [0, 5, 0] + }, + "gui": { + "translation": [0, 13.5, 0], + "scale": [2.5, 2.5, 2.5] + }, + "fixed": { + "translation": [0, 13.5, 0], + "scale": [2.5, 2.5, 2.5] + } + } +} \ No newline at end of file diff --git a/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/models/item/hecateii.json b/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/models/item/hecateii.json index aedb0c9..79cdd6d 100644 --- a/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/models/item/hecateii.json +++ b/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/models/item/hecateii.json @@ -147,13 +147,14 @@ ], "display": { "thirdperson_righthand": { - "translation": [0.5, 6.75, -5] + "rotation": [0, -16, 0], + "translation": [2, 7, -7.25] }, "thirdperson_lefthand": { "translation": [-0.5, 6.75, -5.25] }, "firstperson_righthand": { - "translation": [-0.75, 8.75, -6] + "translation": [8.5, 8.75, -6] }, "firstperson_lefthand": { "translation": [-2.25, 6.5, -5] diff --git a/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/models/item/m1bazooka.json b/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/models/item/m1bazooka.json new file mode 100644 index 0000000..a8ad149 --- /dev/null +++ b/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/models/item/m1bazooka.json @@ -0,0 +1,116 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [64, 64], + "textures": { + "0": "item/m1bazooka", + "particle": "item/m1bazooka" + }, + "elements": [ + { + "name": "trigger", + "from": [8, 1.75, -3.75], + "to": [9, 3, -3.5], + "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 1, -3]}, + "faces": { + "north": {"uv": [3.75, 1.5, 4, 1.75], "texture": "#0"}, + "east": {"uv": [3.75, 1.75, 4, 2], "texture": "#0"}, + "south": {"uv": [3.75, 2, 4, 2.25], "texture": "#0"}, + "west": {"uv": [3.75, 2.25, 4, 2.5], "texture": "#0"}, + "up": {"uv": [4, 2.75, 3.75, 2.5], "texture": "#0"}, + "down": {"uv": [4, 2.75, 3.75, 3], "texture": "#0"} + } + }, + { + "name": "grip2", + "from": [8, -1, -2], + "to": [9, 4, 0], + "rotation": {"angle": -22.5, "axis": "x", "origin": [8, 2, -1]}, + "faces": { + "north": {"uv": [3.25, 2.25, 3.5, 3.5], "texture": "#0"}, + "east": {"uv": [1.5, 2.75, 2, 4], "texture": "#0"}, + "south": {"uv": [3.5, 2.25, 3.75, 3.5], "texture": "#0"}, + "west": {"uv": [2, 2.75, 2.5, 4], "texture": "#0"}, + "up": {"uv": [3.25, 2.75, 3, 2.25], "texture": "#0"}, + "down": {"uv": [3.75, 3.5, 3.5, 4], "texture": "#0"} + } + }, + { + "name": "grip", + "from": [8, -1, 7], + "to": [9, 4, 10], + "rotation": {"angle": -22.5, "axis": "x", "origin": [8, 2, 8]}, + "faces": { + "north": {"uv": [2.5, 3.5, 2.75, 4.75], "texture": "#0"}, + "east": {"uv": [1.5, 1.5, 2.25, 2.75], "texture": "#0"}, + "south": {"uv": [2.75, 3.5, 3, 4.75], "texture": "#0"}, + "west": {"uv": [2.25, 1.5, 3, 2.75], "texture": "#0"}, + "up": {"uv": [3.25, 4.25, 3, 3.5], "texture": "#0"}, + "down": {"uv": [3.5, 3.5, 3.25, 4.25], "texture": "#0"} + } + }, + { + "from": [7, 3, -8], + "to": [10, 6, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 3, 7]}, + "faces": { + "north": {"uv": [2.5, 2.75, 3.25, 3.5], "texture": "#0"}, + "east": {"uv": [0, 0, 7.75, 0.75], "texture": "#0"}, + "south": {"uv": [3, 1.5, 3.75, 2.25], "texture": "#0"}, + "west": {"uv": [0, 0.75, 7.75, 1.5], "texture": "#0"}, + "up": {"uv": [0.75, 9.25, 0, 1.5], "texture": "#0"}, + "down": {"uv": [1.5, 1.5, 0.75, 9.25], "texture": "#0"} + } + }, + { + "from": [6.5, 3, -8], + "to": [7, 7, -7], + "rotation": {"angle": 0, "axis": "y", "origin": [5.5, 4, -8]}, + "faces": { + "north": {"uv": [7, 6.75, 7.125, 7.75], "texture": "#0"}, + "east": {"uv": [1.75, 4.25, 2, 5.25], "texture": "#0"}, + "south": {"uv": [6, 8.5, 6.125, 9.5], "texture": "#0"}, + "west": {"uv": [2.75, 5.75, 3, 6.75], "texture": "#0"}, + "up": {"uv": [6.75, 4.5, 6.875, 4.75], "texture": "#0"}, + "down": {"uv": [5.5, 6.5, 5.625, 6.75], "texture": "#0"} + } + }, + { + "from": [6.5, 3, 3], + "to": [7, 7, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [5.5, 4, 3]}, + "faces": { + "north": {"uv": [4, 3.5, 4.125, 4.5], "texture": "#0"}, + "east": {"uv": [3.25, 4.5, 3.5, 5.5], "texture": "#0"}, + "south": {"uv": [3.75, 4.5, 3.875, 5.5], "texture": "#0"}, + "west": {"uv": [2, 4.75, 2.25, 5.75], "texture": "#0"}, + "up": {"uv": [3.5, 7, 3.625, 7.25], "texture": "#0"}, + "down": {"uv": [4.25, 4.75, 4.375, 5], "texture": "#0"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [0, -9.25, 0], + "translation": [-0.25, 6.25, 8.5] + }, + "thirdperson_lefthand": { + "translation": [0, 5.25, 10.75] + }, + "firstperson_righthand": { + "translation": [10.5, 7, 8] + }, + "gui": { + "rotation": [20, 128, 3], + "translation": [0.5, 1.25, 0], + "scale": [0.6, 0.6, 0.6] + } + }, + "groups": [ + { + "name": "group", + "origin": [8, 2, 8], + "color": 0, + "children": [0, 1, 2, 3, 4, 5] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/models/item/m4a1s.json b/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/models/item/m4a1s.json new file mode 100644 index 0000000..d9848f7 --- /dev/null +++ b/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/models/item/m4a1s.json @@ -0,0 +1,278 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [32, 32], + "textures": { + "0": "item/m4a1s", + "particle": "item/m4a1s" + }, + "elements": [ + { + "name": "sight", + "from": [8.25, 6.25, 9], + "to": [8.75, 6.75, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [7.25, 6.25, 0]}, + "faces": { + "north": {"uv": [6.5, 4.5, 7, 5], "texture": "#0"}, + "east": {"uv": [8, 7, 10.5, 7.5], "texture": "#0"}, + "south": {"uv": [9.5, 9, 10, 9.5], "texture": "#0"}, + "west": {"uv": [8, 7.5, 10.5, 8], "texture": "#0"}, + "up": {"uv": [5.5, 10.5, 5, 8], "texture": "#0"}, + "down": {"uv": [6, 8, 5.5, 10.5], "texture": "#0"} + } + }, + { + "name": "sightleg1", + "from": [8.25, 5.25, 9], + "to": [8.75, 6.75, 9.5], + "rotation": {"angle": 0, "axis": "y", "origin": [7.25, 6.25, 0]}, + "faces": { + "north": {"uv": [9, 1, 9.5, 2], "texture": "#0"}, + "east": {"uv": [9, 2, 9.5, 3], "texture": "#0"}, + "south": {"uv": [2.5, 9, 3, 10], "texture": "#0"}, + "west": {"uv": [9, 8.5, 9.5, 9.5], "texture": "#0"}, + "up": {"uv": [10.5, 4.5, 10, 4], "texture": "#0"}, + "down": {"uv": [5, 10, 4.5, 10.5], "texture": "#0"} + } + }, + { + "name": "sightleg1", + "from": [8.25, 4.95, 0.5], + "to": [8.75, 6.75, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [7.25, 6.25, -8.5]}, + "faces": { + "north": {"uv": [1, 9.5, 1.5, 10.5], "texture": "#0"}, + "east": {"uv": [9.5, 1, 10, 2], "texture": "#0"}, + "south": {"uv": [1.5, 9.5, 2, 10.5], "texture": "#0"}, + "west": {"uv": [2, 9.5, 2.5, 10.5], "texture": "#0"}, + "up": {"uv": [10.5, 5, 10, 4.5], "texture": "#0"}, + "down": {"uv": [10.5, 5, 10, 5.5], "texture": "#0"} + } + }, + { + "name": "sightleg1", + "from": [8.25, 4.84571, 1.22929], + "to": [8.75, 6.94571, 1.72929], + "rotation": {"angle": -45, "axis": "x", "origin": [8.5, 5.875, 1.55]}, + "faces": { + "north": {"uv": [9.5, 2, 10, 3], "texture": "#0"}, + "east": {"uv": [9.5, 3, 10, 4], "texture": "#0"}, + "south": {"uv": [3.5, 9.5, 4, 10.5], "texture": "#0"}, + "west": {"uv": [4, 9.5, 4.5, 10.5], "texture": "#0"}, + "up": {"uv": [10.5, 6, 10, 5.5], "texture": "#0"}, + "down": {"uv": [10.5, 6, 10, 6.5], "texture": "#0"} + } + }, + { + "name": "sightleg2", + "from": [8.25, 5.25, 13.5], + "to": [8.75, 6.75, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [7.25, 6.25, 4.5]}, + "faces": { + "north": {"uv": [9.5, 4, 10, 5], "texture": "#0"}, + "east": {"uv": [9.5, 5, 10, 6], "texture": "#0"}, + "south": {"uv": [8, 9.5, 8.5, 10.5], "texture": "#0"}, + "west": {"uv": [8.5, 9.5, 9, 10.5], "texture": "#0"}, + "up": {"uv": [10.5, 7, 10, 6.5], "texture": "#0"}, + "down": {"uv": [7.5, 10, 7, 10.5], "texture": "#0"} + } + }, + { + "name": "barrel", + "from": [8, 4, 0], + "to": [9, 5, 16.05], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 4, 0]}, + "faces": { + "north": {"uv": [7.5, 10, 8, 10.5], "texture": "#0"}, + "east": {"uv": [0, 0, 8, 0.5], "texture": "#0"}, + "south": {"uv": [9, 10, 9.5, 10.5], "texture": "#0"}, + "west": {"uv": [0, 0.5, 8, 1], "texture": "#0"}, + "up": {"uv": [0.5, 9, 0, 1], "texture": "#0"}, + "down": {"uv": [1, 1, 0.5, 9], "texture": "#0"} + } + }, + { + "name": "supressor", + "from": [7.75, 3.75, -7], + "to": [9.25, 5.25, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [7.25, 3.75, -16]}, + "faces": { + "north": {"uv": [8.5, 4, 9.5, 5], "texture": "#0"}, + "east": {"uv": [3, 3, 6.5, 4], "texture": "#0"}, + "south": {"uv": [8.5, 5, 9.5, 6], "texture": "#0"}, + "west": {"uv": [3, 4, 6.5, 5], "texture": "#0"}, + "up": {"uv": [4, 8.5, 3, 5], "texture": "#0"}, + "down": {"uv": [5, 5, 4, 8.5], "texture": "#0"} + } + }, + { + "name": "chamber", + "from": [7.65, 3.6, 9], + "to": [9.4, 5.35, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [7.4, 3.6, -2]}, + "faces": { + "north": {"uv": [8, 8.5, 9, 9.5], "texture": "#0"}, + "east": {"uv": [4.5, 1, 7, 2], "texture": "#0"}, + "south": {"uv": [0, 9, 1, 10], "texture": "#0"}, + "west": {"uv": [4.5, 2, 7, 3], "texture": "#0"}, + "up": {"uv": [2, 9, 1, 6.5], "texture": "#0"}, + "down": {"uv": [3, 6.5, 2, 9], "texture": "#0"} + } + }, + { + "name": "trigger", + "from": [8.1, 2.1, 11.3], + "to": [8.9, 3, 11.55], + "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 1, 12.05]}, + "faces": { + "north": {"uv": [10, 9, 10.5, 9.5], "texture": "#0"}, + "east": {"uv": [9.5, 10, 10, 10.5], "texture": "#0"}, + "south": {"uv": [10, 9.5, 10.5, 10], "texture": "#0"}, + "west": {"uv": [10, 10, 10.5, 10.5], "texture": "#0"}, + "up": {"uv": [11, 1, 10.5, 0.5], "texture": "#0"}, + "down": {"uv": [1.5, 10.5, 1, 11], "texture": "#0"} + } + }, + { + "name": "magrecept", + "from": [7.9, 2.9, 9], + "to": [9.15, 3.65, 13.95], + "rotation": {"angle": 0, "axis": "y", "origin": [7.4, 1.9, -2]}, + "faces": { + "north": {"uv": [10.5, 1, 11, 1.5], "texture": "#0"}, + "east": {"uv": [8, 8, 10.5, 8.5], "texture": "#0"}, + "south": {"uv": [1.5, 10.5, 2, 11], "texture": "#0"}, + "west": {"uv": [8.5, 0, 11, 0.5], "texture": "#0"}, + "up": {"uv": [6.5, 10.5, 6, 8], "texture": "#0"}, + "down": {"uv": [7, 8, 6.5, 10.5], "texture": "#0"} + } + }, + { + "name": "foregrip", + "from": [7.5, 3.5, 2], + "to": [9.5, 5.5, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8.5, 4.5, 5.5]}, + "faces": { + "north": {"uv": [8.5, 3, 9.5, 4], "texture": "#0"}, + "east": {"uv": [1, 1, 4.5, 2], "texture": "#0"}, + "south": {"uv": [3.5, 8.5, 4.5, 9.5], "texture": "#0"}, + "west": {"uv": [1, 2, 4.5, 3], "texture": "#0"}, + "up": {"uv": [2, 6.5, 1, 3], "texture": "#0"}, + "down": {"uv": [3, 3, 2, 6.5], "texture": "#0"} + } + }, + { + "name": "stockend", + "from": [7.9, 2.2, 18.998], + "to": [9.1, 3.45, 22.198], + "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 4.15, 23.15]}, + "faces": { + "north": {"uv": [10.5, 1.5, 11, 2], "texture": "#0"}, + "east": {"uv": [9, 0.5, 10.5, 1], "texture": "#0"}, + "south": {"uv": [2, 10.5, 2.5, 11], "texture": "#0"}, + "west": {"uv": [1, 9, 2.5, 9.5], "texture": "#0"}, + "up": {"uv": [7, 4.5, 6.5, 3], "texture": "#0"}, + "down": {"uv": [5, 8.5, 4.5, 10], "texture": "#0"} + } + }, + { + "name": "stock", + "from": [7.9, 3.85, 16], + "to": [9.1, 5.1, 22], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 4.85, 22]}, + "faces": { + "north": {"uv": [10.5, 2, 11, 2.5], "texture": "#0"}, + "east": {"uv": [7, 6, 10, 6.5], "texture": "#0"}, + "south": {"uv": [10.5, 2.5, 11, 3], "texture": "#0"}, + "west": {"uv": [7, 6.5, 10, 7], "texture": "#0"}, + "up": {"uv": [7.5, 10, 7, 7], "texture": "#0"}, + "down": {"uv": [8, 7, 7.5, 10], "texture": "#0"} + } + }, + { + "name": "sight", + "from": [8.05, 1.85, 11.55], + "to": [8.95, 2.05, 13.25], + "rotation": {"angle": 0, "axis": "y", "origin": [7.25, 1.55, 0]}, + "faces": { + "north": {"uv": [10.5, 3, 11, 3.5], "texture": "#0"}, + "east": {"uv": [9.5, 8.5, 10.5, 9], "texture": "#0"}, + "south": {"uv": [3.5, 10.5, 4, 11], "texture": "#0"}, + "west": {"uv": [9, 9.5, 10, 10], "texture": "#0"}, + "up": {"uv": [0.5, 11, 0, 10], "texture": "#0"}, + "down": {"uv": [1, 10, 0.5, 11], "texture": "#0"} + } + }, + { + "name": "sight", + "from": [8.05, 1.85, 11.35], + "to": [8.95, 3.3, 11.6], + "rotation": {"angle": 0, "axis": "y", "origin": [7.25, 1.55, 0.1]}, + "faces": { + "north": {"uv": [10.5, 3.5, 11, 4], "texture": "#0"}, + "east": {"uv": [4, 10.5, 4.5, 11], "texture": "#0"}, + "south": {"uv": [10.5, 4, 11, 4.5], "texture": "#0"}, + "west": {"uv": [4.5, 10.5, 5, 11], "texture": "#0"}, + "up": {"uv": [11, 5, 10.5, 4.5], "texture": "#0"}, + "down": {"uv": [5.5, 10.5, 5, 11], "texture": "#0"} + } + }, + { + "name": "mag", + "from": [8, -1.5, 9.25], + "to": [9, 4.5, 11.25], + "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 2.5, 10.25]}, + "faces": { + "north": {"uv": [8, 0, 8.5, 3], "texture": "#0"}, + "east": {"uv": [5, 5, 6, 8], "texture": "#0"}, + "south": {"uv": [8, 3, 8.5, 6], "texture": "#0"}, + "west": {"uv": [6, 5, 7, 8], "texture": "#0"}, + "up": {"uv": [10.5, 2, 10, 1], "texture": "#0"}, + "down": {"uv": [10.5, 2, 10, 3], "texture": "#0"} + } + }, + { + "name": "grip", + "from": [8, -0.5, 12.75], + "to": [9, 4, 14.5], + "rotation": {"angle": -22.5, "axis": "x", "origin": [8, 2, 13.75]}, + "faces": { + "north": {"uv": [8.5, 0.5, 9, 3], "texture": "#0"}, + "east": {"uv": [7, 1, 8, 3.5], "texture": "#0"}, + "south": {"uv": [3, 8.5, 3.5, 11], "texture": "#0"}, + "west": {"uv": [7, 3.5, 8, 6], "texture": "#0"}, + "up": {"uv": [3, 11, 2.5, 10], "texture": "#0"}, + "down": {"uv": [10.5, 3, 10, 4], "texture": "#0"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [0, -12, 0], + "translation": [0.5, 5.25, -4.5] + }, + "thirdperson_lefthand": { + "translation": [0.25, 5.5, -4.5] + }, + "firstperson_righthand": { + "rotation": [0, -8, 0], + "translation": [9, 7.75, -0.5] + }, + "firstperson_lefthand": { + "rotation": [0, -20, 0], + "translation": [11.5, 5, -3.5] + }, + "gui": { + "rotation": [19, 116, 3], + "translation": [0.5, 1.5, 0], + "scale": [0.58, 0.58, 0.58] + } + }, + "groups": [ + { + "name": "group", + "origin": [8, 8, 8], + "color": 0, + "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/models/item/pistolammo.json b/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/models/item/pistolammo.json new file mode 100644 index 0000000..c2797fa --- /dev/null +++ b/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/models/item/pistolammo.json @@ -0,0 +1,68 @@ +{ + "credit": "Made with Blockbench", + "textures": { + "0": "item/pistolammo", + "particle": "item/pistolammo" + }, + "elements": [ + { + "from": [7.5, 0, 7.5], + "to": [8.5, 2, 8.5], + "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 0, 7.5]}, + "faces": { + "north": {"uv": [0, 0, 1, 4], "texture": "#0"}, + "east": {"uv": [1, 0, 2, 4], "texture": "#0"}, + "south": {"uv": [2, 0, 3, 4], "texture": "#0"}, + "west": {"uv": [3, 0, 4, 4], "texture": "#0"}, + "up": {"uv": [4, 6, 3, 5], "texture": "#0"}, + "down": {"uv": [6, 3, 5, 4], "texture": "#0"} + } + }, + { + "from": [5.9, 0, 7], + "to": [6.9, 2, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [4.9, 0, 7]}, + "faces": { + "north": {"uv": [0, 4, 1, 8], "texture": "#0"}, + "east": {"uv": [4, 0, 5, 4], "texture": "#0"}, + "south": {"uv": [1, 4, 2, 8], "texture": "#0"}, + "west": {"uv": [2, 4, 3, 8], "texture": "#0"}, + "up": {"uv": [5, 6, 4, 5], "texture": "#0"}, + "down": {"uv": [6, 5, 5, 6], "texture": "#0"} + } + } + ], + "display": { + "thirdperson_righthand": { + "translation": [0.75, 8.25, 0.75] + }, + "thirdperson_lefthand": { + "translation": [-0.75, 7.75, 0] + }, + "firstperson_righthand": { + "translation": [0, 10.25, 3.5] + }, + "firstperson_lefthand": { + "translation": [0, 9.5, 2.5] + }, + "ground": { + "translation": [1, 6.75, 0] + }, + "gui": { + "translation": [2.25, 21, 0], + "scale": [3, 3, 3] + }, + "fixed": { + "translation": [2.25, 16.75, 0], + "scale": [2.5, 2.5, 2.5] + } + }, + "groups": [ + { + "name": "group", + "origin": [8, 8, 8], + "color": 0, + "children": [0, 1] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/models/item/rifleammo.json b/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/models/item/rifleammo.json new file mode 100644 index 0000000..13f372c --- /dev/null +++ b/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/models/item/rifleammo.json @@ -0,0 +1,82 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [8, 8], + "textures": { + "0": "item/rifleammo", + "particle": "item/rifleammo" + }, + "elements": [ + { + "from": [9, 0, 7.2], + "to": [10, 2.75, 8.2], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 0, 7.2]}, + "faces": { + "north": {"uv": [0, 0, 2, 6], "texture": "#0"}, + "east": {"uv": [2, 0, 4, 6], "texture": "#0"}, + "south": {"uv": [4, 0, 6, 6], "texture": "#0"}, + "west": {"uv": [0, 6, 2, 12], "texture": "#0"}, + "up": {"uv": [2, 14, 0, 12], "texture": "#0"}, + "down": {"uv": [14, 0, 12, 2], "texture": "#0"} + } + }, + { + "from": [7.5, 0, 7.5], + "to": [8.5, 2.75, 8.5], + "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 0, 7.5]}, + "faces": { + "north": {"uv": [6, 0, 8, 6], "texture": "#0"}, + "east": {"uv": [2, 6, 4, 12], "texture": "#0"}, + "south": {"uv": [4, 6, 6, 12], "texture": "#0"}, + "west": {"uv": [6, 6, 8, 12], "texture": "#0"}, + "up": {"uv": [4, 14, 2, 12], "texture": "#0"}, + "down": {"uv": [14, 2, 12, 4], "texture": "#0"} + } + }, + { + "from": [6, 0, 7.8], + "to": [7, 2.75, 8.8], + "rotation": {"angle": 0, "axis": "y", "origin": [5, 0, 7.8]}, + "faces": { + "north": {"uv": [8, 0, 10, 6], "texture": "#0"}, + "east": {"uv": [8, 6, 10, 12], "texture": "#0"}, + "south": {"uv": [10, 0, 12, 6], "texture": "#0"}, + "west": {"uv": [10, 6, 12, 12], "texture": "#0"}, + "up": {"uv": [6, 14, 4, 12], "texture": "#0"}, + "down": {"uv": [14, 4, 12, 6], "texture": "#0"} + } + } + ], + "display": { + "thirdperson_righthand": { + "translation": [0, 7.75, 0] + }, + "thirdperson_lefthand": { + "translation": [0, 8, 0] + }, + "firstperson_righthand": { + "translation": [0, 9.75, 2.75] + }, + "firstperson_lefthand": { + "translation": [0, 9, 1.25] + }, + "ground": { + "translation": [0, 5.5, 0] + }, + "gui": { + "translation": [0, 16, 0], + "scale": [2.5, 2.5, 2.5] + }, + "fixed": { + "translation": [0, 19.75, 0], + "scale": [3, 3, 3] + } + }, + "groups": [ + { + "name": "group", + "origin": [5, 0, 7.8], + "color": 0, + "children": [0, 1, 2] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/textures/item/antitankammo.png b/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/textures/item/antitankammo.png new file mode 100644 index 0000000..d93d2f3 Binary files /dev/null and b/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/textures/item/antitankammo.png differ diff --git a/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/textures/item/heavyammo.png b/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/textures/item/heavyammo.png new file mode 100644 index 0000000..da6b0ed Binary files /dev/null and b/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/textures/item/heavyammo.png differ diff --git a/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/textures/item/m1bazooka.png b/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/textures/item/m1bazooka.png new file mode 100644 index 0000000..1db5717 Binary files /dev/null and b/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/textures/item/m1bazooka.png differ diff --git a/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/textures/item/m4a1s.png b/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/textures/item/m4a1s.png new file mode 100644 index 0000000..06543b1 Binary files /dev/null and b/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/textures/item/m4a1s.png differ diff --git a/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/textures/item/pistolammo.png b/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/textures/item/pistolammo.png new file mode 100644 index 0000000..27af554 Binary files /dev/null and b/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/textures/item/pistolammo.png differ diff --git a/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/textures/item/rifleammo.png b/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/textures/item/rifleammo.png new file mode 100644 index 0000000..50e862c Binary files /dev/null and b/src/main/resources/TexturePack/giGuns Pack Java/assets/minecraft/textures/item/rifleammo.png differ diff --git a/src/main/resources/TexturePack/giGuns Pack Java/bb/1911.bbmodel b/src/main/resources/TexturePack/giGuns Pack Java/bb/1911.bbmodel index 9251cd8..e473e77 100644 --- a/src/main/resources/TexturePack/giGuns Pack Java/bb/1911.bbmodel +++ b/src/main/resources/TexturePack/giGuns Pack Java/bb/1911.bbmodel @@ -1 +1 @@ -{"meta":{"format_version":"4.10","model_format":"java_block","box_uv":false},"name":"1911","parent":"","ambientocclusion":true,"front_gui_light":false,"visible_box":[1,1,0],"variable_placeholders":"","variable_placeholder_buttons":[],"unhandled_root_fields":{},"resolution":{"width":16,"height":16},"elements":[{"name":"cube","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[7,5,7],"to":[9,10,9],"autouv":0,"color":6,"origin":[7,5,9],"faces":{"north":{"uv":[2,0,4,5],"texture":0},"east":{"uv":[4,0,6,5],"texture":0},"south":{"uv":[0,5,2,10],"texture":0},"west":{"uv":[0,0,2,5],"texture":0},"up":{"uv":[9,6,7,4],"rotation":270,"texture":0},"down":{"uv":[9,6,7,8],"rotation":90,"texture":0}},"type":"cube","uuid":"f7a7d3df-4d65-af56-50b9-0399fa6051ff"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[7,8,2],"to":[9,10,7],"autouv":0,"color":6,"origin":[7,10,7],"faces":{"north":{"uv":[7,8,9,10],"texture":0},"east":{"uv":[6,0,11,2],"texture":0},"south":{"uv":[2,9,4,11],"texture":0},"west":{"uv":[2,5,7,7],"texture":0},"up":{"uv":[11,4,6,2],"rotation":270,"texture":0},"down":{"uv":[7,7,2,9],"rotation":90,"texture":0}},"type":"cube","uuid":"be7a956e-877b-f0eb-4f22-dc52c69bda61"}],"outliner":[{"name":"group","origin":[7,5,7],"color":0,"uuid":"6ba8cac1-e6f6-5299-d3a0-e32836954692","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"selected":false,"children":["f7a7d3df-4d65-af56-50b9-0399fa6051ff","be7a956e-877b-f0eb-4f22-dc52c69bda61"]}],"textures":[{"path":"C:\\Users\\5gi\\AppData\\Roaming\\ModrinthApp\\profiles\\Fabulously Optimized\\resourcepacks\\giGuns Pack Java\\assets\\minecraft\\textures\\item\\1911.png","name":"1911.png","folder":"item","namespace":"minecraft","id":"0","group":"","width":16,"height":16,"uv_width":16,"uv_height":16,"particle":true,"use_as_default":false,"layers_enabled":false,"sync_to_project":"","render_mode":"default","render_sides":"auto","pbr_channel":"color","frame_time":1,"frame_order_type":"loop","frame_order":"","frame_interpolate":false,"visible":true,"internal":true,"saved":true,"uuid":"2962ab16-1de3-39c6-1951-15f4d263db24","relative_path":"../assets/minecraft/textures/item/1911.png","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAHJJREFUOE/tkkEKwDAIBNfnePX/b/Ca57QoTZA0GtpboblswGXQVRKRAwBU1QQi4mqPmV1ba66qSqN4fagCzOYSMJtXXbwCRPAjgJnDeLfZO3iYshGy8D4C6LcBYJ9BYvYjKwEhvK15FXTaWrWVWPsBwAllyzoRXJqgwQAAAABJRU5ErkJggg=="}],"display":{"gui":{"rotation":[36,118,3],"translation":[4.25,0,0],"scale":[2,2,2]},"fixed":{"rotation":[0,-90,0],"translation":[-2.25,0,0]}}} \ No newline at end of file +{"meta":{"format_version":"4.10","model_format":"java_block","box_uv":false},"name":"1911","parent":"","ambientocclusion":true,"front_gui_light":false,"visible_box":[1,1,0],"variable_placeholders":"","variable_placeholder_buttons":[],"unhandled_root_fields":{},"resolution":{"width":16,"height":16},"elements":[{"name":"cube","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[7,5,7],"to":[9,10,9],"autouv":0,"color":6,"origin":[7,5,9],"faces":{"north":{"uv":[2,0,4,5],"texture":0},"east":{"uv":[4,0,6,5],"texture":0},"south":{"uv":[0,5,2,10],"texture":0},"west":{"uv":[0,0,2,5],"texture":0},"up":{"uv":[9,6,7,4],"rotation":270,"texture":0},"down":{"uv":[9,6,7,8],"rotation":90,"texture":0}},"type":"cube","uuid":"f7a7d3df-4d65-af56-50b9-0399fa6051ff"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[7,8,2],"to":[9,10,7],"autouv":0,"color":6,"origin":[7,10,7],"faces":{"north":{"uv":[7,8,9,10],"texture":0},"east":{"uv":[6,0,11,2],"texture":0},"south":{"uv":[2,9,4,11],"texture":0},"west":{"uv":[2,5,7,7],"texture":0},"up":{"uv":[11,4,6,2],"rotation":270,"texture":0},"down":{"uv":[7,7,2,9],"rotation":90,"texture":0}},"type":"cube","uuid":"be7a956e-877b-f0eb-4f22-dc52c69bda61"}],"outliner":[{"name":"group","origin":[7,5,7],"color":0,"uuid":"6ba8cac1-e6f6-5299-d3a0-e32836954692","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"selected":false,"children":["f7a7d3df-4d65-af56-50b9-0399fa6051ff","be7a956e-877b-f0eb-4f22-dc52c69bda61"]}],"textures":[{"path":"C:\\Users\\5gi\\AppData\\Roaming\\ModrinthApp\\profiles\\Fabulously Optimized\\resourcepacks\\giGuns Pack Java\\assets\\minecraft\\textures\\item\\1911.png","name":"1911.png","folder":"item","namespace":"minecraft","id":"0","group":"","width":16,"height":16,"uv_width":16,"uv_height":16,"particle":true,"use_as_default":false,"layers_enabled":false,"sync_to_project":"","render_mode":"default","render_sides":"auto","pbr_channel":"color","frame_time":1,"frame_order_type":"loop","frame_order":"","frame_interpolate":false,"visible":true,"internal":true,"saved":true,"uuid":"2962ab16-1de3-39c6-1951-15f4d263db24","relative_path":"../assets/minecraft/textures/item/1911.png","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAHJJREFUOE/tkkEKwDAIBNfnePX/b/Ca57QoTZA0GtpboblswGXQVRKRAwBU1QQi4mqPmV1ba66qSqN4fagCzOYSMJtXXbwCRPAjgJnDeLfZO3iYshGy8D4C6LcBYJ9BYvYjKwEhvK15FXTaWrWVWPsBwAllyzoRXJqgwQAAAABJRU5ErkJggg=="}],"display":{"thirdperson_righthand":{"rotation":[0,-20.5,0]},"firstperson_righthand":{"translation":[13,1.5,0]},"gui":{"rotation":[36,118,3],"translation":[4.25,0,0],"scale":[2,2,2]},"fixed":{"rotation":[0,-90,0],"translation":[-2.25,0,0]}}} \ No newline at end of file diff --git a/src/main/resources/TexturePack/giGuns Pack Java/bb/ak47.bbmodel b/src/main/resources/TexturePack/giGuns Pack Java/bb/ak47.bbmodel index 941d1ef..c5b6746 100644 --- a/src/main/resources/TexturePack/giGuns Pack Java/bb/ak47.bbmodel +++ b/src/main/resources/TexturePack/giGuns Pack Java/bb/ak47.bbmodel @@ -1 +1 @@ -{"meta":{"format_version":"4.10","model_format":"java_block","box_uv":false},"name":"ak47","parent":"","ambientocclusion":true,"front_gui_light":false,"visible_box":[1,1,0],"variable_placeholders":"","variable_placeholder_buttons":[],"unhandled_root_fields":{},"resolution":{"width":64,"height":64},"elements":[{"name":"rod","box_uv":true,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[8,2,0],"to":[9,3,16],"autouv":0,"color":4,"origin":[7,2,6],"faces":{"north":{"uv":[16,16,17,17],"texture":0},"east":{"uv":[0,16,16,17],"texture":0},"south":{"uv":[33,16,34,17],"texture":0},"west":{"uv":[17,16,33,17],"texture":0},"up":{"uv":[17,16,16,0],"texture":0},"down":{"uv":[18,0,17,16],"texture":0}},"type":"cube","uuid":"48da1125-4c39-069b-b756-cc80d6462475"},{"name":"sight","box_uv":true,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[8,3,0],"to":[9,4,1],"autouv":0,"color":4,"origin":[8,2,-1],"uv_offset":[12,29],"faces":{"north":{"uv":[13,30,14,31],"texture":0},"east":{"uv":[12,30,13,31],"texture":0},"south":{"uv":[15,30,16,31],"texture":0},"west":{"uv":[14,30,15,31],"texture":0},"up":{"uv":[14,30,13,29],"texture":0},"down":{"uv":[15,29,14,30],"texture":0}},"type":"cube","uuid":"066b1409-bd11-a10a-74e1-d545acf6443a"},{"name":"fore","box_uv":true,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[8,3,5],"to":[9,4,16],"autouv":0,"color":4,"origin":[8,2,4],"uv_offset":[0,17],"faces":{"north":{"uv":[11,28,12,29],"texture":0},"east":{"uv":[0,28,11,29],"texture":0},"south":{"uv":[23,28,24,29],"texture":0},"west":{"uv":[12,28,23,29],"texture":0},"up":{"uv":[12,28,11,17],"texture":0},"down":{"uv":[13,17,12,28],"texture":0}},"type":"cube","uuid":"3d2acd0e-7801-7ffb-e8d7-17a7c52977e3"},{"name":"grip","box_uv":true,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[8,-2,14],"to":[9,3,16],"autouv":0,"color":4,"rotation":[-22.5,0,0],"origin":[8,1,15],"uv_offset":[0,29],"faces":{"north":{"uv":[2,31,3,36],"texture":0},"east":{"uv":[0,31,2,36],"texture":0},"south":{"uv":[5,31,6,36],"texture":0},"west":{"uv":[3,31,5,36],"texture":0},"up":{"uv":[3,31,2,29],"texture":0},"down":{"uv":[4,29,3,31],"texture":0}},"type":"cube","uuid":"75a09188-ba55-d4f9-c9f4-687fabb28a43"},{"name":"trigger","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[8,0.75,12.25],"to":[9,2,12.5],"autouv":0,"color":4,"rotation":[22.5,0,0],"origin":[8,0,13],"uv_offset":[16,29],"faces":{"north":{"uv":[16,29,17,30],"texture":0},"east":{"uv":[16,29,16,30],"texture":0},"south":{"uv":[17,29,18,30],"texture":0},"west":{"uv":[17,29,17,30],"texture":0},"up":{"uv":[17,29,16,29],"texture":0},"down":{"uv":[18,29,17,29],"texture":0}},"type":"cube","uuid":"72512490-69a9-e412-2290-cae6eb49edc7"},{"name":"mag","box_uv":true,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[8,-5,9],"to":[9,3,11],"autouv":0,"color":4,"rotation":[22.5,0,0],"origin":[8,1,10],"uv_offset":[24,24],"faces":{"north":{"uv":[26,26,27,34],"texture":0},"east":{"uv":[24,26,26,34],"texture":0},"south":{"uv":[29,26,30,34],"texture":0},"west":{"uv":[27,26,29,34],"texture":0},"up":{"uv":[27,26,26,24],"texture":0},"down":{"uv":[28,24,27,26],"texture":0}},"type":"cube","uuid":"ec2ede4c-e48f-f2ce-55ad-b6ce30dc570e"},{"name":"stock","box_uv":true,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[8,2,16],"to":[9,3.25,22],"autouv":0,"color":4,"origin":[8,3,22],"uv_offset":[24,17],"faces":{"north":{"uv":[30,23,31,24],"texture":0},"east":{"uv":[24,23,30,24],"texture":0},"south":{"uv":[37,23,38,24],"texture":0},"west":{"uv":[31,23,37,24],"texture":0},"up":{"uv":[31,23,30,17],"texture":0},"down":{"uv":[32,17,31,23],"texture":0}},"type":"cube","uuid":"46208f06-98d1-337f-5819-8a69e8d30f00"},{"name":"stockend","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[8,0.85,20.198],"to":[9,1.6,22.198],"autouv":0,"color":4,"rotation":[22.5,0,0],"origin":[8,2.3,23.15],"uv_offset":[6,29],"faces":{"north":{"uv":[8,31,9,31],"texture":0},"east":{"uv":[6,31,8,31],"texture":0},"south":{"uv":[11,31,12,31],"texture":0},"west":{"uv":[9,31,11,31],"texture":0},"up":{"uv":[9,31,8,29],"texture":0},"down":{"uv":[10,29,9,31],"texture":0}},"type":"cube","uuid":"a21b06cd-d962-bcec-9dc4-e2375c417eb8"}],"outliner":[{"name":"gun","origin":[7,2,6],"color":0,"uuid":"25284a38-2bcb-95b1-44a7-678703e803a6","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"selected":false,"children":["066b1409-bd11-a10a-74e1-d545acf6443a","3d2acd0e-7801-7ffb-e8d7-17a7c52977e3","48da1125-4c39-069b-b756-cc80d6462475","75a09188-ba55-d4f9-c9f4-687fabb28a43","ec2ede4c-e48f-f2ce-55ad-b6ce30dc570e","46208f06-98d1-337f-5819-8a69e8d30f00","a21b06cd-d962-bcec-9dc4-e2375c417eb8","72512490-69a9-e412-2290-cae6eb49edc7"]}],"textures":[{"path":"C:\\Users\\5gi\\AppData\\Roaming\\ModrinthApp\\profiles\\Fabulously Optimized\\resourcepacks\\giGuns Pack Java\\assets\\minecraft\\textures\\item\\ak47.png","name":"ak47.png","folder":"item","namespace":"minecraft","id":"0","group":"","width":256,"height":256,"uv_width":64,"uv_height":64,"particle":true,"use_as_default":false,"layers_enabled":false,"sync_to_project":"","render_mode":"default","render_sides":"auto","pbr_channel":"color","frame_time":1,"frame_order_type":"loop","frame_order":"","frame_interpolate":false,"visible":true,"internal":true,"saved":true,"uuid":"624273cf-35d1-437d-5e22-4c7b2f4b8932","relative_path":"../assets/minecraft/textures/item/ak47.png","source":"data:image/png;base64,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"}],"display":{"thirdperson_righthand":{"translation":[-0.25,6.75,-4]},"thirdperson_lefthand":{"translation":[1,6.75,-4.25]},"firstperson_righthand":{"translation":[0,9,-2]},"firstperson_lefthand":{"translation":[0,5,0]},"ground":{"translation":[0,10,-5.25]},"gui":{"rotation":[27,132,0],"translation":[-1.5,3.5,0],"scale":[0.9,0.9,0.9]},"fixed":{"rotation":[0,-90,0],"translation":[2,4,0],"scale":[1,0.75,0.75]}}} \ No newline at end of file +{"meta":{"format_version":"4.10","model_format":"java_block","box_uv":false},"name":"ak47","parent":"","ambientocclusion":true,"front_gui_light":false,"visible_box":[1,1,0],"variable_placeholders":"","variable_placeholder_buttons":[],"unhandled_root_fields":{},"resolution":{"width":64,"height":64},"elements":[{"name":"rod","box_uv":true,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[8,2,0],"to":[9,3,16],"autouv":0,"color":4,"origin":[7,2,6],"faces":{"north":{"uv":[16,16,17,17],"texture":0},"east":{"uv":[0,16,16,17],"texture":0},"south":{"uv":[33,16,34,17],"texture":0},"west":{"uv":[17,16,33,17],"texture":0},"up":{"uv":[17,16,16,0],"texture":0},"down":{"uv":[18,0,17,16],"texture":0}},"type":"cube","uuid":"48da1125-4c39-069b-b756-cc80d6462475"},{"name":"sight","box_uv":true,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[8,3,0],"to":[9,4,1],"autouv":0,"color":4,"origin":[8,2,-1],"uv_offset":[12,29],"faces":{"north":{"uv":[13,30,14,31],"texture":0},"east":{"uv":[12,30,13,31],"texture":0},"south":{"uv":[15,30,16,31],"texture":0},"west":{"uv":[14,30,15,31],"texture":0},"up":{"uv":[14,30,13,29],"texture":0},"down":{"uv":[15,29,14,30],"texture":0}},"type":"cube","uuid":"066b1409-bd11-a10a-74e1-d545acf6443a"},{"name":"fore","box_uv":true,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[8,3,5],"to":[9,4,16],"autouv":0,"color":4,"origin":[8,2,4],"uv_offset":[0,17],"faces":{"north":{"uv":[11,28,12,29],"texture":0},"east":{"uv":[0,28,11,29],"texture":0},"south":{"uv":[23,28,24,29],"texture":0},"west":{"uv":[12,28,23,29],"texture":0},"up":{"uv":[12,28,11,17],"texture":0},"down":{"uv":[13,17,12,28],"texture":0}},"type":"cube","uuid":"3d2acd0e-7801-7ffb-e8d7-17a7c52977e3"},{"name":"grip","box_uv":true,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[8,-2,14],"to":[9,3,16],"autouv":0,"color":4,"rotation":[-22.5,0,0],"origin":[8,1,15],"uv_offset":[0,29],"faces":{"north":{"uv":[2,31,3,36],"texture":0},"east":{"uv":[0,31,2,36],"texture":0},"south":{"uv":[5,31,6,36],"texture":0},"west":{"uv":[3,31,5,36],"texture":0},"up":{"uv":[3,31,2,29],"texture":0},"down":{"uv":[4,29,3,31],"texture":0}},"type":"cube","uuid":"75a09188-ba55-d4f9-c9f4-687fabb28a43"},{"name":"trigger","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[8,0.75,12.25],"to":[9,2,12.5],"autouv":0,"color":4,"rotation":[22.5,0,0],"origin":[8,0,13],"uv_offset":[16,29],"faces":{"north":{"uv":[16,29,17,30],"texture":0},"east":{"uv":[16,29,16,30],"texture":0},"south":{"uv":[17,29,18,30],"texture":0},"west":{"uv":[17,29,17,30],"texture":0},"up":{"uv":[17,29,16,29],"texture":0},"down":{"uv":[18,29,17,29],"texture":0}},"type":"cube","uuid":"72512490-69a9-e412-2290-cae6eb49edc7"},{"name":"mag","box_uv":true,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[8,-5,9],"to":[9,3,11],"autouv":0,"color":4,"rotation":[22.5,0,0],"origin":[8,1,10],"uv_offset":[24,24],"faces":{"north":{"uv":[26,26,27,34],"texture":0},"east":{"uv":[24,26,26,34],"texture":0},"south":{"uv":[29,26,30,34],"texture":0},"west":{"uv":[27,26,29,34],"texture":0},"up":{"uv":[27,26,26,24],"texture":0},"down":{"uv":[28,24,27,26],"texture":0}},"type":"cube","uuid":"ec2ede4c-e48f-f2ce-55ad-b6ce30dc570e"},{"name":"stock","box_uv":true,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[8,2,16],"to":[9,3.25,22],"autouv":0,"color":4,"origin":[8,3,22],"uv_offset":[24,17],"faces":{"north":{"uv":[30,23,31,24],"texture":0},"east":{"uv":[24,23,30,24],"texture":0},"south":{"uv":[37,23,38,24],"texture":0},"west":{"uv":[31,23,37,24],"texture":0},"up":{"uv":[31,23,30,17],"texture":0},"down":{"uv":[32,17,31,23],"texture":0}},"type":"cube","uuid":"46208f06-98d1-337f-5819-8a69e8d30f00"},{"name":"stockend","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[8,0.85,20.198],"to":[9,1.6,22.198],"autouv":0,"color":4,"rotation":[22.5,0,0],"origin":[8,2.3,23.15],"uv_offset":[6,29],"faces":{"north":{"uv":[8,31,9,31],"texture":0},"east":{"uv":[6,31,8,31],"texture":0},"south":{"uv":[11,31,12,31],"texture":0},"west":{"uv":[9,31,11,31],"texture":0},"up":{"uv":[9,31,8,29],"texture":0},"down":{"uv":[10,29,9,31],"texture":0}},"type":"cube","uuid":"a21b06cd-d962-bcec-9dc4-e2375c417eb8"}],"outliner":[{"name":"gun","origin":[7,2,6],"color":0,"uuid":"25284a38-2bcb-95b1-44a7-678703e803a6","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"selected":false,"children":["066b1409-bd11-a10a-74e1-d545acf6443a","3d2acd0e-7801-7ffb-e8d7-17a7c52977e3","48da1125-4c39-069b-b756-cc80d6462475","75a09188-ba55-d4f9-c9f4-687fabb28a43","ec2ede4c-e48f-f2ce-55ad-b6ce30dc570e","46208f06-98d1-337f-5819-8a69e8d30f00","a21b06cd-d962-bcec-9dc4-e2375c417eb8","72512490-69a9-e412-2290-cae6eb49edc7"]}],"textures":[{"path":"C:\\Users\\5gi\\AppData\\Roaming\\ModrinthApp\\profiles\\Fabulously Optimized\\resourcepacks\\giGuns Pack Java\\assets\\minecraft\\textures\\item\\ak47.png","name":"ak47.png","folder":"item","namespace":"minecraft","id":"0","group":"","width":256,"height":256,"uv_width":64,"uv_height":64,"particle":true,"use_as_default":false,"layers_enabled":false,"sync_to_project":"","render_mode":"default","render_sides":"auto","pbr_channel":"color","frame_time":1,"frame_order_type":"loop","frame_order":"","frame_interpolate":false,"visible":true,"internal":true,"saved":true,"uuid":"624273cf-35d1-437d-5e22-4c7b2f4b8932","relative_path":"../assets/minecraft/textures/item/ak47.png","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAEACAYAAABccqhmAAAAAXNSR0IArs4c6QAACsRJREFUeF7t3TGLZFUehvHbkYLBhjPQggUruIGRkwgGw2A60TD4CTaccDX0A8ho4oYLk6owE4ip4YLRRhMoGNSADTMfQMHIpUsausquulV96/Q5574/M+lb957/877nmdtV1VUnQ/h/3z1/8cdlBI/u310jslwuT8IRGX/GBOLLfS6A999+cxXxDz//MhDAjNtutL8QIIANATz5/Mvh9NbtFaizVy+Hp08exzOyb+ZLIL7cm3cABDDfspvsrwQIwB2AfRFMgAAIILj+RicAArALggkQAAEE19/oBEAAdkEwAQIggOD6G50AvBHILggmQADuAILrb3QCcAdgFwQTIAACCK6/0QmAAOyCYAIEQADB9Tc6ARCAXRBMgAAIILj+RieALS8DfvvVv4c79x76PAB7ZNYECMD7AGZdcMPtJkAABGCPBBMgAAIIrr/RCYAA7IJgAgRAAMH1NzoBEIBdEEyAAAgguP5GJwBvBLILggkQAAEE19/oBEAAdkEwAQIggOD6G50ACMAuCCZAABsC+O3Tt9bq8NGzIZ5R8P6Y/ejx5d78clACmH3nDXiJAAG4A7AhggkQAAEE19/oBEAAdkEwAQIggOD6G50ACMAuCCZAAAQQXH+jEwAB2AXBBAiAAILrb3QC8FZguyCYAAEQQHD9jU4ABGAXBBOIF8BisfhjV/7L5TKeUfD+mP3o8eUmgNl33IA7CBCAOwAbJJgAARBAcP2NTgAEYBcEEyAAAgiuv9EJgADsgmACBEAAwfU3OgEQgF0QTIAACCC4/kYnAAKwC4IJEAABBNff6ARAAHZBMAECIIDg+hudAAjALggmQAAEEFx/o8cLYPO7AR/dv7vWCp8HYJPMmQAB+ESgOffbbCMECIAAbJJgAgTw/MXaR4L5FSB4NwSOfjL2kVglmXz23nKv03/yv8Vex7V+UA/z/vj9gzWMr//9i/h/JFrv1ZT1EcAwDMvlnyJaLMqKphcBvHb6zorH72c/DQQwZXu1/1gCIIC1lp7fARBA+xv3WCskgGOR3OM8vdwBXB7FHcAewXZ8SHe/320+Z3Hn3sM1/E+fPO5uppL9+ebBsPYk59d/+xdeJYF3du7uNstVAji9dXuF/ezVy4EA1ht4lQDw6myXFlwuARSE28KpCaCFFNpdAwG0m81RVkYAR8E425MQwGyj/XMwAph5wBPHI4CJAFt/OAG0nlDd9RFAXf7Fr04AxRF3fQEC6Dq+8cVvCmDzER89G7rrwPjUjtiXQHfhexlw32ivfg6AAA7jN/ejCWDmCbsDmHnAE8cjgIkAW384AbSeUN31EUBd/sWvTgDFEXd9AQLoOr7xxRPAOKPkIwhg5ukTwMwDnjgeAUwE2PrDCaD1hOqujwDq8i9+dQIojrjrCxBA1/GNL54AxhklH0EAM0+fAGYe8MTxCGAiwNYfTgCtJ1R3fQRQl3/xqxNAccRdX4AAuo5vfPEEMM4o+QgCmHn6BDDzgCeORwATAbb+8LFvfvLtx60nWHZ9BFCWb/WzE0D1CJpeAAFUjmfsFv26y7v4PsUP/vN87RT//ee7q//f90tKrnv9i8f5wJGpBMs+ngDK8h09+00IYHH7jdU6li9/HQhgNJKoAwigctwEUDmA8MsTQOUC3IQALo/oDqBy4I1dngAaC2RzOd89f7H23X6P7t9dO8Sz+I0H2PjyCKDxgM4F8P7bb65W+cPPvwwE0HhgnS2PABoPjAAaD6jz5RFA4wESQOMBdb48Amg8QAJoPKDOl0cAjQdIAI0H1PnyCKDxAAmg8YA6X153Akj7sksvA3a+wxpfPgFUDmjsj3WmLs/7BKYSnPfjCaByvgRQOYDwyxNA5QIQQOUAwi9PAJULQACVAwi/PAFULgABVA4g/PLdCWBzw9y593A4vXV7FePZq5fD0yePu5qJAMJ3YOXxu9os56wI4LDGeBXgMF5pR89CAJdDcwewXmECSNvSh817UvoW9JDlbPucuovPtxs719THj52/x58TQI+p3dyaCeDmWFe5EgFUwd7NRQmgm6iut1ACuB63lEcRwA0n/eP3D9au+I8PnxVdAQEUxdv9yUefBNz8Y5TfPn1rbeixz30v9aGXF4vYvP5VrxLsepJw7DmQ0hto7PpTG1Z6/VPX5/F1CewlgMufSdejAHa9T2BsA5beQGPXn1qP0uufuj6Pr0uAABaLtU/d3Yyj9AYigLobIP3qEQLwK0B6zc2/jUD3Atj3PQLbAJT+F36seu4Axgj5eUkCBLBcjjIoGQABlKTr3GMERsu/+Zl0rT0J6A5gd8S173DGCujndQnsJYDLSySA4wbmDuC4PJ3tMAKjbwTa9v3y2y6z+UaXbz/+4rAVHXj02PsQDjzdjR9OADeO3AUvEdhLAFd9v/wuAbx2+s7qx7+f/TQQwO6+EYD9WJPAqAA2/8Ju7Hfu8zsAAtg/UgLYn5Ujj09gqwC2/WntxRK2iYAADguJAA7j5ejjElgTwNimv+rSmyIggMMCIoDDeDn6uARWArjOxt8mg2Oda98xPQm4m5SXAfdtUuZxJ6X/Wq80VgIggNIdm/P5CaByun4FqBxA+OUJoHIBCKByAOGXJ4DKBSCAygGEX54AKheAACoHEH55AqhcAAKoHED45QkgvADGzyZQXAC9v0yXXQ/Tz50AAcw9YfMhsIMAAagHAsEECCA4fKMjQAA6gEAwAQIIDt/oCBCADiAQTGD0Q0GD2RgdgdkTIIDZR2xABLYTIADtQCCYAAEEh290BAhABxAIJkAAweEbHQEC0AEEggkQQHD4RkeAAHQAgWACBBAcvtERIAAdQCCYAAEEh290BAhABxAIJkAAweEbHQEC0AEEggkQQHD4RkeAAHQAgWACBBAcvtERIAAdQCCYAAEEh290BAhABxAIJkAAweEbHQEC0AEEggkQQHD4RkeAAHQAgWACBBAcvtERIAAdQCCYAAEEh290BAhABxAIJkAAweEbHQEC0AEEggkQQHD4RkeAAHQAgWACBBAcvtERIAAdQCCYAAEEh290BAhABxAIJkAAweEbHQEC0AEEggkQQHD4RkeAAHQAgWACBBAcvtERIAAdQCCYAAEEh290BAhABxAIJkAAweEbHQEC0AEEggkQQHD4RkeAAHQAgWACBBAcvtERIAAdQCCYAAEEh290BAhABxAIJkAAweEbHQEC0AEEggkQQHD4RkeAAHQAgWACBBAcvtERIAAdQCCYAAEEh290BAhABxAIJkAAweEbHQEC0AEEggkQQHD4RkeAAHQAgWACBBAcvtERIAAdQCCYAAEEh290BAhABxAIJkAAweEbHQEC0AEEggkQQHD4RkeAAHQAgWACBBAcvtERIAAdQCCYAAEEh290BAhABxAIJkAAweEbHQEC0AEEggkQQHD4RkeAAHQAgWACBBAcvtERIAAdQCCYAAEEh290BAhABxAIJkAAweEbHQEC0AEEggkQQHD4RkeAAHQAgWACBBAcvtERIAAdQCCYAAEEh290BAhABxAIJkAAweEbHQEC0AEEggkQQHD4RkeAAHQAgWACBBAcvtERIAAdQCCYAAEEh290BAhABxAIJkAAweEbHQEC0AEEggkQQHD4RkeAAHQAgWACBBAcvtERIAAdQCCYAAEEh290BAhABxAIJkAAweEbHQEC0AEEggkQQHD4Rkfg/5ZtHltlX6bcAAAAAElFTkSuQmCC"}],"display":{"thirdperson_righthand":{"rotation":[0,-13.75,0],"translation":[1,6.75,-4]},"thirdperson_lefthand":{"translation":[1,6.75,-4.25]},"firstperson_righthand":{"translation":[7.25,9,-2]},"firstperson_lefthand":{"translation":[0,5,0]},"ground":{"translation":[0,10,-5.25]},"gui":{"rotation":[27,132,0],"translation":[-1.5,3.5,0],"scale":[0.9,0.9,0.9]},"fixed":{"rotation":[0,-90,0],"translation":[2,4,0],"scale":[1,0.75,0.75]}}} \ No newline at end of file diff --git a/src/main/resources/TexturePack/giGuns Pack Java/bb/antitankammo.bbmodel b/src/main/resources/TexturePack/giGuns Pack Java/bb/antitankammo.bbmodel new file mode 100644 index 0000000..18b24e7 --- /dev/null +++ b/src/main/resources/TexturePack/giGuns Pack Java/bb/antitankammo.bbmodel @@ -0,0 +1 @@ +{"meta":{"format_version":"4.10","model_format":"java_block","box_uv":false},"name":"antitankammo","parent":"","ambientocclusion":true,"front_gui_light":false,"visible_box":[1,1,0],"variable_placeholders":"","variable_placeholder_buttons":[],"unhandled_root_fields":{},"resolution":{"width":8,"height":8},"elements":[{"name":"cube","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[7.5,0,7.5],"to":[8.5,4.75,8.5],"autouv":0,"color":4,"origin":[6.5,0,7.5],"faces":{"north":{"uv":[0,0,1,5],"texture":0},"east":{"uv":[1,0,2,5],"texture":0},"south":{"uv":[2,0,3,5],"texture":0},"west":{"uv":[3,0,4,5],"texture":0},"up":{"uv":[5,1,4,0],"texture":0},"down":{"uv":[5,1,4,2],"texture":0}},"type":"cube","uuid":"33973286-6d31-9c4a-accd-7f29ba980271"}],"outliner":["33973286-6d31-9c4a-accd-7f29ba980271"],"textures":[{"path":"C:\\Users\\5gi\\AppData\\Roaming\\ModrinthApp\\profiles\\Fabulously Optimized\\resourcepacks\\giGuns Pack Java\\assets\\minecraft\\textures\\item\\antitankammo.png","name":"antitankammo.png","folder":"item","namespace":"minecraft","id":"0","group":"","width":16,"height":16,"uv_width":8,"uv_height":8,"particle":true,"use_as_default":false,"layers_enabled":false,"sync_to_project":"","render_mode":"default","render_sides":"auto","pbr_channel":"color","frame_time":1,"frame_order_type":"loop","frame_order":"","frame_interpolate":false,"visible":true,"internal":true,"saved":true,"uuid":"849c2d63-2f86-2321-46c2-45933e21843b","relative_path":"../assets/minecraft/textures/item/antitankammo.png","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAENJREFUOE9jZGBg+M9AHGDEpgwkSJkBmzZtIsoAPz8/7C6guQG4bIaFByMhF4wawMBAMAyIS4S4VWFNHKQYOmoAAwMACPwiESNrAOAAAAAASUVORK5CYII="}],"display":{"thirdperson_righthand":{"translation":[0,7.75,0]},"thirdperson_lefthand":{"translation":[0,7.5,0]},"firstperson_righthand":{"translation":[0,7.5,1.25]},"firstperson_lefthand":{"translation":[0,6.75,1.5]},"ground":{"translation":[0,5.25,0]},"gui":{"translation":[0,14,0],"scale":[2.5,2.5,2.5]},"fixed":{"translation":[0,13.5,0],"scale":[2.5,2.5,2.5]}}} \ No newline at end of file diff --git a/src/main/resources/TexturePack/giGuns Pack Java/bb/barettm82.bbmodel b/src/main/resources/TexturePack/giGuns Pack Java/bb/barettm82.bbmodel index 7065578..c4b1213 100644 --- a/src/main/resources/TexturePack/giGuns Pack Java/bb/barettm82.bbmodel +++ b/src/main/resources/TexturePack/giGuns Pack Java/bb/barettm82.bbmodel @@ -1 +1 @@ -{"meta":{"format_version":"4.10","model_format":"java_block","box_uv":false},"name":"barettm82","parent":"","ambientocclusion":true,"front_gui_light":false,"visible_box":[1,1,0],"variable_placeholders":"","variable_placeholder_buttons":[],"unhandled_root_fields":{},"resolution":{"width":64,"height":64},"elements":[{"name":"barrel","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[7,3,-15.25],"to":[8,4,12],"autouv":0,"color":2,"origin":[7,3,-4],"faces":{"north":{"uv":[23,20,24,21],"texture":0},"east":{"uv":[10,12,37.5,13],"texture":0},"south":{"uv":[23,21,24,22],"texture":0},"west":{"uv":[10,13,37.5,14],"texture":0},"up":{"uv":[11,41.5,10,14],"texture":0},"down":{"uv":[12,14,11,41.5],"texture":0}},"type":"cube","uuid":"5ac2e668-d7ef-f857-10a9-7528ee054d8e"},{"name":"Scope","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[6.5,4,7.75],"to":[8.5,6,19],"autouv":0,"color":4,"origin":[6.5,4,8],"faces":{"north":{"uv":[18,20,20,22],"texture":0},"east":{"uv":[12,14,23.5,16],"texture":0},"south":{"uv":[20,20,22,22],"texture":0},"west":{"uv":[16,0,27.5,2],"texture":0},"up":{"uv":[2,26.5,0,15],"texture":0},"down":{"uv":[4,15,2,26.5],"texture":0}},"type":"cube","uuid":"ff07946a-9981-d76f-f4f2-a23ff4fc3739"},{"name":"mag","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[6.5,1.75,-1.5],"to":[8.5,3.75,16.25],"autouv":0,"color":1,"origin":[6.5,1.75,10],"faces":{"north":{"uv":[22,16,24,18],"texture":0},"east":{"uv":[6,8,24,10],"texture":0},"south":{"uv":[18,22,20,24],"texture":0},"west":{"uv":[6,10,24,12],"texture":0},"up":{"uv":[8,30,6,12],"texture":0},"down":{"uv":[10,12,8,30],"texture":0}},"type":"cube","uuid":"adb8cfc0-a9e7-0572-03a2-35ae9531eadf"},{"name":"barrel","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[7,2,9],"to":[8,3,29],"autouv":0,"color":2,"origin":[7,2,13],"faces":{"north":{"uv":[23,22,24,23],"texture":0},"east":{"uv":[16,2,36,3],"texture":0},"south":{"uv":[23,23,24,24],"texture":0},"west":{"uv":[16,3,36,4],"texture":0},"up":{"uv":[5,35,4,15],"texture":0},"down":{"uv":[6,15,5,35],"texture":0}},"type":"cube","uuid":"d268f148-bf33-3318-1d38-c35bdf5c8ca4"},{"name":"stock","box_uv":true,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[6.75,1.75,24.5],"to":[8.25,3.25,31.75],"autouv":0,"color":4,"origin":[7,3,30.5],"faces":{"north":{"uv":[7,7,8,8],"texture":0},"east":{"uv":[0,7,7,8],"texture":0},"south":{"uv":[15,7,16,8],"texture":0},"west":{"uv":[8,7,15,8],"texture":0},"up":{"uv":[8,7,7,0],"texture":0},"down":{"uv":[9,0,8,7],"texture":0}},"type":"cube","uuid":"97e44d8c-b644-7b78-a226-7f9abef5a1db"},{"name":"stockend","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[6.75,-0.15,28.198],"to":[8.25,1.35,31.948],"autouv":0,"color":4,"rotation":[22.5,0,0],"origin":[7,2.05,32.9],"uv_offset":[6,29],"faces":{"north":{"uv":[22,18,23.5,19.5],"texture":0},"east":{"uv":[16,16,20,17.5],"texture":0},"south":{"uv":[20,22,21.5,23.5],"texture":0},"west":{"uv":[16,18,20,19.5],"texture":0},"up":{"uv":[17.5,24,16,20],"texture":0},"down":{"uv":[21.5,16,20,20],"texture":0}},"type":"cube","uuid":"dc313ab5-c271-0113-f9bc-231f8de2953a"},{"name":"trigger","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[7.25,0.75,12.25],"to":[8.25,2,12.5],"autouv":0,"color":4,"rotation":[22.5,0,0],"origin":[7.25,0,13],"uv_offset":[16,29],"faces":{"north":{"uv":[22,20,23,21.5],"texture":0},"east":{"uv":[24,8,24.5,9.5],"texture":0},"south":{"uv":[22,22,23,23.5],"texture":0},"west":{"uv":[24,10,24.5,11.5],"texture":0},"up":{"uv":[13,24.5,12,24],"texture":0},"down":{"uv":[14,24,13,24.5],"texture":0}},"type":"cube","uuid":"bdad9fb1-2ccd-50e7-30c9-983c9f8114d8"},{"name":"grip","box_uv":true,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[7.25,-2,14],"to":[8.25,3,16],"autouv":0,"color":4,"rotation":[-22.5,0,0],"origin":[7.25,1,15],"uv_offset":[0,8],"faces":{"north":{"uv":[2,10,3,15],"texture":0},"east":{"uv":[0,10,2,15],"texture":0},"south":{"uv":[5,10,6,15],"texture":0},"west":{"uv":[3,10,5,15],"texture":0},"up":{"uv":[3,10,2,8],"texture":0},"down":{"uv":[4,8,3,10],"texture":0}},"type":"cube","uuid":"dc743ccd-d15c-1d99-e688-32e3437cc1cf"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[7,1,-7.5],"to":[8,2,0.5],"autouv":0,"color":5,"rotation":[0,-22.5,0],"origin":[8,1,1.5],"faces":{"north":{"uv":[24,5,25,6],"texture":0},"east":{"uv":[16,5,24,6],"texture":0},"south":{"uv":[24,4,25,5],"texture":0},"west":{"uv":[16,4,24,5],"texture":0},"up":{"uv":[13,24,12,16],"rotation":180,"texture":0},"down":{"uv":[14,16,13,24],"rotation":180,"texture":0}},"type":"cube","uuid":"5b249c95-308f-4326-b120-8198c3fe26f8"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[7,1,-7.75],"to":[8,2,0.25],"autouv":0,"color":5,"rotation":[0,22.5,0],"origin":[8,1,1.25],"faces":{"north":{"uv":[24,7,25,8],"texture":0},"east":{"uv":[16,7,24,8],"texture":0},"south":{"uv":[24,6,25,7],"texture":0},"west":{"uv":[16,6,24,7],"texture":0},"up":{"uv":[15,24,14,16],"rotation":180,"texture":0},"down":{"uv":[16,16,15,24],"rotation":180,"texture":0}},"type":"cube","uuid":"ab9116a4-1e6d-a67f-c75d-5212cbddefd7"}],"outliner":[{"name":"group","origin":[0,0,0],"color":0,"uuid":"e0043e97-99e9-69cd-229a-b7c3aa98c3c9","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"selected":false,"children":["5ac2e668-d7ef-f857-10a9-7528ee054d8e","d268f148-bf33-3318-1d38-c35bdf5c8ca4","dc313ab5-c271-0113-f9bc-231f8de2953a","97e44d8c-b644-7b78-a226-7f9abef5a1db","ff07946a-9981-d76f-f4f2-a23ff4fc3739","adb8cfc0-a9e7-0572-03a2-35ae9531eadf","bdad9fb1-2ccd-50e7-30c9-983c9f8114d8","dc743ccd-d15c-1d99-e688-32e3437cc1cf","5b249c95-308f-4326-b120-8198c3fe26f8","ab9116a4-1e6d-a67f-c75d-5212cbddefd7"]}],"textures":[{"path":"C:\\Users\\5gi\\AppData\\Roaming\\ModrinthApp\\profiles\\Fabulously Optimized\\resourcepacks\\giGuns Pack Java\\assets\\minecraft\\textures\\item\\barettm82.png","name":"barettm82.png","folder":"item","namespace":"minecraft","id":"0","group":"","width":128,"height":128,"uv_width":64,"uv_height":64,"particle":true,"use_as_default":false,"layers_enabled":false,"sync_to_project":"","render_mode":"default","render_sides":"auto","pbr_channel":"color","frame_time":1,"frame_order_type":"loop","frame_order":"","frame_interpolate":false,"visible":true,"internal":true,"saved":true,"uuid":"9f41194c-286b-16ff-ffc9-835cfdd3ec20","relative_path":"../assets/minecraft/textures/item/barettm82.png","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAYAAADDPmHLAAAAAXNSR0IArs4c6QAABWFJREFUeF7tnb9rVEEQx991ginSJKQQFTRXiWAjSrQyYBFF1E5RSKWWapc/IDZGC4vYHSiWUQQDChELDVgIAbU7BRWLkDQpIqRT3sKGl5e77JvZeZm34zdNSG52dub7/dzu+3VJK2N+jY6O/s2HHj11wWWY69xvcVL5PJyxoTHdbpdVUyivpdfZAo2NjTkARtonAUDCRLABwAqQsOuF0gGADR/ZXagDcGZ5xm0lO339Ov04FBJ8ff/7m8GYXgFvR+6yNWJNuMuD2M1JbQFVANi4/Dxalj1zl1g5AEAf2aQAWJ+eDq4AvUo41umwDC0OWpqcDOYYmJpiv0mCyRsQwG7OAzA8POzaWFxcZOXiAnB2fj5avjcTE8EcACCwAsQCMDQ0xFoBymWtrq6yAAwSYDyALZrUCgAAdAkDALr6q88OANQt0C0AAOjqrz47AFC3QLeAVn4wlx/Jr6ys7Eol5bnW1tZE5sVZAE/GTQB4w3mjirABAJ6GUqO2bQGvvv505+X3blzpeYGnzvv33KZw35+rXJYBAL52JkYCABM28ptIHgAs/3zz85Et/2hX1TS7dbZQtZ48DhBQ1NoaCwD42pkYCQBM2MhvInkAsPzzzTdzDBAnQfXRFmFLfgWobl98JADIsl27ZxBvl3wGAAAA2HdP5XGUyZj0FmDxHSlja/UsAKC6ViYj3e3gnTp7+GLBvdyZeeS+f/7wsjFCYAWItwIAxGuYdIbaAQg98DE4OJj5zxbkSpY/YFJcofJ3fHnFwioQx1/jAPDteBCKN6vy3wGAOMPLoxsLQK82AYCs+e5ScN0HgaEtIPQwJ1YAedOLGRsHQNHw/NmD8vHB1YX1zbOWZ+MD5i7M1Gv39uyNAqD8cEo/AA6O7M1+LP/JAEA8LuoAtNvtvl1gBYg3OJQhCIBP4Jdi6iNh0scAoYbwOk0BdQA67z5tVnzuyIHK9XS7XT8OxwE0z7dEVxa8rhUgB+DE4X3Zx2+/Mw/A9aezrsgn12657+Wf898BgAjXC0OTBcD3gCuBcSA0EoCdWvKG++sXAOA/AqB4L+D47JLrHKeCAAAHgREMJLUFFFeAL6/Pu7b3HHoAAFIHwNff6zSw3x6/8f2OuyQMACLcr3IzKPZCkH+i6PbFcZcKB21xhkmPrn0LgOHSlsnmAwCyeiaXDQAkZ5lswQBAVs/ksgVPocp/E5h6NxDHAM1mAgA025/aqwMAtUvc7AmCAPi/G8j9ZBC2AAAQhKzZEtmuLmgOVgAA4K65YwuwCQJ5BQj9j2B8dCstUABAWn6JVwsAxCVNKyEASMsv8WoBgLikaSUEAGn5JV4tABCXNK2EACAtv8SrBQDikqaVEACk5Zd4tUEAqDPiSiBVMd14AKCrv/rsAEDdAt0CAICu/uqzAwB1C3QLAAC6+qvPDgDULdAtAADo6q8+OwBQt0C3AACgq7/67ABA3QLdAgCArv7qswMAdQt0CxAHQLcdzE5VAABQFTMWDwCMGUptBwBQFTMWDwCMGUptBwBQFTMWDwCMGUptBwBQFTMWDwCMGUptBwBQFTMWDwCMGUptBwBQFTMWDwCMGUptBwBQFTMWDwCMGUptBwBQFTMWDwCMGUptBwBQFTMWDwCMGUptBwBQFTMWDwCMGUptBwBQFTMWDwCMGUptBwBQFTMWDwCMGUptBwBQFTMWDwCMGUptBwBQFTMWDwCMGUptBwBQFTMWDwCMGUptBwBQFTMWDwCMGUptBwBQFTMWDwCMGUptBwBQFTMWDwCMGUptBwBQFTMWDwCMGUptBwBQFTMWDwCMGUptBwBQFTMWDwCMGUptBwBQFTMWDwCMGUpt5x/8s2WuCMAMDAAAAABJRU5ErkJggg=="}],"display":{"thirdperson_righthand":{"translation":[0.5,6.75,-6.5]},"thirdperson_lefthand":{"translation":[-0.5,6.75,-6.5]},"firstperson_righthand":{"translation":[-0.75,9.75,-7.5]},"firstperson_lefthand":{"translation":[-2.25,6.5,-5]},"ground":{"translation":[0,8.25,0]},"gui":{"rotation":[26,124,-3],"translation":[-0.25,1,0],"scale":[0.39,0.39,0.39]},"fixed":{"rotation":[180,-90,180],"translation":[0,1.25,0],"scale":[0.39,0.39,0.39]}}} \ No newline at end of file +{"meta":{"format_version":"4.10","model_format":"java_block","box_uv":false},"name":"barettm82","parent":"","ambientocclusion":true,"front_gui_light":false,"visible_box":[1,1,0],"variable_placeholders":"","variable_placeholder_buttons":[],"unhandled_root_fields":{},"resolution":{"width":64,"height":64},"elements":[{"name":"barrel","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[7,3,-15.25],"to":[8,4,12],"autouv":0,"color":2,"origin":[7,3,-4],"faces":{"north":{"uv":[23,20,24,21],"texture":0},"east":{"uv":[10,12,37.5,13],"texture":0},"south":{"uv":[23,21,24,22],"texture":0},"west":{"uv":[10,13,37.5,14],"texture":0},"up":{"uv":[11,41.5,10,14],"texture":0},"down":{"uv":[12,14,11,41.5],"texture":0}},"type":"cube","uuid":"5ac2e668-d7ef-f857-10a9-7528ee054d8e"},{"name":"Scope","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[6.5,4,7.75],"to":[8.5,6,19],"autouv":0,"color":4,"origin":[6.5,4,8],"faces":{"north":{"uv":[18,20,20,22],"texture":0},"east":{"uv":[12,14,23.5,16],"texture":0},"south":{"uv":[20,20,22,22],"texture":0},"west":{"uv":[16,0,27.5,2],"texture":0},"up":{"uv":[2,26.5,0,15],"texture":0},"down":{"uv":[4,15,2,26.5],"texture":0}},"type":"cube","uuid":"ff07946a-9981-d76f-f4f2-a23ff4fc3739"},{"name":"mag","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[6.5,1.75,-1.5],"to":[8.5,3.75,16.25],"autouv":0,"color":1,"origin":[6.5,1.75,10],"faces":{"north":{"uv":[22,16,24,18],"texture":0},"east":{"uv":[6,8,24,10],"texture":0},"south":{"uv":[18,22,20,24],"texture":0},"west":{"uv":[6,10,24,12],"texture":0},"up":{"uv":[8,30,6,12],"texture":0},"down":{"uv":[10,12,8,30],"texture":0}},"type":"cube","uuid":"adb8cfc0-a9e7-0572-03a2-35ae9531eadf"},{"name":"barrel","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[7,2,9],"to":[8,3,29],"autouv":0,"color":2,"origin":[7,2,13],"faces":{"north":{"uv":[23,22,24,23],"texture":0},"east":{"uv":[16,2,36,3],"texture":0},"south":{"uv":[23,23,24,24],"texture":0},"west":{"uv":[16,3,36,4],"texture":0},"up":{"uv":[5,35,4,15],"texture":0},"down":{"uv":[6,15,5,35],"texture":0}},"type":"cube","uuid":"d268f148-bf33-3318-1d38-c35bdf5c8ca4"},{"name":"stock","box_uv":true,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[6.75,1.75,24.5],"to":[8.25,3.25,31.75],"autouv":0,"color":4,"origin":[7,3,30.5],"faces":{"north":{"uv":[7,7,8,8],"texture":0},"east":{"uv":[0,7,7,8],"texture":0},"south":{"uv":[15,7,16,8],"texture":0},"west":{"uv":[8,7,15,8],"texture":0},"up":{"uv":[8,7,7,0],"texture":0},"down":{"uv":[9,0,8,7],"texture":0}},"type":"cube","uuid":"97e44d8c-b644-7b78-a226-7f9abef5a1db"},{"name":"stockend","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[6.75,-0.15,28.198],"to":[8.25,1.35,31.948],"autouv":0,"color":4,"rotation":[22.5,0,0],"origin":[7,2.05,32.9],"uv_offset":[6,29],"faces":{"north":{"uv":[22,18,23.5,19.5],"texture":0},"east":{"uv":[16,16,20,17.5],"texture":0},"south":{"uv":[20,22,21.5,23.5],"texture":0},"west":{"uv":[16,18,20,19.5],"texture":0},"up":{"uv":[17.5,24,16,20],"texture":0},"down":{"uv":[21.5,16,20,20],"texture":0}},"type":"cube","uuid":"dc313ab5-c271-0113-f9bc-231f8de2953a"},{"name":"trigger","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[7.25,0.75,12.25],"to":[8.25,2,12.5],"autouv":0,"color":4,"rotation":[22.5,0,0],"origin":[7.25,0,13],"uv_offset":[16,29],"faces":{"north":{"uv":[22,20,23,21.5],"texture":0},"east":{"uv":[24,8,24.5,9.5],"texture":0},"south":{"uv":[22,22,23,23.5],"texture":0},"west":{"uv":[24,10,24.5,11.5],"texture":0},"up":{"uv":[13,24.5,12,24],"texture":0},"down":{"uv":[14,24,13,24.5],"texture":0}},"type":"cube","uuid":"bdad9fb1-2ccd-50e7-30c9-983c9f8114d8"},{"name":"grip","box_uv":true,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[7.25,-2,14],"to":[8.25,3,16],"autouv":0,"color":4,"rotation":[-22.5,0,0],"origin":[7.25,1,15],"uv_offset":[0,8],"faces":{"north":{"uv":[2,10,3,15],"texture":0},"east":{"uv":[0,10,2,15],"texture":0},"south":{"uv":[5,10,6,15],"texture":0},"west":{"uv":[3,10,5,15],"texture":0},"up":{"uv":[3,10,2,8],"texture":0},"down":{"uv":[4,8,3,10],"texture":0}},"type":"cube","uuid":"dc743ccd-d15c-1d99-e688-32e3437cc1cf"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[7,1,-7.5],"to":[8,2,0.5],"autouv":0,"color":5,"rotation":[0,-22.5,0],"origin":[8,1,1.5],"faces":{"north":{"uv":[24,5,25,6],"texture":0},"east":{"uv":[16,5,24,6],"texture":0},"south":{"uv":[24,4,25,5],"texture":0},"west":{"uv":[16,4,24,5],"texture":0},"up":{"uv":[13,24,12,16],"rotation":180,"texture":0},"down":{"uv":[14,16,13,24],"rotation":180,"texture":0}},"type":"cube","uuid":"5b249c95-308f-4326-b120-8198c3fe26f8"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[7,1,-7.75],"to":[8,2,0.25],"autouv":0,"color":5,"rotation":[0,22.5,0],"origin":[8,1,1.25],"faces":{"north":{"uv":[24,7,25,8],"texture":0},"east":{"uv":[16,7,24,8],"texture":0},"south":{"uv":[24,6,25,7],"texture":0},"west":{"uv":[16,6,24,7],"texture":0},"up":{"uv":[15,24,14,16],"rotation":180,"texture":0},"down":{"uv":[16,16,15,24],"rotation":180,"texture":0}},"type":"cube","uuid":"ab9116a4-1e6d-a67f-c75d-5212cbddefd7"}],"outliner":[{"name":"group","origin":[0,0,0],"color":0,"uuid":"e0043e97-99e9-69cd-229a-b7c3aa98c3c9","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"selected":false,"children":["5ac2e668-d7ef-f857-10a9-7528ee054d8e","d268f148-bf33-3318-1d38-c35bdf5c8ca4","dc313ab5-c271-0113-f9bc-231f8de2953a","97e44d8c-b644-7b78-a226-7f9abef5a1db","ff07946a-9981-d76f-f4f2-a23ff4fc3739","adb8cfc0-a9e7-0572-03a2-35ae9531eadf","bdad9fb1-2ccd-50e7-30c9-983c9f8114d8","dc743ccd-d15c-1d99-e688-32e3437cc1cf","5b249c95-308f-4326-b120-8198c3fe26f8","ab9116a4-1e6d-a67f-c75d-5212cbddefd7"]}],"textures":[{"path":"C:\\Users\\5gi\\AppData\\Roaming\\ModrinthApp\\profiles\\Fabulously Optimized\\resourcepacks\\giGuns Pack Java\\assets\\minecraft\\textures\\item\\barettm82.png","name":"barettm82.png","folder":"item","namespace":"minecraft","id":"0","group":"","width":128,"height":128,"uv_width":64,"uv_height":64,"particle":true,"use_as_default":false,"layers_enabled":false,"sync_to_project":"","render_mode":"default","render_sides":"auto","pbr_channel":"color","frame_time":1,"frame_order_type":"loop","frame_order":"","frame_interpolate":false,"visible":true,"internal":true,"saved":true,"uuid":"9f41194c-286b-16ff-ffc9-835cfdd3ec20","relative_path":"../assets/minecraft/textures/item/barettm82.png","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAYAAADDPmHLAAAAAXNSR0IArs4c6QAABWFJREFUeF7tnb9rVEEQx991ginSJKQQFTRXiWAjSrQyYBFF1E5RSKWWapc/IDZGC4vYHSiWUQQDChELDVgIAbU7BRWLkDQpIqRT3sKGl5e77JvZeZm34zdNSG52dub7/dzu+3VJK2N+jY6O/s2HHj11wWWY69xvcVL5PJyxoTHdbpdVUyivpdfZAo2NjTkARtonAUDCRLABwAqQsOuF0gGADR/ZXagDcGZ5xm0lO339Ov04FBJ8ff/7m8GYXgFvR+6yNWJNuMuD2M1JbQFVANi4/Dxalj1zl1g5AEAf2aQAWJ+eDq4AvUo41umwDC0OWpqcDOYYmJpiv0mCyRsQwG7OAzA8POzaWFxcZOXiAnB2fj5avjcTE8EcACCwAsQCMDQ0xFoBymWtrq6yAAwSYDyALZrUCgAAdAkDALr6q88OANQt0C0AAOjqrz47AFC3QLeAVn4wlx/Jr6ys7Eol5bnW1tZE5sVZAE/GTQB4w3mjirABAJ6GUqO2bQGvvv505+X3blzpeYGnzvv33KZw35+rXJYBAL52JkYCABM28ptIHgAs/3zz85Et/2hX1TS7dbZQtZ48DhBQ1NoaCwD42pkYCQBM2MhvInkAsPzzzTdzDBAnQfXRFmFLfgWobl98JADIsl27ZxBvl3wGAAAA2HdP5XGUyZj0FmDxHSlja/UsAKC6ViYj3e3gnTp7+GLBvdyZeeS+f/7wsjFCYAWItwIAxGuYdIbaAQg98DE4OJj5zxbkSpY/YFJcofJ3fHnFwioQx1/jAPDteBCKN6vy3wGAOMPLoxsLQK82AYCs+e5ScN0HgaEtIPQwJ1YAedOLGRsHQNHw/NmD8vHB1YX1zbOWZ+MD5i7M1Gv39uyNAqD8cEo/AA6O7M1+LP/JAEA8LuoAtNvtvl1gBYg3OJQhCIBP4Jdi6iNh0scAoYbwOk0BdQA67z5tVnzuyIHK9XS7XT8OxwE0z7dEVxa8rhUgB+DE4X3Zx2+/Mw/A9aezrsgn12657+Wf898BgAjXC0OTBcD3gCuBcSA0EoCdWvKG++sXAOA/AqB4L+D47JLrHKeCAAAHgREMJLUFFFeAL6/Pu7b3HHoAAFIHwNff6zSw3x6/8f2OuyQMACLcr3IzKPZCkH+i6PbFcZcKB21xhkmPrn0LgOHSlsnmAwCyeiaXDQAkZ5lswQBAVs/ksgVPocp/E5h6NxDHAM1mAgA025/aqwMAtUvc7AmCAPi/G8j9ZBC2AAAQhKzZEtmuLmgOVgAA4K65YwuwCQJ5BQj9j2B8dCstUABAWn6JVwsAxCVNKyEASMsv8WoBgLikaSUEAGn5JV4tABCXNK2EACAtv8SrBQDikqaVEACk5Zd4tUEAqDPiSiBVMd14AKCrv/rsAEDdAt0CAICu/uqzAwB1C3QLAAC6+qvPDgDULdAtAADo6q8+OwBQt0C3AACgq7/67ABA3QLdAgCArv7qswMAdQt0CxAHQLcdzE5VAABQFTMWDwCMGUptBwBQFTMWDwCMGUptBwBQFTMWDwCMGUptBwBQFTMWDwCMGUptBwBQFTMWDwCMGUptBwBQFTMWDwCMGUptBwBQFTMWDwCMGUptBwBQFTMWDwCMGUptBwBQFTMWDwCMGUptBwBQFTMWDwCMGUptBwBQFTMWDwCMGUptBwBQFTMWDwCMGUptBwBQFTMWDwCMGUptBwBQFTMWDwCMGUptBwBQFTMWDwCMGUptBwBQFTMWDwCMGUptBwBQFTMWDwCMGUptBwBQFTMWDwCMGUptBwBQFTMWDwCMGUptBwBQFTMWDwCMGUptBwBQFTMWDwCMGUptBwBQFTMWDwCMGUpt5x/8s2WuCMAMDAAAAABJRU5ErkJggg=="}],"display":{"thirdperson_righthand":{"rotation":[0,-14.75,0],"translation":[2,6.25,-7.25]},"thirdperson_lefthand":{"translation":[-0.5,6.75,-6.5]},"firstperson_righthand":{"translation":[9,9,-6.25]},"firstperson_lefthand":{"translation":[-2.25,6.5,-5]},"ground":{"translation":[0,8.25,0]},"gui":{"rotation":[26,124,-3],"translation":[-0.25,1,0],"scale":[0.39,0.39,0.39]},"fixed":{"rotation":[180,-90,180],"translation":[0,1.25,0],"scale":[0.39,0.39,0.39]}}} \ No newline at end of file diff --git a/src/main/resources/TexturePack/giGuns Pack Java/bb/deserteagle.bbmodel b/src/main/resources/TexturePack/giGuns Pack Java/bb/deserteagle.bbmodel index df194a0..3cfde5f 100644 --- a/src/main/resources/TexturePack/giGuns Pack Java/bb/deserteagle.bbmodel +++ b/src/main/resources/TexturePack/giGuns Pack Java/bb/deserteagle.bbmodel @@ -1 +1 @@ -{"meta":{"format_version":"4.10","model_format":"java_block","box_uv":false},"name":"deserteagle","parent":"","ambientocclusion":true,"front_gui_light":false,"visible_box":[1,1,0],"variable_placeholders":"","variable_placeholder_buttons":[],"unhandled_root_fields":{},"resolution":{"width":32,"height":32},"elements":[{"name":"cube","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[6,0,9],"to":[9,8,12],"autouv":0,"color":0,"origin":[7,0,9],"faces":{"north":{"uv":[6,6,9,14],"texture":0},"east":{"uv":[9,0,12,8],"texture":0},"south":{"uv":[9,8,12,16],"texture":0},"west":{"uv":[12,0,15,8],"texture":0},"up":{"uv":[3,17,0,14],"texture":0},"down":{"uv":[6,14,3,17],"texture":0}},"type":"cube","uuid":"9432b403-a440-cc05-1548-00375ae0f564"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[6,5,1],"to":[9,8,9],"autouv":0,"color":0,"origin":[7,5,9],"faces":{"north":{"uv":[12,8,15,11],"texture":0},"east":{"uv":[2,18,10,21],"texture":0},"south":{"uv":[12,11,15,14],"texture":0},"west":{"uv":[0,3,8,6],"texture":0},"up":{"uv":[3,14,0,6],"texture":0},"down":{"uv":[6,6,3,14],"texture":0}},"type":"cube","uuid":"043bfd91-bb96-7d98-4df0-fb6a8121329f"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[7,5,12],"to":[8,7,13],"autouv":0,"color":6,"origin":[6,5,12],"faces":{"north":{"uv":[22,30,23,32],"texture":0},"east":{"uv":[8,29,9,31],"texture":0},"south":{"uv":[5,27,6,29],"texture":0},"west":{"uv":[9,25,10,27],"texture":0},"up":{"uv":[3,29,4,30],"texture":0},"down":{"uv":[10,29,11,30],"texture":0}},"type":"cube","uuid":"55146815-efc9-57ad-b33e-0e095e299858"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[7,3,8],"to":[8,5,9],"autouv":0,"color":6,"origin":[6,3,8],"faces":{"north":{"uv":[11,17,12,19],"texture":0},"east":{"uv":[13,30,14,32],"texture":0},"south":{"uv":[13,24,14,26],"texture":0},"west":{"uv":[17,24,18,26],"texture":0},"up":{"uv":[16,17,17,18],"texture":0},"down":{"uv":[7,16.75,8,17.75],"texture":0}},"type":"cube","uuid":"d0a54ad3-f649-c932-cbe8-a587020d27e5"}],"outliner":[{"name":"group","origin":[8,8,8],"color":0,"uuid":"f63ee920-90a3-3e94-9fa2-3d6f244a1751","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"selected":false,"children":["043bfd91-bb96-7d98-4df0-fb6a8121329f","9432b403-a440-cc05-1548-00375ae0f564","55146815-efc9-57ad-b33e-0e095e299858","d0a54ad3-f649-c932-cbe8-a587020d27e5"]}],"textures":[{"path":"C:\\Users\\5gi\\AppData\\Roaming\\ModrinthApp\\profiles\\Fabulously Optimized\\resourcepacks\\giGuns Pack Java\\assets\\minecraft\\textures\\item\\deserteagle.png","name":"deserteagle.png","folder":"item","namespace":"minecraft","id":"0","group":"","width":32,"height":32,"uv_width":32,"uv_height":32,"particle":true,"use_as_default":false,"layers_enabled":false,"sync_to_project":"","render_mode":"default","render_sides":"auto","pbr_channel":"color","frame_time":1,"frame_order_type":"loop","frame_order":"","frame_interpolate":false,"visible":true,"internal":true,"saved":true,"uuid":"00443fca-0043-fa91-ff59-fb4c130b7023","relative_path":"../assets/minecraft/textures/item/deserteagle.png","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAQhJREFUWEftlssNgzAMhuHeHbpAuk1myByeIzNkgO7QY3PpsTv0ThWpRA5yEtM4BakgIQEm9sfvBxkBYBoKBwCMuXeCrbSWY8s6nxcfAEEBpRSZJu/9b1LwPwD35ysW7uV8itfOObKgxVOwW4BcP4vPAazA43aNcbXWCQMADJ9Ttgu4AHhIcaZd6Z1kEuYAsAOJwsP+DoBEAdzvWGo8CbumYLcArZVe7IKS0RgzWWtjry/vJcCic87OaHMAiS9e+lilQFeAHs45Ppt/JpwgX3dBq3POehEFWrqDBVALULM3p6AlQC0NpAI9A2bnADZsBkAFnp/1gqoWIRU4/DckdsRB9SoAVUSSAG9Nb+UhRsq7nAAAAABJRU5ErkJggg=="}],"display":{"thirdperson_righthand":{"translation":[0.5,3.5,0]},"thirdperson_lefthand":{"translation":[-0.5,3.5,0]},"firstperson_righthand":{"translation":[0,6,0]},"firstperson_lefthand":{"translation":[0,2.75,0]},"ground":{"translation":[0,5.25,0]},"gui":{"rotation":[35,126,-5],"translation":[0,2.75,0]},"fixed":{"rotation":[180,-90,180],"translation":[-0.5,2.25,0]}}} \ No newline at end of file +{"meta":{"format_version":"4.10","model_format":"java_block","box_uv":false},"name":"deserteagle","parent":"","ambientocclusion":true,"front_gui_light":false,"visible_box":[1,1,0],"variable_placeholders":"","variable_placeholder_buttons":[],"unhandled_root_fields":{},"resolution":{"width":32,"height":32},"elements":[{"name":"cube","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[6,0,9],"to":[9,8,12],"autouv":0,"color":0,"origin":[7,0,9],"faces":{"north":{"uv":[6,6,9,14],"texture":0},"east":{"uv":[9,0,12,8],"texture":0},"south":{"uv":[9,8,12,16],"texture":0},"west":{"uv":[12,0,15,8],"texture":0},"up":{"uv":[3,17,0,14],"texture":0},"down":{"uv":[6,14,3,17],"texture":0}},"type":"cube","uuid":"9432b403-a440-cc05-1548-00375ae0f564"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[6,5,1],"to":[9,8,9],"autouv":0,"color":0,"origin":[7,5,9],"faces":{"north":{"uv":[12,8,15,11],"texture":0},"east":{"uv":[2,18,10,21],"texture":0},"south":{"uv":[12,11,15,14],"texture":0},"west":{"uv":[0,3,8,6],"texture":0},"up":{"uv":[3,14,0,6],"texture":0},"down":{"uv":[6,6,3,14],"texture":0}},"type":"cube","uuid":"043bfd91-bb96-7d98-4df0-fb6a8121329f"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[7,5,12],"to":[8,7,13],"autouv":0,"color":6,"origin":[6,5,12],"faces":{"north":{"uv":[22,30,23,32],"texture":0},"east":{"uv":[8,29,9,31],"texture":0},"south":{"uv":[5,27,6,29],"texture":0},"west":{"uv":[9,25,10,27],"texture":0},"up":{"uv":[3,29,4,30],"texture":0},"down":{"uv":[10,29,11,30],"texture":0}},"type":"cube","uuid":"55146815-efc9-57ad-b33e-0e095e299858"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[7,3,8],"to":[8,5,9],"autouv":0,"color":6,"origin":[6,3,8],"faces":{"north":{"uv":[11,17,12,19],"texture":0},"east":{"uv":[13,30,14,32],"texture":0},"south":{"uv":[13,24,14,26],"texture":0},"west":{"uv":[17,24,18,26],"texture":0},"up":{"uv":[16,17,17,18],"texture":0},"down":{"uv":[7,16.75,8,17.75],"texture":0}},"type":"cube","uuid":"d0a54ad3-f649-c932-cbe8-a587020d27e5"}],"outliner":[{"name":"group","origin":[8,8,8],"color":0,"uuid":"f63ee920-90a3-3e94-9fa2-3d6f244a1751","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"selected":false,"children":["043bfd91-bb96-7d98-4df0-fb6a8121329f","9432b403-a440-cc05-1548-00375ae0f564","55146815-efc9-57ad-b33e-0e095e299858","d0a54ad3-f649-c932-cbe8-a587020d27e5"]}],"textures":[{"path":"C:\\Users\\5gi\\AppData\\Roaming\\ModrinthApp\\profiles\\Fabulously Optimized\\resourcepacks\\giGuns Pack Java\\assets\\minecraft\\textures\\item\\deserteagle.png","name":"deserteagle.png","folder":"item","namespace":"minecraft","id":"0","group":"","width":32,"height":32,"uv_width":32,"uv_height":32,"particle":true,"use_as_default":false,"layers_enabled":false,"sync_to_project":"","render_mode":"default","render_sides":"auto","pbr_channel":"color","frame_time":1,"frame_order_type":"loop","frame_order":"","frame_interpolate":false,"visible":true,"internal":true,"saved":true,"uuid":"00443fca-0043-fa91-ff59-fb4c130b7023","relative_path":"../assets/minecraft/textures/item/deserteagle.png","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAQhJREFUWEftlssNgzAMhuHeHbpAuk1myByeIzNkgO7QY3PpsTv0ThWpRA5yEtM4BakgIQEm9sfvBxkBYBoKBwCMuXeCrbSWY8s6nxcfAEEBpRSZJu/9b1LwPwD35ysW7uV8itfOObKgxVOwW4BcP4vPAazA43aNcbXWCQMADJ9Ttgu4AHhIcaZd6Z1kEuYAsAOJwsP+DoBEAdzvWGo8CbumYLcArZVe7IKS0RgzWWtjry/vJcCic87OaHMAiS9e+lilQFeAHs45Ppt/JpwgX3dBq3POehEFWrqDBVALULM3p6AlQC0NpAI9A2bnADZsBkAFnp/1gqoWIRU4/DckdsRB9SoAVUSSAG9Nb+UhRsq7nAAAAABJRU5ErkJggg=="}],"display":{"thirdperson_righthand":{"rotation":[0,-15.25,0],"translation":[1.25,3.5,-1.25]},"thirdperson_lefthand":{"translation":[-0.5,3.5,0]},"firstperson_righthand":{"translation":[9.5,6.25,0]},"firstperson_lefthand":{"translation":[0,2.75,0]},"ground":{"translation":[0,5.25,0]},"gui":{"rotation":[35,126,-5],"translation":[0,2.75,0]},"fixed":{"rotation":[180,-90,180],"translation":[-0.5,2.25,0]}}} \ No newline at end of file diff --git a/src/main/resources/TexturePack/giGuns Pack Java/bb/heavyammo.bbmodel b/src/main/resources/TexturePack/giGuns Pack Java/bb/heavyammo.bbmodel new file mode 100644 index 0000000..3b8629a --- /dev/null +++ b/src/main/resources/TexturePack/giGuns Pack Java/bb/heavyammo.bbmodel @@ -0,0 +1 @@ +{"meta":{"format_version":"4.10","model_format":"java_block","box_uv":false},"name":"heavyammo","parent":"","ambientocclusion":true,"front_gui_light":false,"visible_box":[1,1,0],"variable_placeholders":"","variable_placeholder_buttons":[],"unhandled_root_fields":{},"resolution":{"width":8,"height":8},"elements":[{"name":"cube","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[7.5,0,7.5],"to":[8.5,4.75,8.5],"autouv":0,"color":4,"origin":[6.5,0,7.5],"faces":{"north":{"uv":[0,0,1,5],"texture":0},"east":{"uv":[1,0,2,5],"texture":0},"south":{"uv":[2,0,3,5],"texture":0},"west":{"uv":[3,0,4,5],"texture":0},"up":{"uv":[5,1,4,0],"texture":0},"down":{"uv":[5,1,4,2],"texture":0}},"type":"cube","uuid":"a7ac3242-5933-1ae5-9b97-aec31485298c"}],"outliner":["a7ac3242-5933-1ae5-9b97-aec31485298c"],"textures":[{"path":"C:\\Users\\5gi\\AppData\\Roaming\\ModrinthApp\\profiles\\Fabulously Optimized\\resourcepacks\\giGuns Pack Java\\assets\\minecraft\\textures\\item\\heavyammo.png","name":"heavyammo.png","folder":"item","namespace":"minecraft","id":"0","group":"","width":16,"height":16,"uv_width":8,"uv_height":8,"particle":true,"use_as_default":false,"layers_enabled":false,"sync_to_project":"","render_mode":"default","render_sides":"auto","pbr_channel":"color","frame_time":1,"frame_order_type":"loop","frame_order":"","frame_interpolate":false,"visible":true,"internal":true,"saved":true,"uuid":"acef8780-5658-f1f7-d39e-f1e86c54c6fd","relative_path":"../assets/minecraft/textures/item/heavyammo.png","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAEVJREFUOE9j7Onp+c9ABCgpKWHEpoyRYgM+b2IgygW8fgzYXUBzA3DZDAsPRkIuGDWAgYFgGBCRCPEqwZo4SDF01AAGBgCJSiARRsjgsQAAAABJRU5ErkJggg=="}],"display":{"thirdperson_righthand":{"translation":[0,8,0]},"thirdperson_lefthand":{"translation":[0,7.5,0]},"firstperson_righthand":{"translation":[0,7.5,2.25]},"firstperson_lefthand":{"translation":[3.25,6.5,0]},"ground":{"translation":[0,5,0]},"gui":{"translation":[0,13.5,0],"scale":[2.5,2.5,2.5]},"fixed":{"translation":[0,13.5,0],"scale":[2.5,2.5,2.5]}}} \ No newline at end of file diff --git a/src/main/resources/TexturePack/giGuns Pack Java/bb/m1bazooka.bbmodel b/src/main/resources/TexturePack/giGuns Pack Java/bb/m1bazooka.bbmodel new file mode 100644 index 0000000..d05e60e --- /dev/null +++ b/src/main/resources/TexturePack/giGuns Pack Java/bb/m1bazooka.bbmodel @@ -0,0 +1 @@ +{"meta":{"format_version":"4.10","model_format":"java_block","box_uv":false},"name":"m1bazooka","parent":"","ambientocclusion":true,"front_gui_light":false,"visible_box":[1,1,0],"variable_placeholders":"","variable_placeholder_buttons":[],"unhandled_root_fields":{},"resolution":{"width":64,"height":64},"elements":[{"name":"cube","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[7,3,-8],"to":[10,6,23],"autouv":0,"color":8,"origin":[7,3,7],"faces":{"north":{"uv":[10,11,13,14],"texture":0},"east":{"uv":[0,0,31,3],"texture":0},"south":{"uv":[12,6,15,9],"texture":0},"west":{"uv":[0,3,31,6],"texture":0},"up":{"uv":[3,37,0,6],"texture":0},"down":{"uv":[6,6,3,37],"texture":0}},"type":"cube","uuid":"86311147-e2b4-fbf8-bfd5-6cd90189acdc"},{"name":"trigger","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[8,1.75,-3.75],"to":[9,3,-3.5],"autouv":0,"color":6,"rotation":[22.5,0,0],"origin":[8,1,-3],"faces":{"north":{"uv":[15,6,16,7],"texture":0},"east":{"uv":[15,7,16,8],"texture":0},"south":{"uv":[15,8,16,9],"texture":0},"west":{"uv":[15,9,16,10],"texture":0},"up":{"uv":[16,11,15,10],"texture":0},"down":{"uv":[16,11,15,12],"texture":0}},"type":"cube","uuid":"dcc7e1f4-9a34-2e63-f76a-b6ee3228e137"},{"name":"grip","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[8,-1,7],"to":[9,4,10],"autouv":0,"color":7,"rotation":[-22.5,0,0],"origin":[8,2,8],"faces":{"north":{"uv":[10,14,11,19],"texture":0},"east":{"uv":[6,6,9,11],"texture":0},"south":{"uv":[11,14,12,19],"texture":0},"west":{"uv":[9,6,12,11],"texture":0},"up":{"uv":[13,17,12,14],"texture":0},"down":{"uv":[14,14,13,17],"texture":0}},"type":"cube","uuid":"4f9f0937-5261-a615-73c3-382dd5e6c83e"},{"name":"grip2","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[8,-1,-2],"to":[9,4,0],"autouv":0,"color":7,"rotation":[-22.5,0,0],"origin":[8,2,-1],"faces":{"north":{"uv":[13,9,14,14],"texture":0},"east":{"uv":[6,11,8,16],"texture":0},"south":{"uv":[14,9,15,14],"texture":0},"west":{"uv":[8,11,10,16],"texture":0},"up":{"uv":[13,11,12,9],"texture":0},"down":{"uv":[15,14,14,16],"texture":0}},"type":"cube","uuid":"fcf2de8a-9554-91be-bfe3-c1e17df90922"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[6.5,3,-8],"to":[7,7,-7],"autouv":0,"color":6,"origin":[5.5,4,-8],"faces":{"north":{"uv":[28,27,28.5,31],"texture":0},"east":{"uv":[7,17,8,21],"texture":0},"south":{"uv":[24,34,24.5,38],"texture":0},"west":{"uv":[11,23,12,27],"texture":0},"up":{"uv":[27,18,27.5,19],"texture":0},"down":{"uv":[22,26,22.5,27],"texture":0}},"type":"cube","uuid":"41f79c5c-7065-a978-8ecb-ea2d4bee8049"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[6.5,3,3],"to":[7,7,4],"autouv":0,"color":6,"origin":[5.5,4,3],"faces":{"north":{"uv":[16,14,16.5,18],"texture":0},"east":{"uv":[13,18,14,22],"texture":0},"south":{"uv":[15,18,15.5,22],"texture":0},"west":{"uv":[8,19,9,23],"texture":0},"up":{"uv":[14,28,14.5,29],"texture":0},"down":{"uv":[17,19,17.5,20],"texture":0}},"type":"cube","uuid":"7069999e-99c3-14b7-7bd6-3f3cd600faa3"}],"outliner":[{"name":"group","origin":[8,2,8],"color":0,"uuid":"2deeb729-5933-98ee-de04-a0f6893e0830","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"selected":false,"children":["dcc7e1f4-9a34-2e63-f76a-b6ee3228e137","fcf2de8a-9554-91be-bfe3-c1e17df90922","4f9f0937-5261-a615-73c3-382dd5e6c83e","86311147-e2b4-fbf8-bfd5-6cd90189acdc","41f79c5c-7065-a978-8ecb-ea2d4bee8049","7069999e-99c3-14b7-7bd6-3f3cd600faa3"]}],"textures":[{"path":"C:\\Users\\5gi\\AppData\\Roaming\\ModrinthApp\\profiles\\Fabulously Optimized\\resourcepacks\\giGuns Pack Java\\assets\\minecraft\\textures\\item\\m1bazooka.png","name":"m1bazooka.png","folder":"item","namespace":"minecraft","id":"0","group":"","width":64,"height":64,"uv_width":64,"uv_height":64,"particle":true,"use_as_default":false,"layers_enabled":false,"sync_to_project":"","render_mode":"default","render_sides":"auto","pbr_channel":"color","frame_time":1,"frame_order_type":"loop","frame_order":"","frame_interpolate":false,"visible":true,"internal":true,"saved":true,"uuid":"a0bf46b2-32fb-8b00-fb64-612202f16ff0","relative_path":"../assets/minecraft/textures/item/m1bazooka.png","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAcFJREFUeF7tmT1uwkAQRtcHyBmo0kEb5RAUkSgsIvkmKXORyBKIAinHQClBVK44Q5p0jky0zsqyYX9mvTvej8pC3vHsmzdjY7KX91UtAn0+3/ZZoEu3l80AAAagBTADQg2iqIfgw27fy+U7X7Xfnz+Ooqqq4JPcpYCDdwEAgAH9LZBvL2K3nl2tO/w8ptcCKoDmeDmfpTEDytP/qCkWf8dJGdAHoDwJ1tVviqh9F0gegGwAdQY0Bjy9PtdfmwNbE7QNSA5A9zG1WIjrbwZpgOz/yRrQAFA3JwF0B9+kAajP2CoAuWnTzZue7/KMr7t2cAbIFriVtC0I3eTGOI8EwBiJ+roGAAy9FNVpAV9VGTPuXQPUZGIcYq6wAOBeC8AAhYBJC5ic66qxy3qjFnC5kFwbGxhrALYbsV1HAb8vhjUA24QAILL3B6MbYGuOr3UAYPIc4KsKIeN6NyC2odeFDQC+WyB6A3z3X/IAfAN2jc/2Dw3Xjcv1AEBFkmscGMC1clR5wwAqklzjwACulaPKGwZQkeQaBwZwrRxV3jCAiiTXODCAa+Wo8oYBVCS5xoEBXCtHlTcMoCLJNQ4M4Fo5qrx/Ae8wSlCz0qeVAAAAAElFTkSuQmCC"}],"display":{"thirdperson_righthand":{"rotation":[0,-9.25,0],"translation":[-0.25,6.25,8.5]},"thirdperson_lefthand":{"translation":[0,5.25,10.75]},"firstperson_righthand":{"translation":[10.5,7,8]},"gui":{"rotation":[20,128,3],"translation":[0.5,1.25,0],"scale":[0.6,0.6,0.6]}}} \ No newline at end of file diff --git a/src/main/resources/TexturePack/giGuns Pack Java/bb/m4a1s.bbmodel b/src/main/resources/TexturePack/giGuns Pack Java/bb/m4a1s.bbmodel new file mode 100644 index 0000000..db792a9 --- /dev/null +++ b/src/main/resources/TexturePack/giGuns Pack Java/bb/m4a1s.bbmodel @@ -0,0 +1 @@ +{"meta":{"format_version":"4.10","model_format":"java_block","box_uv":false},"name":"m4a1s","parent":"","ambientocclusion":true,"front_gui_light":false,"visible_box":[1,1,0],"variable_placeholders":"","variable_placeholder_buttons":[],"unhandled_root_fields":{},"resolution":{"width":32,"height":32},"elements":[{"name":"sight","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[8.25,6.25,9],"to":[8.75,6.75,14],"autouv":0,"color":9,"origin":[7.25,6.25,0],"faces":{"north":{"uv":[13,9,14,10],"texture":0},"east":{"uv":[16,14,21,15],"texture":0},"south":{"uv":[19,18,20,19],"texture":0},"west":{"uv":[16,15,21,16],"texture":0},"up":{"uv":[11,21,10,16],"texture":0},"down":{"uv":[12,16,11,21],"texture":0}},"type":"cube","uuid":"d50e8b98-88a7-f7d4-797e-c6cdf0c477a6"},{"name":"sightleg1","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[8.25,5.25,9],"to":[8.75,6.75,9.5],"autouv":0,"color":5,"origin":[7.25,6.25,0],"faces":{"north":{"uv":[18,2,19,4],"texture":0},"east":{"uv":[18,4,19,6],"texture":0},"south":{"uv":[5,18,6,20],"texture":0},"west":{"uv":[18,17,19,19],"texture":0},"up":{"uv":[21,9,20,8],"texture":0},"down":{"uv":[10,20,9,21],"texture":0}},"type":"cube","uuid":"cd273f86-a2e0-0f35-9bff-2ab3c476b4ab"},{"name":"sightleg1","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[8.25,4.95,0.5],"to":[8.75,6.75,1],"autouv":0,"color":4,"origin":[7.25,6.25,-8.5],"faces":{"north":{"uv":[2,19,3,21],"texture":0},"east":{"uv":[19,2,20,4],"texture":0},"south":{"uv":[3,19,4,21],"texture":0},"west":{"uv":[4,19,5,21],"texture":0},"up":{"uv":[21,10,20,9],"texture":0},"down":{"uv":[21,10,20,11],"texture":0}},"type":"cube","uuid":"3e08a1f6-e4fa-0f80-cf61-a3e746e0c2f4"},{"name":"sightleg1","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[8.25,4.84571,1.22929],"to":[8.75,6.94571,1.72929],"autouv":0,"color":7,"rotation":[-45,0,0],"origin":[8.5,5.875,1.55],"faces":{"north":{"uv":[19,4,20,6],"texture":0},"east":{"uv":[19,6,20,8],"texture":0},"south":{"uv":[7,19,8,21],"texture":0},"west":{"uv":[8,19,9,21],"texture":0},"up":{"uv":[21,12,20,11],"texture":0},"down":{"uv":[21,12,20,13],"texture":0}},"type":"cube","uuid":"b19f2747-e5ee-cbe9-7e1c-62f5dbffdac9"},{"name":"sightleg2","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[8.25,5.25,13.5],"to":[8.75,6.75,14],"autouv":0,"color":9,"origin":[7.25,6.25,4.5],"faces":{"north":{"uv":[19,8,20,10],"texture":0},"east":{"uv":[19,10,20,12],"texture":0},"south":{"uv":[16,19,17,21],"texture":0},"west":{"uv":[17,19,18,21],"texture":0},"up":{"uv":[21,14,20,13],"texture":0},"down":{"uv":[15,20,14,21],"texture":0}},"type":"cube","uuid":"d7b56928-09a6-0293-b4b7-ce39219b5c5b"},{"name":"barrel","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[8,4,0],"to":[9,5,16.05],"autouv":0,"color":8,"origin":[7,4,0],"faces":{"north":{"uv":[15,20,16,21],"texture":0},"east":{"uv":[0,0,16,1],"texture":0},"south":{"uv":[18,20,19,21],"texture":0},"west":{"uv":[0,1,16,2],"texture":0},"up":{"uv":[1,18,0,2],"texture":0},"down":{"uv":[2,2,1,18],"texture":0}},"type":"cube","uuid":"86d2c421-b112-2c4d-7594-855281a11cbf"},{"name":"supressor","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[7.75,3.75,-7],"to":[9.25,5.25,0],"autouv":0,"color":6,"origin":[7.25,3.75,-16],"faces":{"north":{"uv":[17,8,19,10],"texture":0},"east":{"uv":[6,6,13,8],"texture":0},"south":{"uv":[17,10,19,12],"texture":0},"west":{"uv":[6,8,13,10],"texture":0},"up":{"uv":[8,17,6,10],"texture":0},"down":{"uv":[10,10,8,17],"texture":0}},"type":"cube","uuid":"21816f59-1ee4-de60-8850-d41f93eb7e21"},{"name":"chamber","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[7.65,3.6,9],"to":[9.4,5.35,14],"autouv":0,"color":9,"origin":[7.4,3.6,-2],"faces":{"north":{"uv":[16,17,18,19],"texture":0},"east":{"uv":[9,2,14,4],"texture":0},"south":{"uv":[0,18,2,20],"texture":0},"west":{"uv":[9,4,14,6],"texture":0},"up":{"uv":[4,18,2,13],"texture":0},"down":{"uv":[6,13,4,18],"texture":0}},"type":"cube","uuid":"2975fd2b-5d7f-8dac-e22e-aafc8b5dc881"},{"name":"trigger","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[8.1,2.1,11.3],"to":[8.9,3,11.55],"autouv":0,"color":0,"rotation":[22.5,0,0],"origin":[8,1,12.05],"faces":{"north":{"uv":[20,18,21,19],"texture":0},"east":{"uv":[19,20,20,21],"texture":0},"south":{"uv":[20,19,21,20],"texture":0},"west":{"uv":[20,20,21,21],"texture":0},"up":{"uv":[22,2,21,1],"texture":0},"down":{"uv":[3,21,2,22],"texture":0}},"type":"cube","uuid":"9ccc7336-1181-0efe-ba92-2b61e0f60e3a"},{"name":"magrecept","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[7.9,2.9,9],"to":[9.15,3.65,13.95],"autouv":0,"color":8,"origin":[7.4,1.9,-2],"faces":{"north":{"uv":[21,2,22,3],"texture":0},"east":{"uv":[16,16,21,17],"texture":0},"south":{"uv":[3,21,4,22],"texture":0},"west":{"uv":[17,0,22,1],"texture":0},"up":{"uv":[13,21,12,16],"texture":0},"down":{"uv":[14,16,13,21],"texture":0}},"type":"cube","uuid":"d1810b1b-1dca-64f9-0d31-1036b04d1fa9"},{"name":"foregrip","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[7.5,3.5,2],"to":[9.5,5.5,9],"autouv":0,"color":7,"origin":[8.5,4.5,5.5],"faces":{"north":{"uv":[17,6,19,8],"texture":0},"east":{"uv":[2,2,9,4],"texture":0},"south":{"uv":[7,17,9,19],"texture":0},"west":{"uv":[2,4,9,6],"texture":0},"up":{"uv":[4,13,2,6],"texture":0},"down":{"uv":[6,6,4,13],"texture":0}},"type":"cube","uuid":"a8b1015b-90f5-cba1-8f57-c0b013016148"},{"name":"stockend","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[7.9,2.2,18.998],"to":[9.1,3.45,22.198],"autouv":0,"color":4,"rotation":[22.5,0,0],"origin":[8,4.15,23.15],"faces":{"north":{"uv":[21,3,22,4],"texture":0},"east":{"uv":[18,1,21,2],"texture":0},"south":{"uv":[4,21,5,22],"texture":0},"west":{"uv":[2,18,5,19],"texture":0},"up":{"uv":[14,9,13,6],"texture":0},"down":{"uv":[10,17,9,20],"texture":0}},"type":"cube","uuid":"db1d8c05-172d-52f7-0a96-f9b61632d9f3"},{"name":"stock","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[7.9,3.85,16],"to":[9.1,5.1,22],"autouv":0,"color":3,"origin":[8,4.85,22],"faces":{"north":{"uv":[21,4,22,5],"texture":0},"east":{"uv":[14,12,20,13],"texture":0},"south":{"uv":[21,5,22,6],"texture":0},"west":{"uv":[14,13,20,14],"texture":0},"up":{"uv":[15,20,14,14],"texture":0},"down":{"uv":[16,14,15,20],"texture":0}},"type":"cube","uuid":"b5381530-c416-9f17-d903-ac524cf426b0"},{"name":"sight","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[8.05,1.85,11.55],"to":[8.95,2.05,13.25],"autouv":0,"color":6,"origin":[7.25,1.55,0],"faces":{"north":{"uv":[21,6,22,7],"texture":0},"east":{"uv":[19,17,21,18],"texture":0},"south":{"uv":[7,21,8,22],"texture":0},"west":{"uv":[18,19,20,20],"texture":0},"up":{"uv":[1,22,0,20],"texture":0},"down":{"uv":[2,20,1,22],"texture":0}},"type":"cube","uuid":"504890a5-8ac7-c2dc-3e85-1ff18e548823"},{"name":"sight","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[8.05,1.85,11.35],"to":[8.95,3.3,11.6],"autouv":0,"color":2,"origin":[7.25,1.55,0.1],"faces":{"north":{"uv":[21,7,22,8],"texture":0},"east":{"uv":[8,21,9,22],"texture":0},"south":{"uv":[21,8,22,9],"texture":0},"west":{"uv":[9,21,10,22],"texture":0},"up":{"uv":[22,10,21,9],"texture":0},"down":{"uv":[11,21,10,22],"texture":0}},"type":"cube","uuid":"4ba80552-ba9b-467b-450f-daf83cffbb41"},{"name":"mag","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[8,-1.5,9.25],"to":[9,4.5,11.25],"autouv":0,"color":7,"rotation":[22.5,0,0],"origin":[8,2.5,10.25],"faces":{"north":{"uv":[16,0,17,6],"texture":0},"east":{"uv":[10,10,12,16],"texture":0},"south":{"uv":[16,6,17,12],"texture":0},"west":{"uv":[12,10,14,16],"texture":0},"up":{"uv":[21,4,20,2],"texture":0},"down":{"uv":[21,4,20,6],"texture":0}},"type":"cube","uuid":"d984adf6-25eb-2e71-29f4-198c2de88ee7"},{"name":"grip","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[8,-0.5,12.75],"to":[9,4,14.5],"autouv":0,"color":3,"rotation":[-22.5,0,0],"origin":[8,2,13.75],"faces":{"north":{"uv":[17,1,18,6],"texture":0},"east":{"uv":[14,2,16,7],"texture":0},"south":{"uv":[6,17,7,22],"texture":0},"west":{"uv":[14,7,16,12],"texture":0},"up":{"uv":[6,22,5,20],"texture":0},"down":{"uv":[21,6,20,8],"texture":0}},"type":"cube","uuid":"4d880529-0682-2754-e5db-6ef26c728f6c"}],"outliner":[{"name":"group","origin":[8,8,8],"color":0,"uuid":"4a928464-2802-7bcd-09d3-273eb3e4e0da","export":true,"mirror_uv":false,"isOpen":false,"locked":false,"visibility":true,"autouv":0,"selected":false,"children":["d50e8b98-88a7-f7d4-797e-c6cdf0c477a6","cd273f86-a2e0-0f35-9bff-2ab3c476b4ab","3e08a1f6-e4fa-0f80-cf61-a3e746e0c2f4","b19f2747-e5ee-cbe9-7e1c-62f5dbffdac9","d7b56928-09a6-0293-b4b7-ce39219b5c5b","86d2c421-b112-2c4d-7594-855281a11cbf","21816f59-1ee4-de60-8850-d41f93eb7e21","2975fd2b-5d7f-8dac-e22e-aafc8b5dc881","9ccc7336-1181-0efe-ba92-2b61e0f60e3a","d1810b1b-1dca-64f9-0d31-1036b04d1fa9","a8b1015b-90f5-cba1-8f57-c0b013016148","db1d8c05-172d-52f7-0a96-f9b61632d9f3","b5381530-c416-9f17-d903-ac524cf426b0","504890a5-8ac7-c2dc-3e85-1ff18e548823","4ba80552-ba9b-467b-450f-daf83cffbb41","d984adf6-25eb-2e71-29f4-198c2de88ee7","4d880529-0682-2754-e5db-6ef26c728f6c"]}],"textures":[{"path":"C:\\Users\\5gi\\AppData\\Roaming\\ModrinthApp\\profiles\\Fabulously Optimized\\resourcepacks\\giGuns Pack Java\\assets\\minecraft\\textures\\item\\m4a1s.png","name":"m4a1s.png","folder":"item","namespace":"minecraft","id":"0","group":"","width":64,"height":64,"uv_width":32,"uv_height":32,"particle":true,"use_as_default":false,"layers_enabled":false,"sync_to_project":"","render_mode":"default","render_sides":"auto","pbr_channel":"color","frame_time":1,"frame_order_type":"loop","frame_order":"","frame_interpolate":false,"visible":true,"internal":true,"saved":true,"uuid":"3b3b67eb-15ca-01ce-7165-5f1c0a7fee83","relative_path":"../assets/minecraft/textures/item/m4a1s.png","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAb9JREFUeF7tmmEOgyAMhecFvAX3PxAn8K8X2OIyFsLGWmtbqXv+WRawlu89ChKnlNL9FujKOU+a6U4AMJgD1nW9zfP8FrkoXoS6vANaAK3dXQCUJLi/mnOSigUAHkWQqzxlV0pNSTsc4OGATZlRXeDigJEAbEJsV1ka/xZAqRfLsvjsBL2nQKt0WyBLuxsASYW2uMd9CpQH9gZTb1MlA27jU/HcAUgGZXmPOwBrB+yF5Q5gb4Le/c2XwTMdkHN+8kwpdbmaA/BWtH7eEADOdAAH/qUd8AuA9sDLsz7OBEd1gBsAjg2pPt/OCY6eHbgB0HBAu3b3/tdveRRUNwBUIpz2XwCkTgAA5ZOgbhHkKEz1oaYAdX9pr91yGQdwB7/1uyQA6uCjB+gvHdBsk1WPwkLUAACoCISaAnsKHbcvAIy+D5BWdziASeDUKSDdvzPHxuoGAKPXAJaMBzqd6oADeavdCgCYArofSLLfBaTru5Vl1ebUKxD5paj0cCMMAG2i0eKZvGNHggAAkdSyyBUOsKAaKSYcEEkti1zhAAuqkWLCAZHUssgVDrCgGikmHBBJLYtc4QALqpFiwgGR1LLI9QGBUd1QDjUc2gAAAABJRU5ErkJggg=="}],"display":{"thirdperson_righthand":{"rotation":[0,-12,0],"translation":[0.5,5.25,-4.5]},"thirdperson_lefthand":{"translation":[0.25,5.5,-4.5]},"firstperson_righthand":{"rotation":[0,-8,0],"translation":[9,7.75,-0.5]},"firstperson_lefthand":{"rotation":[0,-20,0],"translation":[11.5,5,-3.5]},"gui":{"rotation":[19,116,3],"translation":[0.5,1.5,0],"scale":[0.58,0.58,0.58]}}} \ No newline at end of file diff --git a/src/main/resources/TexturePack/giGuns Pack Java/bb/pistolammo.bbmodel b/src/main/resources/TexturePack/giGuns Pack Java/bb/pistolammo.bbmodel new file mode 100644 index 0000000..815fa0a --- /dev/null +++ b/src/main/resources/TexturePack/giGuns Pack Java/bb/pistolammo.bbmodel @@ -0,0 +1 @@ +{"meta":{"format_version":"4.10","model_format":"java_block","box_uv":false},"name":"pistolammo","parent":"","ambientocclusion":true,"front_gui_light":false,"visible_box":[1,1,0],"variable_placeholders":"","variable_placeholder_buttons":[],"unhandled_root_fields":{},"resolution":{"width":16,"height":16},"elements":[{"name":"cube","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[7.5,0,7.5],"to":[8.5,2,8.5],"autouv":0,"color":4,"origin":[6.5,0,7.5],"faces":{"north":{"uv":[0,0,1,4],"texture":0},"east":{"uv":[1,0,2,4],"texture":0},"south":{"uv":[2,0,3,4],"texture":0},"west":{"uv":[3,0,4,4],"texture":0},"up":{"uv":[4,6,3,5],"texture":0},"down":{"uv":[6,3,5,4],"texture":0}},"type":"cube","uuid":"33c2a1af-8359-34d7-ad8e-b8d1c92e75df"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[5.9,0,7],"to":[6.9,2,8],"autouv":0,"color":4,"origin":[4.9,0,7],"faces":{"north":{"uv":[0,4,1,8],"texture":0},"east":{"uv":[4,0,5,4],"texture":0},"south":{"uv":[1,4,2,8],"texture":0},"west":{"uv":[2,4,3,8],"texture":0},"up":{"uv":[5,6,4,5],"texture":0},"down":{"uv":[6,5,5,6],"texture":0}},"type":"cube","uuid":"73e119ea-c51a-8876-1f62-4fb5cfbbb2ae"}],"outliner":[{"name":"group","origin":[8,8,8],"color":0,"uuid":"08a84bf3-bbb3-0b04-a525-457a95f0e7f8","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"selected":false,"children":["33c2a1af-8359-34d7-ad8e-b8d1c92e75df","73e119ea-c51a-8876-1f62-4fb5cfbbb2ae"]}],"textures":[{"path":"C:\\Users\\5gi\\AppData\\Roaming\\ModrinthApp\\profiles\\Fabulously Optimized\\resourcepacks\\giGuns Pack Java\\assets\\minecraft\\textures\\item\\pistolammo.png","name":"pistolammo.png","folder":"item","namespace":"minecraft","id":"0","group":"","width":16,"height":16,"uv_width":16,"uv_height":16,"particle":true,"use_as_default":false,"layers_enabled":false,"sync_to_project":"","render_mode":"default","render_sides":"auto","pbr_channel":"color","frame_time":1,"frame_order_type":"loop","frame_order":"","frame_interpolate":false,"visible":true,"internal":true,"saved":true,"uuid":"a1b80afd-b8b3-328c-530d-65de446a4e5c","relative_path":"../assets/minecraft/textures/item/pistolammo.png","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAFZJREFUOE9j/L8s9j8DGvjCsxhFhNePgRFdDYzP+HkTA4YB6IoHzgB8NsO9gBwGpPgdaxjwfIkFi4MMIsZ2kFqMQCRWI1YXkKoZ7AJc8Uus+KgBwyIQAfgvHxHPpD86AAAAAElFTkSuQmCC"}],"display":{"thirdperson_righthand":{"translation":[0.75,8.25,0.75]},"thirdperson_lefthand":{"translation":[-0.75,7.75,0]},"firstperson_righthand":{"translation":[0,10.25,3.5]},"firstperson_lefthand":{"translation":[0,9.5,2.5]},"ground":{"translation":[1,6.75,0]},"gui":{"translation":[2.25,21,0],"scale":[3,3,3]},"fixed":{"translation":[2.25,16.75,0],"scale":[2.5,2.5,2.5]}}} \ No newline at end of file diff --git a/src/main/resources/TexturePack/giGuns Pack Java/bb/rifleammo.bbmodel b/src/main/resources/TexturePack/giGuns Pack Java/bb/rifleammo.bbmodel new file mode 100644 index 0000000..dff9be9 --- /dev/null +++ b/src/main/resources/TexturePack/giGuns Pack Java/bb/rifleammo.bbmodel @@ -0,0 +1 @@ +{"meta":{"format_version":"4.10","model_format":"java_block","box_uv":false},"name":"rifleammo","parent":"","ambientocclusion":true,"front_gui_light":false,"visible_box":[1,1,0],"variable_placeholders":"","variable_placeholder_buttons":[],"unhandled_root_fields":{},"resolution":{"width":8,"height":8},"elements":[{"name":"cube","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[7.5,0,7.5],"to":[8.5,2.75,8.5],"autouv":0,"color":4,"origin":[6.5,0,7.5],"faces":{"north":{"uv":[3,0,4,3],"texture":0},"east":{"uv":[1,3,2,6],"texture":0},"south":{"uv":[2,3,3,6],"texture":0},"west":{"uv":[3,3,4,6],"texture":0},"up":{"uv":[2,7,1,6],"texture":0},"down":{"uv":[7,1,6,2],"texture":0}},"type":"cube","uuid":"30784087-ed6c-6815-008d-af10525916a2"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[6,0,7.8],"to":[7,2.75,8.8],"autouv":0,"color":4,"origin":[5,0,7.8],"faces":{"north":{"uv":[4,0,5,3],"texture":0},"east":{"uv":[4,3,5,6],"texture":0},"south":{"uv":[5,0,6,3],"texture":0},"west":{"uv":[5,3,6,6],"texture":0},"up":{"uv":[3,7,2,6],"texture":0},"down":{"uv":[7,2,6,3],"texture":0}},"type":"cube","uuid":"029d3643-1609-f9ac-a7d9-214253a59330"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[9,0,7.2],"to":[10,2.75,8.2],"autouv":0,"color":4,"origin":[8,0,7.2],"faces":{"north":{"uv":[0,0,1,3],"texture":0},"east":{"uv":[1,0,2,3],"texture":0},"south":{"uv":[2,0,3,3],"texture":0},"west":{"uv":[0,3,1,6],"texture":0},"up":{"uv":[1,7,0,6],"texture":0},"down":{"uv":[7,0,6,1],"texture":0}},"type":"cube","uuid":"b5847878-89e6-bea9-9486-3d6bff8c1c70"}],"outliner":[{"name":"group","origin":[5,0,7.8],"color":0,"uuid":"ddb56f5f-bf6d-511d-06c4-a13a64d50118","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"selected":false,"children":["b5847878-89e6-bea9-9486-3d6bff8c1c70","30784087-ed6c-6815-008d-af10525916a2","029d3643-1609-f9ac-a7d9-214253a59330"]}],"textures":[{"path":"C:\\Users\\5gi\\AppData\\Roaming\\ModrinthApp\\profiles\\Fabulously Optimized\\resourcepacks\\giGuns Pack Java\\assets\\minecraft\\textures\\item\\rifleammo.png","name":"rifleammo.png","folder":"item","namespace":"minecraft","id":"0","group":"","width":16,"height":16,"uv_width":8,"uv_height":8,"particle":true,"use_as_default":false,"layers_enabled":false,"sync_to_project":"","render_mode":"default","render_sides":"auto","pbr_channel":"color","frame_time":1,"frame_order_type":"loop","frame_order":"","frame_interpolate":false,"visible":true,"internal":true,"saved":true,"uuid":"430aac0c-42cc-794e-6f99-4b0fae7f1ff3","relative_path":"../assets/minecraft/textures/item/rifleammo.png","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAGJJREFUOE9j/L8s9j8DCeALz2Kwal4/BkYQzUixAZ83MZDkAphj4S4YBgaQGoiMUYvBoQ8DjKAw4PkSS3REYjWAaN1I8Y/igiFuAK5YQA8sXN7EmReINoCUAMSmFiVRkGMYALYJMxFaW8NnAAAAAElFTkSuQmCC"}],"display":{"thirdperson_righthand":{"translation":[0,7.75,0]},"thirdperson_lefthand":{"translation":[0,8,0]},"firstperson_righthand":{"translation":[0,9.75,2.75]},"firstperson_lefthand":{"translation":[0,9,1.25]},"ground":{"translation":[0,5.5,0]},"gui":{"translation":[0,16,0],"scale":[2.5,2.5,2.5]},"fixed":{"translation":[0,19.75,0],"scale":[3,3,3]}}} \ No newline at end of file diff --git a/src/main/resources/TexturePack/giGuns.zip b/src/main/resources/TexturePack/giGuns.zip new file mode 100644 index 0000000..b0eebec Binary files /dev/null and b/src/main/resources/TexturePack/giGuns.zip differ diff --git a/src/main/resources/plugin.yml b/src/main/resources/plugin.yml index e8c2bed..0db581b 100644 --- a/src/main/resources/plugin.yml +++ b/src/main/resources/plugin.yml @@ -4,4 +4,6 @@ main: com.s5gi.giGuns.giGuns api-version: '1.21' commands: getgun: - description: gun \ No newline at end of file + description: gun + getammo: + description: ammo \ No newline at end of file