updating toolbench weapon upgrade feature

This commit is contained in:
Mohammad-Ali Minaie
2018-10-25 01:14:37 -04:00
parent d4881ea454
commit b6cbeac459
39 changed files with 1584 additions and 1907 deletions

View File

@@ -54,13 +54,25 @@ public class Workbench extends CustomContainerFacing {
ItemStack slot6 = tile.getSlotStack(6);
if (hitY > 0.5D) {
if (!player.isSneaking()) {
/*if (tile.isItemValidForSlot(6, playerStack)) {
if (tile.isItemValidForSlot(6, playerStack)) {
if (slot6.isEmpty()) {
tile.setSlotStack(6, playerStack.splitStack(1));
//player.inventory.getCurrentItem().shrink(1);
return true;
if (slot2.isEmpty() && slot3.isEmpty() && slot4.isEmpty() && slot5.isEmpty()) {
ItemStack tempStack = player.inventory.getCurrentItem().copy();
tempStack.setCount(1);
tile.setSlotStack(6, tempStack);
player.inventory.setInventorySlotContents(player.inventory.currentItem, ItemStack.EMPTY);
System.out.println(tile.getSlotStack(0));
System.out.println(tile.getSlotStack(1));
System.out.println(tile.getSlotStack(2));
System.out.println(tile.getSlotStack(3));
System.out.println(tile.getSlotStack(4));
System.out.println(tile.getSlotStack(5));
System.out.println(tile.getSlotStack(6));
return true;
}
}
}*/
}
if(! (playerStack.getItem() instanceof Gallagher)) {
if (slot4.isEmpty() && slot3.isEmpty() && slot2.isEmpty()) {
if (tile.isItemValidForSlot(5, playerStack)) {
@@ -71,25 +83,27 @@ public class Workbench extends CustomContainerFacing {
}
}
}
if (tile.isItemValidForSlot(4, playerStack)) {
if (slot4.isEmpty()) {
tile.setSlotStack(4, playerStack.splitStack(1));
//player.inventory.getCurrentItem().shrink(1);
return true;
if(slot5.isEmpty()) {
if (tile.isItemValidForSlot(4, playerStack)) {
if (slot4.isEmpty()) {
tile.setSlotStack(4, playerStack.splitStack(1));
//player.inventory.getCurrentItem().shrink(1);
return true;
}
}
}
if (tile.isItemValidForSlot(3, playerStack)) {
if (slot3.isEmpty()) {
tile.setSlotStack(3, playerStack.splitStack(1));
//player.inventory.getCurrentItem().shrink(1);
return true;
if (tile.isItemValidForSlot(3, playerStack)) {
if (slot3.isEmpty()) {
tile.setSlotStack(3, playerStack.splitStack(1));
//player.inventory.getCurrentItem().shrink(1);
return true;
}
}
}
if (tile.isItemValidForSlot(2, playerStack)) {
if (slot2.isEmpty()) {
tile.setSlotStack(2, playerStack.splitStack(1));
//player.inventory.getCurrentItem().shrink(1);
return true;
if (tile.isItemValidForSlot(2, playerStack)) {
if (slot2.isEmpty()) {
tile.setSlotStack(2, playerStack.splitStack(1));
//player.inventory.getCurrentItem().shrink(1);
return true;
}
}
}
}
@@ -132,24 +146,38 @@ public class Workbench extends CustomContainerFacing {
}
if(player.isSneaking()){
if(!slot2.isEmpty()){
PlayerHelper.spawnItemOnPlayer(world, player, slot2);
PlayerHelper.spawnItemOnPlayer(world, player, tile.getSlotStack(2));
tile.clearSlot(2);
return true;
}
if(!slot3.isEmpty()){
PlayerHelper.spawnItemOnPlayer(world, player, slot3);
PlayerHelper.spawnItemOnPlayer(world, player, tile.getSlotStack(3));
tile.clearSlot(3);
return true;
}
if(!slot4.isEmpty()){
PlayerHelper.spawnItemOnPlayer(world, player, slot4);
PlayerHelper.spawnItemOnPlayer(world, player, tile.getSlotStack(4));
tile.clearSlot(4);
return true;
}
if(!slot5.isEmpty()){
PlayerHelper.spawnItemOnPlayer(world, player, slot5);
PlayerHelper.spawnItemOnPlayer(world, player, tile.getSlotStack(5));
tile.clearSlot(5);
return true;
}
if(!slot6.isEmpty()){
PlayerHelper.spawnItemOnPlayer(world, player, slot6);
System.out.println(tile.getSlotStack(0));
System.out.println(tile.getSlotStack(1));
System.out.println(tile.getSlotStack(2));
System.out.println(tile.getSlotStack(3));
System.out.println(tile.getSlotStack(4));
System.out.println(tile.getSlotStack(5));
System.out.println(tile.getSlotStack(6));
PlayerHelper.spawnItemOnPlayer(world, player, tile.getSlotStack(6));
tile.clearSlot(6);
return true;
}
}

View File

@@ -36,7 +36,5 @@ public class ModDictionary {/***************************************************
OreDictionary.registerOre("nuggetWootz", ModItems.wootzchunk);
//}
OreDictionary.registerOre("dustBlaze", Items.BLAZE_POWDER);
OreDictionary.registerOre("weaponHandle", ModItems.bonehandle);
OreDictionary.registerOre("weaponGuard", ModItems.boneguard);
}
}

View File

@@ -120,9 +120,6 @@ public class ModItems {
public static Item wootzshovel;
public static Item wootzhoe;
public static Item bonehandle;
public static Item boneguard;
public static Item rawbronzegladius;
public static Item rawcoppergladius;
public static Item rawwroughtirongladius;
@@ -130,6 +127,16 @@ public class ModItems {
public static Item rawsteelgladius;
public static Item rawwootzgladius;
public static Item rawcleanironlongsword ;
public static Item rawsteellongsword;
public static Item rawwootzlongsword;
public static Item rawironslayer;
public static Item rawcleanironslayer;
public static Item rawsteelslayer;
public static Item rawwootzslayer;
public static Item coppergladius;
public static Item bronzegladius;
public static Item wroughtirongladius;
public static Item cleanirongladius;
@@ -263,8 +270,6 @@ public class ModItems {
/**********
WEAPONS
**********/
bonehandle = new WeaponHandle("bonehandle").setDictionaryNames("weaponHandle");
boneguard = new WeaponGuard("boneguard").setDictionaryNames("weaponGuard");
rawbronzegladius = new WeaponPart("rawbronzegladius", PrimalAPI.ToolMaterials.TOOL_BRONZE);
rawcoppergladius= new WeaponPart("rawcoppergladius", PrimalAPI.ToolMaterials.TOOL_COPPER);
@@ -273,6 +278,16 @@ public class ModItems {
rawsteelgladius= new WeaponPart("rawsteelgladius", PrimalAPI.ToolMaterials.TOOL_BASIC_STEEL);
rawwootzgladius= new WeaponPart("rawwootzgladius", PrimalAPI.ToolMaterials.TOOL_WOOTZ_STEEL);
rawcleanironlongsword = new WeaponPart("rawcleanironlongsword", PrimalAPI.ToolMaterials.TOOL_CLEAN_IRON);
rawsteellongsword = new WeaponPart("rawsteellongsword", PrimalAPI.ToolMaterials.TOOL_BASIC_STEEL);
rawwootzlongsword = new WeaponPart("rawwootzlongsword", PrimalAPI.ToolMaterials.TOOL_WOOTZ_STEEL);
rawironslayer = new WeaponPart("rawironslayer", PrimalAPI.ToolMaterials.TOOL_WROUGHT_IRON);
rawcleanironslayer = new WeaponPart("rawcleanironslayer", PrimalAPI.ToolMaterials.TOOL_CLEAN_IRON);
rawsteelslayer = new WeaponPart("rawsteelslayer", PrimalAPI.ToolMaterials.TOOL_BASIC_STEEL);
rawwootzslayer = new WeaponPart("rawwootzslayer", PrimalAPI.ToolMaterials.TOOL_WOOTZ_STEEL);
coppergladius = new CustomSword("coppergladius", PrimalAPI.ToolMaterials.TOOL_COPPER, 5D, 2D);
bronzegladius = new CustomSword("bronzegladius", PrimalAPI.ToolMaterials.TOOL_BRONZE, 5.5D, 2D);
wroughtirongladius = new CustomSword("wroughtirongladius", PrimalAPI.ToolMaterials.TOOL_WROUGHT_IRON, 4.5D, -1.85D);
cleanirongladius = new CustomSword("cleanirongladius", PrimalAPI.ToolMaterials.TOOL_CLEAN_IRON, 5D, -1.85D);
@@ -425,8 +440,6 @@ public class ModItems {
/**********
WEAPONS
**********/
ForgeRegistries.ITEMS.register(bonehandle);
ForgeRegistries.ITEMS.register(boneguard);
ForgeRegistries.ITEMS.register(rawbronzegladius);
ForgeRegistries.ITEMS.register(rawcoppergladius);
@@ -435,6 +448,15 @@ public class ModItems {
ForgeRegistries.ITEMS.register(rawsteelgladius);
ForgeRegistries.ITEMS.register(rawwootzgladius);
ForgeRegistries.ITEMS.register(rawcleanironlongsword);
ForgeRegistries.ITEMS.register(rawsteellongsword);
ForgeRegistries.ITEMS.register(rawwootzlongsword);
ForgeRegistries.ITEMS.register(rawironslayer);
ForgeRegistries.ITEMS.register(rawcleanironslayer);
ForgeRegistries.ITEMS.register(rawsteelslayer);
ForgeRegistries.ITEMS.register(rawwootzslayer);
ForgeRegistries.ITEMS.register(wroughtirongladius);
ForgeRegistries.ITEMS.register(bronzegladius);
ForgeRegistries.ITEMS.register(cleanirongladius);
@@ -573,9 +595,6 @@ public class ModItems {
WEAPON PARTS
**********/
//registerRender(wroughtironshield);
registerRender(bonehandle);
registerRender(boneguard);
registerRender(rawbronzegladius);
registerRender(rawcoppergladius);
registerRender(rawwroughtirongladius);
@@ -583,6 +602,15 @@ public class ModItems {
registerRender(rawsteelgladius);
registerRender(rawwootzgladius);
registerRender(rawcleanironlongsword);
registerRender(rawsteellongsword);
registerRender(rawwootzlongsword);
registerRender(rawironslayer);
registerRender(rawcleanironslayer);
registerRender(rawsteelslayer);
registerRender(rawwootzslayer);
/**********
WEAPONS
**********/

View File

@@ -13,6 +13,7 @@ import net.minecraft.util.EnumFacing;
import net.minecraft.util.math.BlockPos;
import nmd.primal.core.common.helper.RecipeHelper;
import nmd.primal.forgecraft.blocks.machine.Workbench;
import nmd.primal.forgecraft.items.parts.WeaponGuard;
import nmd.primal.forgecraft.items.parts.WeaponHandle;
import nmd.primal.forgecraft.items.parts.WeaponPart;
import nmd.primal.forgecraft.tiles.TileWorkbench;
@@ -89,7 +90,7 @@ public class TileWorkbenchRender extends TileEntitySpecialRenderer<TileWorkbench
GL11.glPushMatrix();
if(RecipeHelper.isOreName(stack2.getItem(), "cordageGeneral")){
GL11.glTranslated(0.4375, 0.65625D, 0.26D);
GL11.glTranslated(0.3375, 0.64125D, 0.26D);
GL11.glScalef(0.5F, 0.5F, 0.5F);
GL11.glRotated(90.0F, 1.0F, .0F, 0.0F);
//GL11.glRotated(45.0F, 0.0F, 0.0F, 1.0F);
@@ -123,15 +124,13 @@ public class TileWorkbenchRender extends TileEntitySpecialRenderer<TileWorkbench
renderItem.renderItem(stack3, ItemCameraTransforms.TransformType.HEAD);
GL11.glPopMatrix();
}
if(!stack4.isEmpty()){
if(!stack4.isEmpty()) {
GL11.glPushMatrix();
//System.out.println(stack2);
//GL11.glRotated(90.0F, 1.0F, 0.0F, 0.0F);
GL11.glTranslated(0.85, 0.65625D, 0.25D);
GL11.glScalef(0.3F, 0.3F, 0.3F);
GL11.glRotated(45.0F, 0.0F, 1.0F, 0.0F);
GL11.glRotated(90.0F, 1.0F, 0.0F, 0.0F);
renderItem.renderItem(stack4, ItemCameraTransforms.TransformType.FIXED);
GL11.glPopMatrix();
}
@@ -183,21 +182,31 @@ public class TileWorkbenchRender extends TileEntitySpecialRenderer<TileWorkbench
if(!stack2.isEmpty()){
GL11.glPushMatrix();
//GL11.glRotated(90.0F, 1.0F, 0.0F, 0.0F);
GL11.glTranslated(0.5625, 0.65625D, 0.7925D);
GL11.glScalef(0.7F, 1F, 0.55F);
GL11.glRotated(-45.0F, 0.0F, 1.0F, 0.0F);
GL11.glRotated(90.0F, 1.0F, 0.0F, 0.0F);
if(RecipeHelper.isOreName(stack2.getItem(), "cordageGeneral")){
GL11.glTranslated(0.75, 0.64125D, 0.75D);
GL11.glScalef(0.5F, 0.5F, 0.5F);
GL11.glRotated(90.0F, 1.0F, .0F, 0.0F);
//GL11.glRotated(45.0F, 0.0F, 0.0F, 1.0F);
//GL11.glRotated(90.0F, 1.0F, 0.0F, 0.0F);
} else {
GL11.glTranslated(0.5625, 0.65625D, 0.7925D);
GL11.glScalef(0.7F, 1F, 0.55F);
GL11.glRotated(-45.0F, 0.0F, 1.0F, 0.0F);
GL11.glRotated(90.0F, 1.0F, 0.0F, 0.0F);
}
renderItem.renderItem(stack2, ItemCameraTransforms.TransformType.FIXED);
GL11.glPopMatrix();
}
if(!stack3.isEmpty()){
GL11.glPushMatrix();
//System.out.println(stack2);
//GL11.glRotated(90.0F, 1.0F, 0.0F, 0.0F);
GL11.glTranslated(0.55, 0.2075D, 0.77D);
GL11.glScalef(1F, 1F, 1F);
if(stack3.getItem() instanceof WeaponPart){
GL11.glTranslated(0.32D, 0.376D, 0.75D);
GL11.glScalef(0.6F, 0.6F, 0.6F);
} else {
GL11.glTranslated(0.55, 0.2075D, 0.77D);
GL11.glScalef(1F, 1F, 1F);
}
GL11.glRotated(90.0F, 0.0F, 1.0F, 0.0F);
//GL11.glRotated(90.0F, 1.0F, 0.0F, 0.0F);
@@ -263,25 +272,33 @@ public class TileWorkbenchRender extends TileEntitySpecialRenderer<TileWorkbench
}
if(!stack2.isEmpty()){
GL11.glPushMatrix();
//System.out.println(stack2);
//GL11.glRotated(90.0F, 1.0F, 0.0F, 0.0F);
GL11.glTranslated(0.7925D, 0.65625D, 0.4375);
GL11.glScalef(0.55F, 1F, 0.7F);
GL11.glRotated(45F, 0.0F, 1.0F, 0.0F);
GL11.glRotated(90.0F, 1.0F, 0.0F, 0.0F);
if(RecipeHelper.isOreName(stack2.getItem(), "cordageGeneral")){
GL11.glTranslated(0.75, 0.64125D, 0.25D);
GL11.glScalef(0.5F, 0.5F, 0.5F);
GL11.glRotated(90.0F, 1.0F, .0F, 0.0F);
//GL11.glRotated(90.0F, 0.0F, 1.0F, 0.0F);
} else {
GL11.glTranslated(0.7925D, 0.65625D, 0.4375);
GL11.glScalef(0.55F, 1F, 0.7F);
GL11.glRotated(45F, 0.0F, 1.0F, 0.0F);
GL11.glRotated(90.0F, 1.0F, 0.0F, 0.0F);
}
renderItem.renderItem(stack2, ItemCameraTransforms.TransformType.FIXED);
GL11.glPopMatrix();
}
if(!stack3.isEmpty()){
GL11.glPushMatrix();
//System.out.println(stack2);
//GL11.glRotated(90.0F, 1.0F, 0.0F, 0.0F);
GL11.glTranslated(0.75, 0.2075D, 0.4D);
GL11.glScalef(1F, 1F, 1F);
GL11.glRotated(180.0F, 0.0F, 1.0F, 0.0F);
//GL11.glRotated(90.0F, 1.0F, 0.0F, 0.0F);
if(stack3.getItem() instanceof WeaponPart){
GL11.glTranslated(0.75, 0.376D, 0.675D);
GL11.glScalef(0.6F, 0.6F, 0.6F);
} else {
GL11.glTranslated(0.75, 0.2075D, 0.4D);
GL11.glScalef(1F, 1F, 1F);
//GL11.glRotated(90.0F, 1.0F, 0.0F, 0.0F);
}
GL11.glRotated(180.0F, 0.0F, 1.0F, 0.0F);
renderItem.renderItem(stack3, ItemCameraTransforms.TransformType.HEAD);
GL11.glPopMatrix();
}
@@ -342,24 +359,31 @@ public class TileWorkbenchRender extends TileEntitySpecialRenderer<TileWorkbench
}
if(!stack2.isEmpty()){
GL11.glPushMatrix();
//System.out.println(stack2);
//GL11.glRotated(90.0F, 1.0F, 0.0F, 0.0F);
GL11.glTranslated(0.255D, 0.65625D, 0.565);
GL11.glScalef(0.55F, 1F, 0.7F);
GL11.glRotated(45F, 0.0F, 1.0F, 0.0F);
GL11.glRotated(90.0F, 1.0F, 0.0F, 0.0F);
if(RecipeHelper.isOreName(stack2.getItem(), "cordageGeneral")){
GL11.glTranslated(0.25, 0.64125D, 0.75D);
GL11.glScalef(0.5F, 0.5F, 0.5F);
GL11.glRotated(90.0F, 1.0F, .0F, 0.0F);
//GL11.glRotated(90.0F, 0.0F, 1.0F, 0.0F);
} else {
GL11.glTranslated(0.255D, 0.65625D, 0.565);
GL11.glScalef(0.55F, 1F, 0.7F);
GL11.glRotated(45F, 0.0F, 1.0F, 0.0F);
GL11.glRotated(90.0F, 1.0F, 0.0F, 0.0F);
}
renderItem.renderItem(stack2, ItemCameraTransforms.TransformType.FIXED);
GL11.glPopMatrix();
}
if(!stack3.isEmpty()){
GL11.glPushMatrix();
//System.out.println(stack2);
//GL11.glRotated(90.0F, 1.0F, 0.0F, 0.0F);
GL11.glTranslated(0.235, 0.2075D, 0.6D);
GL11.glScalef(1F, 1F, 1F);
//GL11.glRotated(-180.0F, 0.0F, 1.0F, 0.0F);
//GL11.glRotated(90.0F, 1.0F, 0.0F, 0.0F);
if(stack3.getItem() instanceof WeaponPart){
GL11.glTranslated(0.225, 0.376D, 0.325D);
GL11.glScalef(0.6F, 0.6F, 0.6F);
} else {
GL11.glTranslated(0.235, 0.2075D, 0.6D);
GL11.glScalef(1F, 1F, 1F);
}
renderItem.renderItem(stack3, ItemCameraTransforms.TransformType.HEAD);
GL11.glPopMatrix();

View File

@@ -2,6 +2,7 @@ package nmd.primal.forgecraft.tiles;
import net.minecraft.item.ItemStack;
import nmd.primal.core.common.helper.RecipeHelper;
import nmd.primal.core.common.items.tools.Gallagher;
import nmd.primal.forgecraft.items.parts.ToolPart;
import nmd.primal.forgecraft.items.parts.WeaponGuard;
import nmd.primal.forgecraft.items.parts.WeaponHandle;
@@ -34,11 +35,6 @@ public class TileWorkbench extends TileBaseSlot{
return true;
}
}
/*if(index == 3){
if (RecipeHelper.isOreName(stack.getItem(), "cordageGeneral")) {
return true;
}
}*/
if(index == 3){
if ( (stack.getItem() instanceof ToolPart) || stack.getItem() instanceof WeaponPart) {
return true;
@@ -58,6 +54,11 @@ public class TileWorkbench extends TileBaseSlot{
return true;
}
}
if(index == 6){
if (stack.getItem() instanceof Gallagher) {
return true;
}
}
return false;
}
}

View File

@@ -0,0 +1,334 @@
{
"__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio",
"textures": {
"particle": "blocks/e_particle",
"texture": "blocks/e_texture"
},
"elements": [
{
"__comment": "Box1",
"from": [ 0, 1, 0 ],
"to": [ 2, 16, 2 ],
"faces": {
"up": { "uv": [ 0, 0, 2, 2 ], "texture": "#texture" },
"north": { "uv": [ 14, 0, 16, 15 ], "texture": "#texture" },
"south": { "uv": [ 0, 0, 2, 15 ], "texture": "#texture" },
"west": { "uv": [ 0, 0, 2, 15 ], "texture": "#texture" },
"east": { "uv": [ 14, 0, 16, 15 ], "texture": "#texture" }
}
},
{
"__comment": "Box1",
"from": [ 0, 1, 14 ],
"to": [ 2, 16, 16 ],
"faces": {
"up": { "uv": [ 0, 0, 2, 2 ], "texture": "#texture" },
"north": { "uv": [ 14, 0, 16, 16 ], "texture": "#texture" },
"south": { "uv": [ 0, 0, 2, 16 ], "texture": "#texture" },
"west": { "uv": [ 0, 0, 2, 16 ], "texture": "#texture" },
"east": { "uv": [ 14, 0, 16, 16 ], "texture": "#texture" }
}
},
{
"__comment": "Box1",
"from": [ 14, 1, 0 ],
"to": [ 16, 16, 2 ],
"faces": {
"up": { "uv": [ 0, 0, 2, 2 ], "texture": "#texture" },
"north": { "uv": [ 14, 0, 16, 16 ], "texture": "#texture" },
"south": { "uv": [ 0, 0, 2, 16 ], "texture": "#texture" },
"west": { "uv": [ 0, 0, 2, 16 ], "texture": "#texture" },
"east": { "uv": [ 14, 0, 16, 16 ], "texture": "#texture" }
}
},
{
"__comment": "Box1",
"from": [ 14, 1, 14 ],
"to": [ 16, 16, 16 ],
"faces": {
"up": { "uv": [ 0, 0, 2, 2 ], "texture": "#texture" },
"north": { "uv": [ 14, 0, 16, 16 ], "texture": "#texture" },
"south": { "uv": [ 0, 0, 2, 16 ], "texture": "#texture" },
"west": { "uv": [ 0, 0, 2, 16 ], "texture": "#texture" },
"east": { "uv": [ 14, 0, 16, 16 ], "texture": "#texture" }
}
},
{
"__comment": "Box5",
"from": [ 0.5, 2, 2 ],
"to": [ 1.5, 3, 14 ],
"faces": {
"down": { "uv": [ 0.5, 2, 1.5, 14 ], "texture": "#texture" },
"up": { "uv": [ 0.5, 2, 1.5, 14 ], "texture": "#texture" },
"west": { "uv": [ 2, 13, 14, 14 ], "texture": "#texture" },
"east": { "uv": [ 2, 13, 14, 14 ], "texture": "#texture" }
}
},
{
"__comment": "Box5",
"from": [ 0.5, 4.5, 2 ],
"to": [ 1.5, 5.5, 14 ],
"faces": {
"down": { "uv": [ 0.5, 2, 1.5, 14 ], "texture": "#texture" },
"up": { "uv": [ 0.5, 2, 1.5, 14 ], "texture": "#texture" },
"west": { "uv": [ 2, 14, 14, 15 ], "texture": "#texture" },
"east": { "uv": [ 2, 14, 14, 15 ], "texture": "#texture" }
}
},
{
"__comment": "Box5",
"from": [ 0.5, 7, 2 ],
"to": [ 1.5, 8, 14 ],
"faces": {
"down": { "uv": [ 0.5, 2, 1.5, 14 ], "texture": "#texture" },
"up": { "uv": [ 0.5, 2, 1.5, 14 ], "texture": "#texture" },
"west": { "uv": [ 2, 14, 14, 15 ], "texture": "#texture" },
"east": { "uv": [ 2, 14, 14, 15 ], "texture": "#texture" }
}
},
{
"__comment": "Box5",
"from": [ 0.5, 9.5, 2 ],
"to": [ 1.5, 10.5, 14 ],
"faces": {
"down": { "uv": [ 0.5, 2, 1.5, 14 ], "texture": "#texture" },
"up": { "uv": [ 0.5, 2, 1.5, 14 ], "texture": "#texture" },
"west": { "uv": [ 2, 14, 14, 15 ], "texture": "#texture" },
"east": { "uv": [ 2, 14, 14, 15 ], "texture": "#texture" }
}
},
{
"__comment": "Box5",
"from": [ 0.5, 14.5, 2 ],
"to": [ 1.5, 15.5, 14 ],
"faces": {
"down": { "uv": [ 0.5, 2, 1.5, 14 ], "texture": "#texture" },
"up": { "uv": [ 0.5, 2, 1.5, 14 ], "texture": "#texture" },
"west": { "uv": [ 2, 14, 14, 15 ], "texture": "#texture" },
"east": { "uv": [ 2, 14, 14, 15 ], "texture": "#texture" }
}
},
{
"__comment": "Box5",
"from": [ 0.5, 12, 2 ],
"to": [ 1.5, 13, 14 ],
"faces": {
"down": { "uv": [ 0.5, 2, 1.5, 14 ], "texture": "#texture" },
"up": { "uv": [ 0.5, 2, 1.5, 14 ], "texture": "#texture" },
"west": { "uv": [ 2, 14, 14, 15 ], "texture": "#texture" },
"east": { "uv": [ 2, 14, 14, 15 ], "texture": "#texture" }
}
},
{
"__comment": "Box5",
"from": [ 14.5, 14.5, 2 ],
"to": [ 15.5, 15.5, 14 ],
"faces": {
"down": { "uv": [ 0.5, 2, 1.5, 14 ], "texture": "#texture" },
"up": { "uv": [ 0.5, 2, 1.5, 14 ], "texture": "#texture" },
"west": { "uv": [ 2, 14, 14, 15 ], "texture": "#texture" },
"east": { "uv": [ 2, 14, 14, 15 ], "texture": "#texture" }
}
},
{
"__comment": "Box5",
"from": [ 14.5, 12, 2 ],
"to": [ 15.5, 13, 14 ],
"faces": {
"down": { "uv": [ 0.5, 2, 1.5, 14 ], "texture": "#texture" },
"up": { "uv": [ 0.5, 2, 1.5, 14 ], "texture": "#texture" },
"west": { "uv": [ 2, 14, 14, 15 ], "texture": "#texture" },
"east": { "uv": [ 2, 14, 14, 15 ], "texture": "#texture" }
}
},
{
"__comment": "Box5",
"from": [ 14.5, 9.5, 2 ],
"to": [ 15.5, 10.5, 14 ],
"faces": {
"down": { "uv": [ 0.5, 2, 1.5, 14 ], "texture": "#texture" },
"up": { "uv": [ 0.5, 2, 1.5, 14 ], "texture": "#texture" },
"west": { "uv": [ 2, 14, 14, 15 ], "texture": "#texture" },
"east": { "uv": [ 2, 14, 14, 15 ], "texture": "#texture" }
}
},
{
"__comment": "Box5",
"from": [ 14.5, 7, 2 ],
"to": [ 15.5, 8, 14 ],
"faces": {
"down": { "uv": [ 0.5, 2, 1.5, 14 ], "texture": "#texture" },
"up": { "uv": [ 0.5, 2, 1.5, 14 ], "texture": "#texture" },
"west": { "uv": [ 2, 14, 14, 15 ], "texture": "#texture" },
"east": { "uv": [ 2, 14, 14, 15 ], "texture": "#texture" }
}
},
{
"__comment": "Box5",
"from": [ 14.5, 4.5, 2 ],
"to": [ 15.5, 5.5, 14 ],
"faces": {
"down": { "uv": [ 0.5, 2, 1.5, 14 ], "texture": "#texture" },
"up": { "uv": [ 0.5, 2, 1.5, 14 ], "texture": "#texture" },
"west": { "uv": [ 2, 14, 14, 15 ], "texture": "#texture" },
"east": { "uv": [ 2, 14, 14, 15 ], "texture": "#texture" }
}
},
{
"__comment": "Box5",
"from": [ 14.5, 2, 2 ],
"to": [ 15.5, 3, 14 ],
"faces": {
"down": { "uv": [ 0.5, 2, 1.5, 14 ], "texture": "#texture" },
"up": { "uv": [ 0.5, 2, 1.5, 14 ], "texture": "#texture" },
"west": { "uv": [ 2, 14, 14, 15 ], "texture": "#texture" },
"east": { "uv": [ 2, 14, 14, 15 ], "texture": "#texture" }
}
},
{
"__comment": "Box17",
"from": [ 2, 2, 14.5 ],
"to": [ 14, 3, 15.5 ],
"faces": {
"down": { "uv": [ 2, 0.5, 14, 1.5 ], "texture": "#texture" },
"up": { "uv": [ 2, 14.5, 14, 15.5 ], "texture": "#texture" },
"north": { "uv": [ 2, 14, 14, 15 ], "texture": "#texture" },
"south": { "uv": [ 2, 14, 14, 15 ], "texture": "#texture" }
}
},
{
"__comment": "Box17",
"from": [ 2, 4.5, 14.5 ],
"to": [ 14, 5.5, 15.5 ],
"faces": {
"down": { "uv": [ 2, 0.5, 14, 1.5 ], "texture": "#texture" },
"up": { "uv": [ 2, 14.5, 14, 15.5 ], "texture": "#texture" },
"north": { "uv": [ 2, 14, 14, 15 ], "texture": "#texture" },
"south": { "uv": [ 2, 14, 14, 15 ], "texture": "#texture" }
}
},
{
"__comment": "Box17",
"from": [ 2, 9.5, 14.5 ],
"to": [ 14, 10.5, 15.5 ],
"faces": {
"down": { "uv": [ 2, 0.5, 14, 1.5 ], "texture": "#texture" },
"up": { "uv": [ 2, 14.5, 14, 15.5 ], "texture": "#texture" },
"north": { "uv": [ 2, 14, 14, 15 ], "texture": "#texture" },
"south": { "uv": [ 2, 14, 14, 15 ], "texture": "#texture" }
}
},
{
"__comment": "Box17",
"from": [ 2, 7, 14.5 ],
"to": [ 14, 8, 15.5 ],
"faces": {
"down": { "uv": [ 2, 0.5, 14, 1.5 ], "texture": "#texture" },
"up": { "uv": [ 2, 14.5, 14, 15.5 ], "texture": "#texture" },
"north": { "uv": [ 2, 14, 14, 15 ], "texture": "#texture" },
"south": { "uv": [ 2, 14, 14, 15 ], "texture": "#texture" }
}
},
{
"__comment": "Box17",
"from": [ 2, 14.5, 14.5 ],
"to": [ 14, 15.5, 15.5 ],
"faces": {
"down": { "uv": [ 2, 0.5, 14, 1.5 ], "texture": "#texture" },
"up": { "uv": [ 2, 14.5, 14, 15.5 ], "texture": "#texture" },
"north": { "uv": [ 2, 14, 14, 15 ], "texture": "#texture" },
"south": { "uv": [ 2, 14, 14, 15 ], "texture": "#texture" }
}
},
{
"__comment": "Box17",
"from": [ 2, 12, 14.5 ],
"to": [ 14, 13, 15.5 ],
"faces": {
"down": { "uv": [ 2, 0.5, 14, 1.5 ], "texture": "#texture" },
"up": { "uv": [ 2, 14.5, 14, 15.5 ], "texture": "#texture" },
"north": { "uv": [ 2, 14, 14, 15 ], "texture": "#texture" },
"south": { "uv": [ 2, 14, 14, 15 ], "texture": "#texture" }
}
},
{
"__comment": "Box17",
"from": [ 2, 14.5, 0.5 ],
"to": [ 14, 15.5, 1.5 ],
"faces": {
"down": { "uv": [ 2, 0.5, 14, 1.5 ], "texture": "#texture" },
"up": { "uv": [ 2, 14.5, 14, 15.5 ], "texture": "#texture" },
"north": { "uv": [ 2, 14, 14, 15 ], "texture": "#texture" },
"south": { "uv": [ 2, 14, 14, 15 ], "texture": "#texture" }
}
},
{
"__comment": "Box17",
"from": [ 2, 12, 0.5 ],
"to": [ 14, 13, 1.5 ],
"faces": {
"down": { "uv": [ 2, 0.5, 14, 1.5 ], "texture": "#texture" },
"up": { "uv": [ 2, 14.5, 14, 15.5 ], "texture": "#texture" },
"north": { "uv": [ 2, 14, 14, 15 ], "texture": "#texture" },
"south": { "uv": [ 2, 14, 14, 15 ], "texture": "#texture" }
}
},
{
"__comment": "Box17",
"from": [ 2, 9.5, 0.5 ],
"to": [ 14, 10.5, 1.5 ],
"faces": {
"down": { "uv": [ 2, 0.5, 14, 1.5 ], "texture": "#texture" },
"up": { "uv": [ 2, 14.5, 14, 15.5 ], "texture": "#texture" },
"north": { "uv": [ 2, 14, 14, 15 ], "texture": "#texture" },
"south": { "uv": [ 2, 14, 14, 15 ], "texture": "#texture" }
}
},
{
"__comment": "Box17",
"from": [ 2, 7, 0.5 ],
"to": [ 14, 8, 1.5 ],
"faces": {
"down": { "uv": [ 2, 0.5, 14, 1.5 ], "texture": "#texture" },
"up": { "uv": [ 2, 14.5, 14, 15.5 ], "texture": "#texture" },
"north": { "uv": [ 2, 14, 14, 15 ], "texture": "#texture" },
"south": { "uv": [ 2, 14, 14, 15 ], "texture": "#texture" }
}
},
{
"__comment": "Box17",
"from": [ 2, 4.5, 0.5 ],
"to": [ 14, 5.5, 1.5 ],
"faces": {
"down": { "uv": [ 2, 0.5, 14, 1.5 ], "texture": "#texture" },
"up": { "uv": [ 2, 14.5, 14, 15.5 ], "texture": "#texture" },
"north": { "uv": [ 2, 14, 14, 15 ], "texture": "#texture" },
"south": { "uv": [ 2, 14, 14, 15 ], "texture": "#texture" }
}
},
{
"__comment": "Box17",
"from": [ 2, 2, 0.5 ],
"to": [ 14, 3, 1.5 ],
"faces": {
"down": { "uv": [ 2, 0.5, 14, 1.5 ], "texture": "#texture" },
"up": { "uv": [ 2, 14.5, 14, 15.5 ], "texture": "#texture" },
"north": { "uv": [ 2, 14, 14, 15 ], "texture": "#texture" },
"south": { "uv": [ 2, 14, 14, 15 ], "texture": "#texture" }
}
},
{
"__comment": "Box30",
"from": [ 0, 0, 0 ],
"to": [ 16, 1, 16 ],
"faces": {
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" },
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" },
"north": { "uv": [ 0, 15, 16, 16 ], "texture": "#texture" },
"south": { "uv": [ 0, 15, 16, 16 ], "texture": "#texture" },
"west": { "uv": [ 0, 15, 16, 16 ], "texture": "#texture" },
"east": { "uv": [ 0, 15, 16, 16 ], "texture": "#texture" }
}
}
]
}

View File

@@ -1,293 +1,8 @@
{
"__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio",
"parent": "forgecraft:item/gladius_model",
"textures": {
"particle": "forgecraft:items/finished_bronze",
"texture": "forgecraft:items/finished_bronze",
"texture1": "blocks/planks_oak"
},
"elements": [
{
"__comment": "Cube23",
"from": [ 7.25, -5.5, 7.25 ],
"to": [ 9.25, 0, 8.75 ],
"faces": {
"down": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 7, 9, 9, 16 ], "texture": "#texture" },
"south": { "uv": [ 7, 9, 9, 16 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 9, 8.5, 16 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 9, 8.5, 16 ], "texture": "#texture" }
}
},
{
"__comment": "Cube24",
"from": [ 7, -8, 7 ],
"to": [ 9.5, -5.5, 9 ],
"faces": {
"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" }
}
},
{
"__comment": "Cube25",
"from": [ 6.5, 0, 7.25 ],
"to": [ 10, 0.5, 8.75 ],
"faces": {
"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" }
}
},
{
"__comment": "Cube23",
"from": [ 6.5, 1, 7.5 ],
"to": [ 10, 6, 8.5 ],
"faces": {
"down": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 7, 9, 9, 16 ], "texture": "#texture" },
"south": { "uv": [ 7, 9, 9, 16 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 9, 8.5, 16 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 9, 8.5, 16 ], "texture": "#texture" }
}
},
{
"__comment": "Cube28",
"from": [ 8, 1, 8.5 ],
"to": [ 8.5, 24, 8.501 ],
"faces": {
"down": { "uv": [ 7.5, 7, 8.5, 7.5 ], "texture": "#texture" },
"up": { "uv": [ 7.5, 8.5, 8.5, 9 ], "texture": "#texture" },
"north": { "uv": [ 7.5, 0, 8.5, 15 ], "texture": "#texture" },
"south": { "uv": [ 7.5, 0, 8.5, 15 ], "texture": "#texture" },
"west": { "uv": [ 8.5, 0, 9, 15 ], "texture": "#texture" },
"east": { "uv": [ 7, 0, 7.5, 15 ], "texture": "#texture" }
}
},
{
"__comment": "Cube32",
"from": [ 6.75, 21.5, 7.5 ],
"to": [ 9.75, 23, 8.5 ],
"faces": {
"down": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 7, 7, 9, 9.5 ], "texture": "#texture" },
"south": { "uv": [ 7, 7, 9, 9.5 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 7, 8.5, 9.5 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 7, 8.5, 9.5 ], "texture": "#texture" }
}
},
{
"__comment": "Cube32",
"from": [ 7.25, 24.5, 7.5 ],
"to": [ 9.25, 26, 8.5 ],
"faces": {
"down": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 7, 7, 9, 8 ], "texture": "#texture" },
"south": { "uv": [ 7, 7, 9, 8 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 7, 8.5, 8 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 7, 8.5, 8 ], "texture": "#texture" }
}
},
{
"__comment": "Cube9",
"from": [ 7.75, 27, 7.5 ],
"to": [ 8.75, 28, 8.5 ],
"faces": {
"down": { "uv": [ 8, 7.5, 8.5, 8 ], "texture": "#texture", "rotation": 180 },
"up": { "uv": [ 8, 8, 8.5, 8.5 ], "texture": "#texture", "rotation": 180 },
"north": { "uv": [ 8, 4.5, 8.5, 5.5 ], "texture": "#texture" },
"south": { "uv": [ 7.5, 4.5, 8, 5.5 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 4.5, 8, 5.5 ], "texture": "#texture" },
"east": { "uv": [ 8, 4.5, 8.5, 5.5 ], "texture": "#texture" }
}
},
{
"__comment": "Cube28",
"from": [ 8, 1, 7.499 ],
"to": [ 8.5, 24, 7.5 ],
"faces": {
"down": { "uv": [ 7.5, 7, 8.5, 7.5 ], "texture": "#texture", "rotation": 180 },
"up": { "uv": [ 7.5, 8.5, 8.5, 9 ], "texture": "#texture", "rotation": 180 },
"north": { "uv": [ 7.5, 0, 8.5, 15 ], "texture": "#texture" },
"south": { "uv": [ 7.5, 0, 8.5, 15 ], "texture": "#texture" },
"west": { "uv": [ 7, 0, 7.5, 15 ], "texture": "#texture" },
"east": { "uv": [ 8.5, 0, 9, 15 ], "texture": "#texture" }
}
},
{
"__comment": "Cube14",
"from": [ 6, 0.5, 7.25 ],
"to": [ 10.5, 2.5, 8.75 ],
"faces": {
"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" }
}
},
{
"__comment": "Cube11",
"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": "#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" }
}
},
{
"__comment": "Cube13",
"from": [ 7, 23, 7.5 ],
"to": [ 9.5, 24.5, 8.5 ],
"faces": {
"down": { "uv": [ 7, 7.5, 9.5, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 7, 7.5, 9.5, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 6.5, 7.5, 9, 9 ], "texture": "#texture" },
"south": { "uv": [ 7, 7.5, 9.5, 9 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 7.5, 8.5, 9 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 7.5, 8.5, 9 ], "texture": "#texture" }
}
},
{
"__comment": "Cube14",
"from": [ 7.5, 26, 7.5 ],
"to": [ 9, 27, 8.5 ],
"faces": {
"down": { "uv": [ 7.5, 7.5, 9, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 7.5, 7.5, 9, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 7, 5, 8.5, 6 ], "texture": "#texture" },
"south": { "uv": [ 7.5, 5, 9, 6 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }
}
},
{
"__comment": "Cube15",
"from": [ 7, -7.5, 6.5 ],
"to": [ 9.5, -6, 9.5 ],
"faces": {
"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" }
}
},
{
"__comment": "Cube16",
"from": [ 6.5, -7.5, 7 ],
"to": [ 10, -6, 9 ],
"faces": {
"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" }
}
},
{
"__comment": "Cube17",
"from": [ 8, -8.5, 7.75 ],
"to": [ 8.5, -8, 8.25 ],
"faces": {
"down": { "uv": [ 8, 7.75, 8.5, 8.25 ], "texture": "#texture" },
"up": { "uv": [ 8, 7.75, 8.5, 8.25 ], "texture": "#texture" },
"north": { "uv": [ 7.5, 8, 8, 8.5 ], "texture": "#texture" },
"south": { "uv": [ 8, 8, 8.5, 8.5 ], "texture": "#texture" },
"west": { "uv": [ 7.75, 8, 8.25, 8.5 ], "texture": "#texture" },
"east": { "uv": [ 7.75, 8, 8.25, 8.5 ], "texture": "#texture" }
}
},
{
"__comment": "Cube24",
"from": [ 6.75, 6, 7.5 ],
"to": [ 9.75, 15.5, 8.5 ],
"faces": {
"down": { "uv": [ 6.75, 7.5, 9.75, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 6.75, 7.5, 9.75, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 6.25, 0.5, 9.25, 10 ], "texture": "#texture" },
"south": { "uv": [ 6.75, 0.5, 9.75, 10 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 0.5, 8.5, 10 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 0.5, 8.5, 10 ], "texture": "#texture" }
}
},
{
"__comment": "Cube19",
"from": [ 6.5, 15.5, 7.5 ],
"to": [ 10, 21.5, 8.5 ],
"faces": {
"down": { "uv": [ 6.5, 7.5, 10, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 6.5, 7.5, 10, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 6, 0, 9.5, 0.5 ], "texture": "#texture" },
"south": { "uv": [ 6.5, 0, 10, 0.5 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 0, 8.5, 0.5 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 0, 8.5, 0.5 ], "texture": "#texture" }
}
},
{
"__comment": "Cube20",
"from": [ 8, 27.75, 7.5 ],
"to": [ 8.5, 28.75, 8.5 ],
"faces": {
"down": { "uv": [ 8, 7.5, 8.5, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 8, 7.5, 8.5, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 7.5, 3.25, 8, 4.25 ], "texture": "#texture" },
"south": { "uv": [ 8, 3.25, 8.5, 4.25 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 3.25, 8.5, 4.25 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 3.25, 8.5, 4.25 ], "texture": "#texture" }
}
}
],
"display": {
"thirdperson_righthand": {
"rotation": [ 0, 90, 0 ],
"translation": [ 0, 5.9, 1.33 ],
"scale": [ 0.75, 0.75, 0.75 ]
},
"thirdperson_lefthand": {
"rotation": [ 0, 90, 0 ],
"translation": [ 0, 5.9, 1.33 ],
"scale": [ 0.75, 0.75, 0.75 ]
},
"firstperson_righthand": {
"rotation": [ 0, 90, 0 ],
"translation": [ 0, 6.6, 1 ],
"scale": [ 0.75, 0.75, 0.75 ]
},
"firstperson_lefthand": {
"rotation": [ 0, 90, 0 ],
"translation": [ 0, 6.6, 1 ],
"scale": [ 0.75, 0.75, 0.75 ]
},
"gui": {
"rotation": [ 0, 0, -45 ],
"translation": [ -0.4, -0.4, 0 ],
"scale": [ 0.5, 0.5, 0.5 ]
},
"ground": {
"rotation": [ 90, 0, 0 ],
"scale": [ 0.75, 0.75, 0.75 ]
},
"fixed": {
"rotation": [ 0, 0, 45 ],
"translation": [ 0.7, -0.7, 0 ],
"scale": [ 0.66, 0.66, 0.66 ]
}
"particle": "forgecraft:items/bronze/0",
"texture": "forgecraft:items/bronze/0",
"handle": "forgecraft:items/leather_handle"
}
}
}

View File

@@ -1,293 +1,8 @@
{
"__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio",
"parent": "forgecraft:item/gladius_model",
"textures": {
"particle": "forgecraft:blocks/clean_iron_ingot",
"texture": "forgecraft:blocks/clean_iron_ingot",
"texture1": "blocks/planks_oak"
},
"elements": [
{
"__comment": "Cube23",
"from": [ 7.25, -5.5, 7.25 ],
"to": [ 9.25, 0, 8.75 ],
"faces": {
"down": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 7, 9, 9, 16 ], "texture": "#texture" },
"south": { "uv": [ 7, 9, 9, 16 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 9, 8.5, 16 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 9, 8.5, 16 ], "texture": "#texture" }
}
},
{
"__comment": "Cube24",
"from": [ 7, -8, 7 ],
"to": [ 9.5, -5.5, 9 ],
"faces": {
"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" }
}
},
{
"__comment": "Cube25",
"from": [ 6.5, 0, 7.25 ],
"to": [ 10, 0.5, 8.75 ],
"faces": {
"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" }
}
},
{
"__comment": "Cube23",
"from": [ 6.5, 1, 7.5 ],
"to": [ 10, 6, 8.5 ],
"faces": {
"down": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 7, 9, 9, 16 ], "texture": "#texture" },
"south": { "uv": [ 7, 9, 9, 16 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 9, 8.5, 16 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 9, 8.5, 16 ], "texture": "#texture" }
}
},
{
"__comment": "Cube28",
"from": [ 8, 1, 8.5 ],
"to": [ 8.5, 24, 8.501 ],
"faces": {
"down": { "uv": [ 7.5, 7, 8.5, 7.5 ], "texture": "#texture" },
"up": { "uv": [ 7.5, 8.5, 8.5, 9 ], "texture": "#texture" },
"north": { "uv": [ 7.5, 0, 8.5, 15 ], "texture": "#texture" },
"south": { "uv": [ 7.5, 0, 8.5, 15 ], "texture": "#texture" },
"west": { "uv": [ 8.5, 0, 9, 15 ], "texture": "#texture" },
"east": { "uv": [ 7, 0, 7.5, 15 ], "texture": "#texture" }
}
},
{
"__comment": "Cube32",
"from": [ 6.75, 21.5, 7.5 ],
"to": [ 9.75, 23, 8.5 ],
"faces": {
"down": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 7, 7, 9, 9.5 ], "texture": "#texture" },
"south": { "uv": [ 7, 7, 9, 9.5 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 7, 8.5, 9.5 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 7, 8.5, 9.5 ], "texture": "#texture" }
}
},
{
"__comment": "Cube32",
"from": [ 7.25, 24.5, 7.5 ],
"to": [ 9.25, 26, 8.5 ],
"faces": {
"down": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 7, 7, 9, 8 ], "texture": "#texture" },
"south": { "uv": [ 7, 7, 9, 8 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 7, 8.5, 8 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 7, 8.5, 8 ], "texture": "#texture" }
}
},
{
"__comment": "Cube9",
"from": [ 7.75, 27, 7.5 ],
"to": [ 8.75, 28, 8.5 ],
"faces": {
"down": { "uv": [ 8, 7.5, 8.5, 8 ], "texture": "#texture", "rotation": 180 },
"up": { "uv": [ 8, 8, 8.5, 8.5 ], "texture": "#texture", "rotation": 180 },
"north": { "uv": [ 8, 4.5, 8.5, 5.5 ], "texture": "#texture" },
"south": { "uv": [ 7.5, 4.5, 8, 5.5 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 4.5, 8, 5.5 ], "texture": "#texture" },
"east": { "uv": [ 8, 4.5, 8.5, 5.5 ], "texture": "#texture" }
}
},
{
"__comment": "Cube28",
"from": [ 8, 1, 7.499 ],
"to": [ 8.5, 24, 7.5 ],
"faces": {
"down": { "uv": [ 7.5, 7, 8.5, 7.5 ], "texture": "#texture", "rotation": 180 },
"up": { "uv": [ 7.5, 8.5, 8.5, 9 ], "texture": "#texture", "rotation": 180 },
"north": { "uv": [ 7.5, 0, 8.5, 15 ], "texture": "#texture" },
"south": { "uv": [ 7.5, 0, 8.5, 15 ], "texture": "#texture" },
"west": { "uv": [ 7, 0, 7.5, 15 ], "texture": "#texture" },
"east": { "uv": [ 8.5, 0, 9, 15 ], "texture": "#texture" }
}
},
{
"__comment": "Cube14",
"from": [ 6, 0.5, 7.25 ],
"to": [ 10.5, 2.5, 8.75 ],
"faces": {
"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" }
}
},
{
"__comment": "Cube11",
"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": "#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" }
}
},
{
"__comment": "Cube13",
"from": [ 7, 23, 7.5 ],
"to": [ 9.5, 24.5, 8.5 ],
"faces": {
"down": { "uv": [ 7, 7.5, 9.5, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 7, 7.5, 9.5, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 6.5, 7.5, 9, 9 ], "texture": "#texture" },
"south": { "uv": [ 7, 7.5, 9.5, 9 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 7.5, 8.5, 9 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 7.5, 8.5, 9 ], "texture": "#texture" }
}
},
{
"__comment": "Cube14",
"from": [ 7.5, 26, 7.5 ],
"to": [ 9, 27, 8.5 ],
"faces": {
"down": { "uv": [ 7.5, 7.5, 9, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 7.5, 7.5, 9, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 7, 5, 8.5, 6 ], "texture": "#texture" },
"south": { "uv": [ 7.5, 5, 9, 6 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }
}
},
{
"__comment": "Cube15",
"from": [ 7, -7.5, 6.5 ],
"to": [ 9.5, -6, 9.5 ],
"faces": {
"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" }
}
},
{
"__comment": "Cube16",
"from": [ 6.5, -7.5, 7 ],
"to": [ 10, -6, 9 ],
"faces": {
"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" }
}
},
{
"__comment": "Cube17",
"from": [ 8, -8.5, 7.75 ],
"to": [ 8.5, -8, 8.25 ],
"faces": {
"down": { "uv": [ 8, 7.75, 8.5, 8.25 ], "texture": "#texture" },
"up": { "uv": [ 8, 7.75, 8.5, 8.25 ], "texture": "#texture" },
"north": { "uv": [ 7.5, 8, 8, 8.5 ], "texture": "#texture" },
"south": { "uv": [ 8, 8, 8.5, 8.5 ], "texture": "#texture" },
"west": { "uv": [ 7.75, 8, 8.25, 8.5 ], "texture": "#texture" },
"east": { "uv": [ 7.75, 8, 8.25, 8.5 ], "texture": "#texture" }
}
},
{
"__comment": "Cube24",
"from": [ 6.75, 6, 7.5 ],
"to": [ 9.75, 15.5, 8.5 ],
"faces": {
"down": { "uv": [ 6.75, 7.5, 9.75, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 6.75, 7.5, 9.75, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 6.25, 0.5, 9.25, 10 ], "texture": "#texture" },
"south": { "uv": [ 6.75, 0.5, 9.75, 10 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 0.5, 8.5, 10 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 0.5, 8.5, 10 ], "texture": "#texture" }
}
},
{
"__comment": "Cube19",
"from": [ 6.5, 15.5, 7.5 ],
"to": [ 10, 21.5, 8.5 ],
"faces": {
"down": { "uv": [ 6.5, 7.5, 10, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 6.5, 7.5, 10, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 6, 0, 9.5, 0.5 ], "texture": "#texture" },
"south": { "uv": [ 6.5, 0, 10, 0.5 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 0, 8.5, 0.5 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 0, 8.5, 0.5 ], "texture": "#texture" }
}
},
{
"__comment": "Cube20",
"from": [ 8, 27.75, 7.5 ],
"to": [ 8.5, 28.75, 8.5 ],
"faces": {
"down": { "uv": [ 8, 7.5, 8.5, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 8, 7.5, 8.5, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 7.5, 3.25, 8, 4.25 ], "texture": "#texture" },
"south": { "uv": [ 8, 3.25, 8.5, 4.25 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 3.25, 8.5, 4.25 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 3.25, 8.5, 4.25 ], "texture": "#texture" }
}
}
],
"display": {
"thirdperson_righthand": {
"rotation": [ 0, 90, 0 ],
"translation": [ 0, 5.9, 1.33 ],
"scale": [ 0.75, 0.75, 0.75 ]
},
"thirdperson_lefthand": {
"rotation": [ 0, 90, 0 ],
"translation": [ 0, 5.9, 1.33 ],
"scale": [ 0.75, 0.75, 0.75 ]
},
"firstperson_righthand": {
"rotation": [ 0, 90, 0 ],
"translation": [ 0, 6.6, 1 ],
"scale": [ 0.75, 0.75, 0.75 ]
},
"firstperson_lefthand": {
"rotation": [ 0, 90, 0 ],
"translation": [ 0, 6.6, 1 ],
"scale": [ 0.75, 0.75, 0.75 ]
},
"gui": {
"rotation": [ 0, 0, -45 ],
"translation": [ -0.4, -0.4, 0 ],
"scale": [ 0.5, 0.5, 0.5 ]
},
"ground": {
"rotation": [ 90, 0, 0 ],
"scale": [ 0.75, 0.75, 0.75 ]
},
"fixed": {
"rotation": [ 0, 0, 45 ],
"translation": [ 0.7, -0.7, 0 ],
"scale": [ 0.66, 0.66, 0.66 ]
}
"particle": "forgecraft:items/clean_iron/0",
"texture": "forgecraft:items/clean_iron/0",
"handle": "forgecraft:items/leather_handle"
}
}
}

