From f6306c568596c296614a2218ed1a9d2d3e7c7c2b Mon Sep 17 00:00:00 2001 From: elite Date: Thu, 6 Apr 2017 22:19:45 -0500 Subject: [PATCH] "Positioning musket properly while shooting" --- 1.11/To-Dos | 6 +- .../forgecraft/items/weapons/Musket.java | 83 +++- .../forgecraft/models/item/ironsword.json | 75 ++-- .../forgecraft/models/item/ironsword2.json | 75 ++-- .../models/item/matchlock_musket.json | 3 +- .../models/item/matchlock_musket_1.json | 8 + .../models/item/matchlock_musket_model.json | 4 +- .../item/matchlock_musket_model_delete.json | 372 ++++++++++++++++++ .../item/matchlock_musket_model_delete2.json | 372 ++++++++++++++++++ .../item/matchlock_musket_model_use.json | 372 ++++++++++++++++++ 10 files changed, 1278 insertions(+), 92 deletions(-) create mode 100644 1.11/src/main/resources/assets/forgecraft/models/item/matchlock_musket_1.json create mode 100644 1.11/src/main/resources/assets/forgecraft/models/item/matchlock_musket_model_delete.json create mode 100644 1.11/src/main/resources/assets/forgecraft/models/item/matchlock_musket_model_delete2.json create mode 100644 1.11/src/main/resources/assets/forgecraft/models/item/matchlock_musket_model_use.json diff --git a/1.11/To-Dos b/1.11/To-Dos index 6ea1a4b2..50fb8ba0 100644 --- a/1.11/To-Dos +++ b/1.11/To-Dos @@ -12,9 +12,9 @@ To-Dos - [ ] Create powder charge item (copper, charcoal, gunpowder) - [ ] Create musket round item (lead or iron nugget) - [ ] Create wadding item (paper) -- [ ] Create soaked wick item (cordage, bucket of water, gunpowder) -- [ ] Create dried wick item (soaked wick on drying rack) -- [ ] Create lit wick item (dried wick and firebow/torch/flint&steel) +- [ ] Create soaked slow match item (cordage, bucket of water, gunpowder) +- [ ] Create dried slow match (soaked wick on drying rack) +- [ ] Create lit slow match (dried slow match and firebow/torch/flint&steel) - [ ] Create barrel item - [ ] Create stock item - [ ] Create lock assembly item diff --git a/1.11/src/main/java/nmd/primal/forgecraft/items/weapons/Musket.java b/1.11/src/main/java/nmd/primal/forgecraft/items/weapons/Musket.java index 7a0a82cb..c1b41dd3 100644 --- a/1.11/src/main/java/nmd/primal/forgecraft/items/weapons/Musket.java +++ b/1.11/src/main/java/nmd/primal/forgecraft/items/weapons/Musket.java @@ -3,9 +3,11 @@ package nmd.primal.forgecraft.items.weapons; import net.minecraft.entity.EntityLivingBase; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.init.SoundEvents; +import net.minecraft.item.EnumAction; import net.minecraft.item.IItemPropertyGetter; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; +import net.minecraft.nbt.NBTTagCompound; import net.minecraft.stats.StatList; import net.minecraft.util.*; import net.minecraft.world.World; @@ -33,34 +35,91 @@ public class Musket extends BaseItem{ this.addPropertyOverride(new ResourceLocation("type"), new IItemPropertyGetter() { @SideOnly(Side.CLIENT) public float apply(ItemStack item, @Nullable World worldIn, @Nullable EntityLivingBase entityIn) { - return 0.0f; + if(item.hasTagCompound()){ + if ( item.getTagCompound().getBoolean("use") == true) { + return 0.1f; + } else return 0.0f; + } else return 0.0f; } }); } // Temporary onItemRightClick method @Override - public ActionResult onItemRightClick(World world, EntityPlayer player, EnumHand hand) + public void onPlayerStoppedUsing(ItemStack stack, World world, EntityLivingBase entityLiving, int timeLeft) { - ItemStack stack = player.getHeldItem(hand); - /* - if (!player.capabilities.isCreativeMode) - { - stack.shrink(1); + System.out.println("Stopped Using"); + EntityPlayer player = (EntityPlayer) entityLiving; + System.out.println(player.getItemInUseCount()); + + + //if(player.getItemInUseCount() > 5) { + world.playSound( null, player.posX, player.posY, player.posZ, ModSounds.MUSKET_SHOT, SoundCategory.BLOCKS, 0.5F, 0.3F / (itemRand.nextFloat() * 0.4F + 0.8F)); + EntityMuckBall entity = new EntityMuckBall(world, player); + entity.setHeadingFromThrower(player, player.rotationPitch, player.rotationYaw, 0.0F, 7.0F, 0.5F); + world.spawnEntity(entity); + if (!stack.hasTagCompound()) { + stack.setTagCompound(new NBTTagCompound()); } - */ + stack.getTagCompound().setBoolean("use", false); + + //} - if (!world.isRemote) + } +/* + public ItemStack onItemUseFinish(ItemStack stack, World world, EntityLivingBase entityLiving) + { + if (entityLiving instanceof EntityPlayer) { - world.playSound((EntityPlayer)null, player.posX, player.posY, player.posZ, ModSounds.MUSKET_SHOT, SoundCategory.BLOCKS, 0.5F, 0.3F / (itemRand.nextFloat() * 0.4F + 0.8F)); + EntityPlayer player = (EntityPlayer) entityLiving; + world.playSound( null, player.posX, player.posY, player.posZ, ModSounds.MUSKET_SHOT, SoundCategory.BLOCKS, 0.5F, 0.3F / (itemRand.nextFloat() * 0.4F + 0.8F)); EntityMuckBall entity = new EntityMuckBall(world, player); entity.setHeadingFromThrower(player, player.rotationPitch, player.rotationYaw, 0.0F, 7.0F, 0.5F); world.spawnEntity(entity); + } - player.addStat(StatList.getObjectUseStats(this)); - return new ActionResult(EnumActionResult.SUCCESS, stack); + return stack; + } +*/ + @Override + public ActionResult onItemRightClick(World worldIn, EntityPlayer playerIn, EnumHand handIn) + { + ItemStack itemstack = playerIn.getHeldItem(handIn); + boolean flag = true; + if (!itemstack.hasTagCompound()) { + itemstack.setTagCompound(new NBTTagCompound()); + } + itemstack.getTagCompound().setBoolean("use", true); + + ActionResult ret = net.minecraftforge.event.ForgeEventFactory.onArrowNock(itemstack, worldIn, playerIn, handIn, flag); + if (ret != null) { + return ret; + } + + if (!playerIn.capabilities.isCreativeMode && !flag) + { + return flag ? new ActionResult(EnumActionResult.PASS, itemstack) : new ActionResult(EnumActionResult.FAIL, itemstack); + } + else + { + playerIn.setActiveHand(handIn); + return new ActionResult(EnumActionResult.SUCCESS, itemstack); + } + } + + public int getMaxItemUseDuration(ItemStack stack) + { + return 7200; + } + + /** + * returns the action that specifies what animation to play when the items is being used + */ + public EnumAction getItemUseAction(ItemStack stack) + { + return EnumAction.BOW; } } diff --git a/1.11/src/main/resources/assets/forgecraft/models/item/ironsword.json b/1.11/src/main/resources/assets/forgecraft/models/item/ironsword.json index 6cce48ac..d0d5940d 100644 --- a/1.11/src/main/resources/assets/forgecraft/models/item/ironsword.json +++ b/1.11/src/main/resources/assets/forgecraft/models/item/ironsword.json @@ -2,7 +2,8 @@ "__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio", "textures": { "particle": "blocks/e_particle", - "texture": "forgecraft:items/iron_ingot" + "texture": "forgecraft:items/iron_ingot", + "texture1": "blocks/planks_oak" }, "elements": [ { @@ -23,12 +24,12 @@ "from": [ 7, -8, 7 ], "to": [ 9.5, -5.5, 9 ], "faces": { - "down": { "uv": [ 6.5, 7, 9.5, 9 ], "texture": "#texture" }, - "up": { "uv": [ 6.5, 7, 9.5, 9 ], "texture": "#texture" }, - "north": { "uv": [ 6.5, 0, 9.5, 1 ], "texture": "#texture" }, - "south": { "uv": [ 6.5, 0, 9.5, 1 ], "texture": "#texture" }, - "west": { "uv": [ 7, 0, 9, 1 ], "texture": "#texture" }, - "east": { "uv": [ 7, 0, 9, 1 ], "texture": "#texture" } + "down": { "uv": [ 6.5, 7, 9.5, 9 ], "texture": "#texture1" }, + "up": { "uv": [ 6.5, 7, 9.5, 9 ], "texture": "#texture1" }, + "north": { "uv": [ 6.5, 0, 9.5, 1 ], "texture": "#texture1" }, + "south": { "uv": [ 6.5, 0, 9.5, 1 ], "texture": "#texture1" }, + "west": { "uv": [ 7, 0, 9, 1 ], "texture": "#texture1" }, + "east": { "uv": [ 7, 0, 9, 1 ], "texture": "#texture1" } } }, { @@ -36,12 +37,12 @@ "from": [ 6.5, 0, 7.25 ], "to": [ 10, 0.5, 8.75 ], "faces": { - "down": { "uv": [ 5.5, 6.5, 10.5, 9.5 ], "texture": "#texture" }, - "up": { "uv": [ 5.5, 6.5, 10.5, 9.5 ], "texture": "#texture" }, - "north": { "uv": [ 5.5, 0, 10.5, 1 ], "texture": "#texture" }, - "south": { "uv": [ 5.5, 0, 10.5, 1 ], "texture": "#texture" }, - "west": { "uv": [ 6.5, 0, 9.5, 1 ], "texture": "#texture" }, - "east": { "uv": [ 6.5, 0, 9.5, 1 ], "texture": "#texture" } + "down": { "uv": [ 5.5, 6.5, 10.5, 9.5 ], "texture": "#texture1" }, + "up": { "uv": [ 5.5, 6.5, 10.5, 9.5 ], "texture": "#texture1" }, + "north": { "uv": [ 5.5, 0, 10.5, 1 ], "texture": "#texture1" }, + "south": { "uv": [ 5.5, 0, 10.5, 1 ], "texture": "#texture1" }, + "west": { "uv": [ 6.5, 0, 9.5, 1 ], "texture": "#texture1" }, + "east": { "uv": [ 6.5, 0, 9.5, 1 ], "texture": "#texture1" } } }, { @@ -127,12 +128,12 @@ "from": [ 6, 0.5, 7.25 ], "to": [ 10.5, 2.5, 8.75 ], "faces": { - "down": { "uv": [ 6, 7.25, 10.5, 8.75 ], "texture": "#texture" }, - "up": { "uv": [ 6, 7.25, 10.5, 8.75 ], "texture": "#texture" }, - "north": { "uv": [ 5.5, 13.5, 10, 15.5 ], "texture": "#texture" }, - "south": { "uv": [ 6, 13.5, 10.5, 15.5 ], "texture": "#texture" }, - "west": { "uv": [ 7.25, 13.5, 8.75, 15.5 ], "texture": "#texture" }, - "east": { "uv": [ 7.25, 13.5, 8.75, 15.5 ], "texture": "#texture" } + "down": { "uv": [ 6, 7.25, 10.5, 8.75 ], "texture": "#texture1" }, + "up": { "uv": [ 6, 7.25, 10.5, 8.75 ], "texture": "#texture1" }, + "north": { "uv": [ 5.5, 13.5, 10, 15.5 ], "texture": "#texture1" }, + "south": { "uv": [ 6, 13.5, 10.5, 15.5 ], "texture": "#texture1" }, + "west": { "uv": [ 7.25, 13.5, 8.75, 15.5 ], "texture": "#texture1" }, + "east": { "uv": [ 7.25, 13.5, 8.75, 15.5 ], "texture": "#texture1" } } }, { @@ -140,12 +141,12 @@ "from": [ 6.25, 0.5, 6.75 ], "to": [ 10.25, 2.5, 9.25 ], "faces": { - "down": { "uv": [ 6.25, 6.75, 10.25, 9.25 ], "texture": "#texture" }, - "up": { "uv": [ 6.25, 6.75, 10.25, 9.25 ], "texture": "#texture" }, - "north": { "uv": [ 5.75, 13.5, 9.75, 15.5 ], "texture": "#texture" }, - "south": { "uv": [ 6.25, 13.5, 10.25, 15.5 ], "texture": "#texture" }, - "west": { "uv": [ 6.75, 13.5, 9.25, 15.5 ], "texture": "#texture" }, - "east": { "uv": [ 6.75, 13.5, 9.25, 15.5 ], "texture": "#texture" } + "down": { "uv": [ 6.25, 6.75, 10.25, 9.25 ], "texture": "#texture1" }, + "up": { "uv": [ 6.25, 6.75, 10.25, 9.25 ], "texture": "#texture1" }, + "north": { "uv": [ 5.75, 13.5, 9.75, 15.5 ], "texture": "#texture1" }, + "south": { "uv": [ 6.25, 13.5, 10.25, 15.5 ], "texture": "#texture1" }, + "west": { "uv": [ 6.75, 13.5, 9.25, 15.5 ], "texture": "#texture1" }, + "east": { "uv": [ 6.75, 13.5, 9.25, 15.5 ], "texture": "#texture1" } } }, { @@ -179,12 +180,12 @@ "from": [ 7, -7.5, 6.5 ], "to": [ 9.5, -6, 9.5 ], "faces": { - "down": { "uv": [ 7, 6.5, 9.5, 9.5 ], "texture": "#texture" }, - "up": { "uv": [ 7, 6.5, 9.5, 9.5 ], "texture": "#texture" }, - "north": { "uv": [ 6.5, 6, 9, 7.5 ], "texture": "#texture" }, - "south": { "uv": [ 7, 6, 9.5, 7.5 ], "texture": "#texture" }, - "west": { "uv": [ 6.5, 6, 9.5, 7.5 ], "texture": "#texture" }, - "east": { "uv": [ 6.5, 6, 9.5, 7.5 ], "texture": "#texture" } + "down": { "uv": [ 7, 6.5, 9.5, 9.5 ], "texture": "#texture1" }, + "up": { "uv": [ 7, 6.5, 9.5, 9.5 ], "texture": "#texture1" }, + "north": { "uv": [ 6.5, 6, 9, 7.5 ], "texture": "#texture1" }, + "south": { "uv": [ 7, 6, 9.5, 7.5 ], "texture": "#texture1" }, + "west": { "uv": [ 6.5, 6, 9.5, 7.5 ], "texture": "#texture1" }, + "east": { "uv": [ 6.5, 6, 9.5, 7.5 ], "texture": "#texture1" } } }, { @@ -192,12 +193,12 @@ "from": [ 6.5, -7.5, 7 ], "to": [ 10, -6, 9 ], "faces": { - "down": { "uv": [ 6.5, 7, 10, 9 ], "texture": "#texture" }, - "up": { "uv": [ 6.5, 7, 10, 9 ], "texture": "#texture" }, - "north": { "uv": [ 6, 6, 9.5, 7.5 ], "texture": "#texture" }, - "south": { "uv": [ 6.5, 6, 10, 7.5 ], "texture": "#texture" }, - "west": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, - "east": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" } + "down": { "uv": [ 6.5, 7, 10, 9 ], "texture": "#texture1" }, + "up": { "uv": [ 6.5, 7, 10, 9 ], "texture": "#texture1" }, + "north": { "uv": [ 6, 6, 9.5, 7.5 ], "texture": "#texture1" }, + "south": { "uv": [ 6.5, 6, 10, 7.5 ], "texture": "#texture1" }, + "west": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture1" }, + "east": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture1" } } }, { diff --git a/1.11/src/main/resources/assets/forgecraft/models/item/ironsword2.json b/1.11/src/main/resources/assets/forgecraft/models/item/ironsword2.json index 7398cd04..8068e912 100644 --- a/1.11/src/main/resources/assets/forgecraft/models/item/ironsword2.json +++ b/1.11/src/main/resources/assets/forgecraft/models/item/ironsword2.json @@ -2,7 +2,8 @@ "__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio", "textures": { "particle": "blocks/e_particle", - "texture": "items/iron_ingot" + "texture": "items/iron_ingot", + "texture1": "items/e_texture" }, "elements": [ { @@ -23,12 +24,12 @@ "from": [ 7, -8, 7 ], "to": [ 9.5, -5.5, 9 ], "faces": { - "down": { "uv": [ 6.5, 7, 9.5, 9 ], "texture": "#texture" }, - "up": { "uv": [ 6.5, 7, 9.5, 9 ], "texture": "#texture" }, - "north": { "uv": [ 6.5, 0, 9.5, 1 ], "texture": "#texture" }, - "south": { "uv": [ 6.5, 0, 9.5, 1 ], "texture": "#texture" }, - "west": { "uv": [ 7, 0, 9, 1 ], "texture": "#texture" }, - "east": { "uv": [ 7, 0, 9, 1 ], "texture": "#texture" } + "down": { "uv": [ 6.5, 7, 9.5, 9 ], "texture": "#texture1" }, + "up": { "uv": [ 6.5, 7, 9.5, 9 ], "texture": "#texture1" }, + "north": { "uv": [ 6.5, 0, 9.5, 1 ], "texture": "#texture1" }, + "south": { "uv": [ 6.5, 0, 9.5, 1 ], "texture": "#texture1" }, + "west": { "uv": [ 7, 0, 9, 1 ], "texture": "#texture1" }, + "east": { "uv": [ 7, 0, 9, 1 ], "texture": "#texture1" } } }, { @@ -36,12 +37,12 @@ "from": [ 6.5, 0, 7.25 ], "to": [ 10, 0.5, 8.75 ], "faces": { - "down": { "uv": [ 5.5, 6.5, 10.5, 9.5 ], "texture": "#texture" }, - "up": { "uv": [ 5.5, 6.5, 10.5, 9.5 ], "texture": "#texture" }, - "north": { "uv": [ 5.5, 0, 10.5, 1 ], "texture": "#texture" }, - "south": { "uv": [ 5.5, 0, 10.5, 1 ], "texture": "#texture" }, - "west": { "uv": [ 6.5, 0, 9.5, 1 ], "texture": "#texture" }, - "east": { "uv": [ 6.5, 0, 9.5, 1 ], "texture": "#texture" } + "down": { "uv": [ 5.5, 6.5, 10.5, 9.5 ], "texture": "#texture1" }, + "up": { "uv": [ 5.5, 6.5, 10.5, 9.5 ], "texture": "#texture1" }, + "north": { "uv": [ 5.5, 0, 10.5, 1 ], "texture": "#texture1" }, + "south": { "uv": [ 5.5, 0, 10.5, 1 ], "texture": "#texture1" }, + "west": { "uv": [ 6.5, 0, 9.5, 1 ], "texture": "#texture1" }, + "east": { "uv": [ 6.5, 0, 9.5, 1 ], "texture": "#texture1" } } }, { @@ -127,12 +128,12 @@ "from": [ 6, 0.5, 7.25 ], "to": [ 10.5, 2.5, 8.75 ], "faces": { - "down": { "uv": [ 6, 7.25, 10.5, 8.75 ], "texture": "#texture" }, - "up": { "uv": [ 6, 7.25, 10.5, 8.75 ], "texture": "#texture" }, - "north": { "uv": [ 5.5, 13.5, 10, 15.5 ], "texture": "#texture" }, - "south": { "uv": [ 6, 13.5, 10.5, 15.5 ], "texture": "#texture" }, - "west": { "uv": [ 7.25, 13.5, 8.75, 15.5 ], "texture": "#texture" }, - "east": { "uv": [ 7.25, 13.5, 8.75, 15.5 ], "texture": "#texture" } + "down": { "uv": [ 6, 7.25, 10.5, 8.75 ], "texture": "#texture1" }, + "up": { "uv": [ 6, 7.25, 10.5, 8.75 ], "texture": "#texture1" }, + "north": { "uv": [ 5.5, 13.5, 10, 15.5 ], "texture": "#texture1" }, + "south": { "uv": [ 6, 13.5, 10.5, 15.5 ], "texture": "#texture1" }, + "west": { "uv": [ 7.25, 13.5, 8.75, 15.5 ], "texture": "#texture1" }, + "east": { "uv": [ 7.25, 13.5, 8.75, 15.5 ], "texture": "#texture1" } } }, { @@ -140,12 +141,12 @@ "from": [ 6.25, 0.5, 6.75 ], "to": [ 10.25, 2.5, 9.25 ], "faces": { - "down": { "uv": [ 6.25, 6.75, 10.25, 9.25 ], "texture": "#texture" }, - "up": { "uv": [ 6.25, 6.75, 10.25, 9.25 ], "texture": "#texture" }, - "north": { "uv": [ 5.75, 13.5, 9.75, 15.5 ], "texture": "#texture" }, - "south": { "uv": [ 6.25, 13.5, 10.25, 15.5 ], "texture": "#texture" }, - "west": { "uv": [ 6.75, 13.5, 9.25, 15.5 ], "texture": "#texture" }, - "east": { "uv": [ 6.75, 13.5, 9.25, 15.5 ], "texture": "#texture" } + "down": { "uv": [ 6.25, 6.75, 10.25, 9.25 ], "texture": "#texture1" }, + "up": { "uv": [ 6.25, 6.75, 10.25, 9.25 ], "texture": "#texture1" }, + "north": { "uv": [ 5.75, 13.5, 9.75, 15.5 ], "texture": "#texture1" }, + "south": { "uv": [ 6.25, 13.5, 10.25, 15.5 ], "texture": "#texture1" }, + "west": { "uv": [ 6.75, 13.5, 9.25, 15.5 ], "texture": "#texture1" }, + "east": { "uv": [ 6.75, 13.5, 9.25, 15.5 ], "texture": "#texture1" } } }, { @@ -179,12 +180,12 @@ "from": [ 7, -7.5, 6.5 ], "to": [ 9.5, -6, 9.5 ], "faces": { - "down": { "uv": [ 7, 6.5, 9.5, 9.5 ], "texture": "#texture" }, - "up": { "uv": [ 7, 6.5, 9.5, 9.5 ], "texture": "#texture" }, - "north": { "uv": [ 6.5, 6, 9, 7.5 ], "texture": "#texture" }, - "south": { "uv": [ 7, 6, 9.5, 7.5 ], "texture": "#texture" }, - "west": { "uv": [ 6.5, 6, 9.5, 7.5 ], "texture": "#texture" }, - "east": { "uv": [ 6.5, 6, 9.5, 7.5 ], "texture": "#texture" } + "down": { "uv": [ 7, 6.5, 9.5, 9.5 ], "texture": "#texture1" }, + "up": { "uv": [ 7, 6.5, 9.5, 9.5 ], "texture": "#texture1" }, + "north": { "uv": [ 6.5, 6, 9, 7.5 ], "texture": "#texture1" }, + "south": { "uv": [ 7, 6, 9.5, 7.5 ], "texture": "#texture1" }, + "west": { "uv": [ 6.5, 6, 9.5, 7.5 ], "texture": "#texture1" }, + "east": { "uv": [ 6.5, 6, 9.5, 7.5 ], "texture": "#texture1" } } }, { @@ -192,12 +193,12 @@ "from": [ 6.5, -7.5, 7 ], "to": [ 10, -6, 9 ], "faces": { - "down": { "uv": [ 6.5, 7, 10, 9 ], "texture": "#texture" }, - "up": { "uv": [ 6.5, 7, 10, 9 ], "texture": "#texture" }, - "north": { "uv": [ 6, 6, 9.5, 7.5 ], "texture": "#texture" }, - "south": { "uv": [ 6.5, 6, 10, 7.5 ], "texture": "#texture" }, - "west": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, - "east": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" } + "down": { "uv": [ 6.5, 7, 10, 9 ], "texture": "#texture1" }, + "up": { "uv": [ 6.5, 7, 10, 9 ], "texture": "#texture1" }, + "north": { "uv": [ 6, 6, 9.5, 7.5 ], "texture": "#texture1" }, + "south": { "uv": [ 6.5, 6, 10, 7.5 ], "texture": "#texture1" }, + "west": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture1" }, + "east": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture1" } } }, { diff --git a/1.11/src/main/resources/assets/forgecraft/models/item/matchlock_musket.json b/1.11/src/main/resources/assets/forgecraft/models/item/matchlock_musket.json index 9fe6b62e..4e02a7f1 100644 --- a/1.11/src/main/resources/assets/forgecraft/models/item/matchlock_musket.json +++ b/1.11/src/main/resources/assets/forgecraft/models/item/matchlock_musket.json @@ -6,6 +6,7 @@ "texture1": "forgecraft:items/iron_ingot" }, "overrides": [ - {"predicate": {"type": 0.0},"model": "forgecraft:item/matchlock_musket_0"} + {"predicate": {"type": 0.0},"model": "forgecraft:item/matchlock_musket_0"}, + {"predicate": {"type": 0.1},"model": "forgecraft:item/matchlock_musket_1"} ] } diff --git a/1.11/src/main/resources/assets/forgecraft/models/item/matchlock_musket_1.json b/1.11/src/main/resources/assets/forgecraft/models/item/matchlock_musket_1.json new file mode 100644 index 00000000..ce445c2d --- /dev/null +++ b/1.11/src/main/resources/assets/forgecraft/models/item/matchlock_musket_1.json @@ -0,0 +1,8 @@ +{ + "parent": "forgecraft:item/matchlock_musket_model_use", + "textures": { + "particle": "forgecraft:items/iron_ingot", + "texture": "blocks/planks_oak", + "texture1": "forgecraft:items/iron_ingot" + } +} diff --git a/1.11/src/main/resources/assets/forgecraft/models/item/matchlock_musket_model.json b/1.11/src/main/resources/assets/forgecraft/models/item/matchlock_musket_model.json index 98a54a19..6b3f19c3 100644 --- a/1.11/src/main/resources/assets/forgecraft/models/item/matchlock_musket_model.json +++ b/1.11/src/main/resources/assets/forgecraft/models/item/matchlock_musket_model.json @@ -1,9 +1,9 @@ { "__comment": "Designed by Captainaviator with Cubik Studio - https://cubik.studio", "textures": { - "particle": "items/iron_ingot", + "particle": "forgecraft:items/iron_ingot", "texture": "blocks/planks_oak", - "texture1": "items/iron_ingot" + "texture1": "forgecraft:items/iron_ingot" }, "elements": [ { diff --git a/1.11/src/main/resources/assets/forgecraft/models/item/matchlock_musket_model_delete.json b/1.11/src/main/resources/assets/forgecraft/models/item/matchlock_musket_model_delete.json new file mode 100644 index 00000000..b6b278dd --- /dev/null +++ b/1.11/src/main/resources/assets/forgecraft/models/item/matchlock_musket_model_delete.json @@ -0,0 +1,372 @@ +{ + "__comment": "Designed by Captainaviator with Cubik Studio - https://cubik.studio", + "textures": { + "particle": "items/iron_ingot", + "texture": "blocks/planks_oak", + "texture1": "items/iron_ingot" + }, + "elements": [ + { + "__comment": "Barrel", + "from": [ 7.2496, 10.8754, 2.2497 ], + "to": [ 8.2496, 11.3754, 29.7497 ], + "faces": { + "down": { "uv": [ 7.25, 0, 8.25, 13.75 ], "texture": "#texture1" }, + "up": { "uv": [ 7.25, 2.25, 8.25, 16 ], "texture": "#texture1" }, + "north": { "uv": [ 7.75, 4.625, 8.75, 5.125 ], "texture": "#texture1" }, + "south": { "uv": [ 7.25, 4.625, 8.25, 5.125 ], "texture": "#texture1" }, + "west": { "uv": [ 2.25, 4.625, 16, 5.125 ], "texture": "#texture1" }, + "east": { "uv": [ 0, 4.625, 13.75, 5.125 ], "texture": "#texture1" } + } + }, + { + "__comment": "Cube2", + "from": [ 7.0003, 9.7492, -1.4995 ], + "to": [ 8.500299, 11.2492, 24.50051 ], + "faces": { + "down": { "uv": [ 7, 0, 8.5, 16 ], "texture": "#texture" }, + "up": { "uv": [ 7, 0, 8.5, 16 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 4.75, 9, 6.25 ], "texture": "#texture" }, + "south": { "uv": [ 7, 4.75, 8.5, 6.25 ], "texture": "#texture" }, + "west": { "uv": [ 0, 4.75, 16, 6.25 ], "texture": "#texture" }, + "east": { "uv": [ 0, 4.75, 16, 6.25 ], "texture": "#texture" } + } + }, + { + "__comment": "Cube3", + "from": [ 6.9996, 10.2501, 24.2504 ], + "to": [ 8.4996, 11.2501, 28.2504 ], + "faces": { + "down": { "uv": [ 7, 3.75, 8.5, 7.75 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.25, 8.5, 12.25 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 4.75, 9, 5.75 ], "texture": "#texture" }, + "south": { "uv": [ 7, 4.75, 8.5, 5.75 ], "texture": "#texture" }, + "west": { "uv": [ 8.25, 4.75, 12.25, 5.75 ], "texture": "#texture" }, + "east": { "uv": [ 3.75, 4.75, 7.75, 5.75 ], "texture": "#texture" } + } + }, + { + "__comment": "Cube4", + "from": [ 7.5002, 9.8742, 24.2493 ], + "to": [ 8.000199, 10.3742, 28.7493 ], + "faces": { + "down": { "uv": [ 7.5, 3.25, 8, 7.75 ], "texture": "#texture1" }, + "up": { "uv": [ 7.5, 8.25, 8, 12.75 ], "texture": "#texture1" }, + "north": { "uv": [ 8, 5.625, 8.5, 6.125 ], "texture": "#texture1" }, + "south": { "uv": [ 7.5, 5.625, 8, 6.125 ], "texture": "#texture1" }, + "west": { "uv": [ 8.25, 5.625, 12.75, 6.125 ], "texture": "#texture1" }, + "east": { "uv": [ 3.25, 5.625, 7.75, 6.125 ], "texture": "#texture1" } + } + }, + { + "__comment": "Cube5", + "from": [ 6.999, 7.2074, -6.2933 ], + "to": [ 8.499, 8.707398, -0.2932992 ], + "rotation": { "origin": [ 7, 7.5, -7 ], "axis": "x", "angle": -22.5 }, + "faces": { + "down": { "uv": [ 4, 5.5, 5, 9 ], "texture": "#texture", "cullface": "down" }, + "up": { "uv": [ 12, 9, 11, 5.5 ], "texture": "#texture", "cullface": "up" }, + "north": { "uv": [ 5, 6, 4, 4.5 ], "texture": "#texture", "cullface": "north" }, + "south": { "uv": [ 4, 10, 5, 11.5 ], "texture": "#texture", "cullface": "south" }, + "west": { "uv": [ 10, 5.5, 11.5, 9 ], "texture": "#texture", "cullface": "west", "rotation": 90 }, + "east": { "uv": [ 4.5, 5.5, 6, 9 ], "texture": "#texture", "cullface": "east", "rotation": 270 } + } + }, + { + "__comment": "Cube6", + "from": [ 6.9988, 8.2486, -7.3751 ], + "to": [ 8.498799, 10.7486, -6.3751 ], + "rotation": { "origin": [ 7, 8.25, -7.375 ], "axis": "x", "angle": -22.5 }, + "faces": { + "down": { "uv": [ 4, 10, 5, 11.5 ], "texture": "#texture" }, + "up": { "uv": [ 4, 4.5, 5, 6 ], "texture": "#texture" }, + "north": { "uv": [ 11, 6, 12, 11.5 ], "texture": "#texture" }, + "south": { "uv": [ 4, 6, 5, 11.5 ], "texture": "#texture" }, + "west": { "uv": [ 4.5, 6, 6, 11.5 ], "texture": "#texture" }, + "east": { "uv": [ 10, 6, 11.5, 11.5 ], "texture": "#texture" } + } + }, + { + "__comment": "Cube7", + "from": [ 6.9998, 5.6255, -6.9777 ], + "to": [ 8.4998, 9.1255, -5.4777 ], + "rotation": { "origin": [ 7, 9.375, -5.375 ], "axis": "x", "angle": 22.5 }, + "faces": { + "down": { "uv": [ 4, 8, 5, 9 ], "texture": "#texture" }, + "up": { "uv": [ 4, 7, 5, 8 ], "texture": "#texture" }, + "north": { "uv": [ 5, 5.5, 4, 2 ], "texture": "#texture" }, + "south": { "uv": [ 12, 5.5, 11, 2 ], "texture": "#texture" }, + "west": { "uv": [ 8, 2, 9, 5.5 ], "texture": "#texture", "rotation": 180 }, + "east": { "uv": [ 7, 2, 8, 5.5 ], "texture": "#texture", "rotation": 180 } + } + }, + { + "__comment": "Cube8", + "from": [ 6.9997, 10.0006, -7.8747 ], + "to": [ 8.499701, 11.0006, -4.8747 ], + "rotation": { "origin": [ 7, 10, -7.875 ], "axis": "x", "angle": 22.5 }, + "faces": { + "down": { "uv": [ 4, 3.5, 5, 10.5 ], "texture": "#texture" }, + "up": { "uv": [ 4, 5.5, 5, 12.5 ], "texture": "#texture" }, + "north": { "uv": [ 11, 5, 12, 6 ], "texture": "#texture" }, + "south": { "uv": [ 4, 5, 5, 6 ], "texture": "#texture" }, + "west": { "uv": [ 5.5, 5, 12.5, 6 ], "texture": "#texture" }, + "east": { "uv": [ 3.5, 5, 10.5, 6 ], "texture": "#texture" } + } + }, + { + "__comment": "Cube9", + "from": [ 6.9987, 9.7492, -2.9993 ], + "to": [ 8.498699, 10.74921, -1.9993 ], + "faces": { + "down": { "uv": [ 7, 2, 8.5, 3 ], "texture": "#texture" }, + "up": { "uv": [ 7, 13, 8.5, 14 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 5.25, 9, 6.25 ], "texture": "#texture" }, + "south": { "uv": [ 7, 5.25, 8.5, 6.25 ], "texture": "#texture" }, + "west": { "uv": [ 13, 5.25, 14, 6.25 ], "texture": "#texture" }, + "east": { "uv": [ 2, 5.25, 3, 6.25 ], "texture": "#texture" } + } + }, + { + "__comment": "Cube10", + "from": [ 7.0001, 7.2486, -7.8757 ], + "to": [ 8.500099, 9.7486, -6.8757 ], + "faces": { + "down": { "uv": [ 7, 6.875, 8.5, 7.875 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.125, 8.5, 9.125 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 6.25, 9, 8.75 ], "texture": "#texture" }, + "south": { "uv": [ 7, 6.25, 8.5, 8.75 ], "texture": "#texture" }, + "west": { "uv": [ 8.125, 6.25, 9.125, 8.75 ], "texture": "#texture" }, + "east": { "uv": [ 6.875, 6.25, 7.875, 8.75 ], "texture": "#texture" } + } + }, + { + "__comment": "Cube11", + "from": [ 7.0011, 9.0013, -7.0008 ], + "to": [ 8.501099, 10.5013, -4.0008 ], + "faces": { + "down": { "uv": [ 7, 4, 8.5, 7 ], "texture": "#texture" }, + "up": { "uv": [ 7, 9, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 5.5, 9, 7 ], "texture": "#texture" }, + "south": { "uv": [ 7, 5.5, 8.5, 7 ], "texture": "#texture" }, + "west": { "uv": [ 9, 5.5, 12, 7 ], "texture": "#texture" }, + "east": { "uv": [ 4, 5.5, 7, 7 ], "texture": "#texture" } + } + }, + { + "__comment": "Cube12", + "from": [ 6.9991, 8.500899, -6.8746 ], + "to": [ 8.4991, 9.500899, -2.3746 ], + "rotation": { "origin": [ 7, 8.5, -6.875 ], "axis": "x", "angle": -22.5 }, + "faces": { + "down": { "uv": [ 4, 1.5, 5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 4, 11, 5, 14.5 ], "texture": "#texture" }, + "north": { "uv": [ 11, 4, 12, 4.5 ], "texture": "#texture" }, + "south": { "uv": [ 4, 4, 5, 4.5 ], "texture": "#texture" }, + "west": { "uv": [ 11, 4, 14.5, 4.5 ], "texture": "#texture" }, + "east": { "uv": [ 1.5, 4, 5, 4.5 ], "texture": "#texture" } + } + }, + { + "__comment": "Cube13", + "from": [ 7.0002, 9.2499, -2.2506 ], + "to": [ 8.500198, 10.2499, 6.749401 ], + "faces": { + "down": { "uv": [ 7, 9.25, 8.5, 16 ], "texture": "#texture" }, + "up": { "uv": [ 7, 0, 8.5, 6.75 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 5.75, 9, 6.75 ], "texture": "#texture" }, + "south": { "uv": [ 7, 5.75, 8.5, 6.75 ], "texture": "#texture" }, + "west": { "uv": [ 0, 5.75, 6.75, 6.75 ], "texture": "#texture" }, + "east": { "uv": [ 9.25, 5.75, 16, 6.75 ], "texture": "#texture" } + } + }, + { + "__comment": "Cube14", + "from": [ 6.8748, 9.75, -0.8751 ], + "to": [ 7.8748, 10.74999, 6.1249 ], + "faces": { + "down": { "uv": [ 6.875, 9.875, 7.875, 16 ], "texture": "#texture1" }, + "up": { "uv": [ 6.875, 0, 7.875, 6.125 ], "texture": "#texture1" }, + "north": { "uv": [ 8.125, 5.25, 9.125, 6.25 ], "texture": "#texture1" }, + "south": { "uv": [ 6.875, 5.25, 7.875, 6.25 ], "texture": "#texture1" }, + "west": { "uv": [ 0, 5.25, 6.125, 6.25 ], "texture": "#texture1" }, + "east": { "uv": [ 9.875, 5.25, 16, 6.25 ], "texture": "#texture1" } + } + }, + { + "__comment": "Cube15", + "from": [ 7.4988, 8.624, -0.0001 ], + "to": [ 7.9988, 9.624, 0.4999 ], + "faces": { + "down": { "uv": [ 7.5, 15.5, 8, 16 ], "texture": "#texture1" }, + "up": { "uv": [ 7.5, 0, 8, 0.5 ], "texture": "#texture1" }, + "north": { "uv": [ 8, 6.375, 8.5, 7.375 ], "texture": "#texture1" }, + "south": { "uv": [ 7.5, 6.375, 8, 7.375 ], "texture": "#texture1" }, + "west": { "uv": [ 0, 6.375, 0.5, 7.375 ], "texture": "#texture1" }, + "east": { "uv": [ 15.5, 6.375, 16, 7.375 ], "texture": "#texture1" } + } + }, + { + "__comment": "Cube16", + "from": [ 7.4991, 8.1261, -0.5004 ], + "to": [ 7.9991, 8.6261, 0.4996 ], + "faces": { + "down": { "uv": [ 7.5, 15.5, 8, 16 ], "texture": "#texture1" }, + "up": { "uv": [ 7.5, 0, 8, 0.5 ], "texture": "#texture1" }, + "north": { "uv": [ 8, 7.375, 8.5, 7.875 ], "texture": "#texture1" }, + "south": { "uv": [ 7.5, 7.375, 8, 7.875 ], "texture": "#texture1" }, + "west": { "uv": [ 0, 7.375, 0.5, 7.875 ], "texture": "#texture1" }, + "east": { "uv": [ 15.5, 7.375, 16, 7.875 ], "texture": "#texture1" } + } + }, + { + "__comment": "Cube17", + "from": [ 7.5011, 7.0007, -3.0009 ], + "to": [ 8.0011, 7.5007, -0.0009000301 ], + "rotation": { "origin": [ 7.5, 7, -3 ], "axis": "x", "angle": -22.5 }, + "faces": { + "down": { "uv": [ 4, 0, 4.5, 2 ], "texture": "#texture1" }, + "up": { "uv": [ 4, 14, 4.5, 16 ], "texture": "#texture1" }, + "north": { "uv": [ 11.5, 8, 12, 8.5 ], "texture": "#texture1" }, + "south": { "uv": [ 4, 8, 4.5, 8.5 ], "texture": "#texture1" }, + "west": { "uv": [ 14, 8, 16, 8.5 ], "texture": "#texture1" }, + "east": { "uv": [ 0, 8, 2, 8.5 ], "texture": "#texture1" } + } + }, + { + "__comment": "Cube18", + "from": [ 7.4986, 6.1255, -4.5 ], + "to": [ 7.9986, 8.1255, -4 ], + "rotation": { "origin": [ 7.5, 6.125, -4.5 ], "axis": "x", "angle": 45 }, + "faces": { + "down": { "uv": [ 4, 1, 4.5, 1.5 ], "texture": "#texture1" }, + "up": { "uv": [ 4, 14.5, 4.5, 15 ], "texture": "#texture1" }, + "north": { "uv": [ 11.5, 7.5, 12, 9.5 ], "texture": "#texture1" }, + "south": { "uv": [ 4, 7.5, 4.5, 9.5 ], "texture": "#texture1" }, + "west": { "uv": [ 14.5, 7.5, 15, 9.5 ], "texture": "#texture1" }, + "east": { "uv": [ 1, 7.5, 1.5, 9.5 ], "texture": "#texture1" } + } + }, + { + "__comment": "Cube19", + "from": [ 6.3749, 9.9998, 5.5003 ], + "to": [ 6.8749, 10.4998, 7.0003 ], + "rotation": { "origin": [ 6.375, 10, 5.5 ], "axis": "x", "angle": -45 }, + "faces": { + "down": { "uv": [ 4, 10.5, 5, 12 ], "texture": "#texture1" }, + "up": { "uv": [ 4, 4, 5, 5.5 ], "texture": "#texture1" }, + "north": { "uv": [ 11, 8.5, 12, 9 ], "texture": "#texture1" }, + "south": { "uv": [ 4, 8.5, 5, 9 ], "texture": "#texture1" }, + "west": { "uv": [ 4, 8.5, 5.5, 9 ], "texture": "#texture1" }, + "east": { "uv": [ 10.5, 8.5, 12, 9 ], "texture": "#texture1" } + } + }, + { + "__comment": "Cube20", + "from": [ 6.3738, 11, 6 ], + "to": [ 6.8738, 12, 6.5 ], + "faces": { + "down": { "uv": [ 4, 11.5, 5, 12 ], "texture": "#texture1" }, + "up": { "uv": [ 4, 4, 5, 4.5 ], "texture": "#texture1" }, + "north": { "uv": [ 11, 7.5, 12, 9 ], "texture": "#texture1" }, + "south": { "uv": [ 4, 7.5, 5, 9 ], "texture": "#texture1" }, + "west": { "uv": [ 4, 7.5, 4.5, 9 ], "texture": "#texture1" }, + "east": { "uv": [ 11.5, 7.5, 12, 9 ], "texture": "#texture1" } + } + }, + { + "__comment": "Cube21", + "from": [ 6.3746, 11.7497, 6.0007 ], + "to": [ 6.8746, 13.2497, 6.5007 ], + "rotation": { "origin": [ 6.375, 11.75, 6 ], "axis": "x", "angle": -22.5 }, + "faces": { + "down": { "uv": [ 4, 11.5, 5, 12 ], "texture": "#texture1" }, + "up": { "uv": [ 4, 4, 5, 4.5 ], "texture": "#texture1" }, + "north": { "uv": [ 11, 7.5, 12, 9 ], "texture": "#texture1" }, + "south": { "uv": [ 4, 7.5, 5, 9 ], "texture": "#texture1" }, + "west": { "uv": [ 4, 7.5, 4.5, 9 ], "texture": "#texture1" }, + "east": { "uv": [ 11.5, 7.5, 12, 9 ], "texture": "#texture1" } + } + }, + { + "__comment": "Cube22", + "from": [ 6.3758, 12.8761, 4.375 ], + "to": [ 6.8758, 13.3761, 5.875 ], + "faces": { + "down": { "uv": [ 4, 11, 4.5, 12.5 ], "texture": "#texture1" }, + "up": { "uv": [ 4, 3.5, 4.5, 5 ], "texture": "#texture1" }, + "north": { "uv": [ 11.5, 2.5, 12, 3 ], "texture": "#texture1" }, + "south": { "uv": [ 4, 2.5, 4.5, 3 ], "texture": "#texture1" }, + "west": { "uv": [ 3.5, 2.5, 5, 3 ], "texture": "#texture1" }, + "east": { "uv": [ 11, 2.5, 12.5, 3 ], "texture": "#texture1" } + } + }, + { + "__comment": "Cube23", + "from": [ 7.0006, 11.2503, 2.2501 ], + "to": [ 7.5006, 11.7503, 2.7501 ], + "faces": { + "down": { "uv": [ 7, 13.25, 7.5, 13.75 ], "texture": "#texture1" }, + "up": { "uv": [ 7, 2.25, 7.5, 2.75 ], "texture": "#texture1" }, + "north": { "uv": [ 8.5, 4.25, 9, 4.75 ], "texture": "#texture1" }, + "south": { "uv": [ 7, 4.25, 7.5, 4.75 ], "texture": "#texture1" }, + "west": { "uv": [ 2.25, 4.25, 2.75, 4.75 ], "texture": "#texture1" }, + "east": { "uv": [ 13.25, 4.25, 13.75, 4.75 ], "texture": "#texture1" } + } + }, + { + "__comment": "Cube24", + "from": [ 7.4998, 11.4994, 28.5001 ], + "to": [ 7.9998, 11.9994, 29.0001 ], + "faces": { + "down": { "uv": [ 7.5, 3, 8, 3.5 ], "texture": "#texture1" }, + "up": { "uv": [ 7.5, 12.5, 8, 13 ], "texture": "#texture1" }, + "north": { "uv": [ 8, 4, 8.5, 4.5 ], "texture": "#texture1" }, + "south": { "uv": [ 7.5, 4, 8, 4.5 ], "texture": "#texture1" }, + "west": { "uv": [ 12.5, 4, 13, 4.5 ], "texture": "#texture1" }, + "east": { "uv": [ 3, 4, 3.5, 4.5 ], "texture": "#texture1" } + } + }, + { + "__comment": "Cube25", + "from": [ 7.4999, 10.625, 2.2492 ], + "to": [ 7.9999, 11.625, 29.74921 ], + "faces": { + "down": { "uv": [ 7.5, 0, 8, 13.5 ], "texture": "#texture1" }, + "up": { "uv": [ 7.5, 2.5, 8, 16 ], "texture": "#texture1" }, + "north": { "uv": [ 8, 4.375, 8.5, 5.375 ], "texture": "#texture1" }, + "south": { "uv": [ 7.5, 4.375, 8, 5.375 ], "texture": "#texture1" }, + "west": { "uv": [ 2.5, 4.375, 16, 5.375 ], "texture": "#texture1" }, + "east": { "uv": [ 0, 4.375, 13.5, 5.375 ], "texture": "#texture1" } + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [ 0, -180, 0 ], + "translation": [ -1.39, -2.086, -6.956 ] + }, + "thirdperson_lefthand": { + "rotation": [ 6, 0, 0 ], + "translation": [ 0.0002, -1.389, 13.912 ] + }, + "firstperson_righthand": { + "rotation": [ 10, 180, 0 ], + "translation": [ -2.781, 2.0869, 0.0003 ] + }, + "firstperson_lefthand": { + "rotation": [ -60, 0, 0 ], + "translation": [ 0, 7.6544, 6.2598 ] + }, + "gui": { + "rotation": [ 90, 135, -90 ], + "translation": [ 0, -1.4, 0 ], + "scale": [ 0.5, 0.5, 0.5 ] + }, + "fixed": { + "rotation": [ 90, -90, 90 ], + "translation": [ 0.7, -4.182, -0.695 ], + "scale": [ 2, 2, 2 ] + } + } +} \ No newline at end of file diff --git a/1.11/src/main/resources/assets/forgecraft/models/item/matchlock_musket_model_delete2.json b/1.11/src/main/resources/assets/forgecraft/models/item/matchlock_musket_model_delete2.json new file mode 100644 index 00000000..30531b04 --- /dev/null +++ b/1.11/src/main/resources/assets/forgecraft/models/item/matchlock_musket_model_delete2.json @@ -0,0 +1,372 @@ +{ + "__comment": "Designed by Captainaviator with Cubik Studio - https://cubik.studio", + "textures": { + "particle": "forgecraft:items/iron_ingot", + "texture": "blocks/planks_oak", + "texture1": "forgecraft:items/iron_ingot" + }, + "elements": [ + { + "__comment": "Barrel", + "from": [ 7.2496, -14.3746, 2.2497 ], + "to": [ 8.2496, 13.1254, 2.7497 ], + "faces": { + "down": { "uv": [ 7.25, 4.625, 8.25, 5.125 ], "texture": "#texture1" }, + "up": { "uv": [ 8.75, 5.125, 7.75, 4.625 ], "texture": "#texture1" }, + "north": { "uv": [ 8.25, 13.75, 7.25, 0 ], "texture": "#texture1" }, + "south": { "uv": [ 7.25, 2.25, 8.25, 16 ], "texture": "#texture1" }, + "west": { "uv": [ 2.25, 4.625, 16, 5.125 ], "texture": "#texture1", "rotation": 90 }, + "east": { "uv": [ 0, 4.625, 13.75, 5.125 ], "texture": "#texture1", "rotation": 270 } + } + }, + { + "__comment": "Cube2", + "from": [ 7.0003, -9.1254, 1.1234 ], + "to": [ 8.500299, 16.87461, 2.6234 ], + "faces": { + "down": { "uv": [ 7, 4.75, 8.5, 6.25 ], "texture": "#texture" }, + "up": { "uv": [ 9, 6.25, 7.5, 4.75 ], "texture": "#texture" }, + "north": { "uv": [ 8.5, 16, 7, 0 ], "texture": "#texture" }, + "south": { "uv": [ 7, 0, 8.5, 16 ], "texture": "#texture" }, + "west": { "uv": [ 0, 4.75, 16, 6.25 ], "texture": "#texture", "rotation": 90 }, + "east": { "uv": [ 0, 4.75, 16, 6.25 ], "texture": "#texture", "rotation": 270 } + } + }, + { + "__comment": "Cube3", + "from": [ 6.9996, -12.8753, 1.625 ], + "to": [ 8.4996, -8.875299, 2.625 ], + "faces": { + "down": { "uv": [ 7, 4.75, 8.5, 5.75 ], "texture": "#texture" }, + "up": { "uv": [ 9, 5.75, 7.5, 4.75 ], "texture": "#texture" }, + "north": { "uv": [ 8.5, 7.75, 7, 3.75 ], "texture": "#texture" }, + "south": { "uv": [ 7, 8.25, 8.5, 12.25 ], "texture": "#texture" }, + "west": { "uv": [ 8.25, 4.75, 12.25, 5.75 ], "texture": "#texture", "rotation": 90 }, + "east": { "uv": [ 3.75, 4.75, 7.75, 5.75 ], "texture": "#texture", "rotation": 270 } + } + }, + { + "__comment": "Cube4", + "from": [ 7.5002, -13.3742, 1.2491 ], + "to": [ 8.000199, -8.8742, 1.7491 ], + "faces": { + "down": { "uv": [ 7.5, 5.625, 8, 6.125 ], "texture": "#texture1" }, + "up": { "uv": [ 8.5, 6.125, 8, 5.625 ], "texture": "#texture1" }, + "north": { "uv": [ 8, 7.75, 7.5, 3.25 ], "texture": "#texture1" }, + "south": { "uv": [ 7.5, 8.25, 8, 12.75 ], "texture": "#texture1" }, + "west": { "uv": [ 8.25, 5.625, 12.75, 6.125 ], "texture": "#texture1", "rotation": 90 }, + "east": { "uv": [ 3.25, 5.625, 7.75, 6.125 ], "texture": "#texture1", "rotation": 270 } + } + }, + { + "__comment": "Cube5", + "from": [ 6.999, 13.254, -6.8809 ], + "to": [ 8.498999, 14.754, -0.880899 ], + "rotation": { "origin": [ 7.2496, 13.1254, 2.2497 ], "axis": "x", "angle": 67.5 }, + "faces": { + "down": { "uv": [ 4, 5.5, 5, 9 ], "texture": "#texture", "cullface": "down" }, + "up": { "uv": [ 12, 9, 11, 5.5 ], "texture": "#texture", "cullface": "up" }, + "north": { "uv": [ 5, 6, 4, 4.5 ], "texture": "#texture", "cullface": "north" }, + "south": { "uv": [ 4, 10, 5, 11.5 ], "texture": "#texture", "cullface": "south" }, + "west": { "uv": [ 10, 5.5, 11.5, 9 ], "texture": "#texture", "cullface": "west", "rotation": 90 }, + "east": { "uv": [ 4.5, 5.5, 6, 9 ], "texture": "#texture", "cullface": "east", "rotation": 270 } + } + }, + { + "__comment": "Cube6", + "from": [ 6.9988, 14.3817, -7.6472 ], + "to": [ 8.498799, 16.8817, -6.6472 ], + "rotation": { "origin": [ 7.2496, 13.1254, 2.2497 ], "axis": "x", "angle": 67.5 }, + "faces": { + "down": { "uv": [ 4, 10, 5, 11.5 ], "texture": "#texture" }, + "up": { "uv": [ 4, 4.5, 5, 6 ], "texture": "#texture" }, + "north": { "uv": [ 11, 6, 12, 11.5 ], "texture": "#texture" }, + "south": { "uv": [ 4, 6, 5, 11.5 ], "texture": "#texture" }, + "west": { "uv": [ 4.5, 6, 6, 11.5 ], "texture": "#texture" }, + "east": { "uv": [ 10, 6, 11.5, 11.5 ], "texture": "#texture" } + } + }, + { + "__comment": "Cube7", + "from": [ 6.9998, 19.6982, -5.8039 ], + "to": [ 8.4998, 21.1982, -2.3039 ], + "rotation": { "origin": [ 7.2496, 13.1254, 2.2497 ], "axis": "x", "angle": 22.5 }, + "faces": { + "down": { "uv": [ 12, 5.5, 11, 2 ], "texture": "#texture" }, + "up": { "uv": [ 4, 2, 5, 5.5 ], "texture": "#texture" }, + "north": { "uv": [ 5, 9, 4, 8 ], "texture": "#texture" }, + "south": { "uv": [ 4, 7, 5, 8 ], "texture": "#texture" }, + "west": { "uv": [ 8, 2, 9, 5.5 ], "texture": "#texture", "rotation": 270 }, + "east": { "uv": [ 7, 2, 8, 5.5 ], "texture": "#texture", "rotation": 90 } + } + }, + { + "__comment": "Cube8", + "from": [ 6.9997, 19.1441, -2.4331 ], + "to": [ 8.499701, 22.1441, -1.4331 ], + "rotation": { "origin": [ 7.2496, 13.1254, 2.2497 ], "axis": "x", "angle": 22.5 }, + "faces": { + "down": { "uv": [ 4, 5, 5, 6 ], "texture": "#texture" }, + "up": { "uv": [ 12, 6, 11, 5 ], "texture": "#texture" }, + "north": { "uv": [ 5, 10.5, 4, 3.5 ], "texture": "#texture" }, + "south": { "uv": [ 4, 5.5, 5, 12.5 ], "texture": "#texture" }, + "west": { "uv": [ 5.5, 5, 12.5, 6 ], "texture": "#texture", "rotation": 90 }, + "east": { "uv": [ 3.5, 5, 10.5, 6 ], "texture": "#texture", "rotation": 270 } + } + }, + { + "__comment": "Cube9", + "from": [ 6.9987, 17.3744, 1.1234 ], + "to": [ 8.498699, 18.3744, 2.12341 ], + "faces": { + "down": { "uv": [ 7, 5.25, 8.5, 6.25 ], "texture": "#texture" }, + "up": { "uv": [ 9, 6.25, 7.5, 5.25 ], "texture": "#texture" }, + "north": { "uv": [ 8.5, 3, 7, 2 ], "texture": "#texture" }, + "south": { "uv": [ 7, 13, 8.5, 14 ], "texture": "#texture" }, + "west": { "uv": [ 13, 5.25, 14, 6.25 ], "texture": "#texture", "rotation": 90 }, + "east": { "uv": [ 2, 5.25, 3, 6.25 ], "texture": "#texture", "rotation": 270 } + } + }, + { + "__comment": "Cube10", + "from": [ 7.0001, 22.2508, -1.3774 ], + "to": [ 8.500099, 23.2508, 1.1226 ], + "faces": { + "down": { "uv": [ 7, 6.25, 8.5, 8.75 ], "texture": "#texture" }, + "up": { "uv": [ 9, 8.75, 7.5, 6.25 ], "texture": "#texture" }, + "north": { "uv": [ 8.5, 7.875, 7, 6.875 ], "texture": "#texture" }, + "south": { "uv": [ 7, 8.125, 8.5, 9.125 ], "texture": "#texture" }, + "west": { "uv": [ 8.125, 6.25, 9.125, 8.75 ], "texture": "#texture", "rotation": 90 }, + "east": { "uv": [ 6.875, 6.25, 7.875, 8.75 ], "texture": "#texture", "rotation": 270 } + } + }, + { + "__comment": "Cube11", + "from": [ 7.0011, 19.3759, 0.3753 ], + "to": [ 8.501099, 22.3759, 1.8753 ], + "faces": { + "down": { "uv": [ 7, 5.5, 8.5, 7 ], "texture": "#texture" }, + "up": { "uv": [ 9, 7, 7.5, 5.5 ], "texture": "#texture" }, + "north": { "uv": [ 8.5, 7, 7, 4 ], "texture": "#texture" }, + "south": { "uv": [ 7, 9, 8.5, 12 ], "texture": "#texture" }, + "west": { "uv": [ 9, 5.5, 12, 7 ], "texture": "#texture", "rotation": 90 }, + "east": { "uv": [ 4, 5.5, 7, 7 ], "texture": "#texture", "rotation": 270 } + } + }, + { + "__comment": "Cube12", + "from": [ 6.9991, 14.4236, -7.089 ], + "to": [ 8.4991, 15.4236, -2.589 ], + "rotation": { "origin": [ 7.2496, 13.1254, 2.2497 ], "axis": "x", "angle": 67.5 }, + "faces": { + "down": { "uv": [ 4, 1.5, 5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 4, 11, 5, 14.5 ], "texture": "#texture" }, + "north": { "uv": [ 11, 4, 12, 4.5 ], "texture": "#texture" }, + "south": { "uv": [ 4, 4, 5, 4.5 ], "texture": "#texture" }, + "west": { "uv": [ 11, 4, 14.5, 4.5 ], "texture": "#texture" }, + "east": { "uv": [ 1.5, 4, 5, 4.5 ], "texture": "#texture" } + } + }, + { + "__comment": "Cube13", + "from": [ 7.0002, 8.6257, 0.6241 ], + "to": [ 8.500198, 17.6257, 1.6241 ], + "faces": { + "down": { "uv": [ 7, 5.75, 8.5, 6.75 ], "texture": "#texture" }, + "up": { "uv": [ 9, 6.75, 7.5, 5.75 ], "texture": "#texture" }, + "north": { "uv": [ 8.5, 16, 7, 9.25 ], "texture": "#texture" }, + "south": { "uv": [ 7, 0, 8.5, 6.75 ], "texture": "#texture" }, + "west": { "uv": [ 0, 5.75, 6.75, 6.75 ], "texture": "#texture", "rotation": 90 }, + "east": { "uv": [ 9.25, 5.75, 16, 6.75 ], "texture": "#texture", "rotation": 270 } + } + }, + { + "__comment": "Cube14", + "from": [ 6.8748, 9.250199, 1.1242 ], + "to": [ 7.8748, 16.2502, 2.12419 ], + "faces": { + "down": { "uv": [ 6.875, 5.25, 7.875, 6.25 ], "texture": "#texture1" }, + "up": { "uv": [ 9.125, 6.25, 8.125, 5.25 ], "texture": "#texture1" }, + "north": { "uv": [ 7.875, 16, 6.875, 9.875 ], "texture": "#texture1" }, + "south": { "uv": [ 6.875, 0, 7.875, 6.125 ], "texture": "#texture1" }, + "west": { "uv": [ 0, 5.25, 6.125, 6.25 ], "texture": "#texture1", "rotation": 90 }, + "east": { "uv": [ 9.875, 5.25, 16, 6.25 ], "texture": "#texture1", "rotation": 270 } + } + }, + { + "__comment": "Cube15", + "from": [ 7.4988, 14.8752, -0.0017 ], + "to": [ 7.9988, 15.3752, 0.9983 ], + "faces": { + "down": { "uv": [ 7.5, 6.375, 8, 7.375 ], "texture": "#texture1" }, + "up": { "uv": [ 8.5, 7.375, 8, 6.375 ], "texture": "#texture1" }, + "north": { "uv": [ 8, 16, 7.5, 15.5 ], "texture": "#texture1" }, + "south": { "uv": [ 7.5, 0, 8, 0.5 ], "texture": "#texture1" }, + "west": { "uv": [ 0, 6.375, 0.5, 7.375 ], "texture": "#texture1", "rotation": 90 }, + "east": { "uv": [ 15.5, 6.375, 16, 7.375 ], "texture": "#texture1", "rotation": 270 } + } + }, + { + "__comment": "Cube16", + "from": [ 7.4991, 14.8755, -0.4997 ], + "to": [ 7.9991, 15.8755, 0.00030002 ], + "faces": { + "down": { "uv": [ 7.5, 7.375, 8, 7.875 ], "texture": "#texture1" }, + "up": { "uv": [ 8.5, 7.875, 8, 7.375 ], "texture": "#texture1" }, + "north": { "uv": [ 8, 16, 7.5, 15.5 ], "texture": "#texture1" }, + "south": { "uv": [ 7.5, 0, 8, 0.5 ], "texture": "#texture1" }, + "west": { "uv": [ 0, 7.375, 0.5, 7.875 ], "texture": "#texture1", "rotation": 90 }, + "east": { "uv": [ 15.5, 7.375, 16, 7.875 ], "texture": "#texture1", "rotation": 270 } + } + }, + { + "__comment": "Cube17", + "from": [ 7.5011, 11.5547, -4.0843 ], + "to": [ 8.001099, 12.0547, -1.0843 ], + "rotation": { "origin": [ 7.2496, 13.1254, 2.2497 ], "axis": "x", "angle": 67.5 }, + "faces": { + "down": { "uv": [ 4, 0, 4.5, 2 ], "texture": "#texture1" }, + "up": { "uv": [ 4, 14, 4.5, 16 ], "texture": "#texture1" }, + "north": { "uv": [ 11.5, 8, 12, 8.5 ], "texture": "#texture1" }, + "south": { "uv": [ 4, 8, 4.5, 8.5 ], "texture": "#texture1" }, + "west": { "uv": [ 14, 8, 16, 8.5 ], "texture": "#texture1" }, + "east": { "uv": [ 0, 8, 2, 8.5 ], "texture": "#texture1" } + } + }, + { + "__comment": "Cube18", + "from": [ 7.4986, 14.0391, -5.8817 ], + "to": [ 7.9986, 14.5391, -3.881701 ], + "rotation": { "origin": [ 7.2496, 13.1254, 2.2497 ], "axis": "x", "angle": 45 }, + "faces": { + "down": { "uv": [ 4, 7.5, 4.5, 9.5 ], "texture": "#texture1" }, + "up": { "uv": [ 12, 9.5, 11.5, 7.5 ], "texture": "#texture1" }, + "north": { "uv": [ 4.5, 1.5, 4, 1 ], "texture": "#texture1" }, + "south": { "uv": [ 4, 14.5, 4.5, 15 ], "texture": "#texture1" }, + "west": { "uv": [ 14.5, 7.5, 15, 9.5 ], "texture": "#texture1", "rotation": 90 }, + "east": { "uv": [ 1, 7.5, 1.5, 9.5 ], "texture": "#texture1", "rotation": 270 } + } + }, + { + "__comment": "Cube19", + "from": [ 6.3749, 10.2079, 3.9293 ], + "to": [ 6.8749, 10.7079, 5.4293 ], + "rotation": { "origin": [ 7.2496, 13.1254, 2.2497 ], "axis": "x", "angle": 45 }, + "faces": { + "down": { "uv": [ 4, 10.5, 5, 12 ], "texture": "#texture1" }, + "up": { "uv": [ 4, 4, 5, 5.5 ], "texture": "#texture1" }, + "north": { "uv": [ 11, 8.5, 12, 9 ], "texture": "#texture1" }, + "south": { "uv": [ 4, 8.5, 5, 9 ], "texture": "#texture1" }, + "west": { "uv": [ 4, 8.5, 5.5, 9 ], "texture": "#texture1" }, + "east": { "uv": [ 10.5, 8.5, 12, 9 ], "texture": "#texture1" } + } + }, + { + "__comment": "Cube20", + "from": [ 6.3738, 8.8751, 2.3744 ], + "to": [ 6.8738, 9.3751, 3.3744 ], + "faces": { + "down": { "uv": [ 4, 7.5, 5, 9 ], "texture": "#texture1" }, + "up": { "uv": [ 12, 9, 11, 7.5 ], "texture": "#texture1" }, + "north": { "uv": [ 5, 12, 4, 11.5 ], "texture": "#texture1" }, + "south": { "uv": [ 4, 4, 5, 4.5 ], "texture": "#texture1" }, + "west": { "uv": [ 4, 7.5, 4.5, 9 ], "texture": "#texture1", "rotation": 90 }, + "east": { "uv": [ 11.5, 7.5, 12, 9 ], "texture": "#texture1", "rotation": 270 } + } + }, + { + "__comment": "Cube21", + "from": [ 6.3746, 12.4979, 6.0499 ], + "to": [ 6.8746, 13.9979, 6.5499 ], + "rotation": { "origin": [ 7.2496, 13.1254, 2.2497 ], "axis": "x", "angle": 67.5 }, + "faces": { + "down": { "uv": [ 4, 11.5, 5, 12 ], "texture": "#texture1" }, + "up": { "uv": [ 4, 4, 5, 4.5 ], "texture": "#texture1" }, + "north": { "uv": [ 11, 7.5, 12, 9 ], "texture": "#texture1" }, + "south": { "uv": [ 4, 7.5, 5, 9 ], "texture": "#texture1" }, + "west": { "uv": [ 4, 7.5, 4.5, 9 ], "texture": "#texture1" }, + "east": { "uv": [ 11.5, 7.5, 12, 9 ], "texture": "#texture1" } + } + }, + { + "__comment": "Cube22", + "from": [ 6.3758, 9.5001, 4.2504 ], + "to": [ 6.8758, 11.0001, 4.7504 ], + "faces": { + "down": { "uv": [ 4, 2.5, 4.5, 3 ], "texture": "#texture1" }, + "up": { "uv": [ 12, 3, 11.5, 2.5 ], "texture": "#texture1" }, + "north": { "uv": [ 4.5, 12.5, 4, 11 ], "texture": "#texture1" }, + "south": { "uv": [ 4, 3.5, 4.5, 5 ], "texture": "#texture1" }, + "west": { "uv": [ 3.5, 2.5, 5, 3 ], "texture": "#texture1", "rotation": 90 }, + "east": { "uv": [ 11, 2.5, 12.5, 3 ], "texture": "#texture1", "rotation": 270 } + } + }, + { + "__comment": "Cube23", + "from": [ 7.0006, 12.625, 2.6246 ], + "to": [ 7.5006, 13.125, 3.1246 ], + "faces": { + "down": { "uv": [ 7, 4.25, 7.5, 4.75 ], "texture": "#texture1" }, + "up": { "uv": [ 9, 4.75, 8.5, 4.25 ], "texture": "#texture1" }, + "north": { "uv": [ 7.5, 13.75, 7, 13.25 ], "texture": "#texture1" }, + "south": { "uv": [ 7, 2.25, 7.5, 2.75 ], "texture": "#texture1" }, + "west": { "uv": [ 2.25, 4.25, 2.75, 4.75 ], "texture": "#texture1", "rotation": 90 }, + "east": { "uv": [ 13.25, 4.25, 13.75, 4.75 ], "texture": "#texture1", "rotation": 270 } + } + }, + { + "__comment": "Cube24", + "from": [ 7.4998, -13.6253, 2.8744 ], + "to": [ 7.9998, -13.1253, 3.3744 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8, 4.5 ], "texture": "#texture1" }, + "up": { "uv": [ 8.5, 4.5, 8, 4 ], "texture": "#texture1" }, + "north": { "uv": [ 8, 3.5, 7.5, 3 ], "texture": "#texture1" }, + "south": { "uv": [ 7.5, 12.5, 8, 13 ], "texture": "#texture1" }, + "west": { "uv": [ 12.5, 4, 13, 4.5 ], "texture": "#texture1", "rotation": 90 }, + "east": { "uv": [ 3, 4, 3.5, 4.5 ], "texture": "#texture1", "rotation": 270 } + } + }, + { + "__comment": "Cube25", + "from": [ 7.4999, -14.3741, 1.9993 ], + "to": [ 7.9999, 13.12591, 2.9993 ], + "faces": { + "down": { "uv": [ 7.5, 4.375, 8, 5.375 ], "texture": "#texture1" }, + "up": { "uv": [ 8.5, 5.375, 8, 4.375 ], "texture": "#texture1" }, + "north": { "uv": [ 8, 13.5, 7.5, 0 ], "texture": "#texture1" }, + "south": { "uv": [ 7.5, 2.5, 8, 16 ], "texture": "#texture1" }, + "west": { "uv": [ 2.5, 4.375, 16, 5.375 ], "texture": "#texture1", "rotation": 90 }, + "east": { "uv": [ 0, 4.375, 13.5, 5.375 ], "texture": "#texture1", "rotation": 270 } + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [ 90, -180, 0 ], + "translation": [ -2, 6.7, -6.7 ] + }, + "thirdperson_lefthand": { + "rotation": [ 6, 0, 0 ], + "translation": [ 0.0002, -1.389, 13.912 ] + }, + "firstperson_righthand": { + "rotation": [ 29, 166, 0 ], + "translation": [ -2.781, 2.0869, 0.0003 ] + }, + "firstperson_lefthand": { + "rotation": [ -60, 0, 0 ], + "translation": [ 0, 7.6544, 6.2598 ] + }, + "gui": { + "rotation": [ 90, 135, -90 ], + "translation": [ 0, -1.4, 0 ], + "scale": [ 0.5, 0.5, 0.5 ] + }, + "fixed": { + "rotation": [ 90, -90, 90 ], + "translation": [ 0.7, -4.182, -0.695 ], + "scale": [ 2, 2, 2 ] + } + } +} \ No newline at end of file diff --git a/1.11/src/main/resources/assets/forgecraft/models/item/matchlock_musket_model_use.json b/1.11/src/main/resources/assets/forgecraft/models/item/matchlock_musket_model_use.json new file mode 100644 index 00000000..72b63fa1 --- /dev/null +++ b/1.11/src/main/resources/assets/forgecraft/models/item/matchlock_musket_model_use.json @@ -0,0 +1,372 @@ +{ + "__comment": "Designed by Captainaviator with Cubik Studio - https://cubik.studio", + "textures": { + "particle": "items/iron_ingot", + "texture": "blocks/planks_oak", + "texture1": "items/iron_ingot" + }, + "elements": [ + { + "__comment": "Barrel", + "from": [ 7.2496, 10.8754, 2.2497 ], + "to": [ 8.2496, 11.3754, 29.7497 ], + "faces": { + "down": { "uv": [ 7.25, 0, 8.25, 13.75 ], "texture": "#texture1" }, + "up": { "uv": [ 7.25, 2.25, 8.25, 16 ], "texture": "#texture1" }, + "north": { "uv": [ 7.75, 4.625, 8.75, 5.125 ], "texture": "#texture1" }, + "south": { "uv": [ 7.25, 4.625, 8.25, 5.125 ], "texture": "#texture1" }, + "west": { "uv": [ 2.25, 4.625, 16, 5.125 ], "texture": "#texture1" }, + "east": { "uv": [ 0, 4.625, 13.75, 5.125 ], "texture": "#texture1" } + } + }, + { + "__comment": "Cube2", + "from": [ 7.0003, 9.7492, -1.4995 ], + "to": [ 8.500299, 11.2492, 24.50051 ], + "faces": { + "down": { "uv": [ 7, 0, 8.5, 16 ], "texture": "#texture" }, + "up": { "uv": [ 7, 0, 8.5, 16 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 4.75, 9, 6.25 ], "texture": "#texture" }, + "south": { "uv": [ 7, 4.75, 8.5, 6.25 ], "texture": "#texture" }, + "west": { "uv": [ 0, 4.75, 16, 6.25 ], "texture": "#texture" }, + "east": { "uv": [ 0, 4.75, 16, 6.25 ], "texture": "#texture" } + } + }, + { + "__comment": "Cube3", + "from": [ 6.9996, 10.2501, 24.2504 ], + "to": [ 8.4996, 11.2501, 28.2504 ], + "faces": { + "down": { "uv": [ 7, 3.75, 8.5, 7.75 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.25, 8.5, 12.25 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 4.75, 9, 5.75 ], "texture": "#texture" }, + "south": { "uv": [ 7, 4.75, 8.5, 5.75 ], "texture": "#texture" }, + "west": { "uv": [ 8.25, 4.75, 12.25, 5.75 ], "texture": "#texture" }, + "east": { "uv": [ 3.75, 4.75, 7.75, 5.75 ], "texture": "#texture" } + } + }, + { + "__comment": "Cube4", + "from": [ 7.5002, 9.8742, 24.2493 ], + "to": [ 8.000199, 10.3742, 28.7493 ], + "faces": { + "down": { "uv": [ 7.5, 3.25, 8, 7.75 ], "texture": "#texture1" }, + "up": { "uv": [ 7.5, 8.25, 8, 12.75 ], "texture": "#texture1" }, + "north": { "uv": [ 8, 5.625, 8.5, 6.125 ], "texture": "#texture1" }, + "south": { "uv": [ 7.5, 5.625, 8, 6.125 ], "texture": "#texture1" }, + "west": { "uv": [ 8.25, 5.625, 12.75, 6.125 ], "texture": "#texture1" }, + "east": { "uv": [ 3.25, 5.625, 7.75, 6.125 ], "texture": "#texture1" } + } + }, + { + "__comment": "Cube5", + "from": [ 6.999, 7.2074, -6.2933 ], + "to": [ 8.499, 8.707398, -0.2932992 ], + "rotation": { "origin": [ 7, 7.5, -7 ], "axis": "x", "angle": -22.5 }, + "faces": { + "down": { "uv": [ 4, 5.5, 5, 9 ], "texture": "#texture", "cullface": "down" }, + "up": { "uv": [ 12, 9, 11, 5.5 ], "texture": "#texture", "cullface": "up" }, + "north": { "uv": [ 5, 6, 4, 4.5 ], "texture": "#texture", "cullface": "north" }, + "south": { "uv": [ 4, 10, 5, 11.5 ], "texture": "#texture", "cullface": "south" }, + "west": { "uv": [ 10, 5.5, 11.5, 9 ], "texture": "#texture", "cullface": "west", "rotation": 90 }, + "east": { "uv": [ 4.5, 5.5, 6, 9 ], "texture": "#texture", "cullface": "east", "rotation": 270 } + } + }, + { + "__comment": "Cube6", + "from": [ 6.9988, 8.2486, -7.3751 ], + "to": [ 8.498799, 10.7486, -6.3751 ], + "rotation": { "origin": [ 7, 8.25, -7.375 ], "axis": "x", "angle": -22.5 }, + "faces": { + "down": { "uv": [ 4, 10, 5, 11.5 ], "texture": "#texture" }, + "up": { "uv": [ 4, 4.5, 5, 6 ], "texture": "#texture" }, + "north": { "uv": [ 11, 6, 12, 11.5 ], "texture": "#texture" }, + "south": { "uv": [ 4, 6, 5, 11.5 ], "texture": "#texture" }, + "west": { "uv": [ 4.5, 6, 6, 11.5 ], "texture": "#texture" }, + "east": { "uv": [ 10, 6, 11.5, 11.5 ], "texture": "#texture" } + } + }, + { + "__comment": "Cube7", + "from": [ 6.9998, 5.6255, -6.9777 ], + "to": [ 8.4998, 9.1255, -5.4777 ], + "rotation": { "origin": [ 7, 9.375, -5.375 ], "axis": "x", "angle": 22.5 }, + "faces": { + "down": { "uv": [ 4, 8, 5, 9 ], "texture": "#texture" }, + "up": { "uv": [ 4, 7, 5, 8 ], "texture": "#texture" }, + "north": { "uv": [ 5, 5.5, 4, 2 ], "texture": "#texture" }, + "south": { "uv": [ 12, 5.5, 11, 2 ], "texture": "#texture" }, + "west": { "uv": [ 8, 2, 9, 5.5 ], "texture": "#texture", "rotation": 180 }, + "east": { "uv": [ 7, 2, 8, 5.5 ], "texture": "#texture", "rotation": 180 } + } + }, + { + "__comment": "Cube8", + "from": [ 6.9997, 10.0006, -7.8747 ], + "to": [ 8.499701, 11.0006, -4.8747 ], + "rotation": { "origin": [ 7, 10, -7.875 ], "axis": "x", "angle": 22.5 }, + "faces": { + "down": { "uv": [ 4, 3.5, 5, 10.5 ], "texture": "#texture" }, + "up": { "uv": [ 4, 5.5, 5, 12.5 ], "texture": "#texture" }, + "north": { "uv": [ 11, 5, 12, 6 ], "texture": "#texture" }, + "south": { "uv": [ 4, 5, 5, 6 ], "texture": "#texture" }, + "west": { "uv": [ 5.5, 5, 12.5, 6 ], "texture": "#texture" }, + "east": { "uv": [ 3.5, 5, 10.5, 6 ], "texture": "#texture" } + } + }, + { + "__comment": "Cube9", + "from": [ 6.9987, 9.7492, -2.9993 ], + "to": [ 8.498699, 10.74921, -1.9993 ], + "faces": { + "down": { "uv": [ 7, 2, 8.5, 3 ], "texture": "#texture" }, + "up": { "uv": [ 7, 13, 8.5, 14 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 5.25, 9, 6.25 ], "texture": "#texture" }, + "south": { "uv": [ 7, 5.25, 8.5, 6.25 ], "texture": "#texture" }, + "west": { "uv": [ 13, 5.25, 14, 6.25 ], "texture": "#texture" }, + "east": { "uv": [ 2, 5.25, 3, 6.25 ], "texture": "#texture" } + } + }, + { + "__comment": "Cube10", + "from": [ 7.0001, 7.2486, -7.8757 ], + "to": [ 8.500099, 9.7486, -6.8757 ], + "faces": { + "down": { "uv": [ 7, 6.875, 8.5, 7.875 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.125, 8.5, 9.125 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 6.25, 9, 8.75 ], "texture": "#texture" }, + "south": { "uv": [ 7, 6.25, 8.5, 8.75 ], "texture": "#texture" }, + "west": { "uv": [ 8.125, 6.25, 9.125, 8.75 ], "texture": "#texture" }, + "east": { "uv": [ 6.875, 6.25, 7.875, 8.75 ], "texture": "#texture" } + } + }, + { + "__comment": "Cube11", + "from": [ 7.0011, 9.0013, -7.0008 ], + "to": [ 8.501099, 10.5013, -4.0008 ], + "faces": { + "down": { "uv": [ 7, 4, 8.5, 7 ], "texture": "#texture" }, + "up": { "uv": [ 7, 9, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 5.5, 9, 7 ], "texture": "#texture" }, + "south": { "uv": [ 7, 5.5, 8.5, 7 ], "texture": "#texture" }, + "west": { "uv": [ 9, 5.5, 12, 7 ], "texture": "#texture" }, + "east": { "uv": [ 4, 5.5, 7, 7 ], "texture": "#texture" } + } + }, + { + "__comment": "Cube12", + "from": [ 6.9991, 8.500899, -6.8746 ], + "to": [ 8.4991, 9.500899, -2.3746 ], + "rotation": { "origin": [ 7, 8.5, -6.875 ], "axis": "x", "angle": -22.5 }, + "faces": { + "down": { "uv": [ 4, 1.5, 5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 4, 11, 5, 14.5 ], "texture": "#texture" }, + "north": { "uv": [ 11, 4, 12, 4.5 ], "texture": "#texture" }, + "south": { "uv": [ 4, 4, 5, 4.5 ], "texture": "#texture" }, + "west": { "uv": [ 11, 4, 14.5, 4.5 ], "texture": "#texture" }, + "east": { "uv": [ 1.5, 4, 5, 4.5 ], "texture": "#texture" } + } + }, + { + "__comment": "Cube13", + "from": [ 7.0002, 9.2499, -2.2506 ], + "to": [ 8.500198, 10.2499, 6.749401 ], + "faces": { + "down": { "uv": [ 7, 9.25, 8.5, 16 ], "texture": "#texture" }, + "up": { "uv": [ 7, 0, 8.5, 6.75 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 5.75, 9, 6.75 ], "texture": "#texture" }, + "south": { "uv": [ 7, 5.75, 8.5, 6.75 ], "texture": "#texture" }, + "west": { "uv": [ 0, 5.75, 6.75, 6.75 ], "texture": "#texture" }, + "east": { "uv": [ 9.25, 5.75, 16, 6.75 ], "texture": "#texture" } + } + }, + { + "__comment": "Cube14", + "from": [ 6.8748, 9.75, -0.8751 ], + "to": [ 7.8748, 10.74999, 6.1249 ], + "faces": { + "down": { "uv": [ 6.875, 9.875, 7.875, 16 ], "texture": "#texture1" }, + "up": { "uv": [ 6.875, 0, 7.875, 6.125 ], "texture": "#texture1" }, + "north": { "uv": [ 8.125, 5.25, 9.125, 6.25 ], "texture": "#texture1" }, + "south": { "uv": [ 6.875, 5.25, 7.875, 6.25 ], "texture": "#texture1" }, + "west": { "uv": [ 0, 5.25, 6.125, 6.25 ], "texture": "#texture1" }, + "east": { "uv": [ 9.875, 5.25, 16, 6.25 ], "texture": "#texture1" } + } + }, + { + "__comment": "Cube15", + "from": [ 7.4988, 8.624, -0.0001 ], + "to": [ 7.9988, 9.624, 0.4999 ], + "faces": { + "down": { "uv": [ 7.5, 15.5, 8, 16 ], "texture": "#texture1" }, + "up": { "uv": [ 7.5, 0, 8, 0.5 ], "texture": "#texture1" }, + "north": { "uv": [ 8, 6.375, 8.5, 7.375 ], "texture": "#texture1" }, + "south": { "uv": [ 7.5, 6.375, 8, 7.375 ], "texture": "#texture1" }, + "west": { "uv": [ 0, 6.375, 0.5, 7.375 ], "texture": "#texture1" }, + "east": { "uv": [ 15.5, 6.375, 16, 7.375 ], "texture": "#texture1" } + } + }, + { + "__comment": "Cube16", + "from": [ 7.4991, 8.1261, -0.5004 ], + "to": [ 7.9991, 8.6261, 0.4996 ], + "faces": { + "down": { "uv": [ 7.5, 15.5, 8, 16 ], "texture": "#texture1" }, + "up": { "uv": [ 7.5, 0, 8, 0.5 ], "texture": "#texture1" }, + "north": { "uv": [ 8, 7.375, 8.5, 7.875 ], "texture": "#texture1" }, + "south": { "uv": [ 7.5, 7.375, 8, 7.875 ], "texture": "#texture1" }, + "west": { "uv": [ 0, 7.375, 0.5, 7.875 ], "texture": "#texture1" }, + "east": { "uv": [ 15.5, 7.375, 16, 7.875 ], "texture": "#texture1" } + } + }, + { + "__comment": "Cube17", + "from": [ 7.5011, 7.0007, -3.0009 ], + "to": [ 8.0011, 7.5007, -0.0009000301 ], + "rotation": { "origin": [ 7.5, 7, -3 ], "axis": "x", "angle": -22.5 }, + "faces": { + "down": { "uv": [ 4, 0, 4.5, 2 ], "texture": "#texture1" }, + "up": { "uv": [ 4, 14, 4.5, 16 ], "texture": "#texture1" }, + "north": { "uv": [ 11.5, 8, 12, 8.5 ], "texture": "#texture1" }, + "south": { "uv": [ 4, 8, 4.5, 8.5 ], "texture": "#texture1" }, + "west": { "uv": [ 14, 8, 16, 8.5 ], "texture": "#texture1" }, + "east": { "uv": [ 0, 8, 2, 8.5 ], "texture": "#texture1" } + } + }, + { + "__comment": "Cube18", + "from": [ 7.4986, 6.1255, -4.5 ], + "to": [ 7.9986, 8.1255, -4 ], + "rotation": { "origin": [ 7.5, 6.125, -4.5 ], "axis": "x", "angle": 45 }, + "faces": { + "down": { "uv": [ 4, 1, 4.5, 1.5 ], "texture": "#texture1" }, + "up": { "uv": [ 4, 14.5, 4.5, 15 ], "texture": "#texture1" }, + "north": { "uv": [ 11.5, 7.5, 12, 9.5 ], "texture": "#texture1" }, + "south": { "uv": [ 4, 7.5, 4.5, 9.5 ], "texture": "#texture1" }, + "west": { "uv": [ 14.5, 7.5, 15, 9.5 ], "texture": "#texture1" }, + "east": { "uv": [ 1, 7.5, 1.5, 9.5 ], "texture": "#texture1" } + } + }, + { + "__comment": "Cube19", + "from": [ 6.3749, 9.9998, 5.5003 ], + "to": [ 6.8749, 10.4998, 7.0003 ], + "rotation": { "origin": [ 6.375, 10, 5.5 ], "axis": "x", "angle": -45 }, + "faces": { + "down": { "uv": [ 4, 10.5, 5, 12 ], "texture": "#texture1" }, + "up": { "uv": [ 4, 4, 5, 5.5 ], "texture": "#texture1" }, + "north": { "uv": [ 11, 8.5, 12, 9 ], "texture": "#texture1" }, + "south": { "uv": [ 4, 8.5, 5, 9 ], "texture": "#texture1" }, + "west": { "uv": [ 4, 8.5, 5.5, 9 ], "texture": "#texture1" }, + "east": { "uv": [ 10.5, 8.5, 12, 9 ], "texture": "#texture1" } + } + }, + { + "__comment": "Cube20", + "from": [ 6.3738, 11, 6 ], + "to": [ 6.8738, 12, 6.5 ], + "faces": { + "down": { "uv": [ 4, 11.5, 5, 12 ], "texture": "#texture1" }, + "up": { "uv": [ 4, 4, 5, 4.5 ], "texture": "#texture1" }, + "north": { "uv": [ 11, 7.5, 12, 9 ], "texture": "#texture1" }, + "south": { "uv": [ 4, 7.5, 5, 9 ], "texture": "#texture1" }, + "west": { "uv": [ 4, 7.5, 4.5, 9 ], "texture": "#texture1" }, + "east": { "uv": [ 11.5, 7.5, 12, 9 ], "texture": "#texture1" } + } + }, + { + "__comment": "Cube21", + "from": [ 6.3746, 11.7497, 6.0007 ], + "to": [ 6.8746, 13.2497, 6.5007 ], + "rotation": { "origin": [ 6.375, 11.75, 6 ], "axis": "x", "angle": -22.5 }, + "faces": { + "down": { "uv": [ 4, 11.5, 5, 12 ], "texture": "#texture1" }, + "up": { "uv": [ 4, 4, 5, 4.5 ], "texture": "#texture1" }, + "north": { "uv": [ 11, 7.5, 12, 9 ], "texture": "#texture1" }, + "south": { "uv": [ 4, 7.5, 5, 9 ], "texture": "#texture1" }, + "west": { "uv": [ 4, 7.5, 4.5, 9 ], "texture": "#texture1" }, + "east": { "uv": [ 11.5, 7.5, 12, 9 ], "texture": "#texture1" } + } + }, + { + "__comment": "Cube22", + "from": [ 6.3758, 12.8761, 4.375 ], + "to": [ 6.8758, 13.3761, 5.875 ], + "faces": { + "down": { "uv": [ 4, 11, 4.5, 12.5 ], "texture": "#texture1" }, + "up": { "uv": [ 4, 3.5, 4.5, 5 ], "texture": "#texture1" }, + "north": { "uv": [ 11.5, 2.5, 12, 3 ], "texture": "#texture1" }, + "south": { "uv": [ 4, 2.5, 4.5, 3 ], "texture": "#texture1" }, + "west": { "uv": [ 3.5, 2.5, 5, 3 ], "texture": "#texture1" }, + "east": { "uv": [ 11, 2.5, 12.5, 3 ], "texture": "#texture1" } + } + }, + { + "__comment": "Cube23", + "from": [ 7.0006, 11.2503, 2.2501 ], + "to": [ 7.5006, 11.7503, 2.7501 ], + "faces": { + "down": { "uv": [ 7, 13.25, 7.5, 13.75 ], "texture": "#texture1" }, + "up": { "uv": [ 7, 2.25, 7.5, 2.75 ], "texture": "#texture1" }, + "north": { "uv": [ 8.5, 4.25, 9, 4.75 ], "texture": "#texture1" }, + "south": { "uv": [ 7, 4.25, 7.5, 4.75 ], "texture": "#texture1" }, + "west": { "uv": [ 2.25, 4.25, 2.75, 4.75 ], "texture": "#texture1" }, + "east": { "uv": [ 13.25, 4.25, 13.75, 4.75 ], "texture": "#texture1" } + } + }, + { + "__comment": "Cube24", + "from": [ 7.4998, 11.4994, 28.5001 ], + "to": [ 7.9998, 11.9994, 29.0001 ], + "faces": { + "down": { "uv": [ 7.5, 3, 8, 3.5 ], "texture": "#texture1" }, + "up": { "uv": [ 7.5, 12.5, 8, 13 ], "texture": "#texture1" }, + "north": { "uv": [ 8, 4, 8.5, 4.5 ], "texture": "#texture1" }, + "south": { "uv": [ 7.5, 4, 8, 4.5 ], "texture": "#texture1" }, + "west": { "uv": [ 12.5, 4, 13, 4.5 ], "texture": "#texture1" }, + "east": { "uv": [ 3, 4, 3.5, 4.5 ], "texture": "#texture1" } + } + }, + { + "__comment": "Cube25", + "from": [ 7.4999, 10.625, 2.2492 ], + "to": [ 7.9999, 11.625, 29.74921 ], + "faces": { + "down": { "uv": [ 7.5, 0, 8, 13.5 ], "texture": "#texture1" }, + "up": { "uv": [ 7.5, 2.5, 8, 16 ], "texture": "#texture1" }, + "north": { "uv": [ 8, 4.375, 8.5, 5.375 ], "texture": "#texture1" }, + "south": { "uv": [ 7.5, 4.375, 8, 5.375 ], "texture": "#texture1" }, + "west": { "uv": [ 2.5, 4.375, 16, 5.375 ], "texture": "#texture1" }, + "east": { "uv": [ 0, 4.375, 13.5, 5.375 ], "texture": "#texture1" } + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [ 0, -180, 0 ], + "translation": [ -1.7, -1.7, -6.956 ] + }, + "thirdperson_lefthand": { + "rotation": [ 6, 0, 0 ], + "translation": [ 0.0002, -1.389, 13.912 ] + }, + "firstperson_righthand": { + "rotation": [ 22, -175, -3 ], + "translation": [ -4, 1, 0 ] + }, + "firstperson_lefthand": { + "rotation": [ -60, 0, 0 ], + "translation": [ 0, 7.6544, 6.2598 ] + }, + "gui": { + "rotation": [ 90, 135, -90 ], + "translation": [ 0, -1.4, 0 ], + "scale": [ 0.5, 0.5, 0.5 ] + }, + "fixed": { + "rotation": [ 90, -90, 90 ], + "translation": [ 0.7, -4.182, -0.695 ], + "scale": [ 2, 2, 2 ] + } + } +} \ No newline at end of file