-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3f61d33
commit 7367b6f
Showing
36 changed files
with
536 additions
and
6 deletions.
There are no files selected for viewing
10 changes: 10 additions & 0 deletions
10
src/main/java/net/dakotapride/garnished/block/AmberRemnantStairsBlock.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package net.dakotapride.garnished.block; | ||
|
||
import net.dakotapride.garnished.registry.GarnishedBlocks; | ||
import net.minecraft.world.level.block.StairBlock; | ||
|
||
public class AmberRemnantStairsBlock extends StairBlock { | ||
public AmberRemnantStairsBlock(Properties properties) { | ||
super(GarnishedBlocks.AMBER_REMNANT_BLOCK.get().defaultBlockState(), properties); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
src/main/resources/assets/garnished/blockstates/amber_remnant_block.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"variants": { | ||
"": { | ||
"model": "garnished:block/amber_remnant_block" | ||
} | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
src/main/resources/assets/garnished/blockstates/amber_remnant_slab.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"variants": { | ||
"type=bottom": { | ||
"model": "garnished:block/amber_remnant_slab" | ||
}, | ||
"type=double": { | ||
"model": "garnished:block/amber_remnant_block" | ||
}, | ||
"type=top": { | ||
"model": "garnished:block/amber_remnant_slab_top" | ||
} | ||
} | ||
} |
209 changes: 209 additions & 0 deletions
209
src/main/resources/assets/garnished/blockstates/amber_remnant_stairs.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,209 @@ | ||
{ | ||
"variants": { | ||
"facing=east,half=bottom,shape=inner_left": { | ||
"model": "garnished:block/amber_remnant_stairs_inner", | ||
"uvlock": true, | ||
"y": 270 | ||
}, | ||
"facing=east,half=bottom,shape=inner_right": { | ||
"model": "garnished:block/amber_remnant_stairs_inner" | ||
}, | ||
"facing=east,half=bottom,shape=outer_left": { | ||
"model": "garnished:block/amber_remnant_stairs_outer", | ||
"uvlock": true, | ||
"y": 270 | ||
}, | ||
"facing=east,half=bottom,shape=outer_right": { | ||
"model": "garnished:block/amber_remnant_stairs_outer" | ||
}, | ||
"facing=east,half=bottom,shape=straight": { | ||
"model": "garnished:block/amber_remnant_stairs" | ||
}, | ||
"facing=east,half=top,shape=inner_left": { | ||
"model": "garnished:block/amber_remnant_stairs_inner", | ||
"uvlock": true, | ||
"x": 180 | ||
}, | ||
"facing=east,half=top,shape=inner_right": { | ||
"model": "garnished:block/amber_remnant_stairs_inner", | ||
"uvlock": true, | ||
"x": 180, | ||
"y": 90 | ||
}, | ||
"facing=east,half=top,shape=outer_left": { | ||
"model": "garnished:block/amber_remnant_stairs_outer", | ||
"uvlock": true, | ||
"x": 180 | ||
}, | ||
"facing=east,half=top,shape=outer_right": { | ||
"model": "garnished:block/amber_remnant_stairs_outer", | ||
"uvlock": true, | ||
"x": 180, | ||
"y": 90 | ||
}, | ||
"facing=east,half=top,shape=straight": { | ||
"model": "garnished:block/amber_remnant_stairs", | ||
"uvlock": true, | ||
"x": 180 | ||
}, | ||
"facing=north,half=bottom,shape=inner_left": { | ||
"model": "garnished:block/amber_remnant_stairs_inner", | ||
"uvlock": true, | ||
"y": 180 | ||
}, | ||
"facing=north,half=bottom,shape=inner_right": { | ||
"model": "garnished:block/amber_remnant_stairs_inner", | ||
"uvlock": true, | ||
"y": 270 | ||
}, | ||
"facing=north,half=bottom,shape=outer_left": { | ||
"model": "garnished:block/amber_remnant_stairs_outer", | ||
"uvlock": true, | ||
"y": 180 | ||
}, | ||
"facing=north,half=bottom,shape=outer_right": { | ||
"model": "garnished:block/amber_remnant_stairs_outer", | ||
"uvlock": true, | ||
"y": 270 | ||
}, | ||
"facing=north,half=bottom,shape=straight": { | ||
"model": "garnished:block/amber_remnant_stairs", | ||
"uvlock": true, | ||
"y": 270 | ||
}, | ||
"facing=north,half=top,shape=inner_left": { | ||
"model": "garnished:block/amber_remnant_stairs_inner", | ||
"uvlock": true, | ||
"x": 180, | ||
"y": 270 | ||
}, | ||
"facing=north,half=top,shape=inner_right": { | ||
"model": "garnished:block/amber_remnant_stairs_inner", | ||
"uvlock": true, | ||
"x": 180 | ||
}, | ||
"facing=north,half=top,shape=outer_left": { | ||
"model": "garnished:block/amber_remnant_stairs_outer", | ||
"uvlock": true, | ||
"x": 180, | ||
"y": 270 | ||
}, | ||
"facing=north,half=top,shape=outer_right": { | ||
"model": "garnished:block/amber_remnant_stairs_outer", | ||
"uvlock": true, | ||
"x": 180 | ||
}, | ||
"facing=north,half=top,shape=straight": { | ||
"model": "garnished:block/amber_remnant_stairs", | ||
"uvlock": true, | ||
"x": 180, | ||
"y": 270 | ||
}, | ||
"facing=south,half=bottom,shape=inner_left": { | ||
"model": "garnished:block/amber_remnant_stairs_inner" | ||
}, | ||
"facing=south,half=bottom,shape=inner_right": { | ||
"model": "garnished:block/amber_remnant_stairs_inner", | ||
"uvlock": true, | ||
"y": 90 | ||
}, | ||
"facing=south,half=bottom,shape=outer_left": { | ||
"model": "garnished:block/amber_remnant_stairs_outer" | ||
}, | ||
"facing=south,half=bottom,shape=outer_right": { | ||
"model": "garnished:block/amber_remnant_stairs_outer", | ||
"uvlock": true, | ||
"y": 90 | ||
}, | ||
"facing=south,half=bottom,shape=straight": { | ||
"model": "garnished:block/amber_remnant_stairs", | ||
"uvlock": true, | ||
"y": 90 | ||
}, | ||
"facing=south,half=top,shape=inner_left": { | ||
"model": "garnished:block/amber_remnant_stairs_inner", | ||
"uvlock": true, | ||
"x": 180, | ||
"y": 90 | ||
}, | ||
"facing=south,half=top,shape=inner_right": { | ||
"model": "garnished:block/amber_remnant_stairs_inner", | ||
"uvlock": true, | ||
"x": 180, | ||
"y": 180 | ||
}, | ||
"facing=south,half=top,shape=outer_left": { | ||
"model": "garnished:block/amber_remnant_stairs_outer", | ||
"uvlock": true, | ||
"x": 180, | ||
"y": 90 | ||
}, | ||
"facing=south,half=top,shape=outer_right": { | ||
"model": "garnished:block/amber_remnant_stairs_outer", | ||
"uvlock": true, | ||
"x": 180, | ||
"y": 180 | ||
}, | ||
"facing=south,half=top,shape=straight": { | ||
"model": "garnished:block/amber_remnant_stairs", | ||
"uvlock": true, | ||
"x": 180, | ||
"y": 90 | ||
}, | ||
"facing=west,half=bottom,shape=inner_left": { | ||
"model": "garnished:block/amber_remnant_stairs_inner", | ||
"uvlock": true, | ||
"y": 90 | ||
}, | ||
"facing=west,half=bottom,shape=inner_right": { | ||
"model": "garnished:block/amber_remnant_stairs_inner", | ||
"uvlock": true, | ||
"y": 180 | ||
}, | ||
"facing=west,half=bottom,shape=outer_left": { | ||
"model": "garnished:block/amber_remnant_stairs_outer", | ||
"uvlock": true, | ||
"y": 90 | ||
}, | ||
"facing=west,half=bottom,shape=outer_right": { | ||
"model": "garnished:block/amber_remnant_stairs_outer", | ||
"uvlock": true, | ||
"y": 180 | ||
}, | ||
"facing=west,half=bottom,shape=straight": { | ||
"model": "garnished:block/amber_remnant_stairs", | ||
"uvlock": true, | ||
"y": 180 | ||
}, | ||
"facing=west,half=top,shape=inner_left": { | ||
"model": "garnished:block/amber_remnant_stairs_inner", | ||
"uvlock": true, | ||
"x": 180, | ||
"y": 180 | ||
}, | ||
"facing=west,half=top,shape=inner_right": { | ||
"model": "garnished:block/amber_remnant_stairs_inner", | ||
"uvlock": true, | ||
"x": 180, | ||
"y": 270 | ||
}, | ||
"facing=west,half=top,shape=outer_left": { | ||
"model": "garnished:block/amber_remnant_stairs_outer", | ||
"uvlock": true, | ||
"x": 180, | ||
"y": 180 | ||
}, | ||
"facing=west,half=top,shape=outer_right": { | ||
"model": "garnished:block/amber_remnant_stairs_outer", | ||
"uvlock": true, | ||
"x": 180, | ||
"y": 270 | ||
}, | ||
"facing=west,half=top,shape=straight": { | ||
"model": "garnished:block/amber_remnant_stairs", | ||
"uvlock": true, | ||
"x": 180, | ||
"y": 180 | ||
} | ||
} | ||
} |
90 changes: 90 additions & 0 deletions
90
src/main/resources/assets/garnished/blockstates/amber_remnant_wall.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
{ | ||
"multipart": [ | ||
{ | ||
"apply": { | ||
"model": "garnished:block/amber_remnant_wall_post" | ||
}, | ||
"when": { | ||
"up": "true" | ||
} | ||
}, | ||
{ | ||
"apply": { | ||
"model": "garnished:block/amber_remnant_wall_side", | ||
"uvlock": true | ||
}, | ||
"when": { | ||
"north": "low" | ||
} | ||
}, | ||
{ | ||
"apply": { | ||
"model": "garnished:block/amber_remnant_wall_side", | ||
"uvlock": true, | ||
"y": 90 | ||
}, | ||
"when": { | ||
"east": "low" | ||
} | ||
}, | ||
{ | ||
"apply": { | ||
"model": "garnished:block/amber_remnant_wall_side", | ||
"uvlock": true, | ||
"y": 180 | ||
}, | ||
"when": { | ||
"south": "low" | ||
} | ||
}, | ||
{ | ||
"apply": { | ||
"model": "garnished:block/amber_remnant_wall_side", | ||
"uvlock": true, | ||
"y": 270 | ||
}, | ||
"when": { | ||
"west": "low" | ||
} | ||
}, | ||
{ | ||
"apply": { | ||
"model": "garnished:block/amber_remnant_wall_side_tall", | ||
"uvlock": true | ||
}, | ||
"when": { | ||
"north": "tall" | ||
} | ||
}, | ||
{ | ||
"apply": { | ||
"model": "garnished:block/amber_remnant_wall_side_tall", | ||
"uvlock": true, | ||
"y": 90 | ||
}, | ||
"when": { | ||
"east": "tall" | ||
} | ||
}, | ||
{ | ||
"apply": { | ||
"model": "garnished:block/amber_remnant_wall_side_tall", | ||
"uvlock": true, | ||
"y": 180 | ||
}, | ||
"when": { | ||
"south": "tall" | ||
} | ||
}, | ||
{ | ||
"apply": { | ||
"model": "garnished:block/amber_remnant_wall_side_tall", | ||
"uvlock": true, | ||
"y": 270 | ||
}, | ||
"when": { | ||
"west": "tall" | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.