View File

@@ -4,7 +4,8 @@
"particle": "forgecraft:blocks/clean_iron_ingot",
"texture": "forgecraft:blocks/clean_iron_ingot",
"light": "forgecraft:blocks/clean_iron_ingot_light",
"dark": "forgecraft:blocks/clean_iron_ingot_dark"
"dark": "forgecraft:blocks/clean_iron_ingot_dark",
"handle": "forgecraft:items/leather_handle"
},
"parent": "forgecraft:item/longsword"
"parent": "forgecraft:item/longsword_model"
}

View File

@@ -1,10 +1,11 @@
{
"forge_marker":1,
"textures": {
"particle": "forgecraft:blocks/clean_iron_ingot",
"texture": "forgecraft:blocks/clean_iron_ingot",
"particle": "forgecraft:items/clean_iron/0",
"texture": "forgecraft:items/clean_iron/0",
"light": "forgecraft:blocks/clean_iron_ingot_light",
"dark": "forgecraft:blocks/clean_iron_ingot_dark"
"dark": "forgecraft:blocks/clean_iron_ingot_dark",
"handle": "forgecraft:items/leather_handle"
},
"parent": "forgecraft:item/slayer"
"parent": "forgecraft:item/slayer_model"
}

View File

@@ -1,293 +1,8 @@
{
"__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio",
"parent": "forgecraft:item/gladius_model",
"textures": {
"particle": "forgecraft:items/finished_bronze",
"texture": "forgecraft:items/finished_bronze",
"texture1": "blocks/planks_oak"
},
"elements": [
{
"__comment": "Cube23",
"from": [ 7.25, -5.5, 7.25 ],
"to": [ 9.25, 0, 8.75 ],
"faces": {
"down": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 7, 9, 9, 16 ], "texture": "#texture" },
"south": { "uv": [ 7, 9, 9, 16 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 9, 8.5, 16 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 9, 8.5, 16 ], "texture": "#texture" }
}
},
{
"__comment": "Cube24",
"from": [ 7, -8, 7 ],
"to": [ 9.5, -5.5, 9 ],
"faces": {
"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" }
}
},
{
"__comment": "Cube25",
"from": [ 6.5, 0, 7.25 ],
"to": [ 10, 0.5, 8.75 ],
"faces": {
"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" }
}
},
{
"__comment": "Cube23",
"from": [ 6.5, 1, 7.5 ],
"to": [ 10, 6, 8.5 ],
"faces": {
"down": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 7, 9, 9, 16 ], "texture": "#texture" },
"south": { "uv": [ 7, 9, 9, 16 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 9, 8.5, 16 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 9, 8.5, 16 ], "texture": "#texture" }
}
},
{
"__comment": "Cube28",
"from": [ 8, 1, 8.5 ],
"to": [ 8.5, 24, 8.501 ],
"faces": {
"down": { "uv": [ 7.5, 7, 8.5, 7.5 ], "texture": "#texture" },
"up": { "uv": [ 7.5, 8.5, 8.5, 9 ], "texture": "#texture" },
"north": { "uv": [ 7.5, 0, 8.5, 15 ], "texture": "#texture" },
"south": { "uv": [ 7.5, 0, 8.5, 15 ], "texture": "#texture" },
"west": { "uv": [ 8.5, 0, 9, 15 ], "texture": "#texture" },
"east": { "uv": [ 7, 0, 7.5, 15 ], "texture": "#texture" }
}
},
{
"__comment": "Cube32",
"from": [ 6.75, 21.5, 7.5 ],
"to": [ 9.75, 23, 8.5 ],
"faces": {
"down": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 7, 7, 9, 9.5 ], "texture": "#texture" },
"south": { "uv": [ 7, 7, 9, 9.5 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 7, 8.5, 9.5 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 7, 8.5, 9.5 ], "texture": "#texture" }
}
},
{
"__comment": "Cube32",
"from": [ 7.25, 24.5, 7.5 ],
"to": [ 9.25, 26, 8.5 ],
"faces": {
"down": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 7, 7, 9, 8 ], "texture": "#texture" },
"south": { "uv": [ 7, 7, 9, 8 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 7, 8.5, 8 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 7, 8.5, 8 ], "texture": "#texture" }
}
},
{
"__comment": "Cube9",
"from": [ 7.75, 27, 7.5 ],
"to": [ 8.75, 28, 8.5 ],
"faces": {
"down": { "uv": [ 8, 7.5, 8.5, 8 ], "texture": "#texture", "rotation": 180 },
"up": { "uv": [ 8, 8, 8.5, 8.5 ], "texture": "#texture", "rotation": 180 },
"north": { "uv": [ 8, 4.5, 8.5, 5.5 ], "texture": "#texture" },
"south": { "uv": [ 7.5, 4.5, 8, 5.5 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 4.5, 8, 5.5 ], "texture": "#texture" },
"east": { "uv": [ 8, 4.5, 8.5, 5.5 ], "texture": "#texture" }
}
},
{
"__comment": "Cube28",
"from": [ 8, 1, 7.499 ],
"to": [ 8.5, 24, 7.5 ],
"faces": {
"down": { "uv": [ 7.5, 7, 8.5, 7.5 ], "texture": "#texture", "rotation": 180 },
"up": { "uv": [ 7.5, 8.5, 8.5, 9 ], "texture": "#texture", "rotation": 180 },
"north": { "uv": [ 7.5, 0, 8.5, 15 ], "texture": "#texture" },
"south": { "uv": [ 7.5, 0, 8.5, 15 ], "texture": "#texture" },
"west": { "uv": [ 7, 0, 7.5, 15 ], "texture": "#texture" },
"east": { "uv": [ 8.5, 0, 9, 15 ], "texture": "#texture" }
}
},
{
"__comment": "Cube14",
"from": [ 6, 0.5, 7.25 ],
"to": [ 10.5, 2.5, 8.75 ],
"faces": {
"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" }
}
},
{
"__comment": "Cube11",
"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": "#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" }
}
},
{
"__comment": "Cube13",
"from": [ 7, 23, 7.5 ],
"to": [ 9.5, 24.5, 8.5 ],
"faces": {
"down": { "uv": [ 7, 7.5, 9.5, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 7, 7.5, 9.5, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 6.5, 7.5, 9, 9 ], "texture": "#texture" },
"south": { "uv": [ 7, 7.5, 9.5, 9 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 7.5, 8.5, 9 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 7.5, 8.5, 9 ], "texture": "#texture" }
}
},
{
"__comment": "Cube14",
"from": [ 7.5, 26, 7.5 ],
"to": [ 9, 27, 8.5 ],
"faces": {
"down": { "uv": [ 7.5, 7.5, 9, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 7.5, 7.5, 9, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 7, 5, 8.5, 6 ], "texture": "#texture" },
"south": { "uv": [ 7.5, 5, 9, 6 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }
}
},
{
"__comment": "Cube15",
"from": [ 7, -7.5, 6.5 ],
"to": [ 9.5, -6, 9.5 ],
"faces": {
"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" }
}
},
{
"__comment": "Cube16",
"from": [ 6.5, -7.5, 7 ],
"to": [ 10, -6, 9 ],
"faces": {
"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" }
}
},
{
"__comment": "Cube17",
"from": [ 8, -8.5, 7.75 ],
"to": [ 8.5, -8, 8.25 ],
"faces": {
"down": { "uv": [ 8, 7.75, 8.5, 8.25 ], "texture": "#texture" },
"up": { "uv": [ 8, 7.75, 8.5, 8.25 ], "texture": "#texture" },
"north": { "uv": [ 7.5, 8, 8, 8.5 ], "texture": "#texture" },
"south": { "uv": [ 8, 8, 8.5, 8.5 ], "texture": "#texture" },
"west": { "uv": [ 7.75, 8, 8.25, 8.5 ], "texture": "#texture" },
"east": { "uv": [ 7.75, 8, 8.25, 8.5 ], "texture": "#texture" }
}
},
{
"__comment": "Cube24",
"from": [ 6.75, 6, 7.5 ],
"to": [ 9.75, 15.5, 8.5 ],
"faces": {
"down": { "uv": [ 6.75, 7.5, 9.75, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 6.75, 7.5, 9.75, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 6.25, 0.5, 9.25, 10 ], "texture": "#texture" },
"south": { "uv": [ 6.75, 0.5, 9.75, 10 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 0.5, 8.5, 10 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 0.5, 8.5, 10 ], "texture": "#texture" }
}
},
{
"__comment": "Cube19",
"from": [ 6.5, 15.5, 7.5 ],
"to": [ 10, 21.5, 8.5 ],
"faces": {
"down": { "uv": [ 6.5, 7.5, 10, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 6.5, 7.5, 10, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 6, 0, 9.5, 0.5 ], "texture": "#texture" },
"south": { "uv": [ 6.5, 0, 10, 0.5 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 0, 8.5, 0.5 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 0, 8.5, 0.5 ], "texture": "#texture" }
}
},
{
"__comment": "Cube20",
"from": [ 8, 27.75, 7.5 ],
"to": [ 8.5, 28.75, 8.5 ],
"faces": {
"down": { "uv": [ 8, 7.5, 8.5, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 8, 7.5, 8.5, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 7.5, 3.25, 8, 4.25 ], "texture": "#texture" },
"south": { "uv": [ 8, 3.25, 8.5, 4.25 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 3.25, 8.5, 4.25 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 3.25, 8.5, 4.25 ], "texture": "#texture" }
}
}
],
"display": {
"thirdperson_righthand": {
"rotation": [ 0, 90, 0 ],
"translation": [ 0, 5.9, 1.33 ],
"scale": [ 0.75, 0.75, 0.75 ]
},
"thirdperson_lefthand": {
"rotation": [ 0, 90, 0 ],
"translation": [ 0, 5.9, 1.33 ],
"scale": [ 0.75, 0.75, 0.75 ]
},
"firstperson_righthand": {
"rotation": [ 0, 90, 0 ],
"translation": [ 0, 6.6, 1 ],
"scale": [ 0.75, 0.75, 0.75 ]
},
"firstperson_lefthand": {
"rotation": [ 0, 90, 0 ],
"translation": [ 0, 6.6, 1 ],
"scale": [ 0.75, 0.75, 0.75 ]
},
"gui": {
"rotation": [ 0, 0, -45 ],
"translation": [ -0.4, -0.4, 0 ],
"scale": [ 0.5, 0.5, 0.5 ]
},
"ground": {
"rotation": [ 90, 0, 0 ],
"scale": [ 0.75, 0.75, 0.75 ]
},
"fixed": {
"rotation": [ 0, 0, 45 ],
"translation": [ 0.7, -0.7, 0 ],
"scale": [ 0.66, 0.66, 0.66 ]
}
"particle": "forgecraft:items/copper/0",
"texture": "forgecraft:items/copper/0",
"handle": "forgecraft:items/leather_handle"
}
}
}

