end update vol 1
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "szar:block/chorus_endstone"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "szar:block/small_chorus"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -198,5 +198,8 @@
|
||||
"block.szar.blueprint_trapdoor": "Blueprint Trapdoor",
|
||||
"block.szar.blueprint_wall": "Blueprint Wall",
|
||||
"block.szar.blueprint_fence": "Blueprint Fence",
|
||||
"item.szar.blueprint": "Blueprint"
|
||||
"item.szar.blueprint": "Blueprint",
|
||||
|
||||
"block.szar.chorus_endstone": "Chorus EndStone",
|
||||
"block.szar.small_chorus": "Small Chorus"
|
||||
}
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"parent": "minecraft:block/cube_bottom_top",
|
||||
"textures": {
|
||||
"side": "szar:block/end_stone_grass",
|
||||
"bottom": "szar:block/end_stone",
|
||||
"top": "szar:block/chorus_top"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "block/cross",
|
||||
"textures": {
|
||||
"cross": "szar:block/small_chorus"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"parent": "szar:block/chorus_endstone"
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "minecraft:item/generated",
|
||||
"textures": {
|
||||
"layer0": "szar:block/small_chorus"
|
||||
}
|
||||
}
|
||||
BIN
src/main/resources/assets/szar/textures/block/chorus_flower.png
Normal file
|
After Width: | Height: | Size: 325 B |
|
After Width: | Height: | Size: 328 B |
BIN
src/main/resources/assets/szar/textures/block/chorus_plant.png
Normal file
|
After Width: | Height: | Size: 300 B |
BIN
src/main/resources/assets/szar/textures/block/chorus_shuffle.png
Normal file
|
After Width: | Height: | Size: 604 B |
|
After Width: | Height: | Size: 664 B |
BIN
src/main/resources/assets/szar/textures/block/chorus_top.png
Normal file
|
After Width: | Height: | Size: 645 B |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 823 B |
BIN
src/main/resources/assets/szar/textures/block/choruscolor.png
Normal file
|
After Width: | Height: | Size: 904 B |
BIN
src/main/resources/assets/szar/textures/block/end_stone.png
Normal file
|
After Width: | Height: | Size: 270 B |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 177 B |
|
After Width: | Height: | Size: 560 B |
|
After Width: | Height: | Size: 795 B |
BIN
src/main/resources/assets/szar/textures/block/small_chorus.png
Normal file
|
After Width: | Height: | Size: 612 B |
7
src/main/resources/data/szar/tags/blocks/endstones.json
Normal file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"replace": false,
|
||||
"values": [
|
||||
"minecraft:end_stone",
|
||||
"szar:chorus_endstone"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,30 @@
|
||||
{
|
||||
"type": "minecraft:random_patch",
|
||||
"config": {
|
||||
"feature": {
|
||||
"feature": {
|
||||
"type": "minecraft:simple_block",
|
||||
"config": {
|
||||
"to_place": {
|
||||
"type": "minecraft:simple_state_provider",
|
||||
"state": {
|
||||
"Name": "szar:small_chorus_block"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"placement": [
|
||||
{
|
||||
"type": "minecraft:block_predicate_filter",
|
||||
"predicate": {
|
||||
"type": "minecraft:matching_blocks",
|
||||
"blocks": "minecraft:air"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"tries": 32,
|
||||
"xz_spread": 7,
|
||||
"y_spread": 3
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"feature": "szar:small_chorus",
|
||||
"placement": [
|
||||
{ "type": "minecraft:count", "count": 5 },
|
||||
{ "type": "minecraft:in_square" },
|
||||
{ "type": "minecraft:heightmap", "heightmap": "WORLD_SURFACE_WG" },
|
||||
{ "type": "minecraft:biome" }
|
||||
]
|
||||
}
|
||||
@@ -4,6 +4,8 @@
|
||||
"package": "dev.tggamesyt.szar.mixin",
|
||||
"compatibilityLevel": "JAVA_17",
|
||||
"mixins": [
|
||||
"ChorusFlowerBlockMixin",
|
||||
"ChorusPlantBlockMixin",
|
||||
"CraftingScreenHandlerMixin",
|
||||
"CraftingScreenHandlerMixin2",
|
||||
"EntityCollisionMixin",
|
||||
|
||||