Throne - Other wood types + texts

This commit is contained in:
Emmanuel BENOîT 2016-07-07 12:35:51 +02:00
parent 071165f45c
commit 36c2d9cda8
118 changed files with 1040 additions and 2 deletions

Binary file not shown.

View file

@ -30,19 +30,29 @@ public class DecorativeBlocks
public static final DChair CHAIR_DARK_OAK; public static final DChair CHAIR_DARK_OAK;
public static final DChair CHAIR_ACACIA; public static final DChair CHAIR_ACACIA;
public static final DThrone THRONE_OAK;
public static final DThrone THRONE_BIRCH;
public static final DThrone THRONE_SPRUCE;
public static final DThrone THRONE_JUNGLE;
public static final DThrone THRONE_DARK_OAK;
public static final DThrone THRONE_ACACIA;
static { static {
final BlockStone.EnumType granite = BlockStone.EnumType.GRANITE_SMOOTH; final BlockStone.EnumType granite = BlockStone.EnumType.GRANITE_SMOOTH;
final BlockStone.EnumType diorite = BlockStone.EnumType.DIORITE_SMOOTH; final BlockStone.EnumType diorite = BlockStone.EnumType.DIORITE_SMOOTH;
final BlockStone.EnumType andesite = BlockStone.EnumType.ANDESITE_SMOOTH; final BlockStone.EnumType andesite = BlockStone.EnumType.ANDESITE_SMOOTH;
// Stairs
URegistry.addBlock( STAIRS_GRANITE = DStairs.fromStone( granite ) ); URegistry.addBlock( STAIRS_GRANITE = DStairs.fromStone( granite ) );
URegistry.addBlock( STAIRS_DIORITE = DStairs.fromStone( diorite ) ); URegistry.addBlock( STAIRS_DIORITE = DStairs.fromStone( diorite ) );
URegistry.addBlock( STAIRS_ANDESITE = DStairs.fromStone( andesite ) ); URegistry.addBlock( STAIRS_ANDESITE = DStairs.fromStone( andesite ) );
// Slabs
SLAB_GRANITE = DSlab.fromStone( granite ).register( ); SLAB_GRANITE = DSlab.fromStone( granite ).register( );
SLAB_DIORITE = DSlab.fromStone( diorite ).register( ); SLAB_DIORITE = DSlab.fromStone( diorite ).register( );
SLAB_ANDESITE = DSlab.fromStone( andesite ).register( ); SLAB_ANDESITE = DSlab.fromStone( andesite ).register( );
// Tables
URegistry.addBlock( TABLE_OAK = new DTable( E_DWoodType.OAK ) ); URegistry.addBlock( TABLE_OAK = new DTable( E_DWoodType.OAK ) );
URegistry.addBlock( TABLE_BIRCH = new DTable( E_DWoodType.BIRCH ) ); URegistry.addBlock( TABLE_BIRCH = new DTable( E_DWoodType.BIRCH ) );
URegistry.addBlock( TABLE_SPRUCE = new DTable( E_DWoodType.SPRUCE ) ); URegistry.addBlock( TABLE_SPRUCE = new DTable( E_DWoodType.SPRUCE ) );
@ -50,6 +60,7 @@ public class DecorativeBlocks
URegistry.addBlock( TABLE_DARK_OAK = new DTable( E_DWoodType.DARK_OAK ) ); URegistry.addBlock( TABLE_DARK_OAK = new DTable( E_DWoodType.DARK_OAK ) );
URegistry.addBlock( TABLE_ACACIA = new DTable( E_DWoodType.ACACIA ) ); URegistry.addBlock( TABLE_ACACIA = new DTable( E_DWoodType.ACACIA ) );
// Chairs
URegistry.addBlock( CHAIR_OAK = new DChair( E_DWoodType.OAK ) ); URegistry.addBlock( CHAIR_OAK = new DChair( E_DWoodType.OAK ) );
URegistry.addBlock( CHAIR_BIRCH = new DChair( E_DWoodType.BIRCH ) ); URegistry.addBlock( CHAIR_BIRCH = new DChair( E_DWoodType.BIRCH ) );
URegistry.addBlock( CHAIR_SPRUCE = new DChair( E_DWoodType.SPRUCE ) ); URegistry.addBlock( CHAIR_SPRUCE = new DChair( E_DWoodType.SPRUCE ) );
@ -57,8 +68,13 @@ public class DecorativeBlocks
URegistry.addBlock( CHAIR_DARK_OAK = new DChair( E_DWoodType.DARK_OAK ) ); URegistry.addBlock( CHAIR_DARK_OAK = new DChair( E_DWoodType.DARK_OAK ) );
URegistry.addBlock( CHAIR_ACACIA = new DChair( E_DWoodType.ACACIA ) ); URegistry.addBlock( CHAIR_ACACIA = new DChair( E_DWoodType.ACACIA ) );
// XXX FIXME LOL TEST!!!! // Thrones
new DThrone( E_DWoodType.OAK ); THRONE_OAK = new DThrone( E_DWoodType.OAK );
THRONE_BIRCH = new DThrone( E_DWoodType.BIRCH );
THRONE_SPRUCE = new DThrone( E_DWoodType.SPRUCE );
THRONE_JUNGLE = new DThrone( E_DWoodType.JUNGLE );
THRONE_DARK_OAK = new DThrone( E_DWoodType.DARK_OAK );
THRONE_ACACIA = new DThrone( E_DWoodType.ACACIA );
} }