View File

@@ -0,0 +1,293 @@
{
"__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio",
"textures": {
"particle": "items/finished_bronze",
"texture": "items/finished_bronze",
"handle": "blocks/planks_oak"
},
"elements": [
{
"__comment": "Cube23",
"from": [ 7.25, -5.5, 7.25 ],
"to": [ 9.25, 0, 8.75 ],
"faces": {
"down": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#handle" },
"up": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#handle" },
"north": { "uv": [ 7, 9, 9, 16 ], "texture": "#handle" },
"south": { "uv": [ 7, 9, 9, 16 ], "texture": "#handle" },
"west": { "uv": [ 7.5, 9, 8.5, 16 ], "texture": "#handle" },
"east": { "uv": [ 7.5, 9, 8.5, 16 ], "texture": "#handle" }
}
},
{
"__comment": "Cube24",
"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" }
}
},
{
"__comment": "Cube25",
"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" }
}
},
{
"__comment": "Cube23",
"from": [ 6.5, 1, 7.5 ],
"to": [ 10, 6, 8.5 ],
"faces": {
"down": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 7, 9, 9, 16 ], "texture": "#texture" },
"south": { "uv": [ 7, 9, 9, 16 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 9, 8.5, 16 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 9, 8.5, 16 ], "texture": "#texture" }
}
},
{
"__comment": "Cube28",
"from": [ 8, 1, 8.5 ],
"to": [ 8.5, 24, 8.501 ],
"faces": {
"down": { "uv": [ 7.5, 7, 8.5, 7.5 ], "texture": "#texture" },
"up": { "uv": [ 7.5, 8.5, 8.5, 9 ], "texture": "#texture" },
"north": { "uv": [ 7.5, 0, 8.5, 15 ], "texture": "#texture" },
"south": { "uv": [ 7.5, 0, 8.5, 15 ], "texture": "#texture" },
"west": { "uv": [ 8.5, 0, 9, 15 ], "texture": "#texture" },
"east": { "uv": [ 7, 0, 7.5, 15 ], "texture": "#texture" }
}
},
{
"__comment": "Cube32",
"from": [ 6.75, 21.5, 7.5 ],
"to": [ 9.75, 23, 8.5 ],
"faces": {
"down": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 7, 7, 9, 9.5 ], "texture": "#texture" },
"south": { "uv": [ 7, 7, 9, 9.5 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 7, 8.5, 9.5 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 7, 8.5, 9.5 ], "texture": "#texture" }
}
},
{
"__comment": "Cube32",
"from": [ 7.25, 24.5, 7.5 ],
"to": [ 9.25, 26, 8.5 ],
"faces": {
"down": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 7, 7, 9, 8 ], "texture": "#texture" },
"south": { "uv": [ 7, 7, 9, 8 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 7, 8.5, 8 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 7, 8.5, 8 ], "texture": "#texture" }
}
},
{
"__comment": "Cube9",
"from": [ 7.75, 27, 7.5 ],
"to": [ 8.75, 28, 8.5 ],
"faces": {
"down": { "uv": [ 8, 7.5, 8.5, 8 ], "texture": "#texture", "rotation": 180 },
"up": { "uv": [ 8, 8, 8.5, 8.5 ], "texture": "#texture", "rotation": 180 },
"north": { "uv": [ 8, 4.5, 8.5, 5.5 ], "texture": "#texture" },
"south": { "uv": [ 7.5, 4.5, 8, 5.5 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 4.5, 8, 5.5 ], "texture": "#texture" },
"east": { "uv": [ 8, 4.5, 8.5, 5.5 ], "texture": "#texture" }
}
},
{
"__comment": "Cube28",
"from": [ 8, 1, 7.499 ],
"to": [ 8.5, 24, 7.5 ],
"faces": {
"down": { "uv": [ 7.5, 7, 8.5, 7.5 ], "texture": "#texture", "rotation": 180 },
"up": { "uv": [ 7.5, 8.5, 8.5, 9 ], "texture": "#texture", "rotation": 180 },
"north": { "uv": [ 7.5, 0, 8.5, 15 ], "texture": "#texture" },
"south": { "uv": [ 7.5, 0, 8.5, 15 ], "texture": "#texture" },
"west": { "uv": [ 7, 0, 7.5, 15 ], "texture": "#texture" },
"east": { "uv": [ 8.5, 0, 9, 15 ], "texture": "#texture" }
}
},
{
"__comment": "Cube14",
"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" }
}
},
{
"__comment": "Cube11",
"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" }
}
},
{
"__comment": "Cube13",
"from": [ 7, 23, 7.5 ],
"to": [ 9.5, 24.5, 8.5 ],
"faces": {
"down": { "uv": [ 7, 7.5, 9.5, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 7, 7.5, 9.5, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 6.5, 7.5, 9, 9 ], "texture": "#texture" },
"south": { "uv": [ 7, 7.5, 9.5, 9 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 7.5, 8.5, 9 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 7.5, 8.5, 9 ], "texture": "#texture" }
}
},
{
"__comment": "Cube14",
"from": [ 7.5, 26, 7.5 ],
"to": [ 9, 27, 8.5 ],
"faces": {
"down": { "uv": [ 7.5, 7.5, 9, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 7.5, 7.5, 9, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 7, 5, 8.5, 6 ], "texture": "#texture" },
"south": { "uv": [ 7.5, 5, 9, 6 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }
}
},
{
"__comment": "Cube15",
"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" }
}
},
{
"__comment": "Cube16",
"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" }
}
},
{
"__comment": "Cube17",
"from": [ 8, -8.5, 7.75 ],
"to": [ 8.5, -8, 8.25 ],
"faces": {
"down": { "uv": [ 8, 7.75, 8.5, 8.25 ], "texture": "#texture" },
"up": { "uv": [ 8, 7.75, 8.5, 8.25 ], "texture": "#texture" },
"north": { "uv": [ 7.5, 8, 8, 8.5 ], "texture": "#texture" },
"south": { "uv": [ 8, 8, 8.5, 8.5 ], "texture": "#texture" },
"west": { "uv": [ 7.75, 8, 8.25, 8.5 ], "texture": "#texture" },
"east": { "uv": [ 7.75, 8, 8.25, 8.5 ], "texture": "#texture" }
}
},
{
"__comment": "Cube24",
"from": [ 6.75, 6, 7.5 ],
"to": [ 9.75, 15.5, 8.5 ],
"faces": {
"down": { "uv": [ 6.75, 7.5, 9.75, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 6.75, 7.5, 9.75, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 6.25, 0.5, 9.25, 10 ], "texture": "#texture" },
"south": { "uv": [ 6.75, 0.5, 9.75, 10 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 0.5, 8.5, 10 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 0.5, 8.5, 10 ], "texture": "#texture" }
}
},
{
"__comment": "Cube19",
"from": [ 6.5, 15.5, 7.5 ],
"to": [ 10, 21.5, 8.5 ],
"faces": {
"down": { "uv": [ 6.5, 7.5, 10, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 6.5, 7.5, 10, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 6, 0, 9.5, 0.5 ], "texture": "#texture" },
"south": { "uv": [ 6.5, 0, 10, 0.5 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 0, 8.5, 0.5 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 0, 8.5, 0.5 ], "texture": "#texture" }
}
},
{
"__comment": "Cube20",
"from": [ 8, 27.75, 7.5 ],
"to": [ 8.5, 28.75, 8.5 ],
"faces": {
"down": { "uv": [ 8, 7.5, 8.5, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 8, 7.5, 8.5, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 7.5, 3.25, 8, 4.25 ], "texture": "#texture" },
"south": { "uv": [ 8, 3.25, 8.5, 4.25 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 3.25, 8.5, 4.25 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 3.25, 8.5, 4.25 ], "texture": "#texture" }
}
}
],
"display": {
"thirdperson_righthand": {
"rotation": [ 0, 90, 0 ],
"translation": [ 0, 5.9, 1.33 ],
"scale": [ 0.75, 0.75, 0.75 ]
},
"thirdperson_lefthand": {
"rotation": [ 0, 90, 0 ],
"translation": [ 0, 5.9, 1.33 ],
"scale": [ 0.75, 0.75, 0.75 ]
},
"firstperson_righthand": {
"rotation": [ 0, 90, 0 ],
"translation": [ 0, 6.6, 1 ],
"scale": [ 0.75, 0.75, 0.75 ]
},
"firstperson_lefthand": {
"rotation": [ 0, 90, 0 ],
"translation": [ 0, 6.6, 1 ],
"scale": [ 0.75, 0.75, 0.75 ]
},
"gui": {
"rotation": [ 0, 0, -45 ],
"translation": [ -0.4, -0.4, 0 ],
"scale": [ 0.5, 0.5, 0.5 ]
},
"ground": {
"rotation": [ 90, 0, 0 ],
"scale": [ 0.75, 0.75, 0.75 ]
},
"fixed": {
"rotation": [ 0, 0, 45 ],
"translation": [ 0.7, -0.7, 0 ],
"scale": [ 0.66, 0.66, 0.66 ]
}
}
}

View File

