all the json

This commit is contained in:
Mohammad-Ali Minaie
2017-04-09 00:13:18 -04:00
parent 6fc30a2cfe
commit 08400326d0
425 changed files with 2612 additions and 100 deletions

View File

@@ -38,6 +38,11 @@ To-Dos
- [ ] Gui
- [ ] Crafting recipes
*** Tid-Bits ***
sed -i -- 's/iron/steel/g' *
rm *.json--
rename s/iron/steel/ iron*
*** Completed ***
- [x] Light Forge and Firebox with Firebow or Torch
- [x] Any gallagher can be used to make a stone anvil

View File

@@ -147,14 +147,14 @@ public class ModItems {
cleanironhoe = new CustomHoe("cleanironhoe", ModMaterials.CLEAN_IRON);
steelpickaxe = new CustomPickaxe("steelpickaxe", ModMaterials.BASIC_STEEL);
steelaxe = new CustomAxe("steelironaxe", ModMaterials.BASIC_STEEL);
steelshovel = new CustomShovel("steelironshovel", ModMaterials.BASIC_STEEL);
steelhoe = new CustomHoe("steelironhoe", ModMaterials.BASIC_STEEL);
steelaxe = new CustomAxe("steelaxe", ModMaterials.BASIC_STEEL);
steelshovel = new CustomShovel("steelshovel", ModMaterials.BASIC_STEEL);
steelhoe = new CustomHoe("steelhoe", ModMaterials.BASIC_STEEL);
wootzpickaxe = new CustomPickaxe("wootzpickaxe", ModMaterials.WOOTZ_STEEL);
wootzaxe = new CustomAxe("wootzironaxe", ModMaterials.WOOTZ_STEEL);
wootzshovel = new CustomShovel("wootzironshovel", ModMaterials.WOOTZ_STEEL);
wootzhoe = new CustomHoe("wootzironhoe", ModMaterials.WOOTZ_STEEL);
wootzaxe = new CustomAxe("wootzaxe", ModMaterials.WOOTZ_STEEL);
wootzshovel = new CustomShovel("wootzshovel", ModMaterials.WOOTZ_STEEL);
wootzhoe = new CustomHoe("wootzhoe", ModMaterials.WOOTZ_STEEL);
/**********
WEAPONS
@@ -189,16 +189,55 @@ public class ModItems {
GameRegistry.register(ironchunkhot);
//GameRegistry.register(test);
/**********
TOOL PARTS
**********/
GameRegistry.register(pickaxehead);
GameRegistry.register(ironaxehead);
GameRegistry.register(ironshovelhead);
GameRegistry.register(ironhoehead);
GameRegistry.register(cleanironpickaxehead);
GameRegistry.register(cleanironaxehead);
GameRegistry.register(cleanironshovelhead);
GameRegistry.register(cleanironhoehead);
GameRegistry.register(steelpickaxehead);
GameRegistry.register(steelaxehead);
GameRegistry.register(steelshovelhead);
GameRegistry.register(steelhoehead);
GameRegistry.register(wootzpickaxehead);
GameRegistry.register(wootzaxehead);
GameRegistry.register(wootzshovelhead);
GameRegistry.register(wootzhoehead);
/**********
TOOLS
**********/
GameRegistry.register(ironpickaxe);
GameRegistry.register(ironaxe);
GameRegistry.register(ironshovel);
GameRegistry.register(ironhoe);
GameRegistry.register(cleanironpickaxe);
GameRegistry.register(cleanironaxe);
GameRegistry.register(cleanironshovel);
GameRegistry.register(cleanironhoe);
GameRegistry.register(steelpickaxe);
GameRegistry.register(steelaxe);
GameRegistry.register(steelshovel);
GameRegistry.register(steelhoe);
GameRegistry.register(wootzpickaxe);
GameRegistry.register(wootzaxe);
GameRegistry.register(wootzshovel);
GameRegistry.register(wootzhoe);
/**********
WEAPONS
**********/
GameRegistry.register(ironsword);
//GameRegistry.register(matchlockmusket);
@@ -213,16 +252,56 @@ public class ModItems {
registerRender(ironingotballhot);
registerRender(ironchunkhot);
//registerRender(test);
/**********
TOOL PARTS
**********/
registerRender(pickaxehead);
registerRender(ironaxehead);
registerRender(ironshovelhead);
registerRender(ironhoehead);
registerRender(cleanironpickaxehead);
registerRender(cleanironaxehead);
registerRender(cleanironshovelhead);
registerRender(cleanironhoehead);
registerRender(steelpickaxehead);
registerRender(steelaxehead);
registerRender(steelshovelhead);
registerRender(steelhoehead);
registerRender(wootzpickaxehead);
registerRender(wootzaxehead);
registerRender(wootzshovelhead);
registerRender(wootzhoehead);
/**********
TOOLS
**********/
registerRender(ironpickaxe);
registerRender(ironaxe);
registerRender(ironshovel);
registerRender(ironhoe);
registerRender(cleanironpickaxe);
registerRender(cleanironaxe);
registerRender(cleanironshovel);
registerRender(cleanironhoe);
registerRender(steelpickaxe);
registerRender(steelaxe);
registerRender(steelshovel);
registerRender(steelhoe);
registerRender(wootzpickaxe);
registerRender(wootzaxe);
registerRender(wootzshovel);
registerRender(wootzhoe);
/**********
WEAPONS
**********/
registerRender(ironsword);
//registerRender(forgingmanual);
//registerRender(matchlockmusket);

View File

@@ -1,7 +1,7 @@
{
"parent": "forgecraft:item/axe",
"textures": {
"particle": "forgecraft:items/iron_ingot",
"particle": "forgecraft:items/clean_iron_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/clean_iron_ingot_emerald1_diamond2"
}

View File

@@ -1,7 +1,7 @@
{
"parent": "forgecraft:item/axe",
"textures": {
"particle": "forgecraft:items/iron_ingot",
"particle": "forgecraft:items/clean_iron_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/clean_iron_ingot_emerald1_diamond1_redstone1"
}

View File

@@ -1,7 +1,7 @@
{
"parent": "forgecraft:item/axe",
"textures": {
"particle": "forgecraft:items/iron_ingot",
"particle": "forgecraft:items/clean_iron_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/clean_iron_ingot_emerald1_redstone2"
}

View File

@@ -1,7 +1,7 @@
{
"parent": "forgecraft:item/axe",
"textures": {
"particle": "forgecraft:items/iron_ingot",
"particle": "forgecraft:items/clean_iron_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/clean_iron_ingot_diamond1"
}

View File

@@ -1,7 +1,7 @@
{
"parent": "forgecraft:item/axe",
"textures": {
"particle": "forgecraft:items/iron_ingot",
"particle": "forgecraft:items/clean_iron_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/clean_iron_ingot_diamond2"
}

View File

@@ -1,7 +1,7 @@
{
"parent": "forgecraft:item/axe",
"textures": {
"particle": "forgecraft:items/iron_ingot",
"particle": "forgecraft:items/clean_iron_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/clean_iron_ingot_diamond3"
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axe",
"textures": {
"particle": "forgecraft:items/steel_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/steel_ingot"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axe",
"textures": {
"particle": "forgecraft:items/clean_iron_ingot_hot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/clean_iron_ingot_hot"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axe",
"textures": {
"particle": "forgecraft:items/steel_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/steel_ingot_redstone1"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axe",
"textures": {
"particle": "forgecraft:items/steel_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/steel_ingot_redstone2"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axe",
"textures": {
"particle": "forgecraft:items/steel_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/steel_ingot_redstone3"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axe",
"textures": {
"particle": "forgecraft:items/steel_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/steel_ingot_lapis1"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axe",
"textures": {
"particle": "forgecraft:items/steel_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/steel_ingot_lapis2"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axe",
"textures": {
"particle": "forgecraft:items/steel_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/steel_ingot_lapis3"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axe",
"textures": {
"particle": "forgecraft:items/steel_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/steel_ingot_diamond1_redstone1_lapis1"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axe",
"textures": {
"particle": "forgecraft:items/steel_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/steel_ingot_diamond2_redstone1"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axe",
"textures": {
"particle": "forgecraft:items/steel_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/steel_ingot_diamond1_redstone2"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axe",
"textures": {
"particle": "forgecraft:items/steel_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/steel_ingot_redstone1_lapis2"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axe",
"textures": {
"particle": "forgecraft:items/steel_ingot_emerald1",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/steel_ingot_emerald1"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axe",
"textures": {
"particle": "forgecraft:items/steel_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/steel_ingot_redstone2_lapis1"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axe",
"textures": {
"particle": "forgecraft:items/steel_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/steel_ingot_diamond1_lapis2"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axe",
"textures": {
"particle": "forgecraft:items/steel_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/steel_ingot_emerald1_diamond1"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axe",
"textures": {
"particle": "forgecraft:items/steel_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/steel_ingot_emerald1_diamond2"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axe",
"textures": {
"particle": "forgecraft:items/steel_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/steel_ingot_emerald1_diamond1_redstone1"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axe",
"textures": {
"particle": "forgecraft:items/steel_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/steel_ingot_emerald1_redstone2"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axe",
"textures": {
"particle": "forgecraft:items/steel_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/steel_ingot_diamond1"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axe",
"textures": {
"particle": "forgecraft:items/steel_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/steel_ingot_diamond2"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axe",
"textures": {
"particle": "forgecraft:items/steel_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/steel_ingot_diamond3"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axe",
"textures": {
"particle": "forgecraft:items/wootz_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/wootz_ingot"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axe",
"textures": {
"particle": "forgecraft:items/wootz_ingot_hot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/wootz_ingot_hot"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axe",
"textures": {
"particle": "forgecraft:items/wootz_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/wootz_ingot_redstone1"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axe",
"textures": {
"particle": "forgecraft:items/wootz_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/wootz_ingot_redstone2"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axe",
"textures": {
"particle": "forgecraft:items/wootz_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/wootz_ingot_redstone3"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axe",
"textures": {
"particle": "forgecraft:items/wootz_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/wootz_ingot_lapis1"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axe",
"textures": {
"particle": "forgecraft:items/wootz_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/wootz_ingot_lapis2"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axe",
"textures": {
"particle": "forgecraft:items/wootz_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/wootz_ingot_lapis3"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axe",
"textures": {
"particle": "forgecraft:items/wootz_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/wootz_ingot_diamond1_redstone1_lapis1"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axe",
"textures": {
"particle": "forgecraft:items/wootz_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/wootz_ingot_diamond2_redstone1"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axe",
"textures": {
"particle": "forgecraft:items/wootz_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/wootz_ingot_diamond1_redstone2"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axe",
"textures": {
"particle": "forgecraft:items/wootz_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/wootz_ingot_redstone1_lapis2"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axe",
"textures": {
"particle": "forgecraft:items/wootz_ingot_emerald1",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/wootz_ingot_emerald1"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axe",
"textures": {
"particle": "forgecraft:items/wootz_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/wootz_ingot_redstone2_lapis1"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axe",
"textures": {
"particle": "forgecraft:items/wootz_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/wootz_ingot_diamond1_lapis2"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axe",
"textures": {
"particle": "forgecraft:items/wootz_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/wootz_ingot_emerald1_diamond1"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axe",
"textures": {
"particle": "forgecraft:items/wootz_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/wootz_ingot_emerald1_diamond2"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axe",
"textures": {
"particle": "forgecraft:items/wootz_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/wootz_ingot_emerald1_diamond1_redstone1"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axe",
"textures": {
"particle": "forgecraft:items/wootz_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/wootz_ingot_emerald1_redstone2"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axe",
"textures": {
"particle": "forgecraft:items/wootz_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/wootz_ingot_diamond1"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axe",
"textures": {
"particle": "forgecraft:items/wootz_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/wootz_ingot_diamond2"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axe",
"textures": {
"particle": "forgecraft:items/wootz_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/wootz_ingot_diamond3"
}
}

View File

@@ -11,12 +11,12 @@
"from": [ 8, 0, 6.5 ],
"to": [ 9, 1.5, 8.5 ],
"faces": {
"down": { "uv": [ 8, 7.5, 9, 9.5 ], "texture": "#texture1" },
"up": { "uv": [ 8, 6.5, 9, 8.5 ], "texture": "#texture1" },
"north": { "uv": [ 7, 14.5, 8, 16 ], "texture": "#texture1" },
"south": { "uv": [ 8, 14.5, 9, 16 ], "texture": "#texture1" },
"west": { "uv": [ 6.5, 14.5, 8.5, 16 ], "texture": "#texture1" },
"east": { "uv": [ 7.5, 14.5, 9.5, 16 ], "texture": "#texture1" }
"down": { "uv": [ 13, 5, 14, 7 ], "texture": "#texture1" },
"up": { "uv": [ 6, 9, 7, 11 ], "texture": "#texture1" },
"north": { "uv": [ 5, 7, 6, 8.5 ], "texture": "#texture1" },
"south": { "uv": [ 12, 7, 13, 8.5 ], "texture": "#texture1" },
"west": { "uv": [ 6, 8, 8, 9.5 ], "texture": "#texture1" },
"east": { "uv": [ 8, 5, 10, 6.5 ], "texture": "#texture1" }
}
},
{
@@ -24,11 +24,11 @@
"from": [ 7, 0.5, 6.5 ],
"to": [ 7.5, 1, 9.5 ],
"faces": {
"down": { "uv": [ 7, 6.5, 7.5, 9.5 ], "texture": "#texture1" },
"up": { "uv": [ 7, 6.5, 7.5, 9.5 ], "texture": "#texture1" },
"north": { "uv": [ 8.5, 15, 9, 15.5 ], "texture": "#texture1" },
"south": { "uv": [ 7, 15, 7.5, 15.5 ], "texture": "#texture1" },
"west": { "uv": [ 6.5, 15, 9.5, 15.5 ], "texture": "#texture1" },
"down": { "uv": [ 11.5, 3, 12, 6 ], "texture": "#texture1" },
"up": { "uv": [ 5, 9, 5.5, 12 ], "texture": "#texture1" },
"north": { "uv": [ 4.5, 12.5, 5, 13 ], "texture": "#texture1" },
"south": { "uv": [ 9.5, 8, 10, 8.5 ], "texture": "#texture1" },
"west": { "uv": [ 4.5, 8, 7.5, 8.5 ], "texture": "#texture1" },
"east": { "uv": [ 6.5, 15, 9.5, 15.5 ], "texture": "#texture1" }
}
},
@@ -37,11 +37,11 @@
"from": [ 7.5, 0.5, 6.5 ],
"to": [ 8, 1, 9 ],
"faces": {
"down": { "uv": [ 7.5, 7, 8, 9.5 ], "texture": "#texture1" },
"up": { "uv": [ 7.5, 6.5, 8, 9 ], "texture": "#texture1" },
"north": { "uv": [ 8, 15, 8.5, 15.5 ], "texture": "#texture1" },
"south": { "uv": [ 7.5, 15, 8, 15.5 ], "texture": "#texture1" },
"west": { "uv": [ 6.5, 15, 9, 15.5 ], "texture": "#texture1" },
"down": { "uv": [ 13.5, 3, 14, 5.5 ], "texture": "#texture1" },
"up": { "uv": [ 3.5, 10, 4, 12.5 ], "texture": "#texture1" },
"north": { "uv": [ 11.5, 12.5, 12, 13 ], "texture": "#texture1" },
"south": { "uv": [ 4, 5, 4.5, 5.5 ], "texture": "#texture1" },
"west": { "uv": [ 11.5, 13, 14, 13.5 ], "texture": "#texture1" },
"east": { "uv": [ 7, 15, 9.5, 15.5 ], "texture": "#texture1" }
}
},
@@ -50,11 +50,11 @@
"from": [ 6.5, 0.5, 6 ],
"to": [ 7, 1, 10 ],
"faces": {
"down": { "uv": [ 6.5, 6, 7, 10 ], "texture": "#texture1" },
"up": { "uv": [ 6.5, 6, 7, 10 ], "texture": "#texture1" },
"north": { "uv": [ 9, 15, 9.5, 15.5 ], "texture": "#texture1" },
"south": { "uv": [ 6.5, 15, 7, 15.5 ], "texture": "#texture1" },
"west": { "uv": [ 6, 15, 10, 15.5 ], "texture": "#texture1" },
"down": { "uv": [ 12.5, 3, 13, 7 ], "texture": "#texture1" },
"up": { "uv": [ 3, 2, 3.5, 6 ], "texture": "#texture1" },
"north": { "uv": [ 9.5, 10.5, 10, 11 ], "texture": "#texture1" },
"south": { "uv": [ 13, 2, 13.5, 2.5 ], "texture": "#texture1" },
"west": { "uv": [ 1, 13, 5, 13.5 ], "texture": "#texture1" },
"east": { "uv": [ 6, 15, 10, 15.5 ], "texture": "#texture1" }
}
}
@@ -78,7 +78,8 @@
},
"gui": {
"rotation": [ 90, 0, 0 ],
"translation": [ -0.25, 0, 8 ]
"translation": [ -0.25, 0, 8 ],
"scale": [ 2, 2, 2 ]
},
"ground": {
"translation": [ 0, 4, 0 ]

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axehead",
"textures": {
"particle": "forgecraft:items/clean_iron_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/clean_iron_ingot"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axehead",
"textures": {
"particle": "forgecraft:items/clean_iron_ingot_hot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/clean_iron_ingot_hot"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axehead",
"textures": {
"particle": "forgecraft:items/clean_iron_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/clean_iron_ingot_redstone1"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axehead",
"textures": {
"particle": "forgecraft:items/clean_iron_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/clean_iron_ingot_redstone2"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axehead",
"textures": {
"particle": "forgecraft:items/clean_iron_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/clean_iron_ingot_redstone3"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axehead",
"textures": {
"particle": "forgecraft:items/clean_iron_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/clean_iron_ingot_lapis1"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axehead",
"textures": {
"particle": "forgecraft:items/clean_iron_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/clean_iron_ingot_lapis2"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axehead",
"textures": {
"particle": "forgecraft:items/clean_iron_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/clean_iron_ingot_lapis3"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axehead",
"textures": {
"particle": "forgecraft:items/clean_iron_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/clean_iron_ingot_diamond1_redstone1_lapis1"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axehead",
"textures": {
"particle": "forgecraft:items/clean_iron_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/clean_iron_ingot_diamond2_redstone1"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axehead",
"textures": {
"particle": "forgecraft:items/clean_iron_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/clean_iron_ingot_diamond1_redstone2"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axehead",
"textures": {
"particle": "forgecraft:items/clean_iron_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/clean_iron_ingot_redstone1_lapis2"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axehead",
"textures": {
"particle": "forgecraft:items/clean_iron_ingot_emerald1",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/clean_iron_ingot_emerald1"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axehead",
"textures": {
"particle": "forgecraft:items/clean_iron_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/clean_iron_ingot_redstone2_lapis1"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axehead",
"textures": {
"particle": "forgecraft:items/clean_iron_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/clean_iron_ingot_diamond1_lapis2"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axehead",
"textures": {
"particle": "forgecraft:items/clean_iron_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/clean_iron_ingot_emerald1_diamond1"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axehead",
"textures": {
"particle": "forgecraft:items/clean_iron_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/clean_iron_ingot_emerald1_diamond2"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axehead",
"textures": {
"particle": "forgecraft:items/clean_iron_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/clean_iron_ingot_emerald1_diamond1_redstone1"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axehead",
"textures": {
"particle": "forgecraft:items/clean_iron_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/clean_iron_ingot_emerald1_redstone2"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axehead",
"textures": {
"particle": "forgecraft:items/clean_iron_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/clean_iron_ingot_diamond1"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axehead",
"textures": {
"particle": "forgecraft:items/clean_iron_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/clean_iron_ingot_diamond2"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axehead",
"textures": {
"particle": "forgecraft:items/clean_iron_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/clean_iron_ingot_diamond3"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axehead",
"textures": {
"particle": "forgecraft:items/steel_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/steel_ingot"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axehead",
"textures": {
"particle": "forgecraft:items/clean_iron_ingot_hot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/clean_iron_ingot_hot"
}
}

View File

@@ -0,0 +1,8 @@
{
"parent": "forgecraft:item/axehead",
"textures": {
"particle": "forgecraft:items/steel_ingot",
"texture": "blocks/planks_oak",
"texture1": "forgecraft:items/steel_ingot_redstone1"
}
}

Some files were not shown because too many files have changed in this diff Show More