View file

@ -0,0 +1,40 @@
{
"forge_marker": 1 ,
"defaults" : {
"model": "mmm:deco/throne/bottom" ,
"textures": {
"wood": "mmm:blocks/deco/throne/acacia/wood" ,
"front" : "mmm:blocks/deco/throne/acacia/front-bottom" ,
"top" : "mmm:blocks/deco/throne/acacia/bottom"
}
} ,
"variants" : {
"facing" : {
"north" : { "y": 0 } ,
"east" : { "y": 90 } ,
"south" : { "y": 180 } ,
"west" : { "y": 270 }
} ,
"color" : {
"black" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_black" } } ,
"blue" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_blue" } } ,
"brown" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_brown" } } ,
"cyan" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_cyan" } } ,
"gray" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_gray" } } ,
"green" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_green" } } ,
"light_blue" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_light_blue" } } ,
"lime" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_lime" } } ,
"magenta" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_magenta" } } ,
"orange" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_orange" } } ,
"pink" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_pink" } } ,
"purple" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_purple" } } ,
"red" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_red" } } ,
"silver" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_silver" } } ,
"white" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_white" } } ,
"yellow" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_yellow" } }
}
}
}

View file

@ -0,0 +1,39 @@
{
"forge_marker": 1 ,
"defaults" : {
"model": "mmm:deco/throne/top" ,
"textures": {
"wood": "mmm:blocks/deco/throne/acacia/wood" ,
"front" : "mmm:blocks/deco/throne/acacia/front-top"
}
} ,
"variants" : {
"facing" : {
"north" : { "y": 0 } ,
"east" : { "y": 90 } ,
"south" : { "y": 180 } ,
"west" : { "y": 270 }
} ,
"color" : {
"black" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_black" } } ,
"blue" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_blue" } } ,
"brown" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_brown" } } ,
"cyan" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_cyan" } } ,
"gray" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_gray" } } ,
"green" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_green" } } ,
"light_blue" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_light_blue" } } ,
"lime" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_lime" } } ,
"magenta" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_magenta" } } ,
"orange" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_orange" } } ,
"pink" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_pink" } } ,
"purple" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_purple" } } ,
"red" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_red" } } ,
"silver" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_silver" } } ,
"white" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_white" } } ,
"yellow" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_yellow" } }
}
}
}

View file

@ -0,0 +1,40 @@
{
"forge_marker": 1 ,
"defaults" : {
"model": "mmm:deco/throne/bottom" ,
"textures": {
"wood": "mmm:blocks/deco/throne/birch/wood" ,
"front" : "mmm:blocks/deco/throne/birch/front-bottom" ,
"top" : "mmm:blocks/deco/throne/birch/bottom"
}
} ,
"variants" : {
"facing" : {
"north" : { "y": 0 } ,
"east" : { "y": 90 } ,
"south" : { "y": 180 } ,
"west" : { "y": 270 }
} ,
"color" : {
"black" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_black" } } ,
"blue" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_blue" } } ,
"brown" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_brown" } } ,
"cyan" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_cyan" } } ,
"gray" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_gray" } } ,
"green" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_green" } } ,
"light_blue" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_light_blue" } } ,
"lime" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_lime" } } ,
"magenta" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_magenta" } } ,
"orange" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_orange" } } ,
"pink" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_pink" } } ,
"purple" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_purple" } } ,
"red" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_red" } } ,
"silver" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_silver" } } ,
"white" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_white" } } ,
"yellow" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_yellow" } }
}
}
}

View file

@ -0,0 +1,39 @@
{
"forge_marker": 1 ,
"defaults" : {
"model": "mmm:deco/throne/top" ,
"textures": {
"wood": "mmm:blocks/deco/throne/birch/wood" ,
"front" : "mmm:blocks/deco/throne/birch/front-top"
}
} ,
"variants" : {
"facing" : {
"north" : { "y": 0 } ,
"east" : { "y": 90 } ,
"south" : { "y": 180 } ,
"west" : { "y": 270 }
} ,
"color" : {
"black" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_black" } } ,
"blue" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_blue" } } ,
"brown" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_brown" } } ,
"cyan" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_cyan" } } ,
"gray" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_gray" } } ,
"green" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_green" } } ,
"light_blue" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_light_blue" } } ,
"lime" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_lime" } } ,
"magenta" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_magenta" } } ,
"orange" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_orange" } } ,
"pink" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_pink" } } ,
"purple" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_purple" } } ,
"red" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_red" } } ,
"silver" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_silver" } } ,
"white" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_white" } } ,
"yellow" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_yellow" } }
}
}
}

View file

@ -0,0 +1,40 @@
{
"forge_marker": 1 ,
"defaults" : {
"model": "mmm:deco/throne/bottom" ,
"textures": {
"wood": "mmm:blocks/deco/throne/dark_oak/wood" ,
"front" : "mmm:blocks/deco/throne/dark_oak/front-bottom" ,
"top" : "mmm:blocks/deco/throne/dark_oak/bottom"
}
} ,
"variants" : {
"facing" : {
"north" : { "y": 0 } ,
"east" : { "y": 90 } ,
"south" : { "y": 180 } ,
"west" : { "y": 270 }
} ,
"color" : {
"black" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_black" } } ,
"blue" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_blue" } } ,
"brown" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_brown" } } ,
"cyan" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_cyan" } } ,
"gray" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_gray" } } ,
"green" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_green" } } ,
"light_blue" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_light_blue" } } ,
"lime" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_lime" } } ,
"magenta" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_magenta" } } ,
"orange" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_orange" } } ,
"pink" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_pink" } } ,
"purple" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_purple" } } ,
"red" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_red" } } ,
"silver" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_silver" } } ,
"white" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_white" } } ,
"yellow" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_yellow" } }
}
}
}

View file

@ -0,0 +1,39 @@
{
"forge_marker": 1 ,
"defaults" : {
"model": "mmm:deco/throne/top" ,
"textures": {
"wood": "mmm:blocks/deco/throne/dark_oak/wood" ,
"front" : "mmm:blocks/deco/throne/dark_oak/front-top"
}
} ,
"variants" : {
"facing" : {
"north" : { "y": 0 } ,
"east" : { "y": 90 } ,
"south" : { "y": 180 } ,
"west" : { "y": 270 }
} ,
"color" : {
"black" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_black" } } ,
"blue" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_blue" } } ,
"brown" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_brown" } } ,
"cyan" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_cyan" } } ,
"gray" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_gray" } } ,
"green" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_green" } } ,
"light_blue" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_light_blue" } } ,
"lime" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_lime" } } ,
"magenta" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_magenta" } } ,
"orange" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_orange" } } ,
"pink" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_pink" } } ,
"purple" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_purple" } } ,
"red" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_red" } } ,
"silver" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_silver" } } ,
"white" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_white" } } ,
"yellow" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_yellow" } }
}
}
}

View file

@ -0,0 +1,40 @@
{
"forge_marker": 1 ,
"defaults" : {
"model": "mmm:deco/throne/bottom" ,
"textures": {
"wood": "mmm:blocks/deco/throne/jungle/wood" ,
"front" : "mmm:blocks/deco/throne/jungle/front-bottom" ,
"top" : "mmm:blocks/deco/throne/jungle/bottom"
}
} ,
"variants" : {
"facing" : {
"north" : { "y": 0 } ,
"east" : { "y": 90 } ,
"south" : { "y": 180 } ,
"west" : { "y": 270 }
} ,
"color" : {
"black" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_black" } } ,
"blue" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_blue" } } ,
"brown" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_brown" } } ,
"cyan" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_cyan" } } ,
"gray" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_gray" } } ,
"green" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_green" } } ,
"light_blue" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_light_blue" } } ,
"lime" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_lime" } } ,
"magenta" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_magenta" } } ,
"orange" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_orange" } } ,
"pink" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_pink" } } ,
"purple" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_purple" } } ,
"red" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_red" } } ,
"silver" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_silver" } } ,
"white" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_white" } } ,
"yellow" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_yellow" } }
}
}
}