@@ -0,0 +1,269 @@
{
"__comment": "Designed by Captainaviator with Cubik Studio - https://cubik.studio",
"textures": {
"particle": "blocks/e_particle",
"texture": "blocks/iron_ingot",
"light": "blocks/iron_ingot_light",
"dark": "blocks/iron_ingot_dark",
"handle": "items/e_texture"
},
"elements": [
{
"__comment": "Box1",
"from": [ 7.5, 0, -14.5 ],
"to": [ 8, 0.5, 16 ],
"faces": {
"down": { "uv": [ 7.5, 0, 8, 16 ], "texture": "#dark" },
"up": { "uv": [ 7.5, 0, 8, 16 ], "texture": "#dark" },
"north": { "uv": [ 8, 15.5, 8.5, 16 ], "texture": "#dark" },
"south": { "uv": [ 7.5, 15.5, 8, 16 ], "texture": "#dark" },
"west": { "uv": [ 0, 15.5, 16, 16 ], "texture": "#dark" },
"east": { "uv": [ 0, 15.5, 16, 16 ], "texture": "#dark" }
}
},
{
"__comment": "Box2",
"from": [ 8, 0, -14.5 ],
"to": [ 8.5, 0.5, 16 ],
"faces": {
"down": { "uv": [ 8, 0, 8.5, 16 ], "texture": "#texture" },
"up": { "uv": [ 8, 0, 8.5, 16 ], "texture": "#texture" },
"north": { "uv": [ 7.5, 15.5, 8, 16 ], "texture": "#texture" },
"south": { "uv": [ 8, 15.5, 8.5, 16 ], "texture": "#texture" },
"west": { "uv": [ 0, 15.5, 16, 16 ], "texture": "#texture" },
"east": { "uv": [ 0, 15.5, 16, 16 ], "texture": "#texture" }
}
},
{
"__comment": "Box3",
"from": [ 7, 0, -14.5 ],
"to": [ 7.5, 0.5, 16 ],
"faces": {
"down": { "uv": [ 7, 0, 7.5, 16 ], "texture": "#texture" },
"up": { "uv": [ 7, 0, 7.5, 16 ], "texture": "#texture" },
"north": { "uv": [ 8.5, 15.5, 9, 16 ], "texture": "#texture" },
"south": { "uv": [ 7, 15.5, 7.5, 16 ], "texture": "#texture" },
"west": { "uv": [ 0, 15.5, 16, 16 ], "texture": "#texture" },
"east": { "uv": [ 0, 15.5, 16, 16 ], "texture": "#texture" }
}
},
{
"__comment": "Box4",
"from": [ 8.5, 0, -13.5 ],
"to": [ 9, 0.5, 16 ],
"faces": {
"down": { "uv": [ 8.5, 0, 9, 16 ], "texture": "#light" },
"up": { "uv": [ 8.5, 0, 9, 16 ], "texture": "#light" },
"north": { "uv": [ 7, 15.5, 7.5, 16 ], "texture": "#light" },
"south": { "uv": [ 8.5, 15.5, 9, 16 ], "texture": "#light" },
"west": { "uv": [ 0, 15.5, 16, 16 ], "texture": "#light" },
"east": { "uv": [ 0, 15.5, 16, 16 ], "texture": "#light" }
}
},
{
"__comment": "Box5",
"from": [ 6.5, 0, -13.5 ],
"to": [ 7, 0.5, 16 ],
"faces": {
"down": { "uv": [ 6.5, 0, 7, 16 ], "texture": "#light" },
"up": { "uv": [ 6.5, 0, 7, 16 ], "texture": "#light" },
"north": { "uv": [ 9, 15.5, 9.5, 16 ], "texture": "#light" },
"south": { "uv": [ 6.5, 15.5, 7, 16 ], "texture": "#light" },
"west": { "uv": [ 0, 15.5, 16, 16 ], "texture": "#light" },
"east": { "uv": [ 0, 15.5, 16, 16 ], "texture": "#light" }
}
},
{
"__comment": "Box6",
"from": [ 4.5, -0.25, 16 ],
"to": [ 11, 0.75, 16.5 ],
"faces": {
"down": { "uv": [ 4.5, 15.5, 11, 16 ], "texture": "#texture" },
"up": { "uv": [ 4.5, 0, 11, 0.5 ], "texture": "#texture" },
"north": { "uv": [ 5, 15.25, 11.5, 16 ], "texture": "#texture" },
"south": { "uv": [ 4.5, 15.25, 11, 16 ], "texture": "#texture" },
"west": { "uv": [ 0, 15.25, 0.5, 16 ], "texture": "#texture" },
"east": { "uv": [ 15.5, 15.25, 16, 16 ], "texture": "#texture" }
}
},
{
"__comment": "Box7",
"from": [ 11, -0.25, 15.625 ],
"to": [ 11.5, 0.75, 16.625 ],
"faces": {
"down": { "uv": [ 11, 0, 11.5, 0.375 ], "texture": "#texture" },
"up": { "uv": [ 11, 15.625, 11.5, 16 ], "texture": "#texture" },
"north": { "uv": [ 4.5, 15.25, 5, 16 ], "texture": "#texture" },
"south": { "uv": [ 11, 15.25, 11.5, 16 ], "texture": "#texture" },
"west": { "uv": [ 15.625, 15.25, 16, 16 ], "texture": "#texture" },
"east": { "uv": [ 0, 15.25, 0.375, 16 ], "texture": "#texture" }
}
},
{
"__comment": "Box8",
"from": [ 4, -0.25, 15.625 ],
"to": [ 4.5, 0.75, 16.625 ],
"faces": {
"down": { "uv": [ 4, 0, 4.5, 0.375 ], "texture": "#texture" },
"up": { "uv": [ 4, 15.625, 4.5, 16 ], "texture": "#texture" },
"north": { "uv": [ 11.5, 15.25, 12, 16 ], "texture": "#texture" },
"south": { "uv": [ 4, 15.25, 4.5, 16 ], "texture": "#texture" },
"west": { "uv": [ 15.625, 15.25, 16, 16 ], "texture": "#texture" },
"east": { "uv": [ 0, 15.25, 0.375, 16 ], "texture": "#texture" }
}
},
{
"__comment": "Box9",
"from": [ 7, -0.25, 16.5 ],
"to": [ 8.5, 0.75, 21 ],
"faces": {
"down": { "uv": [ 7, 11, 8.5, 15.5 ], "texture": "#handle" },
"up": { "uv": [ 7, 0.5, 8.5, 5 ], "texture": "#handle" },
"north": { "uv": [ 7.5, 15.25, 9, 16 ], "texture": "#handle" },
"south": { "uv": [ 7, 15.25, 8.5, 16 ], "texture": "#handle" },
"west": { "uv": [ 0.5, 15.25, 5, 16 ], "texture": "#handle" },
"east": { "uv": [ 11, 15.25, 15.5, 16 ], "texture": "#handle" }
}
},
{
"__comment": "Box10",
"from": [ 7.25, -0.25, 21 ],
"to": [ 8.25, 0.75, 24.5 ],
"faces": {
"down": { "uv": [ 7.25, 7.5, 8.25, 11 ], "texture": "#handle" },
"up": { "uv": [ 7.25, 5, 8.25, 8.5 ], "texture": "#handle" },
"north": { "uv": [ 7.75, 15.25, 8.75, 16 ], "texture": "#handle" },
"south": { "uv": [ 7.25, 15.25, 8.25, 16 ], "texture": "#handle" },
"west": { "uv": [ 5, 15.25, 8.5, 16 ], "texture": "#handle" },
"east": { "uv": [ 7.5, 15.25, 11, 16 ], "texture": "#handle" }
}
},
{
"__comment": "Box11",
"from": [ 7, -0.5, 24.5 ],
"to": [ 8.5, 1, 26 ],
"faces": {
"down": { "uv": [ 7, 6, 8.5, 7.5 ], "texture": "#texture" },
"up": { "uv": [ 7, 8.5, 8.5, 10 ], "texture": "#texture" },
"north": { "uv": [ 7.5, 15, 9, 16 ], "texture": "#texture" },
"south": { "uv": [ 7, 15, 8.5, 16 ], "texture": "#texture" },
"west": { "uv": [ 8.5, 15, 10, 16 ], "texture": "#texture" },
"east": { "uv": [ 6, 15, 7.5, 16 ], "texture": "#texture" }
}
},
{
"__comment": "Box12",
"from": [ 7.5, 0, 26 ],
"to": [ 8, 0.5, 26.5 ],
"faces": {
"down": { "uv": [ 7.5, 5.5, 8, 6 ], "texture": "#light" },
"up": { "uv": [ 7.5, 10, 8, 10.5 ], "texture": "#light" },
"north": { "uv": [ 8, 15.5, 8.5, 16 ], "texture": "#light" },
"south": { "uv": [ 7.5, 15.5, 8, 16 ], "texture": "#light" },
"west": { "uv": [ 10, 15.5, 10.5, 16 ], "texture": "#light" },
"east": { "uv": [ 5.5, 15.5, 6, 16 ], "texture": "#light" }
}
},
{
"__comment": "Box13",
"from": [ 6.5, 0, 25 ],
"to": [ 7, 0.5, 25.5 ],
"faces": {
"down": { "uv": [ 6.5, 6.5, 7, 7 ], "texture": "#light" },
"up": { "uv": [ 6.5, 9, 7, 9.5 ], "texture": "#light" },
"north": { "uv": [ 9, 15.5, 9.5, 16 ], "texture": "#light" },
"south": { "uv": [ 6.5, 15.5, 7, 16 ], "texture": "#light" },
"west": { "uv": [ 9, 15.5, 9.5, 16 ], "texture": "#light" },
"east": { "uv": [ 6.5, 15.5, 7, 16 ], "texture": "#light" }
}
},
{
"__comment": "Box14",
"from": [ 8.5, 0, 25 ],
"to": [ 9, 0.5, 25.5 ],
"faces": {
"down": { "uv": [ 8.5, 6.5, 9, 7 ], "texture": "#light" },
"up": { "uv": [ 8.5, 9, 9, 9.5 ], "texture": "#light" },
"north": { "uv": [ 7, 15.5, 7.5, 16 ], "texture": "#light" },
"south": { "uv": [ 8.5, 15.5, 9, 16 ], "texture": "#light" },
"west": { "uv": [ 9, 15.5, 9.5, 16 ], "texture": "#light" },
"east": { "uv": [ 6.5, 15.5, 7, 16 ], "texture": "#light" }
}
},
{
"__comment": "Box15",
"from": [ 7.5, 1, 25 ],
"to": [ 8, 1.5, 25.5 ],
"faces": {
"down": { "uv": [ 7.5, 6.5, 8, 7 ], "texture": "#light" },
"up": { "uv": [ 7.5, 9, 8, 9.5 ], "texture": "#light" },
"north": { "uv": [ 8, 14.5, 8.5, 15 ], "texture": "#light" },
"south": { "uv": [ 7.5, 14.5, 8, 15 ], "texture": "#light" },
"west": { "uv": [ 9, 14.5, 9.5, 15 ], "texture": "#light" },
"east": { "uv": [ 6.5, 14.5, 7, 15 ], "texture": "#light" }
}
},
{
"__comment": "Box16",
"from": [ 7.5, -1, 25 ],
"to": [ 8, -0.5, 25.5 ],
"faces": {
"down": { "uv": [ 7.5, 6.5, 8, 7 ], "texture": "#light" },
"up": { "uv": [ 7.5, 9, 8, 9.5 ], "texture": "#light" },
"north": { "uv": [ 8, 0.5, 8.5, 1 ], "texture": "#light" },
"south": { "uv": [ 7.5, 0.5, 8, 1 ], "texture": "#light" },
"west": { "uv": [ 9, 0.5, 9.5, 1 ], "texture": "#light" },
"east": { "uv": [ 6.5, 0.5, 7, 1 ], "texture": "#light" }
}
},
{
"__comment": "Box17",
"from": [ 7.5, 0, -15.5 ],
"to": [ 8, 0.5, -14.5 ],
"faces": {
"down": { "uv": [ 7.5, 14.5, 8, 15.5 ], "texture": "#light" },
"up": { "uv": [ 7.5, 0.5, 8, 1.5 ], "texture": "#light" },
"north": { "uv": [ 8, 15.5, 8.5, 16 ], "texture": "#light" },
"south": { "uv": [ 7.5, 15.5, 8, 16 ], "texture": "#light" },
"west": { "uv": [ 0.5, 15.5, 1.5, 16 ], "texture": "#light" },
"east": { "uv": [ 14.5, 15.5, 15.5, 16 ], "texture": "#light" }
}
}
],
"display": {
"thirdperson_righthand": {
"rotation": [ 90, 0, -90 ],
"translation": [ 6, 8.39, 1.25 ],
"scale": [ 0.85, 0.85, 0.85 ]
},
"thirdperson_lefthand": {
"rotation": [ 90, 0, -90 ],
"translation": [ 5.5, 7, 1.25 ],
"scale": [ 0.75, 0.75, 0.75 ]
},
"firstperson_righthand": {
"rotation": [ 75, -4, -84 ],
"translation": [ 7.75, 4, 0 ],
"scale": [ 0.75, 0.75, 0.75 ]
},
"firstperson_lefthand": {
"rotation": [ 75, -4, -84 ],
"translation": [ 7.75, 4, 0 ],
"scale": [ 0.75, 0.75, 0.75 ]
},
"gui": {
"rotation": [ 90, -45, 3 ],
"translation": [ -0.7, -0.7, 4 ],
"scale": [ 0.5, 0.5, 0.5 ]
},
"ground": {
"translation": [ 0, 2, 0 ],
"scale": [ 0.5, 0.5, 0.5 ]
},
"fixed": {
"rotation": [ 90, 45, 3 ],
"translation": [ 1, -1, 5.5 ],
"scale": [ 0.65, 0.65, 0.65 ]
}
}
}

View File

@@ -2,7 +2,8 @@
"forge_marker":1,
"textures": {
"particle": "forgecraft:items/bronze/0",
"texture": "forgecraft:items/bronze/0"
"texture": "forgecraft:items/bronze/0",
"handle": "forgecraft:items/bronze/0"
},
"parent": "forgecraft:item/rawgladius"
}

View File

@@ -2,7 +2,8 @@
"forge_marker":1,
"textures": {
"particle": "forgecraft:items/clean_iron/0",
"texture": "forgecraft:items/clean_iron/0"
"texture": "forgecraft:items/clean_iron/0",
"handle": "forgecraft:items/clean_iron/0"
},
"parent": "forgecraft:item/rawgladius"
}

View File

@@ -0,0 +1,11 @@
{
"forge_marker":1,
"textures": {
"particle": "forgecraft:items/clean_iron/0",
"texture": "forgecraft:items/clean_iron/0",
"light": "forgecraft:blocks/clean_iron_ingot_light",
"dark": "forgecraft:blocks/clean_iron_ingot_dark",
"handle": "forgecraft:items/clean_iron/0"
},
"parent": "forgecraft:item/rawlongsword_model"
}

View File

@@ -0,0 +1,9 @@
{
"forge_marker":1,
"textures": {
"particle": "forgecraft:items/clean_iron/0",
"texture": "forgecraft:items/clean_iron/0",
"handle": "forgecraft:items/clean_iron/0"
},
"parent": "forgecraft:item/rawslayer_model"
}

View File

@@ -2,7 +2,8 @@
"forge_marker":1,
"textures": {
"particle": "forgecraft:items/copper/0",
"texture": "forgecraft:items/copper/0"
"texture": "forgecraft:items/copper/0",
"handle": "forgecraft:items/copper/0"
},
"parent": "forgecraft:item/rawgladius"
}

View File

@@ -2,7 +2,8 @@
"__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio",
"textures": {
"particle": "items/finished_bronze",
"texture": "items/finished_bronze"
"texture": "items/finished_bronze",
"handle": "items/e_texture"
},
"elements": [
{
@@ -10,12 +11,12 @@
"from": [ 7.25, -5.5, 7.25 ],
"to": [ 9.25, 1, 8.75 ],
"faces": {
"down": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 7, 8, 9, 16 ], "texture": "#texture" },
"south": { "uv": [ 7, 8, 9, 16 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 8, 8.5, 16 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 8, 8.5, 16 ], "texture": "#texture" }
"down": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#handle" },
"up": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#handle" },
"north": { "uv": [ 7, 8, 9, 16 ], "texture": "#handle" },
"south": { "uv": [ 7, 8, 9, 16 ], "texture": "#handle" },
"west": { "uv": [ 7.5, 8, 8.5, 16 ], "texture": "#handle" },
"east": { "uv": [ 7.5, 8, 8.5, 16 ], "texture": "#handle" }
}
},
{
@@ -127,12 +128,12 @@
"from": [ 8, -8.5, 7.75 ],
"to": [ 8.5, -5.5, 8.25 ],
"faces": {
"down": { "uv": [ 8, 7.75, 8.5, 8.25 ], "texture": "#texture" },
"up": { "uv": [ 8, 7.75, 8.5, 8.25 ], "texture": "#texture" },
"north": { "uv": [ 7.5, 8, 8, 11 ], "texture": "#texture" },
"south": { "uv": [ 8, 8, 8.5, 11 ], "texture": "#texture" },
"west": { "uv": [ 7.75, 8, 8.5, 11 ], "texture": "#texture" },
"east": { "uv": [ 7.75, 8, 8.5, 11 ], "texture": "#texture" }
"down": { "uv": [ 8, 7.75, 8.5, 8.25 ], "texture": "#handle" },
"up": { "uv": [ 8, 7.75, 8.5, 8.25 ], "texture": "#handle" },
"north": { "uv": [ 7.5, 8, 8, 11 ], "texture": "#handle" },
"south": { "uv": [ 8, 8, 8.5, 11 ], "texture": "#handle" },
"west": { "uv": [ 7.75, 8, 8.5, 11 ], "texture": "#handle" },
"east": { "uv": [ 7.75, 8, 8.5, 11 ], "texture": "#handle" }
}
},
{

View File

@@ -0,0 +1,9 @@
{
"forge_marker":1,
"textures": {
"particle": "forgecraft:items/iron/0",
"texture": "forgecraft:items/iron/0",
"handle": "forgecraft:items/iron/0"
},
"parent": "forgecraft:item/rawslayer_model"
}

View File

@@ -1,10 +1,11 @@
{
"__comment": "Designed by Captainaviator with Cubik Studio - https://cubik.studio",
"textures": {
"particle": "blocks/e_particle",
"particle": "blocks/iron_ingot",
"texture": "blocks/iron_ingot",
"light": "blocks/iron_ingot_light",
"dark": "blocks/iron_ingot_dark"
"dark": "blocks/iron_ingot_dark",
"handle": "items/e_texture"
},
"elements": [
{
@@ -74,15 +75,15 @@
},
{
"__comment": "Box9",
"from": [ 7, 0, 16 ],
"to": [ 8.5, 0.5, 21 ],
"from": [ 7, -0.25, 16 ],
"to": [ 8.5, 0.75, 21 ],
"faces": {
"down": { "uv": [ 7, 11, 8.5, 15.5 ], "texture": "#texture" },
"up": { "uv": [ 7, 0.5, 8.5, 5 ], "texture": "#texture" },
"north": { "uv": [ 7.5, 15.25, 9, 16 ], "texture": "#texture" },
"south": { "uv": [ 7, 15.25, 8.5, 16 ], "texture": "#texture" },
"west": { "uv": [ 0.5, 15.25, 5, 16 ], "texture": "#texture" },
"east": { "uv": [ 11, 15.25, 15.5, 16 ], "texture": "#texture" }
"down": { "uv": [ 7, 11, 8.5, 15.5 ], "texture": "#handle" },
"up": { "uv": [ 7, 0.5, 8.5, 5 ], "texture": "#handle" },
"north": { "uv": [ 7.5, 15.25, 9, 16 ], "texture": "#handle" },
"south": { "uv": [ 7, 15.25, 8.5, 16 ], "texture": "#handle" },
"west": { "uv": [ 0.5, 15.25, 5, 16 ], "texture": "#handle" },
"east": { "uv": [ 11, 15.25, 15.5, 16 ], "texture": "#handle" }
}
},
{
@@ -90,12 +91,12 @@
"from": [ 7.25, -0.25, 21 ],
"to": [ 8.25, 0.75, 24.5 ],
"faces": {
"down": { "uv": [ 7.25, 7.5, 8.25, 11 ], "texture": "#texture" },
"up": { "uv": [ 7.25, 5, 8.25, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 7.75, 15.25, 8.75, 16 ], "texture": "#texture" },
"south": { "uv": [ 7.25, 15.25, 8.25, 16 ], "texture": "#texture" },
"west": { "uv": [ 5, 15.25, 8.5, 16 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 15.25, 11, 16 ], "texture": "#texture" }
"down": { "uv": [ 7.25, 7.5, 8.25, 11 ], "texture": "#handle" },
"up": { "uv": [ 7.25, 5, 8.25, 8.5 ], "texture": "#handle" },
"north": { "uv": [ 7.75, 15.25, 8.75, 16 ], "texture": "#handle" },
"south": { "uv": [ 7.25, 15.25, 8.25, 16 ], "texture": "#handle" },
"west": { "uv": [ 5, 15.25, 8.5, 16 ], "texture": "#handle" },
"east": { "uv": [ 7.5, 15.25, 11, 16 ], "texture": "#handle" }
}
},
{
@@ -138,9 +139,9 @@
"translation": [ -0.7, -0.7, 4 ],
"scale": [ 0.5, 0.5, 0.5 ]
},
"head": {
"translation": [ 0, 14.65, 0 ]
},
"head": {
"translation": [ 0, 14.75, 0 ]
},
"ground": {
"translation": [ 0, 2, 0 ],
"scale": [ 0.5, 0.5, 0.5 ]

View File

@@ -4,7 +4,8 @@
"particle": "blocks/e_particle",
"texture": "blocks/iron_ingot",
"dark": "blocks/e_texture",
"light": "blocks/e_texture"
"light": "blocks/e_texture",
"handle": "items/e_texture"
},
"elements": [
{
@@ -250,25 +251,23 @@
"from": [ 9, 16.5, 18 ],
"to": [ 10.5, 17.5, 29 ],
"faces": {
"down": { "uv": [ 9, 3, 10.5, 14 ], "texture": "#texture" },
"up": { "uv": [ 9, 2, 10.5, 13 ], "texture": "#texture" },
"north": { "uv": [ 5.5, 14.5, 7, 15.5 ], "texture": "#texture" },
"south": { "uv": [ 9, 14.5, 10.5, 15.5 ], "texture": "#texture" },
"west": { "uv": [ 2, 14.5, 13, 15.5 ], "texture": "#texture" },
"east": { "uv": [ 3, 14.5, 14, 15.5 ], "texture": "#texture" }
"down": { "uv": [ 9, 3, 10.5, 14 ], "texture": "#handle" },
"up": { "uv": [ 9, 2, 10.5, 13 ], "texture": "#handle" },
"south": { "uv": [ 9, 14.5, 10.5, 15.5 ], "texture": "#handle" },
"west": { "uv": [ 2, 14.5, 13, 15.5 ], "texture": "#handle" },
"east": { "uv": [ 3, 14.5, 14, 15.5 ], "texture": "#handle" }
}
},
{
"__comment": "Box22",
"from": [ 9.25, 16.25, 18 ],
"to": [ 10.25, 17.75, 31.5 ],
"to": [ 10.25, 17.75, 29 ],
"faces": {
"down": { "uv": [ 9.25, 3, 10.25, 14 ], "texture": "#dark" },
"up": { "uv": [ 9.25, 2, 10.25, 13 ], "texture": "#dark" },
"north": { "uv": [ 5.75, 14.25, 6.75, 15.75 ], "texture": "#texture" },
"south": { "uv": [ 9.25, 14.25, 10.25, 15.75 ], "texture": "#texture" },
"west": { "uv": [ 2, 0, 13, 0.5 ], "texture": "#dark" },
"east": { "uv": [ 3, 0, 14, 0.5 ], "texture": "#dark" }
"down": { "uv": [ 9.25, 3, 10.25, 14 ], "texture": "#handle" },
"up": { "uv": [ 9.25, 2, 10.25, 13 ], "texture": "#handle" },
"south": { "uv": [ 9.25, 14.25, 10.25, 15.75 ], "texture": "#handle" },
"west": { "uv": [ 2, 0, 13, 0.5 ], "texture": "#handle" },
"east": { "uv": [ 3, 0, 14, 0.5 ], "texture": "#handle" }
}
}
],
@@ -296,9 +295,6 @@
"translation": [ 0, -1.3, 0 ],
"scale": [ 0.4, 0.4, 0.4 ]
},
"head": {
"translation": [ -1.5, -0.85, 0 ]
},
"ground": {
"translation": [ 0, -5, 0 ],
"scale": [ 0.5, 0.5, 0.5 ]

View File

@@ -2,7 +2,8 @@
"forge_marker":1,
"textures": {
"particle": "forgecraft:items/steel/0",
"texture": "forgecraft:items/steel/0"
"texture": "forgecraft:items/steel/0",
"handle": "forgecraft:items/steel/0"
},
"parent": "forgecraft:item/rawgladius"
}

View File

@@ -0,0 +1,11 @@
{
"forge_marker":1,
"textures": {
"particle": "forgecraft:items/steel/0",
"texture": "forgecraft:items/steel/0",
"light": "forgecraft:blocks/steel_ingot_light",
"dark": "forgecraft:blocks/steel_ingot_dark",
"handle": "forgecraft:items/steel/0"
},
"parent": "forgecraft:item/rawlongsword_model"
}

View File

@@ -0,0 +1,9 @@
{
"forge_marker":1,
"textures": {
"particle": "forgecraft:items/steel/0",
"texture": "forgecraft:items/steel/0",
"handle": "forgecraft:items/steel/0"
},
"parent": "forgecraft:item/rawslayer_model"
}

View File

@@ -1,8 +1,9 @@
{
"forge_marker":1,
"textures": {
"particle": "forgecraft:items/wootz/0",
"texture": "forgecraft:items/wootz/0"
},
"parent": "forgecraft:item/rawgladius"
"forge_marker":1,
"textures": {
"particle": "forgecraft:items/wootz/0",
"texture": "forgecraft:items/wootz/0",
"handle": "forgecraft:items/steel/0"
},
"parent": "forgecraft:item/rawgladius"
}

View File

@@ -0,0 +1,11 @@
{
"forge_marker":1,
"textures": {
"particle": "forgecraft:items/wootz/0",
"texture": "forgecraft:items/wootz/0",
"light": "forgecraft:blocks/wootz_ingot_light",
"dark": "forgecraft:blocks/wootz_ingot_dark",
"handle": "forgecraft:items/wootz/0"
},
"parent": "forgecraft:item/rawlongsword_model"
}

View File

@@ -0,0 +1,9 @@
{
"forge_marker":1,
"textures": {
"particle": "forgecraft:items/wootz/0",
"texture": "forgecraft:items/wootz/0",
"handle": "forgecraft:items/wootz/0"
},
"parent": "forgecraft:item/rawslayer_model"
}

View File

@@ -2,7 +2,8 @@
"forge_marker":1,
"textures": {
"particle": "forgecraft:items/iron/0",
"texture": "forgecraft:items/iron/0"
"texture": "forgecraft:items/iron/0",
"handle": "forgecraft:items/iron/0"
},
"parent": "forgecraft:item/rawgladius"
}

View File

@@ -0,0 +1,332 @@
{
"__comment": "Designed by Captainaviator with Cubik Studio - https://cubik.studio",
"textures": {
"particle": "blocks/e_particle",
"texture": "blocks/iron_ingot",
"dark": "blocks/e_texture",
"light": "blocks/e_texture",
"handle": "items/e_texture"
},
"elements": [
{
"__comment": "Box1",
"from": [ 5, 16.5, -15 ],
"to": [ 10.5, 17.5, 18 ],
"faces": {
"down": { "uv": [ 5, 0, 10.5, 16 ], "texture": "#texture" },
"up": { "uv": [ 5, 0, 10.5, 16 ], "texture": "#texture" },
"north": { "uv": [ 5.5, 15.5, 11, 16 ], "texture": "#texture" },
"south": { "uv": [ 5, 15.5, 10.5, 16 ], "texture": "#texture" },
"west": { "uv": [ 0, 15.5, 16, 16 ], "texture": "#texture" },
"east": { "uv": [ 0, 15.5, 16, 16 ], "texture": "#texture" }
}
},
{
"__comment": "Box1",
"from": [ 7, 16, -12.5 ],
"to": [ 10.5, 18, 18 ],
"faces": {
"down": { "uv": [ 7, 0, 10.5, 16 ], "texture": "#texture" },
"up": { "uv": [ 7, 0, 10.5, 16 ], "texture": "#texture" },
"north": { "uv": [ 5.5, 0, 9, 0.25 ], "texture": "#texture" },
"south": { "uv": [ 7, 0, 10.5, 0.25 ], "texture": "#texture" },
"west": { "uv": [ 0, 0, 16, 0.25 ], "texture": "#texture" },
"east": { "uv": [ 0, 0, 16, 0.25 ], "texture": "#texture" }
}
},
{
"__comment": "Box1",
"from": [ 9, 15.5, -10 ],
"to": [ 10.5, 18.5, 18 ],
"faces": {
"down": { "uv": [ 9, 0, 10.5, 16 ], "texture": "#texture" },
"up": { "uv": [ 9, 0, 10.5, 16 ], "texture": "#texture" },
"north": { "uv": [ 5.5, 0, 7, 0.5 ], "texture": "#texture" },
"south": { "uv": [ 9, 0, 10.5, 0.5 ], "texture": "#texture" },
"west": { "uv": [ 0, 0, 16, 0.5 ], "texture": "#texture" },
"east": { "uv": [ 0, 0, 16, 0.5 ], "texture": "#texture" }
}
},
{
"__comment": "Box4",
"from": [ 14, 16.5, -15 ],
"to": [ 14.5, 17.5, -9 ],
"faces": {
"down": { "uv": [ 14, 9, 14.5, 15 ], "texture": "#texture" },
"up": { "uv": [ 14, 1, 14.5, 7 ], "texture": "#texture" },
"north": { "uv": [ 1.5, 15.5, 2, 16 ], "texture": "#texture" },
"south": { "uv": [ 14, 15.5, 14.5, 16 ], "texture": "#texture" },
"east": { "uv": [ 9, 15.5, 15, 16 ], "texture": "#texture" }
}
},
{
"__comment": "Box5",
"from": [ 14.5, 16.5, -15 ],
"to": [ 15, 17.5, -13 ],
"faces": {
"down": { "uv": [ 14.5, 13, 15, 15 ], "texture": "#texture" },
"up": { "uv": [ 14.5, 1, 15, 3 ], "texture": "#texture" },
"north": { "uv": [ 1, 15.5, 1.5, 16 ], "texture": "#texture" },
"south": { "uv": [ 14.5, 15.5, 15, 16 ], "texture": "#texture" },
"east": { "uv": [ 13, 15.5, 15, 16 ], "texture": "#texture" }
}
},
{
"__comment": "Box6",
"from": [ 15, 16.5, -15 ],
"to": [ 15.5, 17.5, -14 ],
"faces": {
"down": { "uv": [ 15, 14, 15.5, 15 ], "texture": "#texture" },
"up": { "uv": [ 15, 1, 15.5, 2 ], "texture": "#texture" },
"north": { "uv": [ 0.5, 15.5, 1, 16 ], "texture": "#texture" },
"south": { "uv": [ 15, 15.5, 15.5, 16 ], "texture": "#texture" },
"east": { "uv": [ 14, 15.5, 15, 16 ], "texture": "#texture" }
}
},
{
"__comment": "Box7",
"from": [ 15.5, 16.5, -15 ],
"to": [ 16, 17.5, -14.5 ],
"faces": {
"down": { "uv": [ 15.5, 14.5, 16, 15 ], "texture": "#texture" },
"up": { "uv": [ 15.5, 1, 16, 1.5 ], "texture": "#texture" },
"north": { "uv": [ 0, 15.5, 0.5, 16 ], "texture": "#texture" },
"south": { "uv": [ 15.5, 15.5, 16, 16 ], "texture": "#texture" },
"east": { "uv": [ 14.5, 15.5, 15, 16 ], "texture": "#texture" }
}
},
{
"__comment": "Box8",
"from": [ 5, 16.5, 18 ],
"to": [ 7, 17.5, 18.5 ],
"faces": {
"down": { "uv": [ 5, 13.5, 7, 14 ], "texture": "#texture" },
"up": { "uv": [ 5, 2, 7, 2.5 ], "texture": "#texture" },
"south": { "uv": [ 5, 15.5, 7, 16 ], "texture": "#texture" },
"west": { "uv": [ 2, 15.5, 2.5, 16 ], "texture": "#texture" },
"east": { "uv": [ 13.5, 15.5, 14, 16 ], "texture": "#texture" }
}
},
{
"__comment": "Box9",
"from": [ 5, 16.5, 18.5 ],
"to": [ 6, 17.5, 19 ],
"faces": {
"down": { "uv": [ 5, 13, 6, 13.5 ], "texture": "#texture" },
"up": { "uv": [ 5, 2.5, 6, 3 ], "texture": "#texture" },
"south": { "uv": [ 5, 15.5, 6, 16 ], "texture": "#texture" },
"west": { "uv": [ 2.5, 15.5, 3, 16 ], "texture": "#texture" },
"east": { "uv": [ 13, 15.5, 13.5, 16 ], "texture": "#texture" }
}
},
{
"__comment": "Box10",
"from": [ 5, 16.5, 19 ],
"to": [ 5.5, 17.5, 19.5 ],
"faces": {
"down": { "uv": [ 5, 12.5, 5.5, 13 ], "texture": "#texture" },
"up": { "uv": [ 5, 3, 5.5, 3.5 ], "texture": "#texture" },
"south": { "uv": [ 5, 15.5, 5.5, 16 ], "texture": "#texture" },
"west": { "uv": [ 3, 15.5, 3.5, 16 ], "texture": "#texture" },
"east": { "uv": [ 12.5, 15.5, 13, 16 ], "texture": "#texture" }
}
},
{
"__comment": "Box11",
"from": [ 13.5, 16.5, 18 ],
"to": [ 14, 17.5, 19 ],
"faces": {
"down": { "uv": [ 13.5, 13, 14, 14 ], "texture": "#texture" },
"up": { "uv": [ 13.5, 2, 14, 3 ], "texture": "#texture" },
"south": { "uv": [ 13.5, 15.5, 14, 16 ], "texture": "#texture" },
"east": { "uv": [ 13, 15.5, 14, 16 ], "texture": "#texture" }
}
},
{
"__comment": "Box12",
"from": [ 13, 16, 18 ],
"to": [ 13.5, 18, 19 ],
"faces": {
"down": { "uv": [ 13, 13, 13.5, 14 ], "texture": "#texture" },
"up": { "uv": [ 13, 2, 13.5, 3 ], "texture": "#texture" },
"south": { "uv": [ 13, 0, 13.5, 0.25 ], "texture": "#texture" },
"west": { "uv": [ 2, 0, 3, 0.25 ], "texture": "#texture" },
"east": { "uv": [ 13, 0, 14, 0.25 ], "texture": "#texture" }
}
},
{
"__comment": "Box13",
"from": [ 12, 15.5, 18 ],
"to": [ 13, 18.5, 18.5 ],
"faces": {
"down": { "uv": [ 12, 13.5, 13, 14 ], "texture": "#texture" },
"up": { "uv": [ 12, 2, 13, 2.5 ], "texture": "#texture" },
"south": { "uv": [ 12, 0, 13, 0.5 ], "texture": "#texture" },
"west": { "uv": [ 2, 0, 2.5, 0.5 ], "texture": "#texture" },
"east": { "uv": [ 13.5, 0, 14, 0.5 ], "texture": "#texture" }
}
},
{
"__comment": "Box15",
"from": [ 12, 16.5, -15 ],
"to": [ 14, 17.5, 18 ],
"faces": {
"down": { "uv": [ 12, 0, 14, 16 ], "texture": "#texture" },
"up": { "uv": [ 12, 0, 14, 16 ], "texture": "#texture" },
"north": { "uv": [ 2, 15.5, 4, 16 ], "texture": "#texture" },
"south": { "uv": [ 12, 15.5, 14, 16 ], "texture": "#texture" },
"west": { "uv": [ 0, 15.5, 16, 16 ], "texture": "#texture" },
"east": { "uv": [ 0, 15.5, 16, 16 ], "texture": "#texture" }
}
},
{
"__comment": "Box16",
"from": [ 10.5, 16.5, -15 ],
"to": [ 12, 17.5, -7 ],
"faces": {
"down": { "uv": [ 10.5, 7, 12, 15 ], "texture": "#texture" },
"up": { "uv": [ 10.5, 1, 12, 9 ], "texture": "#texture" },
"north": { "uv": [ 4, 15.5, 5.5, 16 ], "texture": "#texture" }
}
},
{
"__comment": "Box17",
"from": [ 10.5, 15.5, 15 ],
"to": [ 11.5, 18.5, 18 ],
"faces": {
"down": { "uv": [ 10.5, 0, 11.5, 1 ], "texture": "#texture" },
"up": { "uv": [ 10.5, 15, 11.5, 16 ], "texture": "#texture" },
"north": { "uv": [ 4.5, 0, 5.5, 0.5 ], "texture": "#texture" },
"south": { "uv": [ 10.5, 0, 11.5, 0.5 ], "texture": "#texture" }
}
},
{
"__comment": "Box18",
"from": [ 10.5, 16, -12.5 ],
"to": [ 13.5, 18, -7 ],
"faces": {
"down": { "uv": [ 10.5, 7, 13.5, 12.5 ], "texture": "#texture" },
"up": { "uv": [ 10.5, 3.5, 13.5, 9 ], "texture": "#texture" },
"north": { "uv": [ 2.5, 0, 5.5, 0.25 ], "texture": "#texture" },
"south": { "uv": [ 10.5, 0, 13.5, 0.25 ], "texture": "#texture" },
"east": { "uv": [ 7, 0, 12.5, 0.25 ], "texture": "#texture" }
}
},
{
"__comment": "Box19",
"from": [ 13, 16, -7 ],
"to": [ 13.5, 18, 18 ],
"faces": {
"down": { "uv": [ 13, 0, 13.5, 16 ], "texture": "#texture" },
"up": { "uv": [ 13, 0, 13.5, 16 ], "texture": "#texture" },
"east": { "uv": [ 0, 0, 16, 0.25 ], "texture": "#texture" }
}
},
{
"__comment": "Box20",
"from": [ 11.5, 15.5, -10 ],
"to": [ 13, 18.5, 18 ],
"faces": {
"down": { "uv": [ 11.5, 0, 13, 16 ], "texture": "#texture" },
"up": { "uv": [ 11.5, 0, 13, 16 ], "texture": "#texture" },
"north": { "uv": [ 3, 0, 4.5, 0.5 ], "texture": "#texture" },
"south": { "uv": [ 11.5, 0, 13, 0.5 ], "texture": "#texture" },
"west": { "uv": [ 0, 0, 16, 0.5 ], "texture": "#texture" },
"east": { "uv": [ 0, 0, 16, 0.5 ], "texture": "#texture" }
}
},
{
"__comment": "Box21",
"from": [ 10.5, 15.5, -10 ],
"to": [ 11.5, 18.5, -7 ],
"faces": {
"down": { "uv": [ 10.5, 7, 11.5, 10 ], "texture": "#texture" },
"up": { "uv": [ 10.5, 6, 11.5, 9 ], "texture": "#texture" },
"north": { "uv": [ 4.5, 0, 5.5, 0.5 ], "texture": "#texture" },
"south": { "uv": [ 10.5, 0, 11.5, 0.5 ], "texture": "#texture" }
}
},
{
"__comment": "Box22",
"from": [ 9, 16.5, 18 ],
"to": [ 10.5, 17.5, 29 ],
"faces": {
"down": { "uv": [ 9, 3, 10.5, 14 ], "texture": "#handle" },
"up": { "uv": [ 9, 2, 10.5, 13 ], "texture": "#handle" },
"west": { "uv": [ 2, 14.5, 13, 15.5 ], "texture": "#handle" },
"east": { "uv": [ 3, 14.5, 14, 15.5 ], "texture": "#handle" }
}
},
{
"__comment": "Box22",
"from": [ 9.25, 16.25, 18 ],
"to": [ 10.25, 17.75, 29 ],
"faces": {
"down": { "uv": [ 9.25, 3, 10.25, 14 ], "texture": "#handle" },
"up": { "uv": [ 9.25, 2, 10.25, 13 ], "texture": "#handle" },
"west": { "uv": [ 2, 0, 13, 0.5 ], "texture": "#handle" },
"east": { "uv": [ 3, 0, 14, 0.5 ], "texture": "#handle" }
}
},
{
"__comment": "Box24",
"from": [ 8.5, 16.25, 29 ],
"to": [ 11, 17.75, 31 ],
"faces": {
"down": { "uv": [ 8.5, 1, 11, 3 ], "texture": "#light" },
"up": { "uv": [ 8.5, 13, 11, 15 ], "texture": "#light" },
"north": { "uv": [ 5, 0, 7.5, 0.5 ], "texture": "#light" },
"south": { "uv": [ 8.5, 0, 11, 0.5 ], "texture": "#light" },
"west": { "uv": [ 13, 0, 15, 0.5 ], "texture": "#light" },
"east": { "uv": [ 1, 0, 3, 0.5 ], "texture": "#light" }
}
},
{
"__comment": "Box24",
"from": [ 8.75, 16, 29 ],
"to": [ 10.75, 18, 31.5 ],
"faces": {
"down": { "uv": [ 8.75, 0.5, 10.75, 3 ], "texture": "#light" },
"up": { "uv": [ 8.75, 13, 10.75, 15.5 ], "texture": "#light" },
"north": { "uv": [ 5.25, 0, 7.25, 0.75 ], "texture": "#light" },
"south": { "uv": [ 8.75, 0, 10.75, 0.75 ], "texture": "#light" },
"west": { "uv": [ 13, 0, 15.5, 0.75 ], "texture": "#light" },
"east": { "uv": [ 0.5, 0, 3, 0.75 ], "texture": "#light" }
}
}
],
"display": {
"thirdperson_righthand": {
"rotation": [ 90, 0, 90 ],
"translation": [ 6.75, 10, 0 ],
"scale": [ 0.75, 0.75, 0.75 ]
},
"thirdperson_lefthand": {
"rotation": [ 90, 0, -90 ],
"translation": [ -6.75, 10, 0 ],
"scale": [ 0.75, 0.75, 0.75 ]
},
"firstperson_righthand": {
"rotation": [ 80, 0, 91 ],
"translation": [ 12.526, 4.2, -12.51 ]
},
"firstperson_lefthand": {
"rotation": [ 80, 0, -75 ],
"translation": [ 0.7, 4.2, -12.51 ]
},
"gui": {
"rotation": [ 90, -45, 180 ],
"translation": [ 0, -1.3, 0 ],
"scale": [ 0.4, 0.4, 0.4 ]
},
"ground": {
"translation": [ 0, -5, 0 ],
"scale": [ 0.5, 0.5, 0.5 ]
},
"fixed": {
"rotation": [ 90, 45, 0 ],
"translation": [ 0, -1.391, -4.173 ],
"scale": [ 0.51, 0.51, 0.5 ]
}
}
}

View File

@@ -1,293 +1,8 @@
{
"__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio",
"parent": "forgecraft:item/gladius_model",
"textures": {
"particle": "forgecraft:blocks/steel_ingot",
"texture": "forgecraft:blocks/steel_ingot",
"texture1": "blocks/planks_oak"
},
"elements": [
{
"__comment": "Cube23",
"from": [ 7.25, -5.5, 7.25 ],
"to": [ 9.25, 0, 8.75 ],
"faces": {
"down": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 7, 9, 9, 16 ], "texture": "#texture" },
"south": { "uv": [ 7, 9, 9, 16 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 9, 8.5, 16 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 9, 8.5, 16 ], "texture": "#texture" }
}
},
{
"__comment": "Cube24",
"from": [ 7, -8, 7 ],
"to": [ 9.5, -5.5, 9 ],
"faces": {
"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" }
}
},
{
"__comment": "Cube25",
"from": [ 6.5, 0, 7.25 ],
"to": [ 10, 0.5, 8.75 ],
"faces": {
"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" }
}
},
{
"__comment": "Cube23",
"from": [ 6.5, 1, 7.5 ],
"to": [ 10, 6, 8.5 ],
"faces": {
"down": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 7, 9, 9, 16 ], "texture": "#texture" },
"south": { "uv": [ 7, 9, 9, 16 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 9, 8.5, 16 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 9, 8.5, 16 ], "texture": "#texture" }
}
},
{
"__comment": "Cube28",
"from": [ 8, 1, 8.5 ],
"to": [ 8.5, 24, 8.501 ],
"faces": {
"down": { "uv": [ 7.5, 7, 8.5, 7.5 ], "texture": "#texture" },
"up": { "uv": [ 7.5, 8.5, 8.5, 9 ], "texture": "#texture" },
"north": { "uv": [ 7.5, 0, 8.5, 15 ], "texture": "#texture" },
"south": { "uv": [ 7.5, 0, 8.5, 15 ], "texture": "#texture" },
"west": { "uv": [ 8.5, 0, 9, 15 ], "texture": "#texture" },
"east": { "uv": [ 7, 0, 7.5, 15 ], "texture": "#texture" }
}
},
{
"__comment": "Cube32",
"from": [ 6.75, 21.5, 7.5 ],
"to": [ 9.75, 23, 8.5 ],
"faces": {
"down": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 7, 7, 9, 9.5 ], "texture": "#texture" },
"south": { "uv": [ 7, 7, 9, 9.5 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 7, 8.5, 9.5 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 7, 8.5, 9.5 ], "texture": "#texture" }
}
},
{
"__comment": "Cube32",
"from": [ 7.25, 24.5, 7.5 ],
"to": [ 9.25, 26, 8.5 ],
"faces": {
"down": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 7, 7, 9, 8 ], "texture": "#texture" },
"south": { "uv": [ 7, 7, 9, 8 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 7, 8.5, 8 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 7, 8.5, 8 ], "texture": "#texture" }
}
},
{
"__comment": "Cube9",
"from": [ 7.75, 27, 7.5 ],
"to": [ 8.75, 28, 8.5 ],
"faces": {
"down": { "uv": [ 8, 7.5, 8.5, 8 ], "texture": "#texture", "rotation": 180 },
"up": { "uv": [ 8, 8, 8.5, 8.5 ], "texture": "#texture", "rotation": 180 },
"north": { "uv": [ 8, 4.5, 8.5, 5.5 ], "texture": "#texture" },
"south": { "uv": [ 7.5, 4.5, 8, 5.5 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 4.5, 8, 5.5 ], "texture": "#texture" },
"east": { "uv": [ 8, 4.5, 8.5, 5.5 ], "texture": "#texture" }
}
},
{
"__comment": "Cube28",
"from": [ 8, 1, 7.499 ],
"to": [ 8.5, 24, 7.5 ],
"faces": {
"down": { "uv": [ 7.5, 7, 8.5, 7.5 ], "texture": "#texture", "rotation": 180 },
"up": { "uv": [ 7.5, 8.5, 8.5, 9 ], "texture": "#texture", "rotation": 180 },
"north": { "uv": [ 7.5, 0, 8.5, 15 ], "texture": "#texture" },
"south": { "uv": [ 7.5, 0, 8.5, 15 ], "texture": "#texture" },
"west": { "uv": [ 7, 0, 7.5, 15 ], "texture": "#texture" },
"east": { "uv": [ 8.5, 0, 9, 15 ], "texture": "#texture" }
}
},
{
"__comment": "Cube14",
"from": [ 6, 0.5, 7.25 ],
"to": [ 10.5, 2.5, 8.75 ],
"faces": {
"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" }
}
},
{
"__comment": "Cube11",
"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": "#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" }
}
},
{
"__comment": "Cube13",
"from": [ 7, 23, 7.5 ],
"to": [ 9.5, 24.5, 8.5 ],
"faces": {
"down": { "uv": [ 7, 7.5, 9.5, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 7, 7.5, 9.5, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 6.5, 7.5, 9, 9 ], "texture": "#texture" },
"south": { "uv": [ 7, 7.5, 9.5, 9 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 7.5, 8.5, 9 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 7.5, 8.5, 9 ], "texture": "#texture" }
}
},
{
"__comment": "Cube14",
"from": [ 7.5, 26, 7.5 ],
"to": [ 9, 27, 8.5 ],
"faces": {
"down": { "uv": [ 7.5, 7.5, 9, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 7.5, 7.5, 9, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 7, 5, 8.5, 6 ], "texture": "#texture" },
"south": { "uv": [ 7.5, 5, 9, 6 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }
}
},
{
"__comment": "Cube15",
"from": [ 7, -7.5, 6.5 ],
"to": [ 9.5, -6, 9.5 ],
"faces": {
"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" }
}
},
{
"__comment": "Cube16",
"from": [ 6.5, -7.5, 7 ],
"to": [ 10, -6, 9 ],
"faces": {
"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" }
}
},
{
"__comment": "Cube17",
"from": [ 8, -8.5, 7.75 ],
"to": [ 8.5, -8, 8.25 ],
"faces": {
"down": { "uv": [ 8, 7.75, 8.5, 8.25 ], "texture": "#texture" },
"up": { "uv": [ 8, 7.75, 8.5, 8.25 ], "texture": "#texture" },
"north": { "uv": [ 7.5, 8, 8, 8.5 ], "texture": "#texture" },
"south": { "uv": [ 8, 8, 8.5, 8.5 ], "texture": "#texture" },
"west": { "uv": [ 7.75, 8, 8.25, 8.5 ], "texture": "#texture" },
"east": { "uv": [ 7.75, 8, 8.25, 8.5 ], "texture": "#texture" }
}
},
{
"__comment": "Cube24",
"from": [ 6.75, 6, 7.5 ],
"to": [ 9.75, 15.5, 8.5 ],
"faces": {
"down": { "uv": [ 6.75, 7.5, 9.75, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 6.75, 7.5, 9.75, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 6.25, 0.5, 9.25, 10 ], "texture": "#texture" },
"south": { "uv": [ 6.75, 0.5, 9.75, 10 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 0.5, 8.5, 10 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 0.5, 8.5, 10 ], "texture": "#texture" }
}
},
{
"__comment": "Cube19",
"from": [ 6.5, 15.5, 7.5 ],
"to": [ 10, 21.5, 8.5 ],
"faces": {
"down": { "uv": [ 6.5, 7.5, 10, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 6.5, 7.5, 10, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 6, 0, 9.5, 0.5 ], "texture": "#texture" },
"south": { "uv": [ 6.5, 0, 10, 0.5 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 0, 8.5, 0.5 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 0, 8.5, 0.5 ], "texture": "#texture" }
}
},
{
"__comment": "Cube20",
"from": [ 8, 27.75, 7.5 ],
"to": [ 8.5, 28.75, 8.5 ],
"faces": {
"down": { "uv": [ 8, 7.5, 8.5, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 8, 7.5, 8.5, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 7.5, 3.25, 8, 4.25 ], "texture": "#texture" },
"south": { "uv": [ 8, 3.25, 8.5, 4.25 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 3.25, 8.5, 4.25 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 3.25, 8.5, 4.25 ], "texture": "#texture" }
}
}
],
"display": {
"thirdperson_righthand": {
"rotation": [ 0, 90, 0 ],
"translation": [ 0, 5.9, 1.33 ],
"scale": [ 0.75, 0.75, 0.75 ]
},
"thirdperson_lefthand": {
"rotation": [ 0, 90, 0 ],
"translation": [ 0, 5.9, 1.33 ],
"scale": [ 0.75, 0.75, 0.75 ]
},
"firstperson_righthand": {
"rotation": [ 0, 90, 0 ],
"translation": [ 0, 6.6, 1 ],
"scale": [ 0.75, 0.75, 0.75 ]
},
"firstperson_lefthand": {
"rotation": [ 0, 90, 0 ],
"translation": [ 0, 6.6, 1 ],
"scale": [ 0.75, 0.75, 0.75 ]
},
"gui": {
"rotation": [ 0, 0, -45 ],
"translation": [ -0.4, -0.4, 0 ],
"scale": [ 0.5, 0.5, 0.5 ]
},
"ground": {
"rotation": [ 90, 0, 0 ],
"scale": [ 0.75, 0.75, 0.75 ]
},
"fixed": {
"rotation": [ 0, 0, 45 ],
"translation": [ 0.7, -0.7, 0 ],
"scale": [ 0.66, 0.66, 0.66 ]
}
"particle": "forgecraft:items/steel/0",
"texture": "forgecraft:items/steel/0",
"handle": "forgecraft:items/leather_handle"
}
}
}

