Added a bunch of the dungeon blocks to the mod.
Mainly only the "Raw" variants right now. No recipes have been added yet.
This commit is contained in:
parent
cb2db9bc50
commit
ddadbef425
117 changed files with 2547 additions and 4 deletions
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "bloodmagic:block/dungeon_brick1"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "bloodmagic:block/dungeon_brick2"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "bloodmagic:block/dungeon_brick3"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"variants": {
|
||||
"": [
|
||||
{
|
||||
"model": "bloodmagic:block/dungeon_brick1"
|
||||
},
|
||||
{
|
||||
"model": "bloodmagic:block/dungeon_brick2"
|
||||
},
|
||||
{
|
||||
"model": "bloodmagic:block/dungeon_brick3"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
|
@ -0,0 +1,80 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=north,in_wall=false,open=false": {
|
||||
"model": "bloodmagic:block/dungeon_brick_gate",
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,in_wall=false,open=false": {
|
||||
"model": "bloodmagic:block/dungeon_brick_gate",
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,in_wall=false,open=false": {
|
||||
"model": "bloodmagic:block/dungeon_brick_gate",
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,in_wall=false,open=false": {
|
||||
"model": "bloodmagic:block/dungeon_brick_gate",
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,in_wall=true,open=false": {
|
||||
"model": "bloodmagic:block/dungeon_brick_gate_wall",
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,in_wall=true,open=false": {
|
||||
"model": "bloodmagic:block/dungeon_brick_gate_wall",
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,in_wall=true,open=false": {
|
||||
"model": "bloodmagic:block/dungeon_brick_gate_wall",
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,in_wall=true,open=false": {
|
||||
"model": "bloodmagic:block/dungeon_brick_gate_wall",
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,in_wall=false,open=true": {
|
||||
"model": "bloodmagic:block/dungeon_brick_gate_open",
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,in_wall=false,open=true": {
|
||||
"model": "bloodmagic:block/dungeon_brick_gate_open",
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,in_wall=false,open=true": {
|
||||
"model": "bloodmagic:block/dungeon_brick_gate_open",
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,in_wall=false,open=true": {
|
||||
"model": "bloodmagic:block/dungeon_brick_gate_open",
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,in_wall=true,open=true": {
|
||||
"model": "bloodmagic:block/dungeon_brick_gate_wall_open",
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,in_wall=true,open=true": {
|
||||
"model": "bloodmagic:block/dungeon_brick_gate_wall_open",
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,in_wall=true,open=true": {
|
||||
"model": "bloodmagic:block/dungeon_brick_gate_wall_open",
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,in_wall=true,open=true": {
|
||||
"model": "bloodmagic:block/dungeon_brick_gate_wall_open",
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,209 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=north,half=top,shape=straight": {
|
||||
"model": "bloodmagic:block/dungeon_brick_stairs",
|
||||
"x": 180,
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=top,shape=straight": {
|
||||
"model": "bloodmagic:block/dungeon_brick_stairs",
|
||||
"x": 180,
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=top,shape=straight": {
|
||||
"model": "bloodmagic:block/dungeon_brick_stairs",
|
||||
"x": 180,
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=top,shape=straight": {
|
||||
"model": "bloodmagic:block/dungeon_brick_stairs",
|
||||
"x": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=bottom,shape=straight": {
|
||||
"model": "bloodmagic:block/dungeon_brick_stairs",
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=bottom,shape=straight": {
|
||||
"model": "bloodmagic:block/dungeon_brick_stairs",
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=bottom,shape=straight": {
|
||||
"model": "bloodmagic:block/dungeon_brick_stairs",
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=bottom,shape=straight": {
|
||||
"model": "bloodmagic:block/dungeon_brick_stairs"
|
||||
},
|
||||
"facing=north,half=top,shape=inner_left": {
|
||||
"model": "bloodmagic:block/dungeon_brick_stairs_inner",
|
||||
"x": 180,
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=top,shape=inner_left": {
|
||||
"model": "bloodmagic:block/dungeon_brick_stairs_inner",
|
||||
"x": 180,
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=top,shape=inner_left": {
|
||||
"model": "bloodmagic:block/dungeon_brick_stairs_inner",
|
||||
"x": 180,
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=top,shape=inner_left": {
|
||||
"model": "bloodmagic:block/dungeon_brick_stairs_inner",
|
||||
"x": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_left": {
|
||||
"model": "bloodmagic:block/dungeon_brick_stairs_inner",
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_left": {
|
||||
"model": "bloodmagic:block/dungeon_brick_stairs_inner"
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_left": {
|
||||
"model": "bloodmagic:block/dungeon_brick_stairs_inner",
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=bottom,shape=inner_left": {
|
||||
"model": "bloodmagic:block/dungeon_brick_stairs_inner",
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=top,shape=inner_right": {
|
||||
"model": "bloodmagic:block/dungeon_brick_stairs_inner",
|
||||
"x": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=top,shape=inner_right": {
|
||||
"model": "bloodmagic:block/dungeon_brick_stairs_inner",
|
||||
"x": 180,
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=top,shape=inner_right": {
|
||||
"model": "bloodmagic:block/dungeon_brick_stairs_inner",
|
||||
"x": 180,
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=top,shape=inner_right": {
|
||||
"model": "bloodmagic:block/dungeon_brick_stairs_inner",
|
||||
"x": 180,
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_right": {
|
||||
"model": "bloodmagic:block/dungeon_brick_stairs_inner",
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_right": {
|
||||
"model": "bloodmagic:block/dungeon_brick_stairs_inner",
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_right": {
|
||||
"model": "bloodmagic:block/dungeon_brick_stairs_inner",
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=bottom,shape=inner_right": {
|
||||
"model": "bloodmagic:block/dungeon_brick_stairs_inner"
|
||||
},
|
||||
"facing=north,half=top,shape=outer_left": {
|
||||
"model": "bloodmagic:block/dungeon_brick_stairs_outer",
|
||||
"x": 180,
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=top,shape=outer_left": {
|
||||
"model": "bloodmagic:block/dungeon_brick_stairs_outer",
|
||||
"x": 180,
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=top,shape=outer_left": {
|
||||
"model": "bloodmagic:block/dungeon_brick_stairs_outer",
|
||||
"x": 180,
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=top,shape=outer_left": {
|
||||
"model": "bloodmagic:block/dungeon_brick_stairs_outer",
|
||||
"x": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_left": {
|
||||
"model": "bloodmagic:block/dungeon_brick_stairs_outer",
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_left": {
|
||||
"model": "bloodmagic:block/dungeon_brick_stairs_outer"
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_left": {
|
||||
"model": "bloodmagic:block/dungeon_brick_stairs_outer",
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_left": {
|
||||
"model": "bloodmagic:block/dungeon_brick_stairs_outer",
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=top,shape=outer_right": {
|
||||
"model": "bloodmagic:block/dungeon_brick_stairs_outer",
|
||||
"x": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=top,shape=outer_right": {
|
||||
"model": "bloodmagic:block/dungeon_brick_stairs_outer",
|
||||
"x": 180,
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=top,shape=outer_right": {
|
||||
"model": "bloodmagic:block/dungeon_brick_stairs_outer",
|
||||
"x": 180,
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=top,shape=outer_right": {
|
||||
"model": "bloodmagic:block/dungeon_brick_stairs_outer",
|
||||
"x": 180,
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_right": {
|
||||
"model": "bloodmagic:block/dungeon_brick_stairs_outer",
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_right": {
|
||||
"model": "bloodmagic:block/dungeon_brick_stairs_outer",
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_right": {
|
||||
"model": "bloodmagic:block/dungeon_brick_stairs_outer",
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_right": {
|
||||
"model": "bloodmagic:block/dungeon_brick_stairs_outer"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,90 @@
|
|||
{
|
||||
"multipart": [
|
||||
{
|
||||
"when": {
|
||||
"up": "true"
|
||||
},
|
||||
"apply": {
|
||||
"model": "bloodmagic:block/dungeon_brick_wall_post"
|
||||
}
|
||||
},
|
||||
{
|
||||
"when": {
|
||||
"east": "low"
|
||||
},
|
||||
"apply": {
|
||||
"model": "bloodmagic:block/dungeon_brick_wall_side",
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"when": {
|
||||
"east": "tall"
|
||||
},
|
||||
"apply": {
|
||||
"model": "bloodmagic:block/dungeon_brick_wall_side_tall",
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"when": {
|
||||
"north": "low"
|
||||
},
|
||||
"apply": {
|
||||
"model": "bloodmagic:block/dungeon_brick_wall_side",
|
||||
"uvlock": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"when": {
|
||||
"north": "tall"
|
||||
},
|
||||
"apply": {
|
||||
"model": "bloodmagic:block/dungeon_brick_wall_side_tall",
|
||||
"uvlock": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"when": {
|
||||
"south": "low"
|
||||
},
|
||||
"apply": {
|
||||
"model": "bloodmagic:block/dungeon_brick_wall_side",
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"when": {
|
||||
"south": "tall"
|
||||
},
|
||||
"apply": {
|
||||
"model": "bloodmagic:block/dungeon_brick_wall_side_tall",
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"when": {
|
||||
"west": "low"
|
||||
},
|
||||
"apply": {
|
||||
"model": "bloodmagic:block/dungeon_brick_wall_side",
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"when": {
|
||||
"west": "tall"
|
||||
},
|
||||
"apply": {
|
||||
"model": "bloodmagic:block/dungeon_brick_wall_side_tall",
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "bloodmagic:block/dungeon_eye"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=down": {
|
||||
"model": "bloodmagic:block/dungeon_pillar_cap_down"
|
||||
},
|
||||
"facing=up": {
|
||||
"model": "bloodmagic:block/dungeon_pillar_cap"
|
||||
},
|
||||
"facing=north": {
|
||||
"model": "bloodmagic:block/dungeon_pillar_cap_north"
|
||||
},
|
||||
"facing=south": {
|
||||
"model": "bloodmagic:block/dungeon_pillar_cap_south"
|
||||
},
|
||||
"facing=west": {
|
||||
"model": "bloodmagic:block/dungeon_pillar_cap_west"
|
||||
},
|
||||
"facing=east": {
|
||||
"model": "bloodmagic:block/dungeon_pillar_cap_east"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"variants": {
|
||||
"axis=x": {
|
||||
"model": "bloodmagic:block/dungeon_pillar_center_x"
|
||||
},
|
||||
"axis=y": {
|
||||
"model": "bloodmagic:block/dungeon_pillar_center"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "bloodmagic:block/dungeon_pillar_center_z"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"variants": {
|
||||
"axis=x": {
|
||||
"model": "bloodmagic:block/dungeon_pillar_special_x"
|
||||
},
|
||||
"axis=y": {
|
||||
"model": "bloodmagic:block/dungeon_pillar_special"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "bloodmagic:block/dungeon_pillar_special_z"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "bloodmagic:block/dungeon_polished"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,80 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=north,in_wall=false,open=false": {
|
||||
"model": "bloodmagic:block/dungeon_polished_gate",
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,in_wall=false,open=false": {
|
||||
"model": "bloodmagic:block/dungeon_polished_gate",
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,in_wall=false,open=false": {
|
||||
"model": "bloodmagic:block/dungeon_polished_gate",
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,in_wall=false,open=false": {
|
||||
"model": "bloodmagic:block/dungeon_polished_gate",
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,in_wall=true,open=false": {
|
||||
"model": "bloodmagic:block/dungeon_polished_gate_wall",
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,in_wall=true,open=false": {
|
||||
"model": "bloodmagic:block/dungeon_polished_gate_wall",
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,in_wall=true,open=false": {
|
||||
"model": "bloodmagic:block/dungeon_polished_gate_wall",
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,in_wall=true,open=false": {
|
||||
"model": "bloodmagic:block/dungeon_polished_gate_wall",
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,in_wall=false,open=true": {
|
||||
"model": "bloodmagic:block/dungeon_polished_gate_open",
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,in_wall=false,open=true": {
|
||||
"model": "bloodmagic:block/dungeon_polished_gate_open",
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,in_wall=false,open=true": {
|
||||
"model": "bloodmagic:block/dungeon_polished_gate_open",
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,in_wall=false,open=true": {
|
||||
"model": "bloodmagic:block/dungeon_polished_gate_open",
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,in_wall=true,open=true": {
|
||||
"model": "bloodmagic:block/dungeon_polished_gate_wall_open",
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,in_wall=true,open=true": {
|
||||
"model": "bloodmagic:block/dungeon_polished_gate_wall_open",
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,in_wall=true,open=true": {
|
||||
"model": "bloodmagic:block/dungeon_polished_gate_wall_open",
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,in_wall=true,open=true": {
|
||||
"model": "bloodmagic:block/dungeon_polished_gate_wall_open",
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,209 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=north,half=top,shape=straight": {
|
||||
"model": "bloodmagic:block/dungeon_polished_stairs",
|
||||
"x": 180,
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=top,shape=straight": {
|
||||
"model": "bloodmagic:block/dungeon_polished_stairs",
|
||||
"x": 180,
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=top,shape=straight": {
|
||||
"model": "bloodmagic:block/dungeon_polished_stairs",
|
||||
"x": 180,
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=top,shape=straight": {
|
||||
"model": "bloodmagic:block/dungeon_polished_stairs",
|
||||
"x": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=bottom,shape=straight": {
|
||||
"model": "bloodmagic:block/dungeon_polished_stairs",
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=bottom,shape=straight": {
|
||||
"model": "bloodmagic:block/dungeon_polished_stairs",
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=bottom,shape=straight": {
|
||||
"model": "bloodmagic:block/dungeon_polished_stairs",
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=bottom,shape=straight": {
|
||||
"model": "bloodmagic:block/dungeon_polished_stairs"
|
||||
},
|
||||
"facing=north,half=top,shape=inner_left": {
|
||||
"model": "bloodmagic:block/dungeon_polished_stairs_inner",
|
||||
"x": 180,
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=top,shape=inner_left": {
|
||||
"model": "bloodmagic:block/dungeon_polished_stairs_inner",
|
||||
"x": 180,
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=top,shape=inner_left": {
|
||||
"model": "bloodmagic:block/dungeon_polished_stairs_inner",
|
||||
"x": 180,
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=top,shape=inner_left": {
|
||||
"model": "bloodmagic:block/dungeon_polished_stairs_inner",
|
||||
"x": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_left": {
|
||||
"model": "bloodmagic:block/dungeon_polished_stairs_inner",
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_left": {
|
||||
"model": "bloodmagic:block/dungeon_polished_stairs_inner"
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_left": {
|
||||
"model": "bloodmagic:block/dungeon_polished_stairs_inner",
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=bottom,shape=inner_left": {
|
||||
"model": "bloodmagic:block/dungeon_polished_stairs_inner",
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=top,shape=inner_right": {
|
||||
"model": "bloodmagic:block/dungeon_polished_stairs_inner",
|
||||
"x": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=top,shape=inner_right": {
|
||||
"model": "bloodmagic:block/dungeon_polished_stairs_inner",
|
||||
"x": 180,
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=top,shape=inner_right": {
|
||||
"model": "bloodmagic:block/dungeon_polished_stairs_inner",
|
||||
"x": 180,
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=top,shape=inner_right": {
|
||||
"model": "bloodmagic:block/dungeon_polished_stairs_inner",
|
||||
"x": 180,
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_right": {
|
||||
"model": "bloodmagic:block/dungeon_polished_stairs_inner",
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_right": {
|
||||
"model": "bloodmagic:block/dungeon_polished_stairs_inner",
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_right": {
|
||||
"model": "bloodmagic:block/dungeon_polished_stairs_inner",
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=bottom,shape=inner_right": {
|
||||
"model": "bloodmagic:block/dungeon_polished_stairs_inner"
|
||||
},
|
||||
"facing=north,half=top,shape=outer_left": {
|
||||
"model": "bloodmagic:block/dungeon_polished_stairs_outer",
|
||||
"x": 180,
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=top,shape=outer_left": {
|
||||
"model": "bloodmagic:block/dungeon_polished_stairs_outer",
|
||||
"x": 180,
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=top,shape=outer_left": {
|
||||
"model": "bloodmagic:block/dungeon_polished_stairs_outer",
|
||||
"x": 180,
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=top,shape=outer_left": {
|
||||
"model": "bloodmagic:block/dungeon_polished_stairs_outer",
|
||||
"x": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_left": {
|
||||
"model": "bloodmagic:block/dungeon_polished_stairs_outer",
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_left": {
|
||||
"model": "bloodmagic:block/dungeon_polished_stairs_outer"
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_left": {
|
||||
"model": "bloodmagic:block/dungeon_polished_stairs_outer",
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_left": {
|
||||
"model": "bloodmagic:block/dungeon_polished_stairs_outer",
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=top,shape=outer_right": {
|
||||
"model": "bloodmagic:block/dungeon_polished_stairs_outer",
|
||||
"x": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=top,shape=outer_right": {
|
||||
"model": "bloodmagic:block/dungeon_polished_stairs_outer",
|
||||
"x": 180,
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=top,shape=outer_right": {
|
||||
"model": "bloodmagic:block/dungeon_polished_stairs_outer",
|
||||
"x": 180,
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=top,shape=outer_right": {
|
||||
"model": "bloodmagic:block/dungeon_polished_stairs_outer",
|
||||
"x": 180,
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_right": {
|
||||
"model": "bloodmagic:block/dungeon_polished_stairs_outer",
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_right": {
|
||||
"model": "bloodmagic:block/dungeon_polished_stairs_outer",
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_right": {
|
||||
"model": "bloodmagic:block/dungeon_polished_stairs_outer",
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_right": {
|
||||
"model": "bloodmagic:block/dungeon_polished_stairs_outer"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,90 @@
|
|||
{
|
||||
"multipart": [
|
||||
{
|
||||
"when": {
|
||||
"up": "true"
|
||||
},
|
||||
"apply": {
|
||||
"model": "bloodmagic:block/dungeon_polished_wall_post"
|
||||
}
|
||||
},
|
||||
{
|
||||
"when": {
|
||||
"east": "low"
|
||||
},
|
||||
"apply": {
|
||||
"model": "bloodmagic:block/dungeon_polished_wall_side",
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"when": {
|
||||
"east": "tall"
|
||||
},
|
||||
"apply": {
|
||||
"model": "bloodmagic:block/dungeon_polished_wall_side_tall",
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"when": {
|
||||
"north": "low"
|
||||
},
|
||||
"apply": {
|
||||
"model": "bloodmagic:block/dungeon_polished_wall_side",
|
||||
"uvlock": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"when": {
|
||||
"north": "tall"
|
||||
},
|
||||
"apply": {
|
||||
"model": "bloodmagic:block/dungeon_polished_wall_side_tall",
|
||||
"uvlock": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"when": {
|
||||
"south": "low"
|
||||
},
|
||||
"apply": {
|
||||
"model": "bloodmagic:block/dungeon_polished_wall_side",
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"when": {
|
||||
"south": "tall"
|
||||
},
|
||||
"apply": {
|
||||
"model": "bloodmagic:block/dungeon_polished_wall_side_tall",
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"when": {
|
||||
"west": "low"
|
||||
},
|
||||
"apply": {
|
||||
"model": "bloodmagic:block/dungeon_polished_wall_side",
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"when": {
|
||||
"west": "tall"
|
||||
},
|
||||
"apply": {
|
||||
"model": "bloodmagic:block/dungeon_polished_wall_side_tall",
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "bloodmagic:block/dungeon_smallbrick"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
"variants": {
|
||||
"": [
|
||||
{
|
||||
"model": "bloodmagic:block/dungeon_stone"
|
||||
},
|
||||
{
|
||||
"model": "bloodmagic:block/dungeon_stone_mirrored"
|
||||
},
|
||||
{
|
||||
"model": "bloodmagic:block/dungeon_stone",
|
||||
"y": 180
|
||||
},
|
||||
{
|
||||
"model": "bloodmagic:block/dungeon_stone_mirrored",
|
||||
"y": 180
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "bloodmagic:block/dungeon_tile"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "bloodmagic:block/dungeon_tilespecial"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -14,6 +14,25 @@
|
|||
"block.bloodmagic.demoncrystallizer": "Demon Crystallizer",
|
||||
"block.bloodmagic.destructivedemoncrystal": "Destructive Crystal Cluster",
|
||||
"block.bloodmagic.dislocationrune": "Displacement Rune",
|
||||
"block.bloodmagic.dungeon_brick1": "Demon Bricks",
|
||||
"block.bloodmagic.dungeon_brick2": "Offset Demon Bricks",
|
||||
"block.bloodmagic.dungeon_brick3": "Long Demon Bricks",
|
||||
"block.bloodmagic.dungeon_brick_assorted": "Assorted Demon Bricks",
|
||||
"block.bloodmagic.dungeon_brick_gate": "Demon Brick Gate",
|
||||
"block.bloodmagic.dungeon_brick_stairs": "Demon Brick Stairs",
|
||||
"block.bloodmagic.dungeon_brick_wall": "Demon Brick Wall",
|
||||
"block.bloodmagic.dungeon_eye": "Demon Eye",
|
||||
"block.bloodmagic.dungeon_pillar_cap": "Demon Stone Pillar Cap",
|
||||
"block.bloodmagic.dungeon_pillar_center": "Demon Stone Pillar",
|
||||
"block.bloodmagic.dungeon_pillar_special": "Accented Demon Stone Pillar",
|
||||
"block.bloodmagic.dungeon_polished": "Polished Demon Stone",
|
||||
"block.bloodmagic.dungeon_polished_gate": "Demon Stone Gate",
|
||||
"block.bloodmagic.dungeon_polished_stairs": "Demon Stone Stairs",
|
||||
"block.bloodmagic.dungeon_polished_wall": "Demon Stone Wall",
|
||||
"block.bloodmagic.dungeon_smallbrick": "Small Demon Bricks",
|
||||
"block.bloodmagic.dungeon_stone": "Demon Stone",
|
||||
"block.bloodmagic.dungeon_tile": "Demon Stone Tiles",
|
||||
"block.bloodmagic.dungeon_tilespecial": "Accented Demon Stone Tiles",
|
||||
"block.bloodmagic.duskritualstone": "Dusk Ritual Stone",
|
||||
"block.bloodmagic.earthritualstone": "Earth Ritual Stone",
|
||||
"block.bloodmagic.fireritualstone": "Fire Ritual Stone",
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/cube_all",
|
||||
"textures": {
|
||||
"all": "bloodmagic:block/dungeon/dungeon_brick1"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/cube_all",
|
||||
"textures": {
|
||||
"all": "bloodmagic:block/dungeon/dungeon_brick2"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/cube_all",
|
||||
"textures": {
|
||||
"all": "bloodmagic:block/dungeon/dungeon_brick3"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/template_fence_gate",
|
||||
"textures": {
|
||||
"texture": "bloodmagic:block/dungeon/dungeon_brick1"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/template_fence_gate_open",
|
||||
"textures": {
|
||||
"texture": "bloodmagic:block/dungeon/dungeon_brick1"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/template_fence_gate_wall",
|
||||
"textures": {
|
||||
"texture": "bloodmagic:block/dungeon/dungeon_brick1"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/template_fence_gate_wall_open",
|
||||
"textures": {
|
||||
"texture": "bloodmagic:block/dungeon/dungeon_brick1"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "minecraft:block/stairs",
|
||||
"textures": {
|
||||
"side": "bloodmagic:block/dungeon/dungeon_brick1",
|
||||
"bottom": "bloodmagic:block/dungeon/dungeon_brick1",
|
||||
"top": "bloodmagic:block/dungeon/dungeon_brick1"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "minecraft:block/inner_stairs",
|
||||
"textures": {
|
||||
"side": "bloodmagic:block/dungeon/dungeon_brick1",
|
||||
"bottom": "bloodmagic:block/dungeon/dungeon_brick1",
|
||||
"top": "bloodmagic:block/dungeon/dungeon_brick1"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "minecraft:block/outer_stairs",
|
||||
"textures": {
|
||||
"side": "bloodmagic:block/dungeon/dungeon_brick1",
|
||||
"bottom": "bloodmagic:block/dungeon/dungeon_brick1",
|
||||
"top": "bloodmagic:block/dungeon/dungeon_brick1"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/wall_inventory",
|
||||
"textures": {
|
||||
"wall": "bloodmagic:block/dungeon/dungeon_brick1"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/template_wall_post",
|
||||
"textures": {
|
||||
"wall": "bloodmagic:block/dungeon/dungeon_brick1"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/template_wall_side",
|
||||
"textures": {
|
||||
"wall": "bloodmagic:block/dungeon/dungeon_brick1"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/template_wall_side_tall",
|
||||
"textures": {
|
||||
"wall": "bloodmagic:block/dungeon/dungeon_brick1"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/cube_all",
|
||||
"textures": {
|
||||
"all": "bloodmagic:block/dungeon/dungeon_eye"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "minecraft:block/cube_bottom_top",
|
||||
"textures": {
|
||||
"side": "bloodmagic:block/dungeon/dungeon_pillartop",
|
||||
"bottom": "bloodmagic:block/dungeon/dungeon_pillarheart",
|
||||
"top": "bloodmagic:block/dungeon/dungeon_pillarheart"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "minecraft:block/cube_bottom_top",
|
||||
"textures": {
|
||||
"side": "bloodmagic:block/dungeon/dungeon_pillarbottom",
|
||||
"bottom": "bloodmagic:block/dungeon/dungeon_pillarheart",
|
||||
"top": "bloodmagic:block/dungeon/dungeon_pillarheart"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,59 @@
|
|||
{
|
||||
"parent": "minecraft:block/cube",
|
||||
"textures": {
|
||||
"particle": "bloodmagic:block/dungeon/dungeon_pillarheart",
|
||||
"sideBottom": "bloodmagic:block/dungeon/dungeon_pillarbottom",
|
||||
"end": "bloodmagic:block/dungeon/dungeon_pillarheart",
|
||||
"sideTop": "bloodmagic:block/dungeon/dungeon_pillartop"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"to": [
|
||||
16,
|
||||
16,
|
||||
16
|
||||
],
|
||||
"faces": {
|
||||
"down": {
|
||||
"texture": "#sideBottom",
|
||||
"rotation": 270
|
||||
},
|
||||
"up": {
|
||||
"texture": "#sideBottom",
|
||||
"rotation": 270
|
||||
},
|
||||
"north": {
|
||||
"texture": "#sideTop",
|
||||
"rotation": 270
|
||||
},
|
||||
"south": {
|
||||
"texture": "#sideBottom",
|
||||
"rotation": 270
|
||||
},
|
||||
"west": {
|
||||
"texture": "#end",
|
||||
"uv": [
|
||||
16.0,
|
||||
0.0,
|
||||
0.0,
|
||||
16.0
|
||||
]
|
||||
},
|
||||
"east": {
|
||||
"texture": "#end",
|
||||
"uv": [
|
||||
16.0,
|
||||
0.0,
|
||||
0.0,
|
||||
16.0
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,57 @@
|
|||
{
|
||||
"parent": "minecraft:block/cube",
|
||||
"textures": {
|
||||
"particle": "bloodmagic:block/dungeon/dungeon_pillarheart",
|
||||
"sideBottom": "bloodmagic:block/dungeon/dungeon_pillarbottom",
|
||||
"end": "bloodmagic:block/dungeon/dungeon_pillarheart",
|
||||
"sideTop": "bloodmagic:block/dungeon/dungeon_pillartop"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"to": [
|
||||
16,
|
||||
16,
|
||||
16
|
||||
],
|
||||
"faces": {
|
||||
"down": {
|
||||
"texture": "#sideBottom"
|
||||
},
|
||||
"up": {
|
||||
"texture": "#sideTop"
|
||||
},
|
||||
"north": {
|
||||
"texture": "#end"
|
||||
},
|
||||
"south": {
|
||||
"texture": "#end"
|
||||
},
|
||||
"west": {
|
||||
"texture": "#sideTop",
|
||||
"uv": [
|
||||
16.0,
|
||||
0.0,
|
||||
0.0,
|
||||
16.0
|
||||
],
|
||||
"rotation": 270
|
||||
},
|
||||
"east": {
|
||||
"texture": "#sideBottom",
|
||||
"uv": [
|
||||
16.0,
|
||||
0.0,
|
||||
0.0,
|
||||
16.0
|
||||
],
|
||||
"rotation": 270
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,57 @@
|
|||
{
|
||||
"parent": "minecraft:block/cube",
|
||||
"textures": {
|
||||
"particle": "bloodmagic:block/dungeon/dungeon_pillarheart",
|
||||
"sideBottom": "bloodmagic:block/dungeon/dungeon_pillarbottom",
|
||||
"end": "bloodmagic:block/dungeon/dungeon_pillarheart",
|
||||
"sideTop": "bloodmagic:block/dungeon/dungeon_pillartop"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"to": [
|
||||
16,
|
||||
16,
|
||||
16
|
||||
],
|
||||
"faces": {
|
||||
"down": {
|
||||
"texture": "#sideTop"
|
||||
},
|
||||
"up": {
|
||||
"texture": "#sideBottom"
|
||||
},
|
||||
"north": {
|
||||
"texture": "#end"
|
||||
},
|
||||
"south": {
|
||||
"texture": "#end"
|
||||
},
|
||||
"west": {
|
||||
"texture": "#sideBottom",
|
||||
"uv": [
|
||||
16.0,
|
||||
0.0,
|
||||
0.0,
|
||||
16.0
|
||||
],
|
||||
"rotation": 270
|
||||
},
|
||||
"east": {
|
||||
"texture": "#sideTop",
|
||||
"uv": [
|
||||
16.0,
|
||||
0.0,
|
||||
0.0,
|
||||
16.0
|
||||
],
|
||||
"rotation": 270
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,59 @@
|
|||
{
|
||||
"parent": "minecraft:block/cube",
|
||||
"textures": {
|
||||
"particle": "bloodmagic:block/dungeon/dungeon_pillarheart",
|
||||
"sideBottom": "bloodmagic:block/dungeon/dungeon_pillarbottom",
|
||||
"end": "bloodmagic:block/dungeon/dungeon_pillarheart",
|
||||
"sideTop": "bloodmagic:block/dungeon/dungeon_pillartop"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"to": [
|
||||
16,
|
||||
16,
|
||||
16
|
||||
],
|
||||
"faces": {
|
||||
"down": {
|
||||
"texture": "#sideTop",
|
||||
"rotation": 270
|
||||
},
|
||||
"up": {
|
||||
"texture": "#sideTop",
|
||||
"rotation": 270
|
||||
},
|
||||
"north": {
|
||||
"texture": "#sideBottom",
|
||||
"rotation": 270
|
||||
},
|
||||
"south": {
|
||||
"texture": "#sideTop",
|
||||
"rotation": 270
|
||||
},
|
||||
"west": {
|
||||
"texture": "#end",
|
||||
"uv": [
|
||||
16.0,
|
||||
0.0,
|
||||
0.0,
|
||||
16.0
|
||||
]
|
||||
},
|
||||
"east": {
|
||||
"texture": "#end",
|
||||
"uv": [
|
||||
16.0,
|
||||
0.0,
|
||||
0.0,
|
||||
16.0
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"parent": "minecraft:block/cube_column",
|
||||
"textures": {
|
||||
"side": "bloodmagic:block/dungeon/dungeon_pillar",
|
||||
"end": "bloodmagic:block/dungeon/dungeon_pillarheart"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,58 @@
|
|||
{
|
||||
"parent": "minecraft:block/cube",
|
||||
"textures": {
|
||||
"particle": "bloodmagic:block/dungeon/dungeon_pillar",
|
||||
"end": "bloodmagic:block/dungeon/dungeon_pillarheart",
|
||||
"side": "bloodmagic:block/dungeon/dungeon_pillar"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"to": [
|
||||
16,
|
||||
16,
|
||||
16
|
||||
],
|
||||
"faces": {
|
||||
"down": {
|
||||
"texture": "#side",
|
||||
"rotation": 270
|
||||
},
|
||||
"up": {
|
||||
"texture": "#side",
|
||||
"rotation": 270
|
||||
},
|
||||
"north": {
|
||||
"texture": "#side",
|
||||
"rotation": 270
|
||||
},
|
||||
"south": {
|
||||
"texture": "#side",
|
||||
"rotation": 270
|
||||
},
|
||||
"west": {
|
||||
"texture": "#end",
|
||||
"uv": [
|
||||
16.0,
|
||||
0.0,
|
||||
0.0,
|
||||
16.0
|
||||
]
|
||||
},
|
||||
"east": {
|
||||
"texture": "#end",
|
||||
"uv": [
|
||||
16.0,
|
||||
0.0,
|
||||
0.0,
|
||||
16.0
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,56 @@
|
|||
{
|
||||
"parent": "minecraft:block/cube",
|
||||
"textures": {
|
||||
"particle": "bloodmagic:block/dungeon/dungeon_pillar",
|
||||
"end": "bloodmagic:block/dungeon/dungeon_pillarheart",
|
||||
"side": "bloodmagic:block/dungeon/dungeon_pillar"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"to": [
|
||||
16,
|
||||
16,
|
||||
16
|
||||
],
|
||||
"faces": {
|
||||
"down": {
|
||||
"texture": "#side"
|
||||
},
|
||||
"up": {
|
||||
"texture": "#side"
|
||||
},
|
||||
"north": {
|
||||
"texture": "#end"
|
||||
},
|
||||
"south": {
|
||||
"texture": "#end"
|
||||
},
|
||||
"west": {
|
||||
"texture": "#side",
|
||||
"uv": [
|
||||
16.0,
|
||||
0.0,
|
||||
0.0,
|
||||
16.0
|
||||
],
|
||||
"rotation": 270
|
||||
},
|
||||
"east": {
|
||||
"texture": "#side",
|
||||
"uv": [
|
||||
16.0,
|
||||
0.0,
|
||||
0.0,
|
||||
16.0
|
||||
],
|
||||
"rotation": 270
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"parent": "minecraft:block/cube_column",
|
||||
"textures": {
|
||||
"side": "bloodmagic:block/dungeon/dungeon_pillarspecial",
|
||||
"end": "bloodmagic:block/dungeon/dungeon_pillarheart"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,58 @@
|
|||
{
|
||||
"parent": "minecraft:block/cube",
|
||||
"textures": {
|
||||
"particle": "bloodmagic:block/dungeon/dungeon_pillarspecial",
|
||||
"end": "bloodmagic:block/dungeon/dungeon_pillarheart",
|
||||
"side": "bloodmagic:block/dungeon/dungeon_pillarspecial"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"to": [
|
||||
16,
|
||||
16,
|
||||
16
|
||||
],
|
||||
"faces": {
|
||||
"down": {
|
||||
"texture": "#side",
|
||||
"rotation": 270
|
||||
},
|
||||
"up": {
|
||||
"texture": "#side",
|
||||
"rotation": 270
|
||||
},
|
||||
"north": {
|
||||
"texture": "#side",
|
||||
"rotation": 270
|
||||
},
|
||||
"south": {
|
||||
"texture": "#side",
|
||||
"rotation": 270
|
||||
},
|
||||
"west": {
|
||||
"texture": "#end",
|
||||
"uv": [
|
||||
16.0,
|
||||
0.0,
|
||||
0.0,
|
||||
16.0
|
||||
]
|
||||
},
|
||||
"east": {
|
||||
"texture": "#end",
|
||||
"uv": [
|
||||
16.0,
|
||||
0.0,
|
||||
0.0,
|
||||
16.0
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,56 @@
|
|||
{
|
||||
"parent": "minecraft:block/cube",
|
||||
"textures": {
|
||||
"particle": "bloodmagic:block/dungeon/dungeon_pillarspecial",
|
||||
"end": "bloodmagic:block/dungeon/dungeon_pillarheart",
|
||||
"side": "bloodmagic:block/dungeon/dungeon_pillarspecial"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"to": [
|
||||
16,
|
||||
16,
|
||||
16
|
||||
],
|
||||
"faces": {
|
||||
"down": {
|
||||
"texture": "#side"
|
||||
},
|
||||
"up": {
|
||||
"texture": "#side"
|
||||
},
|
||||
"north": {
|
||||
"texture": "#end"
|
||||
},
|
||||
"south": {
|
||||
"texture": "#end"
|
||||
},
|
||||
"west": {
|
||||
"texture": "#side",
|
||||
"uv": [
|
||||
16.0,
|
||||
0.0,
|
||||
0.0,
|
||||
16.0
|
||||
],
|
||||
"rotation": 270
|
||||
},
|
||||
"east": {
|
||||
"texture": "#side",
|
||||
"uv": [
|
||||
16.0,
|
||||
0.0,
|
||||
0.0,
|
||||
16.0
|
||||
],
|
||||
"rotation": 270
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/cube_all",
|
||||
"textures": {
|
||||
"all": "bloodmagic:block/dungeon/dungeon_polished"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/template_fence_gate",
|
||||
"textures": {
|
||||
"texture": "bloodmagic:block/dungeon/dungeon_polished"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/template_fence_gate_open",
|
||||
"textures": {
|
||||
"texture": "bloodmagic:block/dungeon/dungeon_polished"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/template_fence_gate_wall",
|
||||
"textures": {
|
||||
"texture": "bloodmagic:block/dungeon/dungeon_polished"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/template_fence_gate_wall_open",
|
||||
"textures": {
|
||||
"texture": "bloodmagic:block/dungeon/dungeon_polished"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "minecraft:block/stairs",
|
||||
"textures": {
|
||||
"side": "bloodmagic:block/dungeon/dungeon_polished",
|
||||
"bottom": "bloodmagic:block/dungeon/dungeon_polished",
|
||||
"top": "bloodmagic:block/dungeon/dungeon_polished"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "minecraft:block/inner_stairs",
|
||||
"textures": {
|
||||
"side": "bloodmagic:block/dungeon/dungeon_polished",
|
||||
"bottom": "bloodmagic:block/dungeon/dungeon_polished",
|
||||
"top": "bloodmagic:block/dungeon/dungeon_polished"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "minecraft:block/outer_stairs",
|
||||
"textures": {
|
||||
"side": "bloodmagic:block/dungeon/dungeon_polished",
|
||||
"bottom": "bloodmagic:block/dungeon/dungeon_polished",
|
||||
"top": "bloodmagic:block/dungeon/dungeon_polished"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/wall_inventory",
|
||||
"textures": {
|
||||
"wall": "bloodmagic:block/dungeon/dungeon_polished"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/template_wall_post",
|
||||
"textures": {
|
||||
"wall": "bloodmagic:block/dungeon/dungeon_polished"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/template_wall_side",
|
||||
"textures": {
|
||||
"wall": "bloodmagic:block/dungeon/dungeon_polished"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/template_wall_side_tall",
|
||||
"textures": {
|
||||
"wall": "bloodmagic:block/dungeon/dungeon_polished"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/cube_all",
|
||||
"textures": {
|
||||
"all": "bloodmagic:block/dungeon/dungeon_smallbrick"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/cube_all",
|
||||
"textures": {
|
||||
"all": "bloodmagic:block/dungeon/dungeon_stone"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/cube_mirrored_all",
|
||||
"textures": {
|
||||
"all": "bloodmagic:block/dungeon/dungeon_stone"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/cube_all",
|
||||
"textures": {
|
||||
"all": "bloodmagic:block/dungeon/dungeon_tile"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/cube_all",
|
||||
"textures": {
|
||||
"all": "bloodmagic:block/dungeon/dungeon_tilespecial"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "bloodmagic:block/dungeon_brick1"
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "bloodmagic:block/dungeon_brick2"
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "bloodmagic:block/dungeon_brick3"
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "bloodmagic:block/dungeon_brick1"
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "bloodmagic:block/dungeon_brick_gate"
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "bloodmagic:block/dungeon_brick_stairs"
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "bloodmagic:block/dungeon_brick_wall_inventory"
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "bloodmagic:block/dungeon_eye"
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "bloodmagic:block/dungeon_pillar_cap"
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "bloodmagic:block/dungeon_pillar_center"
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "bloodmagic:block/dungeon_pillar_special"
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "bloodmagic:block/dungeon_polished"
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "bloodmagic:block/dungeon_polished_gate"
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "bloodmagic:block/dungeon_polished_stairs"
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "bloodmagic:block/dungeon_polished_wall_inventory"
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "bloodmagic:block/dungeon_smallbrick"
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "bloodmagic:block/dungeon_stone"
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "bloodmagic:block/dungeon_tile"
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "bloodmagic:block/dungeon_tilespecial"
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue