From dc532653d1435b23d3d2e5377581ba978b1adb31 Mon Sep 17 00:00:00 2001 From: Brian Fopiano Date: Fri, 10 Sep 2021 14:56:54 -0700 Subject: [PATCH 01/30] no more rock spikes --- biomes/carving/rocky.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/biomes/carving/rocky.json b/biomes/carving/rocky.json index 4a497054..b6fd3296 100644 --- a/biomes/carving/rocky.json +++ b/biomes/carving/rocky.json @@ -49,7 +49,7 @@ "scaleStack": true, "stackMin": 10, "stackMax": 90, - "absoluteMaxStack": 15, + "absoluteMaxStack": 5, "palette": [ {"block": "minecraft:stone"}, {"block": "minecraft:andesite"} From 6372cc9b9e1568cdf56d9c426e23ee2338512f56 Mon Sep 17 00:00:00 2001 From: Brian Fopiano Date: Fri, 10 Sep 2021 14:57:14 -0700 Subject: [PATCH 02/30] removed decorators in the desert --- biomes/carving/red-sandstone.json | 14 +------------- biomes/carving/sandstone.json | 14 +------------- 2 files changed, 2 insertions(+), 26 deletions(-) diff --git a/biomes/carving/red-sandstone.json b/biomes/carving/red-sandstone.json index 9e3f300e..c8e130b4 100644 --- a/biomes/carving/red-sandstone.json +++ b/biomes/carving/red-sandstone.json @@ -22,17 +22,5 @@ "weight": 8 } ] - }], - "decorators": [ - { - "chance": 0.03, - "stackMin": 1, - "stackMax": 3, - "palette": [{"block": "minecraft:cactus"}] - }, - { - "chance": 0.01, - "palette": [{"block": "minecraft:dead_bush"}] - } - ] + }] } diff --git a/biomes/carving/sandstone.json b/biomes/carving/sandstone.json index f93f9b61..d57e1b72 100644 --- a/biomes/carving/sandstone.json +++ b/biomes/carving/sandstone.json @@ -25,17 +25,5 @@ "weight": 8 } ] - }], - "decorators": [ - { - "chance": 0.03, - "stackMin": 1, - "stackMax": 3, - "palette": [{"block": "minecraft:cactus"}] - }, - { - "chance": 0.02, - "palette": [{"block": "minecraft:dead_bush"}] - } - ] + }] } From 8725fb6467a0f1a959e30c616faf2bef1a0d7d13 Mon Sep 17 00:00:00 2001 From: Brian Fopiano Date: Fri, 10 Sep 2021 15:01:30 -0700 Subject: [PATCH 03/30] Re-added ranges that make sense because i tested them because i don't want 20 chunks filled with pillagers personally --- jigsaw-structures/desert-pyramid.json | 1 + jigsaw-structures/jungle-pyramid.json | 1 + jigsaw-structures/pillager_outpost.json | 1 + 3 files changed, 3 insertions(+) diff --git a/jigsaw-structures/desert-pyramid.json b/jigsaw-structures/desert-pyramid.json index ad9279ce..98753d19 100644 --- a/jigsaw-structures/desert-pyramid.json +++ b/jigsaw-structures/desert-pyramid.json @@ -2,6 +2,7 @@ "maxDepth": 1, "pieces": ["pyramid-desert"], "feature": { + "blockRadius": 15, "entitySpawners": ["dank"] } } diff --git a/jigsaw-structures/jungle-pyramid.json b/jigsaw-structures/jungle-pyramid.json index c9e9fd00..ab002306 100644 --- a/jigsaw-structures/jungle-pyramid.json +++ b/jigsaw-structures/jungle-pyramid.json @@ -2,6 +2,7 @@ "maxDepth": 1, "pieces": ["jungle_pyramid/jungle_pyramid"], "feature": { + "blockRadius": 15, "entitySpawners": ["dank"] } } diff --git a/jigsaw-structures/pillager_outpost.json b/jigsaw-structures/pillager_outpost.json index d1fba5a4..9cbfd752 100644 --- a/jigsaw-structures/pillager_outpost.json +++ b/jigsaw-structures/pillager_outpost.json @@ -7,6 +7,7 @@ ], "terminate": true, "feature": { + "blockRadius": 10, "entitySpawners": [ "pillager", "pillager-respawn" From 92766a8048f54dc2001aae87baf39ab4f605beb6 Mon Sep 17 00:00:00 2001 From: Brian Fopiano Date: Fri, 10 Sep 2021 16:02:51 -0700 Subject: [PATCH 04/30] Added a deeper, more majestic cave system. This is better than mojang's caves lel. took me a good hour of testing --- biomes/carving/calcite.json | 2 +- biomes/carving/deep.json | 39 ++++++++++++++ biomes/carving/deepravine.json | 66 +++++++++++++++++++++++ biomes/carving/drip-lite.json | 8 ++- caves/deep/elongated.json | 72 ++++++++++++++++++++++++++ dimensions/overworld.json | 10 ++++ objects/trees/jungle/nh-lgeneric1.iob | Bin 0 -> 2540 bytes objects/trees/jungle/nh-lgeneric2.iob | Bin 0 -> 2036 bytes objects/trees/jungle/nh-lgeneric3.iob | Bin 0 -> 3081 bytes objects/trees/jungle/nh-lgeneric5.iob | Bin 0 -> 11521 bytes 10 files changed, 194 insertions(+), 3 deletions(-) create mode 100644 biomes/carving/deep.json create mode 100644 biomes/carving/deepravine.json create mode 100644 caves/deep/elongated.json create mode 100644 objects/trees/jungle/nh-lgeneric1.iob create mode 100644 objects/trees/jungle/nh-lgeneric2.iob create mode 100644 objects/trees/jungle/nh-lgeneric3.iob create mode 100644 objects/trees/jungle/nh-lgeneric5.iob diff --git a/biomes/carving/calcite.json b/biomes/carving/calcite.json index 57f27a29..26343ec1 100644 --- a/biomes/carving/calcite.json +++ b/biomes/carving/calcite.json @@ -18,7 +18,7 @@ ] }], "decorators": [{ - "chance": 0.05, + "chance": 0.001, "style": {"style": "STATIC"}, "topPalette": [{"block": "minecraft:andesite"}], "stackMax": 5, diff --git a/biomes/carving/deep.json b/biomes/carving/deep.json new file mode 100644 index 00000000..894ff137 --- /dev/null +++ b/biomes/carving/deep.json @@ -0,0 +1,39 @@ +{ + "name": "Deepened cave", + "wall": { + "style": {"style": "STATIC"}, + "palette": [ + { + "block": "minecraft:stone", + "weight": 3 + }, + {"block": "minecraft:stone"} + ] + }, + "layers": [{ + "style": {"style": "STATIC"}, + "maxHeight": 2, + "minHeight": 2, + "palette": [ + { + "block": "minecraft:stone" + }, + { + "block": "minecraft:andesite" + } + ] + }], + "caveCeilingLayers": [{ + "style": {"style": "STATIC"}, + "maxHeight": 2, + "minHeight": 2, + "palette": [ + { + "block": "minecraft:stone" + }, + { + "block": "minecraft:andesite" + } + ] + }] +} diff --git a/biomes/carving/deepravine.json b/biomes/carving/deepravine.json new file mode 100644 index 00000000..96cca113 --- /dev/null +++ b/biomes/carving/deepravine.json @@ -0,0 +1,66 @@ +{ + "name": "Deepened Ravine", + "wall": { + "style": {"style": "IRIS"}, + "palette": [ + { + "block": "minecraft:stone", + "weight": 3 + }, + {"block": "minecraft:stone"} + ] + }, + "layers": [{ + "style": {"style": "STATIC"}, + "maxHeight": 2, + "minHeight": 2, + "palette": [ + { + "block": "minecraft:stone", + "weight": 3 + }, + { + "block": "minecraft:andesite", + "weight": 3 + } + ] + }], + "caveCeilingLayers": [{ + "maxHeight": 1, + "minHeight": 1, + "style": {"style": "STATIC"}, + "palette": [ + { + "block": "minecraft:shroomlight", + "weight": 1 + }, + { + "block": "minecraft:stone", + "weight": 16 + } + ] + }], + "childStyle": { + "style": "STATIC", + "zoom": 2 + }, + "decorators": [ + { + "partOf": "CEILING", + "chance": 0.03, + "palette": [{"block": "minecraft:hanging_roots"}] + }, + { + "partOf": "CEILING", + "chance": 0.05, + "scaleStack": true, + "stackMin": 20, + "stackMax": 70, + "absoluteMaxStack": 10, + "heightVariance": {"style": "STATIC"}, + "palette": [{ + "block": "minecraft:stone" + }] + } + ] +} diff --git a/biomes/carving/drip-lite.json b/biomes/carving/drip-lite.json index e667a389..65daf0d0 100644 --- a/biomes/carving/drip-lite.json +++ b/biomes/carving/drip-lite.json @@ -7,9 +7,13 @@ "palette": [{"block": "minecraft:dripstone_block"}] }], "caveCeilingLayers": [{ + "style": {"style": "IRIS"}, "maxHeight": 2, "minHeight": 2, - "palette": [{"block": "minecraft:dripstone_block"}] + "palette": [{"block": "minecraft:dripstone_block", + "weight": 15}, + {"block": "minecraft:shroomlight", + "weight": 1}] }], "decorators": [ { @@ -25,7 +29,7 @@ }, { "partOf": "CEILING", - "chance": 0.08, + "chance": 0.03, "absoluteMaxStack": 4, "scaleStack": true, "stackMin": 5, diff --git a/caves/deep/elongated.json b/caves/deep/elongated.json new file mode 100644 index 00000000..be311df9 --- /dev/null +++ b/caves/deep/elongated.json @@ -0,0 +1,72 @@ +{ + "fill": {"block": "minecraft:cave_air"}, + "verticalRange": { + "max": 50, + "min": 10 + }, + "customBiome": "carving/deepravine", + "fork": { + "ravines": [{ + "breakSurface": false, + "rarity": 13, + "ravine": "deep/main" + }], + "caves": [ + { + "breakSurface": false, + "cave": "calcite/main", + "rarity": 25 + }, + { + "breakSurface": false, + "cave": "drip/main", + "rarity": 30 + }, + { + "breakSurface": false, + "cave": "amethyst/small", + "rarity": 35 + }, + { + "breakSurface": false, + "cave": "volcanic/small", + "rarity": 20 + } + ] + }, + "worm": { + "girth": { + "max": 7, + "min": 3, + "style": { + "style": "SIMPLEX", + "zoom": 0.5 + } + }, + "maxDistance": 230, + "yStyle": { + "min": -2, + "max": 1, + "generator": { + "zoom": 3, + "style": "PERLIN" + } + }, + "xStyle": { + "min": -9, + "max": 9, + "generator": { + "zoom": 0.6, + "style": "IRIS" + } + }, + "zStyle": { + "min": -9, + "max": 9, + "generator": { + "zoom": 0.6, + "style": "IRIS" + } + } + } +} diff --git a/dimensions/overworld.json b/dimensions/overworld.json index 710f197a..a33f08ed 100644 --- a/dimensions/overworld.json +++ b/dimensions/overworld.json @@ -45,6 +45,16 @@ "min": 12, "style": {"style": "STATIC"} } + }, + { + "breakSurface": false, + "cave": "deep/elongated", + "rarity": 27, + "caveStartHeight": { + "max": 45, + "min": 3, + "style": {"style": "STATIC"} + } }]}, "islandBiomeChanceStyle": { "style": "NOWHERE_CELLULAR", diff --git a/objects/trees/jungle/nh-lgeneric1.iob b/objects/trees/jungle/nh-lgeneric1.iob new file mode 100644 index 0000000000000000000000000000000000000000..8104ea6ce6badc1d89d2ddafc5453b1b40955458 GIT binary patch literal 2540 zcmbW3+fEZ<6ovP+r5vojfe8=5jo=~CaAWj>EAPA^#8eoh23yht=zID!I_Fckv;g`$u z(`DJeE+@xlgUPf%JS`8O?Om1QiL7!sJ)Dkb<;gvQUOgme{~Y~BIs4Tg!9rg>wbsWDi;*Y(d&Ouc-cJ;I&yQ@mST)jxF zYn_;GqQT^n@)vNEbql^%rZZl!!j8Ax|>(!9MzMEGK3ziHftW z{X`f{KdOp1S0@j4r=G*4))z+dV6$&jG}BCO)U{TzQ(weU1*A&)ff>yyQ(36W>&#F8 zQddjv)1RHCrp%)~#jDWT5K8xHt9#bTW7NILY|LEbOCL0m+K0Kh{)Y42n2UFHL+{JW zC(nJD>*`7d`EGDV)nQ$JAaiZAPCrI;kz9aXt&3ykt2yc$AkReJ^RyH5jmvqcYtI8@ z9-P8oH0s;lQC{ArzZt{cac#$Y&+kdbr>%R#N`uKBaelXSPbTwCCf+vZa~|%kc;q|v z$>#nN-5vGep^Bb)0pUq#{y_MwGzaEWp?f3#*zVE$QUs`VzHvSGL(h1${eLo$df;R4 Yu#fI?JrT8Iqx0qZQpFve2lf)<4`1j9O#lD@ literal 0 HcmV?d00001 diff --git a/objects/trees/jungle/nh-lgeneric2.iob b/objects/trees/jungle/nh-lgeneric2.iob new file mode 100644 index 0000000000000000000000000000000000000000..9d9fe060fcec00e612b992e6f5fe50ee04225d47 GIT binary patch literal 2036 zcmbW1-)<675Qh)T0=A$}ph+Kq8|#IMh8v?7z4ER%gqTgctr&!cg|_-QzGZ=B{e3fs zKvFD?OW->*XU?4Yw}cSdA%s`@wnOJ^IxJ4kPfyOie)zv*|p4&Y`!D4}IC* zbgPj1c~;DNSJ|k@yW`1p_T7AUi^*I|SI=+a;x6Bq4#MlLo0!jNa_#BdKe?-9pE&z_ z5cUR0!ZAJ%>R^DMw*hYR+;L;egI@LqvsWQtj4M%k^R9-=o&zl?fVSHuf3l^!-EKR83G8;K1j`Z|?2 zvQEmU_O%j;#AUln@u`lsFAJk8<+36-zecpkiS93>9-@cn7h+R<5F6A_B(A#MPJfVy z$g87VJYL(k-0(w=W(WB+_$5vweQ~{2RhC}eSan%)t33GaF&p}@(XVZnzF<`vlWJvb zSw*;?32=JHgX&H!L3J197gFPfovdqZ9*y1yI-jb(Ys(s1{?X3$scOK!Ps%nT-H*NQ zfwD2S#HD1ofL1{&!sC^Jo3B^O_cb%JBM0B#$W7BzFYQ~sAoWS)o%$rX{q<{q0*KkpNReyKQ_ u6sUh2msMG0n+*A(``A(sw@ZxNz~m?Tg}e{^V=+m{nz(3Jm!YaC!<8IQvOwz;CPC9J&PLkIC?)PMnN=kae)^IRNj>3nz(xuc7lXmJ$yS@Hkc+om* zchh7y?T>E1kG|)VSBbXT`q4dnKVS6yZ0^vam1|0`mw0qdHFjV#kj z2y3FW!@7OykrqpmW6mW8odddWCX^3-mh}lE@+H9|af(E+oZQE!H2OmR|q*HJfsqJpzQo$Nb#v2{gc zF{v{>wwzHm&ShtmUFWhhQeEvVx173cvErYYSIHxkFBo$gag%(C+iS&e%cSP}P zR5hqSq`x5lV66Q{t>csThH7p~g47M-mm1Rtur50$n-*1K*Q|DaC+T^=@2-c;`$UHk zFZ6z5om@uN2iV!dpU(W)@_wWIQiq$cjVH0LbvPT;iJsrq%veOahQuopA@sUvpRLI* ze)XMvLjMi$w+oqb!I~^U{8mKr3H`pZkNmTb{QG{$e~hal_2a}AFJvE4Vjt26`eQ#g zsb=|=Z22y$|HyyY>_B=F&2{assK@M{i5~CR-pI0K>_Fm$+#%f*#iaU)yc<+w%ltsz Z5tp6(dbsT5_e8RG@f*tBRmRO<_ybD`>jeM+ literal 0 HcmV?d00001 diff --git a/objects/trees/jungle/nh-lgeneric5.iob b/objects/trees/jungle/nh-lgeneric5.iob new file mode 100644 index 0000000000000000000000000000000000000000..7a8af80302d9d91a9735f7b8eb23c8ec9cf94755 GIT binary patch literal 11521 zcmbW-OOIVw5e4AW?`}J`c?k)LL4JTIBp@V^CjkZ-F=G;0$O@fc6r9Ly2l(N!`{C}( z`f8n)t+XR2xmNeOReSHM{is^C&uK5q@~dT8evzMFF7JK(^zq62fBWG5kN^77AD5pm zAO8FCljBdHKKkt0AO7|H$>(1j|NV>OM_(VGeDaUSC(j-|`Skd~Z|;9}{PZN!@sno{ zo;`hj{BZfp>p@><_$SAYPM$sZ?9mq|$M>In`SjU8r`!FLFQ4aY)z80Lzx?O;y6eO5 z;rsVDeZPCcAKV=D>(>*$UgejcfAZ+Rk53-_?|Uq#YxvfBY{mUIm-E(LnO@zLw_2(4 zO*8La;Dvwvfi^YvR>b#sw#wbE|i9YHsC{7*k(E;o$4 z_1NB=O22>il34tKK{S(iYfij#W8R$2wV4}h`axD|F|&DX#Dj%$PIJgtP zd$Ds6zi=mhq4gIp*7nO)zFKipj6eN$m#r1|R{j2<^^M)-aMd5J@~y#x<@VrV{O`{^ zP6v15pS-iV8jPDke(0SW%xSJPmE)i6e5Zf>7k3A<+7J$#2l00}crobwDqpU6wdyy6aZow_^xKKQ>7Q@K z-NCGG@F@0<((f?wP`n!Co9tYDZUwhi++J~KFmWE-$@pU8I&$)GaN?RAY4qZjC|(1% z#cS|A@jCj%Yj7v|Rypw+c~`tnd*XGldpm99Xno(wK2Ceq*S5s%v?gwK6So0z0}sS) zP~5;J`&~@@j{emuCyqx>{OXraG4VUn_KLfM<}v*-@G4#l&@F`89I<9FoOzQ2bR+JR283(5IMq&i9Gu!Nl|6 z-k?>HGOut*Jy`$PoJ$aSB;mFO!;MHKbVspOg z&sIEL@g)>_t6aR=Tt+qyvUfG8ZdD$%T?Y>Pv^-F*C z%e>Stvib$pui9*T@?Jj{v?sob>J;u#pK!4HWSsiMj`~DapJ4JlDBde4&!?Zg)?b~f zpQ5@X2h=5~F7c->k<}$!tPZi8{M8=&P@RBytmy1(f7<1-e%Ys@`ozAvBq!7*s4nrR zF7bC3UtJFr2T&YTR+s3_392dlh;{bWC8#bzbxFIr#ICwyoVr6+cOc(T?FeQBJczxb zxWT5{3B7v4zIp=H6MFTe zev0Y|dm=gd{1nv@dUb?e9f9fyR7bR{Ba!2OKWM$sdZG0e)e-u{p?(=Ta=uTyxYK_; zLG{D>)ekb}tX*f^dI8l7e$|WKIiS6ne&Q{fMJm?ocmGL|o&&Q6F zhw>@t{twL?S|h}-gYg6TDdKZ-@+rtq5wEk4*TpzquYEB;c@^yQ1>`e!;s=(;+3TGJ zcaC1ZX}1FX^RNB!cjpVuw{q|P_+aGNDdKPT@i%+;yW@{WA5PA{t>nGhVSZ4a4$ch9 z>EzqadHT7}Z_im)#<#}f+vvv=l-saB?gx3&&RXy*Kls%+{0i|aJ$@y-uXjF0JR5yJ zMLbK!r?tC3h&PSHn-FhyPm6ihrq9Tt$Ycj!nk&8}yH|JoLC}2?Ity4ng!oW@d}zFT za_3c9<*&Wst&z)*?2DbWJ5S@Yk0Zxo5qH&35l^y*C+S5vSp@QrCn27s$CLWuNr)%g zzlbO4@nqJQbyT(k(PutIJehHkx3d?{2io5vej=X^dL|KD`cI5S5BGy}mr8r>;3;}M z<<8?CTDwqRI2E)J+ws#olzV9H7V*`!&8}nQ*ntzbgU%xD(NvGe z$au_nJjN~_lbd)9;xUNFw7Zv@7ydFHf59-x=8r&;~jcD)Oi%~lzwWEcdBCMBJ=QFPRe_7-_<%N?`)gP?L(&D3SK|k=s)A_ zw07||m{Sb)zM{YT%C#?c5^p1`$@HGN>K{%WBa62|d_XTYAYRap7a(3R9v@uf83`YF z_QD7J;{$&10oi-iuA_SQocbGC9FB}9==0T~}ej-4VtU>6^Z#Z`7g zp!Zy7Jf3j3a?j{Ip?Oxu6J$J*_KYmz3I6Z|dw7EEWFek_*?(x?gS~&O&*CF{pVyq7 zcDno+4|yx%1$w;DKHjLx*rP%9zw4^(CZV4^?zrpzkX>juD(9@S7wQuFl2Ch^7}k_F2B9wm*4!zZz#VzUpVna&U~jmex_Y~ zX-`X0p6e&i>E$_;=jJ2N*^}S=%5NyY`Sl#buX{rMjehby?c#0p@?E=prpG=#3;GpLbvEaQ==LX9I zVh9g76FdO%fH(27(%H-Zj)UR|_CBD$`v6(~L-}ufGrRYJjGI}}&xyn~>-Eub@}7P7 z19s#+S>8i=&(54=_CemuO?gjm$Jrl752~zPr!(n2fb1Rs<-73{5!p}gIQmRby^~{C z?m~Sb9^eNLu&e$XHElR(X1s z`N>nVJY`>=vhTeyRELd|r%;}E&0)L-{$Fd5zw_M&JBme^waV@{26HYEK0; zpQ5~CS6=BSBH58wefF;GM6{c&cGk?(^E;GJ?8+zY&Ai#K$ex*}Us~EOpV*gAus>So zd+fQ%+yBAXgQ~4J3Hm_us620sX0(203$44dyfRJ(LV0qU{757Q%^&_W`Yrm%kn9dh zhHkGLa`0;O>ZoUM_weh#0i7;C%e+S)`=iguqI$}nyw+bG?K6D;)}x-1)l<*h^3pqd zc^Uo80LsgZPfPXkviACaFXSUT^0D)(EFX=RkF^Kg3@c|xM=u}g<)eOK(O~lr%D?U# zZ2krHB#WP*Jg+SO=o3GqPyCR@Pq2RrVNbpVGqNb(jFWHl@(s#2RK^KV)@DOp8dr z<&Spx6FKACsvh{(80WRJxHo@!kUr^Oy*lMzD^T;U{dVUav-o*A^MtccBa64lnV)wq zcVidY4@kdFpLy$NM>-zQ>nE=I4!bg*XJ1^U-O9-Jab$5t7FSSQ=_juIp9gWpuKO1| z?q6i_MaJ)$hy5jIbT;>9@ek{iDDOuKk7PP{l-zoGY({aZbpda~+8 z3d<8Qu>%`Nw04y2yk5*~b_bo~i}cNkM^4Y6b->;O$oMDYqW6EAdfwHKJ?mfFp-=rd zXa1Zsy>qVr%FdZx=bCxghe7A6pK~=o=V`q2^tVgrNp_yb?_nX<@%Jze7 zf4&(zke$kS**NEse*Eai@2anC{q1)EjrR^})^{tT?M&Z+dslQP^PhJ{X@}*X>i4Ig Rbwxkxx;5*rY+dZ+^M8WYuebmJ literal 0 HcmV?d00001 From 1fd617caf04c4bc5ac5589f012a4f32badd4f004 Mon Sep 17 00:00:00 2001 From: Brian Fopiano Date: Fri, 10 Sep 2021 17:35:56 -0700 Subject: [PATCH 05/30] Added a whole new mountain range (as per request)) added more carving, and added a separation system --- biomes/carving/deepravine.json | 2 +- biomes/carving/drip.json | 3 +- biomes/carving/mountain-caves.json | 44 ++++++ biomes/temperate/reaching-forest.json | 190 ++++++++++++++++++++++++++ biomes/tundra/frosted-peaks.json | 154 +++++++++++++++++++++ caves/rocky/tubes.json | 69 ++++++++++ dimensions/overworld.json | 7 +- regions/temperate.json | 1 + regions/tundra.json | 1 + 9 files changed, 466 insertions(+), 5 deletions(-) create mode 100644 biomes/carving/mountain-caves.json create mode 100644 biomes/temperate/reaching-forest.json create mode 100644 biomes/tundra/frosted-peaks.json create mode 100644 caves/rocky/tubes.json diff --git a/biomes/carving/deepravine.json b/biomes/carving/deepravine.json index 96cca113..3a359bc3 100644 --- a/biomes/carving/deepravine.json +++ b/biomes/carving/deepravine.json @@ -36,7 +36,7 @@ }, { "block": "minecraft:stone", - "weight": 16 + "weight": 20 } ] }], diff --git a/biomes/carving/drip.json b/biomes/carving/drip.json index 385a0a1b..10f5e44e 100644 --- a/biomes/carving/drip.json +++ b/biomes/carving/drip.json @@ -26,8 +26,9 @@ }], "caveCeilingLayers": [{ "maxHeight": 2, + "style": {"style": "STATIC"}, "minHeight": 2, - "palette": [{"block": "minecraft:dripstone_block"}] + "palette": [{"block": "minecraft:dripstone_block", "weight": 20}, {"block": "minecraft:shroomlight", "weight": 1}] }], "decorators": [ { diff --git a/biomes/carving/mountain-caves.json b/biomes/carving/mountain-caves.json new file mode 100644 index 00000000..bab6d316 --- /dev/null +++ b/biomes/carving/mountain-caves.json @@ -0,0 +1,44 @@ +{ + "name": "M cave", + "wall": { + "style": {"style": "STATIC"}, + "palette": [ + { + "block": "minecraft:stone", + "weight": 3 + }, + {"block": "minecraft:cobblestone"}, + {"block": "minecraft:stone"} + ] + }, + "layers": [{ + "style": {"style": "STATIC"}, + "maxHeight": 2, + "minHeight": 2, + "palette": [ + { + "block": "minecraft:stone", + "weight": 3 + }, + { + "block": "minecraft:andesite", + "weight": 3 + } + ] + }], + "caveCeilingLayers": [{ + "style": {"style": "STATIC"}, + "maxHeight": 2, + "minHeight": 2, + "palette": [ + { + "block": "minecraft:stone", + "weight": 3 + }, + { + "block": "minecraft:andesite", + "weight": 3 + } + ] + }] +} diff --git a/biomes/temperate/reaching-forest.json b/biomes/temperate/reaching-forest.json new file mode 100644 index 00000000..37a9faf6 --- /dev/null +++ b/biomes/temperate/reaching-forest.json @@ -0,0 +1,190 @@ +{ + "name": "Tundra Magic Forest", + "derivative": "MOUNTAINS", + "color": "#164598", + "rarity": 7, + "vanillaDerivative": "TAIGA_MOUNTAINS", + "generators": [{ + "generator": "smooth-dunes", + "max": 14, + "min": 8 + }], + "customDerivitives": [{ + "grassColor": "#4E83CF", + "foliageColor": "#2F99DC", + "id": "tunmagforest", + "waterColor": "#5C3BEF", + "waterFogColor": "#7A768F", + "category": "forest", + "fogColor": "#686090" + }], + "jigsawStructures": [ + { + "rarity": 1700, + "structure": "pillager_outpost" + }, + { + "rarity": 1000, + "structure": "village-tundra" + } + ], + "layers": [ + { + "minHeight": 3, + "maxHeight": 5, + "slopeCondition": {"minimumSlope": 6.9}, + "palette": [ + {"block": "minecraft:stone"}, + {"block": "minecraft:andesite"}, + {"block": "minecraft:gravel"} + ] + }, + { + "minHeight": 3, + "maxHeight": 5, + "slopeCondition": {"minimumSlope": 5.3}, + "palette": [ + {"block": "minecraft:dirt"}, + {"block": "minecraft:coarse_dirt"}, + {"block": "minecraft:gravel"} + ] + }, + {"palette": [{"block": "minecraft:grass_block"}]}, + { + "minHeight": 6, + "maxHeight": 18, + "style": {"style": "STATIC"}, + "palette": [ + {"block": "minecraft:stone"}, + {"block": "minecraft:andesite"}, + {"block": "minecraft:stone"} + ] + } + ], + "objects": [ + { + "place": [ + "clutter/gravelsplotch1", + "clutter/gravelsplotch2", + "clutter/gravelsplotch3", + "clutter/gravelsplotch4" + ], + "chance": 0.35, + "mode": "PAINT" + }, + { + "chance": 0.8, + "rotation": { + "yAxis": { + "min": 0, + "max": 0, + "interval": 90, + "enabled": true + }, + "enabled": true + }, + "place": [ + "trees/mixed/dotree1", + "trees/mixed/dotree2", + "trees/mixed/dotree3", + "trees/mixed/dotree4", + "trees/mixed/dotree5", + "trees/mixed/dotree6", + "trees/mixed/dotree7", + "trees/mixed/dotree8", + "trees/mixed/dotree9", + "trees/mixed/dotree10" + ], + "translate": { + "x": 0, + "y": -2, + "z": 0 + } + }, + { + "chance": 0.01, + "rotation": { + "yAxis": { + "min": 0, + "max": 0, + "interval": 90, + "enabled": true + }, + "enabled": true + }, + "place": [ + "clutter/obelisk1", + "clutter/obelisk2", + "clutter/obelisk3", + "clutter/obelisk4", + "clutter/obelisk5", + "clutter/obelisk6", + "clutter/obelisk7" + ], + "translate": { + "x": 0, + "y": -4, + "z": 0 + } + } + ], + "biomeZoom": 30, + "biomeStyle": {"style": "SIMPLEX"}, + "decorators": [ + { + "chance": 0.01, + "variance": {"style": "STATIC"}, + "zoom": 0.1, + "palette": [ + {"block": "minecraft:white_tulip"}, + {"block": "minecraft:blue_orchid"}, + {"block": "minecraft:poppy"} + ], + "style": {"style": "STATIC"} + }, + { + "chance": 0.001, + "variance": {"style": "STATIC"}, + "zoom": 0.3, + "palette": [ + { + "data": {"age": 0}, + "block": "minecraft:sweet_berry_bush" + }, + { + "data": {"age": 1}, + "block": "minecraft:sweet_berry_bush" + }, + { + "data": {"age": 2}, + "block": "minecraft:sweet_berry_bush" + }, + { + "data": {"age": 3}, + "block": "minecraft:sweet_berry_bush" + } + ], + "style": {"style": "STATIC"} + }, + { + "chance": 0.2, + "variance": {"style": "STATIC"}, + "zoom": 0.3, + "palette": [{"block": "minecraft:grass"}], + "style": {"style": "STATIC"} + } + ], + "childShrinkFactor": 8, + "wall": { + "style": {"style": "STATIC"}, + "palette": [ + {"block": "minecraft:stone"}, + {"block": "minecraft:andesite"}, + {"block": "minecraft:stone"} + ] + }, + "biomeScatter": [ + "TAIGA_HILLS", + "MOUNTAINS" + ] +} diff --git a/biomes/tundra/frosted-peaks.json b/biomes/tundra/frosted-peaks.json new file mode 100644 index 00000000..8f1f6e8c --- /dev/null +++ b/biomes/tundra/frosted-peaks.json @@ -0,0 +1,154 @@ +{ + "name": "Frosted Peaks", + "derivative": "TAIGA_MOUNTAINS", + "vanillaDerivative": "TAIGA_MOUNTAINS", + "customDerivitives": [{ + "id": "frosted-peaks", + "grassColor": "#80ab69", + "category": "extreme_hills" + }], + "biomeZoom": 0.73, + "rarity": 5, + "generators": [{ + "generator": "mountain", + "max": 200, + "min": 90 + }], + "layers": [ + { + "minHeight": 1, + "maxHeight": 1, + "slopeCondition": { + "minimumSlope": 0.1, + "maximumSlope": 1.65 + }, + "palette": [{"block": "minecraft:snow_block"}] + }, + { + "minHeight": 2, + "maxHeight": 4, + "style": { + "style": "FRACTAL_WATER", + "fracture": { + "style": "STATIC", + "multiplier": 15 + } + }, + "zoom": 0.4, + "slopeCondition": { + "minimumSlope": 3.95, + "maximumSlope": 6 + }, + "palette": [ + { + "block": "minecraft:diorite", + "weight": 4 + }, + { + "block": "minecraft:stone", + "weight": 10 + } + ] + }, + { + "minHeight": 2, + "maxHeight": 4, + "style": {"style": "STATIC"}, + "slopeCondition": {"minimumSlope": 2.5}, + "palette": [ + { + "block": "minecraft:smooth_basalt", + "weight": 3 + }, + { + "block": "minecraft:stone", + "weight": 5 + }, + { + "block": "minecraft:gray_concrete_powder", + "weight": 3 + }, + { + "block": "minecraft:gravel", + "weight": 3 + } + ] + }, + { + "minHeight": 2, + "maxHeight": 18, + "style": {"style": "STATIC"}, + "palette": [ + { + "block": "minecraft:stone", + "weight": 2 + }, + { + "block": "minecraft:andesite", + "weight": 1 + } + ] + } + ], + "slab": { + "style": {"style": "STATIC"}, + "slopeCondition": {"minimumSlope": 2.3}, + "palette": [ + { + "data": { + "waterlogged": false, + "type": "bottom" + }, + "block": "minecraft:stone_slab" + }, + { + "data": { + "waterlogged": false, + "type": "bottom" + }, + "block": "minecraft:cobblestone_slab" + }, + { + "weight": 6, + "block": "minecraft:air" + } + ] + }, + "carving": {"caves": [{ + "breakSurface": true, + "cave": "rocky/tubes", + "rarity": 11, + "caveStartHeight": { + "max": 180, + "min": 80, + "style": {"style": "STATIC"} + } + }]}, + "decorators": [ + { + "chance": 0.01, + "palette": [{"block": "minecraft:tall_grass"}] + }, + { + "chance": 0.5, + "palette": [{"block": "minecraft:grass"}] + }, + { + "chance": 0.15, + "palette": [{"block": "minecraft:fern"}] + }, + { + "chance": 0.15, + "palette": [{"block": "minecraft:fern"}] + } + ], + "wall": { + "style": {"style": "STATIC"}, + "palette": [ + {"block": "minecraft:stone"}, + {"block": "minecraft:andesite"}, + {"block": "minecraft:gravel"}, + {"block": "minecraft:basalt"} + ] + } +} diff --git a/caves/rocky/tubes.json b/caves/rocky/tubes.json new file mode 100644 index 00000000..fcb2b21e --- /dev/null +++ b/caves/rocky/tubes.json @@ -0,0 +1,69 @@ +{ + "fill": {"block": "minecraft:cave_air"}, + "verticalRange": { + "max": 220, + "min": 30 + }, + "customBiome": "carving/mountain-caves", + "fork": { + "ravines": [{ + "breakSurface": false, + "rarity": 100, + "ravine": "deep/main" + }], + "caves": [ + { + "breakSurface": false, + "cave": "calcite/main", + "rarity": 105 + }, + { + "breakSurface": false, + "cave": "drip/main", + "rarity": 120 + }, + { + "breakSurface": false, + "cave": "amethyst/small", + "rarity": 125 + }, + { + "breakSurface": false, + "cave": "volcanic/small", + "rarity": 140 + } + ] + }, + "worm": { + "girth": { + "max": 7, + "min": 2, + "style": {"style": "STATIC"} + }, + "maxDistance": 150, + "yStyle": { + "min": -3, + "max": 2, + "generator": { + "zoom": 3, + "style": "PERLIN" + } + }, + "xStyle": { + "min": -12, + "max": 12, + "generator": { + "zoom": 2, + "style": "IRIS_DOUBLE" + } + }, + "zStyle": { + "min": -12, + "max": 12, + "generator": { + "zoom": 2, + "style": "IRIS_DOUBLE" + } + } + } +} diff --git a/dimensions/overworld.json b/dimensions/overworld.json index a33f08ed..09320080 100644 --- a/dimensions/overworld.json +++ b/dimensions/overworld.json @@ -30,10 +30,11 @@ "swamp", "hot", "temperate", - "tropical", - "temperate", + "tundra", "frozen", - "tundra" + "tropical", + "temperate" + ], "carving": { "caves": [{ diff --git a/regions/temperate.json b/regions/temperate.json index 9dca3288..5cb93710 100644 --- a/regions/temperate.json +++ b/regions/temperate.json @@ -11,6 +11,7 @@ "temperate/oak-forest", "temperate/osaka-red-forest", "temperate/birch-forest", + "temperate/reaching-forest", "temperate/lush-plains" ], "shoreBiomes": [ diff --git a/regions/tundra.json b/regions/tundra.json index 76c13583..c7ae9a5a 100644 --- a/regions/tundra.json +++ b/regions/tundra.json @@ -14,6 +14,7 @@ "tundra/mountains-cliffs", "mountain/hills", "mountain/forest-hills", + "tundra/frosted-peaks", "mountain/forest", "mountain/plains", "mountain/cliffs", From 70333e4f4d53722c4c691dad213aebc9583d9e50 Mon Sep 17 00:00:00 2001 From: Brian Fopiano Date: Fri, 10 Sep 2021 18:08:44 -0700 Subject: [PATCH 06/30] less veggies --- biomes/carving/jungle.json | 14 +++++++------- biomes/carving/swamp.json | 7 +++---- 2 files changed, 10 insertions(+), 11 deletions(-) diff --git a/biomes/carving/jungle.json b/biomes/carving/jungle.json index 3974b62d..254f49de 100644 --- a/biomes/carving/jungle.json +++ b/biomes/carving/jungle.json @@ -24,7 +24,7 @@ }], "decorators": [ { - "chance": 0.05, + "chance": 0.0005, "scaleStack": true, "stackMin": 1, "stackMax": 5, @@ -33,7 +33,7 @@ "palette": [{"block": "minecraft:big_dripleaf"}] }, { - "chance": 0.05, + "chance": 0.001, "partOf": "CEILING", "scaleStack": true, "stackMin": 5, @@ -43,15 +43,15 @@ "palette": [{"block": "minecraft:cave_vines"}] }, { - "chance": 0.8, + "chance": 0.4, "style": {"style": "STATIC"}, "palette": [ - {"block": "minecraft:jungle_sapling"}, - {"block": "minecraft:tall_grass"}, - {"block": "minecraft:fern"}, + {"block": "minecraft:jungle_sapling","weight": 10}, + {"block": "minecraft:tall_grass","weight": 10}, + {"block": "minecraft:fern","weight": 10}, { "block": "minecraft:grass", - "weight": 10 + "weight": 100 }, {"block": "minecraft:azalea"}, {"block": "minecraft:flowering_azalea"}, diff --git a/biomes/carving/swamp.json b/biomes/carving/swamp.json index 022c5ec4..14fef0ff 100644 --- a/biomes/carving/swamp.json +++ b/biomes/carving/swamp.json @@ -27,7 +27,7 @@ }], "decorators": [ { - "chance": 0.3, + "chance": 0.15, "style": {"style": "STATIC"}, "palette": [ {"block": "minecraft:grass"}, @@ -35,12 +35,11 @@ ] }, { - "chance": 0.08, + "chance": 0.04, "style": {"style": "STATIC"}, "palette": [ {"block": "minecraft:brown_mushroom"}, - {"block": "minecraft:red_mushroom"}, - {"block": "minecraft:crimson_fungus"} + {"block": "minecraft:red_mushroom"} ] } ] From 0316fa3f39dfb352654cf2c82c189c2d260b1eb7 Mon Sep 17 00:00:00 2001 From: Brian Fopiano Date: Sat, 11 Sep 2021 09:43:02 -0700 Subject: [PATCH 07/30] not sure if i need this? --- dimensions/overworld.json | 1 + 1 file changed, 1 insertion(+) diff --git a/dimensions/overworld.json b/dimensions/overworld.json index 09320080..b7c20a2e 100644 --- a/dimensions/overworld.json +++ b/dimensions/overworld.json @@ -250,6 +250,7 @@ "coordFractureDistance": 926, "coordFractureZoom": 0.15, "preventLeafDecay": true, + "noiseModificationFromFeatures": false, "postProcessCaves": true, "postProcessing": true, "useMantle": true, From 564ecffdc465e681e320e0c7feae32f7512238b1 Mon Sep 17 00:00:00 2001 From: cyberpwn Date: Sun, 12 Sep 2021 08:03:00 -0400 Subject: [PATCH 08/30] Combine interpolators to improve performance without changing gens very --- generators/cracked-cliffs.json | 2 +- generators/highplains.json | 4 ++-- generators/mountain.json | 2 +- generators/ocean.json | 2 +- generators/plain-cliffs.json | 2 +- generators/plain.json | 2 +- generators/rare-hills.json | 4 ++-- generators/small-cliffs.json | 2 +- generators/smooth-dunes.json | 2 +- generators/vascular-cracked-cliffs.json | 2 +- 10 files changed, 12 insertions(+), 12 deletions(-) diff --git a/generators/cracked-cliffs.json b/generators/cracked-cliffs.json index 5a82d125..02953fdf 100644 --- a/generators/cracked-cliffs.json +++ b/generators/cracked-cliffs.json @@ -1,7 +1,7 @@ { "interpolator": { "function": "BILINEAR_STARCAST_9", - "horizontalScale": 15 + "horizontalScale": 16 }, "seed": 7246661, "composite": [{ diff --git a/generators/highplains.json b/generators/highplains.json index d84274fa..fcc165b7 100644 --- a/generators/highplains.json +++ b/generators/highplains.json @@ -1,7 +1,7 @@ { "interpolator": { - "function": "BILINEAR_STARCAST_3", - "horizontalScale": 50 + "function": "BILINEAR_STARCAST_9", + "horizontalScale": 60 }, "seed": 377394, "composite": [{ diff --git a/generators/mountain.json b/generators/mountain.json index 985fc840..564cf2b2 100644 --- a/generators/mountain.json +++ b/generators/mountain.json @@ -1,7 +1,7 @@ { "interpolator": { "function": "BILINEAR_STARCAST_9", - "horizontalScale": 35 + "horizontalScale": 50 }, "seed": 530530, "composite": [ diff --git a/generators/ocean.json b/generators/ocean.json index 947b2412..756169a5 100644 --- a/generators/ocean.json +++ b/generators/ocean.json @@ -1,7 +1,7 @@ { "interpolator": { "function": "BILINEAR_STARCAST_9", - "horizontalScale": 65 + "horizontalScale": 60 }, "seed": 9246661, "composite": [{ diff --git a/generators/plain-cliffs.json b/generators/plain-cliffs.json index 06212055..0f8fdd6e 100644 --- a/generators/plain-cliffs.json +++ b/generators/plain-cliffs.json @@ -15,7 +15,7 @@ }], "interpolator": { "function": "BILINEAR_STARCAST_9", - "horizontalScale": 49 + "horizontalScale": 60 }, "seed": 7246661, "cliffHeightMax": 80, diff --git a/generators/plain.json b/generators/plain.json index 3659febf..65ff4eee 100644 --- a/generators/plain.json +++ b/generators/plain.json @@ -1,7 +1,7 @@ { "interpolator": { "function": "BILINEAR_STARCAST_9", - "horizontalScale": 63 + "horizontalScale": 60 }, "seed": 7246661, "composite": [{ diff --git a/generators/rare-hills.json b/generators/rare-hills.json index 1c462c17..d2b0b8ef 100644 --- a/generators/rare-hills.json +++ b/generators/rare-hills.json @@ -1,7 +1,7 @@ { "interpolator": { - "function": "BILINEAR_STARCAST_6", - "horizontalScale": 8 + "function": "BILINEAR_STARCAST_9", + "horizontalScale": 9 }, "seed": 377394, "composite": [{ diff --git a/generators/small-cliffs.json b/generators/small-cliffs.json index 6af8f52b..d4f8d33f 100644 --- a/generators/small-cliffs.json +++ b/generators/small-cliffs.json @@ -1,7 +1,7 @@ { "interpolator": { "function": "BILINEAR_STARCAST_9", - "horizontalScale": 18 + "horizontalScale": 16 }, "seed": 2343, "composite": [{ diff --git a/generators/smooth-dunes.json b/generators/smooth-dunes.json index 2bb6d276..7fb694b3 100644 --- a/generators/smooth-dunes.json +++ b/generators/smooth-dunes.json @@ -1,7 +1,7 @@ { "interpolator": { "function": "BILINEAR_STARCAST_9", - "horizontalScale": 45 + "horizontalScale": 50 }, "seed": 133434, "composite": [ diff --git a/generators/vascular-cracked-cliffs.json b/generators/vascular-cracked-cliffs.json index 3ef0ee44..3743f4c2 100644 --- a/generators/vascular-cracked-cliffs.json +++ b/generators/vascular-cracked-cliffs.json @@ -1,7 +1,7 @@ { "interpolator": { "function": "BILINEAR_STARCAST_9", - "horizontalScale": 17 + "horizontalScale": 16 }, "seed": 7246661, "composite": [{ From 1d7dc83ad09e49121dbe24387d98fa59851f751d Mon Sep 17 00:00:00 2001 From: cyberpwn Date: Sun, 12 Sep 2021 10:53:42 -0400 Subject: [PATCH 09/30] No vacuum --- biomes/hot/desert-dunes-red.json | 2 +- biomes/hot/desert-dunes.json | 2 +- biomes/mesa/blue.json | 2 +- biomes/mesa/dark.json | 2 +- biomes/mesa/green.json | 2 +- biomes/mesa/red.json | 2 +- biomes/mountain/hills.json | 2 +- biomes/mountain/plains.json | 2 +- biomes/mushroom/crimson-forest.json | 2 +- biomes/mushroom/shore/beach.json | 2 +- biomes/ocean/ocean.json | 2 +- biomes/swamp/cambian-drift.json | 2 +- biomes/swamp/roofed-forest.json | 2 +- biomes/swamp/roofed-wayward.json | 2 +- biomes/swamp/sea/ocean-tree.json | 2 +- biomes/swamp/willow-forest.json | 4 ++-- biomes/temperate/lush-plains-red.json | 4 ++-- biomes/temperate/lush-plains-yellow.json | 4 ++-- biomes/temperate/lush-plains.json | 4 ++-- biomes/temperate/meadows.json | 4 ++-- biomes/temperate/plateau.json | 2 +- biomes/tropical/island-beach.json | 2 +- biomes/tundra/autumn.json | 2 +- biomes/tundra/bonsai-forest.json | 2 +- biomes/tundra/ether.json | 2 +- biomes/tundra/mountains-cliffs.json | 2 +- biomes/tundra/redwood-cliffs.json | 2 +- biomes/tundra/redwood-forest.json | 2 +- biomes/tundra/sequia-redwoods.json | 2 +- biomes/tundra/shore/beach-stone.json | 2 +- biomes/tundra/shore/beach.json | 2 +- biomes/tundra/taiga.json | 2 +- biomes/util/ruined_portals.json | 4 ++-- jigsaw-pieces/houses/jap/j1.json | 2 +- jigsaw-pieces/houses/jap/j10.json | 2 +- jigsaw-pieces/houses/jap/j2.json | 2 +- jigsaw-pieces/houses/jap/j3.json | 2 +- jigsaw-pieces/houses/jap/j4.json | 2 +- jigsaw-pieces/houses/jap/j5.json | 2 +- jigsaw-pieces/houses/jap/j6.json | 2 +- jigsaw-pieces/houses/jap/j7.json | 2 +- jigsaw-pieces/houses/jap/j8.json | 2 +- jigsaw-pieces/houses/jap/j9.json | 2 +- jigsaw-pieces/mansion/1x1/1/a1.json | 4 ++-- jigsaw-pieces/mansion/1x1/1/a2.json | 4 ++-- jigsaw-pieces/mansion/1x1/1/a3.json | 4 ++-- jigsaw-pieces/mansion/1x1/1/a4.json | 4 ++-- jigsaw-pieces/mansion/1x1/1/a5.json | 4 ++-- jigsaw-pieces/mansion/1x1/1/as1.json | 4 ++-- jigsaw-pieces/mansion/1x1/1/as2.json | 4 ++-- jigsaw-pieces/mansion/1x1/1/as3.json | 4 ++-- jigsaw-pieces/mansion/1x1/1/as4.json | 4 ++-- jigsaw-pieces/mansion/1x1/2/b1.json | 4 ++-- jigsaw-pieces/mansion/1x1/2/b2.json | 4 ++-- jigsaw-pieces/mansion/1x1/2/b3.json | 4 ++-- jigsaw-pieces/mansion/1x1/2/b4.json | 4 ++-- jigsaw-pieces/mansion/1x1/2/b5.json | 4 ++-- jigsaw-pieces/mansion/1x2/1/a1.json | 4 ++-- jigsaw-pieces/mansion/1x2/1/a2.json | 4 ++-- jigsaw-pieces/mansion/1x2/1/a3.json | 4 ++-- jigsaw-pieces/mansion/1x2/1/a4.json | 4 ++-- jigsaw-pieces/mansion/1x2/1/a5.json | 4 ++-- jigsaw-pieces/mansion/1x2/1/a6.json | 4 ++-- jigsaw-pieces/mansion/1x2/1/a7.json | 4 ++-- jigsaw-pieces/mansion/1x2/1/a8.json | 4 ++-- jigsaw-pieces/mansion/1x2/1/a9.json | 4 ++-- jigsaw-pieces/mansion/1x2/1/b1.json | 4 ++-- jigsaw-pieces/mansion/1x2/1/b2.json | 4 ++-- jigsaw-pieces/mansion/1x2/1/b3.json | 4 ++-- jigsaw-pieces/mansion/1x2/1/b4.json | 4 ++-- jigsaw-pieces/mansion/1x2/1/b5.json | 4 ++-- jigsaw-pieces/mansion/1x2/1/c1.json | 4 ++-- jigsaw-pieces/mansion/1x2/1/c2.json | 4 ++-- jigsaw-pieces/mansion/1x2/1/c3.json | 4 ++-- jigsaw-pieces/mansion/1x2/1/c4.json | 4 ++-- jigsaw-pieces/mansion/1x2/2/d1.json | 4 ++-- jigsaw-pieces/mansion/1x2/2/d2.json | 4 ++-- jigsaw-pieces/mansion/1x2/2/d3.json | 4 ++-- jigsaw-pieces/mansion/1x2/2/d4.json | 4 ++-- jigsaw-pieces/mansion/1x2/2/d5.json | 4 ++-- jigsaw-pieces/mansion/1x2/2/s1.json | 4 ++-- jigsaw-pieces/mansion/1x2/2/s2.json | 4 ++-- jigsaw-pieces/mansion/1x2/2/se1.json | 4 ++-- jigsaw-pieces/mansion/2x2/1/a1.json | 4 ++-- jigsaw-pieces/mansion/2x2/1/a2.json | 4 ++-- jigsaw-pieces/mansion/2x2/1/a3.json | 4 ++-- jigsaw-pieces/mansion/2x2/1/a4.json | 4 ++-- jigsaw-pieces/mansion/2x2/2/b1.json | 4 ++-- jigsaw-pieces/mansion/2x2/2/b2.json | 4 ++-- jigsaw-pieces/mansion/2x2/2/b3.json | 4 ++-- jigsaw-pieces/mansion/2x2/2/b4.json | 4 ++-- jigsaw-pieces/mansion/2x2/2/b5.json | 4 ++-- jigsaw-pieces/mansion/2x2/2/s1.json | 4 ++-- jigsaw-pieces/mansion/path/path_1.json | 4 ++-- jigsaw-pieces/mansion/path/path_2.json | 4 ++-- jigsaw-pieces/mansion/path_2/path_1.json | 4 ++-- jigsaw-pieces/mansion/path_2/path_2.json | 4 ++-- jigsaw-pieces/mansion/stairs/stairs_left.json | 4 ++-- jigsaw-pieces/mansion/stairs/stairs_straight.json | 4 ++-- jigsaw-pieces/pillager_outpost/feature_plate.json | 2 +- jigsaw-pieces/pillager_outpost/regular/feature_cage2.json | 2 +- jigsaw-pieces/pillager_outpost/watchtower.json | 2 +- jigsaw-pieces/pillager_outpost/watchtower_overgrown.json | 2 +- jigsaw-pieces/stronghold/portal/main.json | 4 ++-- jigsaw-pieces/stronghold/portal/top.json | 4 ++-- jigsaw-pieces/village/desert/houses/desert_animal_pen_1.json | 2 +- jigsaw-pieces/village/desert/houses/desert_animal_pen_2.json | 2 +- jigsaw-pieces/village/desert/houses/desert_armorer_1.json | 2 +- .../village/desert/houses/desert_butcher_shop_1.json | 2 +- .../village/desert/houses/desert_cartographer_house_1.json | 2 +- jigsaw-pieces/village/desert/houses/desert_farm_1.json | 2 +- jigsaw-pieces/village/desert/houses/desert_farm_2.json | 2 +- jigsaw-pieces/village/desert/houses/desert_fisher_1.json | 2 +- .../village/desert/houses/desert_fletcher_house_1.json | 2 +- jigsaw-pieces/village/desert/houses/desert_large_farm_1.json | 2 +- jigsaw-pieces/village/desert/houses/desert_library_1.json | 2 +- jigsaw-pieces/village/desert/houses/desert_mason_1.json | 2 +- .../village/desert/houses/desert_medium_house_1.json | 2 +- .../village/desert/houses/desert_medium_house_2.json | 2 +- .../village/desert/houses/desert_shepherd_house_1.json | 2 +- jigsaw-pieces/village/desert/houses/desert_small_house_1.json | 2 +- jigsaw-pieces/village/desert/houses/desert_small_house_2.json | 2 +- jigsaw-pieces/village/desert/houses/desert_small_house_3.json | 2 +- jigsaw-pieces/village/desert/houses/desert_small_house_4.json | 2 +- jigsaw-pieces/village/desert/houses/desert_small_house_5.json | 2 +- jigsaw-pieces/village/desert/houses/desert_small_house_6.json | 2 +- jigsaw-pieces/village/desert/houses/desert_small_house_7.json | 2 +- jigsaw-pieces/village/desert/houses/desert_small_house_8.json | 2 +- jigsaw-pieces/village/desert/houses/desert_tannery_1.json | 2 +- jigsaw-pieces/village/desert/houses/desert_temple_1.json | 2 +- jigsaw-pieces/village/desert/houses/desert_temple_2.json | 2 +- jigsaw-pieces/village/desert/houses/desert_tool_smith_1.json | 2 +- jigsaw-pieces/village/desert/houses/desert_weaponsmith_1.json | 2 +- .../village/desert/town_centers/desert_meeting_point_1.json | 2 +- .../village/desert/town_centers/desert_meeting_point_2.json | 2 +- .../village/desert/town_centers/desert_meeting_point_3.json | 2 +- jigsaw-pieces/village/plains/houses/plains_accessory_1.json | 2 +- jigsaw-pieces/village/plains/houses/plains_animal_pen_1.json | 2 +- jigsaw-pieces/village/plains/houses/plains_animal_pen_2.json | 2 +- jigsaw-pieces/village/plains/houses/plains_animal_pen_3.json | 2 +- .../village/plains/houses/plains_armorer_house_1.json | 2 +- jigsaw-pieces/village/plains/houses/plains_big_house_1.json | 2 +- .../village/plains/houses/plains_butcher_shop_1.json | 2 +- .../village/plains/houses/plains_butcher_shop_2.json | 2 +- .../village/plains/houses/plains_cartographer_1.json | 2 +- .../village/plains/houses/plains_fisher_cottage_1.json | 2 +- .../village/plains/houses/plains_fletcher_house_1.json | 2 +- jigsaw-pieces/village/plains/houses/plains_large_farm_1.json | 2 +- jigsaw-pieces/village/plains/houses/plains_library_1.json | 2 +- jigsaw-pieces/village/plains/houses/plains_library_2.json | 2 +- .../village/plains/houses/plains_masons_house_1.json | 2 +- .../village/plains/houses/plains_medium_house_1.json | 2 +- .../village/plains/houses/plains_medium_house_2.json | 2 +- .../village/plains/houses/plains_meeting_point_4.json | 2 +- .../village/plains/houses/plains_meeting_point_5.json | 2 +- .../village/plains/houses/plains_shepherds_house_1.json | 2 +- jigsaw-pieces/village/plains/houses/plains_small_farm_1.json | 2 +- jigsaw-pieces/village/plains/houses/plains_small_house_1.json | 2 +- jigsaw-pieces/village/plains/houses/plains_small_house_2.json | 2 +- jigsaw-pieces/village/plains/houses/plains_small_house_3.json | 2 +- jigsaw-pieces/village/plains/houses/plains_small_house_4.json | 2 +- jigsaw-pieces/village/plains/houses/plains_small_house_5.json | 2 +- jigsaw-pieces/village/plains/houses/plains_small_house_6.json | 2 +- jigsaw-pieces/village/plains/houses/plains_small_house_7.json | 2 +- jigsaw-pieces/village/plains/houses/plains_small_house_8.json | 2 +- jigsaw-pieces/village/plains/houses/plains_stable_1.json | 2 +- jigsaw-pieces/village/plains/houses/plains_stable_2.json | 2 +- jigsaw-pieces/village/plains/houses/plains_tannery_1.json | 2 +- jigsaw-pieces/village/plains/houses/plains_temple_3.json | 2 +- jigsaw-pieces/village/plains/houses/plains_temple_4.json | 2 +- jigsaw-pieces/village/plains/houses/plains_tool_smith_1.json | 2 +- jigsaw-pieces/village/plains/houses/plains_weaponsmith_1.json | 2 +- .../village/plains/town_centers/plains_fountain_01.json | 2 +- .../village/plains/town_centers/plains_meeting_point_1.json | 2 +- .../village/plains/town_centers/plains_meeting_point_2.json | 2 +- .../village/plains/town_centers/plains_meeting_point_3.json | 2 +- .../village/savanna/houses/savanna_animal_pen_1.json | 2 +- .../village/savanna/houses/savanna_butchers_shop_1.json | 2 +- .../village/savanna/houses/savanna_fisher_cottage_1.json | 2 +- .../village/savanna/houses/savanna_fletcher_house_1.json | 2 +- .../village/savanna/houses/savanna_large_farm_1.json | 2 +- .../village/savanna/houses/savanna_large_farm_2.json | 2 +- jigsaw-pieces/village/savanna/houses/savanna_library_1.json | 2 +- jigsaw-pieces/village/savanna/houses/savanna_mason_1.json | 2 +- .../village/savanna/houses/savanna_medium_house_1.json | 2 +- .../village/savanna/houses/savanna_medium_house_2.json | 2 +- jigsaw-pieces/village/savanna/houses/savanna_shepherd_1.json | 2 +- .../village/savanna/houses/savanna_small_house_1.json | 2 +- .../village/savanna/houses/savanna_small_house_2.json | 2 +- .../village/savanna/houses/savanna_small_house_3.json | 2 +- .../village/savanna/houses/savanna_small_house_4.json | 2 +- .../village/savanna/houses/savanna_small_house_5.json | 2 +- .../village/savanna/houses/savanna_small_house_6.json | 2 +- .../village/savanna/houses/savanna_small_house_7.json | 2 +- .../village/savanna/houses/savanna_small_house_8.json | 2 +- jigsaw-pieces/village/savanna/houses/savanna_tannery_1.json | 2 +- jigsaw-pieces/village/savanna/houses/savanna_temple_1.json | 2 +- jigsaw-pieces/village/savanna/houses/savanna_temple_2.json | 2 +- .../village/savanna/houses/savanna_tool_smith_1.json | 2 +- .../village/savanna/houses/savanna_weaponsmith_1.json | 2 +- .../village/savanna/houses/savanna_weaponsmith_2.json | 2 +- jigsaw-pieces/village/taiga/houses/taiga_animal_pen_1.json | 2 +- jigsaw-pieces/village/taiga/houses/taiga_armorer_2.json | 2 +- jigsaw-pieces/village/taiga/houses/taiga_armorer_house_1.json | 2 +- jigsaw-pieces/village/taiga/houses/taiga_butcher_shop_1.json | 2 +- .../village/taiga/houses/taiga_cartographer_house_1.json | 2 +- .../village/taiga/houses/taiga_fisher_cottage_1.json | 2 +- .../village/taiga/houses/taiga_fletcher_house_1.json | 2 +- jigsaw-pieces/village/taiga/houses/taiga_large_farm_1.json | 2 +- jigsaw-pieces/village/taiga/houses/taiga_large_farm_2.json | 2 +- jigsaw-pieces/village/taiga/houses/taiga_library_1.json | 2 +- jigsaw-pieces/village/taiga/houses/taiga_masons_house_1.json | 2 +- jigsaw-pieces/village/taiga/houses/taiga_medium_house_1.json | 2 +- jigsaw-pieces/village/taiga/houses/taiga_medium_house_2.json | 2 +- jigsaw-pieces/village/taiga/houses/taiga_medium_house_3.json | 2 +- jigsaw-pieces/village/taiga/houses/taiga_medium_house_4.json | 2 +- .../village/taiga/houses/taiga_shepherds_house_1.json | 2 +- jigsaw-pieces/village/taiga/houses/taiga_small_farm_1.json | 2 +- jigsaw-pieces/village/taiga/houses/taiga_small_house_1.json | 2 +- jigsaw-pieces/village/taiga/houses/taiga_small_house_2.json | 2 +- jigsaw-pieces/village/taiga/houses/taiga_small_house_3.json | 2 +- jigsaw-pieces/village/taiga/houses/taiga_small_house_4.json | 2 +- jigsaw-pieces/village/taiga/houses/taiga_small_house_5.json | 2 +- jigsaw-pieces/village/taiga/houses/taiga_tannery_1.json | 2 +- jigsaw-pieces/village/taiga/houses/taiga_temple_1.json | 2 +- jigsaw-pieces/village/taiga/houses/taiga_tool_smith_1.json | 2 +- jigsaw-pieces/village/taiga/houses/taiga_weaponsmith_1.json | 2 +- jigsaw-pieces/village/taiga/houses/taiga_weaponsmith_2.json | 2 +- regions/frozen.json | 2 +- regions/hot.json | 2 +- regions/temperate.json | 2 +- regions/tropical.json | 2 +- 232 files changed, 296 insertions(+), 296 deletions(-) diff --git a/biomes/hot/desert-dunes-red.json b/biomes/hot/desert-dunes-red.json index bfd45ce0..2d373224 100644 --- a/biomes/hot/desert-dunes-red.json +++ b/biomes/hot/desert-dunes-red.json @@ -78,7 +78,7 @@ }, { "chance": 0.0014, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "rotation": { "yAxis": { "min": 0, diff --git a/biomes/hot/desert-dunes.json b/biomes/hot/desert-dunes.json index 4c27ced1..7c7740b9 100644 --- a/biomes/hot/desert-dunes.json +++ b/biomes/hot/desert-dunes.json @@ -55,7 +55,7 @@ }, { "chance": 0.0018, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "rotation": { "yAxis": { "min": 0, diff --git a/biomes/mesa/blue.json b/biomes/mesa/blue.json index 8bb75acb..4998ef63 100644 --- a/biomes/mesa/blue.json +++ b/biomes/mesa/blue.json @@ -117,7 +117,7 @@ "chance": 0.2 } ], - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY" }], "lockLayers": true, diff --git a/biomes/mesa/dark.json b/biomes/mesa/dark.json index e0894234..2dd0711d 100644 --- a/biomes/mesa/dark.json +++ b/biomes/mesa/dark.json @@ -135,7 +135,7 @@ "chance": 0.2 } ], - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY" }], "childShrinkFactor": 0.35, diff --git a/biomes/mesa/green.json b/biomes/mesa/green.json index 585fb995..0a6813ac 100644 --- a/biomes/mesa/green.json +++ b/biomes/mesa/green.json @@ -117,7 +117,7 @@ "chance": 0.2 } ], - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY" }], "lockLayers": true, diff --git a/biomes/mesa/red.json b/biomes/mesa/red.json index ac2f6c29..91db5d17 100644 --- a/biomes/mesa/red.json +++ b/biomes/mesa/red.json @@ -123,7 +123,7 @@ "chance": 0.2 } ], - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY" }], "lockLayers": true, diff --git a/biomes/mountain/hills.json b/biomes/mountain/hills.json index 7ea202b8..6f556c2c 100644 --- a/biomes/mountain/hills.json +++ b/biomes/mountain/hills.json @@ -143,7 +143,7 @@ }, { "chance": 1.0E-4, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "rotation": { "yAxis": { "min": 0, diff --git a/biomes/mountain/plains.json b/biomes/mountain/plains.json index 3705ab0b..210ec4fe 100644 --- a/biomes/mountain/plains.json +++ b/biomes/mountain/plains.json @@ -166,7 +166,7 @@ }, { "chance": 3.0E-4, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "rotation": { "yAxis": { "min": 0, diff --git a/biomes/mushroom/crimson-forest.json b/biomes/mushroom/crimson-forest.json index 08576e5c..80d3eef4 100644 --- a/biomes/mushroom/crimson-forest.json +++ b/biomes/mushroom/crimson-forest.json @@ -118,7 +118,7 @@ "trees/mushroom/mushclut9", "trees/mushroom/mushclut10" ], - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "translate": { "x": 0, "y": -1, diff --git a/biomes/mushroom/shore/beach.json b/biomes/mushroom/shore/beach.json index 7b079843..bf9615c5 100644 --- a/biomes/mushroom/shore/beach.json +++ b/biomes/mushroom/shore/beach.json @@ -74,7 +74,7 @@ "chance": 0.2 } ], - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY" }], "slab": { diff --git a/biomes/ocean/ocean.json b/biomes/ocean/ocean.json index 35d3ce3d..e53be1ee 100644 --- a/biomes/ocean/ocean.json +++ b/biomes/ocean/ocean.json @@ -148,7 +148,7 @@ "structures/oruins3" ], "chance": 0.008, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "underwater": true, "waterloggable": true } diff --git a/biomes/swamp/cambian-drift.json b/biomes/swamp/cambian-drift.json index 108dca38..efe3d06c 100644 --- a/biomes/swamp/cambian-drift.json +++ b/biomes/swamp/cambian-drift.json @@ -240,7 +240,7 @@ "clutter/stump5", "clutter/stump6" ], - "mode": "VACUUM" + "mode": "FAST_MIN_HEIGHT" }, { "chance": 0.3, diff --git a/biomes/swamp/roofed-forest.json b/biomes/swamp/roofed-forest.json index 5fd99dc4..c6ef9bfe 100644 --- a/biomes/swamp/roofed-forest.json +++ b/biomes/swamp/roofed-forest.json @@ -298,7 +298,7 @@ "clutter/stump5", "clutter/stump6" ], - "mode": "VACUUM" + "mode": "FAST_MIN_HEIGHT" }, { "chance": 0.3, diff --git a/biomes/swamp/roofed-wayward.json b/biomes/swamp/roofed-wayward.json index 0eef688f..0c9379aa 100644 --- a/biomes/swamp/roofed-wayward.json +++ b/biomes/swamp/roofed-wayward.json @@ -274,7 +274,7 @@ "clutter/stump5", "clutter/stump6" ], - "mode": "VACUUM" + "mode": "FAST_MIN_HEIGHT" }, { "chance": 0.3, diff --git a/biomes/swamp/sea/ocean-tree.json b/biomes/swamp/sea/ocean-tree.json index e462758c..173629b8 100644 --- a/biomes/swamp/sea/ocean-tree.json +++ b/biomes/swamp/sea/ocean-tree.json @@ -142,7 +142,7 @@ } }, { - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "place": [ "trees/jungle/lgeneric1", "trees/jungle/lgeneric2", diff --git a/biomes/swamp/willow-forest.json b/biomes/swamp/willow-forest.json index 97154a55..48d5ed71 100644 --- a/biomes/swamp/willow-forest.json +++ b/biomes/swamp/willow-forest.json @@ -192,7 +192,7 @@ "trees/darkoak/willowgeneric1", "trees/darkoak/willowgeneric2" ], - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "translate": { "x": 24, "y": -3, @@ -300,7 +300,7 @@ "clutter/stump5", "clutter/stump6" ], - "mode": "VACUUM" + "mode": "FAST_MIN_HEIGHT" }, { "chance": 5.0E-5, diff --git a/biomes/temperate/lush-plains-red.json b/biomes/temperate/lush-plains-red.json index 537ad6a2..4bf070e0 100644 --- a/biomes/temperate/lush-plains-red.json +++ b/biomes/temperate/lush-plains-red.json @@ -86,7 +86,7 @@ ], "objects": [ { - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "chance": 0.009, "rotation": { "yAxis": { @@ -144,7 +144,7 @@ }, { "chance": 1.0E-4, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "rotation": { "yAxis": { "min": 0, diff --git a/biomes/temperate/lush-plains-yellow.json b/biomes/temperate/lush-plains-yellow.json index a44ab1d5..87d40fa3 100644 --- a/biomes/temperate/lush-plains-yellow.json +++ b/biomes/temperate/lush-plains-yellow.json @@ -86,7 +86,7 @@ ], "objects": [ { - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "chance": 0.009, "rotation": { "yAxis": { @@ -144,7 +144,7 @@ }, { "chance": 1.0E-4, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "rotation": { "yAxis": { "min": 0, diff --git a/biomes/temperate/lush-plains.json b/biomes/temperate/lush-plains.json index cf2bbf4c..fe7fdb4d 100644 --- a/biomes/temperate/lush-plains.json +++ b/biomes/temperate/lush-plains.json @@ -106,7 +106,7 @@ ], "objects": [ { - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "chance": 0.009, "rotation": { "yAxis": { @@ -164,7 +164,7 @@ }, { "chance": 1.0E-4, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "rotation": { "yAxis": { "min": 0, diff --git a/biomes/temperate/meadows.json b/biomes/temperate/meadows.json index d147694c..58a69b12 100644 --- a/biomes/temperate/meadows.json +++ b/biomes/temperate/meadows.json @@ -100,7 +100,7 @@ ], "objects": [ { - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "chance": 0.009, "rotation": { "yAxis": { @@ -158,7 +158,7 @@ }, { "chance": 1.0E-4, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "rotation": { "yAxis": { "min": 0, diff --git a/biomes/temperate/plateau.json b/biomes/temperate/plateau.json index 574d7a23..4451d0e9 100644 --- a/biomes/temperate/plateau.json +++ b/biomes/temperate/plateau.json @@ -94,7 +94,7 @@ "chance": 0.2 } ], - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY" }, { diff --git a/biomes/tropical/island-beach.json b/biomes/tropical/island-beach.json index da754af5..79bc983c 100644 --- a/biomes/tropical/island-beach.json +++ b/biomes/tropical/island-beach.json @@ -84,7 +84,7 @@ }, "enabled": true }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "place": [ "trees/jungle/palm1", "trees/jungle/palm2", diff --git a/biomes/tundra/autumn.json b/biomes/tundra/autumn.json index 3a05a500..bf84b7b4 100644 --- a/biomes/tundra/autumn.json +++ b/biomes/tundra/autumn.json @@ -466,7 +466,7 @@ "replace": {"palette": [{"block": "minecraft:spruce_wood"}]} } ], - "mode": "VACUUM" + "mode": "FAST_MIN_HEIGHT" }, { "chance": 0.008, diff --git a/biomes/tundra/bonsai-forest.json b/biomes/tundra/bonsai-forest.json index 6d852180..a3ac5dae 100644 --- a/biomes/tundra/bonsai-forest.json +++ b/biomes/tundra/bonsai-forest.json @@ -325,7 +325,7 @@ "clutter/stump5", "clutter/stump6" ], - "mode": "VACUUM" + "mode": "FAST_MIN_HEIGHT" } ], "wall": { diff --git a/biomes/tundra/ether.json b/biomes/tundra/ether.json index 79cf3605..27bf44bd 100644 --- a/biomes/tundra/ether.json +++ b/biomes/tundra/ether.json @@ -79,7 +79,7 @@ "structures/woodhand3" ], "chance": 0.07, - "mode": "VACUUM" + "mode": "FAST_MIN_HEIGHT" }, { "chance": 0.8, diff --git a/biomes/tundra/mountains-cliffs.json b/biomes/tundra/mountains-cliffs.json index b1cf01a1..f3d19202 100644 --- a/biomes/tundra/mountains-cliffs.json +++ b/biomes/tundra/mountains-cliffs.json @@ -231,7 +231,7 @@ "clutter/stump5", "clutter/stump6" ], - "mode": "VACUUM" + "mode": "FAST_MIN_HEIGHT" }, { "chance": 0.125, diff --git a/biomes/tundra/redwood-cliffs.json b/biomes/tundra/redwood-cliffs.json index f75b8e1c..c2492289 100644 --- a/biomes/tundra/redwood-cliffs.json +++ b/biomes/tundra/redwood-cliffs.json @@ -407,7 +407,7 @@ "replace": {"palette": [{"block": "minecraft:spruce_wood"}]} } ], - "mode": "VACUUM" + "mode": "FAST_MIN_HEIGHT" } ] } diff --git a/biomes/tundra/redwood-forest.json b/biomes/tundra/redwood-forest.json index 1dc47cb4..a7094f08 100644 --- a/biomes/tundra/redwood-forest.json +++ b/biomes/tundra/redwood-forest.json @@ -368,7 +368,7 @@ "replace": {"palette": [{"block": "minecraft:spruce_wood"}]} } ], - "mode": "VACUUM" + "mode": "FAST_MIN_HEIGHT" } ] } diff --git a/biomes/tundra/sequia-redwoods.json b/biomes/tundra/sequia-redwoods.json index 1811474e..c8ac809f 100644 --- a/biomes/tundra/sequia-redwoods.json +++ b/biomes/tundra/sequia-redwoods.json @@ -291,7 +291,7 @@ "clutter/stump5", "clutter/stump6" ], - "mode": "VACUUM" + "mode": "FAST_MIN_HEIGHT" }, { "chance": 0.008, diff --git a/biomes/tundra/shore/beach-stone.json b/biomes/tundra/shore/beach-stone.json index 0e62244f..8c62105c 100644 --- a/biomes/tundra/shore/beach-stone.json +++ b/biomes/tundra/shore/beach-stone.json @@ -66,7 +66,7 @@ "chance": 0.2 } ], - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY" }], "slab": { diff --git a/biomes/tundra/shore/beach.json b/biomes/tundra/shore/beach.json index c41ba2e0..78726703 100644 --- a/biomes/tundra/shore/beach.json +++ b/biomes/tundra/shore/beach.json @@ -125,7 +125,7 @@ "chance": 0.2 } ], - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY" }], "slab": { diff --git a/biomes/tundra/taiga.json b/biomes/tundra/taiga.json index a3559cef..b6410453 100644 --- a/biomes/tundra/taiga.json +++ b/biomes/tundra/taiga.json @@ -268,7 +268,7 @@ "clutter/stump5", "clutter/stump6" ], - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "translate": { "x": 0, "y": -1, diff --git a/biomes/util/ruined_portals.json b/biomes/util/ruined_portals.json index bb8bc798..f39c69ee 100644 --- a/biomes/util/ruined_portals.json +++ b/biomes/util/ruined_portals.json @@ -53,13 +53,13 @@ "chance": 0.2 } ], - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "CARVING_ONLY" }, { "name": "standard-underground", "chance": 0.2, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "place": [ "clutter/swordnp2", "clutter/swordnp1", diff --git a/jigsaw-pieces/houses/jap/j1.json b/jigsaw-pieces/houses/jap/j1.json index d49005f1..67213f34 100644 --- a/jigsaw-pieces/houses/jap/j1.json +++ b/jigsaw-pieces/houses/jap/j1.json @@ -57,7 +57,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/houses/jap/j10.json b/jigsaw-pieces/houses/jap/j10.json index 2ea6bd7b..7224c9af 100644 --- a/jigsaw-pieces/houses/jap/j10.json +++ b/jigsaw-pieces/houses/jap/j10.json @@ -74,7 +74,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/houses/jap/j2.json b/jigsaw-pieces/houses/jap/j2.json index 6e29175d..598e1c49 100644 --- a/jigsaw-pieces/houses/jap/j2.json +++ b/jigsaw-pieces/houses/jap/j2.json @@ -57,7 +57,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/houses/jap/j3.json b/jigsaw-pieces/houses/jap/j3.json index 1b6a0276..1c59a311 100644 --- a/jigsaw-pieces/houses/jap/j3.json +++ b/jigsaw-pieces/houses/jap/j3.json @@ -57,7 +57,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/houses/jap/j4.json b/jigsaw-pieces/houses/jap/j4.json index 9f5784dc..280bb7f8 100644 --- a/jigsaw-pieces/houses/jap/j4.json +++ b/jigsaw-pieces/houses/jap/j4.json @@ -57,7 +57,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/houses/jap/j5.json b/jigsaw-pieces/houses/jap/j5.json index e08b5fd9..ef8abad4 100644 --- a/jigsaw-pieces/houses/jap/j5.json +++ b/jigsaw-pieces/houses/jap/j5.json @@ -57,7 +57,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/houses/jap/j6.json b/jigsaw-pieces/houses/jap/j6.json index e649e9e4..553027d2 100644 --- a/jigsaw-pieces/houses/jap/j6.json +++ b/jigsaw-pieces/houses/jap/j6.json @@ -57,7 +57,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/houses/jap/j7.json b/jigsaw-pieces/houses/jap/j7.json index 72e408c2..cfd8c985 100644 --- a/jigsaw-pieces/houses/jap/j7.json +++ b/jigsaw-pieces/houses/jap/j7.json @@ -57,7 +57,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/houses/jap/j8.json b/jigsaw-pieces/houses/jap/j8.json index e24ae745..445f5ed6 100644 --- a/jigsaw-pieces/houses/jap/j8.json +++ b/jigsaw-pieces/houses/jap/j8.json @@ -89,7 +89,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/houses/jap/j9.json b/jigsaw-pieces/houses/jap/j9.json index b0dfb321..97b84476 100644 --- a/jigsaw-pieces/houses/jap/j9.json +++ b/jigsaw-pieces/houses/jap/j9.json @@ -57,7 +57,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/mansion/1x1/1/a1.json b/jigsaw-pieces/mansion/1x1/1/a1.json index 6cca7c20..8d00c82a 100644 --- a/jigsaw-pieces/mansion/1x1/1/a1.json +++ b/jigsaw-pieces/mansion/1x1/1/a1.json @@ -49,8 +49,8 @@ "overStilt": 0, "boreExtendMaxY": 0, "boreExtendMinY": 0, - "vacuumInterpolationRadius": 16, - "vacuumInterpolationMethod": "BILINEAR_STARCAST_9", + "FAST_MIN_HEIGHTInterpolationRadius": 16, + "FAST_MIN_HEIGHTInterpolationMethod": "BILINEAR_STARCAST_9", "underwater": false, "carvingSupport": "SURFACE_ONLY", "smartBore": false, diff --git a/jigsaw-pieces/mansion/1x1/1/a2.json b/jigsaw-pieces/mansion/1x1/1/a2.json index 87af8740..b1767be7 100644 --- a/jigsaw-pieces/mansion/1x1/1/a2.json +++ b/jigsaw-pieces/mansion/1x1/1/a2.json @@ -49,8 +49,8 @@ "overStilt": 0, "boreExtendMaxY": 0, "boreExtendMinY": 0, - "vacuumInterpolationRadius": 16, - "vacuumInterpolationMethod": "BILINEAR_STARCAST_9", + "FAST_MIN_HEIGHTInterpolationRadius": 16, + "FAST_MIN_HEIGHTInterpolationMethod": "BILINEAR_STARCAST_9", "underwater": false, "carvingSupport": "SURFACE_ONLY", "smartBore": false, diff --git a/jigsaw-pieces/mansion/1x1/1/a3.json b/jigsaw-pieces/mansion/1x1/1/a3.json index 2291a1ea..7a0e9708 100644 --- a/jigsaw-pieces/mansion/1x1/1/a3.json +++ b/jigsaw-pieces/mansion/1x1/1/a3.json @@ -49,8 +49,8 @@ "overStilt": 0, "boreExtendMaxY": 0, "boreExtendMinY": 0, - "vacuumInterpolationRadius": 16, - "vacuumInterpolationMethod": "BILINEAR_STARCAST_9", + "FAST_MIN_HEIGHTInterpolationRadius": 16, + "FAST_MIN_HEIGHTInterpolationMethod": "BILINEAR_STARCAST_9", "underwater": false, "carvingSupport": "SURFACE_ONLY", "smartBore": false, diff --git a/jigsaw-pieces/mansion/1x1/1/a4.json b/jigsaw-pieces/mansion/1x1/1/a4.json index 59bb787a..a54b5bbd 100644 --- a/jigsaw-pieces/mansion/1x1/1/a4.json +++ b/jigsaw-pieces/mansion/1x1/1/a4.json @@ -49,8 +49,8 @@ "overStilt": 0, "boreExtendMaxY": 0, "boreExtendMinY": 0, - "vacuumInterpolationRadius": 16, - "vacuumInterpolationMethod": "BILINEAR_STARCAST_9", + "FAST_MIN_HEIGHTInterpolationRadius": 16, + "FAST_MIN_HEIGHTInterpolationMethod": "BILINEAR_STARCAST_9", "underwater": false, "carvingSupport": "SURFACE_ONLY", "smartBore": false, diff --git a/jigsaw-pieces/mansion/1x1/1/a5.json b/jigsaw-pieces/mansion/1x1/1/a5.json index 5c047e49..9513fe44 100644 --- a/jigsaw-pieces/mansion/1x1/1/a5.json +++ b/jigsaw-pieces/mansion/1x1/1/a5.json @@ -49,8 +49,8 @@ "overStilt": 0, "boreExtendMaxY": 0, "boreExtendMinY": 0, - "vacuumInterpolationRadius": 16, - "vacuumInterpolationMethod": "BILINEAR_STARCAST_9", + "FAST_MIN_HEIGHTInterpolationRadius": 16, + "FAST_MIN_HEIGHTInterpolationMethod": "BILINEAR_STARCAST_9", "underwater": false, "carvingSupport": "SURFACE_ONLY", "smartBore": false, diff --git a/jigsaw-pieces/mansion/1x1/1/as1.json b/jigsaw-pieces/mansion/1x1/1/as1.json index 02566b2a..54ad56b2 100644 --- a/jigsaw-pieces/mansion/1x1/1/as1.json +++ b/jigsaw-pieces/mansion/1x1/1/as1.json @@ -49,8 +49,8 @@ "overStilt": 0, "boreExtendMaxY": 0, "boreExtendMinY": 0, - "vacuumInterpolationRadius": 16, - "vacuumInterpolationMethod": "BILINEAR_STARCAST_9", + "FAST_MIN_HEIGHTInterpolationRadius": 16, + "FAST_MIN_HEIGHTInterpolationMethod": "BILINEAR_STARCAST_9", "underwater": false, "carvingSupport": "SURFACE_ONLY", "smartBore": false, diff --git a/jigsaw-pieces/mansion/1x1/1/as2.json b/jigsaw-pieces/mansion/1x1/1/as2.json index 0947c5c2..4dbec5b1 100644 --- a/jigsaw-pieces/mansion/1x1/1/as2.json +++ b/jigsaw-pieces/mansion/1x1/1/as2.json @@ -49,8 +49,8 @@ "overStilt": 0, "boreExtendMaxY": 0, "boreExtendMinY": 0, - "vacuumInterpolationRadius": 16, - "vacuumInterpolationMethod": "BILINEAR_STARCAST_9", + "FAST_MIN_HEIGHTInterpolationRadius": 16, + "FAST_MIN_HEIGHTInterpolationMethod": "BILINEAR_STARCAST_9", "underwater": false, "carvingSupport": "SURFACE_ONLY", "smartBore": false, diff --git a/jigsaw-pieces/mansion/1x1/1/as3.json b/jigsaw-pieces/mansion/1x1/1/as3.json index 89161d7c..56cd90c2 100644 --- a/jigsaw-pieces/mansion/1x1/1/as3.json +++ b/jigsaw-pieces/mansion/1x1/1/as3.json @@ -49,8 +49,8 @@ "overStilt": 0, "boreExtendMaxY": 0, "boreExtendMinY": 0, - "vacuumInterpolationRadius": 16, - "vacuumInterpolationMethod": "BILINEAR_STARCAST_9", + "FAST_MIN_HEIGHTInterpolationRadius": 16, + "FAST_MIN_HEIGHTInterpolationMethod": "BILINEAR_STARCAST_9", "underwater": false, "carvingSupport": "SURFACE_ONLY", "smartBore": false, diff --git a/jigsaw-pieces/mansion/1x1/1/as4.json b/jigsaw-pieces/mansion/1x1/1/as4.json index 5d89e91f..0582b902 100644 --- a/jigsaw-pieces/mansion/1x1/1/as4.json +++ b/jigsaw-pieces/mansion/1x1/1/as4.json @@ -49,8 +49,8 @@ "overStilt": 0, "boreExtendMaxY": 0, "boreExtendMinY": 0, - "vacuumInterpolationRadius": 16, - "vacuumInterpolationMethod": "BILINEAR_STARCAST_9", + "FAST_MIN_HEIGHTInterpolationRadius": 16, + "FAST_MIN_HEIGHTInterpolationMethod": "BILINEAR_STARCAST_9", "underwater": false, "carvingSupport": "SURFACE_ONLY", "smartBore": false, diff --git a/jigsaw-pieces/mansion/1x1/2/b1.json b/jigsaw-pieces/mansion/1x1/2/b1.json index 71760179..b7056764 100644 --- a/jigsaw-pieces/mansion/1x1/2/b1.json +++ b/jigsaw-pieces/mansion/1x1/2/b1.json @@ -49,8 +49,8 @@ "overStilt": 0, "boreExtendMaxY": 0, "boreExtendMinY": 0, - "vacuumInterpolationRadius": 16, - "vacuumInterpolationMethod": "BILINEAR_STARCAST_9", + "FAST_MIN_HEIGHTInterpolationRadius": 16, + "FAST_MIN_HEIGHTInterpolationMethod": "BILINEAR_STARCAST_9", "underwater": false, "carvingSupport": "SURFACE_ONLY", "smartBore": false, diff --git a/jigsaw-pieces/mansion/1x1/2/b2.json b/jigsaw-pieces/mansion/1x1/2/b2.json index ef21096c..02ece56c 100644 --- a/jigsaw-pieces/mansion/1x1/2/b2.json +++ b/jigsaw-pieces/mansion/1x1/2/b2.json @@ -49,8 +49,8 @@ "overStilt": 0, "boreExtendMaxY": 0, "boreExtendMinY": 0, - "vacuumInterpolationRadius": 16, - "vacuumInterpolationMethod": "BILINEAR_STARCAST_9", + "FAST_MIN_HEIGHTInterpolationRadius": 16, + "FAST_MIN_HEIGHTInterpolationMethod": "BILINEAR_STARCAST_9", "underwater": false, "carvingSupport": "SURFACE_ONLY", "smartBore": false, diff --git a/jigsaw-pieces/mansion/1x1/2/b3.json b/jigsaw-pieces/mansion/1x1/2/b3.json index af0a8296..47fc0ae1 100644 --- a/jigsaw-pieces/mansion/1x1/2/b3.json +++ b/jigsaw-pieces/mansion/1x1/2/b3.json @@ -49,8 +49,8 @@ "overStilt": 0, "boreExtendMaxY": 0, "boreExtendMinY": 0, - "vacuumInterpolationRadius": 16, - "vacuumInterpolationMethod": "BILINEAR_STARCAST_9", + "FAST_MIN_HEIGHTInterpolationRadius": 16, + "FAST_MIN_HEIGHTInterpolationMethod": "BILINEAR_STARCAST_9", "underwater": false, "carvingSupport": "SURFACE_ONLY", "smartBore": false, diff --git a/jigsaw-pieces/mansion/1x1/2/b4.json b/jigsaw-pieces/mansion/1x1/2/b4.json index 9d4f5ee9..2a0ce301 100644 --- a/jigsaw-pieces/mansion/1x1/2/b4.json +++ b/jigsaw-pieces/mansion/1x1/2/b4.json @@ -49,8 +49,8 @@ "overStilt": 0, "boreExtendMaxY": 0, "boreExtendMinY": 0, - "vacuumInterpolationRadius": 16, - "vacuumInterpolationMethod": "BILINEAR_STARCAST_9", + "FAST_MIN_HEIGHTInterpolationRadius": 16, + "FAST_MIN_HEIGHTInterpolationMethod": "BILINEAR_STARCAST_9", "underwater": false, "carvingSupport": "SURFACE_ONLY", "smartBore": false, diff --git a/jigsaw-pieces/mansion/1x1/2/b5.json b/jigsaw-pieces/mansion/1x1/2/b5.json index 01a6a809..a9799b1c 100644 --- a/jigsaw-pieces/mansion/1x1/2/b5.json +++ b/jigsaw-pieces/mansion/1x1/2/b5.json @@ -49,8 +49,8 @@ "overStilt": 0, "boreExtendMaxY": 0, "boreExtendMinY": 0, - "vacuumInterpolationRadius": 16, - "vacuumInterpolationMethod": "BILINEAR_STARCAST_9", + "FAST_MIN_HEIGHTInterpolationRadius": 16, + "FAST_MIN_HEIGHTInterpolationMethod": "BILINEAR_STARCAST_9", "underwater": false, "carvingSupport": "SURFACE_ONLY", "smartBore": false, diff --git a/jigsaw-pieces/mansion/1x2/1/a1.json b/jigsaw-pieces/mansion/1x2/1/a1.json index 72137968..2ab46412 100644 --- a/jigsaw-pieces/mansion/1x2/1/a1.json +++ b/jigsaw-pieces/mansion/1x2/1/a1.json @@ -49,8 +49,8 @@ "overStilt": 0, "boreExtendMaxY": 0, "boreExtendMinY": 0, - "vacuumInterpolationRadius": 16, - "vacuumInterpolationMethod": "BILINEAR_STARCAST_9", + "FAST_MIN_HEIGHTInterpolationRadius": 16, + "FAST_MIN_HEIGHTInterpolationMethod": "BILINEAR_STARCAST_9", "underwater": false, "carvingSupport": "SURFACE_ONLY", "smartBore": false, diff --git a/jigsaw-pieces/mansion/1x2/1/a2.json b/jigsaw-pieces/mansion/1x2/1/a2.json index b696806c..37858a93 100644 --- a/jigsaw-pieces/mansion/1x2/1/a2.json +++ b/jigsaw-pieces/mansion/1x2/1/a2.json @@ -49,8 +49,8 @@ "overStilt": 0, "boreExtendMaxY": 0, "boreExtendMinY": 0, - "vacuumInterpolationRadius": 16, - "vacuumInterpolationMethod": "BILINEAR_STARCAST_9", + "FAST_MIN_HEIGHTInterpolationRadius": 16, + "FAST_MIN_HEIGHTInterpolationMethod": "BILINEAR_STARCAST_9", "underwater": false, "carvingSupport": "SURFACE_ONLY", "smartBore": false, diff --git a/jigsaw-pieces/mansion/1x2/1/a3.json b/jigsaw-pieces/mansion/1x2/1/a3.json index e0d33ff3..fd733415 100644 --- a/jigsaw-pieces/mansion/1x2/1/a3.json +++ b/jigsaw-pieces/mansion/1x2/1/a3.json @@ -49,8 +49,8 @@ "overStilt": 0, "boreExtendMaxY": 0, "boreExtendMinY": 0, - "vacuumInterpolationRadius": 16, - "vacuumInterpolationMethod": "BILINEAR_STARCAST_9", + "FAST_MIN_HEIGHTInterpolationRadius": 16, + "FAST_MIN_HEIGHTInterpolationMethod": "BILINEAR_STARCAST_9", "underwater": false, "carvingSupport": "SURFACE_ONLY", "smartBore": false, diff --git a/jigsaw-pieces/mansion/1x2/1/a4.json b/jigsaw-pieces/mansion/1x2/1/a4.json index 024f84c3..ac413dbd 100644 --- a/jigsaw-pieces/mansion/1x2/1/a4.json +++ b/jigsaw-pieces/mansion/1x2/1/a4.json @@ -49,8 +49,8 @@ "overStilt": 0, "boreExtendMaxY": 0, "boreExtendMinY": 0, - "vacuumInterpolationRadius": 16, - "vacuumInterpolationMethod": "BILINEAR_STARCAST_9", + "FAST_MIN_HEIGHTInterpolationRadius": 16, + "FAST_MIN_HEIGHTInterpolationMethod": "BILINEAR_STARCAST_9", "underwater": false, "carvingSupport": "SURFACE_ONLY", "smartBore": false, diff --git a/jigsaw-pieces/mansion/1x2/1/a5.json b/jigsaw-pieces/mansion/1x2/1/a5.json index 088d0070..6aeb1980 100644 --- a/jigsaw-pieces/mansion/1x2/1/a5.json +++ b/jigsaw-pieces/mansion/1x2/1/a5.json @@ -81,8 +81,8 @@ "overStilt": 0, "boreExtendMaxY": 0, "boreExtendMinY": 0, - "vacuumInterpolationRadius": 16, - "vacuumInterpolationMethod": "BILINEAR_STARCAST_9", + "FAST_MIN_HEIGHTInterpolationRadius": 16, + "FAST_MIN_HEIGHTInterpolationMethod": "BILINEAR_STARCAST_9", "underwater": false, "carvingSupport": "SURFACE_ONLY", "smartBore": false, diff --git a/jigsaw-pieces/mansion/1x2/1/a6.json b/jigsaw-pieces/mansion/1x2/1/a6.json index d3991d57..f91b6726 100644 --- a/jigsaw-pieces/mansion/1x2/1/a6.json +++ b/jigsaw-pieces/mansion/1x2/1/a6.json @@ -49,8 +49,8 @@ "overStilt": 0, "boreExtendMaxY": 0, "boreExtendMinY": 0, - "vacuumInterpolationRadius": 16, - "vacuumInterpolationMethod": "BILINEAR_STARCAST_9", + "FAST_MIN_HEIGHTInterpolationRadius": 16, + "FAST_MIN_HEIGHTInterpolationMethod": "BILINEAR_STARCAST_9", "underwater": false, "carvingSupport": "SURFACE_ONLY", "smartBore": false, diff --git a/jigsaw-pieces/mansion/1x2/1/a7.json b/jigsaw-pieces/mansion/1x2/1/a7.json index 40794a3c..94b2b893 100644 --- a/jigsaw-pieces/mansion/1x2/1/a7.json +++ b/jigsaw-pieces/mansion/1x2/1/a7.json @@ -49,8 +49,8 @@ "overStilt": 0, "boreExtendMaxY": 0, "boreExtendMinY": 0, - "vacuumInterpolationRadius": 16, - "vacuumInterpolationMethod": "BILINEAR_STARCAST_9", + "FAST_MIN_HEIGHTInterpolationRadius": 16, + "FAST_MIN_HEIGHTInterpolationMethod": "BILINEAR_STARCAST_9", "underwater": false, "carvingSupport": "SURFACE_ONLY", "smartBore": false, diff --git a/jigsaw-pieces/mansion/1x2/1/a8.json b/jigsaw-pieces/mansion/1x2/1/a8.json index d6c9d5ef..56b637eb 100644 --- a/jigsaw-pieces/mansion/1x2/1/a8.json +++ b/jigsaw-pieces/mansion/1x2/1/a8.json @@ -49,8 +49,8 @@ "overStilt": 0, "boreExtendMaxY": 0, "boreExtendMinY": 0, - "vacuumInterpolationRadius": 16, - "vacuumInterpolationMethod": "BILINEAR_STARCAST_9", + "FAST_MIN_HEIGHTInterpolationRadius": 16, + "FAST_MIN_HEIGHTInterpolationMethod": "BILINEAR_STARCAST_9", "underwater": false, "carvingSupport": "SURFACE_ONLY", "smartBore": false, diff --git a/jigsaw-pieces/mansion/1x2/1/a9.json b/jigsaw-pieces/mansion/1x2/1/a9.json index 0f18ca51..0b8aee9d 100644 --- a/jigsaw-pieces/mansion/1x2/1/a9.json +++ b/jigsaw-pieces/mansion/1x2/1/a9.json @@ -66,8 +66,8 @@ "overStilt": 0, "boreExtendMaxY": 0, "boreExtendMinY": 0, - "vacuumInterpolationRadius": 16, - "vacuumInterpolationMethod": "BILINEAR_STARCAST_9", + "FAST_MIN_HEIGHTInterpolationRadius": 16, + "FAST_MIN_HEIGHTInterpolationMethod": "BILINEAR_STARCAST_9", "underwater": false, "carvingSupport": "SURFACE_ONLY", "smartBore": false, diff --git a/jigsaw-pieces/mansion/1x2/1/b1.json b/jigsaw-pieces/mansion/1x2/1/b1.json index a3bb7c31..a69c9656 100644 --- a/jigsaw-pieces/mansion/1x2/1/b1.json +++ b/jigsaw-pieces/mansion/1x2/1/b1.json @@ -49,8 +49,8 @@ "overStilt": 0, "boreExtendMaxY": 0, "boreExtendMinY": 0, - "vacuumInterpolationRadius": 16, - "vacuumInterpolationMethod": "BILINEAR_STARCAST_9", + "FAST_MIN_HEIGHTInterpolationRadius": 16, + "FAST_MIN_HEIGHTInterpolationMethod": "BILINEAR_STARCAST_9", "underwater": false, "carvingSupport": "SURFACE_ONLY", "smartBore": false, diff --git a/jigsaw-pieces/mansion/1x2/1/b2.json b/jigsaw-pieces/mansion/1x2/1/b2.json index 21d01049..871df78e 100644 --- a/jigsaw-pieces/mansion/1x2/1/b2.json +++ b/jigsaw-pieces/mansion/1x2/1/b2.json @@ -66,8 +66,8 @@ "overStilt": 0, "boreExtendMaxY": 0, "boreExtendMinY": 0, - "vacuumInterpolationRadius": 16, - "vacuumInterpolationMethod": "BILINEAR_STARCAST_9", + "FAST_MIN_HEIGHTInterpolationRadius": 16, + "FAST_MIN_HEIGHTInterpolationMethod": "BILINEAR_STARCAST_9", "underwater": false, "carvingSupport": "SURFACE_ONLY", "smartBore": false, diff --git a/jigsaw-pieces/mansion/1x2/1/b3.json b/jigsaw-pieces/mansion/1x2/1/b3.json index dc260e16..eb2dc0ba 100644 --- a/jigsaw-pieces/mansion/1x2/1/b3.json +++ b/jigsaw-pieces/mansion/1x2/1/b3.json @@ -49,8 +49,8 @@ "overStilt": 0, "boreExtendMaxY": 0, "boreExtendMinY": 0, - "vacuumInterpolationRadius": 16, - "vacuumInterpolationMethod": "BILINEAR_STARCAST_9", + "FAST_MIN_HEIGHTInterpolationRadius": 16, + "FAST_MIN_HEIGHTInterpolationMethod": "BILINEAR_STARCAST_9", "underwater": false, "carvingSupport": "SURFACE_ONLY", "smartBore": false, diff --git a/jigsaw-pieces/mansion/1x2/1/b4.json b/jigsaw-pieces/mansion/1x2/1/b4.json index 5deaac38..2f61540e 100644 --- a/jigsaw-pieces/mansion/1x2/1/b4.json +++ b/jigsaw-pieces/mansion/1x2/1/b4.json @@ -49,8 +49,8 @@ "overStilt": 0, "boreExtendMaxY": 0, "boreExtendMinY": 0, - "vacuumInterpolationRadius": 16, - "vacuumInterpolationMethod": "BILINEAR_STARCAST_9", + "FAST_MIN_HEIGHTInterpolationRadius": 16, + "FAST_MIN_HEIGHTInterpolationMethod": "BILINEAR_STARCAST_9", "underwater": false, "carvingSupport": "SURFACE_ONLY", "smartBore": false, diff --git a/jigsaw-pieces/mansion/1x2/1/b5.json b/jigsaw-pieces/mansion/1x2/1/b5.json index 3bbe7ffe..28d66ae4 100644 --- a/jigsaw-pieces/mansion/1x2/1/b5.json +++ b/jigsaw-pieces/mansion/1x2/1/b5.json @@ -81,8 +81,8 @@ "overStilt": 0, "boreExtendMaxY": 0, "boreExtendMinY": 0, - "vacuumInterpolationRadius": 16, - "vacuumInterpolationMethod": "BILINEAR_STARCAST_9", + "FAST_MIN_HEIGHTInterpolationRadius": 16, + "FAST_MIN_HEIGHTInterpolationMethod": "BILINEAR_STARCAST_9", "underwater": false, "carvingSupport": "SURFACE_ONLY", "smartBore": false, diff --git a/jigsaw-pieces/mansion/1x2/1/c1.json b/jigsaw-pieces/mansion/1x2/1/c1.json index b2739722..f5fab8ae 100644 --- a/jigsaw-pieces/mansion/1x2/1/c1.json +++ b/jigsaw-pieces/mansion/1x2/1/c1.json @@ -49,8 +49,8 @@ "overStilt": 0, "boreExtendMaxY": 0, "boreExtendMinY": 0, - "vacuumInterpolationRadius": 16, - "vacuumInterpolationMethod": "BILINEAR_STARCAST_9", + "FAST_MIN_HEIGHTInterpolationRadius": 16, + "FAST_MIN_HEIGHTInterpolationMethod": "BILINEAR_STARCAST_9", "underwater": false, "carvingSupport": "SURFACE_ONLY", "smartBore": false, diff --git a/jigsaw-pieces/mansion/1x2/1/c2.json b/jigsaw-pieces/mansion/1x2/1/c2.json index 07cbd049..07945aed 100644 --- a/jigsaw-pieces/mansion/1x2/1/c2.json +++ b/jigsaw-pieces/mansion/1x2/1/c2.json @@ -66,8 +66,8 @@ "overStilt": 0, "boreExtendMaxY": 0, "boreExtendMinY": 0, - "vacuumInterpolationRadius": 16, - "vacuumInterpolationMethod": "BILINEAR_STARCAST_9", + "FAST_MIN_HEIGHTInterpolationRadius": 16, + "FAST_MIN_HEIGHTInterpolationMethod": "BILINEAR_STARCAST_9", "underwater": false, "carvingSupport": "SURFACE_ONLY", "smartBore": false, diff --git a/jigsaw-pieces/mansion/1x2/1/c3.json b/jigsaw-pieces/mansion/1x2/1/c3.json index fb8393a4..464ca972 100644 --- a/jigsaw-pieces/mansion/1x2/1/c3.json +++ b/jigsaw-pieces/mansion/1x2/1/c3.json @@ -66,8 +66,8 @@ "overStilt": 0, "boreExtendMaxY": 0, "boreExtendMinY": 0, - "vacuumInterpolationRadius": 16, - "vacuumInterpolationMethod": "BILINEAR_STARCAST_9", + "FAST_MIN_HEIGHTInterpolationRadius": 16, + "FAST_MIN_HEIGHTInterpolationMethod": "BILINEAR_STARCAST_9", "underwater": false, "carvingSupport": "SURFACE_ONLY", "smartBore": false, diff --git a/jigsaw-pieces/mansion/1x2/1/c4.json b/jigsaw-pieces/mansion/1x2/1/c4.json index 752620ee..ba4be3d3 100644 --- a/jigsaw-pieces/mansion/1x2/1/c4.json +++ b/jigsaw-pieces/mansion/1x2/1/c4.json @@ -81,8 +81,8 @@ "overStilt": 0, "boreExtendMaxY": 0, "boreExtendMinY": 0, - "vacuumInterpolationRadius": 16, - "vacuumInterpolationMethod": "BILINEAR_STARCAST_9", + "FAST_MIN_HEIGHTInterpolationRadius": 16, + "FAST_MIN_HEIGHTInterpolationMethod": "BILINEAR_STARCAST_9", "underwater": false, "carvingSupport": "SURFACE_ONLY", "smartBore": false, diff --git a/jigsaw-pieces/mansion/1x2/2/d1.json b/jigsaw-pieces/mansion/1x2/2/d1.json index 54271f4c..a9bd7295 100644 --- a/jigsaw-pieces/mansion/1x2/2/d1.json +++ b/jigsaw-pieces/mansion/1x2/2/d1.json @@ -49,8 +49,8 @@ "overStilt": 0, "boreExtendMaxY": 0, "boreExtendMinY": 0, - "vacuumInterpolationRadius": 16, - "vacuumInterpolationMethod": "BILINEAR_STARCAST_9", + "FAST_MIN_HEIGHTInterpolationRadius": 16, + "FAST_MIN_HEIGHTInterpolationMethod": "BILINEAR_STARCAST_9", "underwater": false, "carvingSupport": "SURFACE_ONLY", "smartBore": false, diff --git a/jigsaw-pieces/mansion/1x2/2/d2.json b/jigsaw-pieces/mansion/1x2/2/d2.json index 8cc8da9c..71319d63 100644 --- a/jigsaw-pieces/mansion/1x2/2/d2.json +++ b/jigsaw-pieces/mansion/1x2/2/d2.json @@ -49,8 +49,8 @@ "overStilt": 0, "boreExtendMaxY": 0, "boreExtendMinY": 0, - "vacuumInterpolationRadius": 16, - "vacuumInterpolationMethod": "BILINEAR_STARCAST_9", + "FAST_MIN_HEIGHTInterpolationRadius": 16, + "FAST_MIN_HEIGHTInterpolationMethod": "BILINEAR_STARCAST_9", "underwater": false, "carvingSupport": "SURFACE_ONLY", "smartBore": false, diff --git a/jigsaw-pieces/mansion/1x2/2/d3.json b/jigsaw-pieces/mansion/1x2/2/d3.json index 1f59ed8c..03ca2b1f 100644 --- a/jigsaw-pieces/mansion/1x2/2/d3.json +++ b/jigsaw-pieces/mansion/1x2/2/d3.json @@ -49,8 +49,8 @@ "overStilt": 0, "boreExtendMaxY": 0, "boreExtendMinY": 0, - "vacuumInterpolationRadius": 16, - "vacuumInterpolationMethod": "BILINEAR_STARCAST_9", + "FAST_MIN_HEIGHTInterpolationRadius": 16, + "FAST_MIN_HEIGHTInterpolationMethod": "BILINEAR_STARCAST_9", "underwater": false, "carvingSupport": "SURFACE_ONLY", "smartBore": false, diff --git a/jigsaw-pieces/mansion/1x2/2/d4.json b/jigsaw-pieces/mansion/1x2/2/d4.json index 866bfd77..a47968ae 100644 --- a/jigsaw-pieces/mansion/1x2/2/d4.json +++ b/jigsaw-pieces/mansion/1x2/2/d4.json @@ -49,8 +49,8 @@ "overStilt": 0, "boreExtendMaxY": 0, "boreExtendMinY": 0, - "vacuumInterpolationRadius": 16, - "vacuumInterpolationMethod": "BILINEAR_STARCAST_9", + "FAST_MIN_HEIGHTInterpolationRadius": 16, + "FAST_MIN_HEIGHTInterpolationMethod": "BILINEAR_STARCAST_9", "underwater": false, "carvingSupport": "SURFACE_ONLY", "smartBore": false, diff --git a/jigsaw-pieces/mansion/1x2/2/d5.json b/jigsaw-pieces/mansion/1x2/2/d5.json index 19b8ad25..62baf593 100644 --- a/jigsaw-pieces/mansion/1x2/2/d5.json +++ b/jigsaw-pieces/mansion/1x2/2/d5.json @@ -49,8 +49,8 @@ "overStilt": 0, "boreExtendMaxY": 0, "boreExtendMinY": 0, - "vacuumInterpolationRadius": 16, - "vacuumInterpolationMethod": "BILINEAR_STARCAST_9", + "FAST_MIN_HEIGHTInterpolationRadius": 16, + "FAST_MIN_HEIGHTInterpolationMethod": "BILINEAR_STARCAST_9", "underwater": false, "carvingSupport": "SURFACE_ONLY", "smartBore": false, diff --git a/jigsaw-pieces/mansion/1x2/2/s1.json b/jigsaw-pieces/mansion/1x2/2/s1.json index 439402dc..281220aa 100644 --- a/jigsaw-pieces/mansion/1x2/2/s1.json +++ b/jigsaw-pieces/mansion/1x2/2/s1.json @@ -49,8 +49,8 @@ "overStilt": 0, "boreExtendMaxY": 0, "boreExtendMinY": 0, - "vacuumInterpolationRadius": 16, - "vacuumInterpolationMethod": "BILINEAR_STARCAST_9", + "FAST_MIN_HEIGHTInterpolationRadius": 16, + "FAST_MIN_HEIGHTInterpolationMethod": "BILINEAR_STARCAST_9", "underwater": false, "carvingSupport": "SURFACE_ONLY", "smartBore": false, diff --git a/jigsaw-pieces/mansion/1x2/2/s2.json b/jigsaw-pieces/mansion/1x2/2/s2.json index c2deac68..b93c361c 100644 --- a/jigsaw-pieces/mansion/1x2/2/s2.json +++ b/jigsaw-pieces/mansion/1x2/2/s2.json @@ -49,8 +49,8 @@ "overStilt": 0, "boreExtendMaxY": 0, "boreExtendMinY": 0, - "vacuumInterpolationRadius": 16, - "vacuumInterpolationMethod": "BILINEAR_STARCAST_9", + "FAST_MIN_HEIGHTInterpolationRadius": 16, + "FAST_MIN_HEIGHTInterpolationMethod": "BILINEAR_STARCAST_9", "underwater": false, "carvingSupport": "SURFACE_ONLY", "smartBore": false, diff --git a/jigsaw-pieces/mansion/1x2/2/se1.json b/jigsaw-pieces/mansion/1x2/2/se1.json index 98c4d2b2..802be11e 100644 --- a/jigsaw-pieces/mansion/1x2/2/se1.json +++ b/jigsaw-pieces/mansion/1x2/2/se1.json @@ -49,8 +49,8 @@ "overStilt": 0, "boreExtendMaxY": 0, "boreExtendMinY": 0, - "vacuumInterpolationRadius": 16, - "vacuumInterpolationMethod": "BILINEAR_STARCAST_9", + "FAST_MIN_HEIGHTInterpolationRadius": 16, + "FAST_MIN_HEIGHTInterpolationMethod": "BILINEAR_STARCAST_9", "underwater": false, "carvingSupport": "SURFACE_ONLY", "smartBore": false, diff --git a/jigsaw-pieces/mansion/2x2/1/a1.json b/jigsaw-pieces/mansion/2x2/1/a1.json index e3cd0bc5..825b256f 100644 --- a/jigsaw-pieces/mansion/2x2/1/a1.json +++ b/jigsaw-pieces/mansion/2x2/1/a1.json @@ -66,8 +66,8 @@ "overStilt": 0, "boreExtendMaxY": 0, "boreExtendMinY": 0, - "vacuumInterpolationRadius": 16, - "vacuumInterpolationMethod": "BILINEAR_STARCAST_9", + "FAST_MIN_HEIGHTInterpolationRadius": 16, + "FAST_MIN_HEIGHTInterpolationMethod": "BILINEAR_STARCAST_9", "underwater": false, "carvingSupport": "SURFACE_ONLY", "smartBore": false, diff --git a/jigsaw-pieces/mansion/2x2/1/a2.json b/jigsaw-pieces/mansion/2x2/1/a2.json index 9ff30a89..04117ad0 100644 --- a/jigsaw-pieces/mansion/2x2/1/a2.json +++ b/jigsaw-pieces/mansion/2x2/1/a2.json @@ -66,8 +66,8 @@ "overStilt": 0, "boreExtendMaxY": 0, "boreExtendMinY": 0, - "vacuumInterpolationRadius": 16, - "vacuumInterpolationMethod": "BILINEAR_STARCAST_9", + "FAST_MIN_HEIGHTInterpolationRadius": 16, + "FAST_MIN_HEIGHTInterpolationMethod": "BILINEAR_STARCAST_9", "underwater": false, "carvingSupport": "SURFACE_ONLY", "smartBore": false, diff --git a/jigsaw-pieces/mansion/2x2/1/a3.json b/jigsaw-pieces/mansion/2x2/1/a3.json index 2e21f8f5..5d6b0dca 100644 --- a/jigsaw-pieces/mansion/2x2/1/a3.json +++ b/jigsaw-pieces/mansion/2x2/1/a3.json @@ -66,8 +66,8 @@ "overStilt": 0, "boreExtendMaxY": 0, "boreExtendMinY": 0, - "vacuumInterpolationRadius": 16, - "vacuumInterpolationMethod": "BILINEAR_STARCAST_9", + "FAST_MIN_HEIGHTInterpolationRadius": 16, + "FAST_MIN_HEIGHTInterpolationMethod": "BILINEAR_STARCAST_9", "underwater": false, "carvingSupport": "SURFACE_ONLY", "smartBore": false, diff --git a/jigsaw-pieces/mansion/2x2/1/a4.json b/jigsaw-pieces/mansion/2x2/1/a4.json index 41080b32..93fdc2d9 100644 --- a/jigsaw-pieces/mansion/2x2/1/a4.json +++ b/jigsaw-pieces/mansion/2x2/1/a4.json @@ -66,8 +66,8 @@ "overStilt": 0, "boreExtendMaxY": 0, "boreExtendMinY": 0, - "vacuumInterpolationRadius": 16, - "vacuumInterpolationMethod": "BILINEAR_STARCAST_9", + "FAST_MIN_HEIGHTInterpolationRadius": 16, + "FAST_MIN_HEIGHTInterpolationMethod": "BILINEAR_STARCAST_9", "underwater": false, "carvingSupport": "SURFACE_ONLY", "smartBore": false, diff --git a/jigsaw-pieces/mansion/2x2/2/b1.json b/jigsaw-pieces/mansion/2x2/2/b1.json index c5171931..d4864471 100644 --- a/jigsaw-pieces/mansion/2x2/2/b1.json +++ b/jigsaw-pieces/mansion/2x2/2/b1.json @@ -66,8 +66,8 @@ "overStilt": 0, "boreExtendMaxY": 0, "boreExtendMinY": 0, - "vacuumInterpolationRadius": 16, - "vacuumInterpolationMethod": "BILINEAR_STARCAST_9", + "FAST_MIN_HEIGHTInterpolationRadius": 16, + "FAST_MIN_HEIGHTInterpolationMethod": "BILINEAR_STARCAST_9", "underwater": false, "carvingSupport": "SURFACE_ONLY", "smartBore": false, diff --git a/jigsaw-pieces/mansion/2x2/2/b2.json b/jigsaw-pieces/mansion/2x2/2/b2.json index 9f154d9b..70118d88 100644 --- a/jigsaw-pieces/mansion/2x2/2/b2.json +++ b/jigsaw-pieces/mansion/2x2/2/b2.json @@ -66,8 +66,8 @@ "overStilt": 0, "boreExtendMaxY": 0, "boreExtendMinY": 0, - "vacuumInterpolationRadius": 16, - "vacuumInterpolationMethod": "BILINEAR_STARCAST_9", + "FAST_MIN_HEIGHTInterpolationRadius": 16, + "FAST_MIN_HEIGHTInterpolationMethod": "BILINEAR_STARCAST_9", "underwater": false, "carvingSupport": "SURFACE_ONLY", "smartBore": false, diff --git a/jigsaw-pieces/mansion/2x2/2/b3.json b/jigsaw-pieces/mansion/2x2/2/b3.json index 0f74f3c8..6593493b 100644 --- a/jigsaw-pieces/mansion/2x2/2/b3.json +++ b/jigsaw-pieces/mansion/2x2/2/b3.json @@ -66,8 +66,8 @@ "overStilt": 0, "boreExtendMaxY": 0, "boreExtendMinY": 0, - "vacuumInterpolationRadius": 16, - "vacuumInterpolationMethod": "BILINEAR_STARCAST_9", + "FAST_MIN_HEIGHTInterpolationRadius": 16, + "FAST_MIN_HEIGHTInterpolationMethod": "BILINEAR_STARCAST_9", "underwater": false, "carvingSupport": "SURFACE_ONLY", "smartBore": false, diff --git a/jigsaw-pieces/mansion/2x2/2/b4.json b/jigsaw-pieces/mansion/2x2/2/b4.json index 9e497510..09318a7a 100644 --- a/jigsaw-pieces/mansion/2x2/2/b4.json +++ b/jigsaw-pieces/mansion/2x2/2/b4.json @@ -66,8 +66,8 @@ "overStilt": 0, "boreExtendMaxY": 0, "boreExtendMinY": 0, - "vacuumInterpolationRadius": 16, - "vacuumInterpolationMethod": "BILINEAR_STARCAST_9", + "FAST_MIN_HEIGHTInterpolationRadius": 16, + "FAST_MIN_HEIGHTInterpolationMethod": "BILINEAR_STARCAST_9", "underwater": false, "carvingSupport": "SURFACE_ONLY", "smartBore": false, diff --git a/jigsaw-pieces/mansion/2x2/2/b5.json b/jigsaw-pieces/mansion/2x2/2/b5.json index d3b883a3..7d28c6d8 100644 --- a/jigsaw-pieces/mansion/2x2/2/b5.json +++ b/jigsaw-pieces/mansion/2x2/2/b5.json @@ -66,8 +66,8 @@ "overStilt": 0, "boreExtendMaxY": 0, "boreExtendMinY": 0, - "vacuumInterpolationRadius": 16, - "vacuumInterpolationMethod": "BILINEAR_STARCAST_9", + "FAST_MIN_HEIGHTInterpolationRadius": 16, + "FAST_MIN_HEIGHTInterpolationMethod": "BILINEAR_STARCAST_9", "underwater": false, "carvingSupport": "SURFACE_ONLY", "smartBore": false, diff --git a/jigsaw-pieces/mansion/2x2/2/s1.json b/jigsaw-pieces/mansion/2x2/2/s1.json index ff3ad72e..0cc664e0 100644 --- a/jigsaw-pieces/mansion/2x2/2/s1.json +++ b/jigsaw-pieces/mansion/2x2/2/s1.json @@ -66,8 +66,8 @@ "overStilt": 0, "boreExtendMaxY": 0, "boreExtendMinY": 0, - "vacuumInterpolationRadius": 16, - "vacuumInterpolationMethod": "BILINEAR_STARCAST_9", + "FAST_MIN_HEIGHTInterpolationRadius": 16, + "FAST_MIN_HEIGHTInterpolationMethod": "BILINEAR_STARCAST_9", "underwater": false, "carvingSupport": "SURFACE_ONLY", "smartBore": false, diff --git a/jigsaw-pieces/mansion/path/path_1.json b/jigsaw-pieces/mansion/path/path_1.json index 74058e36..2eccde20 100644 --- a/jigsaw-pieces/mansion/path/path_1.json +++ b/jigsaw-pieces/mansion/path/path_1.json @@ -351,8 +351,8 @@ "overStilt": 0, "boreExtendMaxY": 0, "boreExtendMinY": 0, - "vacuumInterpolationRadius": 16, - "vacuumInterpolationMethod": "BILINEAR_STARCAST_9", + "FAST_MIN_HEIGHTInterpolationRadius": 16, + "FAST_MIN_HEIGHTInterpolationMethod": "BILINEAR_STARCAST_9", "underwater": false, "carvingSupport": "SURFACE_ONLY", "smartBore": false, diff --git a/jigsaw-pieces/mansion/path/path_2.json b/jigsaw-pieces/mansion/path/path_2.json index 37d96871..98cf65be 100644 --- a/jigsaw-pieces/mansion/path/path_2.json +++ b/jigsaw-pieces/mansion/path/path_2.json @@ -246,8 +246,8 @@ "overStilt": 0, "boreExtendMaxY": 0, "boreExtendMinY": 0, - "vacuumInterpolationRadius": 16, - "vacuumInterpolationMethod": "BILINEAR_STARCAST_9", + "FAST_MIN_HEIGHTInterpolationRadius": 16, + "FAST_MIN_HEIGHTInterpolationMethod": "BILINEAR_STARCAST_9", "underwater": false, "carvingSupport": "SURFACE_ONLY", "smartBore": false, diff --git a/jigsaw-pieces/mansion/path_2/path_1.json b/jigsaw-pieces/mansion/path_2/path_1.json index e18ba677..0ea6e956 100644 --- a/jigsaw-pieces/mansion/path_2/path_1.json +++ b/jigsaw-pieces/mansion/path_2/path_1.json @@ -366,8 +366,8 @@ "overStilt": 0, "boreExtendMaxY": 0, "boreExtendMinY": 0, - "vacuumInterpolationRadius": 16, - "vacuumInterpolationMethod": "BILINEAR_STARCAST_9", + "FAST_MIN_HEIGHTInterpolationRadius": 16, + "FAST_MIN_HEIGHTInterpolationMethod": "BILINEAR_STARCAST_9", "underwater": false, "carvingSupport": "SURFACE_ONLY", "smartBore": false, diff --git a/jigsaw-pieces/mansion/path_2/path_2.json b/jigsaw-pieces/mansion/path_2/path_2.json index 7660cf3c..c3126720 100644 --- a/jigsaw-pieces/mansion/path_2/path_2.json +++ b/jigsaw-pieces/mansion/path_2/path_2.json @@ -261,8 +261,8 @@ "overStilt": 0, "boreExtendMaxY": 0, "boreExtendMinY": 0, - "vacuumInterpolationRadius": 16, - "vacuumInterpolationMethod": "BILINEAR_STARCAST_9", + "FAST_MIN_HEIGHTInterpolationRadius": 16, + "FAST_MIN_HEIGHTInterpolationMethod": "BILINEAR_STARCAST_9", "underwater": false, "carvingSupport": "SURFACE_ONLY", "smartBore": false, diff --git a/jigsaw-pieces/mansion/stairs/stairs_left.json b/jigsaw-pieces/mansion/stairs/stairs_left.json index 11d445b5..97787d87 100644 --- a/jigsaw-pieces/mansion/stairs/stairs_left.json +++ b/jigsaw-pieces/mansion/stairs/stairs_left.json @@ -66,8 +66,8 @@ "overStilt": 0, "boreExtendMaxY": 0, "boreExtendMinY": 0, - "vacuumInterpolationRadius": 16, - "vacuumInterpolationMethod": "BILINEAR_STARCAST_9", + "FAST_MIN_HEIGHTInterpolationRadius": 16, + "FAST_MIN_HEIGHTInterpolationMethod": "BILINEAR_STARCAST_9", "underwater": false, "carvingSupport": "SURFACE_ONLY", "smartBore": false, diff --git a/jigsaw-pieces/mansion/stairs/stairs_straight.json b/jigsaw-pieces/mansion/stairs/stairs_straight.json index 47997312..b201510a 100644 --- a/jigsaw-pieces/mansion/stairs/stairs_straight.json +++ b/jigsaw-pieces/mansion/stairs/stairs_straight.json @@ -66,8 +66,8 @@ "overStilt": 0, "boreExtendMaxY": 0, "boreExtendMinY": 0, - "vacuumInterpolationRadius": 16, - "vacuumInterpolationMethod": "BILINEAR_STARCAST_9", + "FAST_MIN_HEIGHTInterpolationRadius": 16, + "FAST_MIN_HEIGHTInterpolationMethod": "BILINEAR_STARCAST_9", "underwater": false, "carvingSupport": "SURFACE_ONLY", "smartBore": false, diff --git a/jigsaw-pieces/pillager_outpost/feature_plate.json b/jigsaw-pieces/pillager_outpost/feature_plate.json index 00cd2eb7..1257775d 100644 --- a/jigsaw-pieces/pillager_outpost/feature_plate.json +++ b/jigsaw-pieces/pillager_outpost/feature_plate.json @@ -66,7 +66,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/pillager_outpost/regular/feature_cage2.json b/jigsaw-pieces/pillager_outpost/regular/feature_cage2.json index f3c9e228..dbf4a53c 100644 --- a/jigsaw-pieces/pillager_outpost/regular/feature_cage2.json +++ b/jigsaw-pieces/pillager_outpost/regular/feature_cage2.json @@ -112,7 +112,7 @@ "y": 1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/pillager_outpost/watchtower.json b/jigsaw-pieces/pillager_outpost/watchtower.json index fc515bcc..14554c65 100644 --- a/jigsaw-pieces/pillager_outpost/watchtower.json +++ b/jigsaw-pieces/pillager_outpost/watchtower.json @@ -303,7 +303,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/pillager_outpost/watchtower_overgrown.json b/jigsaw-pieces/pillager_outpost/watchtower_overgrown.json index 844aa681..babfb832 100644 --- a/jigsaw-pieces/pillager_outpost/watchtower_overgrown.json +++ b/jigsaw-pieces/pillager_outpost/watchtower_overgrown.json @@ -232,7 +232,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/stronghold/portal/main.json b/jigsaw-pieces/stronghold/portal/main.json index 93184d0c..959d8fd8 100644 --- a/jigsaw-pieces/stronghold/portal/main.json +++ b/jigsaw-pieces/stronghold/portal/main.json @@ -49,8 +49,8 @@ "overStilt": 0, "boreExtendMaxY": 0, "boreExtendMinY": 0, - "vacuumInterpolationRadius": 16, - "vacuumInterpolationMethod": "BILINEAR_STARCAST_9", + "FAST_MIN_HEIGHTInterpolationRadius": 16, + "FAST_MIN_HEIGHTInterpolationMethod": "BILINEAR_STARCAST_9", "underwater": false, "carvingSupport": "SURFACE_ONLY", "smartBore": false, diff --git a/jigsaw-pieces/stronghold/portal/top.json b/jigsaw-pieces/stronghold/portal/top.json index 945b0cfd..6e6143d6 100644 --- a/jigsaw-pieces/stronghold/portal/top.json +++ b/jigsaw-pieces/stronghold/portal/top.json @@ -231,8 +231,8 @@ "overStilt": 0, "boreExtendMaxY": 0, "boreExtendMinY": 0, - "vacuumInterpolationRadius": 16, - "vacuumInterpolationMethod": "BILINEAR_STARCAST_9", + "FAST_MIN_HEIGHTInterpolationRadius": 16, + "FAST_MIN_HEIGHTInterpolationMethod": "BILINEAR_STARCAST_9", "underwater": false, "carvingSupport": "SURFACE_ONLY", "smartBore": false, diff --git a/jigsaw-pieces/village/desert/houses/desert_animal_pen_1.json b/jigsaw-pieces/village/desert/houses/desert_animal_pen_1.json index 466085a0..3cd45199 100644 --- a/jigsaw-pieces/village/desert/houses/desert_animal_pen_1.json +++ b/jigsaw-pieces/village/desert/houses/desert_animal_pen_1.json @@ -66,7 +66,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/houses/desert_animal_pen_2.json b/jigsaw-pieces/village/desert/houses/desert_animal_pen_2.json index e66978c8..46db81e8 100644 --- a/jigsaw-pieces/village/desert/houses/desert_animal_pen_2.json +++ b/jigsaw-pieces/village/desert/houses/desert_animal_pen_2.json @@ -66,7 +66,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/houses/desert_armorer_1.json b/jigsaw-pieces/village/desert/houses/desert_armorer_1.json index 4750a672..adc0c863 100644 --- a/jigsaw-pieces/village/desert/houses/desert_armorer_1.json +++ b/jigsaw-pieces/village/desert/houses/desert_armorer_1.json @@ -51,7 +51,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/houses/desert_butcher_shop_1.json b/jigsaw-pieces/village/desert/houses/desert_butcher_shop_1.json index 8d83fad5..ccfa0c5c 100644 --- a/jigsaw-pieces/village/desert/houses/desert_butcher_shop_1.json +++ b/jigsaw-pieces/village/desert/houses/desert_butcher_shop_1.json @@ -66,7 +66,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/houses/desert_cartographer_house_1.json b/jigsaw-pieces/village/desert/houses/desert_cartographer_house_1.json index af930068..9d2a2686 100644 --- a/jigsaw-pieces/village/desert/houses/desert_cartographer_house_1.json +++ b/jigsaw-pieces/village/desert/houses/desert_cartographer_house_1.json @@ -66,7 +66,7 @@ "y": 0, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/houses/desert_farm_1.json b/jigsaw-pieces/village/desert/houses/desert_farm_1.json index 968ec459..98e8cc46 100644 --- a/jigsaw-pieces/village/desert/houses/desert_farm_1.json +++ b/jigsaw-pieces/village/desert/houses/desert_farm_1.json @@ -51,7 +51,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/houses/desert_farm_2.json b/jigsaw-pieces/village/desert/houses/desert_farm_2.json index 13ffcad9..a7fec02d 100644 --- a/jigsaw-pieces/village/desert/houses/desert_farm_2.json +++ b/jigsaw-pieces/village/desert/houses/desert_farm_2.json @@ -51,7 +51,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/houses/desert_fisher_1.json b/jigsaw-pieces/village/desert/houses/desert_fisher_1.json index f3a7f227..ff99a380 100644 --- a/jigsaw-pieces/village/desert/houses/desert_fisher_1.json +++ b/jigsaw-pieces/village/desert/houses/desert_fisher_1.json @@ -66,7 +66,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/houses/desert_fletcher_house_1.json b/jigsaw-pieces/village/desert/houses/desert_fletcher_house_1.json index f875a421..4b1f744f 100644 --- a/jigsaw-pieces/village/desert/houses/desert_fletcher_house_1.json +++ b/jigsaw-pieces/village/desert/houses/desert_fletcher_house_1.json @@ -51,7 +51,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/houses/desert_large_farm_1.json b/jigsaw-pieces/village/desert/houses/desert_large_farm_1.json index 16a1c69a..39bbe021 100644 --- a/jigsaw-pieces/village/desert/houses/desert_large_farm_1.json +++ b/jigsaw-pieces/village/desert/houses/desert_large_farm_1.json @@ -51,7 +51,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/houses/desert_library_1.json b/jigsaw-pieces/village/desert/houses/desert_library_1.json index d8ac954f..97ece91a 100644 --- a/jigsaw-pieces/village/desert/houses/desert_library_1.json +++ b/jigsaw-pieces/village/desert/houses/desert_library_1.json @@ -66,7 +66,7 @@ "y": 0, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/houses/desert_mason_1.json b/jigsaw-pieces/village/desert/houses/desert_mason_1.json index 24a0c199..b093d881 100644 --- a/jigsaw-pieces/village/desert/houses/desert_mason_1.json +++ b/jigsaw-pieces/village/desert/houses/desert_mason_1.json @@ -51,7 +51,7 @@ "y": 0, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/houses/desert_medium_house_1.json b/jigsaw-pieces/village/desert/houses/desert_medium_house_1.json index 509f1668..10d00490 100644 --- a/jigsaw-pieces/village/desert/houses/desert_medium_house_1.json +++ b/jigsaw-pieces/village/desert/houses/desert_medium_house_1.json @@ -81,7 +81,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/houses/desert_medium_house_2.json b/jigsaw-pieces/village/desert/houses/desert_medium_house_2.json index 178d036f..cba0cf3a 100644 --- a/jigsaw-pieces/village/desert/houses/desert_medium_house_2.json +++ b/jigsaw-pieces/village/desert/houses/desert_medium_house_2.json @@ -81,7 +81,7 @@ "y": 0, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/houses/desert_shepherd_house_1.json b/jigsaw-pieces/village/desert/houses/desert_shepherd_house_1.json index 3848812e..7e7116e0 100644 --- a/jigsaw-pieces/village/desert/houses/desert_shepherd_house_1.json +++ b/jigsaw-pieces/village/desert/houses/desert_shepherd_house_1.json @@ -66,7 +66,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/houses/desert_small_house_1.json b/jigsaw-pieces/village/desert/houses/desert_small_house_1.json index d5d1c133..aa50596d 100644 --- a/jigsaw-pieces/village/desert/houses/desert_small_house_1.json +++ b/jigsaw-pieces/village/desert/houses/desert_small_house_1.json @@ -67,7 +67,7 @@ "y": 0, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/houses/desert_small_house_2.json b/jigsaw-pieces/village/desert/houses/desert_small_house_2.json index 28cee59a..c45bee97 100644 --- a/jigsaw-pieces/village/desert/houses/desert_small_house_2.json +++ b/jigsaw-pieces/village/desert/houses/desert_small_house_2.json @@ -80,7 +80,7 @@ "y": 0, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/houses/desert_small_house_3.json b/jigsaw-pieces/village/desert/houses/desert_small_house_3.json index 0159ddd5..d4fd189a 100644 --- a/jigsaw-pieces/village/desert/houses/desert_small_house_3.json +++ b/jigsaw-pieces/village/desert/houses/desert_small_house_3.json @@ -67,7 +67,7 @@ "y": 0, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/houses/desert_small_house_4.json b/jigsaw-pieces/village/desert/houses/desert_small_house_4.json index 81e57049..bc4063a3 100644 --- a/jigsaw-pieces/village/desert/houses/desert_small_house_4.json +++ b/jigsaw-pieces/village/desert/houses/desert_small_house_4.json @@ -67,7 +67,7 @@ "y": 0, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/houses/desert_small_house_5.json b/jigsaw-pieces/village/desert/houses/desert_small_house_5.json index a357fd3d..612b260d 100644 --- a/jigsaw-pieces/village/desert/houses/desert_small_house_5.json +++ b/jigsaw-pieces/village/desert/houses/desert_small_house_5.json @@ -67,7 +67,7 @@ "y": 0, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/houses/desert_small_house_6.json b/jigsaw-pieces/village/desert/houses/desert_small_house_6.json index e39aea3b..5cc27600 100644 --- a/jigsaw-pieces/village/desert/houses/desert_small_house_6.json +++ b/jigsaw-pieces/village/desert/houses/desert_small_house_6.json @@ -67,7 +67,7 @@ "y": 0, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/houses/desert_small_house_7.json b/jigsaw-pieces/village/desert/houses/desert_small_house_7.json index d8d8e183..f5cbe2ed 100644 --- a/jigsaw-pieces/village/desert/houses/desert_small_house_7.json +++ b/jigsaw-pieces/village/desert/houses/desert_small_house_7.json @@ -67,7 +67,7 @@ "y": 0, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/houses/desert_small_house_8.json b/jigsaw-pieces/village/desert/houses/desert_small_house_8.json index 59bce1c3..6c0170fe 100644 --- a/jigsaw-pieces/village/desert/houses/desert_small_house_8.json +++ b/jigsaw-pieces/village/desert/houses/desert_small_house_8.json @@ -67,7 +67,7 @@ "y": -2, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/houses/desert_tannery_1.json b/jigsaw-pieces/village/desert/houses/desert_tannery_1.json index 4169333e..aefd17d5 100644 --- a/jigsaw-pieces/village/desert/houses/desert_tannery_1.json +++ b/jigsaw-pieces/village/desert/houses/desert_tannery_1.json @@ -51,7 +51,7 @@ "y": 0, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/houses/desert_temple_1.json b/jigsaw-pieces/village/desert/houses/desert_temple_1.json index 848661c8..b593b891 100644 --- a/jigsaw-pieces/village/desert/houses/desert_temple_1.json +++ b/jigsaw-pieces/village/desert/houses/desert_temple_1.json @@ -51,7 +51,7 @@ "y": 0, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/houses/desert_temple_2.json b/jigsaw-pieces/village/desert/houses/desert_temple_2.json index c3ee1b54..36f8227e 100644 --- a/jigsaw-pieces/village/desert/houses/desert_temple_2.json +++ b/jigsaw-pieces/village/desert/houses/desert_temple_2.json @@ -51,7 +51,7 @@ "y": 0, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/houses/desert_tool_smith_1.json b/jigsaw-pieces/village/desert/houses/desert_tool_smith_1.json index 8c596094..fdab235c 100644 --- a/jigsaw-pieces/village/desert/houses/desert_tool_smith_1.json +++ b/jigsaw-pieces/village/desert/houses/desert_tool_smith_1.json @@ -51,7 +51,7 @@ "y": 0, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/houses/desert_weaponsmith_1.json b/jigsaw-pieces/village/desert/houses/desert_weaponsmith_1.json index 5dba6a0f..bd3f9f66 100644 --- a/jigsaw-pieces/village/desert/houses/desert_weaponsmith_1.json +++ b/jigsaw-pieces/village/desert/houses/desert_weaponsmith_1.json @@ -51,7 +51,7 @@ "y": 0, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/town_centers/desert_meeting_point_1.json b/jigsaw-pieces/village/desert/town_centers/desert_meeting_point_1.json index c8a81b40..d07e7353 100644 --- a/jigsaw-pieces/village/desert/town_centers/desert_meeting_point_1.json +++ b/jigsaw-pieces/village/desert/town_centers/desert_meeting_point_1.json @@ -212,7 +212,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/town_centers/desert_meeting_point_2.json b/jigsaw-pieces/village/desert/town_centers/desert_meeting_point_2.json index ad63b01f..c4cc0c87 100644 --- a/jigsaw-pieces/village/desert/town_centers/desert_meeting_point_2.json +++ b/jigsaw-pieces/village/desert/town_centers/desert_meeting_point_2.json @@ -173,7 +173,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/town_centers/desert_meeting_point_3.json b/jigsaw-pieces/village/desert/town_centers/desert_meeting_point_3.json index 5be0252b..7e48067c 100644 --- a/jigsaw-pieces/village/desert/town_centers/desert_meeting_point_3.json +++ b/jigsaw-pieces/village/desert/town_centers/desert_meeting_point_3.json @@ -199,7 +199,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_accessory_1.json b/jigsaw-pieces/village/plains/houses/plains_accessory_1.json index 19544597..4af741c5 100644 --- a/jigsaw-pieces/village/plains/houses/plains_accessory_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_accessory_1.json @@ -51,7 +51,7 @@ "y": 0, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_animal_pen_1.json b/jigsaw-pieces/village/plains/houses/plains_animal_pen_1.json index c3fe2566..d68d56bb 100644 --- a/jigsaw-pieces/village/plains/houses/plains_animal_pen_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_animal_pen_1.json @@ -79,7 +79,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_animal_pen_2.json b/jigsaw-pieces/village/plains/houses/plains_animal_pen_2.json index 32fa4dba..c8127f64 100644 --- a/jigsaw-pieces/village/plains/houses/plains_animal_pen_2.json +++ b/jigsaw-pieces/village/plains/houses/plains_animal_pen_2.json @@ -92,7 +92,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_animal_pen_3.json b/jigsaw-pieces/village/plains/houses/plains_animal_pen_3.json index 91adfa14..cd6281e3 100644 --- a/jigsaw-pieces/village/plains/houses/plains_animal_pen_3.json +++ b/jigsaw-pieces/village/plains/houses/plains_animal_pen_3.json @@ -144,7 +144,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_armorer_house_1.json b/jigsaw-pieces/village/plains/houses/plains_armorer_house_1.json index 23a8da11..d00bead6 100644 --- a/jigsaw-pieces/village/plains/houses/plains_armorer_house_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_armorer_house_1.json @@ -51,7 +51,7 @@ "y": 0, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_big_house_1.json b/jigsaw-pieces/village/plains/houses/plains_big_house_1.json index 0c045c63..0f1a726b 100644 --- a/jigsaw-pieces/village/plains/houses/plains_big_house_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_big_house_1.json @@ -109,7 +109,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_butcher_shop_1.json b/jigsaw-pieces/village/plains/houses/plains_butcher_shop_1.json index d295f9f8..6222fbf1 100644 --- a/jigsaw-pieces/village/plains/houses/plains_butcher_shop_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_butcher_shop_1.json @@ -66,7 +66,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_butcher_shop_2.json b/jigsaw-pieces/village/plains/houses/plains_butcher_shop_2.json index 8c73010c..1d0ff926 100644 --- a/jigsaw-pieces/village/plains/houses/plains_butcher_shop_2.json +++ b/jigsaw-pieces/village/plains/houses/plains_butcher_shop_2.json @@ -118,7 +118,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_cartographer_1.json b/jigsaw-pieces/village/plains/houses/plains_cartographer_1.json index 8809bc9a..f16a3f1a 100644 --- a/jigsaw-pieces/village/plains/houses/plains_cartographer_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_cartographer_1.json @@ -51,7 +51,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_fisher_cottage_1.json b/jigsaw-pieces/village/plains/houses/plains_fisher_cottage_1.json index b4b89bef..25b4da9d 100644 --- a/jigsaw-pieces/village/plains/houses/plains_fisher_cottage_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_fisher_cottage_1.json @@ -51,7 +51,7 @@ "y": -2, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_fletcher_house_1.json b/jigsaw-pieces/village/plains/houses/plains_fletcher_house_1.json index 59a2561e..55b07567 100644 --- a/jigsaw-pieces/village/plains/houses/plains_fletcher_house_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_fletcher_house_1.json @@ -66,7 +66,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_large_farm_1.json b/jigsaw-pieces/village/plains/houses/plains_large_farm_1.json index 11648b22..025a2eaa 100644 --- a/jigsaw-pieces/village/plains/houses/plains_large_farm_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_large_farm_1.json @@ -51,7 +51,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_library_1.json b/jigsaw-pieces/village/plains/houses/plains_library_1.json index 00ca30c4..326e13a1 100644 --- a/jigsaw-pieces/village/plains/houses/plains_library_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_library_1.json @@ -51,7 +51,7 @@ "y": 0, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_library_2.json b/jigsaw-pieces/village/plains/houses/plains_library_2.json index b52beb32..848918d5 100644 --- a/jigsaw-pieces/village/plains/houses/plains_library_2.json +++ b/jigsaw-pieces/village/plains/houses/plains_library_2.json @@ -51,7 +51,7 @@ "y": 0, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_masons_house_1.json b/jigsaw-pieces/village/plains/houses/plains_masons_house_1.json index b4461438..d1c75aff 100644 --- a/jigsaw-pieces/village/plains/houses/plains_masons_house_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_masons_house_1.json @@ -51,7 +51,7 @@ "y": 0, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_medium_house_1.json b/jigsaw-pieces/village/plains/houses/plains_medium_house_1.json index e779d907..ff937f8b 100644 --- a/jigsaw-pieces/village/plains/houses/plains_medium_house_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_medium_house_1.json @@ -94,7 +94,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_medium_house_2.json b/jigsaw-pieces/village/plains/houses/plains_medium_house_2.json index a341136b..b24b7df8 100644 --- a/jigsaw-pieces/village/plains/houses/plains_medium_house_2.json +++ b/jigsaw-pieces/village/plains/houses/plains_medium_house_2.json @@ -81,7 +81,7 @@ "y": 0, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_meeting_point_4.json b/jigsaw-pieces/village/plains/houses/plains_meeting_point_4.json index 83e7bbb6..79f9a2d4 100644 --- a/jigsaw-pieces/village/plains/houses/plains_meeting_point_4.json +++ b/jigsaw-pieces/village/plains/houses/plains_meeting_point_4.json @@ -105,7 +105,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_meeting_point_5.json b/jigsaw-pieces/village/plains/houses/plains_meeting_point_5.json index 8d033a46..31de4648 100644 --- a/jigsaw-pieces/village/plains/houses/plains_meeting_point_5.json +++ b/jigsaw-pieces/village/plains/houses/plains_meeting_point_5.json @@ -92,7 +92,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_shepherds_house_1.json b/jigsaw-pieces/village/plains/houses/plains_shepherds_house_1.json index 03163b0c..86ec555e 100644 --- a/jigsaw-pieces/village/plains/houses/plains_shepherds_house_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_shepherds_house_1.json @@ -92,7 +92,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_small_farm_1.json b/jigsaw-pieces/village/plains/houses/plains_small_farm_1.json index 1ef3e0d7..08e40f2d 100644 --- a/jigsaw-pieces/village/plains/houses/plains_small_farm_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_small_farm_1.json @@ -51,7 +51,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_small_house_1.json b/jigsaw-pieces/village/plains/houses/plains_small_house_1.json index 6bb2476e..cb670853 100644 --- a/jigsaw-pieces/village/plains/houses/plains_small_house_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_small_house_1.json @@ -67,7 +67,7 @@ "y": 0, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_small_house_2.json b/jigsaw-pieces/village/plains/houses/plains_small_house_2.json index 63f4a60a..713b430f 100644 --- a/jigsaw-pieces/village/plains/houses/plains_small_house_2.json +++ b/jigsaw-pieces/village/plains/houses/plains_small_house_2.json @@ -67,7 +67,7 @@ "y": 0, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_small_house_3.json b/jigsaw-pieces/village/plains/houses/plains_small_house_3.json index 84551634..052607cb 100644 --- a/jigsaw-pieces/village/plains/houses/plains_small_house_3.json +++ b/jigsaw-pieces/village/plains/houses/plains_small_house_3.json @@ -67,7 +67,7 @@ "y": 0, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_small_house_4.json b/jigsaw-pieces/village/plains/houses/plains_small_house_4.json index 0c394812..57e72f53 100644 --- a/jigsaw-pieces/village/plains/houses/plains_small_house_4.json +++ b/jigsaw-pieces/village/plains/houses/plains_small_house_4.json @@ -67,7 +67,7 @@ "y": 0, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_small_house_5.json b/jigsaw-pieces/village/plains/houses/plains_small_house_5.json index d5cdd602..5fc70a9c 100644 --- a/jigsaw-pieces/village/plains/houses/plains_small_house_5.json +++ b/jigsaw-pieces/village/plains/houses/plains_small_house_5.json @@ -106,7 +106,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_small_house_6.json b/jigsaw-pieces/village/plains/houses/plains_small_house_6.json index 5d922568..716dfcfb 100644 --- a/jigsaw-pieces/village/plains/houses/plains_small_house_6.json +++ b/jigsaw-pieces/village/plains/houses/plains_small_house_6.json @@ -67,7 +67,7 @@ "y": 0, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_small_house_7.json b/jigsaw-pieces/village/plains/houses/plains_small_house_7.json index e9e2ddcc..c5dc1d82 100644 --- a/jigsaw-pieces/village/plains/houses/plains_small_house_7.json +++ b/jigsaw-pieces/village/plains/houses/plains_small_house_7.json @@ -67,7 +67,7 @@ "y": 0, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_small_house_8.json b/jigsaw-pieces/village/plains/houses/plains_small_house_8.json index 7b635b2b..b1b90c0b 100644 --- a/jigsaw-pieces/village/plains/houses/plains_small_house_8.json +++ b/jigsaw-pieces/village/plains/houses/plains_small_house_8.json @@ -67,7 +67,7 @@ "y": -2, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_stable_1.json b/jigsaw-pieces/village/plains/houses/plains_stable_1.json index d0dc7fe7..3ba400a9 100644 --- a/jigsaw-pieces/village/plains/houses/plains_stable_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_stable_1.json @@ -144,7 +144,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_stable_2.json b/jigsaw-pieces/village/plains/houses/plains_stable_2.json index 1f52be41..69250173 100644 --- a/jigsaw-pieces/village/plains/houses/plains_stable_2.json +++ b/jigsaw-pieces/village/plains/houses/plains_stable_2.json @@ -105,7 +105,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_tannery_1.json b/jigsaw-pieces/village/plains/houses/plains_tannery_1.json index 6000f630..02cd90c3 100644 --- a/jigsaw-pieces/village/plains/houses/plains_tannery_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_tannery_1.json @@ -51,7 +51,7 @@ "y": 0, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_temple_3.json b/jigsaw-pieces/village/plains/houses/plains_temple_3.json index 30f0e8db..c148ead1 100644 --- a/jigsaw-pieces/village/plains/houses/plains_temple_3.json +++ b/jigsaw-pieces/village/plains/houses/plains_temple_3.json @@ -51,7 +51,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_temple_4.json b/jigsaw-pieces/village/plains/houses/plains_temple_4.json index fa751405..bd48fbde 100644 --- a/jigsaw-pieces/village/plains/houses/plains_temple_4.json +++ b/jigsaw-pieces/village/plains/houses/plains_temple_4.json @@ -51,7 +51,7 @@ "y": 0, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_tool_smith_1.json b/jigsaw-pieces/village/plains/houses/plains_tool_smith_1.json index d39f79f4..5102ff47 100644 --- a/jigsaw-pieces/village/plains/houses/plains_tool_smith_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_tool_smith_1.json @@ -51,7 +51,7 @@ "y": 0, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_weaponsmith_1.json b/jigsaw-pieces/village/plains/houses/plains_weaponsmith_1.json index 4520062f..79c24105 100644 --- a/jigsaw-pieces/village/plains/houses/plains_weaponsmith_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_weaponsmith_1.json @@ -51,7 +51,7 @@ "y": 0, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/town_centers/plains_fountain_01.json b/jigsaw-pieces/village/plains/town_centers/plains_fountain_01.json index 17180857..d024a9ec 100644 --- a/jigsaw-pieces/village/plains/town_centers/plains_fountain_01.json +++ b/jigsaw-pieces/village/plains/town_centers/plains_fountain_01.json @@ -173,7 +173,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/town_centers/plains_meeting_point_1.json b/jigsaw-pieces/village/plains/town_centers/plains_meeting_point_1.json index 04ea90e1..ba13772e 100644 --- a/jigsaw-pieces/village/plains/town_centers/plains_meeting_point_1.json +++ b/jigsaw-pieces/village/plains/town_centers/plains_meeting_point_1.json @@ -185,7 +185,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/town_centers/plains_meeting_point_2.json b/jigsaw-pieces/village/plains/town_centers/plains_meeting_point_2.json index c9e80eda..3904e867 100644 --- a/jigsaw-pieces/village/plains/town_centers/plains_meeting_point_2.json +++ b/jigsaw-pieces/village/plains/town_centers/plains_meeting_point_2.json @@ -186,7 +186,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/town_centers/plains_meeting_point_3.json b/jigsaw-pieces/village/plains/town_centers/plains_meeting_point_3.json index 83afb72c..cd17244f 100644 --- a/jigsaw-pieces/village/plains/town_centers/plains_meeting_point_3.json +++ b/jigsaw-pieces/village/plains/town_centers/plains_meeting_point_3.json @@ -146,7 +146,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_animal_pen_1.json b/jigsaw-pieces/village/savanna/houses/savanna_animal_pen_1.json index 8727d91f..c69c6c1f 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_animal_pen_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_animal_pen_1.json @@ -66,7 +66,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_butchers_shop_1.json b/jigsaw-pieces/village/savanna/houses/savanna_butchers_shop_1.json index 54777354..75c58742 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_butchers_shop_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_butchers_shop_1.json @@ -66,7 +66,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_fisher_cottage_1.json b/jigsaw-pieces/village/savanna/houses/savanna_fisher_cottage_1.json index 0e67d2ae..d0574359 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_fisher_cottage_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_fisher_cottage_1.json @@ -92,7 +92,7 @@ "y": -2, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_fletcher_house_1.json b/jigsaw-pieces/village/savanna/houses/savanna_fletcher_house_1.json index 490c87af..d80bf4b4 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_fletcher_house_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_fletcher_house_1.json @@ -51,7 +51,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_large_farm_1.json b/jigsaw-pieces/village/savanna/houses/savanna_large_farm_1.json index 184faf12..d8754049 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_large_farm_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_large_farm_1.json @@ -51,7 +51,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_large_farm_2.json b/jigsaw-pieces/village/savanna/houses/savanna_large_farm_2.json index b64ede7f..4a3b98d0 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_large_farm_2.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_large_farm_2.json @@ -66,7 +66,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_library_1.json b/jigsaw-pieces/village/savanna/houses/savanna_library_1.json index 496d0ea6..5bba3776 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_library_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_library_1.json @@ -51,7 +51,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_mason_1.json b/jigsaw-pieces/village/savanna/houses/savanna_mason_1.json index 17c8df9e..53020081 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_mason_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_mason_1.json @@ -51,7 +51,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_medium_house_1.json b/jigsaw-pieces/village/savanna/houses/savanna_medium_house_1.json index 0697b5b4..58708824 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_medium_house_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_medium_house_1.json @@ -92,7 +92,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_medium_house_2.json b/jigsaw-pieces/village/savanna/houses/savanna_medium_house_2.json index 15ce0cc0..c4ab10d9 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_medium_house_2.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_medium_house_2.json @@ -92,7 +92,7 @@ "y": 0, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_shepherd_1.json b/jigsaw-pieces/village/savanna/houses/savanna_shepherd_1.json index bc697d95..7ce656ce 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_shepherd_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_shepherd_1.json @@ -79,7 +79,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_small_house_1.json b/jigsaw-pieces/village/savanna/houses/savanna_small_house_1.json index 28ec2c57..8a4466bb 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_small_house_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_small_house_1.json @@ -66,7 +66,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_small_house_2.json b/jigsaw-pieces/village/savanna/houses/savanna_small_house_2.json index 4737a2e3..312013e1 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_small_house_2.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_small_house_2.json @@ -66,7 +66,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_small_house_3.json b/jigsaw-pieces/village/savanna/houses/savanna_small_house_3.json index a44164dd..b29535b4 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_small_house_3.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_small_house_3.json @@ -66,7 +66,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_small_house_4.json b/jigsaw-pieces/village/savanna/houses/savanna_small_house_4.json index a32a68d6..094daa1c 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_small_house_4.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_small_house_4.json @@ -66,7 +66,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_small_house_5.json b/jigsaw-pieces/village/savanna/houses/savanna_small_house_5.json index ed444a25..6fbb3243 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_small_house_5.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_small_house_5.json @@ -66,7 +66,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_small_house_6.json b/jigsaw-pieces/village/savanna/houses/savanna_small_house_6.json index 276a10b1..708d5659 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_small_house_6.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_small_house_6.json @@ -79,7 +79,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_small_house_7.json b/jigsaw-pieces/village/savanna/houses/savanna_small_house_7.json index 9291ea2e..2f5486f2 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_small_house_7.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_small_house_7.json @@ -66,7 +66,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_small_house_8.json b/jigsaw-pieces/village/savanna/houses/savanna_small_house_8.json index 724cf7f1..552dc550 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_small_house_8.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_small_house_8.json @@ -66,7 +66,7 @@ "y": -2, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_tannery_1.json b/jigsaw-pieces/village/savanna/houses/savanna_tannery_1.json index 6b677c83..f8cf5e6d 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_tannery_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_tannery_1.json @@ -51,7 +51,7 @@ "y": 0, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_temple_1.json b/jigsaw-pieces/village/savanna/houses/savanna_temple_1.json index 17787518..615beb25 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_temple_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_temple_1.json @@ -51,7 +51,7 @@ "y": 0, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_temple_2.json b/jigsaw-pieces/village/savanna/houses/savanna_temple_2.json index 78886361..3332a1a4 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_temple_2.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_temple_2.json @@ -51,7 +51,7 @@ "y": 0, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_tool_smith_1.json b/jigsaw-pieces/village/savanna/houses/savanna_tool_smith_1.json index 9021eb24..7e6d7b2d 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_tool_smith_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_tool_smith_1.json @@ -51,7 +51,7 @@ "y": 0, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_weaponsmith_1.json b/jigsaw-pieces/village/savanna/houses/savanna_weaponsmith_1.json index f162cc9f..f3324008 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_weaponsmith_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_weaponsmith_1.json @@ -51,7 +51,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_weaponsmith_2.json b/jigsaw-pieces/village/savanna/houses/savanna_weaponsmith_2.json index 0494d6e6..1bb5c828 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_weaponsmith_2.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_weaponsmith_2.json @@ -51,7 +51,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_animal_pen_1.json b/jigsaw-pieces/village/taiga/houses/taiga_animal_pen_1.json index efb874d0..728a6242 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_animal_pen_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_animal_pen_1.json @@ -79,7 +79,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_armorer_2.json b/jigsaw-pieces/village/taiga/houses/taiga_armorer_2.json index 58b8b27b..2341e504 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_armorer_2.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_armorer_2.json @@ -79,7 +79,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_armorer_house_1.json b/jigsaw-pieces/village/taiga/houses/taiga_armorer_house_1.json index dbe1009f..61cc901e 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_armorer_house_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_armorer_house_1.json @@ -51,7 +51,7 @@ "y": 0, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_butcher_shop_1.json b/jigsaw-pieces/village/taiga/houses/taiga_butcher_shop_1.json index febd48d9..80b8a5ff 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_butcher_shop_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_butcher_shop_1.json @@ -66,7 +66,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_cartographer_house_1.json b/jigsaw-pieces/village/taiga/houses/taiga_cartographer_house_1.json index b4dee98a..6a47727d 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_cartographer_house_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_cartographer_house_1.json @@ -66,7 +66,7 @@ "y": 0, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_fisher_cottage_1.json b/jigsaw-pieces/village/taiga/houses/taiga_fisher_cottage_1.json index 44dcee75..d7c6fa2a 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_fisher_cottage_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_fisher_cottage_1.json @@ -105,7 +105,7 @@ "y": -2, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_fletcher_house_1.json b/jigsaw-pieces/village/taiga/houses/taiga_fletcher_house_1.json index 8394d197..453f571c 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_fletcher_house_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_fletcher_house_1.json @@ -51,7 +51,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_large_farm_1.json b/jigsaw-pieces/village/taiga/houses/taiga_large_farm_1.json index ba63203a..cde1ebe8 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_large_farm_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_large_farm_1.json @@ -66,7 +66,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_large_farm_2.json b/jigsaw-pieces/village/taiga/houses/taiga_large_farm_2.json index 01687027..0d19b6ab 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_large_farm_2.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_large_farm_2.json @@ -66,7 +66,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_library_1.json b/jigsaw-pieces/village/taiga/houses/taiga_library_1.json index 96a4924d..45d3d400 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_library_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_library_1.json @@ -92,7 +92,7 @@ "y": 0, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_masons_house_1.json b/jigsaw-pieces/village/taiga/houses/taiga_masons_house_1.json index 81ac063e..a3108377 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_masons_house_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_masons_house_1.json @@ -51,7 +51,7 @@ "y": 0, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_medium_house_1.json b/jigsaw-pieces/village/taiga/houses/taiga_medium_house_1.json index 2608f554..e288a853 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_medium_house_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_medium_house_1.json @@ -81,7 +81,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_medium_house_2.json b/jigsaw-pieces/village/taiga/houses/taiga_medium_house_2.json index 2a920d6c..4dabae30 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_medium_house_2.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_medium_house_2.json @@ -81,7 +81,7 @@ "y": 0, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_medium_house_3.json b/jigsaw-pieces/village/taiga/houses/taiga_medium_house_3.json index 1b1fa342..e1385381 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_medium_house_3.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_medium_house_3.json @@ -107,7 +107,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_medium_house_4.json b/jigsaw-pieces/village/taiga/houses/taiga_medium_house_4.json index d5913af9..7884e379 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_medium_house_4.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_medium_house_4.json @@ -81,7 +81,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_shepherds_house_1.json b/jigsaw-pieces/village/taiga/houses/taiga_shepherds_house_1.json index 4f7efc72..793dcf70 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_shepherds_house_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_shepherds_house_1.json @@ -79,7 +79,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_small_farm_1.json b/jigsaw-pieces/village/taiga/houses/taiga_small_farm_1.json index 94753d20..7e228be4 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_small_farm_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_small_farm_1.json @@ -66,7 +66,7 @@ "y": -1, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_small_house_1.json b/jigsaw-pieces/village/taiga/houses/taiga_small_house_1.json index 573b88be..5641085e 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_small_house_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_small_house_1.json @@ -67,7 +67,7 @@ "y": 0, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_small_house_2.json b/jigsaw-pieces/village/taiga/houses/taiga_small_house_2.json index b41e5b1b..f2ceb692 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_small_house_2.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_small_house_2.json @@ -67,7 +67,7 @@ "y": 0, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_small_house_3.json b/jigsaw-pieces/village/taiga/houses/taiga_small_house_3.json index 4a39bbfb..0b1d61ca 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_small_house_3.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_small_house_3.json @@ -67,7 +67,7 @@ "y": 0, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_small_house_4.json b/jigsaw-pieces/village/taiga/houses/taiga_small_house_4.json index b6ff9e07..0f48cf78 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_small_house_4.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_small_house_4.json @@ -80,7 +80,7 @@ "y": 0, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_small_house_5.json b/jigsaw-pieces/village/taiga/houses/taiga_small_house_5.json index 468c7946..4f5fac0e 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_small_house_5.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_small_house_5.json @@ -67,7 +67,7 @@ "y": 0, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_tannery_1.json b/jigsaw-pieces/village/taiga/houses/taiga_tannery_1.json index c00cac47..81ee04a3 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_tannery_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_tannery_1.json @@ -51,7 +51,7 @@ "y": 0, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_temple_1.json b/jigsaw-pieces/village/taiga/houses/taiga_temple_1.json index 21ac9035..718861f1 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_temple_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_temple_1.json @@ -51,7 +51,7 @@ "y": 0, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_tool_smith_1.json b/jigsaw-pieces/village/taiga/houses/taiga_tool_smith_1.json index 89c5848c..66113a6a 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_tool_smith_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_tool_smith_1.json @@ -79,7 +79,7 @@ "y": 0, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_weaponsmith_1.json b/jigsaw-pieces/village/taiga/houses/taiga_weaponsmith_1.json index 36bee9e9..87bc7f40 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_weaponsmith_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_weaponsmith_1.json @@ -51,7 +51,7 @@ "y": 0, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_weaponsmith_2.json b/jigsaw-pieces/village/taiga/houses/taiga_weaponsmith_2.json index 55d73a64..44bc642c 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_weaponsmith_2.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_weaponsmith_2.json @@ -66,7 +66,7 @@ "y": 0, "z": 0 }, - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/regions/frozen.json b/regions/frozen.json index a04c0b52..3e13aa9f 100644 --- a/regions/frozen.json +++ b/regions/frozen.json @@ -261,7 +261,7 @@ "chance": 0.2 } ], - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY" } ], diff --git a/regions/hot.json b/regions/hot.json index 36483a37..6ded85b9 100644 --- a/regions/hot.json +++ b/regions/hot.json @@ -329,7 +329,7 @@ "chance": 0.2 } ], - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY" } ], diff --git a/regions/temperate.json b/regions/temperate.json index 5cb93710..09843435 100644 --- a/regions/temperate.json +++ b/regions/temperate.json @@ -228,7 +228,7 @@ "chance": 0.2 } ], - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY" } ], diff --git a/regions/tropical.json b/regions/tropical.json index 5630286a..859163e8 100644 --- a/regions/tropical.json +++ b/regions/tropical.json @@ -251,7 +251,7 @@ "chance": 0.2 } ], - "mode": "VACUUM", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY" } ], From 806dd94bbcc6be853db26996ec980eff251e0a71 Mon Sep 17 00:00:00 2001 From: cyberpwn Date: Sun, 12 Sep 2021 11:41:54 -0400 Subject: [PATCH 10/30] Fixes --- biomes/hot/desert-dunes.json | 2 +- jigsaw-pieces/pyramid-desert.json | 1 - .../village/desert/streets/corner_01.json | 15 +++++++++++++++ .../village/desert/streets/corner_02.json | 15 +++++++++++++++ .../village/desert/streets/crossroad_01.json | 15 +++++++++++++++ .../village/desert/streets/crossroad_02.json | 15 +++++++++++++++ .../village/desert/streets/crossroad_03.json | 15 +++++++++++++++ .../village/desert/streets/square_01.json | 15 +++++++++++++++ .../village/desert/streets/square_02.json | 15 +++++++++++++++ .../village/desert/streets/straight_01.json | 15 +++++++++++++++ .../village/desert/streets/straight_02.json | 15 +++++++++++++++ .../village/desert/streets/straight_03.json | 15 +++++++++++++++ jigsaw-pieces/village/desert/streets/turn_01.json | 15 +++++++++++++++ markers/villager.json | 6 ++++++ 14 files changed, 172 insertions(+), 2 deletions(-) create mode 100644 markers/villager.json diff --git a/biomes/hot/desert-dunes.json b/biomes/hot/desert-dunes.json index 7c7740b9..6a9433ba 100644 --- a/biomes/hot/desert-dunes.json +++ b/biomes/hot/desert-dunes.json @@ -35,7 +35,7 @@ "structure": "pillager_outpost" }, { - "rarity": 1500, + "rarity": 150, "structure": "village-hot" }, { diff --git a/jigsaw-pieces/pyramid-desert.json b/jigsaw-pieces/pyramid-desert.json index 4ed37d10..3e60ae3b 100644 --- a/jigsaw-pieces/pyramid-desert.json +++ b/jigsaw-pieces/pyramid-desert.json @@ -34,7 +34,6 @@ "enabled": true }, "boreExtendMaxY": 0, - "smartBore": true, "waterloggable": false, "bore": false, "translate": { diff --git a/jigsaw-pieces/village/desert/streets/corner_01.json b/jigsaw-pieces/village/desert/streets/corner_01.json index ba84c66d..e4d74dba 100644 --- a/jigsaw-pieces/village/desert/streets/corner_01.json +++ b/jigsaw-pieces/village/desert/streets/corner_01.json @@ -69,6 +69,21 @@ } ], "placementOptions": { + "markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:sand" + }, + { + "block": "minecraft:sandstone" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/desert/streets/corner_02.json b/jigsaw-pieces/village/desert/streets/corner_02.json index d8251275..ac08a00d 100644 --- a/jigsaw-pieces/village/desert/streets/corner_02.json +++ b/jigsaw-pieces/village/desert/streets/corner_02.json @@ -56,6 +56,21 @@ } ], "placementOptions": { + "markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:sand" + }, + { + "block": "minecraft:sandstone" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/desert/streets/crossroad_01.json b/jigsaw-pieces/village/desert/streets/crossroad_01.json index d21759e7..f522b574 100644 --- a/jigsaw-pieces/village/desert/streets/crossroad_01.json +++ b/jigsaw-pieces/village/desert/streets/crossroad_01.json @@ -173,6 +173,21 @@ } ], "placementOptions": { + "markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:sand" + }, + { + "block": "minecraft:sandstone" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/desert/streets/crossroad_02.json b/jigsaw-pieces/village/desert/streets/crossroad_02.json index 778b8cf0..4398c813 100644 --- a/jigsaw-pieces/village/desert/streets/crossroad_02.json +++ b/jigsaw-pieces/village/desert/streets/crossroad_02.json @@ -108,6 +108,21 @@ } ], "placementOptions": { + "markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:sand" + }, + { + "block": "minecraft:sandstone" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/desert/streets/crossroad_03.json b/jigsaw-pieces/village/desert/streets/crossroad_03.json index bc34e0fd..e74bc48d 100644 --- a/jigsaw-pieces/village/desert/streets/crossroad_03.json +++ b/jigsaw-pieces/village/desert/streets/crossroad_03.json @@ -69,6 +69,21 @@ } ], "placementOptions": { + "markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:sand" + }, + { + "block": "minecraft:sandstone" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/desert/streets/square_01.json b/jigsaw-pieces/village/desert/streets/square_01.json index 3c632a0f..9f49036e 100644 --- a/jigsaw-pieces/village/desert/streets/square_01.json +++ b/jigsaw-pieces/village/desert/streets/square_01.json @@ -262,6 +262,21 @@ } ], "placementOptions": { + "markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:sand" + }, + { + "block": "minecraft:sandstone" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/desert/streets/square_02.json b/jigsaw-pieces/village/desert/streets/square_02.json index e195a008..8e54c42a 100644 --- a/jigsaw-pieces/village/desert/streets/square_02.json +++ b/jigsaw-pieces/village/desert/streets/square_02.json @@ -80,6 +80,21 @@ } ], "placementOptions": { + "markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:sand" + }, + { + "block": "minecraft:sandstone" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/desert/streets/straight_01.json b/jigsaw-pieces/village/desert/streets/straight_01.json index ad9bab0d..808c8b89 100644 --- a/jigsaw-pieces/village/desert/streets/straight_01.json +++ b/jigsaw-pieces/village/desert/streets/straight_01.json @@ -108,6 +108,21 @@ } ], "placementOptions": { + "markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:sand" + }, + { + "block": "minecraft:sandstone" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/desert/streets/straight_02.json b/jigsaw-pieces/village/desert/streets/straight_02.json index 62f41505..aae07673 100644 --- a/jigsaw-pieces/village/desert/streets/straight_02.json +++ b/jigsaw-pieces/village/desert/streets/straight_02.json @@ -108,6 +108,21 @@ } ], "placementOptions": { + "markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:sand" + }, + { + "block": "minecraft:sandstone" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/desert/streets/straight_03.json b/jigsaw-pieces/village/desert/streets/straight_03.json index fb17b3df..d06fabe7 100644 --- a/jigsaw-pieces/village/desert/streets/straight_03.json +++ b/jigsaw-pieces/village/desert/streets/straight_03.json @@ -43,6 +43,21 @@ } ], "placementOptions": { + "markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:sand" + }, + { + "block": "minecraft:sandstone" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/desert/streets/turn_01.json b/jigsaw-pieces/village/desert/streets/turn_01.json index 39cd0236..442c04e8 100644 --- a/jigsaw-pieces/village/desert/streets/turn_01.json +++ b/jigsaw-pieces/village/desert/streets/turn_01.json @@ -56,6 +56,21 @@ } ], "placementOptions": { + "markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:sand" + }, + { + "block": "minecraft:sandstone" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/markers/villager.json b/markers/villager.json new file mode 100644 index 00000000..7ed43ffe --- /dev/null +++ b/markers/villager.json @@ -0,0 +1,6 @@ +{ + "removeOnChange": true, + "spawners": [ + "villager" + ] +} \ No newline at end of file From 9b5369a910b7e0538ca1ca57053826599e79eea8 Mon Sep 17 00:00:00 2001 From: cyberpwn Date: Sun, 12 Sep 2021 12:01:22 -0400 Subject: [PATCH 11/30] Villager spawns --- jigsaw-structures/village-hot.json | 3 --- 1 file changed, 3 deletions(-) diff --git a/jigsaw-structures/village-hot.json b/jigsaw-structures/village-hot.json index c4027383..4b5edada 100644 --- a/jigsaw-structures/village-hot.json +++ b/jigsaw-structures/village-hot.json @@ -1,9 +1,6 @@ { "maxDepth": 5, "terminate": true, - "feature": { - "entitySpawners": ["villager"] - }, "pieces": [ "village/desert/town_centers/desert_meeting_point_1", "village/desert/town_centers/desert_meeting_point_2", From 88f046cd76ac3843dfc93662a45fb0ac4be501f9 Mon Sep 17 00:00:00 2001 From: cyberpwn Date: Sun, 12 Sep 2021 12:09:23 -0400 Subject: [PATCH 12/30] Fix --- biomes/hot/desert-dunes.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/biomes/hot/desert-dunes.json b/biomes/hot/desert-dunes.json index 6a9433ba..7c7740b9 100644 --- a/biomes/hot/desert-dunes.json +++ b/biomes/hot/desert-dunes.json @@ -35,7 +35,7 @@ "structure": "pillager_outpost" }, { - "rarity": 150, + "rarity": 1500, "structure": "village-hot" }, { From 2dd3c0919a7adf9cfc201d4d0b8bc6f9fc805ad2 Mon Sep 17 00:00:00 2001 From: Brian Fopiano Date: Sun, 12 Sep 2021 13:35:11 -0700 Subject: [PATCH 13/30] grass_path gone now --- jigsaw-pieces/village/taiga/streets/corner_01.json | 2 +- jigsaw-pieces/village/taiga/streets/corner_02.json | 2 +- jigsaw-pieces/village/taiga/streets/corner_03.json | 2 +- jigsaw-pieces/village/taiga/streets/crossroad_01.json | 2 +- jigsaw-pieces/village/taiga/streets/crossroad_02.json | 2 +- jigsaw-pieces/village/taiga/streets/crossroad_03.json | 2 +- jigsaw-pieces/village/taiga/streets/crossroad_04.json | 2 +- jigsaw-pieces/village/taiga/streets/crossroad_05.json | 2 +- jigsaw-pieces/village/taiga/streets/crossroad_06.json | 2 +- jigsaw-pieces/village/taiga/streets/straight_01.json | 2 +- jigsaw-pieces/village/taiga/streets/straight_02.json | 2 +- jigsaw-pieces/village/taiga/streets/straight_03.json | 2 +- jigsaw-pieces/village/taiga/streets/straight_04.json | 2 +- jigsaw-pieces/village/taiga/streets/straight_05.json | 2 +- jigsaw-pieces/village/taiga/streets/straight_06.json | 2 +- jigsaw-pieces/village/taiga/streets/turn_01.json | 2 +- 16 files changed, 16 insertions(+), 16 deletions(-) diff --git a/jigsaw-pieces/village/taiga/streets/corner_01.json b/jigsaw-pieces/village/taiga/streets/corner_01.json index 7c8a7157..cfeedc9a 100644 --- a/jigsaw-pieces/village/taiga/streets/corner_01.json +++ b/jigsaw-pieces/village/taiga/streets/corner_01.json @@ -126,7 +126,7 @@ "meld": false, "density": 1, "edit": [{ - "find": [{"block": "minecraft:grass_path"}], + "find": [{"block": "minecraft:dirt_path"}], "replace": { "palette": [ {"block": "minecraft:gravel"}, diff --git a/jigsaw-pieces/village/taiga/streets/corner_02.json b/jigsaw-pieces/village/taiga/streets/corner_02.json index 4fd02121..0301db6e 100644 --- a/jigsaw-pieces/village/taiga/streets/corner_02.json +++ b/jigsaw-pieces/village/taiga/streets/corner_02.json @@ -87,7 +87,7 @@ "meld": false, "density": 1, "edit": [{ - "find": [{"block": "minecraft:grass_path"}], + "find": [{"block": "minecraft:dirt_path"}], "replace": { "palette": [ {"block": "minecraft:gravel"}, diff --git a/jigsaw-pieces/village/taiga/streets/corner_03.json b/jigsaw-pieces/village/taiga/streets/corner_03.json index 5ce0f70d..236d3817 100644 --- a/jigsaw-pieces/village/taiga/streets/corner_03.json +++ b/jigsaw-pieces/village/taiga/streets/corner_03.json @@ -48,7 +48,7 @@ "meld": false, "density": 1, "edit": [{ - "find": [{"block": "minecraft:grass_path"}], + "find": [{"block": "minecraft:dirt_path"}], "replace": { "palette": [ {"block": "minecraft:gravel"}, diff --git a/jigsaw-pieces/village/taiga/streets/crossroad_01.json b/jigsaw-pieces/village/taiga/streets/crossroad_01.json index a876cf66..fab792f3 100644 --- a/jigsaw-pieces/village/taiga/streets/crossroad_01.json +++ b/jigsaw-pieces/village/taiga/streets/crossroad_01.json @@ -176,7 +176,7 @@ "meld": false, "density": 1, "edit": [{ - "find": [{"block": "minecraft:grass_path"}], + "find": [{"block": "minecraft:dirt_path"}], "replace": { "palette": [ {"block": "minecraft:gravel"}, diff --git a/jigsaw-pieces/village/taiga/streets/crossroad_02.json b/jigsaw-pieces/village/taiga/streets/crossroad_02.json index cf91d8d8..532d139d 100644 --- a/jigsaw-pieces/village/taiga/streets/crossroad_02.json +++ b/jigsaw-pieces/village/taiga/streets/crossroad_02.json @@ -124,7 +124,7 @@ "meld": false, "density": 1, "edit": [{ - "find": [{"block": "minecraft:grass_path"}], + "find": [{"block": "minecraft:dirt_path"}], "replace": { "palette": [ {"block": "minecraft:gravel"}, diff --git a/jigsaw-pieces/village/taiga/streets/crossroad_03.json b/jigsaw-pieces/village/taiga/streets/crossroad_03.json index cec83302..d0d04e51 100644 --- a/jigsaw-pieces/village/taiga/streets/crossroad_03.json +++ b/jigsaw-pieces/village/taiga/streets/crossroad_03.json @@ -98,7 +98,7 @@ "meld": false, "density": 1, "edit": [{ - "find": [{"block": "minecraft:grass_path"}], + "find": [{"block": "minecraft:dirt_path"}], "replace": { "palette": [ {"block": "minecraft:gravel"}, diff --git a/jigsaw-pieces/village/taiga/streets/crossroad_04.json b/jigsaw-pieces/village/taiga/streets/crossroad_04.json index 30918fd9..86397354 100644 --- a/jigsaw-pieces/village/taiga/streets/crossroad_04.json +++ b/jigsaw-pieces/village/taiga/streets/crossroad_04.json @@ -59,7 +59,7 @@ "meld": false, "density": 1, "edit": [{ - "find": [{"block": "minecraft:grass_path"}], + "find": [{"block": "minecraft:dirt_path"}], "replace": { "palette": [ {"block": "minecraft:gravel"}, diff --git a/jigsaw-pieces/village/taiga/streets/crossroad_05.json b/jigsaw-pieces/village/taiga/streets/crossroad_05.json index de0530df..4f2dabf6 100644 --- a/jigsaw-pieces/village/taiga/streets/crossroad_05.json +++ b/jigsaw-pieces/village/taiga/streets/crossroad_05.json @@ -59,7 +59,7 @@ "meld": false, "density": 1, "edit": [{ - "find": [{"block": "minecraft:grass_path"}], + "find": [{"block": "minecraft:dirt_path"}], "replace": { "palette": [ {"block": "minecraft:gravel"}, diff --git a/jigsaw-pieces/village/taiga/streets/crossroad_06.json b/jigsaw-pieces/village/taiga/streets/crossroad_06.json index 0d5b5505..e2173d3e 100644 --- a/jigsaw-pieces/village/taiga/streets/crossroad_06.json +++ b/jigsaw-pieces/village/taiga/streets/crossroad_06.json @@ -72,7 +72,7 @@ "meld": false, "density": 1, "edit": [{ - "find": [{"block": "minecraft:grass_path"}], + "find": [{"block": "minecraft:dirt_path"}], "replace": { "palette": [ {"block": "minecraft:gravel"}, diff --git a/jigsaw-pieces/village/taiga/streets/straight_01.json b/jigsaw-pieces/village/taiga/streets/straight_01.json index eed0cc4f..5f3050a2 100644 --- a/jigsaw-pieces/village/taiga/streets/straight_01.json +++ b/jigsaw-pieces/village/taiga/streets/straight_01.json @@ -113,7 +113,7 @@ "meld": false, "density": 1, "edit": [{ - "find": [{"block": "minecraft:grass_path"}], + "find": [{"block": "minecraft:dirt_path"}], "replace": { "palette": [ {"block": "minecraft:gravel"}, diff --git a/jigsaw-pieces/village/taiga/streets/straight_02.json b/jigsaw-pieces/village/taiga/streets/straight_02.json index 11c0963c..3af31dbd 100644 --- a/jigsaw-pieces/village/taiga/streets/straight_02.json +++ b/jigsaw-pieces/village/taiga/streets/straight_02.json @@ -87,7 +87,7 @@ "meld": false, "density": 1, "edit": [{ - "find": [{"block": "minecraft:grass_path"}], + "find": [{"block": "minecraft:dirt_path"}], "replace": { "palette": [ {"block": "minecraft:gravel"}, diff --git a/jigsaw-pieces/village/taiga/streets/straight_03.json b/jigsaw-pieces/village/taiga/streets/straight_03.json index d0e81665..d61f3f96 100644 --- a/jigsaw-pieces/village/taiga/streets/straight_03.json +++ b/jigsaw-pieces/village/taiga/streets/straight_03.json @@ -113,7 +113,7 @@ "meld": false, "density": 1, "edit": [{ - "find": [{"block": "minecraft:grass_path"}], + "find": [{"block": "minecraft:dirt_path"}], "replace": { "palette": [ {"block": "minecraft:gravel"}, diff --git a/jigsaw-pieces/village/taiga/streets/straight_04.json b/jigsaw-pieces/village/taiga/streets/straight_04.json index 2284b65b..a2f1f2b1 100644 --- a/jigsaw-pieces/village/taiga/streets/straight_04.json +++ b/jigsaw-pieces/village/taiga/streets/straight_04.json @@ -74,7 +74,7 @@ "meld": false, "density": 1, "edit": [{ - "find": [{"block": "minecraft:grass_path"}], + "find": [{"block": "minecraft:dirt_path"}], "replace": { "palette": [ {"block": "minecraft:gravel"}, diff --git a/jigsaw-pieces/village/taiga/streets/straight_05.json b/jigsaw-pieces/village/taiga/streets/straight_05.json index 01ba2f07..71201984 100644 --- a/jigsaw-pieces/village/taiga/streets/straight_05.json +++ b/jigsaw-pieces/village/taiga/streets/straight_05.json @@ -126,7 +126,7 @@ "meld": false, "density": 1, "edit": [{ - "find": [{"block": "minecraft:grass_path"}], + "find": [{"block": "minecraft:dirt_path"}], "replace": { "palette": [ {"block": "minecraft:gravel"}, diff --git a/jigsaw-pieces/village/taiga/streets/straight_06.json b/jigsaw-pieces/village/taiga/streets/straight_06.json index 7cef33ee..9da7e396 100644 --- a/jigsaw-pieces/village/taiga/streets/straight_06.json +++ b/jigsaw-pieces/village/taiga/streets/straight_06.json @@ -269,7 +269,7 @@ "meld": false, "density": 1, "edit": [{ - "find": [{"block": "minecraft:grass_path"}], + "find": [{"block": "minecraft:dirt_path"}], "replace": { "palette": [ {"block": "minecraft:gravel"}, diff --git a/jigsaw-pieces/village/taiga/streets/turn_01.json b/jigsaw-pieces/village/taiga/streets/turn_01.json index 9112ac83..bff313f9 100644 --- a/jigsaw-pieces/village/taiga/streets/turn_01.json +++ b/jigsaw-pieces/village/taiga/streets/turn_01.json @@ -74,7 +74,7 @@ "meld": false, "density": 1, "edit": [{ - "find": [{"block": "minecraft:grass_path"}], + "find": [{"block": "minecraft:dirt_path"}], "replace": { "palette": [ {"block": "minecraft:gravel"}, From ac26516967b7f3e6613afd6e29aecbcc5f6303cd Mon Sep 17 00:00:00 2001 From: Brian Fopiano Date: Sun, 12 Sep 2021 13:41:03 -0700 Subject: [PATCH 14/30] Removed Features :P --- jigsaw-structures/igloo.json | 4 +--- jigsaw-structures/village-jap.json | 4 +--- jigsaw-structures/village-savanna.json | 4 +--- jigsaw-structures/village-snowy.json | 4 +--- jigsaw-structures/village-temperate.json | 4 +--- jigsaw-structures/village-tundra.json | 4 +--- 6 files changed, 6 insertions(+), 18 deletions(-) diff --git a/jigsaw-structures/igloo.json b/jigsaw-structures/igloo.json index 9dc931c3..e9687595 100644 --- a/jigsaw-structures/igloo.json +++ b/jigsaw-structures/igloo.json @@ -1,7 +1,5 @@ { - "feature": { - "entitySpawners": ["villager"] - }, + "maxDepth": 3, "pieces": [ "igloo/top1", diff --git a/jigsaw-structures/village-jap.json b/jigsaw-structures/village-jap.json index a2306493..f26f80e5 100644 --- a/jigsaw-structures/village-jap.json +++ b/jigsaw-structures/village-jap.json @@ -1,9 +1,7 @@ { "maxDepth": 5, "terminate": true, - "feature": { - "entitySpawners": ["villager"] - }, + "pieces": [ "houses/jap/j5", "houses/jap/j4", diff --git a/jigsaw-structures/village-savanna.json b/jigsaw-structures/village-savanna.json index 06bf1e67..67a4565f 100644 --- a/jigsaw-structures/village-savanna.json +++ b/jigsaw-structures/village-savanna.json @@ -1,9 +1,7 @@ { "maxDepth": 3, "terminate": true, - "feature": { - "entitySpawners": ["villager"] - }, + "pieces": [ "village/savanna/town_centers/savanna_meeting_point_1", "village/savanna/town_centers/savanna_meeting_point_2", diff --git a/jigsaw-structures/village-snowy.json b/jigsaw-structures/village-snowy.json index 143b2264..9cc23994 100644 --- a/jigsaw-structures/village-snowy.json +++ b/jigsaw-structures/village-snowy.json @@ -1,9 +1,7 @@ { "maxDepth": 5, "terminate": true, - "feature": { - "entitySpawners": ["villager"] - }, + "pieces": [ "village/snowy/town_centers/snowy_meeting_point_1", "village/snowy/town_centers/snowy_meeting_point_2", diff --git a/jigsaw-structures/village-temperate.json b/jigsaw-structures/village-temperate.json index 606614e7..be6b81d8 100644 --- a/jigsaw-structures/village-temperate.json +++ b/jigsaw-structures/village-temperate.json @@ -1,9 +1,7 @@ { "maxDepth": 5, "terminate": true, - "feature": { - "entitySpawners": ["villager"] - }, + "pieces": [ "village/plains/town_centers/plains_fountain_01", "village/plains/town_centers/plains_meeting_point_1", diff --git a/jigsaw-structures/village-tundra.json b/jigsaw-structures/village-tundra.json index 52960524..543cfce4 100644 --- a/jigsaw-structures/village-tundra.json +++ b/jigsaw-structures/village-tundra.json @@ -1,9 +1,7 @@ { "maxDepth": 5, "terminate": true, - "feature": { - "entitySpawners": ["villager"] - }, + "pieces": [ "village/taiga/town_centers/taiga_meeting_point_1", "village/taiga/town_centers/taiga_meeting_point_2" From 9286307ae3bef70cde172f9bba7e10b2ea30fc9a Mon Sep 17 00:00:00 2001 From: Brian Fopiano Date: Sun, 12 Sep 2021 14:21:02 -0700 Subject: [PATCH 15/30] Enacted all village Changes --- .../plains/houses/plains_accessory_1.json | 15 + .../plains/houses/plains_animal_pen_1.json | 15 + .../plains/houses/plains_animal_pen_2.json | 15 + .../plains/houses/plains_animal_pen_3.json | 15 + .../plains/houses/plains_armorer_house_1.json | 15 + .../plains/houses/plains_big_house_1.json | 15 + .../plains/houses/plains_butcher_shop_1.json | 15 + .../plains/houses/plains_butcher_shop_2.json | 15 + .../plains/houses/plains_cartographer_1.json | 15 + .../houses/plains_fisher_cottage_1.json | 15 + .../houses/plains_fletcher_house_1.json | 15 + .../plains/houses/plains_large_farm_1.json | 15 + .../plains/houses/plains_library_1.json | 15 + .../plains/houses/plains_library_2.json | 15 + .../plains/houses/plains_masons_house_1.json | 15 + .../plains/houses/plains_medium_house_1.json | 15 + .../plains/houses/plains_medium_house_2.json | 16 +- .../plains/houses/plains_meeting_point_4.json | 16 +- .../plains/houses/plains_meeting_point_5.json | 16 +- .../houses/plains_shepherds_house_1.json | 16 +- .../plains/houses/plains_small_farm_1.json | 16 +- .../plains/houses/plains_small_house_1.json | 16 +- .../plains/houses/plains_small_house_2.json | 16 +- .../plains/houses/plains_small_house_3.json | 16 +- .../plains/houses/plains_small_house_4.json | 16 +- .../plains/houses/plains_small_house_5.json | 16 +- .../plains/houses/plains_small_house_6.json | 16 +- .../plains/houses/plains_small_house_7.json | 16 +- .../plains/houses/plains_small_house_8.json | 16 +- .../plains/houses/plains_stable_1.json | 16 +- .../plains/houses/plains_stable_2.json | 16 +- .../plains/houses/plains_tannery_1.json | 16 +- .../plains/houses/plains_temple_3.json | 16 +- .../plains/houses/plains_temple_4.json | 16 +- .../plains/houses/plains_tool_smith_1.json | 16 +- .../plains/houses/plains_weaponsmith_1.json | 16 +- .../village/plains/streets/corner_01.json | 358 ++++++++-------- .../village/plains/streets/corner_02.json | 1 + .../village/plains/streets/corner_03.json | 1 + .../village/plains/streets/crossroad_01.json | 1 + .../village/plains/streets/crossroad_02.json | 1 + .../village/plains/streets/crossroad_03.json | 1 + .../town_centers/plains_fountain_01.json | 16 +- .../town_centers/plains_meeting_point_1.json | 16 +- .../town_centers/plains_meeting_point_2.json | 16 +- .../town_centers/plains_meeting_point_3.json | 16 +- .../savanna/houses/savanna_animal_pen_1.json | 21 + .../savanna/houses/savanna_animal_pen_2.json | 22 +- .../savanna/houses/savanna_animal_pen_3.json | 22 +- .../savanna/houses/savanna_armorer_1.json | 22 +- .../houses/savanna_butchers_shop_1.json | 22 +- .../houses/savanna_butchers_shop_2.json | 22 +- .../houses/savanna_cartographer_1.json | 22 +- .../houses/savanna_fisher_cottage_1.json | 22 +- .../houses/savanna_fletcher_house_1.json | 22 +- .../savanna/houses/savanna_large_farm_1.json | 22 +- .../savanna/houses/savanna_large_farm_2.json | 22 +- .../savanna/houses/savanna_library_1.json | 22 +- .../savanna/houses/savanna_mason_1.json | 22 +- .../houses/savanna_medium_house_1.json | 22 +- .../houses/savanna_medium_house_2.json | 22 +- .../savanna/houses/savanna_shepherd_1.json | 22 +- .../savanna/houses/savanna_small_farm.json | 22 +- .../savanna/houses/savanna_small_house_1.json | 22 +- .../savanna/houses/savanna_small_house_2.json | 22 +- .../savanna/houses/savanna_small_house_3.json | 22 +- .../savanna/houses/savanna_small_house_4.json | 22 +- .../savanna/houses/savanna_small_house_5.json | 22 +- .../savanna/houses/savanna_small_house_6.json | 22 +- .../savanna/houses/savanna_small_house_7.json | 22 +- .../savanna/houses/savanna_small_house_8.json | 22 +- .../savanna/houses/savanna_tannery_1.json | 22 +- .../savanna/houses/savanna_temple_1.json | 22 +- .../savanna/houses/savanna_temple_2.json | 22 +- .../savanna/houses/savanna_tool_smith_1.json | 22 +- .../savanna/houses/savanna_weaponsmith_1.json | 22 +- .../savanna/houses/savanna_weaponsmith_2.json | 22 +- .../snowy/houses/snowy_animal_pen_1.json | 18 + .../snowy/houses/snowy_animal_pen_2.json | 19 +- .../snowy/houses/snowy_armorer_house_1.json | 19 +- .../snowy/houses/snowy_armorer_house_2.json | 19 +- .../snowy/houses/snowy_butchers_shop_1.json | 19 +- .../snowy/houses/snowy_butchers_shop_2.json | 19 +- .../houses/snowy_cartographer_house_1.json | 19 +- .../village/snowy/houses/snowy_farm_1.json | 19 +- .../village/snowy/houses/snowy_farm_2.json | 19 +- .../snowy/houses/snowy_fisher_cottage.json | 19 +- .../snowy/houses/snowy_fletcher_house_1.json | 19 +- .../village/snowy/houses/snowy_library_1.json | 19 +- .../snowy/houses/snowy_masons_house_1.json | 19 +- .../snowy/houses/snowy_masons_house_2.json | 19 +- .../snowy/houses/snowy_medium_house_1.json | 19 +- .../snowy/houses/snowy_medium_house_2.json | 19 +- .../snowy/houses/snowy_medium_house_3.json | 19 +- .../snowy/houses/snowy_shepherds_house_1.json | 19 +- .../snowy/houses/snowy_small_house_1.json | 19 +- .../snowy/houses/snowy_small_house_2.json | 19 +- .../snowy/houses/snowy_small_house_3.json | 19 +- .../snowy/houses/snowy_small_house_4.json | 19 +- .../snowy/houses/snowy_small_house_5.json | 19 +- .../snowy/houses/snowy_small_house_6.json | 19 +- .../snowy/houses/snowy_small_house_7.json | 19 +- .../snowy/houses/snowy_small_house_8.json | 19 +- .../village/snowy/houses/snowy_tannery_1.json | 19 +- .../village/snowy/houses/snowy_temple_1.json | 19 +- .../snowy/houses/snowy_tool_smith_1.json | 19 +- .../snowy/houses/snowy_weapon_smith_1.json | 19 +- .../village/snowy/streets/corner_01.json | 399 +++++++++--------- .../taiga/houses/taiga_animal_pen_1.json | 18 + .../village/taiga/houses/taiga_armorer_2.json | 19 +- .../taiga/houses/taiga_armorer_house_1.json | 19 +- .../taiga/houses/taiga_butcher_shop_1.json | 19 +- .../houses/taiga_cartographer_house_1.json | 19 +- .../taiga/houses/taiga_fisher_cottage_1.json | 19 +- .../taiga/houses/taiga_fletcher_house_1.json | 19 +- .../taiga/houses/taiga_large_farm_1.json | 19 +- .../taiga/houses/taiga_large_farm_2.json | 19 +- .../village/taiga/houses/taiga_library_1.json | 19 +- .../taiga/houses/taiga_masons_house_1.json | 19 +- .../taiga/houses/taiga_medium_house_1.json | 19 +- .../taiga/houses/taiga_medium_house_2.json | 19 +- .../taiga/houses/taiga_medium_house_3.json | 19 +- .../taiga/houses/taiga_medium_house_4.json | 19 +- .../taiga/houses/taiga_shepherds_house_1.json | 19 +- .../taiga/houses/taiga_small_farm_1.json | 19 +- .../taiga/houses/taiga_small_house_1.json | 19 +- .../taiga/houses/taiga_small_house_2.json | 19 +- .../taiga/houses/taiga_small_house_3.json | 19 +- .../taiga/houses/taiga_small_house_4.json | 19 +- .../taiga/houses/taiga_small_house_5.json | 19 +- .../village/taiga/houses/taiga_tannery_1.json | 19 +- .../village/taiga/houses/taiga_temple_1.json | 19 +- .../taiga/houses/taiga_tool_smith_1.json | 19 +- .../taiga/houses/taiga_weaponsmith_1.json | 19 +- .../taiga/houses/taiga_weaponsmith_2.json | 19 +- .../village/taiga/taiga_decoration_2.json | 144 +++---- 136 files changed, 2741 insertions(+), 551 deletions(-) diff --git a/jigsaw-pieces/village/plains/houses/plains_accessory_1.json b/jigsaw-pieces/village/plains/houses/plains_accessory_1.json index 4af741c5..ac0a913d 100644 --- a/jigsaw-pieces/village/plains/houses/plains_accessory_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_accessory_1.json @@ -13,6 +13,21 @@ "direction": "WEST_NEGATIVE_X" }], "placementOptions": { + "markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:oak_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_animal_pen_1.json b/jigsaw-pieces/village/plains/houses/plains_animal_pen_1.json index d68d56bb..82e51268 100644 --- a/jigsaw-pieces/village/plains/houses/plains_animal_pen_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_animal_pen_1.json @@ -41,6 +41,21 @@ } ], "placementOptions": { + "markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:oak_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_animal_pen_2.json b/jigsaw-pieces/village/plains/houses/plains_animal_pen_2.json index c8127f64..2f3c373d 100644 --- a/jigsaw-pieces/village/plains/houses/plains_animal_pen_2.json +++ b/jigsaw-pieces/village/plains/houses/plains_animal_pen_2.json @@ -54,6 +54,21 @@ } ], "placementOptions": { + "markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:oak_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_animal_pen_3.json b/jigsaw-pieces/village/plains/houses/plains_animal_pen_3.json index cd6281e3..b64206f2 100644 --- a/jigsaw-pieces/village/plains/houses/plains_animal_pen_3.json +++ b/jigsaw-pieces/village/plains/houses/plains_animal_pen_3.json @@ -106,6 +106,21 @@ } ], "placementOptions": { + "markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:oak_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_armorer_house_1.json b/jigsaw-pieces/village/plains/houses/plains_armorer_house_1.json index d00bead6..1737e43d 100644 --- a/jigsaw-pieces/village/plains/houses/plains_armorer_house_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_armorer_house_1.json @@ -13,6 +13,21 @@ "direction": "WEST_NEGATIVE_X" }], "placementOptions": { + "markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:oak_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_big_house_1.json b/jigsaw-pieces/village/plains/houses/plains_big_house_1.json index 0f1a726b..58d14498 100644 --- a/jigsaw-pieces/village/plains/houses/plains_big_house_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_big_house_1.json @@ -71,6 +71,21 @@ } ], "placementOptions": { + "markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:oak_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_butcher_shop_1.json b/jigsaw-pieces/village/plains/houses/plains_butcher_shop_1.json index 6222fbf1..6622b1a8 100644 --- a/jigsaw-pieces/village/plains/houses/plains_butcher_shop_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_butcher_shop_1.json @@ -28,6 +28,21 @@ } ], "placementOptions": { + "markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:oak_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_butcher_shop_2.json b/jigsaw-pieces/village/plains/houses/plains_butcher_shop_2.json index 1d0ff926..f5897f3a 100644 --- a/jigsaw-pieces/village/plains/houses/plains_butcher_shop_2.json +++ b/jigsaw-pieces/village/plains/houses/plains_butcher_shop_2.json @@ -80,6 +80,21 @@ } ], "placementOptions": { + "markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:oak_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_cartographer_1.json b/jigsaw-pieces/village/plains/houses/plains_cartographer_1.json index f16a3f1a..b9ec3e22 100644 --- a/jigsaw-pieces/village/plains/houses/plains_cartographer_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_cartographer_1.json @@ -13,6 +13,21 @@ "direction": "WEST_NEGATIVE_X" }], "placementOptions": { + "markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:oak_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_fisher_cottage_1.json b/jigsaw-pieces/village/plains/houses/plains_fisher_cottage_1.json index 25b4da9d..a2756806 100644 --- a/jigsaw-pieces/village/plains/houses/plains_fisher_cottage_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_fisher_cottage_1.json @@ -13,6 +13,21 @@ "direction": "WEST_NEGATIVE_X" }], "placementOptions": { + "markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:oak_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_fletcher_house_1.json b/jigsaw-pieces/village/plains/houses/plains_fletcher_house_1.json index 55b07567..2a6c2e00 100644 --- a/jigsaw-pieces/village/plains/houses/plains_fletcher_house_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_fletcher_house_1.json @@ -28,6 +28,21 @@ } ], "placementOptions": { + "markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:oak_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_large_farm_1.json b/jigsaw-pieces/village/plains/houses/plains_large_farm_1.json index 025a2eaa..0fea92eb 100644 --- a/jigsaw-pieces/village/plains/houses/plains_large_farm_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_large_farm_1.json @@ -13,6 +13,21 @@ "direction": "WEST_NEGATIVE_X" }], "placementOptions": { + "markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:oak_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_library_1.json b/jigsaw-pieces/village/plains/houses/plains_library_1.json index 326e13a1..96f01fdf 100644 --- a/jigsaw-pieces/village/plains/houses/plains_library_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_library_1.json @@ -13,6 +13,21 @@ "direction": "WEST_NEGATIVE_X" }], "placementOptions": { + "markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:oak_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_library_2.json b/jigsaw-pieces/village/plains/houses/plains_library_2.json index 848918d5..00a83e21 100644 --- a/jigsaw-pieces/village/plains/houses/plains_library_2.json +++ b/jigsaw-pieces/village/plains/houses/plains_library_2.json @@ -13,6 +13,21 @@ "direction": "WEST_NEGATIVE_X" }], "placementOptions": { + "markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:oak_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_masons_house_1.json b/jigsaw-pieces/village/plains/houses/plains_masons_house_1.json index d1c75aff..dd8d81cd 100644 --- a/jigsaw-pieces/village/plains/houses/plains_masons_house_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_masons_house_1.json @@ -13,6 +13,21 @@ "direction": "WEST_NEGATIVE_X" }], "placementOptions": { + "markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:oak_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_medium_house_1.json b/jigsaw-pieces/village/plains/houses/plains_medium_house_1.json index ff937f8b..a8f06132 100644 --- a/jigsaw-pieces/village/plains/houses/plains_medium_house_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_medium_house_1.json @@ -56,6 +56,21 @@ } ], "placementOptions": { + "markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:oak_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_medium_house_2.json b/jigsaw-pieces/village/plains/houses/plains_medium_house_2.json index b24b7df8..8418ce7e 100644 --- a/jigsaw-pieces/village/plains/houses/plains_medium_house_2.json +++ b/jigsaw-pieces/village/plains/houses/plains_medium_house_2.json @@ -42,7 +42,21 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:oak_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_meeting_point_4.json b/jigsaw-pieces/village/plains/houses/plains_meeting_point_4.json index 79f9a2d4..522cd774 100644 --- a/jigsaw-pieces/village/plains/houses/plains_meeting_point_4.json +++ b/jigsaw-pieces/village/plains/houses/plains_meeting_point_4.json @@ -66,7 +66,21 @@ "direction": "WEST_NEGATIVE_X" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:oak_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_meeting_point_5.json b/jigsaw-pieces/village/plains/houses/plains_meeting_point_5.json index 31de4648..3e21b15b 100644 --- a/jigsaw-pieces/village/plains/houses/plains_meeting_point_5.json +++ b/jigsaw-pieces/village/plains/houses/plains_meeting_point_5.json @@ -53,7 +53,21 @@ "direction": "WEST_NEGATIVE_X" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:oak_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_shepherds_house_1.json b/jigsaw-pieces/village/plains/houses/plains_shepherds_house_1.json index 86ec555e..15da4a9f 100644 --- a/jigsaw-pieces/village/plains/houses/plains_shepherds_house_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_shepherds_house_1.json @@ -53,7 +53,21 @@ "direction": "WEST_NEGATIVE_X" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:oak_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_small_farm_1.json b/jigsaw-pieces/village/plains/houses/plains_small_farm_1.json index 08e40f2d..d5234be2 100644 --- a/jigsaw-pieces/village/plains/houses/plains_small_farm_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_small_farm_1.json @@ -12,7 +12,21 @@ }, "direction": "WEST_NEGATIVE_X" }], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:oak_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_small_house_1.json b/jigsaw-pieces/village/plains/houses/plains_small_house_1.json index cb670853..244a684b 100644 --- a/jigsaw-pieces/village/plains/houses/plains_small_house_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_small_house_1.json @@ -28,7 +28,21 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:oak_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_small_house_2.json b/jigsaw-pieces/village/plains/houses/plains_small_house_2.json index 713b430f..00277143 100644 --- a/jigsaw-pieces/village/plains/houses/plains_small_house_2.json +++ b/jigsaw-pieces/village/plains/houses/plains_small_house_2.json @@ -28,7 +28,21 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:oak_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_small_house_3.json b/jigsaw-pieces/village/plains/houses/plains_small_house_3.json index 052607cb..1db7e0b4 100644 --- a/jigsaw-pieces/village/plains/houses/plains_small_house_3.json +++ b/jigsaw-pieces/village/plains/houses/plains_small_house_3.json @@ -28,7 +28,21 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:oak_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_small_house_4.json b/jigsaw-pieces/village/plains/houses/plains_small_house_4.json index 57e72f53..61fa3cbe 100644 --- a/jigsaw-pieces/village/plains/houses/plains_small_house_4.json +++ b/jigsaw-pieces/village/plains/houses/plains_small_house_4.json @@ -28,7 +28,21 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:oak_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_small_house_5.json b/jigsaw-pieces/village/plains/houses/plains_small_house_5.json index 5fc70a9c..c84b9d6e 100644 --- a/jigsaw-pieces/village/plains/houses/plains_small_house_5.json +++ b/jigsaw-pieces/village/plains/houses/plains_small_house_5.json @@ -67,7 +67,21 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:oak_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_small_house_6.json b/jigsaw-pieces/village/plains/houses/plains_small_house_6.json index 716dfcfb..8e0fcdbd 100644 --- a/jigsaw-pieces/village/plains/houses/plains_small_house_6.json +++ b/jigsaw-pieces/village/plains/houses/plains_small_house_6.json @@ -28,7 +28,21 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:oak_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_small_house_7.json b/jigsaw-pieces/village/plains/houses/plains_small_house_7.json index c5dc1d82..c6399053 100644 --- a/jigsaw-pieces/village/plains/houses/plains_small_house_7.json +++ b/jigsaw-pieces/village/plains/houses/plains_small_house_7.json @@ -28,7 +28,21 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:oak_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_small_house_8.json b/jigsaw-pieces/village/plains/houses/plains_small_house_8.json index b1b90c0b..241cbf17 100644 --- a/jigsaw-pieces/village/plains/houses/plains_small_house_8.json +++ b/jigsaw-pieces/village/plains/houses/plains_small_house_8.json @@ -28,7 +28,21 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:oak_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_stable_1.json b/jigsaw-pieces/village/plains/houses/plains_stable_1.json index 3ba400a9..8a8fb566 100644 --- a/jigsaw-pieces/village/plains/houses/plains_stable_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_stable_1.json @@ -105,7 +105,21 @@ "direction": "WEST_NEGATIVE_X" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:oak_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_stable_2.json b/jigsaw-pieces/village/plains/houses/plains_stable_2.json index 69250173..ff9f97d2 100644 --- a/jigsaw-pieces/village/plains/houses/plains_stable_2.json +++ b/jigsaw-pieces/village/plains/houses/plains_stable_2.json @@ -66,7 +66,21 @@ "direction": "WEST_NEGATIVE_X" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:oak_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_tannery_1.json b/jigsaw-pieces/village/plains/houses/plains_tannery_1.json index 02cd90c3..98230b4b 100644 --- a/jigsaw-pieces/village/plains/houses/plains_tannery_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_tannery_1.json @@ -12,7 +12,21 @@ }, "direction": "WEST_NEGATIVE_X" }], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:oak_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_temple_3.json b/jigsaw-pieces/village/plains/houses/plains_temple_3.json index c148ead1..f1d7e3a2 100644 --- a/jigsaw-pieces/village/plains/houses/plains_temple_3.json +++ b/jigsaw-pieces/village/plains/houses/plains_temple_3.json @@ -12,7 +12,21 @@ }, "direction": "WEST_NEGATIVE_X" }], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:oak_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_temple_4.json b/jigsaw-pieces/village/plains/houses/plains_temple_4.json index bd48fbde..55596c7a 100644 --- a/jigsaw-pieces/village/plains/houses/plains_temple_4.json +++ b/jigsaw-pieces/village/plains/houses/plains_temple_4.json @@ -12,7 +12,21 @@ }, "direction": "WEST_NEGATIVE_X" }], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:oak_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_tool_smith_1.json b/jigsaw-pieces/village/plains/houses/plains_tool_smith_1.json index 5102ff47..4d7b311d 100644 --- a/jigsaw-pieces/village/plains/houses/plains_tool_smith_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_tool_smith_1.json @@ -12,7 +12,21 @@ }, "direction": "WEST_NEGATIVE_X" }], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:oak_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_weaponsmith_1.json b/jigsaw-pieces/village/plains/houses/plains_weaponsmith_1.json index 79c24105..0a20ab40 100644 --- a/jigsaw-pieces/village/plains/houses/plains_weaponsmith_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_weaponsmith_1.json @@ -12,7 +12,21 @@ }, "direction": "WEST_NEGATIVE_X" }], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:oak_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/streets/corner_01.json b/jigsaw-pieces/village/plains/streets/corner_01.json index 1038709b..f276340a 100644 --- a/jigsaw-pieces/village/plains/streets/corner_01.json +++ b/jigsaw-pieces/village/plains/streets/corner_01.json @@ -1,182 +1,182 @@ { - "connectors": [ - { - "targetName": "village/plains/villagers/unemployed", - "entityCount": 3, - "spawnEntity": "villager", - "innerConnector": true, - "rotateConnector": false, - "name": "villager", - "pools": ["village/desert/decor"], - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "direction": "UP_POSITIVE_Y" - }, - { - "targetName": "minecraft:bottom", - "innerConnector": false, - "rotateConnector": false, - "name": "minecraft:bottom", - "pools": ["village/plains/decor"], - "position": { - "x": -5, - "y": -1, - "z": -4 - }, - "direction": "NORTH_NEGATIVE_Z" - }, - { - "targetName": "minecraft:bottom", - "innerConnector": false, - "rotateConnector": false, - "name": "minecraft:bottom", - "pools": ["village/plains/decor"], - "position": { - "x": -5, - "y": -1, - "z": 5 - }, - "direction": "NORTH_NEGATIVE_Z" - }, - { - "targetName": "minecraft:bottom", - "innerConnector": false, - "rotateConnector": false, - "name": "minecraft:bottom", - "pools": ["village/plains/decor"], - "position": { - "x": 0, - "y": -1, - "z": 4 - }, - "direction": "NORTH_NEGATIVE_Z" - }, - { - "targetName": "minecraft:bottom", - "innerConnector": false, - "rotateConnector": false, - "name": "minecraft:bottom", - "pools": ["village/plains/decor"], - "position": { - "x": 2, - "y": -1, - "z": -5 - }, - "direction": "NORTH_NEGATIVE_Z" - }, - { - "targetName": "minecraft:bottom", - "innerConnector": false, - "rotateConnector": false, - "name": "minecraft:bottom", - "pools": ["village/plains/decor"], - "position": { - "x": 5, - "y": -1, - "z": 1 - }, - "direction": "NORTH_NEGATIVE_Z" - }, - { - "targetName": "minecraft:street", - "innerConnector": false, - "rotateConnector": false, - "name": "minecraft:street", - "pools": ["village/plains/streets"], - "position": { - "x": -8, - "y": 0, - "z": 0 - }, - "direction": "WEST_NEGATIVE_X" - }, - { - "targetName": "minecraft:street", - "innerConnector": false, - "rotateConnector": false, - "name": "minecraft:street", - "pools": ["village/plains/streets"], - "position": { - "x": -1, - "y": 0, - "z": -8 - }, - "direction": "NORTH_NEGATIVE_Z" - }, - { - "targetName": "minecraft:building_entrance", - "innerConnector": true, - "rotateConnector": false, - "name": "minecraft:building_entrance", - "pools": ["village/plains/houses"], - "position": { - "x": 0, - "y": 0, - "z": -2 - }, - "direction": "EAST_POSITIVE_X" - } - ], - "placementOptions": { - "overStilt": 0, - "chance": 1, - "meld": false, - "density": 1, - "edit": [], - "bottom": false, - "translateCenter": false, - "rotation": { - "yAxis": { - "min": 0, - "max": 0, - "interval": 90, - "enabled": true - }, - "xAxis": { - "min": 0, - "max": 0, - "interval": 0, - "enabled": false - }, - "zAxis": { - "min": 0, - "max": 0, - "interval": 0, - "enabled": false - }, - "enabled": true - }, - "boreExtendMinY": -1, - "smartBore": false, - "waterloggable": false, - "bore": false, - "translate": { - "yRandom": 0, - "x": 0, - "y": 0, - "z": 0 - }, - "mode": "PAINT", - "carvingSupport": "SURFACE_ONLY", - "snow": 0, - "underwater": false, - "place": [], - "boreExtendMaxY": 0, - "onwater": false, - "clamp": { - "minimumHeight": 0, - "maximumHeight": 255 - }, - "warp": { - "multiplier": 1, - "style": "FLAT", - "zoom": 1, - "maxFractureAccuracy": false, - "exponent": 1 - } + "connectors": [ + { + "targetName": "village/plains/villagers/unemployed", + "entityCount": 3, + "spawnEntity": "villager", + "innerConnector": true, + "rotateConnector": false, + "name": "villager", + "pools": ["village/desert/decor"], + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "direction": "UP_POSITIVE_Y" }, - "object": "jigsaw/village/plains/streets/corner_01" + { + "targetName": "minecraft:bottom", + "innerConnector": false, + "rotateConnector": false, + "name": "minecraft:bottom", + "pools": ["village/plains/decor"], + "position": { + "x": -5, + "y": -1, + "z": -4 + }, + "direction": "NORTH_NEGATIVE_Z" + }, + { + "targetName": "minecraft:bottom", + "innerConnector": false, + "rotateConnector": false, + "name": "minecraft:bottom", + "pools": ["village/plains/decor"], + "position": { + "x": -5, + "y": -1, + "z": 5 + }, + "direction": "NORTH_NEGATIVE_Z" + }, + { + "targetName": "minecraft:bottom", + "innerConnector": false, + "rotateConnector": false, + "name": "minecraft:bottom", + "pools": ["village/plains/decor"], + "position": { + "x": 0, + "y": -1, + "z": 4 + }, + "direction": "NORTH_NEGATIVE_Z" + }, + { + "targetName": "minecraft:bottom", + "innerConnector": false, + "rotateConnector": false, + "name": "minecraft:bottom", + "pools": ["village/plains/decor"], + "position": { + "x": 2, + "y": -1, + "z": -5 + }, + "direction": "NORTH_NEGATIVE_Z" + }, + { + "targetName": "minecraft:bottom", + "innerConnector": false, + "rotateConnector": false, + "name": "minecraft:bottom", + "pools": ["village/plains/decor"], + "position": { + "x": 5, + "y": -1, + "z": 1 + }, + "direction": "NORTH_NEGATIVE_Z" + }, + { + "targetName": "minecraft:street", + "innerConnector": false, + "rotateConnector": false, + "name": "minecraft:street", + "pools": ["village/plains/streets"], + "position": { + "x": -8, + "y": 0, + "z": 0 + }, + "direction": "WEST_NEGATIVE_X" + }, + { + "targetName": "minecraft:street", + "innerConnector": false, + "rotateConnector": false, + "name": "minecraft:street", + "pools": ["village/plains/streets"], + "position": { + "x": -1, + "y": 0, + "z": -8 + }, + "direction": "NORTH_NEGATIVE_Z" + }, + { + "targetName": "minecraft:building_entrance", + "innerConnector": true, + "rotateConnector": false, + "name": "minecraft:building_entrance", + "pools": ["village/plains/houses"], + "position": { + "x": 0, + "y": 0, + "z": -2 + }, + "direction": "EAST_POSITIVE_X" + } + ], + "placementOptions": { + "overStilt": 0, + "chance": 1, + "meld": false, + "density": 1, + "edit": [], + "bottom": false, + "translateCenter": false, + "rotation": { + "yAxis": { + "min": 0, + "max": 0, + "interval": 90, + "enabled": true + }, + "xAxis": { + "min": 0, + "max": 0, + "interval": 0, + "enabled": false + }, + "zAxis": { + "min": 0, + "max": 0, + "interval": 0, + "enabled": false + }, + "enabled": true + }, + "boreExtendMinY": -1, + "smartBore": false, + "waterloggable": false, + "bore": false, + "translate": { + "yRandom": 0, + "x": 0, + "y": 0, + "z": 0 + }, + "mode": "PAINT", + "carvingSupport": "SURFACE_ONLY", + "snow": 0, + "underwater": false, + "place": [], + "boreExtendMaxY": 0, + "onwater": false, + "clamp": { + "minimumHeight": 0, + "maximumHeight": 255 + }, + "warp": { + "multiplier": 1, + "style": "FLAT", + "zoom": 1, + "maxFractureAccuracy": false, + "exponent": 1 + } + }, + "object": "jigsaw/village/plains/streets/corner_01" } diff --git a/jigsaw-pieces/village/plains/streets/corner_02.json b/jigsaw-pieces/village/plains/streets/corner_02.json index 3f305cb7..0ecd5ed4 100644 --- a/jigsaw-pieces/village/plains/streets/corner_02.json +++ b/jigsaw-pieces/village/plains/streets/corner_02.json @@ -56,6 +56,7 @@ } ], "placementOptions": { + "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/streets/corner_03.json b/jigsaw-pieces/village/plains/streets/corner_03.json index 71b62c06..5feb2dd4 100644 --- a/jigsaw-pieces/village/plains/streets/corner_03.json +++ b/jigsaw-pieces/village/plains/streets/corner_03.json @@ -43,6 +43,7 @@ } ], "placementOptions": { + "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/streets/crossroad_01.json b/jigsaw-pieces/village/plains/streets/crossroad_01.json index d2fa3e8a..066095b2 100644 --- a/jigsaw-pieces/village/plains/streets/crossroad_01.json +++ b/jigsaw-pieces/village/plains/streets/crossroad_01.json @@ -171,6 +171,7 @@ } ], "placementOptions": { + "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/streets/crossroad_02.json b/jigsaw-pieces/village/plains/streets/crossroad_02.json index 0a5b456e..5402d2d6 100644 --- a/jigsaw-pieces/village/plains/streets/crossroad_02.json +++ b/jigsaw-pieces/village/plains/streets/crossroad_02.json @@ -119,6 +119,7 @@ } ], "placementOptions": { + "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/streets/crossroad_03.json b/jigsaw-pieces/village/plains/streets/crossroad_03.json index 386fdb83..c14c98ea 100644 --- a/jigsaw-pieces/village/plains/streets/crossroad_03.json +++ b/jigsaw-pieces/village/plains/streets/crossroad_03.json @@ -93,6 +93,7 @@ } ], "placementOptions": { + "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/town_centers/plains_fountain_01.json b/jigsaw-pieces/village/plains/town_centers/plains_fountain_01.json index d024a9ec..bfab53fe 100644 --- a/jigsaw-pieces/village/plains/town_centers/plains_fountain_01.json +++ b/jigsaw-pieces/village/plains/town_centers/plains_fountain_01.json @@ -134,7 +134,21 @@ "direction": "EAST_POSITIVE_X" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:oak_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/town_centers/plains_meeting_point_1.json b/jigsaw-pieces/village/plains/town_centers/plains_meeting_point_1.json index ba13772e..d533b8f9 100644 --- a/jigsaw-pieces/village/plains/town_centers/plains_meeting_point_1.json +++ b/jigsaw-pieces/village/plains/town_centers/plains_meeting_point_1.json @@ -146,7 +146,21 @@ "direction": "EAST_POSITIVE_X" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:oak_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/town_centers/plains_meeting_point_2.json b/jigsaw-pieces/village/plains/town_centers/plains_meeting_point_2.json index 3904e867..cbb177d5 100644 --- a/jigsaw-pieces/village/plains/town_centers/plains_meeting_point_2.json +++ b/jigsaw-pieces/village/plains/town_centers/plains_meeting_point_2.json @@ -147,7 +147,21 @@ "direction": "EAST_POSITIVE_X" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:oak_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/town_centers/plains_meeting_point_3.json b/jigsaw-pieces/village/plains/town_centers/plains_meeting_point_3.json index cd17244f..c5ca9678 100644 --- a/jigsaw-pieces/village/plains/town_centers/plains_meeting_point_3.json +++ b/jigsaw-pieces/village/plains/town_centers/plains_meeting_point_3.json @@ -107,7 +107,21 @@ "direction": "EAST_POSITIVE_X" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:oak_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_animal_pen_1.json b/jigsaw-pieces/village/savanna/houses/savanna_animal_pen_1.json index c69c6c1f..fe93d43d 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_animal_pen_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_animal_pen_1.json @@ -28,6 +28,27 @@ } ], "placementOptions": { + "markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:yellow_terracotta" + }, + { + "block": "minecraft:orange_terracotta" + }, + { + "block": "minecraft:acacia_planks" + }, + { + "block": "minecraft:stripped_acacia_log" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_animal_pen_2.json b/jigsaw-pieces/village/savanna/houses/savanna_animal_pen_2.json index 56aca500..3330ff9a 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_animal_pen_2.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_animal_pen_2.json @@ -79,7 +79,27 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:yellow_terracotta" + }, + { + "block": "minecraft:orange_terracotta" + }, + { + "block": "minecraft:acacia_planks" + }, + { + "block": "minecraft:stripped_acacia_log" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_animal_pen_3.json b/jigsaw-pieces/village/savanna/houses/savanna_animal_pen_3.json index 10826f9a..91bf03b7 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_animal_pen_3.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_animal_pen_3.json @@ -40,7 +40,27 @@ "direction": "SOUTH_POSITIVE_Z" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:yellow_terracotta" + }, + { + "block": "minecraft:orange_terracotta" + }, + { + "block": "minecraft:acacia_planks" + }, + { + "block": "minecraft:stripped_acacia_log" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_armorer_1.json b/jigsaw-pieces/village/savanna/houses/savanna_armorer_1.json index b79fbb6d..07f4f3bd 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_armorer_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_armorer_1.json @@ -12,7 +12,27 @@ }, "direction": "WEST_NEGATIVE_X" }], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:yellow_terracotta" + }, + { + "block": "minecraft:orange_terracotta" + }, + { + "block": "minecraft:acacia_planks" + }, + { + "block": "minecraft:stripped_acacia_log" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_butchers_shop_1.json b/jigsaw-pieces/village/savanna/houses/savanna_butchers_shop_1.json index 75c58742..92979190 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_butchers_shop_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_butchers_shop_1.json @@ -27,7 +27,27 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:yellow_terracotta" + }, + { + "block": "minecraft:orange_terracotta" + }, + { + "block": "minecraft:acacia_planks" + }, + { + "block": "minecraft:stripped_acacia_log" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_butchers_shop_2.json b/jigsaw-pieces/village/savanna/houses/savanna_butchers_shop_2.json index e3df9b4d..78f239c7 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_butchers_shop_2.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_butchers_shop_2.json @@ -27,7 +27,27 @@ "direction": "WEST_NEGATIVE_X" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:yellow_terracotta" + }, + { + "block": "minecraft:orange_terracotta" + }, + { + "block": "minecraft:acacia_planks" + }, + { + "block": "minecraft:stripped_acacia_log" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_cartographer_1.json b/jigsaw-pieces/village/savanna/houses/savanna_cartographer_1.json index 484f532a..11875f42 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_cartographer_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_cartographer_1.json @@ -27,7 +27,27 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:yellow_terracotta" + }, + { + "block": "minecraft:orange_terracotta" + }, + { + "block": "minecraft:acacia_planks" + }, + { + "block": "minecraft:stripped_acacia_log" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_fisher_cottage_1.json b/jigsaw-pieces/village/savanna/houses/savanna_fisher_cottage_1.json index d0574359..bf397e70 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_fisher_cottage_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_fisher_cottage_1.json @@ -53,7 +53,27 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:yellow_terracotta" + }, + { + "block": "minecraft:orange_terracotta" + }, + { + "block": "minecraft:acacia_planks" + }, + { + "block": "minecraft:stripped_acacia_log" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_fletcher_house_1.json b/jigsaw-pieces/village/savanna/houses/savanna_fletcher_house_1.json index d80bf4b4..bd85ad74 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_fletcher_house_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_fletcher_house_1.json @@ -12,7 +12,27 @@ }, "direction": "SOUTH_POSITIVE_Z" }], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:yellow_terracotta" + }, + { + "block": "minecraft:orange_terracotta" + }, + { + "block": "minecraft:acacia_planks" + }, + { + "block": "minecraft:stripped_acacia_log" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_large_farm_1.json b/jigsaw-pieces/village/savanna/houses/savanna_large_farm_1.json index d8754049..dd738359 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_large_farm_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_large_farm_1.json @@ -12,7 +12,27 @@ }, "direction": "SOUTH_POSITIVE_Z" }], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:yellow_terracotta" + }, + { + "block": "minecraft:orange_terracotta" + }, + { + "block": "minecraft:acacia_planks" + }, + { + "block": "minecraft:stripped_acacia_log" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_large_farm_2.json b/jigsaw-pieces/village/savanna/houses/savanna_large_farm_2.json index 4a3b98d0..07beb47a 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_large_farm_2.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_large_farm_2.json @@ -27,7 +27,27 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:yellow_terracotta" + }, + { + "block": "minecraft:orange_terracotta" + }, + { + "block": "minecraft:acacia_planks" + }, + { + "block": "minecraft:stripped_acacia_log" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_library_1.json b/jigsaw-pieces/village/savanna/houses/savanna_library_1.json index 5bba3776..cf7d75a2 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_library_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_library_1.json @@ -12,7 +12,27 @@ }, "direction": "NORTH_NEGATIVE_Z" }], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:yellow_terracotta" + }, + { + "block": "minecraft:orange_terracotta" + }, + { + "block": "minecraft:acacia_planks" + }, + { + "block": "minecraft:stripped_acacia_log" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_mason_1.json b/jigsaw-pieces/village/savanna/houses/savanna_mason_1.json index 53020081..6e7bdf03 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_mason_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_mason_1.json @@ -12,7 +12,27 @@ }, "direction": "WEST_NEGATIVE_X" }], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:yellow_terracotta" + }, + { + "block": "minecraft:orange_terracotta" + }, + { + "block": "minecraft:acacia_planks" + }, + { + "block": "minecraft:stripped_acacia_log" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_medium_house_1.json b/jigsaw-pieces/village/savanna/houses/savanna_medium_house_1.json index 58708824..aefb8d0a 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_medium_house_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_medium_house_1.json @@ -53,7 +53,27 @@ "direction": "WEST_NEGATIVE_X" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:yellow_terracotta" + }, + { + "block": "minecraft:orange_terracotta" + }, + { + "block": "minecraft:acacia_planks" + }, + { + "block": "minecraft:stripped_acacia_log" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_medium_house_2.json b/jigsaw-pieces/village/savanna/houses/savanna_medium_house_2.json index c4ab10d9..6eecd2d5 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_medium_house_2.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_medium_house_2.json @@ -53,7 +53,27 @@ "direction": "WEST_NEGATIVE_X" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:yellow_terracotta" + }, + { + "block": "minecraft:orange_terracotta" + }, + { + "block": "minecraft:acacia_planks" + }, + { + "block": "minecraft:stripped_acacia_log" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_shepherd_1.json b/jigsaw-pieces/village/savanna/houses/savanna_shepherd_1.json index 7ce656ce..821a89f2 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_shepherd_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_shepherd_1.json @@ -40,7 +40,27 @@ "direction": "WEST_NEGATIVE_X" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:yellow_terracotta" + }, + { + "block": "minecraft:orange_terracotta" + }, + { + "block": "minecraft:acacia_planks" + }, + { + "block": "minecraft:stripped_acacia_log" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_small_farm.json b/jigsaw-pieces/village/savanna/houses/savanna_small_farm.json index 13cd545b..d3e3ecc8 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_small_farm.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_small_farm.json @@ -12,7 +12,27 @@ }, "direction": "NORTH_NEGATIVE_Z" }], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:yellow_terracotta" + }, + { + "block": "minecraft:orange_terracotta" + }, + { + "block": "minecraft:acacia_planks" + }, + { + "block": "minecraft:stripped_acacia_log" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_small_house_1.json b/jigsaw-pieces/village/savanna/houses/savanna_small_house_1.json index 8a4466bb..da0a65ce 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_small_house_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_small_house_1.json @@ -27,7 +27,27 @@ "direction": "SOUTH_POSITIVE_Z" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:yellow_terracotta" + }, + { + "block": "minecraft:orange_terracotta" + }, + { + "block": "minecraft:acacia_planks" + }, + { + "block": "minecraft:stripped_acacia_log" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_small_house_2.json b/jigsaw-pieces/village/savanna/houses/savanna_small_house_2.json index 312013e1..1958bd42 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_small_house_2.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_small_house_2.json @@ -27,7 +27,27 @@ "direction": "SOUTH_POSITIVE_Z" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:yellow_terracotta" + }, + { + "block": "minecraft:orange_terracotta" + }, + { + "block": "minecraft:acacia_planks" + }, + { + "block": "minecraft:stripped_acacia_log" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_small_house_3.json b/jigsaw-pieces/village/savanna/houses/savanna_small_house_3.json index b29535b4..9ca247f2 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_small_house_3.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_small_house_3.json @@ -27,7 +27,27 @@ "direction": "SOUTH_POSITIVE_Z" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:yellow_terracotta" + }, + { + "block": "minecraft:orange_terracotta" + }, + { + "block": "minecraft:acacia_planks" + }, + { + "block": "minecraft:stripped_acacia_log" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_small_house_4.json b/jigsaw-pieces/village/savanna/houses/savanna_small_house_4.json index 094daa1c..1f4a7d0f 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_small_house_4.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_small_house_4.json @@ -27,7 +27,27 @@ "direction": "SOUTH_POSITIVE_Z" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:yellow_terracotta" + }, + { + "block": "minecraft:orange_terracotta" + }, + { + "block": "minecraft:acacia_planks" + }, + { + "block": "minecraft:stripped_acacia_log" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_small_house_5.json b/jigsaw-pieces/village/savanna/houses/savanna_small_house_5.json index 6fbb3243..47b6bd86 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_small_house_5.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_small_house_5.json @@ -27,7 +27,27 @@ "direction": "EAST_POSITIVE_X" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:yellow_terracotta" + }, + { + "block": "minecraft:orange_terracotta" + }, + { + "block": "minecraft:acacia_planks" + }, + { + "block": "minecraft:stripped_acacia_log" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_small_house_6.json b/jigsaw-pieces/village/savanna/houses/savanna_small_house_6.json index 708d5659..a75c26f3 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_small_house_6.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_small_house_6.json @@ -40,7 +40,27 @@ "direction": "WEST_NEGATIVE_X" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:yellow_terracotta" + }, + { + "block": "minecraft:orange_terracotta" + }, + { + "block": "minecraft:acacia_planks" + }, + { + "block": "minecraft:stripped_acacia_log" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_small_house_7.json b/jigsaw-pieces/village/savanna/houses/savanna_small_house_7.json index 2f5486f2..4d98fd55 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_small_house_7.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_small_house_7.json @@ -27,7 +27,27 @@ "direction": "SOUTH_POSITIVE_Z" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:yellow_terracotta" + }, + { + "block": "minecraft:orange_terracotta" + }, + { + "block": "minecraft:acacia_planks" + }, + { + "block": "minecraft:stripped_acacia_log" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_small_house_8.json b/jigsaw-pieces/village/savanna/houses/savanna_small_house_8.json index 552dc550..1ce01da8 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_small_house_8.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_small_house_8.json @@ -27,7 +27,27 @@ "direction": "WEST_NEGATIVE_X" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:yellow_terracotta" + }, + { + "block": "minecraft:orange_terracotta" + }, + { + "block": "minecraft:acacia_planks" + }, + { + "block": "minecraft:stripped_acacia_log" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_tannery_1.json b/jigsaw-pieces/village/savanna/houses/savanna_tannery_1.json index f8cf5e6d..e6014f5e 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_tannery_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_tannery_1.json @@ -12,7 +12,27 @@ }, "direction": "EAST_POSITIVE_X" }], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:yellow_terracotta" + }, + { + "block": "minecraft:orange_terracotta" + }, + { + "block": "minecraft:acacia_planks" + }, + { + "block": "minecraft:stripped_acacia_log" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_temple_1.json b/jigsaw-pieces/village/savanna/houses/savanna_temple_1.json index 615beb25..1eabc2d9 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_temple_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_temple_1.json @@ -12,7 +12,27 @@ }, "direction": "WEST_NEGATIVE_X" }], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:yellow_terracotta" + }, + { + "block": "minecraft:orange_terracotta" + }, + { + "block": "minecraft:acacia_planks" + }, + { + "block": "minecraft:stripped_acacia_log" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_temple_2.json b/jigsaw-pieces/village/savanna/houses/savanna_temple_2.json index 3332a1a4..22b81784 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_temple_2.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_temple_2.json @@ -12,7 +12,27 @@ }, "direction": "WEST_NEGATIVE_X" }], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:yellow_terracotta" + }, + { + "block": "minecraft:orange_terracotta" + }, + { + "block": "minecraft:acacia_planks" + }, + { + "block": "minecraft:stripped_acacia_log" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_tool_smith_1.json b/jigsaw-pieces/village/savanna/houses/savanna_tool_smith_1.json index 7e6d7b2d..716d1385 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_tool_smith_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_tool_smith_1.json @@ -12,7 +12,27 @@ }, "direction": "WEST_NEGATIVE_X" }], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:yellow_terracotta" + }, + { + "block": "minecraft:orange_terracotta" + }, + { + "block": "minecraft:acacia_planks" + }, + { + "block": "minecraft:stripped_acacia_log" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_weaponsmith_1.json b/jigsaw-pieces/village/savanna/houses/savanna_weaponsmith_1.json index f3324008..a9fad78c 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_weaponsmith_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_weaponsmith_1.json @@ -12,7 +12,27 @@ }, "direction": "EAST_POSITIVE_X" }], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:yellow_terracotta" + }, + { + "block": "minecraft:orange_terracotta" + }, + { + "block": "minecraft:acacia_planks" + }, + { + "block": "minecraft:stripped_acacia_log" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_weaponsmith_2.json b/jigsaw-pieces/village/savanna/houses/savanna_weaponsmith_2.json index 1bb5c828..68144f97 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_weaponsmith_2.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_weaponsmith_2.json @@ -12,7 +12,27 @@ }, "direction": "WEST_NEGATIVE_X" }], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:yellow_terracotta" + }, + { + "block": "minecraft:orange_terracotta" + }, + { + "block": "minecraft:acacia_planks" + }, + { + "block": "minecraft:stripped_acacia_log" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_animal_pen_1.json b/jigsaw-pieces/village/snowy/houses/snowy_animal_pen_1.json index feb03f3d..24931d16 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_animal_pen_1.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_animal_pen_1.json @@ -28,6 +28,24 @@ } ], "placementOptions": { + "markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:diorite" + }, + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:spruce_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_animal_pen_2.json b/jigsaw-pieces/village/snowy/houses/snowy_animal_pen_2.json index 58031fd1..7cccf880 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_animal_pen_2.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_animal_pen_2.json @@ -40,7 +40,24 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:diorite" + }, + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:spruce_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_armorer_house_1.json b/jigsaw-pieces/village/snowy/houses/snowy_armorer_house_1.json index 071c9230..7cb0391d 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_armorer_house_1.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_armorer_house_1.json @@ -12,7 +12,24 @@ }, "direction": "WEST_NEGATIVE_X" }], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:diorite" + }, + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:spruce_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_armorer_house_2.json b/jigsaw-pieces/village/snowy/houses/snowy_armorer_house_2.json index cda51775..01785063 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_armorer_house_2.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_armorer_house_2.json @@ -12,7 +12,24 @@ }, "direction": "NORTH_NEGATIVE_Z" }], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:diorite" + }, + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:spruce_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_butchers_shop_1.json b/jigsaw-pieces/village/snowy/houses/snowy_butchers_shop_1.json index 645932e9..66c47ac9 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_butchers_shop_1.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_butchers_shop_1.json @@ -27,7 +27,24 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:diorite" + }, + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:spruce_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_butchers_shop_2.json b/jigsaw-pieces/village/snowy/houses/snowy_butchers_shop_2.json index ce546aca..52bfa65f 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_butchers_shop_2.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_butchers_shop_2.json @@ -27,7 +27,24 @@ "direction": "WEST_NEGATIVE_X" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:diorite" + }, + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:spruce_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_cartographer_house_1.json b/jigsaw-pieces/village/snowy/houses/snowy_cartographer_house_1.json index 92e2a753..af709a39 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_cartographer_house_1.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_cartographer_house_1.json @@ -12,7 +12,24 @@ }, "direction": "WEST_NEGATIVE_X" }], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:diorite" + }, + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:spruce_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_farm_1.json b/jigsaw-pieces/village/snowy/houses/snowy_farm_1.json index 1f59b697..d7d1e46d 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_farm_1.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_farm_1.json @@ -12,7 +12,24 @@ }, "direction": "WEST_NEGATIVE_X" }], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:diorite" + }, + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:spruce_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_farm_2.json b/jigsaw-pieces/village/snowy/houses/snowy_farm_2.json index cbc13ac0..1e50acaa 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_farm_2.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_farm_2.json @@ -12,7 +12,24 @@ }, "direction": "WEST_NEGATIVE_X" }], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:diorite" + }, + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:spruce_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_fisher_cottage.json b/jigsaw-pieces/village/snowy/houses/snowy_fisher_cottage.json index 84ff96d5..e02d94a7 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_fisher_cottage.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_fisher_cottage.json @@ -12,7 +12,24 @@ }, "direction": "SOUTH_POSITIVE_Z" }], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:diorite" + }, + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:spruce_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_fletcher_house_1.json b/jigsaw-pieces/village/snowy/houses/snowy_fletcher_house_1.json index 527c651c..e966f372 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_fletcher_house_1.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_fletcher_house_1.json @@ -12,7 +12,24 @@ }, "direction": "WEST_NEGATIVE_X" }], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:diorite" + }, + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:spruce_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_library_1.json b/jigsaw-pieces/village/snowy/houses/snowy_library_1.json index 6a0abda5..6e52d417 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_library_1.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_library_1.json @@ -12,7 +12,24 @@ }, "direction": "WEST_NEGATIVE_X" }], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:diorite" + }, + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:spruce_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_masons_house_1.json b/jigsaw-pieces/village/snowy/houses/snowy_masons_house_1.json index e3c88824..5d6a27a9 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_masons_house_1.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_masons_house_1.json @@ -12,7 +12,24 @@ }, "direction": "SOUTH_POSITIVE_Z" }], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:diorite" + }, + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:spruce_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_masons_house_2.json b/jigsaw-pieces/village/snowy/houses/snowy_masons_house_2.json index eab5154d..7f19b174 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_masons_house_2.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_masons_house_2.json @@ -12,7 +12,24 @@ }, "direction": "WEST_NEGATIVE_X" }], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:diorite" + }, + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:spruce_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_medium_house_1.json b/jigsaw-pieces/village/snowy/houses/snowy_medium_house_1.json index 6c455734..291f0dda 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_medium_house_1.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_medium_house_1.json @@ -42,7 +42,24 @@ "direction": "EAST_POSITIVE_X" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:diorite" + }, + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:spruce_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_medium_house_2.json b/jigsaw-pieces/village/snowy/houses/snowy_medium_house_2.json index 5e2b705a..75b88a56 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_medium_house_2.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_medium_house_2.json @@ -42,7 +42,24 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:diorite" + }, + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:spruce_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_medium_house_3.json b/jigsaw-pieces/village/snowy/houses/snowy_medium_house_3.json index 2f66b275..313c2211 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_medium_house_3.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_medium_house_3.json @@ -42,7 +42,24 @@ "direction": "WEST_NEGATIVE_X" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:diorite" + }, + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:spruce_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_shepherds_house_1.json b/jigsaw-pieces/village/snowy/houses/snowy_shepherds_house_1.json index 4287e1de..4dacbea8 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_shepherds_house_1.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_shepherds_house_1.json @@ -27,7 +27,24 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:diorite" + }, + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:spruce_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_small_house_1.json b/jigsaw-pieces/village/snowy/houses/snowy_small_house_1.json index 7f38cc83..5f02d398 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_small_house_1.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_small_house_1.json @@ -28,7 +28,24 @@ "direction": "SOUTH_POSITIVE_Z" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:diorite" + }, + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:spruce_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_small_house_2.json b/jigsaw-pieces/village/snowy/houses/snowy_small_house_2.json index 009c663c..23b94501 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_small_house_2.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_small_house_2.json @@ -28,7 +28,24 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:diorite" + }, + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:spruce_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_small_house_3.json b/jigsaw-pieces/village/snowy/houses/snowy_small_house_3.json index ffe8258b..fa7fe069 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_small_house_3.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_small_house_3.json @@ -28,7 +28,24 @@ "direction": "SOUTH_POSITIVE_Z" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:diorite" + }, + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:spruce_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_small_house_4.json b/jigsaw-pieces/village/snowy/houses/snowy_small_house_4.json index fe889334..81f57e7d 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_small_house_4.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_small_house_4.json @@ -28,7 +28,24 @@ "direction": "WEST_NEGATIVE_X" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:diorite" + }, + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:spruce_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_small_house_5.json b/jigsaw-pieces/village/snowy/houses/snowy_small_house_5.json index ed8052c9..f568250a 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_small_house_5.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_small_house_5.json @@ -28,7 +28,24 @@ "direction": "WEST_NEGATIVE_X" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:diorite" + }, + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:spruce_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_small_house_6.json b/jigsaw-pieces/village/snowy/houses/snowy_small_house_6.json index 416ab283..9d19da8a 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_small_house_6.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_small_house_6.json @@ -28,7 +28,24 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:diorite" + }, + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:spruce_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_small_house_7.json b/jigsaw-pieces/village/snowy/houses/snowy_small_house_7.json index 8668389d..3058c718 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_small_house_7.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_small_house_7.json @@ -28,7 +28,24 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:diorite" + }, + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:spruce_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_small_house_8.json b/jigsaw-pieces/village/snowy/houses/snowy_small_house_8.json index c3026650..5f12c2f3 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_small_house_8.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_small_house_8.json @@ -28,7 +28,24 @@ "direction": "WEST_NEGATIVE_X" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:diorite" + }, + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:spruce_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_tannery_1.json b/jigsaw-pieces/village/snowy/houses/snowy_tannery_1.json index f32d5046..87f1e0ad 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_tannery_1.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_tannery_1.json @@ -12,7 +12,24 @@ }, "direction": "WEST_NEGATIVE_X" }], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:diorite" + }, + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:spruce_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_temple_1.json b/jigsaw-pieces/village/snowy/houses/snowy_temple_1.json index c765d0a7..0e31c804 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_temple_1.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_temple_1.json @@ -12,7 +12,24 @@ }, "direction": "WEST_NEGATIVE_X" }], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:diorite" + }, + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:spruce_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_tool_smith_1.json b/jigsaw-pieces/village/snowy/houses/snowy_tool_smith_1.json index 04884b98..b8f2e964 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_tool_smith_1.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_tool_smith_1.json @@ -12,7 +12,24 @@ }, "direction": "WEST_NEGATIVE_X" }], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:diorite" + }, + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:spruce_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_weapon_smith_1.json b/jigsaw-pieces/village/snowy/houses/snowy_weapon_smith_1.json index ae079acd..5051d2cb 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_weapon_smith_1.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_weapon_smith_1.json @@ -12,7 +12,24 @@ }, "direction": "WEST_NEGATIVE_X" }], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:diorite" + }, + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:spruce_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/streets/corner_01.json b/jigsaw-pieces/village/snowy/streets/corner_01.json index 6c05953a..81bf97e0 100644 --- a/jigsaw-pieces/village/snowy/streets/corner_01.json +++ b/jigsaw-pieces/village/snowy/streets/corner_01.json @@ -1,195 +1,210 @@ { - "connectors": [ - { - "targetName": "village/snowy/villagers/unemployed", - "entityCount": 3, - "spawnEntity": "villager", - "innerConnector": true, - "rotateConnector": false, - "name": "villager", - "pools": ["village/desert/decor"], - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "direction": "UP_POSITIVE_Y" - }, - { - "targetName": "minecraft:bottom", - "innerConnector": false, - "rotateConnector": false, - "name": "minecraft:bottom", - "pools": ["village/snowy/decor"], - "position": { - "x": -5, - "y": -1, - "z": -7 - }, - "direction": "NORTH_NEGATIVE_Z" - }, - { - "targetName": "minecraft:bottom", - "innerConnector": false, - "rotateConnector": false, - "name": "minecraft:bottom", - "pools": ["village/snowy/decor"], - "position": { - "x": -5, - "y": -1, - "z": -2 - }, - "direction": "NORTH_NEGATIVE_Z" - }, - { - "targetName": "minecraft:bottom", - "innerConnector": false, - "rotateConnector": false, - "name": "minecraft:bottom", - "pools": ["village/common/cats"], - "position": { - "x": -5, - "y": -1, - "z": 2 - }, - "direction": "NORTH_NEGATIVE_Z" - }, - { - "targetName": "minecraft:bottom", - "innerConnector": false, - "rotateConnector": false, - "name": "minecraft:bottom", - "pools": ["village/snowy/decor"], - "position": { - "x": -2, - "y": -1, - "z": 4 - }, - "direction": "NORTH_NEGATIVE_Z" - }, - { - "targetName": "minecraft:bottom", - "innerConnector": false, - "rotateConnector": false, - "name": "minecraft:bottom", - "pools": ["village/snowy/decor"], - "position": { - "x": 0, - "y": -1, - "z": -5 - }, - "direction": "NORTH_NEGATIVE_Z" - }, - { - "targetName": "minecraft:bottom", - "innerConnector": false, - "rotateConnector": false, - "name": "minecraft:bottom", - "pools": ["village/snowy/decor"], - "position": { - "x": 3, - "y": -1, - "z": 1 - }, - "direction": "NORTH_NEGATIVE_Z" - }, - { - "targetName": "minecraft:street", - "innerConnector": false, - "rotateConnector": false, - "name": "minecraft:street", - "pools": ["village/snowy/streets"], - "position": { - "x": -6, - "y": 0, - "z": 0 - }, - "direction": "WEST_NEGATIVE_X" - }, - { - "targetName": "minecraft:street", - "innerConnector": false, - "rotateConnector": false, - "name": "minecraft:street", - "pools": ["village/snowy/streets"], - "position": { - "x": -3, - "y": 0, - "z": -8 - }, - "direction": "NORTH_NEGATIVE_Z" - }, - { - "targetName": "minecraft:building_entrance", - "innerConnector": true, - "rotateConnector": false, - "name": "minecraft:building_entrance", - "pools": ["village/snowy/houses"], - "position": { - "x": -2, - "y": 0, - "z": -2 - }, - "direction": "EAST_POSITIVE_X" - } - ], - "placementOptions": { - "overStilt": 0, - "chance": 1, - "meld": false, - "density": 1, - "edit": [], - "bottom": false, - "translateCenter": false, - "rotation": { - "yAxis": { - "min": 0, - "max": 0, - "interval": 90, - "enabled": true - }, - "xAxis": { - "min": 0, - "max": 0, - "interval": 0, - "enabled": false - }, - "zAxis": { - "min": 0, - "max": 0, - "interval": 0, - "enabled": false - }, - "enabled": true - }, - "boreExtendMinY": -1, - "smartBore": false, - "waterloggable": false, - "bore": false, - "translate": { - "yRandom": 0, - "x": 0, - "y": 0, - "z": 0 - }, - "mode": "FAST_MAX_HEIGHT", - "carvingSupport": "SURFACE_ONLY", - "snow": 0, - "underwater": false, - "place": [], - "boreExtendMaxY": 0, - "onwater": false, - "clamp": { - "minimumHeight": 0, - "maximumHeight": 255 - }, - "warp": { - "multiplier": 1, - "style": "FLAT", - "zoom": 1, - "maxFractureAccuracy": false, - "exponent": 1 - } + "connectors": [ + { + "targetName": "village/snowy/villagers/unemployed", + "entityCount": 3, + "spawnEntity": "villager", + "innerConnector": true, + "rotateConnector": false, + "name": "villager", + "pools": ["village/desert/decor"], + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "direction": "UP_POSITIVE_Y" }, - "object": "jigsaw/village/snowy/streets/corner_01" + { + "targetName": "minecraft:bottom", + "innerConnector": false, + "rotateConnector": false, + "name": "minecraft:bottom", + "pools": ["village/snowy/decor"], + "position": { + "x": -5, + "y": -1, + "z": -7 + }, + "direction": "NORTH_NEGATIVE_Z" + }, + { + "targetName": "minecraft:bottom", + "innerConnector": false, + "rotateConnector": false, + "name": "minecraft:bottom", + "pools": ["village/snowy/decor"], + "position": { + "x": -5, + "y": -1, + "z": -2 + }, + "direction": "NORTH_NEGATIVE_Z" + }, + { + "targetName": "minecraft:bottom", + "innerConnector": false, + "rotateConnector": false, + "name": "minecraft:bottom", + "pools": ["village/common/cats"], + "position": { + "x": -5, + "y": -1, + "z": 2 + }, + "direction": "NORTH_NEGATIVE_Z" + }, + { + "targetName": "minecraft:bottom", + "innerConnector": false, + "rotateConnector": false, + "name": "minecraft:bottom", + "pools": ["village/snowy/decor"], + "position": { + "x": -2, + "y": -1, + "z": 4 + }, + "direction": "NORTH_NEGATIVE_Z" + }, + { + "targetName": "minecraft:bottom", + "innerConnector": false, + "rotateConnector": false, + "name": "minecraft:bottom", + "pools": ["village/snowy/decor"], + "position": { + "x": 0, + "y": -1, + "z": -5 + }, + "direction": "NORTH_NEGATIVE_Z" + }, + { + "targetName": "minecraft:bottom", + "innerConnector": false, + "rotateConnector": false, + "name": "minecraft:bottom", + "pools": ["village/snowy/decor"], + "position": { + "x": 3, + "y": -1, + "z": 1 + }, + "direction": "NORTH_NEGATIVE_Z" + }, + { + "targetName": "minecraft:street", + "innerConnector": false, + "rotateConnector": false, + "name": "minecraft:street", + "pools": ["village/snowy/streets"], + "position": { + "x": -6, + "y": 0, + "z": 0 + }, + "direction": "WEST_NEGATIVE_X" + }, + { + "targetName": "minecraft:street", + "innerConnector": false, + "rotateConnector": false, + "name": "minecraft:street", + "pools": ["village/snowy/streets"], + "position": { + "x": -3, + "y": 0, + "z": -8 + }, + "direction": "NORTH_NEGATIVE_Z" + }, + { + "targetName": "minecraft:building_entrance", + "innerConnector": true, + "rotateConnector": false, + "name": "minecraft:building_entrance", + "pools": ["village/snowy/houses"], + "position": { + "x": -2, + "y": 0, + "z": -2 + }, + "direction": "EAST_POSITIVE_X" + } + ], + "placementOptions": { + "markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:sand" + }, + { + "block": "minecraft:sandstone" + } + ], + "marker": "villager" + } + ], + "overStilt": 0, + "chance": 1, + "meld": false, + "density": 1, + "edit": [], + "bottom": false, + "translateCenter": false, + "rotation": { + "yAxis": { + "min": 0, + "max": 0, + "interval": 90, + "enabled": true + }, + "xAxis": { + "min": 0, + "max": 0, + "interval": 0, + "enabled": false + }, + "zAxis": { + "min": 0, + "max": 0, + "interval": 0, + "enabled": false + }, + "enabled": true + }, + "boreExtendMinY": -1, + "smartBore": false, + "waterloggable": false, + "bore": false, + "translate": { + "yRandom": 0, + "x": 0, + "y": 0, + "z": 0 + }, + "mode": "FAST_MAX_HEIGHT", + "carvingSupport": "SURFACE_ONLY", + "snow": 0, + "underwater": false, + "place": [], + "boreExtendMaxY": 0, + "onwater": false, + "clamp": { + "minimumHeight": 0, + "maximumHeight": 255 + }, + "warp": { + "multiplier": 1, + "style": "FLAT", + "zoom": 1, + "maxFractureAccuracy": false, + "exponent": 1 + } + }, + "object": "jigsaw/village/snowy/streets/corner_01" } diff --git a/jigsaw-pieces/village/taiga/houses/taiga_animal_pen_1.json b/jigsaw-pieces/village/taiga/houses/taiga_animal_pen_1.json index 728a6242..380e71c9 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_animal_pen_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_animal_pen_1.json @@ -41,6 +41,24 @@ } ], "placementOptions": { + "markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:stripped_spruce_log" + }, + { + "block": "minecraft:spruce_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_armorer_2.json b/jigsaw-pieces/village/taiga/houses/taiga_armorer_2.json index 2341e504..1ea4b7f3 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_armorer_2.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_armorer_2.json @@ -40,7 +40,24 @@ "direction": "WEST_NEGATIVE_X" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:stripped_spruce_log" + }, + { + "block": "minecraft:spruce_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_armorer_house_1.json b/jigsaw-pieces/village/taiga/houses/taiga_armorer_house_1.json index 61cc901e..a3d0fd88 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_armorer_house_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_armorer_house_1.json @@ -12,7 +12,24 @@ }, "direction": "WEST_NEGATIVE_X" }], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:stripped_spruce_log" + }, + { + "block": "minecraft:spruce_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_butcher_shop_1.json b/jigsaw-pieces/village/taiga/houses/taiga_butcher_shop_1.json index 80b8a5ff..1c3551c5 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_butcher_shop_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_butcher_shop_1.json @@ -27,7 +27,24 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:stripped_spruce_log" + }, + { + "block": "minecraft:spruce_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_cartographer_house_1.json b/jigsaw-pieces/village/taiga/houses/taiga_cartographer_house_1.json index 6a47727d..6a6f09c3 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_cartographer_house_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_cartographer_house_1.json @@ -27,7 +27,24 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:stripped_spruce_log" + }, + { + "block": "minecraft:spruce_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_fisher_cottage_1.json b/jigsaw-pieces/village/taiga/houses/taiga_fisher_cottage_1.json index d7c6fa2a..e8264974 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_fisher_cottage_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_fisher_cottage_1.json @@ -66,7 +66,24 @@ "direction": "SOUTH_POSITIVE_Z" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:stripped_spruce_log" + }, + { + "block": "minecraft:spruce_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_fletcher_house_1.json b/jigsaw-pieces/village/taiga/houses/taiga_fletcher_house_1.json index 453f571c..c1fac293 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_fletcher_house_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_fletcher_house_1.json @@ -12,7 +12,24 @@ }, "direction": "WEST_NEGATIVE_X" }], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:stripped_spruce_log" + }, + { + "block": "minecraft:spruce_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_large_farm_1.json b/jigsaw-pieces/village/taiga/houses/taiga_large_farm_1.json index cde1ebe8..d7befeec 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_large_farm_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_large_farm_1.json @@ -27,7 +27,24 @@ "direction": "WEST_NEGATIVE_X" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:stripped_spruce_log" + }, + { + "block": "minecraft:spruce_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_large_farm_2.json b/jigsaw-pieces/village/taiga/houses/taiga_large_farm_2.json index 0d19b6ab..7a915031 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_large_farm_2.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_large_farm_2.json @@ -27,7 +27,24 @@ "direction": "SOUTH_POSITIVE_Z" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:stripped_spruce_log" + }, + { + "block": "minecraft:spruce_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_library_1.json b/jigsaw-pieces/village/taiga/houses/taiga_library_1.json index 45d3d400..8e555892 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_library_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_library_1.json @@ -53,7 +53,24 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:stripped_spruce_log" + }, + { + "block": "minecraft:spruce_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_masons_house_1.json b/jigsaw-pieces/village/taiga/houses/taiga_masons_house_1.json index a3108377..d710e367 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_masons_house_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_masons_house_1.json @@ -12,7 +12,24 @@ }, "direction": "WEST_NEGATIVE_X" }], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:stripped_spruce_log" + }, + { + "block": "minecraft:spruce_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_medium_house_1.json b/jigsaw-pieces/village/taiga/houses/taiga_medium_house_1.json index e288a853..c5316d7a 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_medium_house_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_medium_house_1.json @@ -42,7 +42,24 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:stripped_spruce_log" + }, + { + "block": "minecraft:spruce_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_medium_house_2.json b/jigsaw-pieces/village/taiga/houses/taiga_medium_house_2.json index 4dabae30..a00a7296 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_medium_house_2.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_medium_house_2.json @@ -42,7 +42,24 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:stripped_spruce_log" + }, + { + "block": "minecraft:spruce_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_medium_house_3.json b/jigsaw-pieces/village/taiga/houses/taiga_medium_house_3.json index e1385381..3b1befaa 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_medium_house_3.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_medium_house_3.json @@ -68,7 +68,24 @@ "direction": "WEST_NEGATIVE_X" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:stripped_spruce_log" + }, + { + "block": "minecraft:spruce_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_medium_house_4.json b/jigsaw-pieces/village/taiga/houses/taiga_medium_house_4.json index 7884e379..64746b5a 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_medium_house_4.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_medium_house_4.json @@ -42,7 +42,24 @@ "direction": "SOUTH_POSITIVE_Z" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:stripped_spruce_log" + }, + { + "block": "minecraft:spruce_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_shepherds_house_1.json b/jigsaw-pieces/village/taiga/houses/taiga_shepherds_house_1.json index 793dcf70..fab73075 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_shepherds_house_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_shepherds_house_1.json @@ -40,7 +40,24 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:stripped_spruce_log" + }, + { + "block": "minecraft:spruce_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_small_farm_1.json b/jigsaw-pieces/village/taiga/houses/taiga_small_farm_1.json index 7e228be4..52910d2e 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_small_farm_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_small_farm_1.json @@ -27,7 +27,24 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:stripped_spruce_log" + }, + { + "block": "minecraft:spruce_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_small_house_1.json b/jigsaw-pieces/village/taiga/houses/taiga_small_house_1.json index 5641085e..da3199fa 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_small_house_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_small_house_1.json @@ -28,7 +28,24 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:stripped_spruce_log" + }, + { + "block": "minecraft:spruce_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_small_house_2.json b/jigsaw-pieces/village/taiga/houses/taiga_small_house_2.json index f2ceb692..063c0139 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_small_house_2.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_small_house_2.json @@ -28,7 +28,24 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:stripped_spruce_log" + }, + { + "block": "minecraft:spruce_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_small_house_3.json b/jigsaw-pieces/village/taiga/houses/taiga_small_house_3.json index 0b1d61ca..b87d0409 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_small_house_3.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_small_house_3.json @@ -28,7 +28,24 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:stripped_spruce_log" + }, + { + "block": "minecraft:spruce_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_small_house_4.json b/jigsaw-pieces/village/taiga/houses/taiga_small_house_4.json index 0f48cf78..4d09e6ed 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_small_house_4.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_small_house_4.json @@ -41,7 +41,24 @@ "direction": "SOUTH_POSITIVE_Z" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:stripped_spruce_log" + }, + { + "block": "minecraft:spruce_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_small_house_5.json b/jigsaw-pieces/village/taiga/houses/taiga_small_house_5.json index 4f5fac0e..fff67257 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_small_house_5.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_small_house_5.json @@ -28,7 +28,24 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:stripped_spruce_log" + }, + { + "block": "minecraft:spruce_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_tannery_1.json b/jigsaw-pieces/village/taiga/houses/taiga_tannery_1.json index 81ee04a3..84208f1b 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_tannery_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_tannery_1.json @@ -12,7 +12,24 @@ }, "direction": "WEST_NEGATIVE_X" }], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:stripped_spruce_log" + }, + { + "block": "minecraft:spruce_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_temple_1.json b/jigsaw-pieces/village/taiga/houses/taiga_temple_1.json index 718861f1..4483bbc3 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_temple_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_temple_1.json @@ -12,7 +12,24 @@ }, "direction": "SOUTH_POSITIVE_Z" }], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:stripped_spruce_log" + }, + { + "block": "minecraft:spruce_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_tool_smith_1.json b/jigsaw-pieces/village/taiga/houses/taiga_tool_smith_1.json index 66113a6a..2b90d2b6 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_tool_smith_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_tool_smith_1.json @@ -40,7 +40,24 @@ "direction": "SOUTH_POSITIVE_Z" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:stripped_spruce_log" + }, + { + "block": "minecraft:spruce_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_weaponsmith_1.json b/jigsaw-pieces/village/taiga/houses/taiga_weaponsmith_1.json index 87bc7f40..321e4a52 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_weaponsmith_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_weaponsmith_1.json @@ -12,7 +12,24 @@ }, "direction": "NORTH_NEGATIVE_Z" }], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:stripped_spruce_log" + }, + { + "block": "minecraft:spruce_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_weaponsmith_2.json b/jigsaw-pieces/village/taiga/houses/taiga_weaponsmith_2.json index 44bc642c..7ff3c594 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_weaponsmith_2.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_weaponsmith_2.json @@ -27,7 +27,24 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": { + "placementOptions": {"markers": [ + { + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + { + "block": "minecraft:grass_block" + }, + { + "block": "minecraft:stripped_spruce_log" + }, + { + "block": "minecraft:spruce_planks" + } + ], + "marker": "villager" + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/taiga/taiga_decoration_2.json b/jigsaw-pieces/village/taiga/taiga_decoration_2.json index ab563101..d17a8b69 100644 --- a/jigsaw-pieces/village/taiga/taiga_decoration_2.json +++ b/jigsaw-pieces/village/taiga/taiga_decoration_2.json @@ -1,74 +1,76 @@ { - "connectors": [{ - "targetName": "minecraft:bottom", - "innerConnector": false, - "rotateConnector": false, - "name": "minecraft:bottom", - "pools": [], - "position": { - "x": 0, - "y": -1, - "z": 0 - }, - "direction": "SOUTH_POSITIVE_Z" - }], - "placementOptions": { - "overStilt": 0, - "chance": 1, - "meld": false, - "density": 1, - "edit": [], - "bottom": false, - "translateCenter": false, - "rotation": { - "yAxis": { - "min": 0, - "max": 0, - "interval": 90, - "enabled": true - }, - "xAxis": { - "min": 0, - "max": 0, - "interval": 0, - "enabled": false - }, - "zAxis": { - "min": 0, - "max": 0, - "interval": 0, - "enabled": false - }, - "enabled": true - }, - "boreExtendMinY": -1, - "smartBore": false, - "waterloggable": false, - "bore": false, - "translate": { - "yRandom": 0, - "x": 0, - "y": -1, - "z": 0 - }, - "mode": "FAST_MAX_HEIGHT", - "carvingSupport": "SURFACE_ONLY", - "snow": 0, - "underwater": false, - "place": [], - "boreExtendMaxY": 0, - "onwater": false, - "clamp": { - "minimumHeight": 0, - "maximumHeight": 255 - }, - "warp": { - "multiplier": 1, - "style": "FLAT", - "zoom": 1, - "maxFractureAccuracy": false, - "exponent": 1 - } + "connectors": [ + { + "targetName": "minecraft:bottom", + "innerConnector": false, + "rotateConnector": false, + "name": "minecraft:bottom", + "pools": [], + "position": { + "x": 0, + "y": -1, + "z": 0 + }, + "direction": "SOUTH_POSITIVE_Z" + } + ], + "placementOptions": { + "overStilt": 0, + "chance": 1, + "meld": false, + "density": 1, + "edit": [], + "bottom": false, + "translateCenter": false, + "rotation": { + "yAxis": { + "min": 0, + "max": 0, + "interval": 90, + "enabled": true + }, + "xAxis": { + "min": 0, + "max": 0, + "interval": 0, + "enabled": false + }, + "zAxis": { + "min": 0, + "max": 0, + "interval": 0, + "enabled": false + }, + "enabled": true }, - "object": "jigsaw/village/taiga/taiga_decoration_2" + "boreExtendMinY": -1, + "smartBore": false, + "waterloggable": false, + "bore": false, + "translate": { + "yRandom": 0, + "x": 0, + "y": -1, + "z": 0 + }, + "mode": "FAST_MAX_HEIGHT", + "carvingSupport": "SURFACE_ONLY", + "snow": 0, + "underwater": false, + "place": [], + "boreExtendMaxY": 0, + "onwater": false, + "clamp": { + "minimumHeight": 0, + "maximumHeight": 255 + }, + "warp": { + "multiplier": 1, + "style": "FLAT", + "zoom": 1, + "maxFractureAccuracy": false, + "exponent": 1 + } + }, + "object": "jigsaw/village/taiga/taiga_decoration_2" } From df29b8ec478466538f893be456c9c7fdc054caa2 Mon Sep 17 00:00:00 2001 From: Brian Fopiano Date: Sun, 12 Sep 2021 14:22:13 -0700 Subject: [PATCH 16/30] removed SpawnPillager (outdated) --- jigsaw-pieces/pillager_outpost/pillager.json | 2 +- .../pillager_outpost/watchtower.json | 20 +++++++++---------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/jigsaw-pieces/pillager_outpost/pillager.json b/jigsaw-pieces/pillager_outpost/pillager.json index f7b5eaad..6bc07e33 100644 --- a/jigsaw-pieces/pillager_outpost/pillager.json +++ b/jigsaw-pieces/pillager_outpost/pillager.json @@ -8,7 +8,7 @@ }, "direction": "DOWN_NEGATIVE_Y", "entityCount": 50, - "spawnEntity": "pillager", + "rotateConnector": false, "innerConnector": true }], diff --git a/jigsaw-pieces/pillager_outpost/watchtower.json b/jigsaw-pieces/pillager_outpost/watchtower.json index 14554c65..1d3685e4 100644 --- a/jigsaw-pieces/pillager_outpost/watchtower.json +++ b/jigsaw-pieces/pillager_outpost/watchtower.json @@ -115,7 +115,7 @@ { "targetName": "pillager_outpost/pillager", "innerConnector": true, - "spawnEntity": "pillager", + "entityCount": 1, "rotateConnector": false, "name": "", @@ -130,7 +130,7 @@ { "targetName": "pillager_outpost/pillager", "innerConnector": true, - "spawnEntity": "pillager", + "entityCount": 1, "rotateConnector": false, "name": "", @@ -145,7 +145,7 @@ { "targetName": "pillager_outpost/pillager", "innerConnector": true, - "spawnEntity": "pillager", + "entityCount": 1, "rotateConnector": false, "name": "", @@ -160,7 +160,7 @@ { "targetName": "pillager_outpost/pillager", "innerConnector": true, - "spawnEntity": "pillager", + "entityCount": 1, "rotateConnector": false, "name": "", @@ -175,7 +175,7 @@ { "targetName": "pillager_outpost/pillager", "innerConnector": true, - "spawnEntity": "pillager", + "entityCount": 1, "rotateConnector": false, "name": "", @@ -190,7 +190,7 @@ { "targetName": "pillager_outpost/pillager", "innerConnector": true, - "spawnEntity": "pillager", + "entityCount": 1, "rotateConnector": false, "name": "", @@ -205,7 +205,7 @@ { "targetName": "pillager_outpost/pillager", "innerConnector": true, - "spawnEntity": "pillager", + "entityCount": 1, "rotateConnector": false, "name": "", @@ -220,7 +220,7 @@ { "targetName": "pillager_outpost/pillager", "innerConnector": true, - "spawnEntity": "pillager", + "entityCount": 1, "rotateConnector": false, "name": "", @@ -235,7 +235,7 @@ { "targetName": "pillager_outpost/pillager", "innerConnector": true, - "spawnEntity": "pillager", + "entityCount": 1, "rotateConnector": false, "name": "", @@ -250,7 +250,7 @@ { "targetName": "pillager_outpost/pillager", "innerConnector": true, - "spawnEntity": "pillager", + "entityCount": 1, "rotateConnector": false, "name": "", From 39c4222584b8f7ba9a713ce40442356fddf8d76e Mon Sep 17 00:00:00 2001 From: Brian Fopiano Date: Sun, 12 Sep 2021 14:22:57 -0700 Subject: [PATCH 17/30] Removed SpawnVIllager (outdated) --- jigsaw-pieces/mushhut/hut/hut1.json | 2 +- jigsaw-pieces/mushhut/hut/hut2.json | 2 +- jigsaw-pieces/mushhut/hut/hut3.json | 2 +- jigsaw-pieces/mushhut/hut/hut4.json | 2 +- jigsaw-pieces/mushhut/hut/hut5.json | 2 +- jigsaw-pieces/mushhut/hut/hut6.json | 2 +- jigsaw-pieces/mushhut/hut/hut7.json | 2 +- .../village/desert/houses/desert_medium_house_1.json | 4 ++-- .../village/desert/houses/desert_medium_house_2.json | 4 ++-- .../village/desert/houses/desert_small_house_1.json | 2 +- .../village/desert/houses/desert_small_house_2.json | 2 +- .../village/desert/houses/desert_small_house_3.json | 2 +- .../village/desert/houses/desert_small_house_4.json | 2 +- .../village/desert/houses/desert_small_house_5.json | 2 +- .../village/desert/houses/desert_small_house_6.json | 2 +- .../village/desert/houses/desert_small_house_7.json | 2 +- .../village/desert/houses/desert_small_house_8.json | 2 +- jigsaw-pieces/village/desert/streets/corner_01.json | 2 +- jigsaw-pieces/village/desert/streets/corner_02.json | 2 +- jigsaw-pieces/village/desert/streets/crossroad_01.json | 2 +- jigsaw-pieces/village/desert/streets/crossroad_02.json | 2 +- jigsaw-pieces/village/desert/streets/crossroad_03.json | 2 +- jigsaw-pieces/village/desert/streets/straight_01.json | 2 +- jigsaw-pieces/village/desert/streets/straight_02.json | 2 +- jigsaw-pieces/village/desert/streets/straight_03.json | 2 +- jigsaw-pieces/village/desert/streets/turn_01.json | 2 +- .../desert/town_centers/desert_meeting_point_1.json | 6 +++--- .../desert/town_centers/desert_meeting_point_2.json | 6 +++--- .../desert/town_centers/desert_meeting_point_3.json | 6 +++--- jigsaw-pieces/village/desert/villagers/unemployed.json | 2 +- .../village/plains/houses/plains_big_house_1.json | 8 ++++---- .../village/plains/houses/plains_medium_house_1.json | 4 ++-- .../village/plains/houses/plains_medium_house_2.json | 4 ++-- .../village/plains/houses/plains_small_house_1.json | 2 +- .../village/plains/houses/plains_small_house_2.json | 2 +- .../village/plains/houses/plains_small_house_3.json | 2 +- .../village/plains/houses/plains_small_house_4.json | 2 +- .../village/plains/houses/plains_small_house_5.json | 2 +- .../village/plains/houses/plains_small_house_6.json | 2 +- .../village/plains/houses/plains_small_house_7.json | 2 +- .../village/plains/houses/plains_small_house_8.json | 2 +- jigsaw-pieces/village/plains/streets/corner_01.json | 2 +- jigsaw-pieces/village/plains/streets/corner_02.json | 2 +- jigsaw-pieces/village/plains/streets/corner_03.json | 2 +- jigsaw-pieces/village/plains/streets/straight_01.json | 2 +- jigsaw-pieces/village/plains/streets/straight_02.json | 2 +- jigsaw-pieces/village/plains/streets/straight_03.json | 2 +- jigsaw-pieces/village/plains/streets/straight_04.json | 2 +- jigsaw-pieces/village/plains/streets/straight_05.json | 2 +- jigsaw-pieces/village/plains/streets/straight_06.json | 2 +- jigsaw-pieces/village/plains/streets/turn_01.json | 2 +- .../village/plains/town_centers/plains_fountain_01.json | 6 +++--- .../plains/town_centers/plains_meeting_point_1.json | 4 ++-- .../plains/town_centers/plains_meeting_point_2.json | 6 +++--- .../plains/town_centers/plains_meeting_point_3.json | 4 ++-- jigsaw-pieces/village/plains/villagers/unemployed.json | 2 +- jigsaw-pieces/village/savanna/streets/corner_01.json | 2 +- jigsaw-pieces/village/savanna/streets/corner_03.json | 2 +- jigsaw-pieces/village/savanna/streets/split_01.json | 2 +- jigsaw-pieces/village/savanna/streets/split_02.json | 2 +- jigsaw-pieces/village/savanna/streets/straight_02.json | 2 +- jigsaw-pieces/village/savanna/streets/straight_04.json | 2 +- jigsaw-pieces/village/savanna/streets/straight_05.json | 2 +- jigsaw-pieces/village/savanna/streets/straight_06.json | 2 +- jigsaw-pieces/village/savanna/streets/straight_08.json | 2 +- jigsaw-pieces/village/savanna/streets/straight_09.json | 2 +- jigsaw-pieces/village/savanna/streets/straight_10.json | 2 +- jigsaw-pieces/village/savanna/streets/straight_11.json | 2 +- jigsaw-pieces/village/savanna/streets/turn_01.json | 2 +- jigsaw-pieces/village/savanna/villagers/unemployed.json | 2 +- .../village/snowy/houses/snowy_medium_house_1.json | 4 ++-- .../village/snowy/houses/snowy_medium_house_2.json | 4 ++-- .../village/snowy/houses/snowy_medium_house_3.json | 4 ++-- .../village/snowy/houses/snowy_small_house_1.json | 2 +- .../village/snowy/houses/snowy_small_house_2.json | 2 +- .../village/snowy/houses/snowy_small_house_3.json | 2 +- .../village/snowy/houses/snowy_small_house_4.json | 2 +- .../village/snowy/houses/snowy_small_house_5.json | 2 +- .../village/snowy/houses/snowy_small_house_6.json | 2 +- .../village/snowy/houses/snowy_small_house_7.json | 2 +- .../village/snowy/houses/snowy_small_house_8.json | 2 +- jigsaw-pieces/village/snowy/streets/corner_01.json | 2 +- jigsaw-pieces/village/snowy/streets/corner_02.json | 2 +- jigsaw-pieces/village/snowy/streets/corner_03.json | 2 +- jigsaw-pieces/village/snowy/streets/straight_01.json | 2 +- jigsaw-pieces/village/snowy/streets/straight_02.json | 2 +- jigsaw-pieces/village/snowy/streets/straight_03.json | 2 +- jigsaw-pieces/village/snowy/streets/straight_04.json | 2 +- jigsaw-pieces/village/snowy/streets/straight_06.json | 2 +- jigsaw-pieces/village/snowy/streets/straight_08.json | 2 +- jigsaw-pieces/village/snowy/streets/turn_01.json | 2 +- .../village/snowy/town_centers/snowy_meeting_point_1.json | 4 ++-- .../village/snowy/town_centers/snowy_meeting_point_2.json | 4 ++-- .../village/snowy/town_centers/snowy_meeting_point_3.json | 4 ++-- jigsaw-pieces/village/snowy/villagers/unemployed.json | 2 +- .../village/taiga/houses/taiga_medium_house_1.json | 4 ++-- .../village/taiga/houses/taiga_medium_house_2.json | 4 ++-- .../village/taiga/houses/taiga_medium_house_3.json | 4 ++-- .../village/taiga/houses/taiga_medium_house_4.json | 4 ++-- .../village/taiga/houses/taiga_small_house_1.json | 2 +- .../village/taiga/houses/taiga_small_house_2.json | 2 +- .../village/taiga/houses/taiga_small_house_3.json | 2 +- .../village/taiga/houses/taiga_small_house_4.json | 2 +- .../village/taiga/houses/taiga_small_house_5.json | 2 +- jigsaw-pieces/village/taiga/streets/corner_01.json | 2 +- jigsaw-pieces/village/taiga/streets/corner_02.json | 2 +- jigsaw-pieces/village/taiga/streets/corner_03.json | 2 +- jigsaw-pieces/village/taiga/streets/straight_01.json | 2 +- jigsaw-pieces/village/taiga/streets/straight_02.json | 2 +- jigsaw-pieces/village/taiga/streets/straight_03.json | 2 +- jigsaw-pieces/village/taiga/streets/straight_04.json | 2 +- jigsaw-pieces/village/taiga/streets/straight_05.json | 2 +- jigsaw-pieces/village/taiga/streets/straight_06.json | 2 +- jigsaw-pieces/village/taiga/streets/turn_01.json | 2 +- .../village/taiga/town_centers/taiga_meeting_point_1.json | 6 +++--- .../village/taiga/town_centers/taiga_meeting_point_2.json | 6 +++--- jigsaw-pieces/village/taiga/villagers/unemployed.json | 2 +- 117 files changed, 150 insertions(+), 150 deletions(-) diff --git a/jigsaw-pieces/mushhut/hut/hut1.json b/jigsaw-pieces/mushhut/hut/hut1.json index 9b5614f8..d922fb8c 100644 --- a/jigsaw-pieces/mushhut/hut/hut1.json +++ b/jigsaw-pieces/mushhut/hut/hut1.json @@ -2,7 +2,7 @@ "connectors": [{ "targetName": "*", "innerConnector": true, - "spawnEntity": "villager", + "entityCount": 1, "rotateConnector": false, "name": "", diff --git a/jigsaw-pieces/mushhut/hut/hut2.json b/jigsaw-pieces/mushhut/hut/hut2.json index 7adace4f..1af810e8 100644 --- a/jigsaw-pieces/mushhut/hut/hut2.json +++ b/jigsaw-pieces/mushhut/hut/hut2.json @@ -2,7 +2,7 @@ "connectors": [{ "targetName": "*", "innerConnector": true, - "spawnEntity": "villager", + "entityCount": 1, "rotateConnector": false, "name": "", diff --git a/jigsaw-pieces/mushhut/hut/hut3.json b/jigsaw-pieces/mushhut/hut/hut3.json index 851619ec..adf29d3a 100644 --- a/jigsaw-pieces/mushhut/hut/hut3.json +++ b/jigsaw-pieces/mushhut/hut/hut3.json @@ -2,7 +2,7 @@ "connectors": [{ "targetName": "*", "innerConnector": true, - "spawnEntity": "villager", + "entityCount": 1, "rotateConnector": false, "name": "", diff --git a/jigsaw-pieces/mushhut/hut/hut4.json b/jigsaw-pieces/mushhut/hut/hut4.json index 529b59dd..fcfdb3b2 100644 --- a/jigsaw-pieces/mushhut/hut/hut4.json +++ b/jigsaw-pieces/mushhut/hut/hut4.json @@ -2,7 +2,7 @@ "connectors": [{ "targetName": "*", "innerConnector": true, - "spawnEntity": "villager", + "entityCount": 1, "rotateConnector": false, "name": "", diff --git a/jigsaw-pieces/mushhut/hut/hut5.json b/jigsaw-pieces/mushhut/hut/hut5.json index 96476f65..3069bb5b 100644 --- a/jigsaw-pieces/mushhut/hut/hut5.json +++ b/jigsaw-pieces/mushhut/hut/hut5.json @@ -2,7 +2,7 @@ "connectors": [{ "targetName": "*", "innerConnector": true, - "spawnEntity": "villager", + "entityCount": 1, "rotateConnector": false, "name": "", diff --git a/jigsaw-pieces/mushhut/hut/hut6.json b/jigsaw-pieces/mushhut/hut/hut6.json index 0110652c..17b56f3a 100644 --- a/jigsaw-pieces/mushhut/hut/hut6.json +++ b/jigsaw-pieces/mushhut/hut/hut6.json @@ -2,7 +2,7 @@ "connectors": [{ "targetName": "*", "innerConnector": true, - "spawnEntity": "villager", + "entityCount": 1, "rotateConnector": false, "name": "", diff --git a/jigsaw-pieces/mushhut/hut/hut7.json b/jigsaw-pieces/mushhut/hut/hut7.json index 88eb5ae7..490ae447 100644 --- a/jigsaw-pieces/mushhut/hut/hut7.json +++ b/jigsaw-pieces/mushhut/hut/hut7.json @@ -2,7 +2,7 @@ "connectors": [{ "targetName": "*", "innerConnector": true, - "spawnEntity": "villager", + "entityCount": 1, "rotateConnector": false, "name": "", diff --git a/jigsaw-pieces/village/desert/houses/desert_medium_house_1.json b/jigsaw-pieces/village/desert/houses/desert_medium_house_1.json index 10d00490..c5a707f0 100644 --- a/jigsaw-pieces/village/desert/houses/desert_medium_house_1.json +++ b/jigsaw-pieces/village/desert/houses/desert_medium_house_1.json @@ -6,7 +6,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": 0, "y": -3, @@ -20,7 +20,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": 0, "y": -3, diff --git a/jigsaw-pieces/village/desert/houses/desert_medium_house_2.json b/jigsaw-pieces/village/desert/houses/desert_medium_house_2.json index cba0cf3a..7a63c6fa 100644 --- a/jigsaw-pieces/village/desert/houses/desert_medium_house_2.json +++ b/jigsaw-pieces/village/desert/houses/desert_medium_house_2.json @@ -6,7 +6,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": -1, "y": -4, @@ -33,7 +33,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": 2, "y": -2, diff --git a/jigsaw-pieces/village/desert/houses/desert_small_house_1.json b/jigsaw-pieces/village/desert/houses/desert_small_house_1.json index aa50596d..228c2e52 100644 --- a/jigsaw-pieces/village/desert/houses/desert_small_house_1.json +++ b/jigsaw-pieces/village/desert/houses/desert_small_house_1.json @@ -6,7 +6,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": 0, "y": -3, diff --git a/jigsaw-pieces/village/desert/houses/desert_small_house_2.json b/jigsaw-pieces/village/desert/houses/desert_small_house_2.json index c45bee97..d70a4d7f 100644 --- a/jigsaw-pieces/village/desert/houses/desert_small_house_2.json +++ b/jigsaw-pieces/village/desert/houses/desert_small_house_2.json @@ -19,7 +19,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": -2, "y": -3, diff --git a/jigsaw-pieces/village/desert/houses/desert_small_house_3.json b/jigsaw-pieces/village/desert/houses/desert_small_house_3.json index d4fd189a..5f7b53a9 100644 --- a/jigsaw-pieces/village/desert/houses/desert_small_house_3.json +++ b/jigsaw-pieces/village/desert/houses/desert_small_house_3.json @@ -6,7 +6,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": 0, "y": -2, diff --git a/jigsaw-pieces/village/desert/houses/desert_small_house_4.json b/jigsaw-pieces/village/desert/houses/desert_small_house_4.json index bc4063a3..df19d9bc 100644 --- a/jigsaw-pieces/village/desert/houses/desert_small_house_4.json +++ b/jigsaw-pieces/village/desert/houses/desert_small_house_4.json @@ -6,7 +6,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": 1, "y": -2, diff --git a/jigsaw-pieces/village/desert/houses/desert_small_house_5.json b/jigsaw-pieces/village/desert/houses/desert_small_house_5.json index 612b260d..ebf59231 100644 --- a/jigsaw-pieces/village/desert/houses/desert_small_house_5.json +++ b/jigsaw-pieces/village/desert/houses/desert_small_house_5.json @@ -6,7 +6,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": 1, "y": -3, diff --git a/jigsaw-pieces/village/desert/houses/desert_small_house_6.json b/jigsaw-pieces/village/desert/houses/desert_small_house_6.json index 5cc27600..e581357e 100644 --- a/jigsaw-pieces/village/desert/houses/desert_small_house_6.json +++ b/jigsaw-pieces/village/desert/houses/desert_small_house_6.json @@ -6,7 +6,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": -1, "y": -9, diff --git a/jigsaw-pieces/village/desert/houses/desert_small_house_7.json b/jigsaw-pieces/village/desert/houses/desert_small_house_7.json index f5cbe2ed..85531f71 100644 --- a/jigsaw-pieces/village/desert/houses/desert_small_house_7.json +++ b/jigsaw-pieces/village/desert/houses/desert_small_house_7.json @@ -6,7 +6,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": 1, "y": -2, diff --git a/jigsaw-pieces/village/desert/houses/desert_small_house_8.json b/jigsaw-pieces/village/desert/houses/desert_small_house_8.json index 6c0170fe..dba79c2d 100644 --- a/jigsaw-pieces/village/desert/houses/desert_small_house_8.json +++ b/jigsaw-pieces/village/desert/houses/desert_small_house_8.json @@ -6,7 +6,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": 0, "y": -2, diff --git a/jigsaw-pieces/village/desert/streets/corner_01.json b/jigsaw-pieces/village/desert/streets/corner_01.json index e4d74dba..90b6eb06 100644 --- a/jigsaw-pieces/village/desert/streets/corner_01.json +++ b/jigsaw-pieces/village/desert/streets/corner_01.json @@ -3,7 +3,7 @@ { "targetName": "village/desert/villagers/unemployed", "entityCount": 3, - "spawnEntity": "villager", + "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/desert/streets/corner_02.json b/jigsaw-pieces/village/desert/streets/corner_02.json index ac08a00d..768031fd 100644 --- a/jigsaw-pieces/village/desert/streets/corner_02.json +++ b/jigsaw-pieces/village/desert/streets/corner_02.json @@ -3,7 +3,7 @@ { "targetName": "village/desert/villagers/unemployed", "entityCount": 3, - "spawnEntity": "villager", + "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/desert/streets/crossroad_01.json b/jigsaw-pieces/village/desert/streets/crossroad_01.json index f522b574..b164f66b 100644 --- a/jigsaw-pieces/village/desert/streets/crossroad_01.json +++ b/jigsaw-pieces/village/desert/streets/crossroad_01.json @@ -3,7 +3,7 @@ { "targetName": "village/desert/villagers/unemployed", "entityCount": 3, - "spawnEntity": "villager", + "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/desert/streets/crossroad_02.json b/jigsaw-pieces/village/desert/streets/crossroad_02.json index 4398c813..baff61ea 100644 --- a/jigsaw-pieces/village/desert/streets/crossroad_02.json +++ b/jigsaw-pieces/village/desert/streets/crossroad_02.json @@ -3,7 +3,7 @@ { "targetName": "village/desert/villagers/unemployed", "entityCount": 3, - "spawnEntity": "villager", + "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/desert/streets/crossroad_03.json b/jigsaw-pieces/village/desert/streets/crossroad_03.json index e74bc48d..425cabf3 100644 --- a/jigsaw-pieces/village/desert/streets/crossroad_03.json +++ b/jigsaw-pieces/village/desert/streets/crossroad_03.json @@ -3,7 +3,7 @@ { "targetName": "village/desert/villagers/unemployed", "entityCount": 3, - "spawnEntity": "villager", + "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/desert/streets/straight_01.json b/jigsaw-pieces/village/desert/streets/straight_01.json index 808c8b89..c29c53f4 100644 --- a/jigsaw-pieces/village/desert/streets/straight_01.json +++ b/jigsaw-pieces/village/desert/streets/straight_01.json @@ -3,7 +3,7 @@ { "targetName": "village/desert/villagers/unemployed", "entityCount": 3, - "spawnEntity": "villager", + "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/desert/streets/straight_02.json b/jigsaw-pieces/village/desert/streets/straight_02.json index aae07673..d5742ef8 100644 --- a/jigsaw-pieces/village/desert/streets/straight_02.json +++ b/jigsaw-pieces/village/desert/streets/straight_02.json @@ -3,7 +3,7 @@ { "targetName": "village/desert/villagers/unemployed", "entityCount": 3, - "spawnEntity": "villager", + "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/desert/streets/straight_03.json b/jigsaw-pieces/village/desert/streets/straight_03.json index d06fabe7..5309ac97 100644 --- a/jigsaw-pieces/village/desert/streets/straight_03.json +++ b/jigsaw-pieces/village/desert/streets/straight_03.json @@ -3,7 +3,7 @@ { "targetName": "village/desert/villagers/unemployed", "entityCount": 3, - "spawnEntity": "villager", + "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/desert/streets/turn_01.json b/jigsaw-pieces/village/desert/streets/turn_01.json index 442c04e8..e7ee8a20 100644 --- a/jigsaw-pieces/village/desert/streets/turn_01.json +++ b/jigsaw-pieces/village/desert/streets/turn_01.json @@ -3,7 +3,7 @@ { "targetName": "village/desert/villagers/unemployed", "entityCount": 3, - "spawnEntity": "villager", + "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/desert/town_centers/desert_meeting_point_1.json b/jigsaw-pieces/village/desert/town_centers/desert_meeting_point_1.json index d07e7353..a7b575bd 100644 --- a/jigsaw-pieces/village/desert/town_centers/desert_meeting_point_1.json +++ b/jigsaw-pieces/village/desert/town_centers/desert_meeting_point_1.json @@ -19,7 +19,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": 3, "y": -3, @@ -33,7 +33,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": 7, "y": -3, @@ -47,7 +47,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": 7, "y": -3, diff --git a/jigsaw-pieces/village/desert/town_centers/desert_meeting_point_2.json b/jigsaw-pieces/village/desert/town_centers/desert_meeting_point_2.json index c4cc0c87..a94152fb 100644 --- a/jigsaw-pieces/village/desert/town_centers/desert_meeting_point_2.json +++ b/jigsaw-pieces/village/desert/town_centers/desert_meeting_point_2.json @@ -19,7 +19,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": -5, "y": -3, @@ -46,7 +46,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": -2, "y": -3, @@ -73,7 +73,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": 4, "y": -3, diff --git a/jigsaw-pieces/village/desert/town_centers/desert_meeting_point_3.json b/jigsaw-pieces/village/desert/town_centers/desert_meeting_point_3.json index 7e48067c..3dcea287 100644 --- a/jigsaw-pieces/village/desert/town_centers/desert_meeting_point_3.json +++ b/jigsaw-pieces/village/desert/town_centers/desert_meeting_point_3.json @@ -32,7 +32,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": -4, "y": -3, @@ -59,7 +59,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": -1, "y": -3, @@ -73,7 +73,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": 1, "y": -3, diff --git a/jigsaw-pieces/village/desert/villagers/unemployed.json b/jigsaw-pieces/village/desert/villagers/unemployed.json index 9c0d781c..31e27428 100644 --- a/jigsaw-pieces/village/desert/villagers/unemployed.json +++ b/jigsaw-pieces/village/desert/villagers/unemployed.json @@ -10,7 +10,7 @@ "y": -1, "z": 0 }, - "spawnEntity": "villager", + "entityPosition": { "x": 0, "y": 2, diff --git a/jigsaw-pieces/village/plains/houses/plains_big_house_1.json b/jigsaw-pieces/village/plains/houses/plains_big_house_1.json index 58d14498..47c69521 100644 --- a/jigsaw-pieces/village/plains/houses/plains_big_house_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_big_house_1.json @@ -6,7 +6,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": 0, "y": -5, @@ -20,7 +20,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": 0, "y": -5, @@ -47,7 +47,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": 0, "y": -1, @@ -61,7 +61,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": 0, "y": -1, diff --git a/jigsaw-pieces/village/plains/houses/plains_medium_house_1.json b/jigsaw-pieces/village/plains/houses/plains_medium_house_1.json index a8f06132..b192d47e 100644 --- a/jigsaw-pieces/village/plains/houses/plains_medium_house_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_medium_house_1.json @@ -32,7 +32,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": -2, "y": -3, @@ -46,7 +46,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": 0, "y": -3, diff --git a/jigsaw-pieces/village/plains/houses/plains_medium_house_2.json b/jigsaw-pieces/village/plains/houses/plains_medium_house_2.json index 8418ce7e..b45f6e33 100644 --- a/jigsaw-pieces/village/plains/houses/plains_medium_house_2.json +++ b/jigsaw-pieces/village/plains/houses/plains_medium_house_2.json @@ -19,7 +19,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": 0, "y": -3, @@ -33,7 +33,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": 0, "y": -3, diff --git a/jigsaw-pieces/village/plains/houses/plains_small_house_1.json b/jigsaw-pieces/village/plains/houses/plains_small_house_1.json index 244a684b..4fd91ee1 100644 --- a/jigsaw-pieces/village/plains/houses/plains_small_house_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_small_house_1.json @@ -19,7 +19,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": 0, "y": -3, diff --git a/jigsaw-pieces/village/plains/houses/plains_small_house_2.json b/jigsaw-pieces/village/plains/houses/plains_small_house_2.json index 00277143..770ed8a4 100644 --- a/jigsaw-pieces/village/plains/houses/plains_small_house_2.json +++ b/jigsaw-pieces/village/plains/houses/plains_small_house_2.json @@ -19,7 +19,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": 0, "y": -3, diff --git a/jigsaw-pieces/village/plains/houses/plains_small_house_3.json b/jigsaw-pieces/village/plains/houses/plains_small_house_3.json index 1db7e0b4..f14bc777 100644 --- a/jigsaw-pieces/village/plains/houses/plains_small_house_3.json +++ b/jigsaw-pieces/village/plains/houses/plains_small_house_3.json @@ -19,7 +19,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": 0, "y": -3, diff --git a/jigsaw-pieces/village/plains/houses/plains_small_house_4.json b/jigsaw-pieces/village/plains/houses/plains_small_house_4.json index 61fa3cbe..b66cd07e 100644 --- a/jigsaw-pieces/village/plains/houses/plains_small_house_4.json +++ b/jigsaw-pieces/village/plains/houses/plains_small_house_4.json @@ -19,7 +19,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": 0, "y": -3, diff --git a/jigsaw-pieces/village/plains/houses/plains_small_house_5.json b/jigsaw-pieces/village/plains/houses/plains_small_house_5.json index c84b9d6e..82b99684 100644 --- a/jigsaw-pieces/village/plains/houses/plains_small_house_5.json +++ b/jigsaw-pieces/village/plains/houses/plains_small_house_5.json @@ -58,7 +58,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": -1, "y": -4, diff --git a/jigsaw-pieces/village/plains/houses/plains_small_house_6.json b/jigsaw-pieces/village/plains/houses/plains_small_house_6.json index 8e0fcdbd..7ddd3b73 100644 --- a/jigsaw-pieces/village/plains/houses/plains_small_house_6.json +++ b/jigsaw-pieces/village/plains/houses/plains_small_house_6.json @@ -19,7 +19,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": 0, "y": -3, diff --git a/jigsaw-pieces/village/plains/houses/plains_small_house_7.json b/jigsaw-pieces/village/plains/houses/plains_small_house_7.json index c6399053..8200247e 100644 --- a/jigsaw-pieces/village/plains/houses/plains_small_house_7.json +++ b/jigsaw-pieces/village/plains/houses/plains_small_house_7.json @@ -19,7 +19,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": 0, "y": -3, diff --git a/jigsaw-pieces/village/plains/houses/plains_small_house_8.json b/jigsaw-pieces/village/plains/houses/plains_small_house_8.json index 241cbf17..3115bf08 100644 --- a/jigsaw-pieces/village/plains/houses/plains_small_house_8.json +++ b/jigsaw-pieces/village/plains/houses/plains_small_house_8.json @@ -19,7 +19,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": -1, "y": -2, diff --git a/jigsaw-pieces/village/plains/streets/corner_01.json b/jigsaw-pieces/village/plains/streets/corner_01.json index f276340a..ffd15f93 100644 --- a/jigsaw-pieces/village/plains/streets/corner_01.json +++ b/jigsaw-pieces/village/plains/streets/corner_01.json @@ -3,7 +3,7 @@ { "targetName": "village/plains/villagers/unemployed", "entityCount": 3, - "spawnEntity": "villager", + "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/plains/streets/corner_02.json b/jigsaw-pieces/village/plains/streets/corner_02.json index 0ecd5ed4..d38422c6 100644 --- a/jigsaw-pieces/village/plains/streets/corner_02.json +++ b/jigsaw-pieces/village/plains/streets/corner_02.json @@ -3,7 +3,7 @@ { "targetName": "village/plains/villagers/unemployed", "entityCount": 3, - "spawnEntity": "villager", + "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/plains/streets/corner_03.json b/jigsaw-pieces/village/plains/streets/corner_03.json index 5feb2dd4..ba3e8aa5 100644 --- a/jigsaw-pieces/village/plains/streets/corner_03.json +++ b/jigsaw-pieces/village/plains/streets/corner_03.json @@ -3,7 +3,7 @@ { "targetName": "village/plains/villagers/unemployed", "entityCount": 3, - "spawnEntity": "villager", + "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/plains/streets/straight_01.json b/jigsaw-pieces/village/plains/streets/straight_01.json index b7e449e9..10848f8c 100644 --- a/jigsaw-pieces/village/plains/streets/straight_01.json +++ b/jigsaw-pieces/village/plains/streets/straight_01.json @@ -3,7 +3,7 @@ { "targetName": "village/plains/villagers/unemployed", "entityCount": 3, - "spawnEntity": "villager", + "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/plains/streets/straight_02.json b/jigsaw-pieces/village/plains/streets/straight_02.json index bcf61586..bbf42192 100644 --- a/jigsaw-pieces/village/plains/streets/straight_02.json +++ b/jigsaw-pieces/village/plains/streets/straight_02.json @@ -3,7 +3,7 @@ { "targetName": "village/plains/villagers/unemployed", "entityCount": 3, - "spawnEntity": "villager", + "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/plains/streets/straight_03.json b/jigsaw-pieces/village/plains/streets/straight_03.json index fd3f71be..a8609276 100644 --- a/jigsaw-pieces/village/plains/streets/straight_03.json +++ b/jigsaw-pieces/village/plains/streets/straight_03.json @@ -3,7 +3,7 @@ { "targetName": "village/plains/villagers/unemployed", "entityCount": 3, - "spawnEntity": "villager", + "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/plains/streets/straight_04.json b/jigsaw-pieces/village/plains/streets/straight_04.json index ec518b4e..106568f8 100644 --- a/jigsaw-pieces/village/plains/streets/straight_04.json +++ b/jigsaw-pieces/village/plains/streets/straight_04.json @@ -3,7 +3,7 @@ { "targetName": "village/plains/villagers/unemployed", "entityCount": 3, - "spawnEntity": "villager", + "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/plains/streets/straight_05.json b/jigsaw-pieces/village/plains/streets/straight_05.json index b521e7ce..46c024ad 100644 --- a/jigsaw-pieces/village/plains/streets/straight_05.json +++ b/jigsaw-pieces/village/plains/streets/straight_05.json @@ -3,7 +3,7 @@ { "targetName": "village/plains/villagers/unemployed", "entityCount": 3, - "spawnEntity": "villager", + "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/plains/streets/straight_06.json b/jigsaw-pieces/village/plains/streets/straight_06.json index 6ecc4f8f..9f4efed3 100644 --- a/jigsaw-pieces/village/plains/streets/straight_06.json +++ b/jigsaw-pieces/village/plains/streets/straight_06.json @@ -3,7 +3,7 @@ { "targetName": "village/plains/villagers/unemployed", "entityCount": 3, - "spawnEntity": "villager", + "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/plains/streets/turn_01.json b/jigsaw-pieces/village/plains/streets/turn_01.json index fddad95f..4aa52006 100644 --- a/jigsaw-pieces/village/plains/streets/turn_01.json +++ b/jigsaw-pieces/village/plains/streets/turn_01.json @@ -3,7 +3,7 @@ { "targetName": "village/plains/villagers/unemployed", "entityCount": 3, - "spawnEntity": "villager", + "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/plains/town_centers/plains_fountain_01.json b/jigsaw-pieces/village/plains/town_centers/plains_fountain_01.json index bfab53fe..01da12f1 100644 --- a/jigsaw-pieces/village/plains/town_centers/plains_fountain_01.json +++ b/jigsaw-pieces/village/plains/town_centers/plains_fountain_01.json @@ -32,7 +32,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": -2, "y": -2, @@ -59,7 +59,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": 3, "y": -2, @@ -73,7 +73,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": 3, "y": -2, diff --git a/jigsaw-pieces/village/plains/town_centers/plains_meeting_point_1.json b/jigsaw-pieces/village/plains/town_centers/plains_meeting_point_1.json index d533b8f9..b2d3c2ad 100644 --- a/jigsaw-pieces/village/plains/town_centers/plains_meeting_point_1.json +++ b/jigsaw-pieces/village/plains/town_centers/plains_meeting_point_1.json @@ -6,7 +6,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": -4, "y": -3, @@ -33,7 +33,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": -4, "y": -3, diff --git a/jigsaw-pieces/village/plains/town_centers/plains_meeting_point_2.json b/jigsaw-pieces/village/plains/town_centers/plains_meeting_point_2.json index cbb177d5..49dbc57e 100644 --- a/jigsaw-pieces/village/plains/town_centers/plains_meeting_point_2.json +++ b/jigsaw-pieces/village/plains/town_centers/plains_meeting_point_2.json @@ -19,7 +19,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": -3, "y": -2, @@ -46,7 +46,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": -2, "y": -2, @@ -60,7 +60,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": -2, "y": -2, diff --git a/jigsaw-pieces/village/plains/town_centers/plains_meeting_point_3.json b/jigsaw-pieces/village/plains/town_centers/plains_meeting_point_3.json index c5ca9678..0b798630 100644 --- a/jigsaw-pieces/village/plains/town_centers/plains_meeting_point_3.json +++ b/jigsaw-pieces/village/plains/town_centers/plains_meeting_point_3.json @@ -6,7 +6,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": -4, "y": -4, @@ -33,7 +33,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": -3, "y": -4, diff --git a/jigsaw-pieces/village/plains/villagers/unemployed.json b/jigsaw-pieces/village/plains/villagers/unemployed.json index 7d922ce1..23a3bf6e 100644 --- a/jigsaw-pieces/village/plains/villagers/unemployed.json +++ b/jigsaw-pieces/village/plains/villagers/unemployed.json @@ -10,7 +10,7 @@ "y": -1, "z": 0 }, - "spawnEntity": "villager", + "entityPosition": { "x": 0, "y": 2, diff --git a/jigsaw-pieces/village/savanna/streets/corner_01.json b/jigsaw-pieces/village/savanna/streets/corner_01.json index 33208b7a..e23298ce 100644 --- a/jigsaw-pieces/village/savanna/streets/corner_01.json +++ b/jigsaw-pieces/village/savanna/streets/corner_01.json @@ -3,7 +3,7 @@ { "targetName": "village/savanna/villagers/unemployed", "entityCount": 3, - "spawnEntity": "villager", + "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/savanna/streets/corner_03.json b/jigsaw-pieces/village/savanna/streets/corner_03.json index 089c9df7..f80fe57f 100644 --- a/jigsaw-pieces/village/savanna/streets/corner_03.json +++ b/jigsaw-pieces/village/savanna/streets/corner_03.json @@ -3,7 +3,7 @@ { "targetName": "village/savanna/villagers/unemployed", "entityCount": 3, - "spawnEntity": "villager", + "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/savanna/streets/split_01.json b/jigsaw-pieces/village/savanna/streets/split_01.json index cf2a6ffb..f22db0c3 100644 --- a/jigsaw-pieces/village/savanna/streets/split_01.json +++ b/jigsaw-pieces/village/savanna/streets/split_01.json @@ -3,7 +3,7 @@ { "targetName": "village/savanna/villagers/unemployed", "entityCount": 3, - "spawnEntity": "villager", + "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/savanna/streets/split_02.json b/jigsaw-pieces/village/savanna/streets/split_02.json index a09cb3de..10651b15 100644 --- a/jigsaw-pieces/village/savanna/streets/split_02.json +++ b/jigsaw-pieces/village/savanna/streets/split_02.json @@ -3,7 +3,7 @@ { "targetName": "village/savanna/villagers/unemployed", "entityCount": 3, - "spawnEntity": "villager", + "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/savanna/streets/straight_02.json b/jigsaw-pieces/village/savanna/streets/straight_02.json index 8006ebf9..368406e0 100644 --- a/jigsaw-pieces/village/savanna/streets/straight_02.json +++ b/jigsaw-pieces/village/savanna/streets/straight_02.json @@ -3,7 +3,7 @@ { "targetName": "village/savanna/villagers/unemployed", "entityCount": 3, - "spawnEntity": "villager", + "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/savanna/streets/straight_04.json b/jigsaw-pieces/village/savanna/streets/straight_04.json index 7a5075df..beaa1491 100644 --- a/jigsaw-pieces/village/savanna/streets/straight_04.json +++ b/jigsaw-pieces/village/savanna/streets/straight_04.json @@ -3,7 +3,7 @@ { "targetName": "village/savanna/villagers/unemployed", "entityCount": 3, - "spawnEntity": "villager", + "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/savanna/streets/straight_05.json b/jigsaw-pieces/village/savanna/streets/straight_05.json index da6833f4..6e447084 100644 --- a/jigsaw-pieces/village/savanna/streets/straight_05.json +++ b/jigsaw-pieces/village/savanna/streets/straight_05.json @@ -3,7 +3,7 @@ { "targetName": "village/savanna/villagers/unemployed", "entityCount": 3, - "spawnEntity": "villager", + "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/savanna/streets/straight_06.json b/jigsaw-pieces/village/savanna/streets/straight_06.json index be5c42b2..ccde869f 100644 --- a/jigsaw-pieces/village/savanna/streets/straight_06.json +++ b/jigsaw-pieces/village/savanna/streets/straight_06.json @@ -3,7 +3,7 @@ { "targetName": "village/savanna/villagers/unemployed", "entityCount": 3, - "spawnEntity": "villager", + "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/savanna/streets/straight_08.json b/jigsaw-pieces/village/savanna/streets/straight_08.json index f2cb511d..0ec38b9f 100644 --- a/jigsaw-pieces/village/savanna/streets/straight_08.json +++ b/jigsaw-pieces/village/savanna/streets/straight_08.json @@ -3,7 +3,7 @@ { "targetName": "village/savanna/villagers/unemployed", "entityCount": 3, - "spawnEntity": "villager", + "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/savanna/streets/straight_09.json b/jigsaw-pieces/village/savanna/streets/straight_09.json index dd0792b4..2a7ac912 100644 --- a/jigsaw-pieces/village/savanna/streets/straight_09.json +++ b/jigsaw-pieces/village/savanna/streets/straight_09.json @@ -3,7 +3,7 @@ { "targetName": "village/savanna/villagers/unemployed", "entityCount": 3, - "spawnEntity": "villager", + "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/savanna/streets/straight_10.json b/jigsaw-pieces/village/savanna/streets/straight_10.json index 81d89505..bf47a8ad 100644 --- a/jigsaw-pieces/village/savanna/streets/straight_10.json +++ b/jigsaw-pieces/village/savanna/streets/straight_10.json @@ -3,7 +3,7 @@ { "targetName": "village/savanna/villagers/unemployed", "entityCount": 3, - "spawnEntity": "villager", + "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/savanna/streets/straight_11.json b/jigsaw-pieces/village/savanna/streets/straight_11.json index 91578d90..a9ba2cdc 100644 --- a/jigsaw-pieces/village/savanna/streets/straight_11.json +++ b/jigsaw-pieces/village/savanna/streets/straight_11.json @@ -3,7 +3,7 @@ { "targetName": "village/savanna/villagers/unemployed", "entityCount": 3, - "spawnEntity": "villager", + "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/savanna/streets/turn_01.json b/jigsaw-pieces/village/savanna/streets/turn_01.json index 7f3f0f5e..1b17deb4 100644 --- a/jigsaw-pieces/village/savanna/streets/turn_01.json +++ b/jigsaw-pieces/village/savanna/streets/turn_01.json @@ -3,7 +3,7 @@ { "targetName": "village/savanna/villagers/unemployed", "entityCount": 3, - "spawnEntity": "villager", + "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/savanna/villagers/unemployed.json b/jigsaw-pieces/village/savanna/villagers/unemployed.json index e1597c69..85cbd297 100644 --- a/jigsaw-pieces/village/savanna/villagers/unemployed.json +++ b/jigsaw-pieces/village/savanna/villagers/unemployed.json @@ -10,7 +10,7 @@ "y": -1, "z": 0 }, - "spawnEntity": "villager", + "entityPosition": { "x": 0, "y": 2, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_medium_house_1.json b/jigsaw-pieces/village/snowy/houses/snowy_medium_house_1.json index 291f0dda..3f92d76b 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_medium_house_1.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_medium_house_1.json @@ -6,7 +6,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": 0, "y": -3, @@ -20,7 +20,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": 0, "y": -3, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_medium_house_2.json b/jigsaw-pieces/village/snowy/houses/snowy_medium_house_2.json index 75b88a56..87872e34 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_medium_house_2.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_medium_house_2.json @@ -6,7 +6,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": -2, "y": -4, @@ -33,7 +33,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": 2, "y": -4, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_medium_house_3.json b/jigsaw-pieces/village/snowy/houses/snowy_medium_house_3.json index 313c2211..ff7ebe65 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_medium_house_3.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_medium_house_3.json @@ -6,7 +6,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": 0, "y": -2, @@ -20,7 +20,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": 0, "y": -2, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_small_house_1.json b/jigsaw-pieces/village/snowy/houses/snowy_small_house_1.json index 5f02d398..c49a3ecd 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_small_house_1.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_small_house_1.json @@ -6,7 +6,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": 0, "y": -2, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_small_house_2.json b/jigsaw-pieces/village/snowy/houses/snowy_small_house_2.json index 23b94501..204c90a0 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_small_house_2.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_small_house_2.json @@ -19,7 +19,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": 0, "y": -4, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_small_house_3.json b/jigsaw-pieces/village/snowy/houses/snowy_small_house_3.json index fa7fe069..b292c02f 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_small_house_3.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_small_house_3.json @@ -6,7 +6,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": 0, "y": -3, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_small_house_4.json b/jigsaw-pieces/village/snowy/houses/snowy_small_house_4.json index 81f57e7d..2ca53aea 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_small_house_4.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_small_house_4.json @@ -6,7 +6,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": 0, "y": -2, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_small_house_5.json b/jigsaw-pieces/village/snowy/houses/snowy_small_house_5.json index f568250a..814a657f 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_small_house_5.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_small_house_5.json @@ -6,7 +6,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": -1, "y": -2, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_small_house_6.json b/jigsaw-pieces/village/snowy/houses/snowy_small_house_6.json index 9d19da8a..61565a17 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_small_house_6.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_small_house_6.json @@ -19,7 +19,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": 0, "y": -4, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_small_house_7.json b/jigsaw-pieces/village/snowy/houses/snowy_small_house_7.json index 3058c718..a500ef07 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_small_house_7.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_small_house_7.json @@ -19,7 +19,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": -1, "y": -3, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_small_house_8.json b/jigsaw-pieces/village/snowy/houses/snowy_small_house_8.json index 5f12c2f3..4722013a 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_small_house_8.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_small_house_8.json @@ -6,7 +6,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": -1, "y": -2, diff --git a/jigsaw-pieces/village/snowy/streets/corner_01.json b/jigsaw-pieces/village/snowy/streets/corner_01.json index 81bf97e0..cb94cbf0 100644 --- a/jigsaw-pieces/village/snowy/streets/corner_01.json +++ b/jigsaw-pieces/village/snowy/streets/corner_01.json @@ -3,7 +3,7 @@ { "targetName": "village/snowy/villagers/unemployed", "entityCount": 3, - "spawnEntity": "villager", + "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/snowy/streets/corner_02.json b/jigsaw-pieces/village/snowy/streets/corner_02.json index dd9563e7..4cd6ca68 100644 --- a/jigsaw-pieces/village/snowy/streets/corner_02.json +++ b/jigsaw-pieces/village/snowy/streets/corner_02.json @@ -3,7 +3,7 @@ { "targetName": "village/snowy/villagers/unemployed", "entityCount": 3, - "spawnEntity": "villager", + "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/snowy/streets/corner_03.json b/jigsaw-pieces/village/snowy/streets/corner_03.json index 2396efb5..fcfa29d5 100644 --- a/jigsaw-pieces/village/snowy/streets/corner_03.json +++ b/jigsaw-pieces/village/snowy/streets/corner_03.json @@ -3,7 +3,7 @@ { "targetName": "village/snowy/villagers/unemployed", "entityCount": 3, - "spawnEntity": "villager", + "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/snowy/streets/straight_01.json b/jigsaw-pieces/village/snowy/streets/straight_01.json index 5a248144..6c987998 100644 --- a/jigsaw-pieces/village/snowy/streets/straight_01.json +++ b/jigsaw-pieces/village/snowy/streets/straight_01.json @@ -3,7 +3,7 @@ { "targetName": "village/snowy/villagers/unemployed", "entityCount": 3, - "spawnEntity": "villager", + "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/snowy/streets/straight_02.json b/jigsaw-pieces/village/snowy/streets/straight_02.json index 155194da..3451959f 100644 --- a/jigsaw-pieces/village/snowy/streets/straight_02.json +++ b/jigsaw-pieces/village/snowy/streets/straight_02.json @@ -3,7 +3,7 @@ { "targetName": "village/snowy/villagers/unemployed", "entityCount": 3, - "spawnEntity": "villager", + "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/snowy/streets/straight_03.json b/jigsaw-pieces/village/snowy/streets/straight_03.json index 83030311..5f863785 100644 --- a/jigsaw-pieces/village/snowy/streets/straight_03.json +++ b/jigsaw-pieces/village/snowy/streets/straight_03.json @@ -3,7 +3,7 @@ { "targetName": "village/snowy/villagers/unemployed", "entityCount": 3, - "spawnEntity": "villager", + "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/snowy/streets/straight_04.json b/jigsaw-pieces/village/snowy/streets/straight_04.json index c8d4105f..9567e785 100644 --- a/jigsaw-pieces/village/snowy/streets/straight_04.json +++ b/jigsaw-pieces/village/snowy/streets/straight_04.json @@ -3,7 +3,7 @@ { "targetName": "village/snowy/villagers/unemployed", "entityCount": 3, - "spawnEntity": "villager", + "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/snowy/streets/straight_06.json b/jigsaw-pieces/village/snowy/streets/straight_06.json index bc7181a5..9f58f260 100644 --- a/jigsaw-pieces/village/snowy/streets/straight_06.json +++ b/jigsaw-pieces/village/snowy/streets/straight_06.json @@ -3,7 +3,7 @@ { "targetName": "village/snowy/villagers/unemployed", "entityCount": 3, - "spawnEntity": "villager", + "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/snowy/streets/straight_08.json b/jigsaw-pieces/village/snowy/streets/straight_08.json index 67f75c3b..3886f8ae 100644 --- a/jigsaw-pieces/village/snowy/streets/straight_08.json +++ b/jigsaw-pieces/village/snowy/streets/straight_08.json @@ -3,7 +3,7 @@ { "targetName": "village/snowy/villagers/unemployed", "entityCount": 3, - "spawnEntity": "villager", + "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/snowy/streets/turn_01.json b/jigsaw-pieces/village/snowy/streets/turn_01.json index c7d59299..4948dd98 100644 --- a/jigsaw-pieces/village/snowy/streets/turn_01.json +++ b/jigsaw-pieces/village/snowy/streets/turn_01.json @@ -3,7 +3,7 @@ { "targetName": "village/snowy/villagers/unemployed", "entityCount": 3, - "spawnEntity": "villager", + "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/snowy/town_centers/snowy_meeting_point_1.json b/jigsaw-pieces/village/snowy/town_centers/snowy_meeting_point_1.json index 744d825b..799f9af1 100644 --- a/jigsaw-pieces/village/snowy/town_centers/snowy_meeting_point_1.json +++ b/jigsaw-pieces/village/snowy/town_centers/snowy_meeting_point_1.json @@ -19,7 +19,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": -5, "y": -4, @@ -85,7 +85,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": 2, "y": -4, diff --git a/jigsaw-pieces/village/snowy/town_centers/snowy_meeting_point_2.json b/jigsaw-pieces/village/snowy/town_centers/snowy_meeting_point_2.json index e9524102..905cf874 100644 --- a/jigsaw-pieces/village/snowy/town_centers/snowy_meeting_point_2.json +++ b/jigsaw-pieces/village/snowy/town_centers/snowy_meeting_point_2.json @@ -19,7 +19,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": -4, "y": -2, @@ -59,7 +59,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": -2, "y": -2, diff --git a/jigsaw-pieces/village/snowy/town_centers/snowy_meeting_point_3.json b/jigsaw-pieces/village/snowy/town_centers/snowy_meeting_point_3.json index 58f636da..abbeacec 100644 --- a/jigsaw-pieces/village/snowy/town_centers/snowy_meeting_point_3.json +++ b/jigsaw-pieces/village/snowy/town_centers/snowy_meeting_point_3.json @@ -32,7 +32,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": -2, "y": -3, @@ -46,7 +46,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": -2, "y": -3, diff --git a/jigsaw-pieces/village/snowy/villagers/unemployed.json b/jigsaw-pieces/village/snowy/villagers/unemployed.json index 0be358f3..31f34922 100644 --- a/jigsaw-pieces/village/snowy/villagers/unemployed.json +++ b/jigsaw-pieces/village/snowy/villagers/unemployed.json @@ -10,7 +10,7 @@ "y": -1, "z": 0 }, - "spawnEntity": "villager", + "entityPosition": { "x": 0, "y": 2, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_medium_house_1.json b/jigsaw-pieces/village/taiga/houses/taiga_medium_house_1.json index c5316d7a..80ea3ebc 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_medium_house_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_medium_house_1.json @@ -19,7 +19,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": -2, "y": 0, @@ -33,7 +33,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": -1, "y": 0, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_medium_house_2.json b/jigsaw-pieces/village/taiga/houses/taiga_medium_house_2.json index a00a7296..647970b7 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_medium_house_2.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_medium_house_2.json @@ -6,7 +6,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": -1, "y": -5, @@ -33,7 +33,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": 0, "y": -1, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_medium_house_3.json b/jigsaw-pieces/village/taiga/houses/taiga_medium_house_3.json index 3b1befaa..c6300961 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_medium_house_3.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_medium_house_3.json @@ -32,7 +32,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": 0, "y": -3, @@ -46,7 +46,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": 0, "y": -3, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_medium_house_4.json b/jigsaw-pieces/village/taiga/houses/taiga_medium_house_4.json index 64746b5a..180afe4f 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_medium_house_4.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_medium_house_4.json @@ -6,7 +6,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": -1, "y": -3, @@ -20,7 +20,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": 2, "y": -3, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_small_house_1.json b/jigsaw-pieces/village/taiga/houses/taiga_small_house_1.json index da3199fa..2d5b87b2 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_small_house_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_small_house_1.json @@ -6,7 +6,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": -1, "y": -3, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_small_house_2.json b/jigsaw-pieces/village/taiga/houses/taiga_small_house_2.json index 063c0139..14a39f4b 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_small_house_2.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_small_house_2.json @@ -19,7 +19,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": 0, "y": -3, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_small_house_3.json b/jigsaw-pieces/village/taiga/houses/taiga_small_house_3.json index b87d0409..882b8f99 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_small_house_3.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_small_house_3.json @@ -19,7 +19,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": 0, "y": -3, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_small_house_4.json b/jigsaw-pieces/village/taiga/houses/taiga_small_house_4.json index 4d09e6ed..4d9450e8 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_small_house_4.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_small_house_4.json @@ -19,7 +19,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": -1, "y": -3, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_small_house_5.json b/jigsaw-pieces/village/taiga/houses/taiga_small_house_5.json index fff67257..113944e0 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_small_house_5.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_small_house_5.json @@ -19,7 +19,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": 0, "y": -3, diff --git a/jigsaw-pieces/village/taiga/streets/corner_01.json b/jigsaw-pieces/village/taiga/streets/corner_01.json index cfeedc9a..a5e9e5eb 100644 --- a/jigsaw-pieces/village/taiga/streets/corner_01.json +++ b/jigsaw-pieces/village/taiga/streets/corner_01.json @@ -3,7 +3,7 @@ { "targetName": "village/taiga/villagers/unemployed", "entityCount": 3, - "spawnEntity": "villager", + "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/taiga/streets/corner_02.json b/jigsaw-pieces/village/taiga/streets/corner_02.json index 0301db6e..04337005 100644 --- a/jigsaw-pieces/village/taiga/streets/corner_02.json +++ b/jigsaw-pieces/village/taiga/streets/corner_02.json @@ -3,7 +3,7 @@ { "targetName": "village/taiga/villagers/unemployed", "entityCount": 3, - "spawnEntity": "villager", + "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/taiga/streets/corner_03.json b/jigsaw-pieces/village/taiga/streets/corner_03.json index 236d3817..5918ccf4 100644 --- a/jigsaw-pieces/village/taiga/streets/corner_03.json +++ b/jigsaw-pieces/village/taiga/streets/corner_03.json @@ -3,7 +3,7 @@ { "targetName": "village/taiga/villagers/unemployed", "entityCount": 3, - "spawnEntity": "villager", + "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/taiga/streets/straight_01.json b/jigsaw-pieces/village/taiga/streets/straight_01.json index 5f3050a2..7bb08cc7 100644 --- a/jigsaw-pieces/village/taiga/streets/straight_01.json +++ b/jigsaw-pieces/village/taiga/streets/straight_01.json @@ -3,7 +3,7 @@ { "targetName": "village/taiga/villagers/unemployed", "entityCount": 3, - "spawnEntity": "villager", + "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/taiga/streets/straight_02.json b/jigsaw-pieces/village/taiga/streets/straight_02.json index 3af31dbd..23dc106a 100644 --- a/jigsaw-pieces/village/taiga/streets/straight_02.json +++ b/jigsaw-pieces/village/taiga/streets/straight_02.json @@ -3,7 +3,7 @@ { "targetName": "village/taiga/villagers/unemployed", "entityCount": 3, - "spawnEntity": "villager", + "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/taiga/streets/straight_03.json b/jigsaw-pieces/village/taiga/streets/straight_03.json index d61f3f96..4831b258 100644 --- a/jigsaw-pieces/village/taiga/streets/straight_03.json +++ b/jigsaw-pieces/village/taiga/streets/straight_03.json @@ -3,7 +3,7 @@ { "targetName": "village/taiga/villagers/unemployed", "entityCount": 3, - "spawnEntity": "villager", + "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/taiga/streets/straight_04.json b/jigsaw-pieces/village/taiga/streets/straight_04.json index a2f1f2b1..929fcf25 100644 --- a/jigsaw-pieces/village/taiga/streets/straight_04.json +++ b/jigsaw-pieces/village/taiga/streets/straight_04.json @@ -3,7 +3,7 @@ { "targetName": "village/taiga/villagers/unemployed", "entityCount": 3, - "spawnEntity": "villager", + "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/taiga/streets/straight_05.json b/jigsaw-pieces/village/taiga/streets/straight_05.json index 71201984..3c4f37e1 100644 --- a/jigsaw-pieces/village/taiga/streets/straight_05.json +++ b/jigsaw-pieces/village/taiga/streets/straight_05.json @@ -3,7 +3,7 @@ { "targetName": "village/taiga/villagers/unemployed", "entityCount": 3, - "spawnEntity": "villager", + "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/taiga/streets/straight_06.json b/jigsaw-pieces/village/taiga/streets/straight_06.json index 9da7e396..11212d26 100644 --- a/jigsaw-pieces/village/taiga/streets/straight_06.json +++ b/jigsaw-pieces/village/taiga/streets/straight_06.json @@ -3,7 +3,7 @@ { "targetName": "village/taiga/villagers/unemployed", "entityCount": 3, - "spawnEntity": "villager", + "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/taiga/streets/turn_01.json b/jigsaw-pieces/village/taiga/streets/turn_01.json index bff313f9..3d7d3451 100644 --- a/jigsaw-pieces/village/taiga/streets/turn_01.json +++ b/jigsaw-pieces/village/taiga/streets/turn_01.json @@ -3,7 +3,7 @@ { "targetName": "village/taiga/villagers/unemployed", "entityCount": 3, - "spawnEntity": "villager", + "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/taiga/town_centers/taiga_meeting_point_1.json b/jigsaw-pieces/village/taiga/town_centers/taiga_meeting_point_1.json index 06d3ebad..5d4c3adf 100644 --- a/jigsaw-pieces/village/taiga/town_centers/taiga_meeting_point_1.json +++ b/jigsaw-pieces/village/taiga/town_centers/taiga_meeting_point_1.json @@ -6,7 +6,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": -9, "y": -1, @@ -59,7 +59,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": -4, "y": -1, @@ -73,7 +73,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": -2, "y": -1, diff --git a/jigsaw-pieces/village/taiga/town_centers/taiga_meeting_point_2.json b/jigsaw-pieces/village/taiga/town_centers/taiga_meeting_point_2.json index 0004c1e4..8d6db66e 100644 --- a/jigsaw-pieces/village/taiga/town_centers/taiga_meeting_point_2.json +++ b/jigsaw-pieces/village/taiga/town_centers/taiga_meeting_point_2.json @@ -19,7 +19,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": -4, "y": -2, @@ -46,7 +46,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": -3, "y": -2, @@ -86,7 +86,7 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "spawnEntity": "villager", + "position": { "x": 4, "y": -2, diff --git a/jigsaw-pieces/village/taiga/villagers/unemployed.json b/jigsaw-pieces/village/taiga/villagers/unemployed.json index f193030e..fc07dfac 100644 --- a/jigsaw-pieces/village/taiga/villagers/unemployed.json +++ b/jigsaw-pieces/village/taiga/villagers/unemployed.json @@ -10,7 +10,7 @@ "y": -1, "z": 0 }, - "spawnEntity": "villager", + "entityPosition": { "x": 0, "y": 2, From 823c10f5ddee5a8e0cb44d14d1b132d196767741 Mon Sep 17 00:00:00 2001 From: Brian Fopiano Date: Sun, 12 Sep 2021 14:23:30 -0700 Subject: [PATCH 18/30] removed: "spawnEntity": "", ????????? ??????????????? --- jigsaw-pieces/pillager_outpost/regular/feature_cage1.json | 2 +- jigsaw-pieces/pillager_outpost/regular/feature_cage2.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/jigsaw-pieces/pillager_outpost/regular/feature_cage1.json b/jigsaw-pieces/pillager_outpost/regular/feature_cage1.json index f1ef623d..17b21480 100644 --- a/jigsaw-pieces/pillager_outpost/regular/feature_cage1.json +++ b/jigsaw-pieces/pillager_outpost/regular/feature_cage1.json @@ -67,7 +67,7 @@ "rotateConnector": false, "innerConnector": false, "pools": [], - "spawnEntity": "", + "keepEntity": false, "entityCount": 1, "position": { diff --git a/jigsaw-pieces/pillager_outpost/regular/feature_cage2.json b/jigsaw-pieces/pillager_outpost/regular/feature_cage2.json index dbf4a53c..9b959163 100644 --- a/jigsaw-pieces/pillager_outpost/regular/feature_cage2.json +++ b/jigsaw-pieces/pillager_outpost/regular/feature_cage2.json @@ -61,7 +61,7 @@ "innerConnector": false, "entityCount": 1, "rotateConnector": false, - "spawnEntity": "", + "name": "", "pools": [], "position": { From 329b262a43bdfc7e951f71787ed2d0fc08a69f9e Mon Sep 17 00:00:00 2001 From: Brian Fopiano Date: Sun, 12 Sep 2021 14:24:31 -0700 Subject: [PATCH 19/30] cow, pig, and sheep also removed --- .../village/plains/houses/plains_animal_pen_1.json | 4 ++-- .../village/plains/houses/plains_animal_pen_2.json | 4 ++-- .../village/plains/houses/plains_animal_pen_3.json | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/jigsaw-pieces/village/plains/houses/plains_animal_pen_1.json b/jigsaw-pieces/village/plains/houses/plains_animal_pen_1.json index 82e51268..45a8b85b 100644 --- a/jigsaw-pieces/village/plains/houses/plains_animal_pen_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_animal_pen_1.json @@ -5,7 +5,7 @@ "innerConnector": false, "rotateConnector": false, "name": "minecraft:bottom", - "spawnEntity": "sheep", + "position": { "x": 0, "y": -4, @@ -18,7 +18,7 @@ "innerConnector": false, "rotateConnector": false, "name": "minecraft:bottom", - "spawnEntity": "sheep", + "position": { "x": 1, "y": -4, diff --git a/jigsaw-pieces/village/plains/houses/plains_animal_pen_2.json b/jigsaw-pieces/village/plains/houses/plains_animal_pen_2.json index 2f3c373d..53d0b0c3 100644 --- a/jigsaw-pieces/village/plains/houses/plains_animal_pen_2.json +++ b/jigsaw-pieces/village/plains/houses/plains_animal_pen_2.json @@ -5,7 +5,7 @@ "innerConnector": false, "rotateConnector": false, "name": "minecraft:bottom", - "spawnEntity": "cow", + "position": { "x": -1, "y": -3, @@ -18,7 +18,7 @@ "innerConnector": false, "rotateConnector": false, "name": "minecraft:bottom", - "spawnEntity": "cow", + "position": { "x": 1, "y": -3, diff --git a/jigsaw-pieces/village/plains/houses/plains_animal_pen_3.json b/jigsaw-pieces/village/plains/houses/plains_animal_pen_3.json index b64206f2..eea3f57e 100644 --- a/jigsaw-pieces/village/plains/houses/plains_animal_pen_3.json +++ b/jigsaw-pieces/village/plains/houses/plains_animal_pen_3.json @@ -31,7 +31,7 @@ "innerConnector": false, "rotateConnector": false, "name": "minecraft:bottom", - "spawnEntity": "pig", + "position": { "x": -2, "y": -3, @@ -57,7 +57,7 @@ "innerConnector": false, "rotateConnector": false, "name": "minecraft:bottom", - "spawnEntity": "pig", + "position": { "x": 0, "y": -3, @@ -83,7 +83,7 @@ "innerConnector": false, "rotateConnector": false, "name": "minecraft:bottom", - "spawnEntity": "pig", + "position": { "x": 1, "y": -3, From 6d3840424b1a178e94b7afe58a2ab609336bcc20 Mon Sep 17 00:00:00 2001 From: Brian Fopiano Date: Sun, 12 Sep 2021 14:28:06 -0700 Subject: [PATCH 20/30] CLean --- biomes/carving/deep.json | 16 +- biomes/carving/deepravine.json | 4 +- biomes/carving/drip-lite.json | 14 +- biomes/carving/drip.json | 11 +- biomes/carving/jungle.json | 17 +- biomes/carving/red-sandstone.json | 24 +- biomes/carving/sandstone.json | 24 +- dimensions/overworld.json | 42 +- jigsaw-pieces/mushhut/hut/hut1.json | 1 - jigsaw-pieces/mushhut/hut/hut2.json | 1 - jigsaw-pieces/mushhut/hut/hut3.json | 1 - jigsaw-pieces/mushhut/hut/hut4.json | 1 - jigsaw-pieces/mushhut/hut/hut5.json | 1 - jigsaw-pieces/mushhut/hut/hut6.json | 1 - jigsaw-pieces/mushhut/hut/hut7.json | 1 - jigsaw-pieces/pillager_outpost/pillager.json | 1 - .../regular/feature_cage1.json | 1 - .../regular/feature_cage2.json | 1 - .../pillager_outpost/watchtower.json | 10 - .../desert/houses/desert_medium_house_1.json | 2 - .../desert/houses/desert_medium_house_2.json | 2 - .../desert/houses/desert_small_house_1.json | 1 - .../desert/houses/desert_small_house_2.json | 1 - .../desert/houses/desert_small_house_3.json | 1 - .../desert/houses/desert_small_house_4.json | 1 - .../desert/houses/desert_small_house_5.json | 1 - .../desert/houses/desert_small_house_6.json | 1 - .../desert/houses/desert_small_house_7.json | 1 - .../desert/houses/desert_small_house_8.json | 1 - .../village/desert/streets/corner_01.json | 25 +- .../village/desert/streets/corner_02.json | 25 +- .../village/desert/streets/crossroad_01.json | 25 +- .../village/desert/streets/crossroad_02.json | 25 +- .../village/desert/streets/crossroad_03.json | 25 +- .../village/desert/streets/square_01.json | 24 +- .../village/desert/streets/square_02.json | 24 +- .../village/desert/streets/straight_01.json | 25 +- .../village/desert/streets/straight_02.json | 25 +- .../village/desert/streets/straight_03.json | 25 +- .../village/desert/streets/turn_01.json | 25 +- .../town_centers/desert_meeting_point_1.json | 3 - .../town_centers/desert_meeting_point_2.json | 3 - .../town_centers/desert_meeting_point_3.json | 3 - .../village/desert/villagers/unemployed.json | 1 - .../plains/houses/plains_accessory_1.json | 24 +- .../plains/houses/plains_animal_pen_1.json | 26 +- .../plains/houses/plains_animal_pen_2.json | 26 +- .../plains/houses/plains_animal_pen_3.json | 27 +- .../plains/houses/plains_armorer_house_1.json | 24 +- .../plains/houses/plains_big_house_1.json | 28 +- .../plains/houses/plains_butcher_shop_1.json | 24 +- .../plains/houses/plains_butcher_shop_2.json | 24 +- .../plains/houses/plains_cartographer_1.json | 24 +- .../houses/plains_fisher_cottage_1.json | 24 +- .../houses/plains_fletcher_house_1.json | 24 +- .../plains/houses/plains_large_farm_1.json | 24 +- .../plains/houses/plains_library_1.json | 24 +- .../plains/houses/plains_library_2.json | 24 +- .../plains/houses/plains_masons_house_1.json | 24 +- .../plains/houses/plains_medium_house_1.json | 26 +- .../plains/houses/plains_medium_house_2.json | 27 +- .../plains/houses/plains_meeting_point_4.json | 25 +- .../plains/houses/plains_meeting_point_5.json | 25 +- .../houses/plains_shepherds_house_1.json | 25 +- .../plains/houses/plains_small_farm_1.json | 25 +- .../plains/houses/plains_small_house_1.json | 26 +- .../plains/houses/plains_small_house_2.json | 26 +- .../plains/houses/plains_small_house_3.json | 26 +- .../plains/houses/plains_small_house_4.json | 26 +- .../plains/houses/plains_small_house_5.json | 26 +- .../plains/houses/plains_small_house_6.json | 26 +- .../plains/houses/plains_small_house_7.json | 26 +- .../plains/houses/plains_small_house_8.json | 26 +- .../plains/houses/plains_stable_1.json | 25 +- .../plains/houses/plains_stable_2.json | 25 +- .../plains/houses/plains_tannery_1.json | 25 +- .../plains/houses/plains_temple_3.json | 25 +- .../plains/houses/plains_temple_4.json | 25 +- .../plains/houses/plains_tool_smith_1.json | 25 +- .../plains/houses/plains_weaponsmith_1.json | 25 +- .../village/plains/streets/corner_01.json | 357 ++++++++------- .../village/plains/streets/corner_02.json | 2 - .../village/plains/streets/corner_03.json | 2 - .../village/plains/streets/crossroad_01.json | 1 - .../village/plains/streets/crossroad_02.json | 1 - .../village/plains/streets/crossroad_03.json | 1 - .../village/plains/streets/straight_01.json | 1 - .../village/plains/streets/straight_02.json | 1 - .../village/plains/streets/straight_03.json | 1 - .../village/plains/streets/straight_04.json | 1 - .../village/plains/streets/straight_05.json | 1 - .../village/plains/streets/straight_06.json | 1 - .../village/plains/streets/turn_01.json | 1 - .../town_centers/plains_fountain_01.json | 28 +- .../town_centers/plains_meeting_point_1.json | 27 +- .../town_centers/plains_meeting_point_2.json | 28 +- .../town_centers/plains_meeting_point_3.json | 27 +- .../village/plains/villagers/unemployed.json | 1 - .../savanna/houses/savanna_animal_pen_1.json | 32 +- .../savanna/houses/savanna_animal_pen_2.json | 33 +- .../savanna/houses/savanna_animal_pen_3.json | 33 +- .../savanna/houses/savanna_armorer_1.json | 33 +- .../houses/savanna_butchers_shop_1.json | 33 +- .../houses/savanna_butchers_shop_2.json | 33 +- .../houses/savanna_cartographer_1.json | 33 +- .../houses/savanna_fisher_cottage_1.json | 33 +- .../houses/savanna_fletcher_house_1.json | 33 +- .../savanna/houses/savanna_large_farm_1.json | 33 +- .../savanna/houses/savanna_large_farm_2.json | 33 +- .../savanna/houses/savanna_library_1.json | 33 +- .../savanna/houses/savanna_mason_1.json | 33 +- .../houses/savanna_medium_house_1.json | 33 +- .../houses/savanna_medium_house_2.json | 33 +- .../savanna/houses/savanna_shepherd_1.json | 33 +- .../savanna/houses/savanna_small_farm.json | 33 +- .../savanna/houses/savanna_small_house_1.json | 33 +- .../savanna/houses/savanna_small_house_2.json | 33 +- .../savanna/houses/savanna_small_house_3.json | 33 +- .../savanna/houses/savanna_small_house_4.json | 33 +- .../savanna/houses/savanna_small_house_5.json | 33 +- .../savanna/houses/savanna_small_house_6.json | 33 +- .../savanna/houses/savanna_small_house_7.json | 33 +- .../savanna/houses/savanna_small_house_8.json | 33 +- .../savanna/houses/savanna_tannery_1.json | 33 +- .../savanna/houses/savanna_temple_1.json | 33 +- .../savanna/houses/savanna_temple_2.json | 33 +- .../savanna/houses/savanna_tool_smith_1.json | 33 +- .../savanna/houses/savanna_weaponsmith_1.json | 33 +- .../savanna/houses/savanna_weaponsmith_2.json | 33 +- .../village/savanna/streets/corner_01.json | 1 - .../village/savanna/streets/corner_03.json | 1 - .../village/savanna/streets/split_01.json | 1 - .../village/savanna/streets/split_02.json | 1 - .../village/savanna/streets/straight_02.json | 1 - .../village/savanna/streets/straight_04.json | 1 - .../village/savanna/streets/straight_05.json | 1 - .../village/savanna/streets/straight_06.json | 1 - .../village/savanna/streets/straight_08.json | 1 - .../village/savanna/streets/straight_09.json | 1 - .../village/savanna/streets/straight_10.json | 1 - .../village/savanna/streets/straight_11.json | 1 - .../village/savanna/streets/turn_01.json | 1 - .../village/savanna/villagers/unemployed.json | 1 - .../snowy/houses/snowy_animal_pen_1.json | 28 +- .../snowy/houses/snowy_animal_pen_2.json | 29 +- .../snowy/houses/snowy_armorer_house_1.json | 29 +- .../snowy/houses/snowy_armorer_house_2.json | 29 +- .../snowy/houses/snowy_butchers_shop_1.json | 29 +- .../snowy/houses/snowy_butchers_shop_2.json | 29 +- .../houses/snowy_cartographer_house_1.json | 29 +- .../village/snowy/houses/snowy_farm_1.json | 29 +- .../village/snowy/houses/snowy_farm_2.json | 29 +- .../snowy/houses/snowy_fisher_cottage.json | 29 +- .../snowy/houses/snowy_fletcher_house_1.json | 29 +- .../village/snowy/houses/snowy_library_1.json | 29 +- .../snowy/houses/snowy_masons_house_1.json | 29 +- .../snowy/houses/snowy_masons_house_2.json | 29 +- .../snowy/houses/snowy_medium_house_1.json | 31 +- .../snowy/houses/snowy_medium_house_2.json | 31 +- .../snowy/houses/snowy_medium_house_3.json | 31 +- .../snowy/houses/snowy_shepherds_house_1.json | 29 +- .../snowy/houses/snowy_small_house_1.json | 30 +- .../snowy/houses/snowy_small_house_2.json | 30 +- .../snowy/houses/snowy_small_house_3.json | 30 +- .../snowy/houses/snowy_small_house_4.json | 30 +- .../snowy/houses/snowy_small_house_5.json | 30 +- .../snowy/houses/snowy_small_house_6.json | 30 +- .../snowy/houses/snowy_small_house_7.json | 30 +- .../snowy/houses/snowy_small_house_8.json | 30 +- .../village/snowy/houses/snowy_tannery_1.json | 29 +- .../village/snowy/houses/snowy_temple_1.json | 29 +- .../snowy/houses/snowy_tool_smith_1.json | 29 +- .../snowy/houses/snowy_weapon_smith_1.json | 29 +- .../village/snowy/streets/corner_01.json | 405 +++++++++--------- .../village/snowy/streets/corner_02.json | 1 - .../village/snowy/streets/corner_03.json | 1 - .../village/snowy/streets/straight_01.json | 1 - .../village/snowy/streets/straight_02.json | 1 - .../village/snowy/streets/straight_03.json | 1 - .../village/snowy/streets/straight_04.json | 1 - .../village/snowy/streets/straight_06.json | 1 - .../village/snowy/streets/straight_08.json | 1 - .../village/snowy/streets/turn_01.json | 1 - .../town_centers/snowy_meeting_point_1.json | 2 - .../town_centers/snowy_meeting_point_2.json | 2 - .../town_centers/snowy_meeting_point_3.json | 2 - .../village/snowy/villagers/unemployed.json | 1 - .../taiga/houses/taiga_animal_pen_1.json | 28 +- .../village/taiga/houses/taiga_armorer_2.json | 29 +- .../taiga/houses/taiga_armorer_house_1.json | 29 +- .../taiga/houses/taiga_butcher_shop_1.json | 29 +- .../houses/taiga_cartographer_house_1.json | 29 +- .../taiga/houses/taiga_fisher_cottage_1.json | 29 +- .../taiga/houses/taiga_fletcher_house_1.json | 29 +- .../taiga/houses/taiga_large_farm_1.json | 29 +- .../taiga/houses/taiga_large_farm_2.json | 29 +- .../village/taiga/houses/taiga_library_1.json | 29 +- .../taiga/houses/taiga_masons_house_1.json | 29 +- .../taiga/houses/taiga_medium_house_1.json | 31 +- .../taiga/houses/taiga_medium_house_2.json | 31 +- .../taiga/houses/taiga_medium_house_3.json | 31 +- .../taiga/houses/taiga_medium_house_4.json | 31 +- .../taiga/houses/taiga_shepherds_house_1.json | 29 +- .../taiga/houses/taiga_small_farm_1.json | 29 +- .../taiga/houses/taiga_small_house_1.json | 30 +- .../taiga/houses/taiga_small_house_2.json | 30 +- .../taiga/houses/taiga_small_house_3.json | 30 +- .../taiga/houses/taiga_small_house_4.json | 30 +- .../taiga/houses/taiga_small_house_5.json | 30 +- .../village/taiga/houses/taiga_tannery_1.json | 29 +- .../village/taiga/houses/taiga_temple_1.json | 29 +- .../taiga/houses/taiga_tool_smith_1.json | 29 +- .../taiga/houses/taiga_weaponsmith_1.json | 29 +- .../taiga/houses/taiga_weaponsmith_2.json | 29 +- .../village/taiga/streets/corner_01.json | 1 - .../village/taiga/streets/corner_02.json | 1 - .../village/taiga/streets/corner_03.json | 1 - .../village/taiga/streets/straight_01.json | 1 - .../village/taiga/streets/straight_02.json | 1 - .../village/taiga/streets/straight_03.json | 1 - .../village/taiga/streets/straight_04.json | 1 - .../village/taiga/streets/straight_05.json | 1 - .../village/taiga/streets/straight_06.json | 1 - .../village/taiga/streets/turn_01.json | 1 - .../village/taiga/taiga_decoration_2.json | 144 +++---- .../town_centers/taiga_meeting_point_1.json | 3 - .../town_centers/taiga_meeting_point_2.json | 3 - .../village/taiga/villagers/unemployed.json | 1 - jigsaw-structures/igloo.json | 1 - jigsaw-structures/mush-huts.json | 4 +- jigsaw-structures/stronghold.json | 4 +- jigsaw-structures/village-jap.json | 1 - jigsaw-structures/village-savanna.json | 1 - jigsaw-structures/village-snowy.json | 1 - jigsaw-structures/village-temperate.json | 1 - jigsaw-structures/village-tundra.json | 1 - markers/villager.json | 6 +- 237 files changed, 2008 insertions(+), 3164 deletions(-) diff --git a/biomes/carving/deep.json b/biomes/carving/deep.json index 894ff137..c67dabfa 100644 --- a/biomes/carving/deep.json +++ b/biomes/carving/deep.json @@ -15,12 +15,8 @@ "maxHeight": 2, "minHeight": 2, "palette": [ - { - "block": "minecraft:stone" - }, - { - "block": "minecraft:andesite" - } + {"block": "minecraft:stone"}, + {"block": "minecraft:andesite"} ] }], "caveCeilingLayers": [{ @@ -28,12 +24,8 @@ "maxHeight": 2, "minHeight": 2, "palette": [ - { - "block": "minecraft:stone" - }, - { - "block": "minecraft:andesite" - } + {"block": "minecraft:stone"}, + {"block": "minecraft:andesite"} ] }] } diff --git a/biomes/carving/deepravine.json b/biomes/carving/deepravine.json index 3a359bc3..ab9a029e 100644 --- a/biomes/carving/deepravine.json +++ b/biomes/carving/deepravine.json @@ -58,9 +58,7 @@ "stackMax": 70, "absoluteMaxStack": 10, "heightVariance": {"style": "STATIC"}, - "palette": [{ - "block": "minecraft:stone" - }] + "palette": [{"block": "minecraft:stone"}] } ] } diff --git a/biomes/carving/drip-lite.json b/biomes/carving/drip-lite.json index 65daf0d0..3e98fb4e 100644 --- a/biomes/carving/drip-lite.json +++ b/biomes/carving/drip-lite.json @@ -10,10 +10,16 @@ "style": {"style": "IRIS"}, "maxHeight": 2, "minHeight": 2, - "palette": [{"block": "minecraft:dripstone_block", - "weight": 15}, - {"block": "minecraft:shroomlight", - "weight": 1}] + "palette": [ + { + "block": "minecraft:dripstone_block", + "weight": 15 + }, + { + "block": "minecraft:shroomlight", + "weight": 1 + } + ] }], "decorators": [ { diff --git a/biomes/carving/drip.json b/biomes/carving/drip.json index 10f5e44e..f4d8a45d 100644 --- a/biomes/carving/drip.json +++ b/biomes/carving/drip.json @@ -28,7 +28,16 @@ "maxHeight": 2, "style": {"style": "STATIC"}, "minHeight": 2, - "palette": [{"block": "minecraft:dripstone_block", "weight": 20}, {"block": "minecraft:shroomlight", "weight": 1}] + "palette": [ + { + "block": "minecraft:dripstone_block", + "weight": 20 + }, + { + "block": "minecraft:shroomlight", + "weight": 1 + } + ] }], "decorators": [ { diff --git a/biomes/carving/jungle.json b/biomes/carving/jungle.json index 254f49de..6e25ccfe 100644 --- a/biomes/carving/jungle.json +++ b/biomes/carving/jungle.json @@ -24,7 +24,7 @@ }], "decorators": [ { - "chance": 0.0005, + "chance": 5.0E-4, "scaleStack": true, "stackMin": 1, "stackMax": 5, @@ -46,9 +46,18 @@ "chance": 0.4, "style": {"style": "STATIC"}, "palette": [ - {"block": "minecraft:jungle_sapling","weight": 10}, - {"block": "minecraft:tall_grass","weight": 10}, - {"block": "minecraft:fern","weight": 10}, + { + "block": "minecraft:jungle_sapling", + "weight": 10 + }, + { + "block": "minecraft:tall_grass", + "weight": 10 + }, + { + "block": "minecraft:fern", + "weight": 10 + }, { "block": "minecraft:grass", "weight": 100 diff --git a/biomes/carving/red-sandstone.json b/biomes/carving/red-sandstone.json index c8e130b4..65898482 100644 --- a/biomes/carving/red-sandstone.json +++ b/biomes/carving/red-sandstone.json @@ -1,26 +1,20 @@ { "name": "Red Sandstone Cavern", - "wall": {"palette": [ - {"block": "minecraft:red_sandstone"} - ]}, + "wall": {"palette": [{"block": "minecraft:red_sandstone"}]}, "layers": [{ "maxHeight": 2, "minHeight": 2, - "palette": [ - { - "block": "minecraft:smooth_red_sandstone", - "weight": 8 - } - ] + "palette": [{ + "block": "minecraft:smooth_red_sandstone", + "weight": 8 + }] }], "caveCeilingLayers": [{ "maxHeight": 2, "minHeight": 2, - "palette": [ - { - "block": "minecraft:smooth_red_sandstone", - "weight": 8 - } - ] + "palette": [{ + "block": "minecraft:smooth_red_sandstone", + "weight": 8 + }] }] } diff --git a/biomes/carving/sandstone.json b/biomes/carving/sandstone.json index d57e1b72..9e611467 100644 --- a/biomes/carving/sandstone.json +++ b/biomes/carving/sandstone.json @@ -2,28 +2,22 @@ "name": "Red Sandstone Cavern", "wall": { "style": {"style": "VASCULAR"}, - "palette": [ - {"block": "minecraft:sandstone"} - ] + "palette": [{"block": "minecraft:sandstone"}] }, "layers": [{ "maxHeight": 2, "minHeight": 2, - "palette": [ - { - "block": "minecraft:smooth_sandstone", - "weight": 8 - } - ] + "palette": [{ + "block": "minecraft:smooth_sandstone", + "weight": 8 + }] }], "caveCeilingLayers": [{ "maxHeight": 2, "minHeight": 2, - "palette": [ - { - "block": "minecraft:smooth_sandstone", - "weight": 8 - } - ] + "palette": [{ + "block": "minecraft:smooth_sandstone", + "weight": 8 + }] }] } diff --git a/dimensions/overworld.json b/dimensions/overworld.json index b7c20a2e..8c37202b 100644 --- a/dimensions/overworld.json +++ b/dimensions/overworld.json @@ -34,29 +34,29 @@ "frozen", "tropical", "temperate" - ], - "carving": { - "caves": [{ - "breakSurface": true, - "cave": "deep/main", - "rarity": 28, - "caveStartHeight": { - "max": 35, - "min": 12, - "style": {"style": "STATIC"} + "carving": {"caves": [ + { + "breakSurface": true, + "cave": "deep/main", + "rarity": 28, + "caveStartHeight": { + "max": 35, + "min": 12, + "style": {"style": "STATIC"} + } + }, + { + "breakSurface": false, + "cave": "deep/elongated", + "rarity": 27, + "caveStartHeight": { + "max": 45, + "min": 3, + "style": {"style": "STATIC"} + } } - }, - { - "breakSurface": false, - "cave": "deep/elongated", - "rarity": 27, - "caveStartHeight": { - "max": 45, - "min": 3, - "style": {"style": "STATIC"} - } - }]}, + ]}, "islandBiomeChanceStyle": { "style": "NOWHERE_CELLULAR", "axialFracturing": true, diff --git a/jigsaw-pieces/mushhut/hut/hut1.json b/jigsaw-pieces/mushhut/hut/hut1.json index d922fb8c..4aac4391 100644 --- a/jigsaw-pieces/mushhut/hut/hut1.json +++ b/jigsaw-pieces/mushhut/hut/hut1.json @@ -2,7 +2,6 @@ "connectors": [{ "targetName": "*", "innerConnector": true, - "entityCount": 1, "rotateConnector": false, "name": "", diff --git a/jigsaw-pieces/mushhut/hut/hut2.json b/jigsaw-pieces/mushhut/hut/hut2.json index 1af810e8..ad405667 100644 --- a/jigsaw-pieces/mushhut/hut/hut2.json +++ b/jigsaw-pieces/mushhut/hut/hut2.json @@ -2,7 +2,6 @@ "connectors": [{ "targetName": "*", "innerConnector": true, - "entityCount": 1, "rotateConnector": false, "name": "", diff --git a/jigsaw-pieces/mushhut/hut/hut3.json b/jigsaw-pieces/mushhut/hut/hut3.json index adf29d3a..11c31a69 100644 --- a/jigsaw-pieces/mushhut/hut/hut3.json +++ b/jigsaw-pieces/mushhut/hut/hut3.json @@ -2,7 +2,6 @@ "connectors": [{ "targetName": "*", "innerConnector": true, - "entityCount": 1, "rotateConnector": false, "name": "", diff --git a/jigsaw-pieces/mushhut/hut/hut4.json b/jigsaw-pieces/mushhut/hut/hut4.json index fcfdb3b2..72cbec61 100644 --- a/jigsaw-pieces/mushhut/hut/hut4.json +++ b/jigsaw-pieces/mushhut/hut/hut4.json @@ -2,7 +2,6 @@ "connectors": [{ "targetName": "*", "innerConnector": true, - "entityCount": 1, "rotateConnector": false, "name": "", diff --git a/jigsaw-pieces/mushhut/hut/hut5.json b/jigsaw-pieces/mushhut/hut/hut5.json index 3069bb5b..d6e972cc 100644 --- a/jigsaw-pieces/mushhut/hut/hut5.json +++ b/jigsaw-pieces/mushhut/hut/hut5.json @@ -2,7 +2,6 @@ "connectors": [{ "targetName": "*", "innerConnector": true, - "entityCount": 1, "rotateConnector": false, "name": "", diff --git a/jigsaw-pieces/mushhut/hut/hut6.json b/jigsaw-pieces/mushhut/hut/hut6.json index 17b56f3a..345de112 100644 --- a/jigsaw-pieces/mushhut/hut/hut6.json +++ b/jigsaw-pieces/mushhut/hut/hut6.json @@ -2,7 +2,6 @@ "connectors": [{ "targetName": "*", "innerConnector": true, - "entityCount": 1, "rotateConnector": false, "name": "", diff --git a/jigsaw-pieces/mushhut/hut/hut7.json b/jigsaw-pieces/mushhut/hut/hut7.json index 490ae447..fef7e974 100644 --- a/jigsaw-pieces/mushhut/hut/hut7.json +++ b/jigsaw-pieces/mushhut/hut/hut7.json @@ -2,7 +2,6 @@ "connectors": [{ "targetName": "*", "innerConnector": true, - "entityCount": 1, "rotateConnector": false, "name": "", diff --git a/jigsaw-pieces/pillager_outpost/pillager.json b/jigsaw-pieces/pillager_outpost/pillager.json index 6bc07e33..f71bcb8b 100644 --- a/jigsaw-pieces/pillager_outpost/pillager.json +++ b/jigsaw-pieces/pillager_outpost/pillager.json @@ -8,7 +8,6 @@ }, "direction": "DOWN_NEGATIVE_Y", "entityCount": 50, - "rotateConnector": false, "innerConnector": true }], diff --git a/jigsaw-pieces/pillager_outpost/regular/feature_cage1.json b/jigsaw-pieces/pillager_outpost/regular/feature_cage1.json index 17b21480..a793bd59 100644 --- a/jigsaw-pieces/pillager_outpost/regular/feature_cage1.json +++ b/jigsaw-pieces/pillager_outpost/regular/feature_cage1.json @@ -67,7 +67,6 @@ "rotateConnector": false, "innerConnector": false, "pools": [], - "keepEntity": false, "entityCount": 1, "position": { diff --git a/jigsaw-pieces/pillager_outpost/regular/feature_cage2.json b/jigsaw-pieces/pillager_outpost/regular/feature_cage2.json index 9b959163..878e1071 100644 --- a/jigsaw-pieces/pillager_outpost/regular/feature_cage2.json +++ b/jigsaw-pieces/pillager_outpost/regular/feature_cage2.json @@ -61,7 +61,6 @@ "innerConnector": false, "entityCount": 1, "rotateConnector": false, - "name": "", "pools": [], "position": { diff --git a/jigsaw-pieces/pillager_outpost/watchtower.json b/jigsaw-pieces/pillager_outpost/watchtower.json index 1d3685e4..fa8788eb 100644 --- a/jigsaw-pieces/pillager_outpost/watchtower.json +++ b/jigsaw-pieces/pillager_outpost/watchtower.json @@ -115,7 +115,6 @@ { "targetName": "pillager_outpost/pillager", "innerConnector": true, - "entityCount": 1, "rotateConnector": false, "name": "", @@ -130,7 +129,6 @@ { "targetName": "pillager_outpost/pillager", "innerConnector": true, - "entityCount": 1, "rotateConnector": false, "name": "", @@ -145,7 +143,6 @@ { "targetName": "pillager_outpost/pillager", "innerConnector": true, - "entityCount": 1, "rotateConnector": false, "name": "", @@ -160,7 +157,6 @@ { "targetName": "pillager_outpost/pillager", "innerConnector": true, - "entityCount": 1, "rotateConnector": false, "name": "", @@ -175,7 +171,6 @@ { "targetName": "pillager_outpost/pillager", "innerConnector": true, - "entityCount": 1, "rotateConnector": false, "name": "", @@ -190,7 +185,6 @@ { "targetName": "pillager_outpost/pillager", "innerConnector": true, - "entityCount": 1, "rotateConnector": false, "name": "", @@ -205,7 +199,6 @@ { "targetName": "pillager_outpost/pillager", "innerConnector": true, - "entityCount": 1, "rotateConnector": false, "name": "", @@ -220,7 +213,6 @@ { "targetName": "pillager_outpost/pillager", "innerConnector": true, - "entityCount": 1, "rotateConnector": false, "name": "", @@ -235,7 +227,6 @@ { "targetName": "pillager_outpost/pillager", "innerConnector": true, - "entityCount": 1, "rotateConnector": false, "name": "", @@ -250,7 +241,6 @@ { "targetName": "pillager_outpost/pillager", "innerConnector": true, - "entityCount": 1, "rotateConnector": false, "name": "", diff --git a/jigsaw-pieces/village/desert/houses/desert_medium_house_1.json b/jigsaw-pieces/village/desert/houses/desert_medium_house_1.json index c5a707f0..c9e0151f 100644 --- a/jigsaw-pieces/village/desert/houses/desert_medium_house_1.json +++ b/jigsaw-pieces/village/desert/houses/desert_medium_house_1.json @@ -6,7 +6,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": 0, "y": -3, @@ -20,7 +19,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": 0, "y": -3, diff --git a/jigsaw-pieces/village/desert/houses/desert_medium_house_2.json b/jigsaw-pieces/village/desert/houses/desert_medium_house_2.json index 7a63c6fa..96edf7d4 100644 --- a/jigsaw-pieces/village/desert/houses/desert_medium_house_2.json +++ b/jigsaw-pieces/village/desert/houses/desert_medium_house_2.json @@ -6,7 +6,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": -1, "y": -4, @@ -33,7 +32,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": 2, "y": -2, diff --git a/jigsaw-pieces/village/desert/houses/desert_small_house_1.json b/jigsaw-pieces/village/desert/houses/desert_small_house_1.json index 228c2e52..4628c1da 100644 --- a/jigsaw-pieces/village/desert/houses/desert_small_house_1.json +++ b/jigsaw-pieces/village/desert/houses/desert_small_house_1.json @@ -6,7 +6,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": 0, "y": -3, diff --git a/jigsaw-pieces/village/desert/houses/desert_small_house_2.json b/jigsaw-pieces/village/desert/houses/desert_small_house_2.json index d70a4d7f..eccf1b14 100644 --- a/jigsaw-pieces/village/desert/houses/desert_small_house_2.json +++ b/jigsaw-pieces/village/desert/houses/desert_small_house_2.json @@ -19,7 +19,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": -2, "y": -3, diff --git a/jigsaw-pieces/village/desert/houses/desert_small_house_3.json b/jigsaw-pieces/village/desert/houses/desert_small_house_3.json index 5f7b53a9..5fc72369 100644 --- a/jigsaw-pieces/village/desert/houses/desert_small_house_3.json +++ b/jigsaw-pieces/village/desert/houses/desert_small_house_3.json @@ -6,7 +6,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": 0, "y": -2, diff --git a/jigsaw-pieces/village/desert/houses/desert_small_house_4.json b/jigsaw-pieces/village/desert/houses/desert_small_house_4.json index df19d9bc..025477dc 100644 --- a/jigsaw-pieces/village/desert/houses/desert_small_house_4.json +++ b/jigsaw-pieces/village/desert/houses/desert_small_house_4.json @@ -6,7 +6,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": 1, "y": -2, diff --git a/jigsaw-pieces/village/desert/houses/desert_small_house_5.json b/jigsaw-pieces/village/desert/houses/desert_small_house_5.json index ebf59231..1a4ecf2b 100644 --- a/jigsaw-pieces/village/desert/houses/desert_small_house_5.json +++ b/jigsaw-pieces/village/desert/houses/desert_small_house_5.json @@ -6,7 +6,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": 1, "y": -3, diff --git a/jigsaw-pieces/village/desert/houses/desert_small_house_6.json b/jigsaw-pieces/village/desert/houses/desert_small_house_6.json index e581357e..57f730ea 100644 --- a/jigsaw-pieces/village/desert/houses/desert_small_house_6.json +++ b/jigsaw-pieces/village/desert/houses/desert_small_house_6.json @@ -6,7 +6,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": -1, "y": -9, diff --git a/jigsaw-pieces/village/desert/houses/desert_small_house_7.json b/jigsaw-pieces/village/desert/houses/desert_small_house_7.json index 85531f71..25338ff6 100644 --- a/jigsaw-pieces/village/desert/houses/desert_small_house_7.json +++ b/jigsaw-pieces/village/desert/houses/desert_small_house_7.json @@ -6,7 +6,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": 1, "y": -2, diff --git a/jigsaw-pieces/village/desert/houses/desert_small_house_8.json b/jigsaw-pieces/village/desert/houses/desert_small_house_8.json index dba79c2d..3bd0429c 100644 --- a/jigsaw-pieces/village/desert/houses/desert_small_house_8.json +++ b/jigsaw-pieces/village/desert/houses/desert_small_house_8.json @@ -6,7 +6,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": 0, "y": -2, diff --git a/jigsaw-pieces/village/desert/streets/corner_01.json b/jigsaw-pieces/village/desert/streets/corner_01.json index 90b6eb06..470d70cd 100644 --- a/jigsaw-pieces/village/desert/streets/corner_01.json +++ b/jigsaw-pieces/village/desert/streets/corner_01.json @@ -3,7 +3,6 @@ { "targetName": "village/desert/villagers/unemployed", "entityCount": 3, - "innerConnector": true, "rotateConnector": false, "name": "villager", @@ -69,21 +68,15 @@ } ], "placementOptions": { - "markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:sand" - }, - { - "block": "minecraft:sandstone" - } - ], - "marker": "villager" - } - ], + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:sand"}, + {"block": "minecraft:sandstone"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/desert/streets/corner_02.json b/jigsaw-pieces/village/desert/streets/corner_02.json index 768031fd..a42871e8 100644 --- a/jigsaw-pieces/village/desert/streets/corner_02.json +++ b/jigsaw-pieces/village/desert/streets/corner_02.json @@ -3,7 +3,6 @@ { "targetName": "village/desert/villagers/unemployed", "entityCount": 3, - "innerConnector": true, "rotateConnector": false, "name": "villager", @@ -56,21 +55,15 @@ } ], "placementOptions": { - "markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:sand" - }, - { - "block": "minecraft:sandstone" - } - ], - "marker": "villager" - } - ], + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:sand"}, + {"block": "minecraft:sandstone"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/desert/streets/crossroad_01.json b/jigsaw-pieces/village/desert/streets/crossroad_01.json index b164f66b..8c5e49c8 100644 --- a/jigsaw-pieces/village/desert/streets/crossroad_01.json +++ b/jigsaw-pieces/village/desert/streets/crossroad_01.json @@ -3,7 +3,6 @@ { "targetName": "village/desert/villagers/unemployed", "entityCount": 3, - "innerConnector": true, "rotateConnector": false, "name": "villager", @@ -173,21 +172,15 @@ } ], "placementOptions": { - "markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:sand" - }, - { - "block": "minecraft:sandstone" - } - ], - "marker": "villager" - } - ], + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:sand"}, + {"block": "minecraft:sandstone"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/desert/streets/crossroad_02.json b/jigsaw-pieces/village/desert/streets/crossroad_02.json index baff61ea..bcaff21c 100644 --- a/jigsaw-pieces/village/desert/streets/crossroad_02.json +++ b/jigsaw-pieces/village/desert/streets/crossroad_02.json @@ -3,7 +3,6 @@ { "targetName": "village/desert/villagers/unemployed", "entityCount": 3, - "innerConnector": true, "rotateConnector": false, "name": "villager", @@ -108,21 +107,15 @@ } ], "placementOptions": { - "markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:sand" - }, - { - "block": "minecraft:sandstone" - } - ], - "marker": "villager" - } - ], + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:sand"}, + {"block": "minecraft:sandstone"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/desert/streets/crossroad_03.json b/jigsaw-pieces/village/desert/streets/crossroad_03.json index 425cabf3..ed2d77b6 100644 --- a/jigsaw-pieces/village/desert/streets/crossroad_03.json +++ b/jigsaw-pieces/village/desert/streets/crossroad_03.json @@ -3,7 +3,6 @@ { "targetName": "village/desert/villagers/unemployed", "entityCount": 3, - "innerConnector": true, "rotateConnector": false, "name": "villager", @@ -69,21 +68,15 @@ } ], "placementOptions": { - "markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:sand" - }, - { - "block": "minecraft:sandstone" - } - ], - "marker": "villager" - } - ], + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:sand"}, + {"block": "minecraft:sandstone"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/desert/streets/square_01.json b/jigsaw-pieces/village/desert/streets/square_01.json index 9f49036e..044810ab 100644 --- a/jigsaw-pieces/village/desert/streets/square_01.json +++ b/jigsaw-pieces/village/desert/streets/square_01.json @@ -262,21 +262,15 @@ } ], "placementOptions": { - "markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:sand" - }, - { - "block": "minecraft:sandstone" - } - ], - "marker": "villager" - } - ], + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:sand"}, + {"block": "minecraft:sandstone"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/desert/streets/square_02.json b/jigsaw-pieces/village/desert/streets/square_02.json index 8e54c42a..65438191 100644 --- a/jigsaw-pieces/village/desert/streets/square_02.json +++ b/jigsaw-pieces/village/desert/streets/square_02.json @@ -80,21 +80,15 @@ } ], "placementOptions": { - "markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:sand" - }, - { - "block": "minecraft:sandstone" - } - ], - "marker": "villager" - } - ], + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:sand"}, + {"block": "minecraft:sandstone"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/desert/streets/straight_01.json b/jigsaw-pieces/village/desert/streets/straight_01.json index c29c53f4..50b05b3e 100644 --- a/jigsaw-pieces/village/desert/streets/straight_01.json +++ b/jigsaw-pieces/village/desert/streets/straight_01.json @@ -3,7 +3,6 @@ { "targetName": "village/desert/villagers/unemployed", "entityCount": 3, - "innerConnector": true, "rotateConnector": false, "name": "villager", @@ -108,21 +107,15 @@ } ], "placementOptions": { - "markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:sand" - }, - { - "block": "minecraft:sandstone" - } - ], - "marker": "villager" - } - ], + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:sand"}, + {"block": "minecraft:sandstone"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/desert/streets/straight_02.json b/jigsaw-pieces/village/desert/streets/straight_02.json index d5742ef8..b4f5c262 100644 --- a/jigsaw-pieces/village/desert/streets/straight_02.json +++ b/jigsaw-pieces/village/desert/streets/straight_02.json @@ -3,7 +3,6 @@ { "targetName": "village/desert/villagers/unemployed", "entityCount": 3, - "innerConnector": true, "rotateConnector": false, "name": "villager", @@ -108,21 +107,15 @@ } ], "placementOptions": { - "markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:sand" - }, - { - "block": "minecraft:sandstone" - } - ], - "marker": "villager" - } - ], + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:sand"}, + {"block": "minecraft:sandstone"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/desert/streets/straight_03.json b/jigsaw-pieces/village/desert/streets/straight_03.json index 5309ac97..febc9539 100644 --- a/jigsaw-pieces/village/desert/streets/straight_03.json +++ b/jigsaw-pieces/village/desert/streets/straight_03.json @@ -3,7 +3,6 @@ { "targetName": "village/desert/villagers/unemployed", "entityCount": 3, - "innerConnector": true, "rotateConnector": false, "name": "villager", @@ -43,21 +42,15 @@ } ], "placementOptions": { - "markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:sand" - }, - { - "block": "minecraft:sandstone" - } - ], - "marker": "villager" - } - ], + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:sand"}, + {"block": "minecraft:sandstone"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/desert/streets/turn_01.json b/jigsaw-pieces/village/desert/streets/turn_01.json index e7ee8a20..3a3f8246 100644 --- a/jigsaw-pieces/village/desert/streets/turn_01.json +++ b/jigsaw-pieces/village/desert/streets/turn_01.json @@ -3,7 +3,6 @@ { "targetName": "village/desert/villagers/unemployed", "entityCount": 3, - "innerConnector": true, "rotateConnector": false, "name": "villager", @@ -56,21 +55,15 @@ } ], "placementOptions": { - "markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:sand" - }, - { - "block": "minecraft:sandstone" - } - ], - "marker": "villager" - } - ], + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:sand"}, + {"block": "minecraft:sandstone"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/desert/town_centers/desert_meeting_point_1.json b/jigsaw-pieces/village/desert/town_centers/desert_meeting_point_1.json index a7b575bd..be26335d 100644 --- a/jigsaw-pieces/village/desert/town_centers/desert_meeting_point_1.json +++ b/jigsaw-pieces/village/desert/town_centers/desert_meeting_point_1.json @@ -19,7 +19,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": 3, "y": -3, @@ -33,7 +32,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": 7, "y": -3, @@ -47,7 +45,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": 7, "y": -3, diff --git a/jigsaw-pieces/village/desert/town_centers/desert_meeting_point_2.json b/jigsaw-pieces/village/desert/town_centers/desert_meeting_point_2.json index a94152fb..be2d7b14 100644 --- a/jigsaw-pieces/village/desert/town_centers/desert_meeting_point_2.json +++ b/jigsaw-pieces/village/desert/town_centers/desert_meeting_point_2.json @@ -19,7 +19,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": -5, "y": -3, @@ -46,7 +45,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": -2, "y": -3, @@ -73,7 +71,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": 4, "y": -3, diff --git a/jigsaw-pieces/village/desert/town_centers/desert_meeting_point_3.json b/jigsaw-pieces/village/desert/town_centers/desert_meeting_point_3.json index 3dcea287..3d74ded3 100644 --- a/jigsaw-pieces/village/desert/town_centers/desert_meeting_point_3.json +++ b/jigsaw-pieces/village/desert/town_centers/desert_meeting_point_3.json @@ -32,7 +32,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": -4, "y": -3, @@ -59,7 +58,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": -1, "y": -3, @@ -73,7 +71,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": 1, "y": -3, diff --git a/jigsaw-pieces/village/desert/villagers/unemployed.json b/jigsaw-pieces/village/desert/villagers/unemployed.json index 31e27428..990d2f7c 100644 --- a/jigsaw-pieces/village/desert/villagers/unemployed.json +++ b/jigsaw-pieces/village/desert/villagers/unemployed.json @@ -10,7 +10,6 @@ "y": -1, "z": 0 }, - "entityPosition": { "x": 0, "y": 2, diff --git a/jigsaw-pieces/village/plains/houses/plains_accessory_1.json b/jigsaw-pieces/village/plains/houses/plains_accessory_1.json index ac0a913d..72cd146b 100644 --- a/jigsaw-pieces/village/plains/houses/plains_accessory_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_accessory_1.json @@ -13,21 +13,15 @@ "direction": "WEST_NEGATIVE_X" }], "placementOptions": { - "markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:oak_planks" - } - ], - "marker": "villager" - } - ], + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:oak_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_animal_pen_1.json b/jigsaw-pieces/village/plains/houses/plains_animal_pen_1.json index 45a8b85b..9131dac5 100644 --- a/jigsaw-pieces/village/plains/houses/plains_animal_pen_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_animal_pen_1.json @@ -5,7 +5,6 @@ "innerConnector": false, "rotateConnector": false, "name": "minecraft:bottom", - "position": { "x": 0, "y": -4, @@ -18,7 +17,6 @@ "innerConnector": false, "rotateConnector": false, "name": "minecraft:bottom", - "position": { "x": 1, "y": -4, @@ -41,21 +39,15 @@ } ], "placementOptions": { - "markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:oak_planks" - } - ], - "marker": "villager" - } - ], + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:oak_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_animal_pen_2.json b/jigsaw-pieces/village/plains/houses/plains_animal_pen_2.json index 53d0b0c3..82112ccc 100644 --- a/jigsaw-pieces/village/plains/houses/plains_animal_pen_2.json +++ b/jigsaw-pieces/village/plains/houses/plains_animal_pen_2.json @@ -5,7 +5,6 @@ "innerConnector": false, "rotateConnector": false, "name": "minecraft:bottom", - "position": { "x": -1, "y": -3, @@ -18,7 +17,6 @@ "innerConnector": false, "rotateConnector": false, "name": "minecraft:bottom", - "position": { "x": 1, "y": -3, @@ -54,21 +52,15 @@ } ], "placementOptions": { - "markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:oak_planks" - } - ], - "marker": "villager" - } - ], + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:oak_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_animal_pen_3.json b/jigsaw-pieces/village/plains/houses/plains_animal_pen_3.json index eea3f57e..31f019e6 100644 --- a/jigsaw-pieces/village/plains/houses/plains_animal_pen_3.json +++ b/jigsaw-pieces/village/plains/houses/plains_animal_pen_3.json @@ -31,7 +31,6 @@ "innerConnector": false, "rotateConnector": false, "name": "minecraft:bottom", - "position": { "x": -2, "y": -3, @@ -57,7 +56,6 @@ "innerConnector": false, "rotateConnector": false, "name": "minecraft:bottom", - "position": { "x": 0, "y": -3, @@ -83,7 +81,6 @@ "innerConnector": false, "rotateConnector": false, "name": "minecraft:bottom", - "position": { "x": 1, "y": -3, @@ -106,21 +103,15 @@ } ], "placementOptions": { - "markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:oak_planks" - } - ], - "marker": "villager" - } - ], + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:oak_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_armorer_house_1.json b/jigsaw-pieces/village/plains/houses/plains_armorer_house_1.json index 1737e43d..71767cec 100644 --- a/jigsaw-pieces/village/plains/houses/plains_armorer_house_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_armorer_house_1.json @@ -13,21 +13,15 @@ "direction": "WEST_NEGATIVE_X" }], "placementOptions": { - "markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:oak_planks" - } - ], - "marker": "villager" - } - ], + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:oak_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_big_house_1.json b/jigsaw-pieces/village/plains/houses/plains_big_house_1.json index 47c69521..61ffb9a5 100644 --- a/jigsaw-pieces/village/plains/houses/plains_big_house_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_big_house_1.json @@ -6,7 +6,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": 0, "y": -5, @@ -20,7 +19,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": 0, "y": -5, @@ -47,7 +45,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": 0, "y": -1, @@ -61,7 +58,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": 0, "y": -1, @@ -71,21 +67,15 @@ } ], "placementOptions": { - "markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:oak_planks" - } - ], - "marker": "villager" - } - ], + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:oak_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_butcher_shop_1.json b/jigsaw-pieces/village/plains/houses/plains_butcher_shop_1.json index 6622b1a8..fe4ac353 100644 --- a/jigsaw-pieces/village/plains/houses/plains_butcher_shop_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_butcher_shop_1.json @@ -28,21 +28,15 @@ } ], "placementOptions": { - "markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:oak_planks" - } - ], - "marker": "villager" - } - ], + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:oak_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_butcher_shop_2.json b/jigsaw-pieces/village/plains/houses/plains_butcher_shop_2.json index f5897f3a..0bac5363 100644 --- a/jigsaw-pieces/village/plains/houses/plains_butcher_shop_2.json +++ b/jigsaw-pieces/village/plains/houses/plains_butcher_shop_2.json @@ -80,21 +80,15 @@ } ], "placementOptions": { - "markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:oak_planks" - } - ], - "marker": "villager" - } - ], + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:oak_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_cartographer_1.json b/jigsaw-pieces/village/plains/houses/plains_cartographer_1.json index b9ec3e22..4fb3f03d 100644 --- a/jigsaw-pieces/village/plains/houses/plains_cartographer_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_cartographer_1.json @@ -13,21 +13,15 @@ "direction": "WEST_NEGATIVE_X" }], "placementOptions": { - "markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:oak_planks" - } - ], - "marker": "villager" - } - ], + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:oak_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_fisher_cottage_1.json b/jigsaw-pieces/village/plains/houses/plains_fisher_cottage_1.json index a2756806..dced4f5b 100644 --- a/jigsaw-pieces/village/plains/houses/plains_fisher_cottage_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_fisher_cottage_1.json @@ -13,21 +13,15 @@ "direction": "WEST_NEGATIVE_X" }], "placementOptions": { - "markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:oak_planks" - } - ], - "marker": "villager" - } - ], + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:oak_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_fletcher_house_1.json b/jigsaw-pieces/village/plains/houses/plains_fletcher_house_1.json index 2a6c2e00..8feb7b25 100644 --- a/jigsaw-pieces/village/plains/houses/plains_fletcher_house_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_fletcher_house_1.json @@ -28,21 +28,15 @@ } ], "placementOptions": { - "markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:oak_planks" - } - ], - "marker": "villager" - } - ], + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:oak_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_large_farm_1.json b/jigsaw-pieces/village/plains/houses/plains_large_farm_1.json index 0fea92eb..06b34f5f 100644 --- a/jigsaw-pieces/village/plains/houses/plains_large_farm_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_large_farm_1.json @@ -13,21 +13,15 @@ "direction": "WEST_NEGATIVE_X" }], "placementOptions": { - "markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:oak_planks" - } - ], - "marker": "villager" - } - ], + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:oak_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_library_1.json b/jigsaw-pieces/village/plains/houses/plains_library_1.json index 96f01fdf..897702ba 100644 --- a/jigsaw-pieces/village/plains/houses/plains_library_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_library_1.json @@ -13,21 +13,15 @@ "direction": "WEST_NEGATIVE_X" }], "placementOptions": { - "markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:oak_planks" - } - ], - "marker": "villager" - } - ], + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:oak_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_library_2.json b/jigsaw-pieces/village/plains/houses/plains_library_2.json index 00a83e21..a73b0b09 100644 --- a/jigsaw-pieces/village/plains/houses/plains_library_2.json +++ b/jigsaw-pieces/village/plains/houses/plains_library_2.json @@ -13,21 +13,15 @@ "direction": "WEST_NEGATIVE_X" }], "placementOptions": { - "markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:oak_planks" - } - ], - "marker": "villager" - } - ], + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:oak_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_masons_house_1.json b/jigsaw-pieces/village/plains/houses/plains_masons_house_1.json index dd8d81cd..144d1a2e 100644 --- a/jigsaw-pieces/village/plains/houses/plains_masons_house_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_masons_house_1.json @@ -13,21 +13,15 @@ "direction": "WEST_NEGATIVE_X" }], "placementOptions": { - "markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:oak_planks" - } - ], - "marker": "villager" - } - ], + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:oak_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_medium_house_1.json b/jigsaw-pieces/village/plains/houses/plains_medium_house_1.json index b192d47e..a396116f 100644 --- a/jigsaw-pieces/village/plains/houses/plains_medium_house_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_medium_house_1.json @@ -32,7 +32,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": -2, "y": -3, @@ -46,7 +45,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": 0, "y": -3, @@ -56,21 +54,15 @@ } ], "placementOptions": { - "markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:oak_planks" - } - ], - "marker": "villager" - } - ], + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:oak_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_medium_house_2.json b/jigsaw-pieces/village/plains/houses/plains_medium_house_2.json index b45f6e33..ebff153f 100644 --- a/jigsaw-pieces/village/plains/houses/plains_medium_house_2.json +++ b/jigsaw-pieces/village/plains/houses/plains_medium_house_2.json @@ -19,7 +19,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": 0, "y": -3, @@ -33,7 +32,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": 0, "y": -3, @@ -42,21 +40,16 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:oak_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:oak_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_meeting_point_4.json b/jigsaw-pieces/village/plains/houses/plains_meeting_point_4.json index 522cd774..19c313de 100644 --- a/jigsaw-pieces/village/plains/houses/plains_meeting_point_4.json +++ b/jigsaw-pieces/village/plains/houses/plains_meeting_point_4.json @@ -66,21 +66,16 @@ "direction": "WEST_NEGATIVE_X" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:oak_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:oak_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_meeting_point_5.json b/jigsaw-pieces/village/plains/houses/plains_meeting_point_5.json index 3e21b15b..e13a71b5 100644 --- a/jigsaw-pieces/village/plains/houses/plains_meeting_point_5.json +++ b/jigsaw-pieces/village/plains/houses/plains_meeting_point_5.json @@ -53,21 +53,16 @@ "direction": "WEST_NEGATIVE_X" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:oak_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:oak_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_shepherds_house_1.json b/jigsaw-pieces/village/plains/houses/plains_shepherds_house_1.json index 15da4a9f..a7ef2807 100644 --- a/jigsaw-pieces/village/plains/houses/plains_shepherds_house_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_shepherds_house_1.json @@ -53,21 +53,16 @@ "direction": "WEST_NEGATIVE_X" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:oak_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:oak_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_small_farm_1.json b/jigsaw-pieces/village/plains/houses/plains_small_farm_1.json index d5234be2..ace59fbb 100644 --- a/jigsaw-pieces/village/plains/houses/plains_small_farm_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_small_farm_1.json @@ -12,21 +12,16 @@ }, "direction": "WEST_NEGATIVE_X" }], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:oak_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:oak_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_small_house_1.json b/jigsaw-pieces/village/plains/houses/plains_small_house_1.json index 4fd91ee1..52e253a1 100644 --- a/jigsaw-pieces/village/plains/houses/plains_small_house_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_small_house_1.json @@ -19,7 +19,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": 0, "y": -3, @@ -28,21 +27,16 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:oak_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:oak_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_small_house_2.json b/jigsaw-pieces/village/plains/houses/plains_small_house_2.json index 770ed8a4..653dcaa2 100644 --- a/jigsaw-pieces/village/plains/houses/plains_small_house_2.json +++ b/jigsaw-pieces/village/plains/houses/plains_small_house_2.json @@ -19,7 +19,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": 0, "y": -3, @@ -28,21 +27,16 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:oak_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:oak_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_small_house_3.json b/jigsaw-pieces/village/plains/houses/plains_small_house_3.json index f14bc777..ffbf65ee 100644 --- a/jigsaw-pieces/village/plains/houses/plains_small_house_3.json +++ b/jigsaw-pieces/village/plains/houses/plains_small_house_3.json @@ -19,7 +19,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": 0, "y": -3, @@ -28,21 +27,16 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:oak_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:oak_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_small_house_4.json b/jigsaw-pieces/village/plains/houses/plains_small_house_4.json index b66cd07e..b314491f 100644 --- a/jigsaw-pieces/village/plains/houses/plains_small_house_4.json +++ b/jigsaw-pieces/village/plains/houses/plains_small_house_4.json @@ -19,7 +19,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": 0, "y": -3, @@ -28,21 +27,16 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:oak_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:oak_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_small_house_5.json b/jigsaw-pieces/village/plains/houses/plains_small_house_5.json index 82b99684..39980d9e 100644 --- a/jigsaw-pieces/village/plains/houses/plains_small_house_5.json +++ b/jigsaw-pieces/village/plains/houses/plains_small_house_5.json @@ -58,7 +58,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": -1, "y": -4, @@ -67,21 +66,16 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:oak_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:oak_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_small_house_6.json b/jigsaw-pieces/village/plains/houses/plains_small_house_6.json index 7ddd3b73..744c055a 100644 --- a/jigsaw-pieces/village/plains/houses/plains_small_house_6.json +++ b/jigsaw-pieces/village/plains/houses/plains_small_house_6.json @@ -19,7 +19,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": 0, "y": -3, @@ -28,21 +27,16 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:oak_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:oak_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_small_house_7.json b/jigsaw-pieces/village/plains/houses/plains_small_house_7.json index 8200247e..6917dee3 100644 --- a/jigsaw-pieces/village/plains/houses/plains_small_house_7.json +++ b/jigsaw-pieces/village/plains/houses/plains_small_house_7.json @@ -19,7 +19,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": 0, "y": -3, @@ -28,21 +27,16 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:oak_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:oak_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_small_house_8.json b/jigsaw-pieces/village/plains/houses/plains_small_house_8.json index 3115bf08..fe5e926d 100644 --- a/jigsaw-pieces/village/plains/houses/plains_small_house_8.json +++ b/jigsaw-pieces/village/plains/houses/plains_small_house_8.json @@ -19,7 +19,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": -1, "y": -2, @@ -28,21 +27,16 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:oak_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:oak_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_stable_1.json b/jigsaw-pieces/village/plains/houses/plains_stable_1.json index 8a8fb566..389a8344 100644 --- a/jigsaw-pieces/village/plains/houses/plains_stable_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_stable_1.json @@ -105,21 +105,16 @@ "direction": "WEST_NEGATIVE_X" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:oak_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:oak_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_stable_2.json b/jigsaw-pieces/village/plains/houses/plains_stable_2.json index ff9f97d2..6cd68cf7 100644 --- a/jigsaw-pieces/village/plains/houses/plains_stable_2.json +++ b/jigsaw-pieces/village/plains/houses/plains_stable_2.json @@ -66,21 +66,16 @@ "direction": "WEST_NEGATIVE_X" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:oak_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:oak_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_tannery_1.json b/jigsaw-pieces/village/plains/houses/plains_tannery_1.json index 98230b4b..f0986513 100644 --- a/jigsaw-pieces/village/plains/houses/plains_tannery_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_tannery_1.json @@ -12,21 +12,16 @@ }, "direction": "WEST_NEGATIVE_X" }], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:oak_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:oak_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_temple_3.json b/jigsaw-pieces/village/plains/houses/plains_temple_3.json index f1d7e3a2..822dc881 100644 --- a/jigsaw-pieces/village/plains/houses/plains_temple_3.json +++ b/jigsaw-pieces/village/plains/houses/plains_temple_3.json @@ -12,21 +12,16 @@ }, "direction": "WEST_NEGATIVE_X" }], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:oak_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:oak_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_temple_4.json b/jigsaw-pieces/village/plains/houses/plains_temple_4.json index 55596c7a..73390b32 100644 --- a/jigsaw-pieces/village/plains/houses/plains_temple_4.json +++ b/jigsaw-pieces/village/plains/houses/plains_temple_4.json @@ -12,21 +12,16 @@ }, "direction": "WEST_NEGATIVE_X" }], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:oak_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:oak_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_tool_smith_1.json b/jigsaw-pieces/village/plains/houses/plains_tool_smith_1.json index 4d7b311d..9167c76d 100644 --- a/jigsaw-pieces/village/plains/houses/plains_tool_smith_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_tool_smith_1.json @@ -12,21 +12,16 @@ }, "direction": "WEST_NEGATIVE_X" }], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:oak_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:oak_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_weaponsmith_1.json b/jigsaw-pieces/village/plains/houses/plains_weaponsmith_1.json index 0a20ab40..0fc963a3 100644 --- a/jigsaw-pieces/village/plains/houses/plains_weaponsmith_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_weaponsmith_1.json @@ -12,21 +12,16 @@ }, "direction": "WEST_NEGATIVE_X" }], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:oak_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:oak_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/streets/corner_01.json b/jigsaw-pieces/village/plains/streets/corner_01.json index ffd15f93..cd281bdb 100644 --- a/jigsaw-pieces/village/plains/streets/corner_01.json +++ b/jigsaw-pieces/village/plains/streets/corner_01.json @@ -1,182 +1,181 @@ { - "connectors": [ - { - "targetName": "village/plains/villagers/unemployed", - "entityCount": 3, - - "innerConnector": true, - "rotateConnector": false, - "name": "villager", - "pools": ["village/desert/decor"], - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "direction": "UP_POSITIVE_Y" + "connectors": [ + { + "targetName": "village/plains/villagers/unemployed", + "entityCount": 3, + "innerConnector": true, + "rotateConnector": false, + "name": "villager", + "pools": ["village/desert/decor"], + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "direction": "UP_POSITIVE_Y" + }, + { + "targetName": "minecraft:bottom", + "innerConnector": false, + "rotateConnector": false, + "name": "minecraft:bottom", + "pools": ["village/plains/decor"], + "position": { + "x": -5, + "y": -1, + "z": -4 + }, + "direction": "NORTH_NEGATIVE_Z" + }, + { + "targetName": "minecraft:bottom", + "innerConnector": false, + "rotateConnector": false, + "name": "minecraft:bottom", + "pools": ["village/plains/decor"], + "position": { + "x": -5, + "y": -1, + "z": 5 + }, + "direction": "NORTH_NEGATIVE_Z" + }, + { + "targetName": "minecraft:bottom", + "innerConnector": false, + "rotateConnector": false, + "name": "minecraft:bottom", + "pools": ["village/plains/decor"], + "position": { + "x": 0, + "y": -1, + "z": 4 + }, + "direction": "NORTH_NEGATIVE_Z" + }, + { + "targetName": "minecraft:bottom", + "innerConnector": false, + "rotateConnector": false, + "name": "minecraft:bottom", + "pools": ["village/plains/decor"], + "position": { + "x": 2, + "y": -1, + "z": -5 + }, + "direction": "NORTH_NEGATIVE_Z" + }, + { + "targetName": "minecraft:bottom", + "innerConnector": false, + "rotateConnector": false, + "name": "minecraft:bottom", + "pools": ["village/plains/decor"], + "position": { + "x": 5, + "y": -1, + "z": 1 + }, + "direction": "NORTH_NEGATIVE_Z" + }, + { + "targetName": "minecraft:street", + "innerConnector": false, + "rotateConnector": false, + "name": "minecraft:street", + "pools": ["village/plains/streets"], + "position": { + "x": -8, + "y": 0, + "z": 0 + }, + "direction": "WEST_NEGATIVE_X" + }, + { + "targetName": "minecraft:street", + "innerConnector": false, + "rotateConnector": false, + "name": "minecraft:street", + "pools": ["village/plains/streets"], + "position": { + "x": -1, + "y": 0, + "z": -8 + }, + "direction": "NORTH_NEGATIVE_Z" + }, + { + "targetName": "minecraft:building_entrance", + "innerConnector": true, + "rotateConnector": false, + "name": "minecraft:building_entrance", + "pools": ["village/plains/houses"], + "position": { + "x": 0, + "y": 0, + "z": -2 + }, + "direction": "EAST_POSITIVE_X" + } + ], + "placementOptions": { + "overStilt": 0, + "chance": 1, + "meld": false, + "density": 1, + "edit": [], + "bottom": false, + "translateCenter": false, + "rotation": { + "yAxis": { + "min": 0, + "max": 0, + "interval": 90, + "enabled": true + }, + "xAxis": { + "min": 0, + "max": 0, + "interval": 0, + "enabled": false + }, + "zAxis": { + "min": 0, + "max": 0, + "interval": 0, + "enabled": false + }, + "enabled": true + }, + "boreExtendMinY": -1, + "smartBore": false, + "waterloggable": false, + "bore": false, + "translate": { + "yRandom": 0, + "x": 0, + "y": 0, + "z": 0 + }, + "mode": "PAINT", + "carvingSupport": "SURFACE_ONLY", + "snow": 0, + "underwater": false, + "place": [], + "boreExtendMaxY": 0, + "onwater": false, + "clamp": { + "minimumHeight": 0, + "maximumHeight": 255 + }, + "warp": { + "multiplier": 1, + "style": "FLAT", + "zoom": 1, + "maxFractureAccuracy": false, + "exponent": 1 + } }, - { - "targetName": "minecraft:bottom", - "innerConnector": false, - "rotateConnector": false, - "name": "minecraft:bottom", - "pools": ["village/plains/decor"], - "position": { - "x": -5, - "y": -1, - "z": -4 - }, - "direction": "NORTH_NEGATIVE_Z" - }, - { - "targetName": "minecraft:bottom", - "innerConnector": false, - "rotateConnector": false, - "name": "minecraft:bottom", - "pools": ["village/plains/decor"], - "position": { - "x": -5, - "y": -1, - "z": 5 - }, - "direction": "NORTH_NEGATIVE_Z" - }, - { - "targetName": "minecraft:bottom", - "innerConnector": false, - "rotateConnector": false, - "name": "minecraft:bottom", - "pools": ["village/plains/decor"], - "position": { - "x": 0, - "y": -1, - "z": 4 - }, - "direction": "NORTH_NEGATIVE_Z" - }, - { - "targetName": "minecraft:bottom", - "innerConnector": false, - "rotateConnector": false, - "name": "minecraft:bottom", - "pools": ["village/plains/decor"], - "position": { - "x": 2, - "y": -1, - "z": -5 - }, - "direction": "NORTH_NEGATIVE_Z" - }, - { - "targetName": "minecraft:bottom", - "innerConnector": false, - "rotateConnector": false, - "name": "minecraft:bottom", - "pools": ["village/plains/decor"], - "position": { - "x": 5, - "y": -1, - "z": 1 - }, - "direction": "NORTH_NEGATIVE_Z" - }, - { - "targetName": "minecraft:street", - "innerConnector": false, - "rotateConnector": false, - "name": "minecraft:street", - "pools": ["village/plains/streets"], - "position": { - "x": -8, - "y": 0, - "z": 0 - }, - "direction": "WEST_NEGATIVE_X" - }, - { - "targetName": "minecraft:street", - "innerConnector": false, - "rotateConnector": false, - "name": "minecraft:street", - "pools": ["village/plains/streets"], - "position": { - "x": -1, - "y": 0, - "z": -8 - }, - "direction": "NORTH_NEGATIVE_Z" - }, - { - "targetName": "minecraft:building_entrance", - "innerConnector": true, - "rotateConnector": false, - "name": "minecraft:building_entrance", - "pools": ["village/plains/houses"], - "position": { - "x": 0, - "y": 0, - "z": -2 - }, - "direction": "EAST_POSITIVE_X" - } - ], - "placementOptions": { - "overStilt": 0, - "chance": 1, - "meld": false, - "density": 1, - "edit": [], - "bottom": false, - "translateCenter": false, - "rotation": { - "yAxis": { - "min": 0, - "max": 0, - "interval": 90, - "enabled": true - }, - "xAxis": { - "min": 0, - "max": 0, - "interval": 0, - "enabled": false - }, - "zAxis": { - "min": 0, - "max": 0, - "interval": 0, - "enabled": false - }, - "enabled": true - }, - "boreExtendMinY": -1, - "smartBore": false, - "waterloggable": false, - "bore": false, - "translate": { - "yRandom": 0, - "x": 0, - "y": 0, - "z": 0 - }, - "mode": "PAINT", - "carvingSupport": "SURFACE_ONLY", - "snow": 0, - "underwater": false, - "place": [], - "boreExtendMaxY": 0, - "onwater": false, - "clamp": { - "minimumHeight": 0, - "maximumHeight": 255 - }, - "warp": { - "multiplier": 1, - "style": "FLAT", - "zoom": 1, - "maxFractureAccuracy": false, - "exponent": 1 - } - }, - "object": "jigsaw/village/plains/streets/corner_01" + "object": "jigsaw/village/plains/streets/corner_01" } diff --git a/jigsaw-pieces/village/plains/streets/corner_02.json b/jigsaw-pieces/village/plains/streets/corner_02.json index d38422c6..df9a9388 100644 --- a/jigsaw-pieces/village/plains/streets/corner_02.json +++ b/jigsaw-pieces/village/plains/streets/corner_02.json @@ -3,7 +3,6 @@ { "targetName": "village/plains/villagers/unemployed", "entityCount": 3, - "innerConnector": true, "rotateConnector": false, "name": "villager", @@ -56,7 +55,6 @@ } ], "placementOptions": { - "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/streets/corner_03.json b/jigsaw-pieces/village/plains/streets/corner_03.json index ba3e8aa5..fe050440 100644 --- a/jigsaw-pieces/village/plains/streets/corner_03.json +++ b/jigsaw-pieces/village/plains/streets/corner_03.json @@ -3,7 +3,6 @@ { "targetName": "village/plains/villagers/unemployed", "entityCount": 3, - "innerConnector": true, "rotateConnector": false, "name": "villager", @@ -43,7 +42,6 @@ } ], "placementOptions": { - "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/streets/crossroad_01.json b/jigsaw-pieces/village/plains/streets/crossroad_01.json index 066095b2..d2fa3e8a 100644 --- a/jigsaw-pieces/village/plains/streets/crossroad_01.json +++ b/jigsaw-pieces/village/plains/streets/crossroad_01.json @@ -171,7 +171,6 @@ } ], "placementOptions": { - "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/streets/crossroad_02.json b/jigsaw-pieces/village/plains/streets/crossroad_02.json index 5402d2d6..0a5b456e 100644 --- a/jigsaw-pieces/village/plains/streets/crossroad_02.json +++ b/jigsaw-pieces/village/plains/streets/crossroad_02.json @@ -119,7 +119,6 @@ } ], "placementOptions": { - "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/streets/crossroad_03.json b/jigsaw-pieces/village/plains/streets/crossroad_03.json index c14c98ea..386fdb83 100644 --- a/jigsaw-pieces/village/plains/streets/crossroad_03.json +++ b/jigsaw-pieces/village/plains/streets/crossroad_03.json @@ -93,7 +93,6 @@ } ], "placementOptions": { - "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/streets/straight_01.json b/jigsaw-pieces/village/plains/streets/straight_01.json index 10848f8c..15eac696 100644 --- a/jigsaw-pieces/village/plains/streets/straight_01.json +++ b/jigsaw-pieces/village/plains/streets/straight_01.json @@ -3,7 +3,6 @@ { "targetName": "village/plains/villagers/unemployed", "entityCount": 3, - "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/plains/streets/straight_02.json b/jigsaw-pieces/village/plains/streets/straight_02.json index bbf42192..aa3986d3 100644 --- a/jigsaw-pieces/village/plains/streets/straight_02.json +++ b/jigsaw-pieces/village/plains/streets/straight_02.json @@ -3,7 +3,6 @@ { "targetName": "village/plains/villagers/unemployed", "entityCount": 3, - "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/plains/streets/straight_03.json b/jigsaw-pieces/village/plains/streets/straight_03.json index a8609276..2686a044 100644 --- a/jigsaw-pieces/village/plains/streets/straight_03.json +++ b/jigsaw-pieces/village/plains/streets/straight_03.json @@ -3,7 +3,6 @@ { "targetName": "village/plains/villagers/unemployed", "entityCount": 3, - "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/plains/streets/straight_04.json b/jigsaw-pieces/village/plains/streets/straight_04.json index 106568f8..3bc4e3d8 100644 --- a/jigsaw-pieces/village/plains/streets/straight_04.json +++ b/jigsaw-pieces/village/plains/streets/straight_04.json @@ -3,7 +3,6 @@ { "targetName": "village/plains/villagers/unemployed", "entityCount": 3, - "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/plains/streets/straight_05.json b/jigsaw-pieces/village/plains/streets/straight_05.json index 46c024ad..ed6765a0 100644 --- a/jigsaw-pieces/village/plains/streets/straight_05.json +++ b/jigsaw-pieces/village/plains/streets/straight_05.json @@ -3,7 +3,6 @@ { "targetName": "village/plains/villagers/unemployed", "entityCount": 3, - "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/plains/streets/straight_06.json b/jigsaw-pieces/village/plains/streets/straight_06.json index 9f4efed3..dc38e020 100644 --- a/jigsaw-pieces/village/plains/streets/straight_06.json +++ b/jigsaw-pieces/village/plains/streets/straight_06.json @@ -3,7 +3,6 @@ { "targetName": "village/plains/villagers/unemployed", "entityCount": 3, - "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/plains/streets/turn_01.json b/jigsaw-pieces/village/plains/streets/turn_01.json index 4aa52006..3652dc22 100644 --- a/jigsaw-pieces/village/plains/streets/turn_01.json +++ b/jigsaw-pieces/village/plains/streets/turn_01.json @@ -3,7 +3,6 @@ { "targetName": "village/plains/villagers/unemployed", "entityCount": 3, - "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/plains/town_centers/plains_fountain_01.json b/jigsaw-pieces/village/plains/town_centers/plains_fountain_01.json index 01da12f1..095d2e25 100644 --- a/jigsaw-pieces/village/plains/town_centers/plains_fountain_01.json +++ b/jigsaw-pieces/village/plains/town_centers/plains_fountain_01.json @@ -32,7 +32,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": -2, "y": -2, @@ -59,7 +58,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": 3, "y": -2, @@ -73,7 +71,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": 3, "y": -2, @@ -134,21 +131,16 @@ "direction": "EAST_POSITIVE_X" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:oak_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:oak_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/town_centers/plains_meeting_point_1.json b/jigsaw-pieces/village/plains/town_centers/plains_meeting_point_1.json index b2d3c2ad..d68f619d 100644 --- a/jigsaw-pieces/village/plains/town_centers/plains_meeting_point_1.json +++ b/jigsaw-pieces/village/plains/town_centers/plains_meeting_point_1.json @@ -6,7 +6,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": -4, "y": -3, @@ -33,7 +32,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": -4, "y": -3, @@ -146,21 +144,16 @@ "direction": "EAST_POSITIVE_X" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:oak_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:oak_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/town_centers/plains_meeting_point_2.json b/jigsaw-pieces/village/plains/town_centers/plains_meeting_point_2.json index 49dbc57e..0363f3b7 100644 --- a/jigsaw-pieces/village/plains/town_centers/plains_meeting_point_2.json +++ b/jigsaw-pieces/village/plains/town_centers/plains_meeting_point_2.json @@ -19,7 +19,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": -3, "y": -2, @@ -46,7 +45,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": -2, "y": -2, @@ -60,7 +58,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": -2, "y": -2, @@ -147,21 +144,16 @@ "direction": "EAST_POSITIVE_X" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:oak_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:oak_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/town_centers/plains_meeting_point_3.json b/jigsaw-pieces/village/plains/town_centers/plains_meeting_point_3.json index 0b798630..cabd22db 100644 --- a/jigsaw-pieces/village/plains/town_centers/plains_meeting_point_3.json +++ b/jigsaw-pieces/village/plains/town_centers/plains_meeting_point_3.json @@ -6,7 +6,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": -4, "y": -4, @@ -33,7 +32,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": -3, "y": -4, @@ -107,21 +105,16 @@ "direction": "EAST_POSITIVE_X" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:oak_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:oak_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/plains/villagers/unemployed.json b/jigsaw-pieces/village/plains/villagers/unemployed.json index 23a3bf6e..65ed3be8 100644 --- a/jigsaw-pieces/village/plains/villagers/unemployed.json +++ b/jigsaw-pieces/village/plains/villagers/unemployed.json @@ -10,7 +10,6 @@ "y": -1, "z": 0 }, - "entityPosition": { "x": 0, "y": 2, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_animal_pen_1.json b/jigsaw-pieces/village/savanna/houses/savanna_animal_pen_1.json index fe93d43d..66daf01d 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_animal_pen_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_animal_pen_1.json @@ -28,27 +28,17 @@ } ], "placementOptions": { - "markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:yellow_terracotta" - }, - { - "block": "minecraft:orange_terracotta" - }, - { - "block": "minecraft:acacia_planks" - }, - { - "block": "minecraft:stripped_acacia_log" - } - ], - "marker": "villager" - } - ], + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:yellow_terracotta"}, + {"block": "minecraft:orange_terracotta"}, + {"block": "minecraft:acacia_planks"}, + {"block": "minecraft:stripped_acacia_log"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_animal_pen_2.json b/jigsaw-pieces/village/savanna/houses/savanna_animal_pen_2.json index 3330ff9a..81c96399 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_animal_pen_2.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_animal_pen_2.json @@ -79,27 +79,18 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:yellow_terracotta" - }, - { - "block": "minecraft:orange_terracotta" - }, - { - "block": "minecraft:acacia_planks" - }, - { - "block": "minecraft:stripped_acacia_log" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:yellow_terracotta"}, + {"block": "minecraft:orange_terracotta"}, + {"block": "minecraft:acacia_planks"}, + {"block": "minecraft:stripped_acacia_log"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_animal_pen_3.json b/jigsaw-pieces/village/savanna/houses/savanna_animal_pen_3.json index 91bf03b7..a9b3cad0 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_animal_pen_3.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_animal_pen_3.json @@ -40,27 +40,18 @@ "direction": "SOUTH_POSITIVE_Z" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:yellow_terracotta" - }, - { - "block": "minecraft:orange_terracotta" - }, - { - "block": "minecraft:acacia_planks" - }, - { - "block": "minecraft:stripped_acacia_log" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:yellow_terracotta"}, + {"block": "minecraft:orange_terracotta"}, + {"block": "minecraft:acacia_planks"}, + {"block": "minecraft:stripped_acacia_log"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_armorer_1.json b/jigsaw-pieces/village/savanna/houses/savanna_armorer_1.json index 07f4f3bd..a7275c27 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_armorer_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_armorer_1.json @@ -12,27 +12,18 @@ }, "direction": "WEST_NEGATIVE_X" }], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:yellow_terracotta" - }, - { - "block": "minecraft:orange_terracotta" - }, - { - "block": "minecraft:acacia_planks" - }, - { - "block": "minecraft:stripped_acacia_log" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:yellow_terracotta"}, + {"block": "minecraft:orange_terracotta"}, + {"block": "minecraft:acacia_planks"}, + {"block": "minecraft:stripped_acacia_log"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_butchers_shop_1.json b/jigsaw-pieces/village/savanna/houses/savanna_butchers_shop_1.json index 92979190..f396ff3c 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_butchers_shop_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_butchers_shop_1.json @@ -27,27 +27,18 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:yellow_terracotta" - }, - { - "block": "minecraft:orange_terracotta" - }, - { - "block": "minecraft:acacia_planks" - }, - { - "block": "minecraft:stripped_acacia_log" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:yellow_terracotta"}, + {"block": "minecraft:orange_terracotta"}, + {"block": "minecraft:acacia_planks"}, + {"block": "minecraft:stripped_acacia_log"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_butchers_shop_2.json b/jigsaw-pieces/village/savanna/houses/savanna_butchers_shop_2.json index 78f239c7..e3f0d81e 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_butchers_shop_2.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_butchers_shop_2.json @@ -27,27 +27,18 @@ "direction": "WEST_NEGATIVE_X" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:yellow_terracotta" - }, - { - "block": "minecraft:orange_terracotta" - }, - { - "block": "minecraft:acacia_planks" - }, - { - "block": "minecraft:stripped_acacia_log" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:yellow_terracotta"}, + {"block": "minecraft:orange_terracotta"}, + {"block": "minecraft:acacia_planks"}, + {"block": "minecraft:stripped_acacia_log"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_cartographer_1.json b/jigsaw-pieces/village/savanna/houses/savanna_cartographer_1.json index 11875f42..f1bafbdc 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_cartographer_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_cartographer_1.json @@ -27,27 +27,18 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:yellow_terracotta" - }, - { - "block": "minecraft:orange_terracotta" - }, - { - "block": "minecraft:acacia_planks" - }, - { - "block": "minecraft:stripped_acacia_log" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:yellow_terracotta"}, + {"block": "minecraft:orange_terracotta"}, + {"block": "minecraft:acacia_planks"}, + {"block": "minecraft:stripped_acacia_log"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_fisher_cottage_1.json b/jigsaw-pieces/village/savanna/houses/savanna_fisher_cottage_1.json index bf397e70..1672a7e7 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_fisher_cottage_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_fisher_cottage_1.json @@ -53,27 +53,18 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:yellow_terracotta" - }, - { - "block": "minecraft:orange_terracotta" - }, - { - "block": "minecraft:acacia_planks" - }, - { - "block": "minecraft:stripped_acacia_log" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:yellow_terracotta"}, + {"block": "minecraft:orange_terracotta"}, + {"block": "minecraft:acacia_planks"}, + {"block": "minecraft:stripped_acacia_log"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_fletcher_house_1.json b/jigsaw-pieces/village/savanna/houses/savanna_fletcher_house_1.json index bd85ad74..6d5677d9 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_fletcher_house_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_fletcher_house_1.json @@ -12,27 +12,18 @@ }, "direction": "SOUTH_POSITIVE_Z" }], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:yellow_terracotta" - }, - { - "block": "minecraft:orange_terracotta" - }, - { - "block": "minecraft:acacia_planks" - }, - { - "block": "minecraft:stripped_acacia_log" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:yellow_terracotta"}, + {"block": "minecraft:orange_terracotta"}, + {"block": "minecraft:acacia_planks"}, + {"block": "minecraft:stripped_acacia_log"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_large_farm_1.json b/jigsaw-pieces/village/savanna/houses/savanna_large_farm_1.json index dd738359..3e7e72aa 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_large_farm_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_large_farm_1.json @@ -12,27 +12,18 @@ }, "direction": "SOUTH_POSITIVE_Z" }], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:yellow_terracotta" - }, - { - "block": "minecraft:orange_terracotta" - }, - { - "block": "minecraft:acacia_planks" - }, - { - "block": "minecraft:stripped_acacia_log" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:yellow_terracotta"}, + {"block": "minecraft:orange_terracotta"}, + {"block": "minecraft:acacia_planks"}, + {"block": "minecraft:stripped_acacia_log"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_large_farm_2.json b/jigsaw-pieces/village/savanna/houses/savanna_large_farm_2.json index 07beb47a..f584c87d 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_large_farm_2.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_large_farm_2.json @@ -27,27 +27,18 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:yellow_terracotta" - }, - { - "block": "minecraft:orange_terracotta" - }, - { - "block": "minecraft:acacia_planks" - }, - { - "block": "minecraft:stripped_acacia_log" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:yellow_terracotta"}, + {"block": "minecraft:orange_terracotta"}, + {"block": "minecraft:acacia_planks"}, + {"block": "minecraft:stripped_acacia_log"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_library_1.json b/jigsaw-pieces/village/savanna/houses/savanna_library_1.json index cf7d75a2..fce02518 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_library_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_library_1.json @@ -12,27 +12,18 @@ }, "direction": "NORTH_NEGATIVE_Z" }], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:yellow_terracotta" - }, - { - "block": "minecraft:orange_terracotta" - }, - { - "block": "minecraft:acacia_planks" - }, - { - "block": "minecraft:stripped_acacia_log" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:yellow_terracotta"}, + {"block": "minecraft:orange_terracotta"}, + {"block": "minecraft:acacia_planks"}, + {"block": "minecraft:stripped_acacia_log"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_mason_1.json b/jigsaw-pieces/village/savanna/houses/savanna_mason_1.json index 6e7bdf03..5bf9ad60 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_mason_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_mason_1.json @@ -12,27 +12,18 @@ }, "direction": "WEST_NEGATIVE_X" }], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:yellow_terracotta" - }, - { - "block": "minecraft:orange_terracotta" - }, - { - "block": "minecraft:acacia_planks" - }, - { - "block": "minecraft:stripped_acacia_log" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:yellow_terracotta"}, + {"block": "minecraft:orange_terracotta"}, + {"block": "minecraft:acacia_planks"}, + {"block": "minecraft:stripped_acacia_log"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_medium_house_1.json b/jigsaw-pieces/village/savanna/houses/savanna_medium_house_1.json index aefb8d0a..3de79646 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_medium_house_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_medium_house_1.json @@ -53,27 +53,18 @@ "direction": "WEST_NEGATIVE_X" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:yellow_terracotta" - }, - { - "block": "minecraft:orange_terracotta" - }, - { - "block": "minecraft:acacia_planks" - }, - { - "block": "minecraft:stripped_acacia_log" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:yellow_terracotta"}, + {"block": "minecraft:orange_terracotta"}, + {"block": "minecraft:acacia_planks"}, + {"block": "minecraft:stripped_acacia_log"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_medium_house_2.json b/jigsaw-pieces/village/savanna/houses/savanna_medium_house_2.json index 6eecd2d5..3a788427 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_medium_house_2.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_medium_house_2.json @@ -53,27 +53,18 @@ "direction": "WEST_NEGATIVE_X" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:yellow_terracotta" - }, - { - "block": "minecraft:orange_terracotta" - }, - { - "block": "minecraft:acacia_planks" - }, - { - "block": "minecraft:stripped_acacia_log" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:yellow_terracotta"}, + {"block": "minecraft:orange_terracotta"}, + {"block": "minecraft:acacia_planks"}, + {"block": "minecraft:stripped_acacia_log"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_shepherd_1.json b/jigsaw-pieces/village/savanna/houses/savanna_shepherd_1.json index 821a89f2..8c16a846 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_shepherd_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_shepherd_1.json @@ -40,27 +40,18 @@ "direction": "WEST_NEGATIVE_X" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:yellow_terracotta" - }, - { - "block": "minecraft:orange_terracotta" - }, - { - "block": "minecraft:acacia_planks" - }, - { - "block": "minecraft:stripped_acacia_log" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:yellow_terracotta"}, + {"block": "minecraft:orange_terracotta"}, + {"block": "minecraft:acacia_planks"}, + {"block": "minecraft:stripped_acacia_log"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_small_farm.json b/jigsaw-pieces/village/savanna/houses/savanna_small_farm.json index d3e3ecc8..3313e279 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_small_farm.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_small_farm.json @@ -12,27 +12,18 @@ }, "direction": "NORTH_NEGATIVE_Z" }], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:yellow_terracotta" - }, - { - "block": "minecraft:orange_terracotta" - }, - { - "block": "minecraft:acacia_planks" - }, - { - "block": "minecraft:stripped_acacia_log" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:yellow_terracotta"}, + {"block": "minecraft:orange_terracotta"}, + {"block": "minecraft:acacia_planks"}, + {"block": "minecraft:stripped_acacia_log"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_small_house_1.json b/jigsaw-pieces/village/savanna/houses/savanna_small_house_1.json index da0a65ce..f83025e6 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_small_house_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_small_house_1.json @@ -27,27 +27,18 @@ "direction": "SOUTH_POSITIVE_Z" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:yellow_terracotta" - }, - { - "block": "minecraft:orange_terracotta" - }, - { - "block": "minecraft:acacia_planks" - }, - { - "block": "minecraft:stripped_acacia_log" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:yellow_terracotta"}, + {"block": "minecraft:orange_terracotta"}, + {"block": "minecraft:acacia_planks"}, + {"block": "minecraft:stripped_acacia_log"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_small_house_2.json b/jigsaw-pieces/village/savanna/houses/savanna_small_house_2.json index 1958bd42..14cc8edb 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_small_house_2.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_small_house_2.json @@ -27,27 +27,18 @@ "direction": "SOUTH_POSITIVE_Z" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:yellow_terracotta" - }, - { - "block": "minecraft:orange_terracotta" - }, - { - "block": "minecraft:acacia_planks" - }, - { - "block": "minecraft:stripped_acacia_log" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:yellow_terracotta"}, + {"block": "minecraft:orange_terracotta"}, + {"block": "minecraft:acacia_planks"}, + {"block": "minecraft:stripped_acacia_log"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_small_house_3.json b/jigsaw-pieces/village/savanna/houses/savanna_small_house_3.json index 9ca247f2..8ed0ba70 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_small_house_3.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_small_house_3.json @@ -27,27 +27,18 @@ "direction": "SOUTH_POSITIVE_Z" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:yellow_terracotta" - }, - { - "block": "minecraft:orange_terracotta" - }, - { - "block": "minecraft:acacia_planks" - }, - { - "block": "minecraft:stripped_acacia_log" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:yellow_terracotta"}, + {"block": "minecraft:orange_terracotta"}, + {"block": "minecraft:acacia_planks"}, + {"block": "minecraft:stripped_acacia_log"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_small_house_4.json b/jigsaw-pieces/village/savanna/houses/savanna_small_house_4.json index 1f4a7d0f..88efddea 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_small_house_4.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_small_house_4.json @@ -27,27 +27,18 @@ "direction": "SOUTH_POSITIVE_Z" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:yellow_terracotta" - }, - { - "block": "minecraft:orange_terracotta" - }, - { - "block": "minecraft:acacia_planks" - }, - { - "block": "minecraft:stripped_acacia_log" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:yellow_terracotta"}, + {"block": "minecraft:orange_terracotta"}, + {"block": "minecraft:acacia_planks"}, + {"block": "minecraft:stripped_acacia_log"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_small_house_5.json b/jigsaw-pieces/village/savanna/houses/savanna_small_house_5.json index 47b6bd86..e9d31807 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_small_house_5.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_small_house_5.json @@ -27,27 +27,18 @@ "direction": "EAST_POSITIVE_X" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:yellow_terracotta" - }, - { - "block": "minecraft:orange_terracotta" - }, - { - "block": "minecraft:acacia_planks" - }, - { - "block": "minecraft:stripped_acacia_log" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:yellow_terracotta"}, + {"block": "minecraft:orange_terracotta"}, + {"block": "minecraft:acacia_planks"}, + {"block": "minecraft:stripped_acacia_log"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_small_house_6.json b/jigsaw-pieces/village/savanna/houses/savanna_small_house_6.json index a75c26f3..d50b0fac 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_small_house_6.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_small_house_6.json @@ -40,27 +40,18 @@ "direction": "WEST_NEGATIVE_X" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:yellow_terracotta" - }, - { - "block": "minecraft:orange_terracotta" - }, - { - "block": "minecraft:acacia_planks" - }, - { - "block": "minecraft:stripped_acacia_log" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:yellow_terracotta"}, + {"block": "minecraft:orange_terracotta"}, + {"block": "minecraft:acacia_planks"}, + {"block": "minecraft:stripped_acacia_log"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_small_house_7.json b/jigsaw-pieces/village/savanna/houses/savanna_small_house_7.json index 4d98fd55..3da6d4f2 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_small_house_7.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_small_house_7.json @@ -27,27 +27,18 @@ "direction": "SOUTH_POSITIVE_Z" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:yellow_terracotta" - }, - { - "block": "minecraft:orange_terracotta" - }, - { - "block": "minecraft:acacia_planks" - }, - { - "block": "minecraft:stripped_acacia_log" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:yellow_terracotta"}, + {"block": "minecraft:orange_terracotta"}, + {"block": "minecraft:acacia_planks"}, + {"block": "minecraft:stripped_acacia_log"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_small_house_8.json b/jigsaw-pieces/village/savanna/houses/savanna_small_house_8.json index 1ce01da8..0a24e4d7 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_small_house_8.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_small_house_8.json @@ -27,27 +27,18 @@ "direction": "WEST_NEGATIVE_X" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:yellow_terracotta" - }, - { - "block": "minecraft:orange_terracotta" - }, - { - "block": "minecraft:acacia_planks" - }, - { - "block": "minecraft:stripped_acacia_log" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:yellow_terracotta"}, + {"block": "minecraft:orange_terracotta"}, + {"block": "minecraft:acacia_planks"}, + {"block": "minecraft:stripped_acacia_log"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_tannery_1.json b/jigsaw-pieces/village/savanna/houses/savanna_tannery_1.json index e6014f5e..f32fe364 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_tannery_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_tannery_1.json @@ -12,27 +12,18 @@ }, "direction": "EAST_POSITIVE_X" }], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:yellow_terracotta" - }, - { - "block": "minecraft:orange_terracotta" - }, - { - "block": "minecraft:acacia_planks" - }, - { - "block": "minecraft:stripped_acacia_log" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:yellow_terracotta"}, + {"block": "minecraft:orange_terracotta"}, + {"block": "minecraft:acacia_planks"}, + {"block": "minecraft:stripped_acacia_log"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_temple_1.json b/jigsaw-pieces/village/savanna/houses/savanna_temple_1.json index 1eabc2d9..676be896 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_temple_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_temple_1.json @@ -12,27 +12,18 @@ }, "direction": "WEST_NEGATIVE_X" }], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:yellow_terracotta" - }, - { - "block": "minecraft:orange_terracotta" - }, - { - "block": "minecraft:acacia_planks" - }, - { - "block": "minecraft:stripped_acacia_log" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:yellow_terracotta"}, + {"block": "minecraft:orange_terracotta"}, + {"block": "minecraft:acacia_planks"}, + {"block": "minecraft:stripped_acacia_log"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_temple_2.json b/jigsaw-pieces/village/savanna/houses/savanna_temple_2.json index 22b81784..846eae3b 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_temple_2.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_temple_2.json @@ -12,27 +12,18 @@ }, "direction": "WEST_NEGATIVE_X" }], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:yellow_terracotta" - }, - { - "block": "minecraft:orange_terracotta" - }, - { - "block": "minecraft:acacia_planks" - }, - { - "block": "minecraft:stripped_acacia_log" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:yellow_terracotta"}, + {"block": "minecraft:orange_terracotta"}, + {"block": "minecraft:acacia_planks"}, + {"block": "minecraft:stripped_acacia_log"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_tool_smith_1.json b/jigsaw-pieces/village/savanna/houses/savanna_tool_smith_1.json index 716d1385..b8ce164b 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_tool_smith_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_tool_smith_1.json @@ -12,27 +12,18 @@ }, "direction": "WEST_NEGATIVE_X" }], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:yellow_terracotta" - }, - { - "block": "minecraft:orange_terracotta" - }, - { - "block": "minecraft:acacia_planks" - }, - { - "block": "minecraft:stripped_acacia_log" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:yellow_terracotta"}, + {"block": "minecraft:orange_terracotta"}, + {"block": "minecraft:acacia_planks"}, + {"block": "minecraft:stripped_acacia_log"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_weaponsmith_1.json b/jigsaw-pieces/village/savanna/houses/savanna_weaponsmith_1.json index a9fad78c..44fc1bcf 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_weaponsmith_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_weaponsmith_1.json @@ -12,27 +12,18 @@ }, "direction": "EAST_POSITIVE_X" }], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:yellow_terracotta" - }, - { - "block": "minecraft:orange_terracotta" - }, - { - "block": "minecraft:acacia_planks" - }, - { - "block": "minecraft:stripped_acacia_log" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:yellow_terracotta"}, + {"block": "minecraft:orange_terracotta"}, + {"block": "minecraft:acacia_planks"}, + {"block": "minecraft:stripped_acacia_log"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_weaponsmith_2.json b/jigsaw-pieces/village/savanna/houses/savanna_weaponsmith_2.json index 68144f97..058a4bcd 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_weaponsmith_2.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_weaponsmith_2.json @@ -12,27 +12,18 @@ }, "direction": "WEST_NEGATIVE_X" }], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:yellow_terracotta" - }, - { - "block": "minecraft:orange_terracotta" - }, - { - "block": "minecraft:acacia_planks" - }, - { - "block": "minecraft:stripped_acacia_log" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:yellow_terracotta"}, + {"block": "minecraft:orange_terracotta"}, + {"block": "minecraft:acacia_planks"}, + {"block": "minecraft:stripped_acacia_log"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/savanna/streets/corner_01.json b/jigsaw-pieces/village/savanna/streets/corner_01.json index e23298ce..58296114 100644 --- a/jigsaw-pieces/village/savanna/streets/corner_01.json +++ b/jigsaw-pieces/village/savanna/streets/corner_01.json @@ -3,7 +3,6 @@ { "targetName": "village/savanna/villagers/unemployed", "entityCount": 3, - "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/savanna/streets/corner_03.json b/jigsaw-pieces/village/savanna/streets/corner_03.json index f80fe57f..9050fc14 100644 --- a/jigsaw-pieces/village/savanna/streets/corner_03.json +++ b/jigsaw-pieces/village/savanna/streets/corner_03.json @@ -3,7 +3,6 @@ { "targetName": "village/savanna/villagers/unemployed", "entityCount": 3, - "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/savanna/streets/split_01.json b/jigsaw-pieces/village/savanna/streets/split_01.json index f22db0c3..42dd86cf 100644 --- a/jigsaw-pieces/village/savanna/streets/split_01.json +++ b/jigsaw-pieces/village/savanna/streets/split_01.json @@ -3,7 +3,6 @@ { "targetName": "village/savanna/villagers/unemployed", "entityCount": 3, - "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/savanna/streets/split_02.json b/jigsaw-pieces/village/savanna/streets/split_02.json index 10651b15..9c209361 100644 --- a/jigsaw-pieces/village/savanna/streets/split_02.json +++ b/jigsaw-pieces/village/savanna/streets/split_02.json @@ -3,7 +3,6 @@ { "targetName": "village/savanna/villagers/unemployed", "entityCount": 3, - "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/savanna/streets/straight_02.json b/jigsaw-pieces/village/savanna/streets/straight_02.json index 368406e0..91cab370 100644 --- a/jigsaw-pieces/village/savanna/streets/straight_02.json +++ b/jigsaw-pieces/village/savanna/streets/straight_02.json @@ -3,7 +3,6 @@ { "targetName": "village/savanna/villagers/unemployed", "entityCount": 3, - "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/savanna/streets/straight_04.json b/jigsaw-pieces/village/savanna/streets/straight_04.json index beaa1491..09bb32b6 100644 --- a/jigsaw-pieces/village/savanna/streets/straight_04.json +++ b/jigsaw-pieces/village/savanna/streets/straight_04.json @@ -3,7 +3,6 @@ { "targetName": "village/savanna/villagers/unemployed", "entityCount": 3, - "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/savanna/streets/straight_05.json b/jigsaw-pieces/village/savanna/streets/straight_05.json index 6e447084..4dd0f2f9 100644 --- a/jigsaw-pieces/village/savanna/streets/straight_05.json +++ b/jigsaw-pieces/village/savanna/streets/straight_05.json @@ -3,7 +3,6 @@ { "targetName": "village/savanna/villagers/unemployed", "entityCount": 3, - "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/savanna/streets/straight_06.json b/jigsaw-pieces/village/savanna/streets/straight_06.json index ccde869f..6a023218 100644 --- a/jigsaw-pieces/village/savanna/streets/straight_06.json +++ b/jigsaw-pieces/village/savanna/streets/straight_06.json @@ -3,7 +3,6 @@ { "targetName": "village/savanna/villagers/unemployed", "entityCount": 3, - "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/savanna/streets/straight_08.json b/jigsaw-pieces/village/savanna/streets/straight_08.json index 0ec38b9f..28809a64 100644 --- a/jigsaw-pieces/village/savanna/streets/straight_08.json +++ b/jigsaw-pieces/village/savanna/streets/straight_08.json @@ -3,7 +3,6 @@ { "targetName": "village/savanna/villagers/unemployed", "entityCount": 3, - "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/savanna/streets/straight_09.json b/jigsaw-pieces/village/savanna/streets/straight_09.json index 2a7ac912..10a45d00 100644 --- a/jigsaw-pieces/village/savanna/streets/straight_09.json +++ b/jigsaw-pieces/village/savanna/streets/straight_09.json @@ -3,7 +3,6 @@ { "targetName": "village/savanna/villagers/unemployed", "entityCount": 3, - "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/savanna/streets/straight_10.json b/jigsaw-pieces/village/savanna/streets/straight_10.json index bf47a8ad..c6213f2d 100644 --- a/jigsaw-pieces/village/savanna/streets/straight_10.json +++ b/jigsaw-pieces/village/savanna/streets/straight_10.json @@ -3,7 +3,6 @@ { "targetName": "village/savanna/villagers/unemployed", "entityCount": 3, - "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/savanna/streets/straight_11.json b/jigsaw-pieces/village/savanna/streets/straight_11.json index a9ba2cdc..58fc6128 100644 --- a/jigsaw-pieces/village/savanna/streets/straight_11.json +++ b/jigsaw-pieces/village/savanna/streets/straight_11.json @@ -3,7 +3,6 @@ { "targetName": "village/savanna/villagers/unemployed", "entityCount": 3, - "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/savanna/streets/turn_01.json b/jigsaw-pieces/village/savanna/streets/turn_01.json index 1b17deb4..1cf976dc 100644 --- a/jigsaw-pieces/village/savanna/streets/turn_01.json +++ b/jigsaw-pieces/village/savanna/streets/turn_01.json @@ -3,7 +3,6 @@ { "targetName": "village/savanna/villagers/unemployed", "entityCount": 3, - "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/savanna/villagers/unemployed.json b/jigsaw-pieces/village/savanna/villagers/unemployed.json index 85cbd297..6eb60d2d 100644 --- a/jigsaw-pieces/village/savanna/villagers/unemployed.json +++ b/jigsaw-pieces/village/savanna/villagers/unemployed.json @@ -10,7 +10,6 @@ "y": -1, "z": 0 }, - "entityPosition": { "x": 0, "y": 2, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_animal_pen_1.json b/jigsaw-pieces/village/snowy/houses/snowy_animal_pen_1.json index 24931d16..e9f38365 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_animal_pen_1.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_animal_pen_1.json @@ -28,24 +28,16 @@ } ], "placementOptions": { - "markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:diorite" - }, - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:spruce_planks" - } - ], - "marker": "villager" - } - ], + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:diorite"}, + {"block": "minecraft:grass_block"}, + {"block": "minecraft:spruce_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_animal_pen_2.json b/jigsaw-pieces/village/snowy/houses/snowy_animal_pen_2.json index 7cccf880..cf2be3f5 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_animal_pen_2.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_animal_pen_2.json @@ -40,24 +40,17 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:diorite" - }, - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:spruce_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:diorite"}, + {"block": "minecraft:grass_block"}, + {"block": "minecraft:spruce_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_armorer_house_1.json b/jigsaw-pieces/village/snowy/houses/snowy_armorer_house_1.json index 7cb0391d..c6fb62f1 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_armorer_house_1.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_armorer_house_1.json @@ -12,24 +12,17 @@ }, "direction": "WEST_NEGATIVE_X" }], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:diorite" - }, - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:spruce_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:diorite"}, + {"block": "minecraft:grass_block"}, + {"block": "minecraft:spruce_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_armorer_house_2.json b/jigsaw-pieces/village/snowy/houses/snowy_armorer_house_2.json index 01785063..5aad85d3 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_armorer_house_2.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_armorer_house_2.json @@ -12,24 +12,17 @@ }, "direction": "NORTH_NEGATIVE_Z" }], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:diorite" - }, - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:spruce_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:diorite"}, + {"block": "minecraft:grass_block"}, + {"block": "minecraft:spruce_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_butchers_shop_1.json b/jigsaw-pieces/village/snowy/houses/snowy_butchers_shop_1.json index 66c47ac9..5fcdafab 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_butchers_shop_1.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_butchers_shop_1.json @@ -27,24 +27,17 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:diorite" - }, - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:spruce_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:diorite"}, + {"block": "minecraft:grass_block"}, + {"block": "minecraft:spruce_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_butchers_shop_2.json b/jigsaw-pieces/village/snowy/houses/snowy_butchers_shop_2.json index 52bfa65f..56119252 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_butchers_shop_2.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_butchers_shop_2.json @@ -27,24 +27,17 @@ "direction": "WEST_NEGATIVE_X" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:diorite" - }, - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:spruce_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:diorite"}, + {"block": "minecraft:grass_block"}, + {"block": "minecraft:spruce_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_cartographer_house_1.json b/jigsaw-pieces/village/snowy/houses/snowy_cartographer_house_1.json index af709a39..3762344b 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_cartographer_house_1.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_cartographer_house_1.json @@ -12,24 +12,17 @@ }, "direction": "WEST_NEGATIVE_X" }], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:diorite" - }, - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:spruce_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:diorite"}, + {"block": "minecraft:grass_block"}, + {"block": "minecraft:spruce_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_farm_1.json b/jigsaw-pieces/village/snowy/houses/snowy_farm_1.json index d7d1e46d..50124ece 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_farm_1.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_farm_1.json @@ -12,24 +12,17 @@ }, "direction": "WEST_NEGATIVE_X" }], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:diorite" - }, - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:spruce_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:diorite"}, + {"block": "minecraft:grass_block"}, + {"block": "minecraft:spruce_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_farm_2.json b/jigsaw-pieces/village/snowy/houses/snowy_farm_2.json index 1e50acaa..f0d3e338 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_farm_2.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_farm_2.json @@ -12,24 +12,17 @@ }, "direction": "WEST_NEGATIVE_X" }], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:diorite" - }, - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:spruce_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:diorite"}, + {"block": "minecraft:grass_block"}, + {"block": "minecraft:spruce_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_fisher_cottage.json b/jigsaw-pieces/village/snowy/houses/snowy_fisher_cottage.json index e02d94a7..d1042514 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_fisher_cottage.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_fisher_cottage.json @@ -12,24 +12,17 @@ }, "direction": "SOUTH_POSITIVE_Z" }], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:diorite" - }, - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:spruce_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:diorite"}, + {"block": "minecraft:grass_block"}, + {"block": "minecraft:spruce_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_fletcher_house_1.json b/jigsaw-pieces/village/snowy/houses/snowy_fletcher_house_1.json index e966f372..ba647327 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_fletcher_house_1.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_fletcher_house_1.json @@ -12,24 +12,17 @@ }, "direction": "WEST_NEGATIVE_X" }], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:diorite" - }, - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:spruce_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:diorite"}, + {"block": "minecraft:grass_block"}, + {"block": "minecraft:spruce_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_library_1.json b/jigsaw-pieces/village/snowy/houses/snowy_library_1.json index 6e52d417..08943c0b 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_library_1.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_library_1.json @@ -12,24 +12,17 @@ }, "direction": "WEST_NEGATIVE_X" }], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:diorite" - }, - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:spruce_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:diorite"}, + {"block": "minecraft:grass_block"}, + {"block": "minecraft:spruce_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_masons_house_1.json b/jigsaw-pieces/village/snowy/houses/snowy_masons_house_1.json index 5d6a27a9..194955ca 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_masons_house_1.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_masons_house_1.json @@ -12,24 +12,17 @@ }, "direction": "SOUTH_POSITIVE_Z" }], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:diorite" - }, - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:spruce_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:diorite"}, + {"block": "minecraft:grass_block"}, + {"block": "minecraft:spruce_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_masons_house_2.json b/jigsaw-pieces/village/snowy/houses/snowy_masons_house_2.json index 7f19b174..e723c2df 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_masons_house_2.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_masons_house_2.json @@ -12,24 +12,17 @@ }, "direction": "WEST_NEGATIVE_X" }], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:diorite" - }, - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:spruce_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:diorite"}, + {"block": "minecraft:grass_block"}, + {"block": "minecraft:spruce_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_medium_house_1.json b/jigsaw-pieces/village/snowy/houses/snowy_medium_house_1.json index 3f92d76b..eccba6f2 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_medium_house_1.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_medium_house_1.json @@ -6,7 +6,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": 0, "y": -3, @@ -20,7 +19,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": 0, "y": -3, @@ -42,24 +40,17 @@ "direction": "EAST_POSITIVE_X" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:diorite" - }, - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:spruce_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:diorite"}, + {"block": "minecraft:grass_block"}, + {"block": "minecraft:spruce_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_medium_house_2.json b/jigsaw-pieces/village/snowy/houses/snowy_medium_house_2.json index 87872e34..a7ae5b6a 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_medium_house_2.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_medium_house_2.json @@ -6,7 +6,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": -2, "y": -4, @@ -33,7 +32,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": 2, "y": -4, @@ -42,24 +40,17 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:diorite" - }, - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:spruce_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:diorite"}, + {"block": "minecraft:grass_block"}, + {"block": "minecraft:spruce_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_medium_house_3.json b/jigsaw-pieces/village/snowy/houses/snowy_medium_house_3.json index ff7ebe65..9e93f7e4 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_medium_house_3.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_medium_house_3.json @@ -6,7 +6,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": 0, "y": -2, @@ -20,7 +19,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": 0, "y": -2, @@ -42,24 +40,17 @@ "direction": "WEST_NEGATIVE_X" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:diorite" - }, - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:spruce_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:diorite"}, + {"block": "minecraft:grass_block"}, + {"block": "minecraft:spruce_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_shepherds_house_1.json b/jigsaw-pieces/village/snowy/houses/snowy_shepherds_house_1.json index 4dacbea8..d6ea0bc8 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_shepherds_house_1.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_shepherds_house_1.json @@ -27,24 +27,17 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:diorite" - }, - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:spruce_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:diorite"}, + {"block": "minecraft:grass_block"}, + {"block": "minecraft:spruce_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_small_house_1.json b/jigsaw-pieces/village/snowy/houses/snowy_small_house_1.json index c49a3ecd..b8c9a234 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_small_house_1.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_small_house_1.json @@ -6,7 +6,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": 0, "y": -2, @@ -28,24 +27,17 @@ "direction": "SOUTH_POSITIVE_Z" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:diorite" - }, - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:spruce_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:diorite"}, + {"block": "minecraft:grass_block"}, + {"block": "minecraft:spruce_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_small_house_2.json b/jigsaw-pieces/village/snowy/houses/snowy_small_house_2.json index 204c90a0..a59a3f8d 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_small_house_2.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_small_house_2.json @@ -19,7 +19,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": 0, "y": -4, @@ -28,24 +27,17 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:diorite" - }, - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:spruce_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:diorite"}, + {"block": "minecraft:grass_block"}, + {"block": "minecraft:spruce_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_small_house_3.json b/jigsaw-pieces/village/snowy/houses/snowy_small_house_3.json index b292c02f..cedd88ef 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_small_house_3.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_small_house_3.json @@ -6,7 +6,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": 0, "y": -3, @@ -28,24 +27,17 @@ "direction": "SOUTH_POSITIVE_Z" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:diorite" - }, - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:spruce_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:diorite"}, + {"block": "minecraft:grass_block"}, + {"block": "minecraft:spruce_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_small_house_4.json b/jigsaw-pieces/village/snowy/houses/snowy_small_house_4.json index 2ca53aea..5db3b6c4 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_small_house_4.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_small_house_4.json @@ -6,7 +6,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": 0, "y": -2, @@ -28,24 +27,17 @@ "direction": "WEST_NEGATIVE_X" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:diorite" - }, - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:spruce_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:diorite"}, + {"block": "minecraft:grass_block"}, + {"block": "minecraft:spruce_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_small_house_5.json b/jigsaw-pieces/village/snowy/houses/snowy_small_house_5.json index 814a657f..30637ab3 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_small_house_5.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_small_house_5.json @@ -6,7 +6,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": -1, "y": -2, @@ -28,24 +27,17 @@ "direction": "WEST_NEGATIVE_X" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:diorite" - }, - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:spruce_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:diorite"}, + {"block": "minecraft:grass_block"}, + {"block": "minecraft:spruce_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_small_house_6.json b/jigsaw-pieces/village/snowy/houses/snowy_small_house_6.json index 61565a17..3e4a631a 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_small_house_6.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_small_house_6.json @@ -19,7 +19,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": 0, "y": -4, @@ -28,24 +27,17 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:diorite" - }, - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:spruce_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:diorite"}, + {"block": "minecraft:grass_block"}, + {"block": "minecraft:spruce_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_small_house_7.json b/jigsaw-pieces/village/snowy/houses/snowy_small_house_7.json index a500ef07..cc08378c 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_small_house_7.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_small_house_7.json @@ -19,7 +19,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": -1, "y": -3, @@ -28,24 +27,17 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:diorite" - }, - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:spruce_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:diorite"}, + {"block": "minecraft:grass_block"}, + {"block": "minecraft:spruce_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_small_house_8.json b/jigsaw-pieces/village/snowy/houses/snowy_small_house_8.json index 4722013a..ea5a9437 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_small_house_8.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_small_house_8.json @@ -6,7 +6,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": -1, "y": -2, @@ -28,24 +27,17 @@ "direction": "WEST_NEGATIVE_X" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:diorite" - }, - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:spruce_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:diorite"}, + {"block": "minecraft:grass_block"}, + {"block": "minecraft:spruce_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_tannery_1.json b/jigsaw-pieces/village/snowy/houses/snowy_tannery_1.json index 87f1e0ad..2fa9eaff 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_tannery_1.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_tannery_1.json @@ -12,24 +12,17 @@ }, "direction": "WEST_NEGATIVE_X" }], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:diorite" - }, - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:spruce_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:diorite"}, + {"block": "minecraft:grass_block"}, + {"block": "minecraft:spruce_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_temple_1.json b/jigsaw-pieces/village/snowy/houses/snowy_temple_1.json index 0e31c804..0032d4fd 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_temple_1.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_temple_1.json @@ -12,24 +12,17 @@ }, "direction": "WEST_NEGATIVE_X" }], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:diorite" - }, - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:spruce_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:diorite"}, + {"block": "minecraft:grass_block"}, + {"block": "minecraft:spruce_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_tool_smith_1.json b/jigsaw-pieces/village/snowy/houses/snowy_tool_smith_1.json index b8f2e964..28f8bdac 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_tool_smith_1.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_tool_smith_1.json @@ -12,24 +12,17 @@ }, "direction": "WEST_NEGATIVE_X" }], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:diorite" - }, - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:spruce_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:diorite"}, + {"block": "minecraft:grass_block"}, + {"block": "minecraft:spruce_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_weapon_smith_1.json b/jigsaw-pieces/village/snowy/houses/snowy_weapon_smith_1.json index 5051d2cb..b76e8583 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_weapon_smith_1.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_weapon_smith_1.json @@ -12,24 +12,17 @@ }, "direction": "WEST_NEGATIVE_X" }], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:diorite" - }, - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:spruce_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:diorite"}, + {"block": "minecraft:grass_block"}, + {"block": "minecraft:spruce_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/snowy/streets/corner_01.json b/jigsaw-pieces/village/snowy/streets/corner_01.json index cb94cbf0..ac1197d1 100644 --- a/jigsaw-pieces/village/snowy/streets/corner_01.json +++ b/jigsaw-pieces/village/snowy/streets/corner_01.json @@ -1,210 +1,203 @@ { - "connectors": [ - { - "targetName": "village/snowy/villagers/unemployed", - "entityCount": 3, - - "innerConnector": true, - "rotateConnector": false, - "name": "villager", - "pools": ["village/desert/decor"], - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "direction": "UP_POSITIVE_Y" - }, - { - "targetName": "minecraft:bottom", - "innerConnector": false, - "rotateConnector": false, - "name": "minecraft:bottom", - "pools": ["village/snowy/decor"], - "position": { - "x": -5, - "y": -1, - "z": -7 - }, - "direction": "NORTH_NEGATIVE_Z" - }, - { - "targetName": "minecraft:bottom", - "innerConnector": false, - "rotateConnector": false, - "name": "minecraft:bottom", - "pools": ["village/snowy/decor"], - "position": { - "x": -5, - "y": -1, - "z": -2 - }, - "direction": "NORTH_NEGATIVE_Z" - }, - { - "targetName": "minecraft:bottom", - "innerConnector": false, - "rotateConnector": false, - "name": "minecraft:bottom", - "pools": ["village/common/cats"], - "position": { - "x": -5, - "y": -1, - "z": 2 - }, - "direction": "NORTH_NEGATIVE_Z" - }, - { - "targetName": "minecraft:bottom", - "innerConnector": false, - "rotateConnector": false, - "name": "minecraft:bottom", - "pools": ["village/snowy/decor"], - "position": { - "x": -2, - "y": -1, - "z": 4 - }, - "direction": "NORTH_NEGATIVE_Z" - }, - { - "targetName": "minecraft:bottom", - "innerConnector": false, - "rotateConnector": false, - "name": "minecraft:bottom", - "pools": ["village/snowy/decor"], - "position": { - "x": 0, - "y": -1, - "z": -5 - }, - "direction": "NORTH_NEGATIVE_Z" - }, - { - "targetName": "minecraft:bottom", - "innerConnector": false, - "rotateConnector": false, - "name": "minecraft:bottom", - "pools": ["village/snowy/decor"], - "position": { - "x": 3, - "y": -1, - "z": 1 - }, - "direction": "NORTH_NEGATIVE_Z" - }, - { - "targetName": "minecraft:street", - "innerConnector": false, - "rotateConnector": false, - "name": "minecraft:street", - "pools": ["village/snowy/streets"], - "position": { - "x": -6, - "y": 0, - "z": 0 - }, - "direction": "WEST_NEGATIVE_X" - }, - { - "targetName": "minecraft:street", - "innerConnector": false, - "rotateConnector": false, - "name": "minecraft:street", - "pools": ["village/snowy/streets"], - "position": { - "x": -3, - "y": 0, - "z": -8 - }, - "direction": "NORTH_NEGATIVE_Z" - }, - { - "targetName": "minecraft:building_entrance", - "innerConnector": true, - "rotateConnector": false, - "name": "minecraft:building_entrance", - "pools": ["village/snowy/houses"], - "position": { - "x": -2, - "y": 0, - "z": -2 - }, - "direction": "EAST_POSITIVE_X" - } - ], - "placementOptions": { - "markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:sand" - }, - { - "block": "minecraft:sandstone" - } - ], - "marker": "villager" - } + "connectors": [ + { + "targetName": "village/snowy/villagers/unemployed", + "entityCount": 3, + "innerConnector": true, + "rotateConnector": false, + "name": "villager", + "pools": ["village/desert/decor"], + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "direction": "UP_POSITIVE_Y" + }, + { + "targetName": "minecraft:bottom", + "innerConnector": false, + "rotateConnector": false, + "name": "minecraft:bottom", + "pools": ["village/snowy/decor"], + "position": { + "x": -5, + "y": -1, + "z": -7 + }, + "direction": "NORTH_NEGATIVE_Z" + }, + { + "targetName": "minecraft:bottom", + "innerConnector": false, + "rotateConnector": false, + "name": "minecraft:bottom", + "pools": ["village/snowy/decor"], + "position": { + "x": -5, + "y": -1, + "z": -2 + }, + "direction": "NORTH_NEGATIVE_Z" + }, + { + "targetName": "minecraft:bottom", + "innerConnector": false, + "rotateConnector": false, + "name": "minecraft:bottom", + "pools": ["village/common/cats"], + "position": { + "x": -5, + "y": -1, + "z": 2 + }, + "direction": "NORTH_NEGATIVE_Z" + }, + { + "targetName": "minecraft:bottom", + "innerConnector": false, + "rotateConnector": false, + "name": "minecraft:bottom", + "pools": ["village/snowy/decor"], + "position": { + "x": -2, + "y": -1, + "z": 4 + }, + "direction": "NORTH_NEGATIVE_Z" + }, + { + "targetName": "minecraft:bottom", + "innerConnector": false, + "rotateConnector": false, + "name": "minecraft:bottom", + "pools": ["village/snowy/decor"], + "position": { + "x": 0, + "y": -1, + "z": -5 + }, + "direction": "NORTH_NEGATIVE_Z" + }, + { + "targetName": "minecraft:bottom", + "innerConnector": false, + "rotateConnector": false, + "name": "minecraft:bottom", + "pools": ["village/snowy/decor"], + "position": { + "x": 3, + "y": -1, + "z": 1 + }, + "direction": "NORTH_NEGATIVE_Z" + }, + { + "targetName": "minecraft:street", + "innerConnector": false, + "rotateConnector": false, + "name": "minecraft:street", + "pools": ["village/snowy/streets"], + "position": { + "x": -6, + "y": 0, + "z": 0 + }, + "direction": "WEST_NEGATIVE_X" + }, + { + "targetName": "minecraft:street", + "innerConnector": false, + "rotateConnector": false, + "name": "minecraft:street", + "pools": ["village/snowy/streets"], + "position": { + "x": -3, + "y": 0, + "z": -8 + }, + "direction": "NORTH_NEGATIVE_Z" + }, + { + "targetName": "minecraft:building_entrance", + "innerConnector": true, + "rotateConnector": false, + "name": "minecraft:building_entrance", + "pools": ["village/snowy/houses"], + "position": { + "x": -2, + "y": 0, + "z": -2 + }, + "direction": "EAST_POSITIVE_X" + } ], - "overStilt": 0, - "chance": 1, - "meld": false, - "density": 1, - "edit": [], - "bottom": false, - "translateCenter": false, - "rotation": { - "yAxis": { - "min": 0, - "max": 0, - "interval": 90, - "enabled": true - }, - "xAxis": { - "min": 0, - "max": 0, - "interval": 0, - "enabled": false - }, - "zAxis": { - "min": 0, - "max": 0, - "interval": 0, - "enabled": false - }, - "enabled": true + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:sand"}, + {"block": "minecraft:sandstone"} + ], + "marker": "villager" + }], + "overStilt": 0, + "chance": 1, + "meld": false, + "density": 1, + "edit": [], + "bottom": false, + "translateCenter": false, + "rotation": { + "yAxis": { + "min": 0, + "max": 0, + "interval": 90, + "enabled": true + }, + "xAxis": { + "min": 0, + "max": 0, + "interval": 0, + "enabled": false + }, + "zAxis": { + "min": 0, + "max": 0, + "interval": 0, + "enabled": false + }, + "enabled": true + }, + "boreExtendMinY": -1, + "smartBore": false, + "waterloggable": false, + "bore": false, + "translate": { + "yRandom": 0, + "x": 0, + "y": 0, + "z": 0 + }, + "mode": "FAST_MAX_HEIGHT", + "carvingSupport": "SURFACE_ONLY", + "snow": 0, + "underwater": false, + "place": [], + "boreExtendMaxY": 0, + "onwater": false, + "clamp": { + "minimumHeight": 0, + "maximumHeight": 255 + }, + "warp": { + "multiplier": 1, + "style": "FLAT", + "zoom": 1, + "maxFractureAccuracy": false, + "exponent": 1 + } }, - "boreExtendMinY": -1, - "smartBore": false, - "waterloggable": false, - "bore": false, - "translate": { - "yRandom": 0, - "x": 0, - "y": 0, - "z": 0 - }, - "mode": "FAST_MAX_HEIGHT", - "carvingSupport": "SURFACE_ONLY", - "snow": 0, - "underwater": false, - "place": [], - "boreExtendMaxY": 0, - "onwater": false, - "clamp": { - "minimumHeight": 0, - "maximumHeight": 255 - }, - "warp": { - "multiplier": 1, - "style": "FLAT", - "zoom": 1, - "maxFractureAccuracy": false, - "exponent": 1 - } - }, - "object": "jigsaw/village/snowy/streets/corner_01" + "object": "jigsaw/village/snowy/streets/corner_01" } diff --git a/jigsaw-pieces/village/snowy/streets/corner_02.json b/jigsaw-pieces/village/snowy/streets/corner_02.json index 4cd6ca68..e807cd13 100644 --- a/jigsaw-pieces/village/snowy/streets/corner_02.json +++ b/jigsaw-pieces/village/snowy/streets/corner_02.json @@ -3,7 +3,6 @@ { "targetName": "village/snowy/villagers/unemployed", "entityCount": 3, - "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/snowy/streets/corner_03.json b/jigsaw-pieces/village/snowy/streets/corner_03.json index fcfa29d5..227c907b 100644 --- a/jigsaw-pieces/village/snowy/streets/corner_03.json +++ b/jigsaw-pieces/village/snowy/streets/corner_03.json @@ -3,7 +3,6 @@ { "targetName": "village/snowy/villagers/unemployed", "entityCount": 3, - "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/snowy/streets/straight_01.json b/jigsaw-pieces/village/snowy/streets/straight_01.json index 6c987998..bb656c4f 100644 --- a/jigsaw-pieces/village/snowy/streets/straight_01.json +++ b/jigsaw-pieces/village/snowy/streets/straight_01.json @@ -3,7 +3,6 @@ { "targetName": "village/snowy/villagers/unemployed", "entityCount": 3, - "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/snowy/streets/straight_02.json b/jigsaw-pieces/village/snowy/streets/straight_02.json index 3451959f..c5eccb5e 100644 --- a/jigsaw-pieces/village/snowy/streets/straight_02.json +++ b/jigsaw-pieces/village/snowy/streets/straight_02.json @@ -3,7 +3,6 @@ { "targetName": "village/snowy/villagers/unemployed", "entityCount": 3, - "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/snowy/streets/straight_03.json b/jigsaw-pieces/village/snowy/streets/straight_03.json index 5f863785..21b6290a 100644 --- a/jigsaw-pieces/village/snowy/streets/straight_03.json +++ b/jigsaw-pieces/village/snowy/streets/straight_03.json @@ -3,7 +3,6 @@ { "targetName": "village/snowy/villagers/unemployed", "entityCount": 3, - "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/snowy/streets/straight_04.json b/jigsaw-pieces/village/snowy/streets/straight_04.json index 9567e785..5e713c5a 100644 --- a/jigsaw-pieces/village/snowy/streets/straight_04.json +++ b/jigsaw-pieces/village/snowy/streets/straight_04.json @@ -3,7 +3,6 @@ { "targetName": "village/snowy/villagers/unemployed", "entityCount": 3, - "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/snowy/streets/straight_06.json b/jigsaw-pieces/village/snowy/streets/straight_06.json index 9f58f260..7b6bc290 100644 --- a/jigsaw-pieces/village/snowy/streets/straight_06.json +++ b/jigsaw-pieces/village/snowy/streets/straight_06.json @@ -3,7 +3,6 @@ { "targetName": "village/snowy/villagers/unemployed", "entityCount": 3, - "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/snowy/streets/straight_08.json b/jigsaw-pieces/village/snowy/streets/straight_08.json index 3886f8ae..da08b3ed 100644 --- a/jigsaw-pieces/village/snowy/streets/straight_08.json +++ b/jigsaw-pieces/village/snowy/streets/straight_08.json @@ -3,7 +3,6 @@ { "targetName": "village/snowy/villagers/unemployed", "entityCount": 3, - "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/snowy/streets/turn_01.json b/jigsaw-pieces/village/snowy/streets/turn_01.json index 4948dd98..2b9cda7a 100644 --- a/jigsaw-pieces/village/snowy/streets/turn_01.json +++ b/jigsaw-pieces/village/snowy/streets/turn_01.json @@ -3,7 +3,6 @@ { "targetName": "village/snowy/villagers/unemployed", "entityCount": 3, - "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/snowy/town_centers/snowy_meeting_point_1.json b/jigsaw-pieces/village/snowy/town_centers/snowy_meeting_point_1.json index 799f9af1..25ffd14f 100644 --- a/jigsaw-pieces/village/snowy/town_centers/snowy_meeting_point_1.json +++ b/jigsaw-pieces/village/snowy/town_centers/snowy_meeting_point_1.json @@ -19,7 +19,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": -5, "y": -4, @@ -85,7 +84,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": 2, "y": -4, diff --git a/jigsaw-pieces/village/snowy/town_centers/snowy_meeting_point_2.json b/jigsaw-pieces/village/snowy/town_centers/snowy_meeting_point_2.json index 905cf874..cc048eb8 100644 --- a/jigsaw-pieces/village/snowy/town_centers/snowy_meeting_point_2.json +++ b/jigsaw-pieces/village/snowy/town_centers/snowy_meeting_point_2.json @@ -19,7 +19,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": -4, "y": -2, @@ -59,7 +58,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": -2, "y": -2, diff --git a/jigsaw-pieces/village/snowy/town_centers/snowy_meeting_point_3.json b/jigsaw-pieces/village/snowy/town_centers/snowy_meeting_point_3.json index abbeacec..d80884fb 100644 --- a/jigsaw-pieces/village/snowy/town_centers/snowy_meeting_point_3.json +++ b/jigsaw-pieces/village/snowy/town_centers/snowy_meeting_point_3.json @@ -32,7 +32,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": -2, "y": -3, @@ -46,7 +45,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": -2, "y": -3, diff --git a/jigsaw-pieces/village/snowy/villagers/unemployed.json b/jigsaw-pieces/village/snowy/villagers/unemployed.json index 31f34922..8de179cb 100644 --- a/jigsaw-pieces/village/snowy/villagers/unemployed.json +++ b/jigsaw-pieces/village/snowy/villagers/unemployed.json @@ -10,7 +10,6 @@ "y": -1, "z": 0 }, - "entityPosition": { "x": 0, "y": 2, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_animal_pen_1.json b/jigsaw-pieces/village/taiga/houses/taiga_animal_pen_1.json index 380e71c9..7253e6b1 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_animal_pen_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_animal_pen_1.json @@ -41,24 +41,16 @@ } ], "placementOptions": { - "markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:stripped_spruce_log" - }, - { - "block": "minecraft:spruce_planks" - } - ], - "marker": "villager" - } - ], + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:stripped_spruce_log"}, + {"block": "minecraft:spruce_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_armorer_2.json b/jigsaw-pieces/village/taiga/houses/taiga_armorer_2.json index 1ea4b7f3..54ef701b 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_armorer_2.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_armorer_2.json @@ -40,24 +40,17 @@ "direction": "WEST_NEGATIVE_X" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:stripped_spruce_log" - }, - { - "block": "minecraft:spruce_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:stripped_spruce_log"}, + {"block": "minecraft:spruce_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_armorer_house_1.json b/jigsaw-pieces/village/taiga/houses/taiga_armorer_house_1.json index a3d0fd88..f788a299 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_armorer_house_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_armorer_house_1.json @@ -12,24 +12,17 @@ }, "direction": "WEST_NEGATIVE_X" }], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:stripped_spruce_log" - }, - { - "block": "minecraft:spruce_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:stripped_spruce_log"}, + {"block": "minecraft:spruce_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_butcher_shop_1.json b/jigsaw-pieces/village/taiga/houses/taiga_butcher_shop_1.json index 1c3551c5..a1feb4c5 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_butcher_shop_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_butcher_shop_1.json @@ -27,24 +27,17 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:stripped_spruce_log" - }, - { - "block": "minecraft:spruce_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:stripped_spruce_log"}, + {"block": "minecraft:spruce_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_cartographer_house_1.json b/jigsaw-pieces/village/taiga/houses/taiga_cartographer_house_1.json index 6a6f09c3..cdf72713 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_cartographer_house_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_cartographer_house_1.json @@ -27,24 +27,17 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:stripped_spruce_log" - }, - { - "block": "minecraft:spruce_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:stripped_spruce_log"}, + {"block": "minecraft:spruce_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_fisher_cottage_1.json b/jigsaw-pieces/village/taiga/houses/taiga_fisher_cottage_1.json index e8264974..d7af3ab9 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_fisher_cottage_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_fisher_cottage_1.json @@ -66,24 +66,17 @@ "direction": "SOUTH_POSITIVE_Z" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:stripped_spruce_log" - }, - { - "block": "minecraft:spruce_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:stripped_spruce_log"}, + {"block": "minecraft:spruce_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_fletcher_house_1.json b/jigsaw-pieces/village/taiga/houses/taiga_fletcher_house_1.json index c1fac293..57934237 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_fletcher_house_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_fletcher_house_1.json @@ -12,24 +12,17 @@ }, "direction": "WEST_NEGATIVE_X" }], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:stripped_spruce_log" - }, - { - "block": "minecraft:spruce_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:stripped_spruce_log"}, + {"block": "minecraft:spruce_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_large_farm_1.json b/jigsaw-pieces/village/taiga/houses/taiga_large_farm_1.json index d7befeec..bbc0a8c6 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_large_farm_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_large_farm_1.json @@ -27,24 +27,17 @@ "direction": "WEST_NEGATIVE_X" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:stripped_spruce_log" - }, - { - "block": "minecraft:spruce_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:stripped_spruce_log"}, + {"block": "minecraft:spruce_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_large_farm_2.json b/jigsaw-pieces/village/taiga/houses/taiga_large_farm_2.json index 7a915031..05dead1c 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_large_farm_2.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_large_farm_2.json @@ -27,24 +27,17 @@ "direction": "SOUTH_POSITIVE_Z" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:stripped_spruce_log" - }, - { - "block": "minecraft:spruce_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:stripped_spruce_log"}, + {"block": "minecraft:spruce_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_library_1.json b/jigsaw-pieces/village/taiga/houses/taiga_library_1.json index 8e555892..2c45ce0c 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_library_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_library_1.json @@ -53,24 +53,17 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:stripped_spruce_log" - }, - { - "block": "minecraft:spruce_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:stripped_spruce_log"}, + {"block": "minecraft:spruce_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_masons_house_1.json b/jigsaw-pieces/village/taiga/houses/taiga_masons_house_1.json index d710e367..d16cddaf 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_masons_house_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_masons_house_1.json @@ -12,24 +12,17 @@ }, "direction": "WEST_NEGATIVE_X" }], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:stripped_spruce_log" - }, - { - "block": "minecraft:spruce_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:stripped_spruce_log"}, + {"block": "minecraft:spruce_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_medium_house_1.json b/jigsaw-pieces/village/taiga/houses/taiga_medium_house_1.json index 80ea3ebc..ce90f633 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_medium_house_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_medium_house_1.json @@ -19,7 +19,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": -2, "y": 0, @@ -33,7 +32,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": -1, "y": 0, @@ -42,24 +40,17 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:stripped_spruce_log" - }, - { - "block": "minecraft:spruce_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:stripped_spruce_log"}, + {"block": "minecraft:spruce_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_medium_house_2.json b/jigsaw-pieces/village/taiga/houses/taiga_medium_house_2.json index 647970b7..e2348c0f 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_medium_house_2.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_medium_house_2.json @@ -6,7 +6,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": -1, "y": -5, @@ -33,7 +32,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": 0, "y": -1, @@ -42,24 +40,17 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:stripped_spruce_log" - }, - { - "block": "minecraft:spruce_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:stripped_spruce_log"}, + {"block": "minecraft:spruce_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_medium_house_3.json b/jigsaw-pieces/village/taiga/houses/taiga_medium_house_3.json index c6300961..a08f310d 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_medium_house_3.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_medium_house_3.json @@ -32,7 +32,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": 0, "y": -3, @@ -46,7 +45,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": 0, "y": -3, @@ -68,24 +66,17 @@ "direction": "WEST_NEGATIVE_X" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:stripped_spruce_log" - }, - { - "block": "minecraft:spruce_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:stripped_spruce_log"}, + {"block": "minecraft:spruce_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_medium_house_4.json b/jigsaw-pieces/village/taiga/houses/taiga_medium_house_4.json index 180afe4f..1664d350 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_medium_house_4.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_medium_house_4.json @@ -6,7 +6,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": -1, "y": -3, @@ -20,7 +19,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": 2, "y": -3, @@ -42,24 +40,17 @@ "direction": "SOUTH_POSITIVE_Z" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:stripped_spruce_log" - }, - { - "block": "minecraft:spruce_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:stripped_spruce_log"}, + {"block": "minecraft:spruce_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_shepherds_house_1.json b/jigsaw-pieces/village/taiga/houses/taiga_shepherds_house_1.json index fab73075..1c4c921a 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_shepherds_house_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_shepherds_house_1.json @@ -40,24 +40,17 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:stripped_spruce_log" - }, - { - "block": "minecraft:spruce_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:stripped_spruce_log"}, + {"block": "minecraft:spruce_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_small_farm_1.json b/jigsaw-pieces/village/taiga/houses/taiga_small_farm_1.json index 52910d2e..71da018a 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_small_farm_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_small_farm_1.json @@ -27,24 +27,17 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:stripped_spruce_log" - }, - { - "block": "minecraft:spruce_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:stripped_spruce_log"}, + {"block": "minecraft:spruce_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_small_house_1.json b/jigsaw-pieces/village/taiga/houses/taiga_small_house_1.json index 2d5b87b2..feb75597 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_small_house_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_small_house_1.json @@ -6,7 +6,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": -1, "y": -3, @@ -28,24 +27,17 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:stripped_spruce_log" - }, - { - "block": "minecraft:spruce_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:stripped_spruce_log"}, + {"block": "minecraft:spruce_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_small_house_2.json b/jigsaw-pieces/village/taiga/houses/taiga_small_house_2.json index 14a39f4b..cfb280a0 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_small_house_2.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_small_house_2.json @@ -19,7 +19,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": 0, "y": -3, @@ -28,24 +27,17 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:stripped_spruce_log" - }, - { - "block": "minecraft:spruce_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:stripped_spruce_log"}, + {"block": "minecraft:spruce_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_small_house_3.json b/jigsaw-pieces/village/taiga/houses/taiga_small_house_3.json index 882b8f99..5cbc49d1 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_small_house_3.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_small_house_3.json @@ -19,7 +19,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": 0, "y": -3, @@ -28,24 +27,17 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:stripped_spruce_log" - }, - { - "block": "minecraft:spruce_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:stripped_spruce_log"}, + {"block": "minecraft:spruce_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_small_house_4.json b/jigsaw-pieces/village/taiga/houses/taiga_small_house_4.json index 4d9450e8..684d0747 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_small_house_4.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_small_house_4.json @@ -19,7 +19,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": -1, "y": -3, @@ -41,24 +40,17 @@ "direction": "SOUTH_POSITIVE_Z" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:stripped_spruce_log" - }, - { - "block": "minecraft:spruce_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:stripped_spruce_log"}, + {"block": "minecraft:spruce_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_small_house_5.json b/jigsaw-pieces/village/taiga/houses/taiga_small_house_5.json index 113944e0..0945dee5 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_small_house_5.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_small_house_5.json @@ -19,7 +19,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": 0, "y": -3, @@ -28,24 +27,17 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:stripped_spruce_log" - }, - { - "block": "minecraft:spruce_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:stripped_spruce_log"}, + {"block": "minecraft:spruce_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_tannery_1.json b/jigsaw-pieces/village/taiga/houses/taiga_tannery_1.json index 84208f1b..21b079ca 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_tannery_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_tannery_1.json @@ -12,24 +12,17 @@ }, "direction": "WEST_NEGATIVE_X" }], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:stripped_spruce_log" - }, - { - "block": "minecraft:spruce_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:stripped_spruce_log"}, + {"block": "minecraft:spruce_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_temple_1.json b/jigsaw-pieces/village/taiga/houses/taiga_temple_1.json index 4483bbc3..649d6032 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_temple_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_temple_1.json @@ -12,24 +12,17 @@ }, "direction": "SOUTH_POSITIVE_Z" }], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:stripped_spruce_log" - }, - { - "block": "minecraft:spruce_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:stripped_spruce_log"}, + {"block": "minecraft:spruce_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_tool_smith_1.json b/jigsaw-pieces/village/taiga/houses/taiga_tool_smith_1.json index 2b90d2b6..cfefb44c 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_tool_smith_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_tool_smith_1.json @@ -40,24 +40,17 @@ "direction": "SOUTH_POSITIVE_Z" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:stripped_spruce_log" - }, - { - "block": "minecraft:spruce_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:stripped_spruce_log"}, + {"block": "minecraft:spruce_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_weaponsmith_1.json b/jigsaw-pieces/village/taiga/houses/taiga_weaponsmith_1.json index 321e4a52..12155e2b 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_weaponsmith_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_weaponsmith_1.json @@ -12,24 +12,17 @@ }, "direction": "NORTH_NEGATIVE_Z" }], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:stripped_spruce_log" - }, - { - "block": "minecraft:spruce_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:stripped_spruce_log"}, + {"block": "minecraft:spruce_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_weaponsmith_2.json b/jigsaw-pieces/village/taiga/houses/taiga_weaponsmith_2.json index 7ff3c594..ee736a3a 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_weaponsmith_2.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_weaponsmith_2.json @@ -27,24 +27,17 @@ "direction": "NORTH_NEGATIVE_Z" } ], - "placementOptions": {"markers": [ - { - "emptyAbove": true, - "maximumMarkers": 1, - "mark": [ - { - "block": "minecraft:grass_block" - }, - { - "block": "minecraft:stripped_spruce_log" - }, - { - "block": "minecraft:spruce_planks" - } - ], - "marker": "villager" - } - ], + "placementOptions": { + "markers": [{ + "emptyAbove": true, + "maximumMarkers": 1, + "mark": [ + {"block": "minecraft:grass_block"}, + {"block": "minecraft:stripped_spruce_log"}, + {"block": "minecraft:spruce_planks"} + ], + "marker": "villager" + }], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/village/taiga/streets/corner_01.json b/jigsaw-pieces/village/taiga/streets/corner_01.json index a5e9e5eb..a8acfebe 100644 --- a/jigsaw-pieces/village/taiga/streets/corner_01.json +++ b/jigsaw-pieces/village/taiga/streets/corner_01.json @@ -3,7 +3,6 @@ { "targetName": "village/taiga/villagers/unemployed", "entityCount": 3, - "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/taiga/streets/corner_02.json b/jigsaw-pieces/village/taiga/streets/corner_02.json index 04337005..3b661636 100644 --- a/jigsaw-pieces/village/taiga/streets/corner_02.json +++ b/jigsaw-pieces/village/taiga/streets/corner_02.json @@ -3,7 +3,6 @@ { "targetName": "village/taiga/villagers/unemployed", "entityCount": 3, - "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/taiga/streets/corner_03.json b/jigsaw-pieces/village/taiga/streets/corner_03.json index 5918ccf4..2043d03c 100644 --- a/jigsaw-pieces/village/taiga/streets/corner_03.json +++ b/jigsaw-pieces/village/taiga/streets/corner_03.json @@ -3,7 +3,6 @@ { "targetName": "village/taiga/villagers/unemployed", "entityCount": 3, - "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/taiga/streets/straight_01.json b/jigsaw-pieces/village/taiga/streets/straight_01.json index 7bb08cc7..eef47e55 100644 --- a/jigsaw-pieces/village/taiga/streets/straight_01.json +++ b/jigsaw-pieces/village/taiga/streets/straight_01.json @@ -3,7 +3,6 @@ { "targetName": "village/taiga/villagers/unemployed", "entityCount": 3, - "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/taiga/streets/straight_02.json b/jigsaw-pieces/village/taiga/streets/straight_02.json index 23dc106a..df7d2e49 100644 --- a/jigsaw-pieces/village/taiga/streets/straight_02.json +++ b/jigsaw-pieces/village/taiga/streets/straight_02.json @@ -3,7 +3,6 @@ { "targetName": "village/taiga/villagers/unemployed", "entityCount": 3, - "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/taiga/streets/straight_03.json b/jigsaw-pieces/village/taiga/streets/straight_03.json index 4831b258..24220cec 100644 --- a/jigsaw-pieces/village/taiga/streets/straight_03.json +++ b/jigsaw-pieces/village/taiga/streets/straight_03.json @@ -3,7 +3,6 @@ { "targetName": "village/taiga/villagers/unemployed", "entityCount": 3, - "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/taiga/streets/straight_04.json b/jigsaw-pieces/village/taiga/streets/straight_04.json index 929fcf25..50536b17 100644 --- a/jigsaw-pieces/village/taiga/streets/straight_04.json +++ b/jigsaw-pieces/village/taiga/streets/straight_04.json @@ -3,7 +3,6 @@ { "targetName": "village/taiga/villagers/unemployed", "entityCount": 3, - "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/taiga/streets/straight_05.json b/jigsaw-pieces/village/taiga/streets/straight_05.json index 3c4f37e1..696e884c 100644 --- a/jigsaw-pieces/village/taiga/streets/straight_05.json +++ b/jigsaw-pieces/village/taiga/streets/straight_05.json @@ -3,7 +3,6 @@ { "targetName": "village/taiga/villagers/unemployed", "entityCount": 3, - "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/taiga/streets/straight_06.json b/jigsaw-pieces/village/taiga/streets/straight_06.json index 11212d26..f0a7654c 100644 --- a/jigsaw-pieces/village/taiga/streets/straight_06.json +++ b/jigsaw-pieces/village/taiga/streets/straight_06.json @@ -3,7 +3,6 @@ { "targetName": "village/taiga/villagers/unemployed", "entityCount": 3, - "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/taiga/streets/turn_01.json b/jigsaw-pieces/village/taiga/streets/turn_01.json index 3d7d3451..b2d88317 100644 --- a/jigsaw-pieces/village/taiga/streets/turn_01.json +++ b/jigsaw-pieces/village/taiga/streets/turn_01.json @@ -3,7 +3,6 @@ { "targetName": "village/taiga/villagers/unemployed", "entityCount": 3, - "innerConnector": true, "rotateConnector": false, "name": "villager", diff --git a/jigsaw-pieces/village/taiga/taiga_decoration_2.json b/jigsaw-pieces/village/taiga/taiga_decoration_2.json index d17a8b69..ab563101 100644 --- a/jigsaw-pieces/village/taiga/taiga_decoration_2.json +++ b/jigsaw-pieces/village/taiga/taiga_decoration_2.json @@ -1,76 +1,74 @@ { - "connectors": [ - { - "targetName": "minecraft:bottom", - "innerConnector": false, - "rotateConnector": false, - "name": "minecraft:bottom", - "pools": [], - "position": { - "x": 0, - "y": -1, - "z": 0 - }, - "direction": "SOUTH_POSITIVE_Z" - } - ], - "placementOptions": { - "overStilt": 0, - "chance": 1, - "meld": false, - "density": 1, - "edit": [], - "bottom": false, - "translateCenter": false, - "rotation": { - "yAxis": { - "min": 0, - "max": 0, - "interval": 90, - "enabled": true - }, - "xAxis": { - "min": 0, - "max": 0, - "interval": 0, - "enabled": false - }, - "zAxis": { - "min": 0, - "max": 0, - "interval": 0, - "enabled": false - }, - "enabled": true + "connectors": [{ + "targetName": "minecraft:bottom", + "innerConnector": false, + "rotateConnector": false, + "name": "minecraft:bottom", + "pools": [], + "position": { + "x": 0, + "y": -1, + "z": 0 + }, + "direction": "SOUTH_POSITIVE_Z" + }], + "placementOptions": { + "overStilt": 0, + "chance": 1, + "meld": false, + "density": 1, + "edit": [], + "bottom": false, + "translateCenter": false, + "rotation": { + "yAxis": { + "min": 0, + "max": 0, + "interval": 90, + "enabled": true + }, + "xAxis": { + "min": 0, + "max": 0, + "interval": 0, + "enabled": false + }, + "zAxis": { + "min": 0, + "max": 0, + "interval": 0, + "enabled": false + }, + "enabled": true + }, + "boreExtendMinY": -1, + "smartBore": false, + "waterloggable": false, + "bore": false, + "translate": { + "yRandom": 0, + "x": 0, + "y": -1, + "z": 0 + }, + "mode": "FAST_MAX_HEIGHT", + "carvingSupport": "SURFACE_ONLY", + "snow": 0, + "underwater": false, + "place": [], + "boreExtendMaxY": 0, + "onwater": false, + "clamp": { + "minimumHeight": 0, + "maximumHeight": 255 + }, + "warp": { + "multiplier": 1, + "style": "FLAT", + "zoom": 1, + "maxFractureAccuracy": false, + "exponent": 1 + } }, - "boreExtendMinY": -1, - "smartBore": false, - "waterloggable": false, - "bore": false, - "translate": { - "yRandom": 0, - "x": 0, - "y": -1, - "z": 0 - }, - "mode": "FAST_MAX_HEIGHT", - "carvingSupport": "SURFACE_ONLY", - "snow": 0, - "underwater": false, - "place": [], - "boreExtendMaxY": 0, - "onwater": false, - "clamp": { - "minimumHeight": 0, - "maximumHeight": 255 - }, - "warp": { - "multiplier": 1, - "style": "FLAT", - "zoom": 1, - "maxFractureAccuracy": false, - "exponent": 1 - } - }, - "object": "jigsaw/village/taiga/taiga_decoration_2" + "object": "jigsaw/village/taiga/taiga_decoration_2" } diff --git a/jigsaw-pieces/village/taiga/town_centers/taiga_meeting_point_1.json b/jigsaw-pieces/village/taiga/town_centers/taiga_meeting_point_1.json index 5d4c3adf..d00d7d06 100644 --- a/jigsaw-pieces/village/taiga/town_centers/taiga_meeting_point_1.json +++ b/jigsaw-pieces/village/taiga/town_centers/taiga_meeting_point_1.json @@ -6,7 +6,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": -9, "y": -1, @@ -59,7 +58,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": -4, "y": -1, @@ -73,7 +71,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": -2, "y": -1, diff --git a/jigsaw-pieces/village/taiga/town_centers/taiga_meeting_point_2.json b/jigsaw-pieces/village/taiga/town_centers/taiga_meeting_point_2.json index 8d6db66e..eed9c77c 100644 --- a/jigsaw-pieces/village/taiga/town_centers/taiga_meeting_point_2.json +++ b/jigsaw-pieces/village/taiga/town_centers/taiga_meeting_point_2.json @@ -19,7 +19,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": -4, "y": -2, @@ -46,7 +45,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": -3, "y": -2, @@ -86,7 +84,6 @@ "rotateConnector": false, "name": "minecraft:bottom", "entityCount": 3, - "position": { "x": 4, "y": -2, diff --git a/jigsaw-pieces/village/taiga/villagers/unemployed.json b/jigsaw-pieces/village/taiga/villagers/unemployed.json index fc07dfac..d8df1829 100644 --- a/jigsaw-pieces/village/taiga/villagers/unemployed.json +++ b/jigsaw-pieces/village/taiga/villagers/unemployed.json @@ -10,7 +10,6 @@ "y": -1, "z": 0 }, - "entityPosition": { "x": 0, "y": 2, diff --git a/jigsaw-structures/igloo.json b/jigsaw-structures/igloo.json index e9687595..5639e7df 100644 --- a/jigsaw-structures/igloo.json +++ b/jigsaw-structures/igloo.json @@ -1,5 +1,4 @@ { - "maxDepth": 3, "pieces": [ "igloo/top1", diff --git a/jigsaw-structures/mush-huts.json b/jigsaw-structures/mush-huts.json index 4efcc7ef..e606d736 100644 --- a/jigsaw-structures/mush-huts.json +++ b/jigsaw-structures/mush-huts.json @@ -2,7 +2,5 @@ "pieces": ["mushhut/paths/path4"], "maxDepth": 5, "terminate": true, - "feature": { - "entitySpawners": ["villager"] - } + "feature": {"entitySpawners": ["villager"]} } diff --git a/jigsaw-structures/stronghold.json b/jigsaw-structures/stronghold.json index 65ff064f..4bc2ee4e 100644 --- a/jigsaw-structures/stronghold.json +++ b/jigsaw-structures/stronghold.json @@ -3,7 +3,5 @@ "pieces": ["stronghold/portal/main"], "terminate": false, "lockY": 14, - "feature": { - "entitySpawners": ["silverfish"] - } + "feature": {"entitySpawners": ["silverfish"]} } diff --git a/jigsaw-structures/village-jap.json b/jigsaw-structures/village-jap.json index f26f80e5..6949cd0b 100644 --- a/jigsaw-structures/village-jap.json +++ b/jigsaw-structures/village-jap.json @@ -1,7 +1,6 @@ { "maxDepth": 5, "terminate": true, - "pieces": [ "houses/jap/j5", "houses/jap/j4", diff --git a/jigsaw-structures/village-savanna.json b/jigsaw-structures/village-savanna.json index 67a4565f..1b56abde 100644 --- a/jigsaw-structures/village-savanna.json +++ b/jigsaw-structures/village-savanna.json @@ -1,7 +1,6 @@ { "maxDepth": 3, "terminate": true, - "pieces": [ "village/savanna/town_centers/savanna_meeting_point_1", "village/savanna/town_centers/savanna_meeting_point_2", diff --git a/jigsaw-structures/village-snowy.json b/jigsaw-structures/village-snowy.json index 9cc23994..8d33c895 100644 --- a/jigsaw-structures/village-snowy.json +++ b/jigsaw-structures/village-snowy.json @@ -1,7 +1,6 @@ { "maxDepth": 5, "terminate": true, - "pieces": [ "village/snowy/town_centers/snowy_meeting_point_1", "village/snowy/town_centers/snowy_meeting_point_2", diff --git a/jigsaw-structures/village-temperate.json b/jigsaw-structures/village-temperate.json index be6b81d8..a71fc4b4 100644 --- a/jigsaw-structures/village-temperate.json +++ b/jigsaw-structures/village-temperate.json @@ -1,7 +1,6 @@ { "maxDepth": 5, "terminate": true, - "pieces": [ "village/plains/town_centers/plains_fountain_01", "village/plains/town_centers/plains_meeting_point_1", diff --git a/jigsaw-structures/village-tundra.json b/jigsaw-structures/village-tundra.json index 543cfce4..a65f209d 100644 --- a/jigsaw-structures/village-tundra.json +++ b/jigsaw-structures/village-tundra.json @@ -1,7 +1,6 @@ { "maxDepth": 5, "terminate": true, - "pieces": [ "village/taiga/town_centers/taiga_meeting_point_1", "village/taiga/town_centers/taiga_meeting_point_2" diff --git a/markers/villager.json b/markers/villager.json index 7ed43ffe..aa258d6e 100644 --- a/markers/villager.json +++ b/markers/villager.json @@ -1,6 +1,4 @@ { "removeOnChange": true, - "spawners": [ - "villager" - ] -} \ No newline at end of file + "spawners": ["villager"] +} From 2ceb4d7ab5bbc3721ccacd99fbcefcce8fdb2f96 Mon Sep 17 00:00:00 2001 From: Brian Fopiano Date: Sun, 12 Sep 2021 14:31:45 -0700 Subject: [PATCH 21/30] Forgot cobble --- jigsaw-pieces/village/taiga/houses/taiga_animal_pen_1.json | 3 ++- jigsaw-pieces/village/taiga/houses/taiga_armorer_2.json | 5 +++-- .../village/taiga/houses/taiga_armorer_house_1.json | 5 +++-- jigsaw-pieces/village/taiga/houses/taiga_butcher_shop_1.json | 5 +++-- .../village/taiga/houses/taiga_cartographer_house_1.json | 5 +++-- .../village/taiga/houses/taiga_fisher_cottage_1.json | 5 +++-- .../village/taiga/houses/taiga_fletcher_house_1.json | 5 +++-- jigsaw-pieces/village/taiga/houses/taiga_large_farm_1.json | 5 +++-- jigsaw-pieces/village/taiga/houses/taiga_large_farm_2.json | 5 +++-- jigsaw-pieces/village/taiga/houses/taiga_library_1.json | 5 +++-- jigsaw-pieces/village/taiga/houses/taiga_masons_house_1.json | 5 +++-- jigsaw-pieces/village/taiga/houses/taiga_medium_house_1.json | 5 +++-- jigsaw-pieces/village/taiga/houses/taiga_medium_house_2.json | 5 +++-- jigsaw-pieces/village/taiga/houses/taiga_medium_house_3.json | 5 +++-- jigsaw-pieces/village/taiga/houses/taiga_medium_house_4.json | 5 +++-- .../village/taiga/houses/taiga_shepherds_house_1.json | 5 +++-- jigsaw-pieces/village/taiga/houses/taiga_small_farm_1.json | 5 +++-- jigsaw-pieces/village/taiga/houses/taiga_small_house_1.json | 5 +++-- jigsaw-pieces/village/taiga/houses/taiga_small_house_2.json | 5 +++-- jigsaw-pieces/village/taiga/houses/taiga_small_house_3.json | 5 +++-- jigsaw-pieces/village/taiga/houses/taiga_small_house_4.json | 5 +++-- jigsaw-pieces/village/taiga/houses/taiga_small_house_5.json | 5 +++-- jigsaw-pieces/village/taiga/houses/taiga_tannery_1.json | 5 +++-- jigsaw-pieces/village/taiga/houses/taiga_temple_1.json | 5 +++-- jigsaw-pieces/village/taiga/houses/taiga_tool_smith_1.json | 5 +++-- jigsaw-pieces/village/taiga/houses/taiga_weaponsmith_1.json | 5 +++-- jigsaw-pieces/village/taiga/houses/taiga_weaponsmith_2.json | 5 +++-- 27 files changed, 80 insertions(+), 53 deletions(-) diff --git a/jigsaw-pieces/village/taiga/houses/taiga_animal_pen_1.json b/jigsaw-pieces/village/taiga/houses/taiga_animal_pen_1.json index 7253e6b1..633f5e30 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_animal_pen_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_animal_pen_1.json @@ -47,7 +47,8 @@ "mark": [ {"block": "minecraft:grass_block"}, {"block": "minecraft:stripped_spruce_log"}, - {"block": "minecraft:spruce_planks"} + {"block": "minecraft:spruce_planks"}, + {"block": "minecraft:cobblestone"} ], "marker": "villager" }], diff --git a/jigsaw-pieces/village/taiga/houses/taiga_armorer_2.json b/jigsaw-pieces/village/taiga/houses/taiga_armorer_2.json index 54ef701b..b7729876 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_armorer_2.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_armorer_2.json @@ -41,13 +41,14 @@ } ], "placementOptions": { - "markers": [{ + "markers": [{ "emptyAbove": true, "maximumMarkers": 1, "mark": [ {"block": "minecraft:grass_block"}, {"block": "minecraft:stripped_spruce_log"}, - {"block": "minecraft:spruce_planks"} + {"block": "minecraft:spruce_planks"}, + {"block": "minecraft:cobblestone"} ], "marker": "villager" }], diff --git a/jigsaw-pieces/village/taiga/houses/taiga_armorer_house_1.json b/jigsaw-pieces/village/taiga/houses/taiga_armorer_house_1.json index f788a299..8903d83f 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_armorer_house_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_armorer_house_1.json @@ -13,13 +13,14 @@ "direction": "WEST_NEGATIVE_X" }], "placementOptions": { - "markers": [{ + "markers": [{ "emptyAbove": true, "maximumMarkers": 1, "mark": [ {"block": "minecraft:grass_block"}, {"block": "minecraft:stripped_spruce_log"}, - {"block": "minecraft:spruce_planks"} + {"block": "minecraft:spruce_planks"}, + {"block": "minecraft:cobblestone"} ], "marker": "villager" }], diff --git a/jigsaw-pieces/village/taiga/houses/taiga_butcher_shop_1.json b/jigsaw-pieces/village/taiga/houses/taiga_butcher_shop_1.json index a1feb4c5..27b526d2 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_butcher_shop_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_butcher_shop_1.json @@ -28,13 +28,14 @@ } ], "placementOptions": { - "markers": [{ + "markers": [{ "emptyAbove": true, "maximumMarkers": 1, "mark": [ {"block": "minecraft:grass_block"}, {"block": "minecraft:stripped_spruce_log"}, - {"block": "minecraft:spruce_planks"} + {"block": "minecraft:spruce_planks"}, + {"block": "minecraft:cobblestone"} ], "marker": "villager" }], diff --git a/jigsaw-pieces/village/taiga/houses/taiga_cartographer_house_1.json b/jigsaw-pieces/village/taiga/houses/taiga_cartographer_house_1.json index cdf72713..89178d82 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_cartographer_house_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_cartographer_house_1.json @@ -28,13 +28,14 @@ } ], "placementOptions": { - "markers": [{ + "markers": [{ "emptyAbove": true, "maximumMarkers": 1, "mark": [ {"block": "minecraft:grass_block"}, {"block": "minecraft:stripped_spruce_log"}, - {"block": "minecraft:spruce_planks"} + {"block": "minecraft:spruce_planks"}, + {"block": "minecraft:cobblestone"} ], "marker": "villager" }], diff --git a/jigsaw-pieces/village/taiga/houses/taiga_fisher_cottage_1.json b/jigsaw-pieces/village/taiga/houses/taiga_fisher_cottage_1.json index d7af3ab9..b49a0b3a 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_fisher_cottage_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_fisher_cottage_1.json @@ -67,13 +67,14 @@ } ], "placementOptions": { - "markers": [{ + "markers": [{ "emptyAbove": true, "maximumMarkers": 1, "mark": [ {"block": "minecraft:grass_block"}, {"block": "minecraft:stripped_spruce_log"}, - {"block": "minecraft:spruce_planks"} + {"block": "minecraft:spruce_planks"}, + {"block": "minecraft:cobblestone"} ], "marker": "villager" }], diff --git a/jigsaw-pieces/village/taiga/houses/taiga_fletcher_house_1.json b/jigsaw-pieces/village/taiga/houses/taiga_fletcher_house_1.json index 57934237..e4d2b298 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_fletcher_house_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_fletcher_house_1.json @@ -13,13 +13,14 @@ "direction": "WEST_NEGATIVE_X" }], "placementOptions": { - "markers": [{ + "markers": [{ "emptyAbove": true, "maximumMarkers": 1, "mark": [ {"block": "minecraft:grass_block"}, {"block": "minecraft:stripped_spruce_log"}, - {"block": "minecraft:spruce_planks"} + {"block": "minecraft:spruce_planks"}, + {"block": "minecraft:cobblestone"} ], "marker": "villager" }], diff --git a/jigsaw-pieces/village/taiga/houses/taiga_large_farm_1.json b/jigsaw-pieces/village/taiga/houses/taiga_large_farm_1.json index bbc0a8c6..5b6d0d81 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_large_farm_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_large_farm_1.json @@ -28,13 +28,14 @@ } ], "placementOptions": { - "markers": [{ + "markers": [{ "emptyAbove": true, "maximumMarkers": 1, "mark": [ {"block": "minecraft:grass_block"}, {"block": "minecraft:stripped_spruce_log"}, - {"block": "minecraft:spruce_planks"} + {"block": "minecraft:spruce_planks"}, + {"block": "minecraft:cobblestone"} ], "marker": "villager" }], diff --git a/jigsaw-pieces/village/taiga/houses/taiga_large_farm_2.json b/jigsaw-pieces/village/taiga/houses/taiga_large_farm_2.json index 05dead1c..002ff73e 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_large_farm_2.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_large_farm_2.json @@ -28,13 +28,14 @@ } ], "placementOptions": { - "markers": [{ + "markers": [{ "emptyAbove": true, "maximumMarkers": 1, "mark": [ {"block": "minecraft:grass_block"}, {"block": "minecraft:stripped_spruce_log"}, - {"block": "minecraft:spruce_planks"} + {"block": "minecraft:spruce_planks"}, + {"block": "minecraft:cobblestone"} ], "marker": "villager" }], diff --git a/jigsaw-pieces/village/taiga/houses/taiga_library_1.json b/jigsaw-pieces/village/taiga/houses/taiga_library_1.json index 2c45ce0c..9a8fea35 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_library_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_library_1.json @@ -54,13 +54,14 @@ } ], "placementOptions": { - "markers": [{ + "markers": [{ "emptyAbove": true, "maximumMarkers": 1, "mark": [ {"block": "minecraft:grass_block"}, {"block": "minecraft:stripped_spruce_log"}, - {"block": "minecraft:spruce_planks"} + {"block": "minecraft:spruce_planks"}, + {"block": "minecraft:cobblestone"} ], "marker": "villager" }], diff --git a/jigsaw-pieces/village/taiga/houses/taiga_masons_house_1.json b/jigsaw-pieces/village/taiga/houses/taiga_masons_house_1.json index d16cddaf..37ddb09e 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_masons_house_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_masons_house_1.json @@ -13,13 +13,14 @@ "direction": "WEST_NEGATIVE_X" }], "placementOptions": { - "markers": [{ + "markers": [{ "emptyAbove": true, "maximumMarkers": 1, "mark": [ {"block": "minecraft:grass_block"}, {"block": "minecraft:stripped_spruce_log"}, - {"block": "minecraft:spruce_planks"} + {"block": "minecraft:spruce_planks"}, + {"block": "minecraft:cobblestone"} ], "marker": "villager" }], diff --git a/jigsaw-pieces/village/taiga/houses/taiga_medium_house_1.json b/jigsaw-pieces/village/taiga/houses/taiga_medium_house_1.json index ce90f633..19b2800f 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_medium_house_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_medium_house_1.json @@ -41,13 +41,14 @@ } ], "placementOptions": { - "markers": [{ + "markers": [{ "emptyAbove": true, "maximumMarkers": 1, "mark": [ {"block": "minecraft:grass_block"}, {"block": "minecraft:stripped_spruce_log"}, - {"block": "minecraft:spruce_planks"} + {"block": "minecraft:spruce_planks"}, + {"block": "minecraft:cobblestone"} ], "marker": "villager" }], diff --git a/jigsaw-pieces/village/taiga/houses/taiga_medium_house_2.json b/jigsaw-pieces/village/taiga/houses/taiga_medium_house_2.json index e2348c0f..5e0e5951 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_medium_house_2.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_medium_house_2.json @@ -41,13 +41,14 @@ } ], "placementOptions": { - "markers": [{ + "markers": [{ "emptyAbove": true, "maximumMarkers": 1, "mark": [ {"block": "minecraft:grass_block"}, {"block": "minecraft:stripped_spruce_log"}, - {"block": "minecraft:spruce_planks"} + {"block": "minecraft:spruce_planks"}, + {"block": "minecraft:cobblestone"} ], "marker": "villager" }], diff --git a/jigsaw-pieces/village/taiga/houses/taiga_medium_house_3.json b/jigsaw-pieces/village/taiga/houses/taiga_medium_house_3.json index a08f310d..1c55b978 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_medium_house_3.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_medium_house_3.json @@ -67,13 +67,14 @@ } ], "placementOptions": { - "markers": [{ + "markers": [{ "emptyAbove": true, "maximumMarkers": 1, "mark": [ {"block": "minecraft:grass_block"}, {"block": "minecraft:stripped_spruce_log"}, - {"block": "minecraft:spruce_planks"} + {"block": "minecraft:spruce_planks"}, + {"block": "minecraft:cobblestone"} ], "marker": "villager" }], diff --git a/jigsaw-pieces/village/taiga/houses/taiga_medium_house_4.json b/jigsaw-pieces/village/taiga/houses/taiga_medium_house_4.json index 1664d350..5e93a5cd 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_medium_house_4.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_medium_house_4.json @@ -41,13 +41,14 @@ } ], "placementOptions": { - "markers": [{ + "markers": [{ "emptyAbove": true, "maximumMarkers": 1, "mark": [ {"block": "minecraft:grass_block"}, {"block": "minecraft:stripped_spruce_log"}, - {"block": "minecraft:spruce_planks"} + {"block": "minecraft:spruce_planks"}, + {"block": "minecraft:cobblestone"} ], "marker": "villager" }], diff --git a/jigsaw-pieces/village/taiga/houses/taiga_shepherds_house_1.json b/jigsaw-pieces/village/taiga/houses/taiga_shepherds_house_1.json index 1c4c921a..fed730ae 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_shepherds_house_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_shepherds_house_1.json @@ -41,13 +41,14 @@ } ], "placementOptions": { - "markers": [{ + "markers": [{ "emptyAbove": true, "maximumMarkers": 1, "mark": [ {"block": "minecraft:grass_block"}, {"block": "minecraft:stripped_spruce_log"}, - {"block": "minecraft:spruce_planks"} + {"block": "minecraft:spruce_planks"}, + {"block": "minecraft:cobblestone"} ], "marker": "villager" }], diff --git a/jigsaw-pieces/village/taiga/houses/taiga_small_farm_1.json b/jigsaw-pieces/village/taiga/houses/taiga_small_farm_1.json index 71da018a..4ad145d6 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_small_farm_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_small_farm_1.json @@ -28,13 +28,14 @@ } ], "placementOptions": { - "markers": [{ + "markers": [{ "emptyAbove": true, "maximumMarkers": 1, "mark": [ {"block": "minecraft:grass_block"}, {"block": "minecraft:stripped_spruce_log"}, - {"block": "minecraft:spruce_planks"} + {"block": "minecraft:spruce_planks"}, + {"block": "minecraft:cobblestone"} ], "marker": "villager" }], diff --git a/jigsaw-pieces/village/taiga/houses/taiga_small_house_1.json b/jigsaw-pieces/village/taiga/houses/taiga_small_house_1.json index feb75597..44b682e5 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_small_house_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_small_house_1.json @@ -28,13 +28,14 @@ } ], "placementOptions": { - "markers": [{ + "markers": [{ "emptyAbove": true, "maximumMarkers": 1, "mark": [ {"block": "minecraft:grass_block"}, {"block": "minecraft:stripped_spruce_log"}, - {"block": "minecraft:spruce_planks"} + {"block": "minecraft:spruce_planks"}, + {"block": "minecraft:cobblestone"} ], "marker": "villager" }], diff --git a/jigsaw-pieces/village/taiga/houses/taiga_small_house_2.json b/jigsaw-pieces/village/taiga/houses/taiga_small_house_2.json index cfb280a0..053ba718 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_small_house_2.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_small_house_2.json @@ -28,13 +28,14 @@ } ], "placementOptions": { - "markers": [{ + "markers": [{ "emptyAbove": true, "maximumMarkers": 1, "mark": [ {"block": "minecraft:grass_block"}, {"block": "minecraft:stripped_spruce_log"}, - {"block": "minecraft:spruce_planks"} + {"block": "minecraft:spruce_planks"}, + {"block": "minecraft:cobblestone"} ], "marker": "villager" }], diff --git a/jigsaw-pieces/village/taiga/houses/taiga_small_house_3.json b/jigsaw-pieces/village/taiga/houses/taiga_small_house_3.json index 5cbc49d1..3d08b934 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_small_house_3.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_small_house_3.json @@ -28,13 +28,14 @@ } ], "placementOptions": { - "markers": [{ + "markers": [{ "emptyAbove": true, "maximumMarkers": 1, "mark": [ {"block": "minecraft:grass_block"}, {"block": "minecraft:stripped_spruce_log"}, - {"block": "minecraft:spruce_planks"} + {"block": "minecraft:spruce_planks"}, + {"block": "minecraft:cobblestone"} ], "marker": "villager" }], diff --git a/jigsaw-pieces/village/taiga/houses/taiga_small_house_4.json b/jigsaw-pieces/village/taiga/houses/taiga_small_house_4.json index 684d0747..39e975f3 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_small_house_4.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_small_house_4.json @@ -41,13 +41,14 @@ } ], "placementOptions": { - "markers": [{ + "markers": [{ "emptyAbove": true, "maximumMarkers": 1, "mark": [ {"block": "minecraft:grass_block"}, {"block": "minecraft:stripped_spruce_log"}, - {"block": "minecraft:spruce_planks"} + {"block": "minecraft:spruce_planks"}, + {"block": "minecraft:cobblestone"} ], "marker": "villager" }], diff --git a/jigsaw-pieces/village/taiga/houses/taiga_small_house_5.json b/jigsaw-pieces/village/taiga/houses/taiga_small_house_5.json index 0945dee5..b45f6d93 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_small_house_5.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_small_house_5.json @@ -28,13 +28,14 @@ } ], "placementOptions": { - "markers": [{ + "markers": [{ "emptyAbove": true, "maximumMarkers": 1, "mark": [ {"block": "minecraft:grass_block"}, {"block": "minecraft:stripped_spruce_log"}, - {"block": "minecraft:spruce_planks"} + {"block": "minecraft:spruce_planks"}, + {"block": "minecraft:cobblestone"} ], "marker": "villager" }], diff --git a/jigsaw-pieces/village/taiga/houses/taiga_tannery_1.json b/jigsaw-pieces/village/taiga/houses/taiga_tannery_1.json index 21b079ca..322f330d 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_tannery_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_tannery_1.json @@ -13,13 +13,14 @@ "direction": "WEST_NEGATIVE_X" }], "placementOptions": { - "markers": [{ + "markers": [{ "emptyAbove": true, "maximumMarkers": 1, "mark": [ {"block": "minecraft:grass_block"}, {"block": "minecraft:stripped_spruce_log"}, - {"block": "minecraft:spruce_planks"} + {"block": "minecraft:spruce_planks"}, + {"block": "minecraft:cobblestone"} ], "marker": "villager" }], diff --git a/jigsaw-pieces/village/taiga/houses/taiga_temple_1.json b/jigsaw-pieces/village/taiga/houses/taiga_temple_1.json index 649d6032..fddc145e 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_temple_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_temple_1.json @@ -13,13 +13,14 @@ "direction": "SOUTH_POSITIVE_Z" }], "placementOptions": { - "markers": [{ + "markers": [{ "emptyAbove": true, "maximumMarkers": 1, "mark": [ {"block": "minecraft:grass_block"}, {"block": "minecraft:stripped_spruce_log"}, - {"block": "minecraft:spruce_planks"} + {"block": "minecraft:spruce_planks"}, + {"block": "minecraft:cobblestone"} ], "marker": "villager" }], diff --git a/jigsaw-pieces/village/taiga/houses/taiga_tool_smith_1.json b/jigsaw-pieces/village/taiga/houses/taiga_tool_smith_1.json index cfefb44c..48ad4a77 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_tool_smith_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_tool_smith_1.json @@ -41,13 +41,14 @@ } ], "placementOptions": { - "markers": [{ + "markers": [{ "emptyAbove": true, "maximumMarkers": 1, "mark": [ {"block": "minecraft:grass_block"}, {"block": "minecraft:stripped_spruce_log"}, - {"block": "minecraft:spruce_planks"} + {"block": "minecraft:spruce_planks"}, + {"block": "minecraft:cobblestone"} ], "marker": "villager" }], diff --git a/jigsaw-pieces/village/taiga/houses/taiga_weaponsmith_1.json b/jigsaw-pieces/village/taiga/houses/taiga_weaponsmith_1.json index 12155e2b..4403e3aa 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_weaponsmith_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_weaponsmith_1.json @@ -13,13 +13,14 @@ "direction": "NORTH_NEGATIVE_Z" }], "placementOptions": { - "markers": [{ + "markers": [{ "emptyAbove": true, "maximumMarkers": 1, "mark": [ {"block": "minecraft:grass_block"}, {"block": "minecraft:stripped_spruce_log"}, - {"block": "minecraft:spruce_planks"} + {"block": "minecraft:spruce_planks"}, + {"block": "minecraft:cobblestone"} ], "marker": "villager" }], diff --git a/jigsaw-pieces/village/taiga/houses/taiga_weaponsmith_2.json b/jigsaw-pieces/village/taiga/houses/taiga_weaponsmith_2.json index ee736a3a..0c0f85fe 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_weaponsmith_2.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_weaponsmith_2.json @@ -28,13 +28,14 @@ } ], "placementOptions": { - "markers": [{ + "markers": [{ "emptyAbove": true, "maximumMarkers": 1, "mark": [ {"block": "minecraft:grass_block"}, {"block": "minecraft:stripped_spruce_log"}, - {"block": "minecraft:spruce_planks"} + {"block": "minecraft:spruce_planks"}, + {"block": "minecraft:cobblestone"} ], "marker": "villager" }], From b8deb1a1cabc18b551d7b1b97e13853f5d3b6308 Mon Sep 17 00:00:00 2001 From: cyberpwn Date: Mon, 13 Sep 2021 09:09:58 -0400 Subject: [PATCH 22/30] Smart bore tests --- jigsaw-pieces/pyramid-desert.json | 1 + 1 file changed, 1 insertion(+) diff --git a/jigsaw-pieces/pyramid-desert.json b/jigsaw-pieces/pyramid-desert.json index 3e60ae3b..1899708b 100644 --- a/jigsaw-pieces/pyramid-desert.json +++ b/jigsaw-pieces/pyramid-desert.json @@ -35,6 +35,7 @@ }, "boreExtendMaxY": 0, "waterloggable": false, + "smartBore": true, "bore": false, "translate": { "yRandom": 0, From d763e8be11a5350d3f1f538c9a9a83505540cdac Mon Sep 17 00:00:00 2001 From: cyberpwn Date: Mon, 13 Sep 2021 16:51:41 -0400 Subject: [PATCH 23/30] Villager tweaks --- entities/standard/passive/golem.json | 1 + .../jungle_pyramid/jungle_pyramid.json | 15 +++++++++++++ jigsaw-pieces/pyramid-desert.json | 21 +++++++++++++++++++ jigsaw-structures/desert-pyramid.json | 6 +----- jigsaw-structures/jungle-pyramid.json | 6 +----- markers/dank.json | 4 ++++ markers/villager.json | 3 ++- spawners/villager.json | 16 ++++++++++---- 8 files changed, 57 insertions(+), 15 deletions(-) create mode 100644 entities/standard/passive/golem.json create mode 100644 markers/dank.json diff --git a/entities/standard/passive/golem.json b/entities/standard/passive/golem.json new file mode 100644 index 00000000..5c720d3f --- /dev/null +++ b/entities/standard/passive/golem.json @@ -0,0 +1 @@ +{"type": "IRON_GOLEM"} diff --git a/jigsaw-pieces/jungle_pyramid/jungle_pyramid.json b/jigsaw-pieces/jungle_pyramid/jungle_pyramid.json index a543016f..654250ba 100644 --- a/jigsaw-pieces/jungle_pyramid/jungle_pyramid.json +++ b/jigsaw-pieces/jungle_pyramid/jungle_pyramid.json @@ -1,6 +1,21 @@ { "connectors": [], "placementOptions": { + "markers": [ + { + "emptyAbove": true, + "mark": [ + { + "block": "minecraft:cobblestone" + }, + { + "block": "minecraft:mossy_cobblestone" + } + ], + "marker": "dank", + "maximumMarkers": 9 + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-pieces/pyramid-desert.json b/jigsaw-pieces/pyramid-desert.json index 1899708b..069939d8 100644 --- a/jigsaw-pieces/pyramid-desert.json +++ b/jigsaw-pieces/pyramid-desert.json @@ -1,6 +1,27 @@ { "connectors": [], "placementOptions": { + "markers": [ + { + "emptyAbove": true, + "mark": [ + { + "block": "minecraft:sandstone" + }, + { + "block": "minecraft:cut_sandstone" + }, + { + "block": "minecraft:cut_red_sandstone" + }, + { + "block": "minecraft:red_sandstone" + } + ], + "marker": "dank", + "maximumMarkers": 9 + } + ], "overStilt": 0, "chance": 1, "meld": false, diff --git a/jigsaw-structures/desert-pyramid.json b/jigsaw-structures/desert-pyramid.json index 98753d19..41b6b47f 100644 --- a/jigsaw-structures/desert-pyramid.json +++ b/jigsaw-structures/desert-pyramid.json @@ -1,8 +1,4 @@ { "maxDepth": 1, - "pieces": ["pyramid-desert"], - "feature": { - "blockRadius": 15, - "entitySpawners": ["dank"] - } + "pieces": ["pyramid-desert"] } diff --git a/jigsaw-structures/jungle-pyramid.json b/jigsaw-structures/jungle-pyramid.json index ab002306..208f3b7f 100644 --- a/jigsaw-structures/jungle-pyramid.json +++ b/jigsaw-structures/jungle-pyramid.json @@ -1,8 +1,4 @@ { "maxDepth": 1, - "pieces": ["jungle_pyramid/jungle_pyramid"], - "feature": { - "blockRadius": 15, - "entitySpawners": ["dank"] - } + "pieces": ["jungle_pyramid/jungle_pyramid"] } diff --git a/markers/dank.json b/markers/dank.json new file mode 100644 index 00000000..37315915 --- /dev/null +++ b/markers/dank.json @@ -0,0 +1,4 @@ +{ + "removeOnChange": true, + "spawners": ["dank"] +} diff --git a/markers/villager.json b/markers/villager.json index aa258d6e..3d52b9ea 100644 --- a/markers/villager.json +++ b/markers/villager.json @@ -1,4 +1,5 @@ { "removeOnChange": true, - "spawners": ["villager"] + "spawners": ["villager"], + "exhaustionChance": 0.75 } diff --git a/spawners/villager.json b/spawners/villager.json index 6a1c6cfa..43dce48d 100644 --- a/spawners/villager.json +++ b/spawners/villager.json @@ -1,4 +1,12 @@ -{"initialSpawns": [{ - "entity": "standard/passive/villager", - "rarity": 1 -}]} +{ + "spawns": [ + { + "entity": "standard/passive/villager", + "rarity": 1 + }, + { + "entity": "standard/passive/golem", + "rarity": 24 + } + ] +} \ No newline at end of file From 86bb620e7d68b0e63b51e817c28445b8f04a9b73 Mon Sep 17 00:00:00 2001 From: cyberpwn Date: Wed, 15 Sep 2021 17:18:12 -0400 Subject: [PATCH 24/30] Hot Village --- jigsaw-pieces/village/desert/desert_lamp_1.json | 2 +- jigsaw-pieces/village/desert/houses/desert_animal_pen_1.json | 4 ++-- jigsaw-pieces/village/desert/houses/desert_animal_pen_2.json | 4 ++-- jigsaw-pieces/village/desert/houses/desert_armorer_1.json | 4 ++-- .../village/desert/houses/desert_butcher_shop_1.json | 4 ++-- .../village/desert/houses/desert_cartographer_house_1.json | 4 ++-- jigsaw-pieces/village/desert/houses/desert_farm_1.json | 4 ++-- jigsaw-pieces/village/desert/houses/desert_farm_2.json | 4 ++-- jigsaw-pieces/village/desert/houses/desert_fisher_1.json | 4 ++-- .../village/desert/houses/desert_fletcher_house_1.json | 4 ++-- jigsaw-pieces/village/desert/houses/desert_large_farm_1.json | 4 ++-- jigsaw-pieces/village/desert/houses/desert_library_1.json | 4 ++-- jigsaw-pieces/village/desert/houses/desert_mason_1.json | 4 ++-- .../village/desert/houses/desert_medium_house_1.json | 4 ++-- .../village/desert/houses/desert_medium_house_2.json | 4 ++-- .../village/desert/houses/desert_shepherd_house_1.json | 4 ++-- jigsaw-pieces/village/desert/houses/desert_small_house_1.json | 4 ++-- jigsaw-pieces/village/desert/houses/desert_small_house_2.json | 4 ++-- jigsaw-pieces/village/desert/houses/desert_small_house_3.json | 4 ++-- jigsaw-pieces/village/desert/houses/desert_small_house_4.json | 4 ++-- jigsaw-pieces/village/desert/houses/desert_small_house_5.json | 4 ++-- jigsaw-pieces/village/desert/houses/desert_small_house_6.json | 4 ++-- jigsaw-pieces/village/desert/houses/desert_small_house_7.json | 4 ++-- jigsaw-pieces/village/desert/houses/desert_small_house_8.json | 4 ++-- jigsaw-pieces/village/desert/houses/desert_tannery_1.json | 4 ++-- jigsaw-pieces/village/desert/houses/desert_temple_1.json | 4 ++-- jigsaw-pieces/village/desert/houses/desert_temple_2.json | 4 ++-- jigsaw-pieces/village/desert/houses/desert_tool_smith_1.json | 4 ++-- jigsaw-pieces/village/desert/houses/desert_weaponsmith_1.json | 4 ++-- .../village/desert/town_centers/desert_meeting_point_1.json | 4 ++-- .../village/desert/town_centers/desert_meeting_point_2.json | 4 ++-- .../village/desert/town_centers/desert_meeting_point_3.json | 4 ++-- 32 files changed, 63 insertions(+), 63 deletions(-) diff --git a/jigsaw-pieces/village/desert/desert_lamp_1.json b/jigsaw-pieces/village/desert/desert_lamp_1.json index 73e55d8a..bc055e87 100644 --- a/jigsaw-pieces/village/desert/desert_lamp_1.json +++ b/jigsaw-pieces/village/desert/desert_lamp_1.json @@ -51,7 +51,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MAX_HEIGHT", + "mode": "FAST_MIN_HEIGHT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/houses/desert_animal_pen_1.json b/jigsaw-pieces/village/desert/houses/desert_animal_pen_1.json index 3cd45199..7adefcf4 100644 --- a/jigsaw-pieces/village/desert/houses/desert_animal_pen_1.json +++ b/jigsaw-pieces/village/desert/houses/desert_animal_pen_1.json @@ -28,7 +28,7 @@ } ], "placementOptions": { - "overStilt": 0, + "overStilt": 1, "chance": 1, "meld": false, "density": 1, @@ -66,7 +66,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/houses/desert_animal_pen_2.json b/jigsaw-pieces/village/desert/houses/desert_animal_pen_2.json index 46db81e8..913e8610 100644 --- a/jigsaw-pieces/village/desert/houses/desert_animal_pen_2.json +++ b/jigsaw-pieces/village/desert/houses/desert_animal_pen_2.json @@ -28,7 +28,7 @@ } ], "placementOptions": { - "overStilt": 0, + "overStilt": 1, "chance": 1, "meld": false, "density": 1, @@ -66,7 +66,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/houses/desert_armorer_1.json b/jigsaw-pieces/village/desert/houses/desert_armorer_1.json index adc0c863..72a4892d 100644 --- a/jigsaw-pieces/village/desert/houses/desert_armorer_1.json +++ b/jigsaw-pieces/village/desert/houses/desert_armorer_1.json @@ -13,7 +13,7 @@ "direction": "WEST_NEGATIVE_X" }], "placementOptions": { - "overStilt": 0, + "overStilt": 1, "chance": 1, "meld": false, "density": 1, @@ -51,7 +51,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/houses/desert_butcher_shop_1.json b/jigsaw-pieces/village/desert/houses/desert_butcher_shop_1.json index ccfa0c5c..1a8a7640 100644 --- a/jigsaw-pieces/village/desert/houses/desert_butcher_shop_1.json +++ b/jigsaw-pieces/village/desert/houses/desert_butcher_shop_1.json @@ -28,7 +28,7 @@ } ], "placementOptions": { - "overStilt": 0, + "overStilt": 1, "chance": 1, "meld": false, "density": 1, @@ -66,7 +66,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/houses/desert_cartographer_house_1.json b/jigsaw-pieces/village/desert/houses/desert_cartographer_house_1.json index 9d2a2686..e00c9a5a 100644 --- a/jigsaw-pieces/village/desert/houses/desert_cartographer_house_1.json +++ b/jigsaw-pieces/village/desert/houses/desert_cartographer_house_1.json @@ -28,7 +28,7 @@ } ], "placementOptions": { - "overStilt": 0, + "overStilt": 1, "chance": 1, "meld": false, "density": 1, @@ -66,7 +66,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/houses/desert_farm_1.json b/jigsaw-pieces/village/desert/houses/desert_farm_1.json index 98e8cc46..cf574a6a 100644 --- a/jigsaw-pieces/village/desert/houses/desert_farm_1.json +++ b/jigsaw-pieces/village/desert/houses/desert_farm_1.json @@ -13,7 +13,7 @@ "direction": "WEST_NEGATIVE_X" }], "placementOptions": { - "overStilt": 0, + "overStilt": 1, "chance": 1, "meld": false, "density": 1, @@ -51,7 +51,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/houses/desert_farm_2.json b/jigsaw-pieces/village/desert/houses/desert_farm_2.json index a7fec02d..7cdfa428 100644 --- a/jigsaw-pieces/village/desert/houses/desert_farm_2.json +++ b/jigsaw-pieces/village/desert/houses/desert_farm_2.json @@ -13,7 +13,7 @@ "direction": "WEST_NEGATIVE_X" }], "placementOptions": { - "overStilt": 0, + "overStilt": 1, "chance": 1, "meld": false, "density": 1, @@ -51,7 +51,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/houses/desert_fisher_1.json b/jigsaw-pieces/village/desert/houses/desert_fisher_1.json index ff99a380..09866842 100644 --- a/jigsaw-pieces/village/desert/houses/desert_fisher_1.json +++ b/jigsaw-pieces/village/desert/houses/desert_fisher_1.json @@ -28,7 +28,7 @@ } ], "placementOptions": { - "overStilt": 0, + "overStilt": 1, "chance": 1, "meld": false, "density": 1, @@ -66,7 +66,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/houses/desert_fletcher_house_1.json b/jigsaw-pieces/village/desert/houses/desert_fletcher_house_1.json index 4b1f744f..da08bbcc 100644 --- a/jigsaw-pieces/village/desert/houses/desert_fletcher_house_1.json +++ b/jigsaw-pieces/village/desert/houses/desert_fletcher_house_1.json @@ -13,7 +13,7 @@ "direction": "WEST_NEGATIVE_X" }], "placementOptions": { - "overStilt": 0, + "overStilt": 1, "chance": 1, "meld": false, "density": 1, @@ -51,7 +51,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/houses/desert_large_farm_1.json b/jigsaw-pieces/village/desert/houses/desert_large_farm_1.json index 39bbe021..cd86d109 100644 --- a/jigsaw-pieces/village/desert/houses/desert_large_farm_1.json +++ b/jigsaw-pieces/village/desert/houses/desert_large_farm_1.json @@ -13,7 +13,7 @@ "direction": "WEST_NEGATIVE_X" }], "placementOptions": { - "overStilt": 0, + "overStilt": 1, "chance": 1, "meld": false, "density": 1, @@ -51,7 +51,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/houses/desert_library_1.json b/jigsaw-pieces/village/desert/houses/desert_library_1.json index 97ece91a..6e7a22d4 100644 --- a/jigsaw-pieces/village/desert/houses/desert_library_1.json +++ b/jigsaw-pieces/village/desert/houses/desert_library_1.json @@ -28,7 +28,7 @@ } ], "placementOptions": { - "overStilt": 0, + "overStilt": 1, "chance": 1, "meld": false, "density": 1, @@ -66,7 +66,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/houses/desert_mason_1.json b/jigsaw-pieces/village/desert/houses/desert_mason_1.json index b093d881..ebc510ee 100644 --- a/jigsaw-pieces/village/desert/houses/desert_mason_1.json +++ b/jigsaw-pieces/village/desert/houses/desert_mason_1.json @@ -13,7 +13,7 @@ "direction": "WEST_NEGATIVE_X" }], "placementOptions": { - "overStilt": 0, + "overStilt": 1, "chance": 1, "meld": false, "density": 1, @@ -51,7 +51,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/houses/desert_medium_house_1.json b/jigsaw-pieces/village/desert/houses/desert_medium_house_1.json index c9e0151f..b82c170b 100644 --- a/jigsaw-pieces/village/desert/houses/desert_medium_house_1.json +++ b/jigsaw-pieces/village/desert/houses/desert_medium_house_1.json @@ -41,7 +41,7 @@ } ], "placementOptions": { - "overStilt": 0, + "overStilt": 1, "chance": 1, "meld": false, "density": 1, @@ -79,7 +79,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/houses/desert_medium_house_2.json b/jigsaw-pieces/village/desert/houses/desert_medium_house_2.json index 96edf7d4..87509c2f 100644 --- a/jigsaw-pieces/village/desert/houses/desert_medium_house_2.json +++ b/jigsaw-pieces/village/desert/houses/desert_medium_house_2.json @@ -41,7 +41,7 @@ } ], "placementOptions": { - "overStilt": 0, + "overStilt": 1, "chance": 1, "meld": false, "density": 1, @@ -79,7 +79,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/houses/desert_shepherd_house_1.json b/jigsaw-pieces/village/desert/houses/desert_shepherd_house_1.json index 7e7116e0..12c90822 100644 --- a/jigsaw-pieces/village/desert/houses/desert_shepherd_house_1.json +++ b/jigsaw-pieces/village/desert/houses/desert_shepherd_house_1.json @@ -28,7 +28,7 @@ } ], "placementOptions": { - "overStilt": 0, + "overStilt": 1, "chance": 1, "meld": false, "density": 1, @@ -66,7 +66,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/houses/desert_small_house_1.json b/jigsaw-pieces/village/desert/houses/desert_small_house_1.json index 4628c1da..43a45207 100644 --- a/jigsaw-pieces/village/desert/houses/desert_small_house_1.json +++ b/jigsaw-pieces/village/desert/houses/desert_small_house_1.json @@ -28,7 +28,7 @@ } ], "placementOptions": { - "overStilt": 0, + "overStilt": 1, "chance": 1, "meld": false, "density": 1, @@ -66,7 +66,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/houses/desert_small_house_2.json b/jigsaw-pieces/village/desert/houses/desert_small_house_2.json index eccf1b14..3bf31522 100644 --- a/jigsaw-pieces/village/desert/houses/desert_small_house_2.json +++ b/jigsaw-pieces/village/desert/houses/desert_small_house_2.json @@ -41,7 +41,7 @@ } ], "placementOptions": { - "overStilt": 0, + "overStilt": 1, "chance": 1, "meld": false, "density": 1, @@ -79,7 +79,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/houses/desert_small_house_3.json b/jigsaw-pieces/village/desert/houses/desert_small_house_3.json index 5fc72369..7d9d4ffb 100644 --- a/jigsaw-pieces/village/desert/houses/desert_small_house_3.json +++ b/jigsaw-pieces/village/desert/houses/desert_small_house_3.json @@ -28,7 +28,7 @@ } ], "placementOptions": { - "overStilt": 0, + "overStilt": 1, "chance": 1, "meld": false, "density": 1, @@ -66,7 +66,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/houses/desert_small_house_4.json b/jigsaw-pieces/village/desert/houses/desert_small_house_4.json index 025477dc..77d4c6d0 100644 --- a/jigsaw-pieces/village/desert/houses/desert_small_house_4.json +++ b/jigsaw-pieces/village/desert/houses/desert_small_house_4.json @@ -28,7 +28,7 @@ } ], "placementOptions": { - "overStilt": 0, + "overStilt": 1, "chance": 1, "meld": false, "density": 1, @@ -66,7 +66,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/houses/desert_small_house_5.json b/jigsaw-pieces/village/desert/houses/desert_small_house_5.json index 1a4ecf2b..d99a42e1 100644 --- a/jigsaw-pieces/village/desert/houses/desert_small_house_5.json +++ b/jigsaw-pieces/village/desert/houses/desert_small_house_5.json @@ -28,7 +28,7 @@ } ], "placementOptions": { - "overStilt": 0, + "overStilt": 1, "chance": 1, "meld": false, "density": 1, @@ -66,7 +66,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/houses/desert_small_house_6.json b/jigsaw-pieces/village/desert/houses/desert_small_house_6.json index 57f730ea..a23c47bb 100644 --- a/jigsaw-pieces/village/desert/houses/desert_small_house_6.json +++ b/jigsaw-pieces/village/desert/houses/desert_small_house_6.json @@ -28,7 +28,7 @@ } ], "placementOptions": { - "overStilt": 0, + "overStilt": 1, "chance": 1, "meld": false, "density": 1, @@ -66,7 +66,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/houses/desert_small_house_7.json b/jigsaw-pieces/village/desert/houses/desert_small_house_7.json index 25338ff6..4f5e9681 100644 --- a/jigsaw-pieces/village/desert/houses/desert_small_house_7.json +++ b/jigsaw-pieces/village/desert/houses/desert_small_house_7.json @@ -28,7 +28,7 @@ } ], "placementOptions": { - "overStilt": 0, + "overStilt": 1, "chance": 1, "meld": false, "density": 1, @@ -66,7 +66,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/houses/desert_small_house_8.json b/jigsaw-pieces/village/desert/houses/desert_small_house_8.json index 3bd0429c..a6a6f292 100644 --- a/jigsaw-pieces/village/desert/houses/desert_small_house_8.json +++ b/jigsaw-pieces/village/desert/houses/desert_small_house_8.json @@ -28,7 +28,7 @@ } ], "placementOptions": { - "overStilt": 0, + "overStilt": 1, "chance": 1, "meld": false, "density": 1, @@ -66,7 +66,7 @@ "y": -2, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/houses/desert_tannery_1.json b/jigsaw-pieces/village/desert/houses/desert_tannery_1.json index aefd17d5..e0743df2 100644 --- a/jigsaw-pieces/village/desert/houses/desert_tannery_1.json +++ b/jigsaw-pieces/village/desert/houses/desert_tannery_1.json @@ -13,7 +13,7 @@ "direction": "NORTH_NEGATIVE_Z" }], "placementOptions": { - "overStilt": 0, + "overStilt": 1, "chance": 1, "meld": false, "density": 1, @@ -51,7 +51,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/houses/desert_temple_1.json b/jigsaw-pieces/village/desert/houses/desert_temple_1.json index b593b891..0431127b 100644 --- a/jigsaw-pieces/village/desert/houses/desert_temple_1.json +++ b/jigsaw-pieces/village/desert/houses/desert_temple_1.json @@ -13,7 +13,7 @@ "direction": "WEST_NEGATIVE_X" }], "placementOptions": { - "overStilt": 0, + "overStilt": 1, "chance": 1, "meld": false, "density": 1, @@ -51,7 +51,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/houses/desert_temple_2.json b/jigsaw-pieces/village/desert/houses/desert_temple_2.json index 36f8227e..d8373c90 100644 --- a/jigsaw-pieces/village/desert/houses/desert_temple_2.json +++ b/jigsaw-pieces/village/desert/houses/desert_temple_2.json @@ -13,7 +13,7 @@ "direction": "WEST_NEGATIVE_X" }], "placementOptions": { - "overStilt": 0, + "overStilt": 1, "chance": 1, "meld": false, "density": 1, @@ -51,7 +51,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/houses/desert_tool_smith_1.json b/jigsaw-pieces/village/desert/houses/desert_tool_smith_1.json index fdab235c..2cbd5410 100644 --- a/jigsaw-pieces/village/desert/houses/desert_tool_smith_1.json +++ b/jigsaw-pieces/village/desert/houses/desert_tool_smith_1.json @@ -13,7 +13,7 @@ "direction": "WEST_NEGATIVE_X" }], "placementOptions": { - "overStilt": 0, + "overStilt": 1, "chance": 1, "meld": false, "density": 1, @@ -51,7 +51,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/houses/desert_weaponsmith_1.json b/jigsaw-pieces/village/desert/houses/desert_weaponsmith_1.json index bd3f9f66..67b6a32e 100644 --- a/jigsaw-pieces/village/desert/houses/desert_weaponsmith_1.json +++ b/jigsaw-pieces/village/desert/houses/desert_weaponsmith_1.json @@ -13,7 +13,7 @@ "direction": "NORTH_NEGATIVE_Z" }], "placementOptions": { - "overStilt": 0, + "overStilt": 1, "chance": 1, "meld": false, "density": 1, @@ -51,7 +51,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/town_centers/desert_meeting_point_1.json b/jigsaw-pieces/village/desert/town_centers/desert_meeting_point_1.json index be26335d..4bfcfc16 100644 --- a/jigsaw-pieces/village/desert/town_centers/desert_meeting_point_1.json +++ b/jigsaw-pieces/village/desert/town_centers/desert_meeting_point_1.json @@ -171,7 +171,7 @@ } ], "placementOptions": { - "overStilt": 0, + "overStilt": 1, "chance": 1, "meld": false, "density": 1, @@ -209,7 +209,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/town_centers/desert_meeting_point_2.json b/jigsaw-pieces/village/desert/town_centers/desert_meeting_point_2.json index be2d7b14..09a67d66 100644 --- a/jigsaw-pieces/village/desert/town_centers/desert_meeting_point_2.json +++ b/jigsaw-pieces/village/desert/town_centers/desert_meeting_point_2.json @@ -132,7 +132,7 @@ } ], "placementOptions": { - "overStilt": 0, + "overStilt": 1, "chance": 1, "meld": false, "density": 1, @@ -170,7 +170,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/desert/town_centers/desert_meeting_point_3.json b/jigsaw-pieces/village/desert/town_centers/desert_meeting_point_3.json index 3d74ded3..8ddcf337 100644 --- a/jigsaw-pieces/village/desert/town_centers/desert_meeting_point_3.json +++ b/jigsaw-pieces/village/desert/town_centers/desert_meeting_point_3.json @@ -158,7 +158,7 @@ } ], "placementOptions": { - "overStilt": 0, + "overStilt": 1, "chance": 1, "meld": false, "density": 1, @@ -196,7 +196,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, From e076e9306df9a662e61d714bdd4df9f14e82fee7 Mon Sep 17 00:00:00 2001 From: cyberpwn Date: Wed, 15 Sep 2021 17:28:12 -0400 Subject: [PATCH 25/30] Fix desert overstilt --- jigsaw-pieces/village/desert/houses/desert_animal_pen_1.json | 2 +- jigsaw-pieces/village/desert/houses/desert_animal_pen_2.json | 2 +- jigsaw-pieces/village/desert/houses/desert_armorer_1.json | 2 +- .../village/desert/houses/desert_butcher_shop_1.json | 2 +- .../village/desert/houses/desert_cartographer_house_1.json | 2 +- jigsaw-pieces/village/desert/houses/desert_farm_1.json | 2 +- jigsaw-pieces/village/desert/houses/desert_farm_2.json | 2 +- jigsaw-pieces/village/desert/houses/desert_fisher_1.json | 2 +- .../village/desert/houses/desert_fletcher_house_1.json | 2 +- jigsaw-pieces/village/desert/houses/desert_large_farm_1.json | 2 +- jigsaw-pieces/village/desert/houses/desert_library_1.json | 2 +- jigsaw-pieces/village/desert/houses/desert_mason_1.json | 2 +- .../village/desert/houses/desert_medium_house_1.json | 2 +- .../village/desert/houses/desert_medium_house_2.json | 2 +- .../village/desert/houses/desert_shepherd_house_1.json | 2 +- jigsaw-pieces/village/desert/houses/desert_small_house_1.json | 2 +- jigsaw-pieces/village/desert/houses/desert_small_house_2.json | 2 +- jigsaw-pieces/village/desert/houses/desert_small_house_3.json | 2 +- jigsaw-pieces/village/desert/houses/desert_small_house_4.json | 2 +- jigsaw-pieces/village/desert/houses/desert_small_house_5.json | 2 +- jigsaw-pieces/village/desert/houses/desert_small_house_6.json | 2 +- jigsaw-pieces/village/desert/houses/desert_small_house_7.json | 2 +- jigsaw-pieces/village/desert/houses/desert_small_house_8.json | 4 ++-- jigsaw-pieces/village/desert/houses/desert_tannery_1.json | 2 +- jigsaw-pieces/village/desert/houses/desert_temple_1.json | 2 +- jigsaw-pieces/village/desert/houses/desert_temple_2.json | 2 +- jigsaw-pieces/village/desert/houses/desert_tool_smith_1.json | 2 +- jigsaw-pieces/village/desert/houses/desert_weaponsmith_1.json | 2 +- 28 files changed, 29 insertions(+), 29 deletions(-) diff --git a/jigsaw-pieces/village/desert/houses/desert_animal_pen_1.json b/jigsaw-pieces/village/desert/houses/desert_animal_pen_1.json index 7adefcf4..c3b1664d 100644 --- a/jigsaw-pieces/village/desert/houses/desert_animal_pen_1.json +++ b/jigsaw-pieces/village/desert/houses/desert_animal_pen_1.json @@ -28,7 +28,7 @@ } ], "placementOptions": { - "overStilt": 1, + "overStilt": 0, "chance": 1, "meld": false, "density": 1, diff --git a/jigsaw-pieces/village/desert/houses/desert_animal_pen_2.json b/jigsaw-pieces/village/desert/houses/desert_animal_pen_2.json index 913e8610..d3ddc200 100644 --- a/jigsaw-pieces/village/desert/houses/desert_animal_pen_2.json +++ b/jigsaw-pieces/village/desert/houses/desert_animal_pen_2.json @@ -28,7 +28,7 @@ } ], "placementOptions": { - "overStilt": 1, + "overStilt": 0, "chance": 1, "meld": false, "density": 1, diff --git a/jigsaw-pieces/village/desert/houses/desert_armorer_1.json b/jigsaw-pieces/village/desert/houses/desert_armorer_1.json index 72a4892d..fcbc662f 100644 --- a/jigsaw-pieces/village/desert/houses/desert_armorer_1.json +++ b/jigsaw-pieces/village/desert/houses/desert_armorer_1.json @@ -13,7 +13,7 @@ "direction": "WEST_NEGATIVE_X" }], "placementOptions": { - "overStilt": 1, + "overStilt": 0, "chance": 1, "meld": false, "density": 1, diff --git a/jigsaw-pieces/village/desert/houses/desert_butcher_shop_1.json b/jigsaw-pieces/village/desert/houses/desert_butcher_shop_1.json index 1a8a7640..e4155e09 100644 --- a/jigsaw-pieces/village/desert/houses/desert_butcher_shop_1.json +++ b/jigsaw-pieces/village/desert/houses/desert_butcher_shop_1.json @@ -28,7 +28,7 @@ } ], "placementOptions": { - "overStilt": 1, + "overStilt": 0, "chance": 1, "meld": false, "density": 1, diff --git a/jigsaw-pieces/village/desert/houses/desert_cartographer_house_1.json b/jigsaw-pieces/village/desert/houses/desert_cartographer_house_1.json index e00c9a5a..93a7327b 100644 --- a/jigsaw-pieces/village/desert/houses/desert_cartographer_house_1.json +++ b/jigsaw-pieces/village/desert/houses/desert_cartographer_house_1.json @@ -28,7 +28,7 @@ } ], "placementOptions": { - "overStilt": 1, + "overStilt": 0, "chance": 1, "meld": false, "density": 1, diff --git a/jigsaw-pieces/village/desert/houses/desert_farm_1.json b/jigsaw-pieces/village/desert/houses/desert_farm_1.json index cf574a6a..0844f15f 100644 --- a/jigsaw-pieces/village/desert/houses/desert_farm_1.json +++ b/jigsaw-pieces/village/desert/houses/desert_farm_1.json @@ -13,7 +13,7 @@ "direction": "WEST_NEGATIVE_X" }], "placementOptions": { - "overStilt": 1, + "overStilt": 0, "chance": 1, "meld": false, "density": 1, diff --git a/jigsaw-pieces/village/desert/houses/desert_farm_2.json b/jigsaw-pieces/village/desert/houses/desert_farm_2.json index 7cdfa428..c50bb5ff 100644 --- a/jigsaw-pieces/village/desert/houses/desert_farm_2.json +++ b/jigsaw-pieces/village/desert/houses/desert_farm_2.json @@ -13,7 +13,7 @@ "direction": "WEST_NEGATIVE_X" }], "placementOptions": { - "overStilt": 1, + "overStilt": 0, "chance": 1, "meld": false, "density": 1, diff --git a/jigsaw-pieces/village/desert/houses/desert_fisher_1.json b/jigsaw-pieces/village/desert/houses/desert_fisher_1.json index 09866842..2c56913e 100644 --- a/jigsaw-pieces/village/desert/houses/desert_fisher_1.json +++ b/jigsaw-pieces/village/desert/houses/desert_fisher_1.json @@ -28,7 +28,7 @@ } ], "placementOptions": { - "overStilt": 1, + "overStilt": 0, "chance": 1, "meld": false, "density": 1, diff --git a/jigsaw-pieces/village/desert/houses/desert_fletcher_house_1.json b/jigsaw-pieces/village/desert/houses/desert_fletcher_house_1.json index da08bbcc..5f2107c3 100644 --- a/jigsaw-pieces/village/desert/houses/desert_fletcher_house_1.json +++ b/jigsaw-pieces/village/desert/houses/desert_fletcher_house_1.json @@ -13,7 +13,7 @@ "direction": "WEST_NEGATIVE_X" }], "placementOptions": { - "overStilt": 1, + "overStilt": 0, "chance": 1, "meld": false, "density": 1, diff --git a/jigsaw-pieces/village/desert/houses/desert_large_farm_1.json b/jigsaw-pieces/village/desert/houses/desert_large_farm_1.json index cd86d109..c9c11894 100644 --- a/jigsaw-pieces/village/desert/houses/desert_large_farm_1.json +++ b/jigsaw-pieces/village/desert/houses/desert_large_farm_1.json @@ -13,7 +13,7 @@ "direction": "WEST_NEGATIVE_X" }], "placementOptions": { - "overStilt": 1, + "overStilt": 0, "chance": 1, "meld": false, "density": 1, diff --git a/jigsaw-pieces/village/desert/houses/desert_library_1.json b/jigsaw-pieces/village/desert/houses/desert_library_1.json index 6e7a22d4..676378c8 100644 --- a/jigsaw-pieces/village/desert/houses/desert_library_1.json +++ b/jigsaw-pieces/village/desert/houses/desert_library_1.json @@ -28,7 +28,7 @@ } ], "placementOptions": { - "overStilt": 1, + "overStilt": 0, "chance": 1, "meld": false, "density": 1, diff --git a/jigsaw-pieces/village/desert/houses/desert_mason_1.json b/jigsaw-pieces/village/desert/houses/desert_mason_1.json index ebc510ee..447b6809 100644 --- a/jigsaw-pieces/village/desert/houses/desert_mason_1.json +++ b/jigsaw-pieces/village/desert/houses/desert_mason_1.json @@ -13,7 +13,7 @@ "direction": "WEST_NEGATIVE_X" }], "placementOptions": { - "overStilt": 1, + "overStilt": 0, "chance": 1, "meld": false, "density": 1, diff --git a/jigsaw-pieces/village/desert/houses/desert_medium_house_1.json b/jigsaw-pieces/village/desert/houses/desert_medium_house_1.json index b82c170b..18ebaba3 100644 --- a/jigsaw-pieces/village/desert/houses/desert_medium_house_1.json +++ b/jigsaw-pieces/village/desert/houses/desert_medium_house_1.json @@ -41,7 +41,7 @@ } ], "placementOptions": { - "overStilt": 1, + "overStilt": 0, "chance": 1, "meld": false, "density": 1, diff --git a/jigsaw-pieces/village/desert/houses/desert_medium_house_2.json b/jigsaw-pieces/village/desert/houses/desert_medium_house_2.json index 87509c2f..169d05a3 100644 --- a/jigsaw-pieces/village/desert/houses/desert_medium_house_2.json +++ b/jigsaw-pieces/village/desert/houses/desert_medium_house_2.json @@ -41,7 +41,7 @@ } ], "placementOptions": { - "overStilt": 1, + "overStilt": 0, "chance": 1, "meld": false, "density": 1, diff --git a/jigsaw-pieces/village/desert/houses/desert_shepherd_house_1.json b/jigsaw-pieces/village/desert/houses/desert_shepherd_house_1.json index 12c90822..9bb57e6c 100644 --- a/jigsaw-pieces/village/desert/houses/desert_shepherd_house_1.json +++ b/jigsaw-pieces/village/desert/houses/desert_shepherd_house_1.json @@ -28,7 +28,7 @@ } ], "placementOptions": { - "overStilt": 1, + "overStilt": 0, "chance": 1, "meld": false, "density": 1, diff --git a/jigsaw-pieces/village/desert/houses/desert_small_house_1.json b/jigsaw-pieces/village/desert/houses/desert_small_house_1.json index 43a45207..20fefa5d 100644 --- a/jigsaw-pieces/village/desert/houses/desert_small_house_1.json +++ b/jigsaw-pieces/village/desert/houses/desert_small_house_1.json @@ -28,7 +28,7 @@ } ], "placementOptions": { - "overStilt": 1, + "overStilt": 0, "chance": 1, "meld": false, "density": 1, diff --git a/jigsaw-pieces/village/desert/houses/desert_small_house_2.json b/jigsaw-pieces/village/desert/houses/desert_small_house_2.json index 3bf31522..da04ac0b 100644 --- a/jigsaw-pieces/village/desert/houses/desert_small_house_2.json +++ b/jigsaw-pieces/village/desert/houses/desert_small_house_2.json @@ -41,7 +41,7 @@ } ], "placementOptions": { - "overStilt": 1, + "overStilt": 0, "chance": 1, "meld": false, "density": 1, diff --git a/jigsaw-pieces/village/desert/houses/desert_small_house_3.json b/jigsaw-pieces/village/desert/houses/desert_small_house_3.json index 7d9d4ffb..be0e7102 100644 --- a/jigsaw-pieces/village/desert/houses/desert_small_house_3.json +++ b/jigsaw-pieces/village/desert/houses/desert_small_house_3.json @@ -28,7 +28,7 @@ } ], "placementOptions": { - "overStilt": 1, + "overStilt": 0, "chance": 1, "meld": false, "density": 1, diff --git a/jigsaw-pieces/village/desert/houses/desert_small_house_4.json b/jigsaw-pieces/village/desert/houses/desert_small_house_4.json index 77d4c6d0..7ab7d994 100644 --- a/jigsaw-pieces/village/desert/houses/desert_small_house_4.json +++ b/jigsaw-pieces/village/desert/houses/desert_small_house_4.json @@ -28,7 +28,7 @@ } ], "placementOptions": { - "overStilt": 1, + "overStilt": 0, "chance": 1, "meld": false, "density": 1, diff --git a/jigsaw-pieces/village/desert/houses/desert_small_house_5.json b/jigsaw-pieces/village/desert/houses/desert_small_house_5.json index d99a42e1..009986f1 100644 --- a/jigsaw-pieces/village/desert/houses/desert_small_house_5.json +++ b/jigsaw-pieces/village/desert/houses/desert_small_house_5.json @@ -28,7 +28,7 @@ } ], "placementOptions": { - "overStilt": 1, + "overStilt": 0, "chance": 1, "meld": false, "density": 1, diff --git a/jigsaw-pieces/village/desert/houses/desert_small_house_6.json b/jigsaw-pieces/village/desert/houses/desert_small_house_6.json index a23c47bb..0b441cb4 100644 --- a/jigsaw-pieces/village/desert/houses/desert_small_house_6.json +++ b/jigsaw-pieces/village/desert/houses/desert_small_house_6.json @@ -28,7 +28,7 @@ } ], "placementOptions": { - "overStilt": 1, + "overStilt": 0, "chance": 1, "meld": false, "density": 1, diff --git a/jigsaw-pieces/village/desert/houses/desert_small_house_7.json b/jigsaw-pieces/village/desert/houses/desert_small_house_7.json index 4f5e9681..76cc326a 100644 --- a/jigsaw-pieces/village/desert/houses/desert_small_house_7.json +++ b/jigsaw-pieces/village/desert/houses/desert_small_house_7.json @@ -28,7 +28,7 @@ } ], "placementOptions": { - "overStilt": 1, + "overStilt": 0, "chance": 1, "meld": false, "density": 1, diff --git a/jigsaw-pieces/village/desert/houses/desert_small_house_8.json b/jigsaw-pieces/village/desert/houses/desert_small_house_8.json index a6a6f292..05049c54 100644 --- a/jigsaw-pieces/village/desert/houses/desert_small_house_8.json +++ b/jigsaw-pieces/village/desert/houses/desert_small_house_8.json @@ -28,7 +28,7 @@ } ], "placementOptions": { - "overStilt": 1, + "overStilt": 0, "chance": 1, "meld": false, "density": 1, @@ -63,7 +63,7 @@ "translate": { "yRandom": 0, "x": 0, - "y": -2, + "y": 0, "z": 0 }, "mode": "STILT", diff --git a/jigsaw-pieces/village/desert/houses/desert_tannery_1.json b/jigsaw-pieces/village/desert/houses/desert_tannery_1.json index e0743df2..514a7c8b 100644 --- a/jigsaw-pieces/village/desert/houses/desert_tannery_1.json +++ b/jigsaw-pieces/village/desert/houses/desert_tannery_1.json @@ -13,7 +13,7 @@ "direction": "NORTH_NEGATIVE_Z" }], "placementOptions": { - "overStilt": 1, + "overStilt": 0, "chance": 1, "meld": false, "density": 1, diff --git a/jigsaw-pieces/village/desert/houses/desert_temple_1.json b/jigsaw-pieces/village/desert/houses/desert_temple_1.json index 0431127b..30bdc9c8 100644 --- a/jigsaw-pieces/village/desert/houses/desert_temple_1.json +++ b/jigsaw-pieces/village/desert/houses/desert_temple_1.json @@ -13,7 +13,7 @@ "direction": "WEST_NEGATIVE_X" }], "placementOptions": { - "overStilt": 1, + "overStilt": 0, "chance": 1, "meld": false, "density": 1, diff --git a/jigsaw-pieces/village/desert/houses/desert_temple_2.json b/jigsaw-pieces/village/desert/houses/desert_temple_2.json index d8373c90..4ccf4416 100644 --- a/jigsaw-pieces/village/desert/houses/desert_temple_2.json +++ b/jigsaw-pieces/village/desert/houses/desert_temple_2.json @@ -13,7 +13,7 @@ "direction": "WEST_NEGATIVE_X" }], "placementOptions": { - "overStilt": 1, + "overStilt": 0, "chance": 1, "meld": false, "density": 1, diff --git a/jigsaw-pieces/village/desert/houses/desert_tool_smith_1.json b/jigsaw-pieces/village/desert/houses/desert_tool_smith_1.json index 2cbd5410..3a5b059e 100644 --- a/jigsaw-pieces/village/desert/houses/desert_tool_smith_1.json +++ b/jigsaw-pieces/village/desert/houses/desert_tool_smith_1.json @@ -13,7 +13,7 @@ "direction": "WEST_NEGATIVE_X" }], "placementOptions": { - "overStilt": 1, + "overStilt": 0, "chance": 1, "meld": false, "density": 1, diff --git a/jigsaw-pieces/village/desert/houses/desert_weaponsmith_1.json b/jigsaw-pieces/village/desert/houses/desert_weaponsmith_1.json index 67b6a32e..90f93313 100644 --- a/jigsaw-pieces/village/desert/houses/desert_weaponsmith_1.json +++ b/jigsaw-pieces/village/desert/houses/desert_weaponsmith_1.json @@ -13,7 +13,7 @@ "direction": "NORTH_NEGATIVE_Z" }], "placementOptions": { - "overStilt": 1, + "overStilt": 0, "chance": 1, "meld": false, "density": 1, From 2185c688fb5ea309bfc8a781ae22b6e8914b5096 Mon Sep 17 00:00:00 2001 From: cyberpwn Date: Wed, 15 Sep 2021 17:28:21 -0400 Subject: [PATCH 26/30] Plains stilt houses --- jigsaw-pieces/village/plains/houses/plains_accessory_1.json | 2 +- jigsaw-pieces/village/plains/houses/plains_animal_pen_1.json | 2 +- jigsaw-pieces/village/plains/houses/plains_animal_pen_2.json | 2 +- jigsaw-pieces/village/plains/houses/plains_animal_pen_3.json | 2 +- jigsaw-pieces/village/plains/houses/plains_armorer_house_1.json | 2 +- jigsaw-pieces/village/plains/houses/plains_big_house_1.json | 2 +- jigsaw-pieces/village/plains/houses/plains_butcher_shop_1.json | 2 +- jigsaw-pieces/village/plains/houses/plains_butcher_shop_2.json | 2 +- jigsaw-pieces/village/plains/houses/plains_cartographer_1.json | 2 +- .../village/plains/houses/plains_fisher_cottage_1.json | 2 +- .../village/plains/houses/plains_fletcher_house_1.json | 2 +- jigsaw-pieces/village/plains/houses/plains_large_farm_1.json | 2 +- jigsaw-pieces/village/plains/houses/plains_library_1.json | 2 +- jigsaw-pieces/village/plains/houses/plains_library_2.json | 2 +- jigsaw-pieces/village/plains/houses/plains_masons_house_1.json | 2 +- jigsaw-pieces/village/plains/houses/plains_medium_house_1.json | 2 +- jigsaw-pieces/village/plains/houses/plains_medium_house_2.json | 2 +- jigsaw-pieces/village/plains/houses/plains_meeting_point_4.json | 2 +- jigsaw-pieces/village/plains/houses/plains_meeting_point_5.json | 2 +- .../village/plains/houses/plains_shepherds_house_1.json | 2 +- jigsaw-pieces/village/plains/houses/plains_small_farm_1.json | 2 +- jigsaw-pieces/village/plains/houses/plains_small_house_1.json | 2 +- jigsaw-pieces/village/plains/houses/plains_small_house_2.json | 2 +- jigsaw-pieces/village/plains/houses/plains_small_house_3.json | 2 +- jigsaw-pieces/village/plains/houses/plains_small_house_4.json | 2 +- jigsaw-pieces/village/plains/houses/plains_small_house_5.json | 2 +- jigsaw-pieces/village/plains/houses/plains_small_house_6.json | 2 +- jigsaw-pieces/village/plains/houses/plains_small_house_7.json | 2 +- jigsaw-pieces/village/plains/houses/plains_small_house_8.json | 2 +- jigsaw-pieces/village/plains/houses/plains_stable_1.json | 2 +- jigsaw-pieces/village/plains/houses/plains_stable_2.json | 2 +- jigsaw-pieces/village/plains/houses/plains_tannery_1.json | 2 +- jigsaw-pieces/village/plains/houses/plains_temple_3.json | 2 +- jigsaw-pieces/village/plains/houses/plains_temple_4.json | 2 +- jigsaw-pieces/village/plains/houses/plains_tool_smith_1.json | 2 +- jigsaw-pieces/village/plains/houses/plains_weaponsmith_1.json | 2 +- 36 files changed, 36 insertions(+), 36 deletions(-) diff --git a/jigsaw-pieces/village/plains/houses/plains_accessory_1.json b/jigsaw-pieces/village/plains/houses/plains_accessory_1.json index 72cd146b..b7682a42 100644 --- a/jigsaw-pieces/village/plains/houses/plains_accessory_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_accessory_1.json @@ -60,7 +60,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_animal_pen_1.json b/jigsaw-pieces/village/plains/houses/plains_animal_pen_1.json index 9131dac5..23d41166 100644 --- a/jigsaw-pieces/village/plains/houses/plains_animal_pen_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_animal_pen_1.json @@ -86,7 +86,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_animal_pen_2.json b/jigsaw-pieces/village/plains/houses/plains_animal_pen_2.json index 82112ccc..2cbacdd0 100644 --- a/jigsaw-pieces/village/plains/houses/plains_animal_pen_2.json +++ b/jigsaw-pieces/village/plains/houses/plains_animal_pen_2.json @@ -99,7 +99,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_animal_pen_3.json b/jigsaw-pieces/village/plains/houses/plains_animal_pen_3.json index 31f019e6..1520fc60 100644 --- a/jigsaw-pieces/village/plains/houses/plains_animal_pen_3.json +++ b/jigsaw-pieces/village/plains/houses/plains_animal_pen_3.json @@ -150,7 +150,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_armorer_house_1.json b/jigsaw-pieces/village/plains/houses/plains_armorer_house_1.json index 71767cec..3dfc7290 100644 --- a/jigsaw-pieces/village/plains/houses/plains_armorer_house_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_armorer_house_1.json @@ -60,7 +60,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_big_house_1.json b/jigsaw-pieces/village/plains/houses/plains_big_house_1.json index 61ffb9a5..d07b7dde 100644 --- a/jigsaw-pieces/village/plains/houses/plains_big_house_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_big_house_1.json @@ -114,7 +114,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_butcher_shop_1.json b/jigsaw-pieces/village/plains/houses/plains_butcher_shop_1.json index fe4ac353..928c0d90 100644 --- a/jigsaw-pieces/village/plains/houses/plains_butcher_shop_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_butcher_shop_1.json @@ -75,7 +75,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_butcher_shop_2.json b/jigsaw-pieces/village/plains/houses/plains_butcher_shop_2.json index 0bac5363..5dfcfa59 100644 --- a/jigsaw-pieces/village/plains/houses/plains_butcher_shop_2.json +++ b/jigsaw-pieces/village/plains/houses/plains_butcher_shop_2.json @@ -127,7 +127,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_cartographer_1.json b/jigsaw-pieces/village/plains/houses/plains_cartographer_1.json index 4fb3f03d..b9a13322 100644 --- a/jigsaw-pieces/village/plains/houses/plains_cartographer_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_cartographer_1.json @@ -60,7 +60,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_fisher_cottage_1.json b/jigsaw-pieces/village/plains/houses/plains_fisher_cottage_1.json index dced4f5b..0212a3a2 100644 --- a/jigsaw-pieces/village/plains/houses/plains_fisher_cottage_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_fisher_cottage_1.json @@ -60,7 +60,7 @@ "y": -2, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_fletcher_house_1.json b/jigsaw-pieces/village/plains/houses/plains_fletcher_house_1.json index 8feb7b25..19f1ce07 100644 --- a/jigsaw-pieces/village/plains/houses/plains_fletcher_house_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_fletcher_house_1.json @@ -75,7 +75,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_large_farm_1.json b/jigsaw-pieces/village/plains/houses/plains_large_farm_1.json index 06b34f5f..cc004331 100644 --- a/jigsaw-pieces/village/plains/houses/plains_large_farm_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_large_farm_1.json @@ -60,7 +60,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_library_1.json b/jigsaw-pieces/village/plains/houses/plains_library_1.json index 897702ba..c3f2d825 100644 --- a/jigsaw-pieces/village/plains/houses/plains_library_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_library_1.json @@ -60,7 +60,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_library_2.json b/jigsaw-pieces/village/plains/houses/plains_library_2.json index a73b0b09..4f3783ca 100644 --- a/jigsaw-pieces/village/plains/houses/plains_library_2.json +++ b/jigsaw-pieces/village/plains/houses/plains_library_2.json @@ -60,7 +60,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_masons_house_1.json b/jigsaw-pieces/village/plains/houses/plains_masons_house_1.json index 144d1a2e..392a78f7 100644 --- a/jigsaw-pieces/village/plains/houses/plains_masons_house_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_masons_house_1.json @@ -60,7 +60,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_medium_house_1.json b/jigsaw-pieces/village/plains/houses/plains_medium_house_1.json index a396116f..d1f08da3 100644 --- a/jigsaw-pieces/village/plains/houses/plains_medium_house_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_medium_house_1.json @@ -101,7 +101,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_medium_house_2.json b/jigsaw-pieces/village/plains/houses/plains_medium_house_2.json index ebff153f..0389f0f2 100644 --- a/jigsaw-pieces/village/plains/houses/plains_medium_house_2.json +++ b/jigsaw-pieces/village/plains/houses/plains_medium_house_2.json @@ -88,7 +88,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_meeting_point_4.json b/jigsaw-pieces/village/plains/houses/plains_meeting_point_4.json index 19c313de..c174d70f 100644 --- a/jigsaw-pieces/village/plains/houses/plains_meeting_point_4.json +++ b/jigsaw-pieces/village/plains/houses/plains_meeting_point_4.json @@ -114,7 +114,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_meeting_point_5.json b/jigsaw-pieces/village/plains/houses/plains_meeting_point_5.json index e13a71b5..fda92bb9 100644 --- a/jigsaw-pieces/village/plains/houses/plains_meeting_point_5.json +++ b/jigsaw-pieces/village/plains/houses/plains_meeting_point_5.json @@ -101,7 +101,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_shepherds_house_1.json b/jigsaw-pieces/village/plains/houses/plains_shepherds_house_1.json index a7ef2807..9ed8b117 100644 --- a/jigsaw-pieces/village/plains/houses/plains_shepherds_house_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_shepherds_house_1.json @@ -101,7 +101,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_small_farm_1.json b/jigsaw-pieces/village/plains/houses/plains_small_farm_1.json index ace59fbb..60aaf63c 100644 --- a/jigsaw-pieces/village/plains/houses/plains_small_farm_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_small_farm_1.json @@ -60,7 +60,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_small_house_1.json b/jigsaw-pieces/village/plains/houses/plains_small_house_1.json index 52e253a1..50287b5e 100644 --- a/jigsaw-pieces/village/plains/houses/plains_small_house_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_small_house_1.json @@ -75,7 +75,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_small_house_2.json b/jigsaw-pieces/village/plains/houses/plains_small_house_2.json index 653dcaa2..80c23d5b 100644 --- a/jigsaw-pieces/village/plains/houses/plains_small_house_2.json +++ b/jigsaw-pieces/village/plains/houses/plains_small_house_2.json @@ -75,7 +75,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_small_house_3.json b/jigsaw-pieces/village/plains/houses/plains_small_house_3.json index ffbf65ee..9e699c6e 100644 --- a/jigsaw-pieces/village/plains/houses/plains_small_house_3.json +++ b/jigsaw-pieces/village/plains/houses/plains_small_house_3.json @@ -75,7 +75,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_small_house_4.json b/jigsaw-pieces/village/plains/houses/plains_small_house_4.json index b314491f..1ae1a93d 100644 --- a/jigsaw-pieces/village/plains/houses/plains_small_house_4.json +++ b/jigsaw-pieces/village/plains/houses/plains_small_house_4.json @@ -75,7 +75,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_small_house_5.json b/jigsaw-pieces/village/plains/houses/plains_small_house_5.json index 39980d9e..4da9ca8f 100644 --- a/jigsaw-pieces/village/plains/houses/plains_small_house_5.json +++ b/jigsaw-pieces/village/plains/houses/plains_small_house_5.json @@ -114,7 +114,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_small_house_6.json b/jigsaw-pieces/village/plains/houses/plains_small_house_6.json index 744c055a..29eeadd3 100644 --- a/jigsaw-pieces/village/plains/houses/plains_small_house_6.json +++ b/jigsaw-pieces/village/plains/houses/plains_small_house_6.json @@ -75,7 +75,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_small_house_7.json b/jigsaw-pieces/village/plains/houses/plains_small_house_7.json index 6917dee3..fda8822a 100644 --- a/jigsaw-pieces/village/plains/houses/plains_small_house_7.json +++ b/jigsaw-pieces/village/plains/houses/plains_small_house_7.json @@ -75,7 +75,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_small_house_8.json b/jigsaw-pieces/village/plains/houses/plains_small_house_8.json index fe5e926d..cb6807b0 100644 --- a/jigsaw-pieces/village/plains/houses/plains_small_house_8.json +++ b/jigsaw-pieces/village/plains/houses/plains_small_house_8.json @@ -75,7 +75,7 @@ "y": -2, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_stable_1.json b/jigsaw-pieces/village/plains/houses/plains_stable_1.json index 389a8344..1bfbbfcb 100644 --- a/jigsaw-pieces/village/plains/houses/plains_stable_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_stable_1.json @@ -153,7 +153,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_stable_2.json b/jigsaw-pieces/village/plains/houses/plains_stable_2.json index 6cd68cf7..dd7985b1 100644 --- a/jigsaw-pieces/village/plains/houses/plains_stable_2.json +++ b/jigsaw-pieces/village/plains/houses/plains_stable_2.json @@ -114,7 +114,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_tannery_1.json b/jigsaw-pieces/village/plains/houses/plains_tannery_1.json index f0986513..d20ee768 100644 --- a/jigsaw-pieces/village/plains/houses/plains_tannery_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_tannery_1.json @@ -60,7 +60,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_temple_3.json b/jigsaw-pieces/village/plains/houses/plains_temple_3.json index 822dc881..96d9a741 100644 --- a/jigsaw-pieces/village/plains/houses/plains_temple_3.json +++ b/jigsaw-pieces/village/plains/houses/plains_temple_3.json @@ -60,7 +60,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_temple_4.json b/jigsaw-pieces/village/plains/houses/plains_temple_4.json index 73390b32..3d5f1191 100644 --- a/jigsaw-pieces/village/plains/houses/plains_temple_4.json +++ b/jigsaw-pieces/village/plains/houses/plains_temple_4.json @@ -60,7 +60,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_tool_smith_1.json b/jigsaw-pieces/village/plains/houses/plains_tool_smith_1.json index 9167c76d..ed43eade 100644 --- a/jigsaw-pieces/village/plains/houses/plains_tool_smith_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_tool_smith_1.json @@ -60,7 +60,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/plains/houses/plains_weaponsmith_1.json b/jigsaw-pieces/village/plains/houses/plains_weaponsmith_1.json index 0fc963a3..184d8330 100644 --- a/jigsaw-pieces/village/plains/houses/plains_weaponsmith_1.json +++ b/jigsaw-pieces/village/plains/houses/plains_weaponsmith_1.json @@ -60,7 +60,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, From f2d48951d3163f529f7f95a5e85408d1f7aa6c55 Mon Sep 17 00:00:00 2001 From: cyberpwn Date: Wed, 15 Sep 2021 17:30:43 -0400 Subject: [PATCH 27/30] Sav houses --- jigsaw-pieces/village/savanna/houses/savanna_animal_pen_1.json | 2 +- jigsaw-pieces/village/savanna/houses/savanna_animal_pen_2.json | 2 +- jigsaw-pieces/village/savanna/houses/savanna_animal_pen_3.json | 2 +- jigsaw-pieces/village/savanna/houses/savanna_armorer_1.json | 2 +- .../village/savanna/houses/savanna_butchers_shop_1.json | 2 +- .../village/savanna/houses/savanna_fisher_cottage_1.json | 2 +- .../village/savanna/houses/savanna_fletcher_house_1.json | 2 +- jigsaw-pieces/village/savanna/houses/savanna_large_farm_1.json | 2 +- jigsaw-pieces/village/savanna/houses/savanna_large_farm_2.json | 2 +- jigsaw-pieces/village/savanna/houses/savanna_library_1.json | 2 +- jigsaw-pieces/village/savanna/houses/savanna_mason_1.json | 2 +- .../village/savanna/houses/savanna_medium_house_1.json | 2 +- .../village/savanna/houses/savanna_medium_house_2.json | 2 +- jigsaw-pieces/village/savanna/houses/savanna_shepherd_1.json | 2 +- jigsaw-pieces/village/savanna/houses/savanna_small_house_1.json | 2 +- jigsaw-pieces/village/savanna/houses/savanna_small_house_2.json | 2 +- jigsaw-pieces/village/savanna/houses/savanna_small_house_3.json | 2 +- jigsaw-pieces/village/savanna/houses/savanna_small_house_4.json | 2 +- jigsaw-pieces/village/savanna/houses/savanna_small_house_5.json | 2 +- jigsaw-pieces/village/savanna/houses/savanna_small_house_6.json | 2 +- jigsaw-pieces/village/savanna/houses/savanna_small_house_7.json | 2 +- jigsaw-pieces/village/savanna/houses/savanna_small_house_8.json | 2 +- jigsaw-pieces/village/savanna/houses/savanna_tannery_1.json | 2 +- jigsaw-pieces/village/savanna/houses/savanna_temple_1.json | 2 +- jigsaw-pieces/village/savanna/houses/savanna_temple_2.json | 2 +- jigsaw-pieces/village/savanna/houses/savanna_tool_smith_1.json | 2 +- jigsaw-pieces/village/savanna/houses/savanna_weaponsmith_1.json | 2 +- jigsaw-pieces/village/savanna/houses/savanna_weaponsmith_2.json | 2 +- 28 files changed, 28 insertions(+), 28 deletions(-) diff --git a/jigsaw-pieces/village/savanna/houses/savanna_animal_pen_1.json b/jigsaw-pieces/village/savanna/houses/savanna_animal_pen_1.json index 66daf01d..9d59d1a3 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_animal_pen_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_animal_pen_1.json @@ -77,7 +77,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_animal_pen_2.json b/jigsaw-pieces/village/savanna/houses/savanna_animal_pen_2.json index 81c96399..027d6b79 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_animal_pen_2.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_animal_pen_2.json @@ -129,7 +129,7 @@ "y": -1, "z": 0 }, - "mode": "PAINT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_animal_pen_3.json b/jigsaw-pieces/village/savanna/houses/savanna_animal_pen_3.json index a9b3cad0..6d7e70da 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_animal_pen_3.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_animal_pen_3.json @@ -90,7 +90,7 @@ "y": -1, "z": 0 }, - "mode": "PAINT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_armorer_1.json b/jigsaw-pieces/village/savanna/houses/savanna_armorer_1.json index a7275c27..df28affd 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_armorer_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_armorer_1.json @@ -62,7 +62,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MAX_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_butchers_shop_1.json b/jigsaw-pieces/village/savanna/houses/savanna_butchers_shop_1.json index f396ff3c..094eae51 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_butchers_shop_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_butchers_shop_1.json @@ -77,7 +77,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_fisher_cottage_1.json b/jigsaw-pieces/village/savanna/houses/savanna_fisher_cottage_1.json index 1672a7e7..3f87708c 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_fisher_cottage_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_fisher_cottage_1.json @@ -103,7 +103,7 @@ "y": -2, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_fletcher_house_1.json b/jigsaw-pieces/village/savanna/houses/savanna_fletcher_house_1.json index 6d5677d9..fa477184 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_fletcher_house_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_fletcher_house_1.json @@ -62,7 +62,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_large_farm_1.json b/jigsaw-pieces/village/savanna/houses/savanna_large_farm_1.json index 3e7e72aa..af9f9cd3 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_large_farm_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_large_farm_1.json @@ -62,7 +62,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_large_farm_2.json b/jigsaw-pieces/village/savanna/houses/savanna_large_farm_2.json index f584c87d..383ff107 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_large_farm_2.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_large_farm_2.json @@ -77,7 +77,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_library_1.json b/jigsaw-pieces/village/savanna/houses/savanna_library_1.json index fce02518..f494265c 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_library_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_library_1.json @@ -62,7 +62,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_mason_1.json b/jigsaw-pieces/village/savanna/houses/savanna_mason_1.json index 5bf9ad60..d660f28d 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_mason_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_mason_1.json @@ -62,7 +62,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_medium_house_1.json b/jigsaw-pieces/village/savanna/houses/savanna_medium_house_1.json index 3de79646..d884af58 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_medium_house_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_medium_house_1.json @@ -103,7 +103,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_medium_house_2.json b/jigsaw-pieces/village/savanna/houses/savanna_medium_house_2.json index 3a788427..8c2e5551 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_medium_house_2.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_medium_house_2.json @@ -103,7 +103,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_shepherd_1.json b/jigsaw-pieces/village/savanna/houses/savanna_shepherd_1.json index 8c16a846..1ec4f5c8 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_shepherd_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_shepherd_1.json @@ -90,7 +90,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_small_house_1.json b/jigsaw-pieces/village/savanna/houses/savanna_small_house_1.json index f83025e6..9cb6d3b5 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_small_house_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_small_house_1.json @@ -77,7 +77,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_small_house_2.json b/jigsaw-pieces/village/savanna/houses/savanna_small_house_2.json index 14cc8edb..db51825c 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_small_house_2.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_small_house_2.json @@ -77,7 +77,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_small_house_3.json b/jigsaw-pieces/village/savanna/houses/savanna_small_house_3.json index 8ed0ba70..919a0443 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_small_house_3.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_small_house_3.json @@ -77,7 +77,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_small_house_4.json b/jigsaw-pieces/village/savanna/houses/savanna_small_house_4.json index 88efddea..15f90e9a 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_small_house_4.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_small_house_4.json @@ -77,7 +77,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_small_house_5.json b/jigsaw-pieces/village/savanna/houses/savanna_small_house_5.json index e9d31807..185dd3d6 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_small_house_5.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_small_house_5.json @@ -77,7 +77,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_small_house_6.json b/jigsaw-pieces/village/savanna/houses/savanna_small_house_6.json index d50b0fac..0efd611d 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_small_house_6.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_small_house_6.json @@ -90,7 +90,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_small_house_7.json b/jigsaw-pieces/village/savanna/houses/savanna_small_house_7.json index 3da6d4f2..50d17bdc 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_small_house_7.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_small_house_7.json @@ -77,7 +77,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_small_house_8.json b/jigsaw-pieces/village/savanna/houses/savanna_small_house_8.json index 0a24e4d7..34cea284 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_small_house_8.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_small_house_8.json @@ -77,7 +77,7 @@ "y": -2, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_tannery_1.json b/jigsaw-pieces/village/savanna/houses/savanna_tannery_1.json index f32fe364..1f4eb3f2 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_tannery_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_tannery_1.json @@ -62,7 +62,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_temple_1.json b/jigsaw-pieces/village/savanna/houses/savanna_temple_1.json index 676be896..0be6fc76 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_temple_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_temple_1.json @@ -62,7 +62,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_temple_2.json b/jigsaw-pieces/village/savanna/houses/savanna_temple_2.json index 846eae3b..cd295b20 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_temple_2.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_temple_2.json @@ -62,7 +62,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_tool_smith_1.json b/jigsaw-pieces/village/savanna/houses/savanna_tool_smith_1.json index b8ce164b..ad39a160 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_tool_smith_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_tool_smith_1.json @@ -62,7 +62,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_weaponsmith_1.json b/jigsaw-pieces/village/savanna/houses/savanna_weaponsmith_1.json index 44fc1bcf..e34f9e04 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_weaponsmith_1.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_weaponsmith_1.json @@ -62,7 +62,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/savanna/houses/savanna_weaponsmith_2.json b/jigsaw-pieces/village/savanna/houses/savanna_weaponsmith_2.json index 058a4bcd..c8ae92e3 100644 --- a/jigsaw-pieces/village/savanna/houses/savanna_weaponsmith_2.json +++ b/jigsaw-pieces/village/savanna/houses/savanna_weaponsmith_2.json @@ -62,7 +62,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, From dfd5a9148b228ae24ab259c702a317855e48976b Mon Sep 17 00:00:00 2001 From: cyberpwn Date: Wed, 15 Sep 2021 17:32:18 -0400 Subject: [PATCH 28/30] Snowy village --- jigsaw-pieces/village/snowy/houses/snowy_animal_pen_1.json | 2 +- jigsaw-pieces/village/snowy/houses/snowy_animal_pen_2.json | 2 +- jigsaw-pieces/village/snowy/houses/snowy_armorer_house_1.json | 2 +- jigsaw-pieces/village/snowy/houses/snowy_armorer_house_2.json | 2 +- jigsaw-pieces/village/snowy/houses/snowy_butchers_shop_1.json | 2 +- jigsaw-pieces/village/snowy/houses/snowy_butchers_shop_2.json | 2 +- .../village/snowy/houses/snowy_cartographer_house_1.json | 2 +- jigsaw-pieces/village/snowy/houses/snowy_farm_1.json | 2 +- jigsaw-pieces/village/snowy/houses/snowy_farm_2.json | 2 +- jigsaw-pieces/village/snowy/houses/snowy_fisher_cottage.json | 2 +- jigsaw-pieces/village/snowy/houses/snowy_fletcher_house_1.json | 2 +- jigsaw-pieces/village/snowy/houses/snowy_library_1.json | 2 +- jigsaw-pieces/village/snowy/houses/snowy_masons_house_1.json | 2 +- jigsaw-pieces/village/snowy/houses/snowy_masons_house_2.json | 2 +- jigsaw-pieces/village/snowy/houses/snowy_medium_house_1.json | 2 +- jigsaw-pieces/village/snowy/houses/snowy_medium_house_2.json | 2 +- jigsaw-pieces/village/snowy/houses/snowy_medium_house_3.json | 2 +- jigsaw-pieces/village/snowy/houses/snowy_shepherds_house_1.json | 2 +- jigsaw-pieces/village/snowy/houses/snowy_small_house_1.json | 2 +- jigsaw-pieces/village/snowy/houses/snowy_small_house_2.json | 2 +- jigsaw-pieces/village/snowy/houses/snowy_small_house_3.json | 2 +- jigsaw-pieces/village/snowy/houses/snowy_small_house_4.json | 2 +- jigsaw-pieces/village/snowy/houses/snowy_small_house_5.json | 2 +- jigsaw-pieces/village/snowy/houses/snowy_small_house_6.json | 2 +- jigsaw-pieces/village/snowy/houses/snowy_small_house_7.json | 2 +- jigsaw-pieces/village/snowy/houses/snowy_small_house_8.json | 2 +- jigsaw-pieces/village/snowy/houses/snowy_tannery_1.json | 2 +- jigsaw-pieces/village/snowy/houses/snowy_temple_1.json | 2 +- jigsaw-pieces/village/snowy/houses/snowy_tool_smith_1.json | 2 +- jigsaw-pieces/village/snowy/houses/snowy_weapon_smith_1.json | 2 +- 30 files changed, 30 insertions(+), 30 deletions(-) diff --git a/jigsaw-pieces/village/snowy/houses/snowy_animal_pen_1.json b/jigsaw-pieces/village/snowy/houses/snowy_animal_pen_1.json index e9f38365..93759e7f 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_animal_pen_1.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_animal_pen_1.json @@ -76,7 +76,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MAX_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_animal_pen_2.json b/jigsaw-pieces/village/snowy/houses/snowy_animal_pen_2.json index cf2be3f5..36f7ffe7 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_animal_pen_2.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_animal_pen_2.json @@ -89,7 +89,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MAX_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_armorer_house_1.json b/jigsaw-pieces/village/snowy/houses/snowy_armorer_house_1.json index c6fb62f1..ac45fc25 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_armorer_house_1.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_armorer_house_1.json @@ -61,7 +61,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MAX_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_armorer_house_2.json b/jigsaw-pieces/village/snowy/houses/snowy_armorer_house_2.json index 5aad85d3..1ea57e00 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_armorer_house_2.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_armorer_house_2.json @@ -61,7 +61,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MAX_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_butchers_shop_1.json b/jigsaw-pieces/village/snowy/houses/snowy_butchers_shop_1.json index 5fcdafab..7adc4e97 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_butchers_shop_1.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_butchers_shop_1.json @@ -76,7 +76,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MAX_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_butchers_shop_2.json b/jigsaw-pieces/village/snowy/houses/snowy_butchers_shop_2.json index 56119252..c0add50a 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_butchers_shop_2.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_butchers_shop_2.json @@ -76,7 +76,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MAX_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_cartographer_house_1.json b/jigsaw-pieces/village/snowy/houses/snowy_cartographer_house_1.json index 3762344b..0a7fc861 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_cartographer_house_1.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_cartographer_house_1.json @@ -61,7 +61,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MAX_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_farm_1.json b/jigsaw-pieces/village/snowy/houses/snowy_farm_1.json index 50124ece..f1eb8aa3 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_farm_1.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_farm_1.json @@ -61,7 +61,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MAX_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_farm_2.json b/jigsaw-pieces/village/snowy/houses/snowy_farm_2.json index f0d3e338..877112ed 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_farm_2.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_farm_2.json @@ -61,7 +61,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MAX_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_fisher_cottage.json b/jigsaw-pieces/village/snowy/houses/snowy_fisher_cottage.json index d1042514..4bad701a 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_fisher_cottage.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_fisher_cottage.json @@ -61,7 +61,7 @@ "y": -2, "z": 0 }, - "mode": "FAST_MAX_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_fletcher_house_1.json b/jigsaw-pieces/village/snowy/houses/snowy_fletcher_house_1.json index ba647327..56eaa764 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_fletcher_house_1.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_fletcher_house_1.json @@ -61,7 +61,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MAX_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_library_1.json b/jigsaw-pieces/village/snowy/houses/snowy_library_1.json index 08943c0b..b276e391 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_library_1.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_library_1.json @@ -61,7 +61,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MAX_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_masons_house_1.json b/jigsaw-pieces/village/snowy/houses/snowy_masons_house_1.json index 194955ca..06abb81b 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_masons_house_1.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_masons_house_1.json @@ -61,7 +61,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MAX_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_masons_house_2.json b/jigsaw-pieces/village/snowy/houses/snowy_masons_house_2.json index e723c2df..9a1ad0dd 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_masons_house_2.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_masons_house_2.json @@ -61,7 +61,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MAX_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_medium_house_1.json b/jigsaw-pieces/village/snowy/houses/snowy_medium_house_1.json index eccba6f2..50b861ed 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_medium_house_1.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_medium_house_1.json @@ -89,7 +89,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MAX_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_medium_house_2.json b/jigsaw-pieces/village/snowy/houses/snowy_medium_house_2.json index a7ae5b6a..fa7067fe 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_medium_house_2.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_medium_house_2.json @@ -89,7 +89,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MAX_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_medium_house_3.json b/jigsaw-pieces/village/snowy/houses/snowy_medium_house_3.json index 9e93f7e4..7c648141 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_medium_house_3.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_medium_house_3.json @@ -89,7 +89,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MAX_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_shepherds_house_1.json b/jigsaw-pieces/village/snowy/houses/snowy_shepherds_house_1.json index d6ea0bc8..ef1da92a 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_shepherds_house_1.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_shepherds_house_1.json @@ -76,7 +76,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MAX_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_small_house_1.json b/jigsaw-pieces/village/snowy/houses/snowy_small_house_1.json index b8c9a234..d51fbbf3 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_small_house_1.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_small_house_1.json @@ -76,7 +76,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MAX_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_small_house_2.json b/jigsaw-pieces/village/snowy/houses/snowy_small_house_2.json index a59a3f8d..36cb2e35 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_small_house_2.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_small_house_2.json @@ -76,7 +76,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MAX_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_small_house_3.json b/jigsaw-pieces/village/snowy/houses/snowy_small_house_3.json index cedd88ef..9dd10a90 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_small_house_3.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_small_house_3.json @@ -76,7 +76,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MAX_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_small_house_4.json b/jigsaw-pieces/village/snowy/houses/snowy_small_house_4.json index 5db3b6c4..5d823fd7 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_small_house_4.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_small_house_4.json @@ -76,7 +76,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MAX_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_small_house_5.json b/jigsaw-pieces/village/snowy/houses/snowy_small_house_5.json index 30637ab3..5a8f4743 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_small_house_5.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_small_house_5.json @@ -76,7 +76,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MAX_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_small_house_6.json b/jigsaw-pieces/village/snowy/houses/snowy_small_house_6.json index 3e4a631a..c87fed8c 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_small_house_6.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_small_house_6.json @@ -76,7 +76,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MAX_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_small_house_7.json b/jigsaw-pieces/village/snowy/houses/snowy_small_house_7.json index cc08378c..ea06fb0d 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_small_house_7.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_small_house_7.json @@ -76,7 +76,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MAX_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_small_house_8.json b/jigsaw-pieces/village/snowy/houses/snowy_small_house_8.json index ea5a9437..ce008470 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_small_house_8.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_small_house_8.json @@ -76,7 +76,7 @@ "y": -2, "z": 0 }, - "mode": "FAST_MAX_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_tannery_1.json b/jigsaw-pieces/village/snowy/houses/snowy_tannery_1.json index 2fa9eaff..3d87bf2c 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_tannery_1.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_tannery_1.json @@ -61,7 +61,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MAX_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_temple_1.json b/jigsaw-pieces/village/snowy/houses/snowy_temple_1.json index 0032d4fd..4b0e6ada 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_temple_1.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_temple_1.json @@ -61,7 +61,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MAX_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_tool_smith_1.json b/jigsaw-pieces/village/snowy/houses/snowy_tool_smith_1.json index 28f8bdac..7a7599dc 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_tool_smith_1.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_tool_smith_1.json @@ -61,7 +61,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MAX_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/snowy/houses/snowy_weapon_smith_1.json b/jigsaw-pieces/village/snowy/houses/snowy_weapon_smith_1.json index b76e8583..b6b6a23e 100644 --- a/jigsaw-pieces/village/snowy/houses/snowy_weapon_smith_1.json +++ b/jigsaw-pieces/village/snowy/houses/snowy_weapon_smith_1.json @@ -61,7 +61,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MAX_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, From 4494b6e1b10aec3b2657d40cc16da319f3491f9d Mon Sep 17 00:00:00 2001 From: cyberpwn Date: Wed, 15 Sep 2021 17:33:36 -0400 Subject: [PATCH 29/30] Tai vil --- jigsaw-pieces/village/taiga/houses/taiga_animal_pen_1.json | 2 +- jigsaw-pieces/village/taiga/houses/taiga_armorer_2.json | 2 +- jigsaw-pieces/village/taiga/houses/taiga_armorer_house_1.json | 2 +- jigsaw-pieces/village/taiga/houses/taiga_butcher_shop_1.json | 2 +- .../village/taiga/houses/taiga_cartographer_house_1.json | 2 +- jigsaw-pieces/village/taiga/houses/taiga_fisher_cottage_1.json | 2 +- jigsaw-pieces/village/taiga/houses/taiga_fletcher_house_1.json | 2 +- jigsaw-pieces/village/taiga/houses/taiga_large_farm_1.json | 2 +- jigsaw-pieces/village/taiga/houses/taiga_large_farm_2.json | 2 +- jigsaw-pieces/village/taiga/houses/taiga_library_1.json | 2 +- jigsaw-pieces/village/taiga/houses/taiga_masons_house_1.json | 2 +- jigsaw-pieces/village/taiga/houses/taiga_medium_house_1.json | 2 +- jigsaw-pieces/village/taiga/houses/taiga_medium_house_2.json | 2 +- jigsaw-pieces/village/taiga/houses/taiga_medium_house_3.json | 2 +- jigsaw-pieces/village/taiga/houses/taiga_medium_house_4.json | 2 +- jigsaw-pieces/village/taiga/houses/taiga_shepherds_house_1.json | 2 +- jigsaw-pieces/village/taiga/houses/taiga_small_farm_1.json | 2 +- jigsaw-pieces/village/taiga/houses/taiga_small_house_1.json | 2 +- jigsaw-pieces/village/taiga/houses/taiga_small_house_2.json | 2 +- jigsaw-pieces/village/taiga/houses/taiga_small_house_3.json | 2 +- jigsaw-pieces/village/taiga/houses/taiga_small_house_4.json | 2 +- jigsaw-pieces/village/taiga/houses/taiga_small_house_5.json | 2 +- jigsaw-pieces/village/taiga/houses/taiga_tannery_1.json | 2 +- jigsaw-pieces/village/taiga/houses/taiga_temple_1.json | 2 +- jigsaw-pieces/village/taiga/houses/taiga_tool_smith_1.json | 2 +- jigsaw-pieces/village/taiga/houses/taiga_weaponsmith_1.json | 2 +- jigsaw-pieces/village/taiga/houses/taiga_weaponsmith_2.json | 2 +- 27 files changed, 27 insertions(+), 27 deletions(-) diff --git a/jigsaw-pieces/village/taiga/houses/taiga_animal_pen_1.json b/jigsaw-pieces/village/taiga/houses/taiga_animal_pen_1.json index 633f5e30..245c52a5 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_animal_pen_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_animal_pen_1.json @@ -90,7 +90,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_armorer_2.json b/jigsaw-pieces/village/taiga/houses/taiga_armorer_2.json index b7729876..78bbb1b2 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_armorer_2.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_armorer_2.json @@ -90,7 +90,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_armorer_house_1.json b/jigsaw-pieces/village/taiga/houses/taiga_armorer_house_1.json index 8903d83f..ba5dc613 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_armorer_house_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_armorer_house_1.json @@ -62,7 +62,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_butcher_shop_1.json b/jigsaw-pieces/village/taiga/houses/taiga_butcher_shop_1.json index 27b526d2..a9810fc4 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_butcher_shop_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_butcher_shop_1.json @@ -77,7 +77,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_cartographer_house_1.json b/jigsaw-pieces/village/taiga/houses/taiga_cartographer_house_1.json index 89178d82..020346be 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_cartographer_house_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_cartographer_house_1.json @@ -77,7 +77,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_fisher_cottage_1.json b/jigsaw-pieces/village/taiga/houses/taiga_fisher_cottage_1.json index b49a0b3a..131acc48 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_fisher_cottage_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_fisher_cottage_1.json @@ -116,7 +116,7 @@ "y": -2, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_fletcher_house_1.json b/jigsaw-pieces/village/taiga/houses/taiga_fletcher_house_1.json index e4d2b298..efda98f9 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_fletcher_house_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_fletcher_house_1.json @@ -62,7 +62,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_large_farm_1.json b/jigsaw-pieces/village/taiga/houses/taiga_large_farm_1.json index 5b6d0d81..8186a127 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_large_farm_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_large_farm_1.json @@ -77,7 +77,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_large_farm_2.json b/jigsaw-pieces/village/taiga/houses/taiga_large_farm_2.json index 002ff73e..be9a0d73 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_large_farm_2.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_large_farm_2.json @@ -77,7 +77,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_library_1.json b/jigsaw-pieces/village/taiga/houses/taiga_library_1.json index 9a8fea35..2e37b541 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_library_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_library_1.json @@ -103,7 +103,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_masons_house_1.json b/jigsaw-pieces/village/taiga/houses/taiga_masons_house_1.json index 37ddb09e..71abf15a 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_masons_house_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_masons_house_1.json @@ -62,7 +62,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_medium_house_1.json b/jigsaw-pieces/village/taiga/houses/taiga_medium_house_1.json index 19b2800f..db6a28f9 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_medium_house_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_medium_house_1.json @@ -90,7 +90,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_medium_house_2.json b/jigsaw-pieces/village/taiga/houses/taiga_medium_house_2.json index 5e0e5951..f5251297 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_medium_house_2.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_medium_house_2.json @@ -90,7 +90,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_medium_house_3.json b/jigsaw-pieces/village/taiga/houses/taiga_medium_house_3.json index 1c55b978..a578d16c 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_medium_house_3.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_medium_house_3.json @@ -116,7 +116,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_medium_house_4.json b/jigsaw-pieces/village/taiga/houses/taiga_medium_house_4.json index 5e93a5cd..c86a8489 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_medium_house_4.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_medium_house_4.json @@ -90,7 +90,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_shepherds_house_1.json b/jigsaw-pieces/village/taiga/houses/taiga_shepherds_house_1.json index fed730ae..f7a5c215 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_shepherds_house_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_shepherds_house_1.json @@ -90,7 +90,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_small_farm_1.json b/jigsaw-pieces/village/taiga/houses/taiga_small_farm_1.json index 4ad145d6..97ce46da 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_small_farm_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_small_farm_1.json @@ -77,7 +77,7 @@ "y": -1, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_small_house_1.json b/jigsaw-pieces/village/taiga/houses/taiga_small_house_1.json index 44b682e5..33f35b23 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_small_house_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_small_house_1.json @@ -77,7 +77,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_small_house_2.json b/jigsaw-pieces/village/taiga/houses/taiga_small_house_2.json index 053ba718..35a4ddbe 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_small_house_2.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_small_house_2.json @@ -77,7 +77,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_small_house_3.json b/jigsaw-pieces/village/taiga/houses/taiga_small_house_3.json index 3d08b934..7ea34218 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_small_house_3.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_small_house_3.json @@ -77,7 +77,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_small_house_4.json b/jigsaw-pieces/village/taiga/houses/taiga_small_house_4.json index 39e975f3..54a1165f 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_small_house_4.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_small_house_4.json @@ -90,7 +90,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_small_house_5.json b/jigsaw-pieces/village/taiga/houses/taiga_small_house_5.json index b45f6d93..3bc874c5 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_small_house_5.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_small_house_5.json @@ -77,7 +77,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_tannery_1.json b/jigsaw-pieces/village/taiga/houses/taiga_tannery_1.json index 322f330d..bc395d59 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_tannery_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_tannery_1.json @@ -62,7 +62,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_temple_1.json b/jigsaw-pieces/village/taiga/houses/taiga_temple_1.json index fddc145e..972caa78 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_temple_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_temple_1.json @@ -62,7 +62,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_tool_smith_1.json b/jigsaw-pieces/village/taiga/houses/taiga_tool_smith_1.json index 48ad4a77..473a72b4 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_tool_smith_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_tool_smith_1.json @@ -90,7 +90,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_weaponsmith_1.json b/jigsaw-pieces/village/taiga/houses/taiga_weaponsmith_1.json index 4403e3aa..49f971ab 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_weaponsmith_1.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_weaponsmith_1.json @@ -62,7 +62,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, diff --git a/jigsaw-pieces/village/taiga/houses/taiga_weaponsmith_2.json b/jigsaw-pieces/village/taiga/houses/taiga_weaponsmith_2.json index 0c0f85fe..34b551a4 100644 --- a/jigsaw-pieces/village/taiga/houses/taiga_weaponsmith_2.json +++ b/jigsaw-pieces/village/taiga/houses/taiga_weaponsmith_2.json @@ -77,7 +77,7 @@ "y": 0, "z": 0 }, - "mode": "FAST_MIN_HEIGHT", + "mode": "STILT", "carvingSupport": "SURFACE_ONLY", "snow": 0, "underwater": false, From 86d3e4b99251a2c82607ae88802a073f122f8888 Mon Sep 17 00:00:00 2001 From: cyberpwn Date: Wed, 15 Sep 2021 18:47:10 -0400 Subject: [PATCH 30/30] v --- dimensions/overworld.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dimensions/overworld.json b/dimensions/overworld.json index 8c37202b..129f1691 100644 --- a/dimensions/overworld.json +++ b/dimensions/overworld.json @@ -1,5 +1,5 @@ { - "version": 2010, + "version": 2011, "name": "Overworld", "environment": "NORMAL", "fluidHeight": 63,