View File

@@ -4,7 +4,8 @@
"particle": "forgecraft:blocks/steel_ingot",
"texture": "forgecraft:blocks/steel_ingot",
"light": "forgecraft:blocks/steel_ingot_light",
"dark": "forgecraft:blocks/steel_ingot_dark"
"dark": "forgecraft:blocks/steel_ingot_dark",
"handle": "forgecraft:items/leather_handle"
},
"parent": "forgecraft:item/longsword"
"parent": "forgecraft:item/longsword_model"
}

View File

@@ -1,10 +1,11 @@
{
"forge_marker":1,
"textures": {
"particle": "forgecraft:blocks/steel_ingot",
"texture": "forgecraft:blocks/steel_ingot",
"particle": "forgecraft:items/steel/0",
"texture": "forgecraft:items/steel/0",
"light": "forgecraft:blocks/steel_ingot_light",
"dark": "forgecraft:blocks/steel_ingot_dark"
"dark": "forgecraft:blocks/steel_ingot_dark",
"handle": "forgecraft:items/leather_handle"
},
"parent": "forgecraft:item/slayer"
"parent": "forgecraft:item/slayer_model"
}

View File

@@ -1,293 +1,8 @@
{
"__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio",
"parent": "forgecraft:item/gladius_model",
"textures": {
"particle": "forgecraft:blocks/wootz_ingot",
"texture": "forgecraft:blocks/wootz_ingot",
"texture1": "blocks/planks_oak"
},
"elements": [
{
"__comment": "Cube23",
"from": [ 7.25, -5.5, 7.25 ],
"to": [ 9.25, 0, 8.75 ],
"faces": {
"down": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 7, 9, 9, 16 ], "texture": "#texture" },
"south": { "uv": [ 7, 9, 9, 16 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 9, 8.5, 16 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 9, 8.5, 16 ], "texture": "#texture" }
}
},
{
"__comment": "Cube24",
"from": [ 7, -8, 7 ],
"to": [ 9.5, -5.5, 9 ],
"faces": {
"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" }
}
},
{
"__comment": "Cube25",
"from": [ 6.5, 0, 7.25 ],
"to": [ 10, 0.5, 8.75 ],
"faces": {
"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" }
}
},
{
"__comment": "Cube23",
"from": [ 6.5, 1, 7.5 ],
"to": [ 10, 6, 8.5 ],
"faces": {
"down": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 7, 9, 9, 16 ], "texture": "#texture" },
"south": { "uv": [ 7, 9, 9, 16 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 9, 8.5, 16 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 9, 8.5, 16 ], "texture": "#texture" }
}
},
{
"__comment": "Cube28",
"from": [ 8, 1, 8.5 ],
"to": [ 8.5, 24, 8.501 ],
"faces": {
"down": { "uv": [ 7.5, 7, 8.5, 7.5 ], "texture": "#texture" },
"up": { "uv": [ 7.5, 8.5, 8.5, 9 ], "texture": "#texture" },
"north": { "uv": [ 7.5, 0, 8.5, 15 ], "texture": "#texture" },
"south": { "uv": [ 7.5, 0, 8.5, 15 ], "texture": "#texture" },
"west": { "uv": [ 8.5, 0, 9, 15 ], "texture": "#texture" },
"east": { "uv": [ 7, 0, 7.5, 15 ], "texture": "#texture" }
}
},
{
"__comment": "Cube32",
"from": [ 6.75, 21.5, 7.5 ],
"to": [ 9.75, 23, 8.5 ],
"faces": {
"down": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 7, 7, 9, 9.5 ], "texture": "#texture" },
"south": { "uv": [ 7, 7, 9, 9.5 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 7, 8.5, 9.5 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 7, 8.5, 9.5 ], "texture": "#texture" }
}
},
{
"__comment": "Cube32",
"from": [ 7.25, 24.5, 7.5 ],
"to": [ 9.25, 26, 8.5 ],
"faces": {
"down": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 7, 7, 9, 8 ], "texture": "#texture" },
"south": { "uv": [ 7, 7, 9, 8 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 7, 8.5, 8 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 7, 8.5, 8 ], "texture": "#texture" }
}
},
{
"__comment": "Cube9",
"from": [ 7.75, 27, 7.5 ],
"to": [ 8.75, 28, 8.5 ],
"faces": {
"down": { "uv": [ 8, 7.5, 8.5, 8 ], "texture": "#texture", "rotation": 180 },
"up": { "uv": [ 8, 8, 8.5, 8.5 ], "texture": "#texture", "rotation": 180 },
"north": { "uv": [ 8, 4.5, 8.5, 5.5 ], "texture": "#texture" },
"south": { "uv": [ 7.5, 4.5, 8, 5.5 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 4.5, 8, 5.5 ], "texture": "#texture" },
"east": { "uv": [ 8, 4.5, 8.5, 5.5 ], "texture": "#texture" }
}
},
{
"__comment": "Cube28",
"from": [ 8, 1, 7.499 ],
"to": [ 8.5, 24, 7.5 ],
"faces": {
"down": { "uv": [ 7.5, 7, 8.5, 7.5 ], "texture": "#texture", "rotation": 180 },
"up": { "uv": [ 7.5, 8.5, 8.5, 9 ], "texture": "#texture", "rotation": 180 },
"north": { "uv": [ 7.5, 0, 8.5, 15 ], "texture": "#texture" },
"south": { "uv": [ 7.5, 0, 8.5, 15 ], "texture": "#texture" },
"west": { "uv": [ 7, 0, 7.5, 15 ], "texture": "#texture" },
"east": { "uv": [ 8.5, 0, 9, 15 ], "texture": "#texture" }
}
},
{
"__comment": "Cube14",
"from": [ 6, 0.5, 7.25 ],
"to": [ 10.5, 2.5, 8.75 ],
"faces": {
"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" }
}
},
{
"__comment": "Cube11",
"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": "#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" }
}
},
{
"__comment": "Cube13",
"from": [ 7, 23, 7.5 ],
"to": [ 9.5, 24.5, 8.5 ],
"faces": {
"down": { "uv": [ 7, 7.5, 9.5, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 7, 7.5, 9.5, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 6.5, 7.5, 9, 9 ], "texture": "#texture" },
"south": { "uv": [ 7, 7.5, 9.5, 9 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 7.5, 8.5, 9 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 7.5, 8.5, 9 ], "texture": "#texture" }
}
},
{
"__comment": "Cube14",
"from": [ 7.5, 26, 7.5 ],
"to": [ 9, 27, 8.5 ],
"faces": {
"down": { "uv": [ 7.5, 7.5, 9, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 7.5, 7.5, 9, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 7, 5, 8.5, 6 ], "texture": "#texture" },
"south": { "uv": [ 7.5, 5, 9, 6 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }
}
},
{
"__comment": "Cube15",
"from": [ 7, -7.5, 6.5 ],
"to": [ 9.5, -6, 9.5 ],
"faces": {
"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" }
}
},
{
"__comment": "Cube16",
"from": [ 6.5, -7.5, 7 ],
"to": [ 10, -6, 9 ],
"faces": {
"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" }
}
},
{
"__comment": "Cube17",
"from": [ 8, -8.5, 7.75 ],
"to": [ 8.5, -8, 8.25 ],
"faces": {
"down": { "uv": [ 8, 7.75, 8.5, 8.25 ], "texture": "#texture" },
"up": { "uv": [ 8, 7.75, 8.5, 8.25 ], "texture": "#texture" },
"north": { "uv": [ 7.5, 8, 8, 8.5 ], "texture": "#texture" },
"south": { "uv": [ 8, 8, 8.5, 8.5 ], "texture": "#texture" },
"west": { "uv": [ 7.75, 8, 8.25, 8.5 ], "texture": "#texture" },
"east": { "uv": [ 7.75, 8, 8.25, 8.5 ], "texture": "#texture" }
}
},
{
"__comment": "Cube24",
"from": [ 6.75, 6, 7.5 ],
"to": [ 9.75, 15.5, 8.5 ],
"faces": {
"down": { "uv": [ 6.75, 7.5, 9.75, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 6.75, 7.5, 9.75, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 6.25, 0.5, 9.25, 10 ], "texture": "#texture" },
"south": { "uv": [ 6.75, 0.5, 9.75, 10 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 0.5, 8.5, 10 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 0.5, 8.5, 10 ], "texture": "#texture" }
}
},
{
"__comment": "Cube19",
"from": [ 6.5, 15.5, 7.5 ],
"to": [ 10, 21.5, 8.5 ],
"faces": {
"down": { "uv": [ 6.5, 7.5, 10, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 6.5, 7.5, 10, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 6, 0, 9.5, 0.5 ], "texture": "#texture" },
"south": { "uv": [ 6.5, 0, 10, 0.5 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 0, 8.5, 0.5 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 0, 8.5, 0.5 ], "texture": "#texture" }
}
},
{
"__comment": "Cube20",
"from": [ 8, 27.75, 7.5 ],
"to": [ 8.5, 28.75, 8.5 ],
"faces": {
"down": { "uv": [ 8, 7.5, 8.5, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 8, 7.5, 8.5, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 7.5, 3.25, 8, 4.25 ], "texture": "#texture" },
"south": { "uv": [ 8, 3.25, 8.5, 4.25 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 3.25, 8.5, 4.25 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 3.25, 8.5, 4.25 ], "texture": "#texture" }
}
}
],
"display": {
"thirdperson_righthand": {
"rotation": [ 0, 90, 0 ],
"translation": [ 0, 5.9, 1.33 ],
"scale": [ 0.75, 0.75, 0.75 ]
},
"thirdperson_lefthand": {
"rotation": [ 0, 90, 0 ],
"translation": [ 0, 5.9, 1.33 ],
"scale": [ 0.75, 0.75, 0.75 ]
},
"firstperson_righthand": {
"rotation": [ 0, 90, 0 ],
"translation": [ 0, 6.6, 1 ],
"scale": [ 0.75, 0.75, 0.75 ]
},
"firstperson_lefthand": {
"rotation": [ 0, 90, 0 ],
"translation": [ 0, 6.6, 1 ],
"scale": [ 0.75, 0.75, 0.75 ]
},
"gui": {
"rotation": [ 0, 0, -45 ],
"translation": [ -0.4, -0.4, 0 ],
"scale": [ 0.5, 0.5, 0.5 ]
},
"ground": {
"rotation": [ 90, 0, 0 ],
"scale": [ 0.75, 0.75, 0.75 ]
},
"fixed": {
"rotation": [ 0, 0, 45 ],
"translation": [ 0.7, -0.7, 0 ],
"scale": [ 0.66, 0.66, 0.66 ]
}
"particle": "forgecraft:items/wootz/0",
"texture": "forgecraft:items/wootz/0",
"handle": "forgecraft:items/leather_handle"
}
}
}