View file

@ -0,0 +1,39 @@
{
"forge_marker": 1 ,
"defaults" : {
"model": "mmm:deco/throne/top" ,
"textures": {
"wood": "mmm:blocks/deco/throne/jungle/wood" ,
"front" : "mmm:blocks/deco/throne/jungle/front-top"
}
} ,
"variants" : {
"facing" : {
"north" : { "y": 0 } ,
"east" : { "y": 90 } ,
"south" : { "y": 180 } ,
"west" : { "y": 270 }
} ,
"color" : {
"black" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_black" } } ,
"blue" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_blue" } } ,
"brown" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_brown" } } ,
"cyan" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_cyan" } } ,
"gray" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_gray" } } ,
"green" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_green" } } ,
"light_blue" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_light_blue" } } ,
"lime" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_lime" } } ,
"magenta" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_magenta" } } ,
"orange" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_orange" } } ,
"pink" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_pink" } } ,
"purple" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_purple" } } ,
"red" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_red" } } ,
"silver" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_silver" } } ,
"white" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_white" } } ,
"yellow" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_yellow" } }
}
}
}

View file

@ -0,0 +1,40 @@
{
"forge_marker": 1 ,
"defaults" : {
"model": "mmm:deco/throne/bottom" ,
"textures": {
"wood": "mmm:blocks/deco/throne/spruce/wood" ,
"front" : "mmm:blocks/deco/throne/spruce/front-bottom" ,
"top" : "mmm:blocks/deco/throne/spruce/bottom"
}
} ,
"variants" : {
"facing" : {
"north" : { "y": 0 } ,
"east" : { "y": 90 } ,
"south" : { "y": 180 } ,
"west" : { "y": 270 }
} ,
"color" : {
"black" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_black" } } ,
"blue" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_blue" } } ,
"brown" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_brown" } } ,
"cyan" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_cyan" } } ,
"gray" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_gray" } } ,
"green" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_green" } } ,
"light_blue" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_light_blue" } } ,
"lime" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_lime" } } ,
"magenta" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_magenta" } } ,
"orange" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_orange" } } ,
"pink" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_pink" } } ,
"purple" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_purple" } } ,
"red" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_red" } } ,
"silver" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_silver" } } ,
"white" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_white" } } ,
"yellow" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_yellow" } }
}
}
}

View file

@ -0,0 +1,39 @@
{
"forge_marker": 1 ,
"defaults" : {
"model": "mmm:deco/throne/top" ,
"textures": {
"wood": "mmm:blocks/deco/throne/spruce/wood" ,
"front" : "mmm:blocks/deco/throne/spruce/front-top"
}
} ,
"variants" : {
"facing" : {
"north" : { "y": 0 } ,
"east" : { "y": 90 } ,
"south" : { "y": 180 } ,
"west" : { "y": 270 }
} ,
"color" : {
"black" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_black" } } ,
"blue" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_blue" } } ,
"brown" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_brown" } } ,
"cyan" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_cyan" } } ,
"gray" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_gray" } } ,
"green" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_green" } } ,
"light_blue" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_light_blue" } } ,
"lime" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_lime" } } ,
"magenta" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_magenta" } } ,
"orange" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_orange" } } ,
"pink" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_pink" } } ,
"purple" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_purple" } } ,
"red" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_red" } } ,
"silver" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_silver" } } ,
"white" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_white" } } ,
"yellow" : { "textures" : { "wool" : "minecraft:blocks/wool_colored_yellow" } }
}
}
}

View file

