9
0
mirror of https://github.com/IrisDimensions/earthworld.git synced 2025-12-19 14:59:24 +00:00

v3800 Alpha!

MAJOR CHANGES V3800 Alpha
- Cursed Region! revamped!
- TrailRuins!
- No tiny birch/etc
- Improved Structure spawning
- Added Camels!
This commit is contained in:
RePixelatedMC
2023-10-12 12:30:18 +02:00
parent 21fad3f31f
commit adf0188191
47 changed files with 457 additions and 533 deletions

View File

@@ -52,17 +52,16 @@
"objects": [{ "objects": [{
"place": [ "place": [
"trees/darkoak/medgeneric1", "trees/mixed/dotree1",
"trees/darkoak/medgeneric2", "trees/mixed/dotree2",
"trees/darkoak/medgeneric3", "trees/mixed/dotree3",
"trees/darkoak/medgeneric4", "trees/mixed/dotree4",
"trees/darkoak/medgeneric5", "trees/mixed/dotree5",
"trees/darkoak/medgeneric6", "trees/mixed/dotree6",
"trees/darkoak/medgeneric7", "trees/mixed/dotree7",
"trees/darkoak/medgeneric8", "trees/mixed/dotree8",
"trees/darkoak/medgeneric9" "trees/mixed/dotree9",
"trees/mixed/dotree10"
], ],
"edit": [ "edit": [
@@ -78,7 +77,8 @@
], ],
"carvingSupport": "SURFACE_ONLY", "carvingSupport": "SURFACE_ONLY",
"chance": 0.25, "chance": 0.85,
"density": 1,
"mode": "MIN_HEIGHT", "mode": "MIN_HEIGHT",
"rotation": { "rotation": {
"yAxis": { "yAxis": {

View File

@@ -0,0 +1,143 @@
{
"name": "Cursed tall forest",
"derivative": "DEEP_DARK",
"vanillaDerivative": "DEEP_DARK",
"color": "#404040",
"entitySpawners": [
"corrupted/cursed-forest"
],
"jigsawStructures": [
{
"structure": "woodland-mansion",
"rarity": 1200
}
],
"customDerivitives": [
{
"category": "plains",
"id": "cursedforest",
"ambientParticle":{
"particle": "ASH",
"rarity": 3
},
"skyColor": "#111111",
"fogColor": "#111111",
"waterColor": "#660000",
"waterFogColor": "#660000",
"downfallType": "rain",
"grassColor": "#222222",
"foliageColor": "#444444"
}
],
"effects": [
{
"sound": "MUSIC_NETHER_SOUL_SAND_VALLEY",
"soundDistance": 12,
"volume": 3.6,
"chance": 1,
"interval": 140000
},
{
"sound": "ENTITY_GHAST_SCREAM",
"soundDistance": 12,
"volume": 6.6,
"chance": 1,
"interval": 140000
}
],
"generators": [{
"generator": "mountain",
"max": 37,
"min": 20
}],
"layers": [
{
"palette": [{"block": "minecraft:grass_block"}],
"maxHeight": 1,
"slopeCondition": {"maximumSlope": 4}
},
{
"palette": [{"block": "minecraft:deepslate"}],
"maxHeight": 12
}],
"wall": {"palette": [
{"block": "minecraft:deepslate"}
]},
"objects": [{
"place": [
"trees/mixed/AmyLarge1",
"trees/mixed/AmyLarge2",
"trees/mixed/AmyLarge3",
"trees/mixed/AmyLarge4",
"trees/mixed/AmyLarge5",
"trees/mixed/AmyLarge6",
"trees/mixed/AmyLarge7",
"trees/mixed/AmyLarge8"
],
"carvingSupport": "SURFACE_ONLY",
"density": 1,
"chance": 0.25,
"mode": "FAST_STILT",
"rotation": {
"yAxis": {
"min": 0,
"max": 270,
"interval": 90,
"enabled": true
},
"enabled": true
}
},
{
"place": [
"clutter/arbusto1",
"clutter/arbusto2",
"clutter/arbusto3",
"clutter/arbusto4",
"clutter/arbusto5"
],
"carvingSupport": "SURFACE_ONLY",
"chance": 0.15,
"mode": "FAST_STILT",
"rotation": {
"yAxis": {
"min": 0,
"max": 270,
"interval": 90,
"enabled": true
},
"enabled": true
}
}
],
"decorators": [
{
"chance": 0.01,
"palette": [{"block": "minecraft:tall_grass"}]
},
{
"chance": 0.5,
"palette": [{"block": "minecraft:grass"}]
},
{
"chance": 0.025,
"palette": [{"block": "minecraft:cobweb"}]
},
{
"chance": 0.015,
"palette": [{"block": "minecraft:wither_rose"}]
}
]
}

View File

@@ -100,6 +100,7 @@
"carvingSupport": "SURFACE_ONLY", "carvingSupport": "SURFACE_ONLY",
"chance": 0.25, "chance": 0.25,
"density": 1,
"mode": "FAST_MIN_HEIGHT", "mode": "FAST_MIN_HEIGHT",
"rotation": { "rotation": {
"yAxis": { "yAxis": {

View File

@@ -7,7 +7,8 @@
"corrupted/cursed-forest" "corrupted/cursed-forest"
], ],
"children": [ "children": [
"cursed/cursed-forest" "cursed/cursed-forest",
"cursed/cursed-forest-tall"
], ],
"childShrinkFactor": 1, "childShrinkFactor": 1,
"childStyle":{ "childStyle":{

View File

@@ -16,7 +16,7 @@
}, },
{ {
"structure": "pyramid-desert", "structure": "pyramid-desert",
"rarity": 1500 "rarity": 1750
} }
], ],

View File

@@ -9,6 +9,12 @@
"ERODED_BADLANDS", "ERODED_BADLANDS",
"ERODED_BADLANDS" "ERODED_BADLANDS"
], ],
"jigsawStructures": [
{
"structure": "village-savanna",
"rarity": 1200
}
],
"children": [ "children": [
"mesa/valleys", "mesa/valleys",
"mesa/dark", "mesa/dark",

View File

@@ -10,6 +10,12 @@
"max": 98, "max": 98,
"generator": "cracked-cliffs" "generator": "cracked-cliffs"
}], }],
"jigsawStructures": [
{
"structure": "village-savanna",
"rarity": 1200
}
],
"biomeStyle": {"style": "SIMPLEX"}, "biomeStyle": {"style": "SIMPLEX"},
"layers": [ "layers": [
{ {

View File

@@ -12,6 +12,12 @@
"waterColor": "#33CB99", "waterColor": "#33CB99",
"downfallType": "none" "downfallType": "none"
}], }],
"jigsawStructures": [
{
"structure": "village-savanna",
"rarity": 1200
}
],
"generators": [{ "generators": [{
"min": 4, "min": 4,
"max": 7, "max": 7,

View File

@@ -8,6 +8,12 @@
"SAVANNA", "SAVANNA",
"DESERT" "DESERT"
], ],
"jigsawStructures": [
{
"structure": "village-savanna",
"rarity": 1200
}
],
"customDerivitives": [{ "customDerivitives": [{
"category": "savanna", "category": "savanna",
"id": "savanna_forest", "id": "savanna_forest",

View File

@@ -7,6 +7,16 @@
"children": [ "children": [
"temperate/birch-thin", "temperate/birch-thin",
"temperate/birch-forest-extended" "temperate/birch-forest-extended"
],
"jigsawStructures": [
{
"structure": "pillager-outpost",
"rarity": 800
},
{
"structure": "village-plains",
"rarity": 1200
}
], ],
"generators": [ "generators": [
{ {

View File

@@ -13,6 +13,16 @@
{"block": "minecraft:stone"}, {"block": "minecraft:stone"},
{"block": "minecraft:cobblestone"} {"block": "minecraft:cobblestone"}
]}, ]},
"jigsawStructures": [
{
"structure": "pillager-outpost",
"rarity": 800
},
{
"structure": "village-plains",
"rarity": 1200
}
],
"objects": [{ "objects": [{
"place": [ "place": [
"trees/mixed/pollup1", "trees/mixed/pollup1",

View File

@@ -7,6 +7,16 @@
"children": [ "children": [
"temperate/oak-denmyre", "temperate/oak-denmyre",
"temperate/combo-forest-extended" "temperate/combo-forest-extended"
],
"jigsawStructures": [
{
"structure": "pillager-outpost",
"rarity": 800
},
{
"structure": "village-plains",
"rarity": 1200
}
], ],
"generators": [{ "generators": [{
"min": 5, "min": 5,

View File

@@ -11,6 +11,16 @@
"grassColor": "#48A620", "grassColor": "#48A620",
"category": "forest" "category": "forest"
}], }],
"jigsawStructures": [
{
"structure": "pillager-outpost",
"rarity": 800
},
{
"structure": "village-plains",
"rarity": 1200
}
],
"children": ["temperate/flower-forest-extended"], "children": ["temperate/flower-forest-extended"],
"generators": [{ "generators": [{
"min": 4, "min": 4,

View File

@@ -12,6 +12,16 @@
"downfallType": "rain", "downfallType": "rain",
"grassColor": "#83BB6D" "grassColor": "#83BB6D"
}], }],
"jigsawStructures": [
{
"structure": "pillager-outpost",
"rarity": 800
},
{
"structure": "village-plains",
"rarity": 1200
}
],
"generators": [{ "generators": [{
"min": 5, "min": 5,
"max": 12, "max": 12,

View File

@@ -9,6 +9,16 @@
"max": 12, "max": 12,
"generator": "plain" "generator": "plain"
}], }],
"jigsawStructures": [
{
"structure": "pillager-outpost",
"rarity": 800
},
{
"structure": "village-plains",
"rarity": 1200
}
],
"wall": { "wall": {
"style": {"style": "STATIC"}, "style": {"style": "STATIC"},
"palette": [ "palette": [

View File

@@ -10,6 +10,16 @@
"grassColor": "#77A620", "grassColor": "#77A620",
"category": "forest" "category": "forest"
}], }],
"jigsawStructures": [
{
"structure": "pillager-outpost",
"rarity": 800
},
{
"structure": "village-plains",
"rarity": 1200
}
],
"carving":{ "carving":{
"caves": [ "caves": [
{ {

View File

@@ -10,6 +10,7 @@
"grassColor": "#77A620", "grassColor": "#77A620",
"category": "forest" "category": "forest"
}], }],
"children": ["temperate/oak-forest-extended"], "children": ["temperate/oak-forest-extended"],
"generators": [ "generators": [
{ {

View File

@@ -22,6 +22,16 @@
"grassColor": "#64A522", "grassColor": "#64A522",
"category": "forest" "category": "forest"
} }
],
"jigsawStructures": [
{
"structure": "pillager-outpost",
"rarity": 800
},
{
"structure": "village-plains",
"rarity": 1200
}
], ],
"generators": [{ "generators": [{
"min": 4, "min": 4,

View File

@@ -20,6 +20,16 @@
"grassColor": "#64A522", "grassColor": "#64A522",
"category": "forest" "category": "forest"
} }
],
"jigsawStructures": [
{
"structure": "pillager-outpost",
"rarity": 800
},
{
"structure": "village-plains",
"rarity": 1200
}
], ],
"generators": [{ "generators": [{
"min": 4, "min": 4,

View File

@@ -16,7 +16,7 @@
}, },
{ {
"structure": "village-plains", "structure": "village-plains",
"rarity": 1200 "rarity": 800
}, },
{ {
"structure": "ruins/ruin3", "structure": "ruins/ruin3",
@@ -28,6 +28,7 @@
{"block": "minecraft:stone"}, {"block": "minecraft:stone"},
{"block": "minecraft:andesite"} {"block": "minecraft:andesite"}
]}, ]},
"layers": [ "layers": [
{"palette": [{"block": "minecraft:grass_block"}]}, {"palette": [{"block": "minecraft:grass_block"}]},
{ {

View File

@@ -5,6 +5,16 @@
"derivative": "FLOWER_FOREST", "derivative": "FLOWER_FOREST",
"vanillaDerivative": "FOREST", "vanillaDerivative": "FOREST",
"biomeScatter": ["BIRCH_FOREST"], "biomeScatter": ["BIRCH_FOREST"],
"jigsawStructures": [
{
"structure": "pillager-outpost",
"rarity": 800
},
{
"structure": "village-plains",
"rarity": 1200
}
],
"customDerivitives": [ "customDerivitives": [
{ {

View File

@@ -18,7 +18,7 @@
}, },
{ {
"structure": "village-plains", "structure": "village-plains",
"rarity": 1200 "rarity": 800
} }
], ],
"generators": [{ "generators": [{

View File

@@ -1,203 +0,0 @@
{
"name": "Tiny Birch",
"derivative": "BIRCH_FOREST",
"vanillaDerivative": "BIRCH_FOREST",
"layers": [{
"palette": [{"block": "minecraft:grass_block"}],
"maxHeight": 1,
"slopeCondition": {"maximumSlope": 4}
}],
"wall": {"palette": [
{"block": "minecraft:andesite"},
{"block": "minecraft:stone"},
{"block": "minecraft:cobblestone"}
]},
"objects": [{
"place": [
"trees/birch/arid1",
"trees/birch/arid2",
"trees/birch/arid4",
"trees/birch/arid5",
"trees/birch/arid6",
"trees/birch/arid7"
],
"carvingSupport": "SURFACE_ONLY",
"translate":{
"y": 1
},
"chance": 1,
"mode": "CENTER_STILT",
"stiltSettings":{"yMax": 4},
"rotation": {
"yAxis": {
"min": 0,
"max": 270,
"interval": 90,
"enabled": true
},
"enabled": true
}
}
],
"decorators": [
{
"chance": 0.2,
"variance": {
"style": "CELLULAR",
"zoom": 0.25,
"fracture": {
"style": "SIMPLEX",
"zoom": 0.2,
"multiplier": 10
}
},
"style": {
"style": "SIMPLEX",
"zoom": 0.2,
"fracture": {
"style": "STATIC",
"multiplier": 8
}
},
"palette": [
{"block": "minecraft:dandelion"},
{"block": "minecraft:poppy"},
{"block": "minecraft:blue_orchid"},
{"block": "minecraft:allium"},
{"block": "minecraft:azure_bluet"},
{"block": "minecraft:red_tulip"},
{"block": "minecraft:orange_tulip"},
{"block": "minecraft:white_tulip"},
{"block": "minecraft:pink_tulip"},
{"block": "minecraft:oxeye_daisy"},
{"block": "minecraft:cornflower"},
{"block": "minecraft:lily_of_the_valley"}
]
},
{
"chance": 0.01,
"palette": [{"block": "minecraft:tall_grass"}]
},
{
"chance": 0.5,
"palette": [{"block": "minecraft:grass"}]
},
{
"stackMin": 1,
"stackMax": 7,
"chance": 0.015,
"forcePlace": false,
"variance": {"style": "STATIC"},
"palette": [
{
"data": {
"stage": 0,
"age": 0,
"leaves": "none"
},
"block": "minecraft:bamboo"
},
{
"data": {
"stage": 1,
"age": 0,
"leaves": "none"
},
"block": "minecraft:bamboo"
},
{
"data": {
"stage": 0,
"age": 1,
"leaves": "none"
},
"block": "minecraft:bamboo"
},
{
"data": {
"stage": 1,
"age": 1,
"leaves": "none"
},
"block": "minecraft:bamboo"
},
{
"data": {
"stage": 0,
"age": 0,
"leaves": "small"
},
"block": "minecraft:bamboo"
},
{
"data": {
"stage": 1,
"age": 0,
"leaves": "small"
},
"block": "minecraft:bamboo"
},
{
"data": {
"stage": 0,
"age": 1,
"leaves": "small"
},
"block": "minecraft:bamboo"
},
{
"data": {
"stage": 1,
"age": 1,
"leaves": "small"
},
"block": "minecraft:bamboo"
},
{
"data": {
"stage": 0,
"age": 0,
"leaves": "large"
},
"block": "minecraft:bamboo"
},
{
"data": {
"stage": 1,
"age": 0,
"leaves": "large"
},
"block": "minecraft:bamboo"
},
{
"data": {
"stage": 0,
"age": 1,
"leaves": "large"
},
"block": "minecraft:bamboo"
},
{
"data": {
"stage": 1,
"age": 1,
"leaves": "large"
},
"block": "minecraft:bamboo"
}
],
"style": {"style": "STATIC"}
}
],
"generators": [{
"generator": "mountain",
"max": 10,
"min": -15
}]
}

View File

@@ -1,202 +0,0 @@
{
"name": "Tiny Plains",
"derivative": "PLAINS",
"vanillaDerivative": "PLAINS",
"layers": [{
"palette": [{"block": "minecraft:grass_block"}],
"maxHeight": 1,
"slopeCondition": {"maximumSlope": 4}
}],
"wall": {"palette": [
{"block": "minecraft:andesite"},
{"block": "minecraft:stone"},
{"block": "minecraft:cobblestone"}
]},
"objects": [{
"place": [
"trees/oak/arid1",
"trees/oak/arid2",
"trees/oak/arid4",
"trees/oak/arid5",
"trees/oak/arid6",
"trees/oak/arid7"
],
"carvingSupport": "SURFACE_ONLY",
"chance": 1,
"mode": "CENTER_STILT",
"translate":{
"y": 1
},
"stiltSettings":{"yMax": 4},
"rotation": {
"yAxis": {
"min": 0,
"max": 270,
"interval": 90,
"enabled": true
},
"enabled": true
}
}
],
"decorators": [
{
"chance": 0.2,
"variance": {
"style": "CELLULAR",
"zoom": 0.25,
"fracture": {
"style": "SIMPLEX",
"zoom": 0.2,
"multiplier": 10
}
},
"style": {
"style": "SIMPLEX",
"zoom": 0.2,
"fracture": {
"style": "STATIC",
"multiplier": 8
}
},
"palette": [
{"block": "minecraft:dandelion"},
{"block": "minecraft:poppy"},
{"block": "minecraft:blue_orchid"},
{"block": "minecraft:allium"},
{"block": "minecraft:azure_bluet"},
{"block": "minecraft:red_tulip"},
{"block": "minecraft:orange_tulip"},
{"block": "minecraft:white_tulip"},
{"block": "minecraft:pink_tulip"},
{"block": "minecraft:oxeye_daisy"},
{"block": "minecraft:cornflower"},
{"block": "minecraft:lily_of_the_valley"}
]
},
{
"chance": 0.01,
"palette": [{"block": "minecraft:tall_grass"}]
},
{
"chance": 0.5,
"palette": [{"block": "minecraft:grass"}]
},
{
"stackMin": 1,
"stackMax": 7,
"chance": 0.015,
"forcePlace": false,
"variance": {"style": "STATIC"},
"palette": [
{
"data": {
"stage": 0,
"age": 0,
"leaves": "none"
},
"block": "minecraft:bamboo"
},
{
"data": {
"stage": 1,
"age": 0,
"leaves": "none"
},
"block": "minecraft:bamboo"
},
{
"data": {
"stage": 0,
"age": 1,
"leaves": "none"
},
"block": "minecraft:bamboo"
},
{
"data": {
"stage": 1,
"age": 1,
"leaves": "none"
},
"block": "minecraft:bamboo"
},
{
"data": {
"stage": 0,
"age": 0,
"leaves": "small"
},
"block": "minecraft:bamboo"
},
{
"data": {
"stage": 1,
"age": 0,
"leaves": "small"
},
"block": "minecraft:bamboo"
},
{
"data": {
"stage": 0,
"age": 1,
"leaves": "small"
},
"block": "minecraft:bamboo"
},
{
"data": {
"stage": 1,
"age": 1,
"leaves": "small"
},
"block": "minecraft:bamboo"
},
{
"data": {
"stage": 0,
"age": 0,
"leaves": "large"
},
"block": "minecraft:bamboo"
},
{
"data": {
"stage": 1,
"age": 0,
"leaves": "large"
},
"block": "minecraft:bamboo"
},
{
"data": {
"stage": 0,
"age": 1,
"leaves": "large"
},
"block": "minecraft:bamboo"
},
{
"data": {
"stage": 1,
"age": 1,
"leaves": "large"
},
"block": "minecraft:bamboo"
}
],
"style": {"style": "STATIC"}
}
],
"generators": [{
"generator": "mountain",
"max": 10,
"min": -15
}]
}

View File

@@ -1,104 +0,0 @@
{
"name": "Tiny Spruce",
"derivative": "FOREST",
"vanillaDerivative": "FOREST",
"customDerivitives": [{
"category": "forest",
"id": "tundra_iny_spruce",
"grassColor": "#7BA13C",
"waterColor": "#80B4C6",
"waterFogColor": "#80B4C6",
"fogColor": "#8091C6"
}],
"layers": [{
"palette": [ {"block": "minecraft:grass_block"}],
"maxHeight": 1,
"slopeCondition": {"maximumSlope": 4}
}],
"wall": {"palette": [
{"block": "minecraft:andesite"},
{"block": "minecraft:stone"},
{"block": "minecraft:cobblestone"}
]},
"objects": [
{
"place": [
"trees/spruce/aridgeneric1",
"trees/spruce/aridgeneric2",
"trees/spruce/aridgeneric3",
"trees/spruce/aridgeneric4",
"trees/spruce/aridgeneric5",
"trees/spruce/aridpine1",
"trees/spruce/aridpine2",
"trees/spruce/aridpine3",
"trees/spruce/aridpine4",
"trees/spruce/aridpine5"
],
"carvingSupport": "SURFACE_ONLY",
"chance": 1,
"mode": "CENTER_STILT",
"stiltSettings":{"yMax": 4, "yRand": 1},
"rotation": {
"yAxis": {
"min": 0,
"max": 270,
"interval": 90,
"enabled": true
},
"enabled": true
}
}
],
"decorators": [
{
"chance": 0.05,
"variance": {
"style": "CELLULAR",
"zoom": 0.25,
"fracture": {
"style": "SIMPLEX",
"zoom": 0.2,
"multiplier": 10
}
},
"style": {
"style": "SIMPLEX",
"zoom": 0.2,
"fracture": {
"style": "STATIC",
"multiplier": 8
}
},
"palette": [
{"block": "minecraft:dandelion"},
{"block": "minecraft:poppy"},
{"block": "minecraft:blue_orchid"},
{"block": "minecraft:azure_bluet"},
{"block": "minecraft:red_tulip"},
{"block": "minecraft:orange_tulip"},
{"block": "minecraft:white_tulip"},
{"block": "minecraft:oxeye_daisy"},
{"block": "minecraft:cornflower"},
{"block": "minecraft:lily_of_the_valley"}
]
},
{
"chance": 0.1,
"palette": [{"block": "minecraft:fern"}]
},
{
"chance": 0.02,
"palette": [{"block": "minecraft:large_fern"}]
}
],
"generators": [{
"generator": "mountain",
"max": 10,
"min": -15
}]
}

View File

@@ -61,7 +61,8 @@
"temperate", "temperate",
"tropical", "tropical",
"swamp", "swamp",
"tundra" "tundra",
"prototype/cursed"
], ],
"seaBiomeStyle": { "seaBiomeStyle": {
@@ -240,7 +241,7 @@
{ {
"minHeight": 1, "minHeight": 1,
"maxPerChunk": 128, "maxPerChunk": 128,
"maxHeight": 33, "maxHeight": 64,
"minPerChunk": 128, "minPerChunk": 128,
"minSize": 8, "minSize": 8,
"maxSize": 4, "maxSize": 4,

View File

@@ -0,0 +1 @@
{"type": "CAMEL"}

View File

@@ -0,0 +1,20 @@
{
"object": "jigsaw/trail-ruins/trail-ruin1",
"placementOptions": {
"translate":{
"y": -16
},
"mode": "PAINT",
"carvingSupport": "SURFACE_ONLY",
"onwater": false,
"rotation":{
"yAxis":{
"max": 270,
"min": 0,
"enabled": true
},
"enabled": true
}
}
}

View File

@@ -0,0 +1,20 @@
{
"object": "jigsaw/trail-ruins/trail-ruin2",
"placementOptions": {
"translate":{
"y": -16
},
"mode": "PAINT",
"carvingSupport": "SURFACE_ONLY",
"onwater": false,
"rotation":{
"yAxis":{
"max": 270,
"min": 0,
"enabled": true
},
"enabled": true
}
}
}

View File

@@ -0,0 +1,20 @@
{
"object": "jigsaw/trail-ruins/trail-ruin3",
"placementOptions": {
"translate":{
"y": -16
},
"mode": "PAINT",
"carvingSupport": "SURFACE_ONLY",
"onwater": false,
"rotation":{
"yAxis":{
"max": 270,
"min": 0,
"enabled": true
},
"enabled": true
}
}
}

View File

@@ -0,0 +1,20 @@
{
"object": "jigsaw/trail-ruins/trail-ruin4",
"placementOptions": {
"translate":{
"y": -16
},
"mode": "PAINT",
"carvingSupport": "SURFACE_ONLY",
"onwater": false,
"rotation":{
"yAxis":{
"max": 270,
"min": 0,
"enabled": true
},
"enabled": true
}
}
}

View File

@@ -0,0 +1,20 @@
{
"object": "jigsaw/trail-ruins/trail-ruin5",
"placementOptions": {
"translate":{
"y": -16
},
"mode": "PAINT",
"carvingSupport": "SURFACE_ONLY",
"onwater": false,
"rotation":{
"yAxis":{
"max": 270,
"min": 0,
"enabled": true
},
"enabled": true
}
}
}

View File

@@ -0,0 +1,20 @@
{
"object": "jigsaw/trail-ruins/trail-ruin6",
"placementOptions": {
"translate":{
"y": -16
},
"mode": "PAINT",
"carvingSupport": "SURFACE_ONLY",
"onwater": false,
"rotation":{
"yAxis":{
"max": 270,
"min": 0,
"enabled": true
},
"enabled": true
}
}
}

View File

@@ -0,0 +1,20 @@
{
"object": "jigsaw/trail-ruins/trail-ruin7",
"placementOptions": {
"translate":{
"y": -16
},
"mode": "PAINT",
"carvingSupport": "SURFACE_ONLY",
"onwater": false,
"rotation":{
"yAxis":{
"max": 270,
"min": 0,
"enabled": true
},
"enabled": true
}
}
}

View File

@@ -25,6 +25,11 @@
"interval": 0 "interval": 0
} }
}, },
"clamp":{
"maximumHeight": 110,
"minimumHeight": 64
},
"mode": "MIN_HEIGHT", "mode": "MIN_HEIGHT",
"edit": [{ "edit": [{
"find": [{"block": "minecraft:glass"}], "find": [{"block": "minecraft:glass"}],

View File

@@ -0,0 +1,10 @@
{
"pieces": [
"trail-ruins/trail-ruins1",
"trail-ruins/trail-ruins2",
"trail-ruins/trail-ruins3",
"trail-ruins/trail-ruins4",
"trail-ruins/trail-ruins5",
"trail-ruins/trail-ruins6"
]
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -22,6 +22,10 @@
"carving/rocky-cavebiome" "carving/rocky-cavebiome"
], ],
"jigsawStructures": [ "jigsawStructures": [
{
"structure": "trail-ruins",
"rarity": 1000
},
{ {
"structure": "ruined-portal", "structure": "ruined-portal",
"rarity": 1200 "rarity": 1200

View File

@@ -20,14 +20,11 @@
"temperate/osaka-red-forest", "temperate/osaka-red-forest",
"mountain/Cute_Cliffs", "mountain/Cute_Cliffs",
"mountain/Cute_Cliffs", "mountain/Cute_Cliffs",
"temperate/tinyplains",
"temperate/tinyplains",
"temperate/cherry-blossom-forest", "temperate/cherry-blossom-forest",
"temperate/roughplains", "temperate/roughplains",
"temperate/calmplains", "temperate/calmplains",
"temperate/fancyplains", "temperate/fancyplains",
"temperate/shattered-plains", "temperate/shattered-plains",
"temperate/tinybirch",
"temperate/sakura-forest", "temperate/sakura-forest",
"temperate/oak-forest-flat", "temperate/oak-forest-flat",
"temperate/croak" "temperate/croak"

View File

@@ -19,9 +19,7 @@
"tundra/autumn", "tundra/autumn",
"mountain/mountain", "mountain/mountain",
"tundra/ether", "tundra/ether",
"tundra/magic-forest", "tundra/magic-forest"
"tundra/tinyspruce",
"tundra/tinyspruce"
], ],
"caveBiomes": [ "caveBiomes": [
"carving/rocky-cavebiome" "carving/rocky-cavebiome"

View File

@@ -12,6 +12,12 @@
"energyMultiplier": 0.85, "energyMultiplier": 0.85,
"weather": "NONE", "weather": "NONE",
"spawns": [ "spawns": [
{
"entity": "standard/passive/camel",
"maxSpawns": 4,
"minSpawns": 1,
"rarity": 8
},
{ {
"entity": "standard/passive/chicken", "entity": "standard/passive/chicken",
"maxSpawns": 4, "maxSpawns": 4,