View File

@@ -4,7 +4,8 @@
"particle": "forgecraft:blocks/steel_ingot",
"texture": "forgecraft:blocks/steel_ingot",
"light": "forgecraft:blocks/wootz_ingot_light",
"dark": "forgecraft:blocks/wootz_ingot_dark"
"dark": "forgecraft:blocks/wootz_ingot_dark",
"handle": "forgecraft:items/leather_handle"
},
"parent": "forgecraft:item/longsword"
"parent": "forgecraft:item/longsword_model"
}

View File

@@ -1,10 +1,11 @@
{
"forge_marker":1,
"textures": {
"particle": "forgecraft:blocks/wootz_ingot",
"texture": "forgecraft:blocks/wootz_ingot",
"particle": "forgecraft:items/wootz/0",
"texture": "forgecraft:items/wootz/0",
"light": "forgecraft:blocks/wootz_ingot_light",
"dark": "forgecraft:blocks/wootz_ingot_dark"
"dark": "forgecraft:blocks/wootz_ingot_dark",
"handle": "forgecraft:items/leather_handle"
},
"parent": "forgecraft:item/slayer"
"parent": "forgecraft:item/slayer_model"
}

View File

@@ -1,293 +1,8 @@
{
"__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio",
"parent": "forgecraft:item/gladius_model",
"textures": {
"particle": "forgecraft:items/iron/iron_ingot",
"texture": "forgecraft:items/iron/iron_ingot",
"texture1": "blocks/planks_oak"
},
"elements": [
{
"__comment": "Cube23",
"from": [ 7.25, -5.5, 7.25 ],
"to": [ 9.25, 0, 8.75 ],
"faces": {
"down": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 7, 9, 9, 16 ], "texture": "#texture" },
"south": { "uv": [ 7, 9, 9, 16 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 9, 8.5, 16 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 9, 8.5, 16 ], "texture": "#texture" }
}
},
{
"__comment": "Cube24",
"from": [ 7, -8, 7 ],
"to": [ 9.5, -5.5, 9 ],
"faces": {
"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" }
}
},
{
"__comment": "Cube25",
"from": [ 6.5, 0, 7.25 ],
"to": [ 10, 0.5, 8.75 ],
"faces": {
"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" }
}
},
{
"__comment": "Cube23",
"from": [ 6.5, 1, 7.5 ],
"to": [ 10, 6, 8.5 ],
"faces": {
"down": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 7, 9, 9, 16 ], "texture": "#texture" },
"south": { "uv": [ 7, 9, 9, 16 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 9, 8.5, 16 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 9, 8.5, 16 ], "texture": "#texture" }
}
},
{
"__comment": "Cube28",
"from": [ 8, 1, 8.5 ],
"to": [ 8.5, 24, 8.501 ],
"faces": {
"down": { "uv": [ 7.5, 7, 8.5, 7.5 ], "texture": "#texture" },
"up": { "uv": [ 7.5, 8.5, 8.5, 9 ], "texture": "#texture" },
"north": { "uv": [ 7.5, 0, 8.5, 15 ], "texture": "#texture" },
"south": { "uv": [ 7.5, 0, 8.5, 15 ], "texture": "#texture" },
"west": { "uv": [ 8.5, 0, 9, 15 ], "texture": "#texture" },
"east": { "uv": [ 7, 0, 7.5, 15 ], "texture": "#texture" }
}
},
{
"__comment": "Cube32",
"from": [ 6.75, 21.5, 7.5 ],
"to": [ 9.75, 23, 8.5 ],
"faces": {
"down": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 7, 7, 9, 9.5 ], "texture": "#texture" },
"south": { "uv": [ 7, 7, 9, 9.5 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 7, 8.5, 9.5 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 7, 8.5, 9.5 ], "texture": "#texture" }
}
},
{
"__comment": "Cube32",
"from": [ 7.25, 24.5, 7.5 ],
"to": [ 9.25, 26, 8.5 ],
"faces": {
"down": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 7, 7.5, 9, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 7, 7, 9, 8 ], "texture": "#texture" },
"south": { "uv": [ 7, 7, 9, 8 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 7, 8.5, 8 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 7, 8.5, 8 ], "texture": "#texture" }
}
},
{
"__comment": "Cube9",
"from": [ 7.75, 27, 7.5 ],
"to": [ 8.75, 28, 8.5 ],
"faces": {
"down": { "uv": [ 8, 7.5, 8.5, 8 ], "texture": "#texture", "rotation": 180 },
"up": { "uv": [ 8, 8, 8.5, 8.5 ], "texture": "#texture", "rotation": 180 },
"north": { "uv": [ 8, 4.5, 8.5, 5.5 ], "texture": "#texture" },
"south": { "uv": [ 7.5, 4.5, 8, 5.5 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 4.5, 8, 5.5 ], "texture": "#texture" },
"east": { "uv": [ 8, 4.5, 8.5, 5.5 ], "texture": "#texture" }
}
},
{
"__comment": "Cube28",
"from": [ 8, 1, 7.499 ],
"to": [ 8.5, 24, 7.5 ],
"faces": {
"down": { "uv": [ 7.5, 7, 8.5, 7.5 ], "texture": "#texture", "rotation": 180 },
"up": { "uv": [ 7.5, 8.5, 8.5, 9 ], "texture": "#texture", "rotation": 180 },
"north": { "uv": [ 7.5, 0, 8.5, 15 ], "texture": "#texture" },
"south": { "uv": [ 7.5, 0, 8.5, 15 ], "texture": "#texture" },
"west": { "uv": [ 7, 0, 7.5, 15 ], "texture": "#texture" },
"east": { "uv": [ 8.5, 0, 9, 15 ], "texture": "#texture" }
}
},
{
"__comment": "Cube14",
"from": [ 6, 0.5, 7.25 ],
"to": [ 10.5, 2.5, 8.75 ],
"faces": {
"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" }
}
},
{
"__comment": "Cube11",
"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": "#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" }
}
},
{
"__comment": "Cube13",
"from": [ 7, 23, 7.5 ],
"to": [ 9.5, 24.5, 8.5 ],
"faces": {
"down": { "uv": [ 7, 7.5, 9.5, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 7, 7.5, 9.5, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 6.5, 7.5, 9, 9 ], "texture": "#texture" },
"south": { "uv": [ 7, 7.5, 9.5, 9 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 7.5, 8.5, 9 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 7.5, 8.5, 9 ], "texture": "#texture" }
}
},
{
"__comment": "Cube14",
"from": [ 7.5, 26, 7.5 ],
"to": [ 9, 27, 8.5 ],
"faces": {
"down": { "uv": [ 7.5, 7.5, 9, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 7.5, 7.5, 9, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 7, 5, 8.5, 6 ], "texture": "#texture" },
"south": { "uv": [ 7.5, 5, 9, 6 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }
}
},
{
"__comment": "Cube15",
"from": [ 7, -7.5, 6.5 ],
"to": [ 9.5, -6, 9.5 ],
"faces": {
"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" }
}
},
{
"__comment": "Cube16",
"from": [ 6.5, -7.5, 7 ],
"to": [ 10, -6, 9 ],
"faces": {
"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" }
}
},
{
"__comment": "Cube17",
"from": [ 8, -8.5, 7.75 ],
"to": [ 8.5, -8, 8.25 ],
"faces": {
"down": { "uv": [ 8, 7.75, 8.5, 8.25 ], "texture": "#texture" },
"up": { "uv": [ 8, 7.75, 8.5, 8.25 ], "texture": "#texture" },
"north": { "uv": [ 7.5, 8, 8, 8.5 ], "texture": "#texture" },
"south": { "uv": [ 8, 8, 8.5, 8.5 ], "texture": "#texture" },
"west": { "uv": [ 7.75, 8, 8.25, 8.5 ], "texture": "#texture" },
"east": { "uv": [ 7.75, 8, 8.25, 8.5 ], "texture": "#texture" }
}
},
{
"__comment": "Cube24",
"from": [ 6.75, 6, 7.5 ],
"to": [ 9.75, 15.5, 8.5 ],
"faces": {
"down": { "uv": [ 6.75, 7.5, 9.75, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 6.75, 7.5, 9.75, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 6.25, 0.5, 9.25, 10 ], "texture": "#texture" },
"south": { "uv": [ 6.75, 0.5, 9.75, 10 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 0.5, 8.5, 10 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 0.5, 8.5, 10 ], "texture": "#texture" }
}
},
{
"__comment": "Cube19",
"from": [ 6.5, 15.5, 7.5 ],
"to": [ 10, 21.5, 8.5 ],
"faces": {
"down": { "uv": [ 6.5, 7.5, 10, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 6.5, 7.5, 10, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 6, 0, 9.5, 0.5 ], "texture": "#texture" },
"south": { "uv": [ 6.5, 0, 10, 0.5 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 0, 8.5, 0.5 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 0, 8.5, 0.5 ], "texture": "#texture" }
}
},
{
"__comment": "Cube20",
"from": [ 8, 27.75, 7.5 ],
"to": [ 8.5, 28.75, 8.5 ],
"faces": {
"down": { "uv": [ 8, 7.5, 8.5, 8.5 ], "texture": "#texture" },
"up": { "uv": [ 8, 7.5, 8.5, 8.5 ], "texture": "#texture" },
"north": { "uv": [ 7.5, 3.25, 8, 4.25 ], "texture": "#texture" },
"south": { "uv": [ 8, 3.25, 8.5, 4.25 ], "texture": "#texture" },
"west": { "uv": [ 7.5, 3.25, 8.5, 4.25 ], "texture": "#texture" },
"east": { "uv": [ 7.5, 3.25, 8.5, 4.25 ], "texture": "#texture" }
}
}
],
"display": {
"thirdperson_righthand": {
"rotation": [ 0, 90, 0 ],
"translation": [ 0, 5.9, 1.33 ],
"scale": [ 0.75, 0.75, 0.75 ]
},
"thirdperson_lefthand": {
"rotation": [ 0, 90, 0 ],
"translation": [ 0, 5.9, 1.33 ],
"scale": [ 0.75, 0.75, 0.75 ]
},
"firstperson_righthand": {
"rotation": [ 0, 90, 0 ],
"translation": [ 0, 6.6, 1 ],
"scale": [ 0.75, 0.75, 0.75 ]
},
"firstperson_lefthand": {
"rotation": [ 0, 90, 0 ],
"translation": [ 0, 6.6, 1 ],
"scale": [ 0.75, 0.75, 0.75 ]
},
"gui": {
"rotation": [ 0, 0, -45 ],
"translation": [ -0.4, -0.4, 0 ],
"scale": [ 0.5, 0.5, 0.5 ]
},
"ground": {
"rotation": [ 90, 0, 0 ],
"scale": [ 0.75, 0.75, 0.75 ]
},
"fixed": {
"rotation": [ 0, 0, 45 ],
"translation": [ 0.7, -0.7, 0 ],
"scale": [ 0.66, 0.66, 0.66 ]
}
"particle": "forgecraft:items/iron/0",
"texture": "forgecraft:items/iron/0",
"handle": "forgecraft:items/leather_handle"
}
}
}

View File

@@ -1,10 +1,11 @@
{
"forge_marker":1,
"textures": {
"particle": "forgecraft:blocks/iron_ingot",
"texture": "forgecraft:blocks/iron_ingot",
"particle": "forgecraft:items/iron/0",
"texture": "forgecraft:items/iron/0",
"light": "forgecraft:blocks/iron_ingot_light",
"dark": "forgecraft:blocks/iron_ingot_dark"
"dark": "forgecraft:blocks/iron_ingot_dark",
"handle": "forgecraft:items/leather_handle"
},
"parent": "forgecraft:item/slayer"
"parent": "forgecraft:item/slayer_model"
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 295 B