@ -121,3 +121,100 @@ tile.mmm.deco.chair.spruce.name=Spruce Chair
tile.mmm.deco.chair.acacia.name=Acacia Chair tile.mmm.deco.chair.acacia.name=Acacia Chair
tile.mmm.deco.chair.jungle.name=Jungle Wood Chair tile.mmm.deco.chair.jungle.name=Jungle Wood Chair
tile.mmm.deco.chair.dark_oak.name=Dark Oak Chair tile.mmm.deco.chair.dark_oak.name=Dark Oak Chair
tile.mmm.deco.throne.oak.black.name=Oak Throne (Black)
tile.mmm.deco.throne.oak.blue.name=Oak Throne (Blue)
tile.mmm.deco.throne.oak.brown.name=Oak Throne (Brown)
tile.mmm.deco.throne.oak.cyan.name=Oak Throne (Cyan)
tile.mmm.deco.throne.oak.gray.name=Oak Throne (Gray)
tile.mmm.deco.throne.oak.green.name=Oak Throne (Green)
tile.mmm.deco.throne.oak.lightBlue.name=Oak Throne (Light Blue)
tile.mmm.deco.throne.oak.lime.name=Oak Throne (Lime)
tile.mmm.deco.throne.oak.magenta.name=Oak Throne (Magenta)
tile.mmm.deco.throne.oak.orange.name=Oak Throne (Orange)
tile.mmm.deco.throne.oak.pink.name=Oak Throne (Pink)
tile.mmm.deco.throne.oak.purple.name=Oak Throne (Purple)
tile.mmm.deco.throne.oak.red.name=Oak Throne (Red)
tile.mmm.deco.throne.oak.silver.name=Oak Throne (Silver)
tile.mmm.deco.throne.oak.white.name=Oak Throne (White)
tile.mmm.deco.throne.oak.yellow.name=Oak Throne (Yellow)
tile.mmm.deco.throne.birch.black.name=Birch Throne (Black)
tile.mmm.deco.throne.birch.blue.name=Birch Throne (Blue)
tile.mmm.deco.throne.birch.brown.name=Birch Throne (Brown)
tile.mmm.deco.throne.birch.cyan.name=Birch Throne (Cyan)
tile.mmm.deco.throne.birch.gray.name=Birch Throne (Gray)
tile.mmm.deco.throne.birch.green.name=Birch Throne (Green)
tile.mmm.deco.throne.birch.lightBlue.name=Birch Throne (Light Blue)
tile.mmm.deco.throne.birch.lime.name=Birch Throne (Lime)
tile.mmm.deco.throne.birch.magenta.name=Birch Throne (Magenta)
tile.mmm.deco.throne.birch.orange.name=Birch Throne (Orange)
tile.mmm.deco.throne.birch.pink.name=Birch Throne (Pink)
tile.mmm.deco.throne.birch.purple.name=Birch Throne (Purple)
tile.mmm.deco.throne.birch.red.name=Birch Throne (Red)
tile.mmm.deco.throne.birch.silver.name=Birch Throne (Silver)
tile.mmm.deco.throne.birch.white.name=Birch Throne (White)
tile.mmm.deco.throne.birch.yellow.name=Birch Throne (Yellow)
tile.mmm.deco.throne.spruce.black.name=Spruce Throne (Black)
tile.mmm.deco.throne.spruce.blue.name=Spruce Throne (Blue)
tile.mmm.deco.throne.spruce.brown.name=Spruce Throne (Brown)
tile.mmm.deco.throne.spruce.cyan.name=Spruce Throne (Cyan)
tile.mmm.deco.throne.spruce.gray.name=Spruce Throne (Gray)
tile.mmm.deco.throne.spruce.green.name=Spruce Throne (Green)
tile.mmm.deco.throne.spruce.lightBlue.name=Spruce Throne (Light Blue)
tile.mmm.deco.throne.spruce.lime.name=Spruce Throne (Lime)
tile.mmm.deco.throne.spruce.magenta.name=Spruce Throne (Magenta)
tile.mmm.deco.throne.spruce.orange.name=Spruce Throne (Orange)
tile.mmm.deco.throne.spruce.pink.name=Spruce Throne (Pink)
tile.mmm.deco.throne.spruce.purple.name=Spruce Throne (Purple)
tile.mmm.deco.throne.spruce.red.name=Spruce Throne (Red)
tile.mmm.deco.throne.spruce.silver.name=Spruce Throne (Silver)
tile.mmm.deco.throne.spruce.white.name=Spruce Throne (White)
tile.mmm.deco.throne.spruce.yellow.name=Spruce Throne (Yellow)
tile.mmm.deco.throne.jungle.black.name=Jungle Wood Throne (Black)
tile.mmm.deco.throne.jungle.blue.name=Jungle Wood Throne (Blue)
tile.mmm.deco.throne.jungle.brown.name=Jungle Wood Throne (Brown)
tile.mmm.deco.throne.jungle.cyan.name=Jungle Wood Throne (Cyan)
tile.mmm.deco.throne.jungle.gray.name=Jungle Wood Throne (Gray)
tile.mmm.deco.throne.jungle.green.name=Jungle Wood Throne (Green)
tile.mmm.deco.throne.jungle.lightBlue.name=Jungle Wood Throne (Light Blue)
tile.mmm.deco.throne.jungle.lime.name=Jungle Wood Throne (Lime)
tile.mmm.deco.throne.jungle.magenta.name=Jungle Wood Throne (Magenta)
tile.mmm.deco.throne.jungle.orange.name=Jungle Wood Throne (Orange)
tile.mmm.deco.throne.jungle.pink.name=Jungle Wood Throne (Pink)
tile.mmm.deco.throne.jungle.purple.name=Jungle Wood Throne (Purple)
tile.mmm.deco.throne.jungle.red.name=Jungle Wood Throne (Red)
tile.mmm.deco.throne.jungle.silver.name=Jungle Wood Throne (Silver)
tile.mmm.deco.throne.jungle.white.name=Jungle Wood Throne (White)
tile.mmm.deco.throne.jungle.yellow.name=Jungle Wood Throne (Yellow)
tile.mmm.deco.throne.dark_oak.black.name=Dark Oak Throne (Black)
tile.mmm.deco.throne.dark_oak.blue.name=Dark Oak Throne (Blue)
tile.mmm.deco.throne.dark_oak.brown.name=Dark Oak Throne (Brown)
tile.mmm.deco.throne.dark_oak.cyan.name=Dark Oak Throne (Cyan)
tile.mmm.deco.throne.dark_oak.gray.name=Dark Oak Throne (Gray)
tile.mmm.deco.throne.dark_oak.green.name=Dark Oak Throne (Green)
tile.mmm.deco.throne.dark_oak.lightBlue.name=Dark Oak Throne (Light Blue)
tile.mmm.deco.throne.dark_oak.lime.name=Dark Oak Throne (Lime)
tile.mmm.deco.throne.dark_oak.magenta.name=Dark Oak Throne (Magenta)
tile.mmm.deco.throne.dark_oak.orange.name=Dark Oak Throne (Orange)
tile.mmm.deco.throne.dark_oak.pink.name=Dark Oak Throne (Pink)
tile.mmm.deco.throne.dark_oak.purple.name=Dark Oak Throne (Purple)
tile.mmm.deco.throne.dark_oak.red.name=Dark Oak Throne (Red)
tile.mmm.deco.throne.dark_oak.silver.name=Dark Oak Throne (Silver)
tile.mmm.deco.throne.dark_oak.white.name=Dark Oak Throne (White)
tile.mmm.deco.throne.dark_oak.yellow.name=Dark Oak Throne (Yellow)
tile.mmm.deco.throne.acacia.black.name=Acacia Throne (Black)
tile.mmm.deco.throne.acacia.blue.name=Acacia Throne (Blue)
tile.mmm.deco.throne.acacia.brown.name=Acacia Throne (Brown)
tile.mmm.deco.throne.acacia.cyan.name=Acacia Throne (Cyan)
tile.mmm.deco.throne.acacia.gray.name=Acacia Throne (Gray)
tile.mmm.deco.throne.acacia.green.name=Acacia Throne (Green)
tile.mmm.deco.throne.acacia.lightBlue.name=Acacia Throne (Light Blue)
tile.mmm.deco.throne.acacia.lime.name=Acacia Throne (Lime)
tile.mmm.deco.throne.acacia.magenta.name=Acacia Throne (Magenta)
tile.mmm.deco.throne.acacia.orange.name=Acacia Throne (Orange)
tile.mmm.deco.throne.acacia.pink.name=Acacia Throne (Pink)
tile.mmm.deco.throne.acacia.purple.name=Acacia Throne (Purple)
tile.mmm.deco.throne.acacia.red.name=Acacia Throne (Red)
tile.mmm.deco.throne.acacia.silver.name=Acacia Throne (Silver)
tile.mmm.deco.throne.acacia.white.name=Acacia Throne (White)
tile.mmm.deco.throne.acacia.yellow.name=Acacia Throne (Yellow)

View file

@ -0,0 +1,10 @@
{
"parent": "mmm:item/deco/throne",
"textures": {
"wood" : "mmm:blocks/deco/throne/acacia/wood" ,
"frontbottom" : "mmm:blocks/deco/throne/acacia/front-bottom" ,
"fronttop" : "mmm:blocks/deco/throne/acacia/front-top" ,
"top" : "mmm:blocks/deco/throne/acacia/bottom" ,
"wool" : "#wool"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/acacia",
"textures": {
"wool" : "minecraft:blocks/wool_colored_black"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/acacia",
"textures": {
"wool" : "minecraft:blocks/wool_colored_blue"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/acacia",
"textures": {
"wool" : "minecraft:blocks/wool_colored_brown"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/acacia",
"textures": {
"wool" : "minecraft:blocks/wool_colored_cyan"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/acacia",
"textures": {
"wool" : "minecraft:blocks/wool_colored_gray"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/acacia",
"textures": {
"wool" : "minecraft:blocks/wool_colored_green"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/acacia",
"textures": {
"wool" : "minecraft:blocks/wool_colored_light_blue"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/acacia",
"textures": {
"wool" : "minecraft:blocks/wool_colored_lime"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/acacia",
"textures": {
"wool" : "minecraft:blocks/wool_colored_magenta"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/acacia",
"textures": {
"wool" : "minecraft:blocks/wool_colored_orange"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/acacia",
"textures": {
"wool" : "minecraft:blocks/wool_colored_pink"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/acacia",
"textures": {
"wool" : "minecraft:blocks/wool_colored_purple"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/acacia",
"textures": {
"wool" : "minecraft:blocks/wool_colored_red"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/acacia",
"textures": {
"wool" : "minecraft:blocks/wool_colored_silver"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/acacia",
"textures": {
"wool" : "minecraft:blocks/wool_colored_white"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/acacia",
"textures": {
"wool" : "minecraft:blocks/wool_colored_yellow"
}
}

View file

@ -0,0 +1,10 @@
{
"parent": "mmm:item/deco/throne",
"textures": {
"wood" : "mmm:blocks/deco/throne/birch/wood" ,
"frontbottom" : "mmm:blocks/deco/throne/birch/front-bottom" ,
"fronttop" : "mmm:blocks/deco/throne/birch/front-top" ,
"top" : "mmm:blocks/deco/throne/birch/bottom" ,
"wool" : "#wool"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/birch",
"textures": {
"wool" : "minecraft:blocks/wool_colored_black"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/birch",
"textures": {
"wool" : "minecraft:blocks/wool_colored_blue"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/birch",
"textures": {
"wool" : "minecraft:blocks/wool_colored_brown"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/birch",
"textures": {
"wool" : "minecraft:blocks/wool_colored_cyan"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/birch",
"textures": {
"wool" : "minecraft:blocks/wool_colored_gray"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/birch",
"textures": {
"wool" : "minecraft:blocks/wool_colored_green"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/birch",
"textures": {
"wool" : "minecraft:blocks/wool_colored_light_blue"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/birch",
"textures": {
"wool" : "minecraft:blocks/wool_colored_lime"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/birch",
"textures": {
"wool" : "minecraft:blocks/wool_colored_magenta"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/birch",
"textures": {
"wool" : "minecraft:blocks/wool_colored_orange"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/birch",
"textures": {
"wool" : "minecraft:blocks/wool_colored_pink"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/birch",
"textures": {
"wool" : "minecraft:blocks/wool_colored_purple"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/birch",
"textures": {
"wool" : "minecraft:blocks/wool_colored_red"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/birch",
"textures": {
"wool" : "minecraft:blocks/wool_colored_silver"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/birch",
"textures": {
"wool" : "minecraft:blocks/wool_colored_white"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/birch",
"textures": {
"wool" : "minecraft:blocks/wool_colored_yellow"
}
}

View file

@ -0,0 +1,10 @@
{
"parent": "mmm:item/deco/throne",
"textures": {
"wood" : "mmm:blocks/deco/throne/dark_oak/wood" ,
"frontbottom" : "mmm:blocks/deco/throne/dark_oak/front-bottom" ,
"fronttop" : "mmm:blocks/deco/throne/dark_oak/front-top" ,
"top" : "mmm:blocks/deco/throne/dark_oak/bottom" ,
"wool" : "#wool"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/dark_oak",
"textures": {
"wool" : "minecraft:blocks/wool_colored_black"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/dark_oak",
"textures": {
"wool" : "minecraft:blocks/wool_colored_blue"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/dark_oak",
"textures": {
"wool" : "minecraft:blocks/wool_colored_brown"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/dark_oak",
"textures": {
"wool" : "minecraft:blocks/wool_colored_cyan"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/dark_oak",
"textures": {
"wool" : "minecraft:blocks/wool_colored_gray"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/dark_oak",
"textures": {
"wool" : "minecraft:blocks/wool_colored_green"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/dark_oak",
"textures": {
"wool" : "minecraft:blocks/wool_colored_light_blue"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/dark_oak",
"textures": {
"wool" : "minecraft:blocks/wool_colored_lime"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/dark_oak",
"textures": {
"wool" : "minecraft:blocks/wool_colored_magenta"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/dark_oak",
"textures": {
"wool" : "minecraft:blocks/wool_colored_orange"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/dark_oak",
"textures": {
"wool" : "minecraft:blocks/wool_colored_pink"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/dark_oak",
"textures": {
"wool" : "minecraft:blocks/wool_colored_purple"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/dark_oak",
"textures": {
"wool" : "minecraft:blocks/wool_colored_red"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/dark_oak",
"textures": {
"wool" : "minecraft:blocks/wool_colored_silver"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/dark_oak",
"textures": {
"wool" : "minecraft:blocks/wool_colored_white"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/dark_oak",
"textures": {
"wool" : "minecraft:blocks/wool_colored_yellow"
}
}

View file

@ -0,0 +1,10 @@
{
"parent": "mmm:item/deco/throne",
"textures": {
"wood" : "mmm:blocks/deco/throne/jungle/wood" ,
"frontbottom" : "mmm:blocks/deco/throne/jungle/front-bottom" ,
"fronttop" : "mmm:blocks/deco/throne/jungle/front-top" ,
"top" : "mmm:blocks/deco/throne/jungle/bottom" ,
"wool" : "#wool"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/jungle",
"textures": {
"wool" : "minecraft:blocks/wool_colored_black"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/jungle",
"textures": {
"wool" : "minecraft:blocks/wool_colored_blue"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/jungle",
"textures": {
"wool" : "minecraft:blocks/wool_colored_brown"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/jungle",
"textures": {
"wool" : "minecraft:blocks/wool_colored_cyan"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/jungle",
"textures": {
"wool" : "minecraft:blocks/wool_colored_gray"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/jungle",
"textures": {
"wool" : "minecraft:blocks/wool_colored_green"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/jungle",
"textures": {
"wool" : "minecraft:blocks/wool_colored_light_blue"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/jungle",
"textures": {
"wool" : "minecraft:blocks/wool_colored_lime"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/jungle",
"textures": {
"wool" : "minecraft:blocks/wool_colored_magenta"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/jungle",
"textures": {
"wool" : "minecraft:blocks/wool_colored_orange"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/jungle",
"textures": {
"wool" : "minecraft:blocks/wool_colored_pink"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/jungle",
"textures": {
"wool" : "minecraft:blocks/wool_colored_purple"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/jungle",
"textures": {
"wool" : "minecraft:blocks/wool_colored_red"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/jungle",
"textures": {
"wool" : "minecraft:blocks/wool_colored_silver"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/jungle",
"textures": {
"wool" : "minecraft:blocks/wool_colored_white"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/jungle",
"textures": {
"wool" : "minecraft:blocks/wool_colored_yellow"
}
}

View file

@ -0,0 +1,10 @@
{
"parent": "mmm:item/deco/throne",
"textures": {
"wood" : "mmm:blocks/deco/throne/spruce/wood" ,
"frontbottom" : "mmm:blocks/deco/throne/spruce/front-bottom" ,
"fronttop" : "mmm:blocks/deco/throne/spruce/front-top" ,
"top" : "mmm:blocks/deco/throne/spruce/bottom" ,
"wool" : "#wool"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/spruce",
"textures": {
"wool" : "minecraft:blocks/wool_colored_black"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/spruce",
"textures": {
"wool" : "minecraft:blocks/wool_colored_blue"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/spruce",
"textures": {
"wool" : "minecraft:blocks/wool_colored_brown"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/spruce",
"textures": {
"wool" : "minecraft:blocks/wool_colored_cyan"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/spruce",
"textures": {
"wool" : "minecraft:blocks/wool_colored_gray"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/spruce",
"textures": {
"wool" : "minecraft:blocks/wool_colored_green"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/spruce",
"textures": {
"wool" : "minecraft:blocks/wool_colored_light_blue"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/spruce",
"textures": {
"wool" : "minecraft:blocks/wool_colored_lime"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/spruce",
"textures": {
"wool" : "minecraft:blocks/wool_colored_magenta"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/spruce",
"textures": {
"wool" : "minecraft:blocks/wool_colored_orange"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/spruce",
"textures": {
"wool" : "minecraft:blocks/wool_colored_pink"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/spruce",
"textures": {
"wool" : "minecraft:blocks/wool_colored_purple"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/spruce",
"textures": {
"wool" : "minecraft:blocks/wool_colored_red"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/spruce",
"textures": {
"wool" : "minecraft:blocks/wool_colored_silver"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/spruce",
"textures": {
"wool" : "minecraft:blocks/wool_colored_white"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "mmm:item/deco/throne/spruce",
"textures": {
"wool" : "minecraft:blocks/wool_colored_yellow"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 579 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 589 B

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