growing-patterns.json5 62 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961
  1. /*
  2. This file uses the ".json5" file extension which allows for comments like this in a json file!
  3. Your text editor may show this file with invalid/no syntax, if so, we recommend you download:
  4. VSCode: https://code.visualstudio.com/
  5. JSON5 plugin(for VSCode): https://marketplace.visualstudio.com/items?itemName=mrmlnc.vscode-json5
  6. to make editing this file much easier.
  7. */
  8. {
  9. /* Sapling patterns for a given block.
  10. Not all blocks work, only blocks using "FeatureGrowerFromBlockPattern"
  11. */
  12. "sapling_patterns": {
  13. "byg:araucaria_sapling": [
  14. {
  15. /* Pattern required for this block to spawn a configured feature.
  16. "x" represents a sapling position." " represents air.
  17. Max size is 5x5.
  18. */
  19. "pattern": [
  20. "x"
  21. ],
  22. // Configured Feature spawner.
  23. "spawners": [
  24. {
  25. "data": {
  26. // Registry ID of the configured feature.
  27. "featureID": "byg:araucaria_tree1"
  28. },
  29. "weight": 1
  30. },
  31. {
  32. "data": {
  33. // Registry ID of the configured feature.
  34. "featureID": "byg:araucaria_tree2"
  35. },
  36. "weight": 1
  37. }
  38. ]
  39. }
  40. ],
  41. "byg:aspen_sapling": [
  42. {
  43. /* Pattern required for this block to spawn a configured feature.
  44. "x" represents a sapling position." " represents air.
  45. Max size is 5x5.
  46. */
  47. "pattern": [
  48. "x"
  49. ],
  50. // Configured Feature spawner.
  51. "spawners": [
  52. {
  53. "data": {
  54. // Registry ID of the configured feature.
  55. "featureID": "byg:aspen_tree1"
  56. },
  57. "weight": 1
  58. },
  59. {
  60. "data": {
  61. // Registry ID of the configured feature.
  62. "featureID": "byg:aspen_tree2"
  63. },
  64. "weight": 1
  65. },
  66. {
  67. "data": {
  68. // Registry ID of the configured feature.
  69. "featureID": "byg:aspen_tree3"
  70. },
  71. "weight": 1
  72. }
  73. ]
  74. }
  75. ],
  76. "byg:baobab_sapling": [
  77. {
  78. /* Pattern required for this block to spawn a configured feature.
  79. "x" represents a sapling position." " represents air.
  80. Max size is 5x5.
  81. */
  82. "pattern": [
  83. "xxx",
  84. "xxx",
  85. "xxx"
  86. ],
  87. // Configured Feature spawner.
  88. "spawners": [
  89. {
  90. "data": {
  91. // Registry ID of the configured feature.
  92. "featureID": "byg:baobab_tree1"
  93. },
  94. "weight": 1
  95. },
  96. {
  97. "data": {
  98. // Registry ID of the configured feature.
  99. "featureID": "byg:baobab_tree2"
  100. },
  101. "weight": 1
  102. }
  103. ]
  104. }
  105. ],
  106. "byg:blue_enchanted_sapling": [
  107. {
  108. /* Pattern required for this block to spawn a configured feature.
  109. "x" represents a sapling position." " represents air.
  110. Max size is 5x5.
  111. */
  112. "pattern": [
  113. "x"
  114. ],
  115. // Configured Feature spawner.
  116. "spawners": [
  117. {
  118. "data": {
  119. // Registry ID of the configured feature.
  120. "featureID": "byg:blue_enchanted_tree1"
  121. },
  122. "weight": 1
  123. },
  124. {
  125. "data": {
  126. // Registry ID of the configured feature.
  127. "featureID": "byg:blue_enchanted_tree2"
  128. },
  129. "weight": 1
  130. }
  131. ]
  132. }
  133. ],
  134. "byg:blue_spruce_sapling": [
  135. {
  136. /* Pattern required for this block to spawn a configured feature.
  137. "x" represents a sapling position." " represents air.
  138. Max size is 5x5.
  139. */
  140. "pattern": [
  141. "x"
  142. ],
  143. // Configured Feature spawner.
  144. "spawners": [
  145. {
  146. "data": {
  147. // Registry ID of the configured feature.
  148. "featureID": "byg:spruce_blue_tree1"
  149. },
  150. "weight": 1
  151. },
  152. {
  153. "data": {
  154. // Registry ID of the configured feature.
  155. "featureID": "byg:spruce_blue_tree2"
  156. },
  157. "weight": 1
  158. },
  159. {
  160. "data": {
  161. // Registry ID of the configured feature.
  162. "featureID": "byg:spruce_blue_tree3"
  163. },
  164. "weight": 1
  165. },
  166. {
  167. "data": {
  168. // Registry ID of the configured feature.
  169. "featureID": "byg:spruce_blue_tree4"
  170. },
  171. "weight": 1
  172. }
  173. ]
  174. },
  175. {
  176. /* Pattern required for this block to spawn a configured feature.
  177. "x" represents a sapling position." " represents air.
  178. Max size is 5x5.
  179. */
  180. "pattern": [
  181. "xx",
  182. "xx"
  183. ],
  184. // Configured Feature spawner.
  185. "spawners": [
  186. {
  187. "data": {
  188. // Registry ID of the configured feature.
  189. "featureID": "byg:spruce_blue_tree_medium1"
  190. },
  191. "weight": 1
  192. },
  193. {
  194. "data": {
  195. // Registry ID of the configured feature.
  196. "featureID": "byg:spruce_blue_tree_medium2"
  197. },
  198. "weight": 1
  199. },
  200. {
  201. "data": {
  202. // Registry ID of the configured feature.
  203. "featureID": "byg:spruce_blue_tree_medium3"
  204. },
  205. "weight": 1
  206. },
  207. {
  208. "data": {
  209. // Registry ID of the configured feature.
  210. "featureID": "byg:spruce_blue_tree_medium4"
  211. },
  212. "weight": 1
  213. }
  214. ]
  215. },
  216. {
  217. /* Pattern required for this block to spawn a configured feature.
  218. "x" represents a sapling position." " represents air.
  219. Max size is 5x5.
  220. */
  221. "pattern": [
  222. "xxx",
  223. "xxx",
  224. "xxx"
  225. ],
  226. // Configured Feature spawner.
  227. "spawners": [
  228. {
  229. "data": {
  230. // Registry ID of the configured feature.
  231. "featureID": "byg:spruce_blue_tree_large1"
  232. },
  233. "weight": 1
  234. }
  235. ]
  236. }
  237. ],
  238. "byg:brown_birch_sapling": [
  239. {
  240. /* Pattern required for this block to spawn a configured feature.
  241. "x" represents a sapling position." " represents air.
  242. Max size is 5x5.
  243. */
  244. "pattern": [
  245. "x"
  246. ],
  247. // Configured Feature spawner.
  248. "spawners": [
  249. {
  250. "data": {
  251. // Registry ID of the configured feature.
  252. "featureID": "byg:brown_birch_tree1"
  253. },
  254. "weight": 1
  255. },
  256. {
  257. "data": {
  258. // Registry ID of the configured feature.
  259. "featureID": "byg:brown_birch_tree2"
  260. },
  261. "weight": 1
  262. },
  263. {
  264. "data": {
  265. // Registry ID of the configured feature.
  266. "featureID": "byg:brown_birch_tree3"
  267. },
  268. "weight": 1
  269. },
  270. {
  271. "data": {
  272. // Registry ID of the configured feature.
  273. "featureID": "byg:brown_birch_tree4"
  274. },
  275. "weight": 1
  276. }
  277. ]
  278. }
  279. ],
  280. "byg:brown_oak_sapling": [
  281. {
  282. /* Pattern required for this block to spawn a configured feature.
  283. "x" represents a sapling position." " represents air.
  284. Max size is 5x5.
  285. */
  286. "pattern": [
  287. "x"
  288. ],
  289. // Configured Feature spawner.
  290. "spawners": [
  291. {
  292. "data": {
  293. // Registry ID of the configured feature.
  294. "featureID": "byg:deciduous_brown_tree1"
  295. },
  296. "weight": 1
  297. },
  298. {
  299. "data": {
  300. // Registry ID of the configured feature.
  301. "featureID": "byg:deciduous_brown_tree2"
  302. },
  303. "weight": 1
  304. },
  305. {
  306. "data": {
  307. // Registry ID of the configured feature.
  308. "featureID": "byg:deciduous_brown_tree3"
  309. },
  310. "weight": 1
  311. },
  312. {
  313. "data": {
  314. // Registry ID of the configured feature.
  315. "featureID": "byg:deciduous_brown_tree4"
  316. },
  317. "weight": 1
  318. },
  319. {
  320. "data": {
  321. // Registry ID of the configured feature.
  322. "featureID": "byg:brown_oak_tree1"
  323. },
  324. "weight": 1
  325. },
  326. {
  327. "data": {
  328. // Registry ID of the configured feature.
  329. "featureID": "byg:brown_oak_tree2"
  330. },
  331. "weight": 1
  332. },
  333. {
  334. "data": {
  335. // Registry ID of the configured feature.
  336. "featureID": "byg:brown_oak_tree3"
  337. },
  338. "weight": 1
  339. }
  340. ]
  341. },
  342. {
  343. /* Pattern required for this block to spawn a configured feature.
  344. "x" represents a sapling position." " represents air.
  345. Max size is 5x5.
  346. */
  347. "pattern": [
  348. "xx",
  349. "xx"
  350. ],
  351. // Configured Feature spawner.
  352. "spawners": [
  353. {
  354. "data": {
  355. // Registry ID of the configured feature.
  356. "featureID": "byg:large_brown_oak_tree1"
  357. },
  358. "weight": 1
  359. },
  360. {
  361. "data": {
  362. // Registry ID of the configured feature.
  363. "featureID": "byg:large_brown_oak_tree2"
  364. },
  365. "weight": 1
  366. },
  367. {
  368. "data": {
  369. // Registry ID of the configured feature.
  370. "featureID": "byg:large_brown_oak_tree3"
  371. },
  372. "weight": 1
  373. }
  374. ]
  375. }
  376. ],
  377. "byg:brown_zelkova_sapling": [
  378. {
  379. /* Pattern required for this block to spawn a configured feature.
  380. "x" represents a sapling position." " represents air.
  381. Max size is 5x5.
  382. */
  383. "pattern": [
  384. "x"
  385. ],
  386. // Configured Feature spawner.
  387. "spawners": [
  388. {
  389. "data": {
  390. // Registry ID of the configured feature.
  391. "featureID": "byg:zelkova_brown_tree1"
  392. },
  393. "weight": 1
  394. },
  395. {
  396. "data": {
  397. // Registry ID of the configured feature.
  398. "featureID": "byg:zelkova_brown_tree2"
  399. },
  400. "weight": 1
  401. },
  402. {
  403. "data": {
  404. // Registry ID of the configured feature.
  405. "featureID": "byg:zelkova_brown_tree3"
  406. },
  407. "weight": 1
  408. }
  409. ]
  410. }
  411. ],
  412. "byg:bulbis_oddity": [
  413. {
  414. /* Pattern required for this block to spawn a configured feature.
  415. "x" represents a sapling position." " represents air.
  416. Max size is 5x5.
  417. */
  418. "pattern": [
  419. "x"
  420. ],
  421. // Configured Feature spawner.
  422. "spawners": [
  423. {
  424. "data": {
  425. // Registry ID of the configured feature.
  426. "featureID": "byg:bulbis_tree1"
  427. },
  428. "weight": 1
  429. },
  430. {
  431. "data": {
  432. // Registry ID of the configured feature.
  433. "featureID": "byg:bulbis_tree2"
  434. },
  435. "weight": 1
  436. },
  437. {
  438. "data": {
  439. // Registry ID of the configured feature.
  440. "featureID": "byg:bulbis_tree3"
  441. },
  442. "weight": 1
  443. }
  444. ]
  445. },
  446. {
  447. /* Pattern required for this block to spawn a configured feature.
  448. "x" represents a sapling position." " represents air.
  449. Max size is 5x5.
  450. */
  451. "pattern": [
  452. " x ",
  453. "xxx",
  454. " x "
  455. ],
  456. // Configured Feature spawner.
  457. "spawners": [
  458. {
  459. "data": {
  460. // Registry ID of the configured feature.
  461. "featureID": "byg:bulbis_tree4"
  462. },
  463. "weight": 1
  464. },
  465. {
  466. "data": {
  467. // Registry ID of the configured feature.
  468. "featureID": "byg:bulbis_tree5"
  469. },
  470. "weight": 1
  471. }
  472. ]
  473. },
  474. {
  475. /* Pattern required for this block to spawn a configured feature.
  476. "x" represents a sapling position." " represents air.
  477. Max size is 5x5.
  478. */
  479. "pattern": [
  480. "xxx",
  481. "xxx",
  482. "xxx"
  483. ],
  484. // Configured Feature spawner.
  485. "spawners": [
  486. {
  487. "data": {
  488. // Registry ID of the configured feature.
  489. "featureID": "byg:bulbis_tree6",
  490. // Some features don't spawn centered, this lets us offset the feature to center it.
  491. "spawnOffset": [
  492. -1,
  493. 0,
  494. -1
  495. ]
  496. },
  497. "weight": 1
  498. }
  499. ]
  500. },
  501. {
  502. /* Pattern required for this block to spawn a configured feature.
  503. "x" represents a sapling position." " represents air.
  504. Max size is 5x5.
  505. */
  506. "pattern": [
  507. " x ",
  508. " xxx ",
  509. "xxxxx",
  510. " xxx ",
  511. " x "
  512. ],
  513. // Configured Feature spawner.
  514. "spawners": [
  515. {
  516. "data": {
  517. // Registry ID of the configured feature.
  518. "featureID": "byg:bulbis_tree7"
  519. },
  520. "weight": 1
  521. }
  522. ]
  523. }
  524. ],
  525. "byg:cika_sapling": [
  526. {
  527. /* Pattern required for this block to spawn a configured feature.
  528. "x" represents a sapling position." " represents air.
  529. Max size is 5x5.
  530. */
  531. "pattern": [
  532. " x ",
  533. "xxx",
  534. " x "
  535. ],
  536. // Configured Feature spawner.
  537. "spawners": [
  538. {
  539. "data": {
  540. // Registry ID of the configured feature.
  541. "featureID": "byg:cika_tree1"
  542. },
  543. "weight": 1
  544. },
  545. {
  546. "data": {
  547. // Registry ID of the configured feature.
  548. "featureID": "byg:cika_tree2"
  549. },
  550. "weight": 1
  551. },
  552. {
  553. "data": {
  554. // Registry ID of the configured feature.
  555. "featureID": "byg:cika_tree3"
  556. },
  557. "weight": 1
  558. }
  559. ]
  560. }
  561. ],
  562. "byg:cypress_sapling": [
  563. {
  564. /* Pattern required for this block to spawn a configured feature.
  565. "x" represents a sapling position." " represents air.
  566. Max size is 5x5.
  567. */
  568. "pattern": [
  569. " x ",
  570. " x ",
  571. "xxxxx",
  572. " x ",
  573. " x "
  574. ],
  575. // Configured Feature spawner.
  576. "spawners": [
  577. {
  578. "data": {
  579. // Registry ID of the configured feature.
  580. "featureID": "byg:cypress_tree1"
  581. },
  582. "weight": 1
  583. },
  584. {
  585. "data": {
  586. // Registry ID of the configured feature.
  587. "featureID": "byg:cypress_tree2"
  588. },
  589. "weight": 1
  590. },
  591. {
  592. "data": {
  593. // Registry ID of the configured feature.
  594. "featureID": "byg:cypress_tree3"
  595. },
  596. "weight": 1
  597. }
  598. ]
  599. }
  600. ],
  601. "byg:death_cap": [
  602. {
  603. /* Pattern required for this block to spawn a configured feature.
  604. "x" represents a sapling position." " represents air.
  605. Max size is 5x5.
  606. */
  607. "pattern": [
  608. "x"
  609. ],
  610. // Configured Feature spawner.
  611. "spawners": [
  612. {
  613. "data": {
  614. // Registry ID of the configured feature.
  615. "featureID": "byg:death_cap_tree1"
  616. },
  617. "weight": 1
  618. },
  619. {
  620. "data": {
  621. // Registry ID of the configured feature.
  622. "featureID": "byg:death_cap_tree2"
  623. },
  624. "weight": 1
  625. },
  626. {
  627. "data": {
  628. // Registry ID of the configured feature.
  629. "featureID": "byg:death_cap_tree3"
  630. },
  631. "weight": 1
  632. }
  633. ]
  634. }
  635. ],
  636. "byg:ebony_sapling": [
  637. {
  638. /* Pattern required for this block to spawn a configured feature.
  639. "x" represents a sapling position." " represents air.
  640. Max size is 5x5.
  641. */
  642. "pattern": [
  643. "xx",
  644. "xx"
  645. ],
  646. // Configured Feature spawner.
  647. "spawners": [
  648. {
  649. "data": {
  650. // Registry ID of the configured feature.
  651. "featureID": "byg:ebony_bush1"
  652. },
  653. "weight": 1
  654. },
  655. {
  656. "data": {
  657. // Registry ID of the configured feature.
  658. "featureID": "byg:ebony_tree1"
  659. },
  660. "weight": 1
  661. },
  662. {
  663. "data": {
  664. // Registry ID of the configured feature.
  665. "featureID": "byg:ebony_tree2"
  666. },
  667. "weight": 1
  668. }
  669. ]
  670. }
  671. ],
  672. "byg:embur_wart": [
  673. {
  674. /* Pattern required for this block to spawn a configured feature.
  675. "x" represents a sapling position." " represents air.
  676. Max size is 5x5.
  677. */
  678. "pattern": [
  679. "x"
  680. ],
  681. // Configured Feature spawner.
  682. "spawners": [
  683. {
  684. "data": {
  685. // Registry ID of the configured feature.
  686. "featureID": "byg:embur_mushroom1"
  687. },
  688. "weight": 1
  689. },
  690. {
  691. "data": {
  692. // Registry ID of the configured feature.
  693. "featureID": "byg:embur_mushroom2"
  694. },
  695. "weight": 1
  696. },
  697. {
  698. "data": {
  699. // Registry ID of the configured feature.
  700. "featureID": "byg:embur_mushroom3"
  701. },
  702. "weight": 1
  703. },
  704. {
  705. "data": {
  706. // Registry ID of the configured feature.
  707. "featureID": "byg:embur_mushroom4"
  708. },
  709. "weight": 1
  710. }
  711. ]
  712. }
  713. ],
  714. "byg:ether_sapling": [
  715. {
  716. /* Pattern required for this block to spawn a configured feature.
  717. "x" represents a sapling position." " represents air.
  718. Max size is 5x5.
  719. */
  720. "pattern": [
  721. "x"
  722. ],
  723. // Configured Feature spawner.
  724. "spawners": [
  725. {
  726. "data": {
  727. // Registry ID of the configured feature.
  728. "featureID": "byg:ether_tree1"
  729. },
  730. "weight": 1
  731. },
  732. {
  733. "data": {
  734. // Registry ID of the configured feature.
  735. "featureID": "byg:ether_tree2"
  736. },
  737. "weight": 1
  738. },
  739. {
  740. "data": {
  741. // Registry ID of the configured feature.
  742. "featureID": "byg:ether_tree3"
  743. },
  744. "weight": 1
  745. },
  746. {
  747. "data": {
  748. // Registry ID of the configured feature.
  749. "featureID": "byg:ether_tree4"
  750. },
  751. "weight": 1
  752. },
  753. {
  754. "data": {
  755. // Registry ID of the configured feature.
  756. "featureID": "byg:ether_tree5"
  757. },
  758. "weight": 1
  759. }
  760. ]
  761. }
  762. ],
  763. "byg:fir_sapling": [
  764. {
  765. /* Pattern required for this block to spawn a configured feature.
  766. "x" represents a sapling position." " represents air.
  767. Max size is 5x5.
  768. */
  769. "pattern": [
  770. "x"
  771. ],
  772. // Configured Feature spawner.
  773. "spawners": [
  774. {
  775. "data": {
  776. // Registry ID of the configured feature.
  777. "featureID": "byg:conifer_tree1"
  778. },
  779. "weight": 1
  780. },
  781. {
  782. "data": {
  783. // Registry ID of the configured feature.
  784. "featureID": "byg:conifer_tree2"
  785. },
  786. "weight": 1
  787. },
  788. {
  789. "data": {
  790. // Registry ID of the configured feature.
  791. "featureID": "byg:conifer_tree3"
  792. },
  793. "weight": 1
  794. },
  795. {
  796. "data": {
  797. // Registry ID of the configured feature.
  798. "featureID": "byg:conifer_tree4"
  799. },
  800. "weight": 1
  801. },
  802. {
  803. "data": {
  804. // Registry ID of the configured feature.
  805. "featureID": "byg:conifer_tree5"
  806. },
  807. "weight": 1
  808. },
  809. {
  810. "data": {
  811. // Registry ID of the configured feature.
  812. "featureID": "byg:conifer_tree6"
  813. },
  814. "weight": 1
  815. },
  816. {
  817. "data": {
  818. // Registry ID of the configured feature.
  819. "featureID": "byg:conifer_tree7"
  820. },
  821. "weight": 1
  822. }
  823. ]
  824. },
  825. {
  826. /* Pattern required for this block to spawn a configured feature.
  827. "x" represents a sapling position." " represents air.
  828. Max size is 5x5.
  829. */
  830. "pattern": [
  831. "xx",
  832. "xx"
  833. ],
  834. // Configured Feature spawner.
  835. "spawners": [
  836. {
  837. "data": {
  838. // Registry ID of the configured feature.
  839. "featureID": "byg:conifer_tree8"
  840. },
  841. "weight": 1
  842. }
  843. ]
  844. }
  845. ],
  846. "byg:fungal_imparius": [
  847. {
  848. /* Pattern required for this block to spawn a configured feature.
  849. "x" represents a sapling position." " represents air.
  850. Max size is 5x5.
  851. */
  852. "pattern": [
  853. "x"
  854. ],
  855. // Configured Feature spawner.
  856. "spawners": [
  857. {
  858. "data": {
  859. // Registry ID of the configured feature.
  860. "featureID": "byg:fungal_imparius1"
  861. },
  862. "weight": 1
  863. },
  864. {
  865. "data": {
  866. // Registry ID of the configured feature.
  867. "featureID": "byg:fungal_imparius2"
  868. },
  869. "weight": 1
  870. },
  871. {
  872. "data": {
  873. // Registry ID of the configured feature.
  874. "featureID": "byg:fungal_imparius3"
  875. },
  876. "weight": 1
  877. },
  878. {
  879. "data": {
  880. // Registry ID of the configured feature.
  881. "featureID": "byg:fungal_imparius4"
  882. },
  883. "weight": 1
  884. },
  885. {
  886. "data": {
  887. // Registry ID of the configured feature.
  888. "featureID": "byg:fungal_imparius5"
  889. },
  890. "weight": 1
  891. }
  892. ]
  893. },
  894. {
  895. /* Pattern required for this block to spawn a configured feature.
  896. "x" represents a sapling position." " represents air.
  897. Max size is 5x5.
  898. */
  899. "pattern": [
  900. " x ",
  901. "x x",
  902. " x "
  903. ],
  904. // Configured Feature spawner.
  905. "spawners": [
  906. {
  907. "data": {
  908. // Registry ID of the configured feature.
  909. "featureID": "byg:fungal_imparius1"
  910. },
  911. "weight": 1
  912. },
  913. {
  914. "data": {
  915. // Registry ID of the configured feature.
  916. "featureID": "byg:fungal_imparius2"
  917. },
  918. "weight": 1
  919. },
  920. {
  921. "data": {
  922. // Registry ID of the configured feature.
  923. "featureID": "byg:fungal_imparius3"
  924. },
  925. "weight": 1
  926. },
  927. {
  928. "data": {
  929. // Registry ID of the configured feature.
  930. "featureID": "byg:fungal_imparius4"
  931. },
  932. "weight": 1
  933. },
  934. {
  935. "data": {
  936. // Registry ID of the configured feature.
  937. "featureID": "byg:fungal_imparius5"
  938. },
  939. "weight": 1
  940. }
  941. ]
  942. }
  943. ],
  944. "byg:green_enchanted_sapling": [
  945. {
  946. /* Pattern required for this block to spawn a configured feature.
  947. "x" represents a sapling position." " represents air.
  948. Max size is 5x5.
  949. */
  950. "pattern": [
  951. "x"
  952. ],
  953. // Configured Feature spawner.
  954. "spawners": [
  955. {
  956. "data": {
  957. // Registry ID of the configured feature.
  958. "featureID": "byg:green_enchanted_tree1"
  959. },
  960. "weight": 1
  961. },
  962. {
  963. "data": {
  964. // Registry ID of the configured feature.
  965. "featureID": "byg:green_enchanted_tree2"
  966. },
  967. "weight": 1
  968. },
  969. {
  970. "data": {
  971. // Registry ID of the configured feature.
  972. "featureID": "byg:green_enchanted_tree3"
  973. },
  974. "weight": 1
  975. }
  976. ]
  977. }
  978. ],
  979. "byg:green_mushroom": [
  980. {
  981. /* Pattern required for this block to spawn a configured feature.
  982. "x" represents a sapling position." " represents air.
  983. Max size is 5x5.
  984. */
  985. "pattern": [
  986. "x"
  987. ],
  988. // Configured Feature spawner.
  989. "spawners": [
  990. {
  991. "data": {
  992. // Registry ID of the configured feature.
  993. "featureID": "byg:huge_green_mushroom"
  994. },
  995. "weight": 1
  996. }
  997. ]
  998. }
  999. ],
  1000. "byg:holly_sapling": [
  1001. {
  1002. /* Pattern required for this block to spawn a configured feature.
  1003. "x" represents a sapling position." " represents air.
  1004. Max size is 5x5.
  1005. */
  1006. "pattern": [
  1007. "x"
  1008. ],
  1009. // Configured Feature spawner.
  1010. "spawners": [
  1011. {
  1012. "data": {
  1013. // Registry ID of the configured feature.
  1014. "featureID": "byg:holly_tree1"
  1015. },
  1016. "weight": 1
  1017. },
  1018. {
  1019. "data": {
  1020. // Registry ID of the configured feature.
  1021. "featureID": "byg:holly_tree2"
  1022. },
  1023. "weight": 1
  1024. },
  1025. {
  1026. "data": {
  1027. // Registry ID of the configured feature.
  1028. "featureID": "byg:holly_tree4"
  1029. },
  1030. "weight": 1
  1031. }
  1032. ]
  1033. },
  1034. {
  1035. /* Pattern required for this block to spawn a configured feature.
  1036. "x" represents a sapling position." " represents air.
  1037. Max size is 5x5.
  1038. */
  1039. "pattern": [
  1040. "xx",
  1041. "xx"
  1042. ],
  1043. // Configured Feature spawner.
  1044. "spawners": [
  1045. {
  1046. "data": {
  1047. // Registry ID of the configured feature.
  1048. "featureID": "byg:holly_tree3"
  1049. },
  1050. "weight": 1
  1051. }
  1052. ]
  1053. }
  1054. ],
  1055. "byg:imparius_mushroom": [
  1056. {
  1057. /* Pattern required for this block to spawn a configured feature.
  1058. "x" represents a sapling position." " represents air.
  1059. Max size is 5x5.
  1060. */
  1061. "pattern": [
  1062. " x ",
  1063. "x x",
  1064. " x "
  1065. ],
  1066. // Configured Feature spawner.
  1067. "spawners": [
  1068. {
  1069. "data": {
  1070. // Registry ID of the configured feature.
  1071. "featureID": "byg:imparius_mushroom1",
  1072. // Some features don't spawn centered, this lets us offset the feature to center it.
  1073. "spawnOffset": [
  1074. 0,
  1075. 0,
  1076. 1
  1077. ]
  1078. },
  1079. "weight": 1
  1080. }
  1081. ]
  1082. },
  1083. {
  1084. /* Pattern required for this block to spawn a configured feature.
  1085. "x" represents a sapling position." " represents air.
  1086. Max size is 5x5.
  1087. */
  1088. "pattern": [
  1089. " x ",
  1090. "x x",
  1091. " x "
  1092. ],
  1093. // Configured Feature spawner.
  1094. "spawners": [
  1095. {
  1096. "data": {
  1097. // Registry ID of the configured feature.
  1098. "featureID": "byg:imparius_mushroom2"
  1099. },
  1100. "weight": 1
  1101. },
  1102. {
  1103. "data": {
  1104. // Registry ID of the configured feature.
  1105. "featureID": "byg:imparius_mushroom3"
  1106. },
  1107. "weight": 1
  1108. },
  1109. {
  1110. "data": {
  1111. // Registry ID of the configured feature.
  1112. "featureID": "byg:imparius_mushroom4"
  1113. },
  1114. "weight": 1
  1115. },
  1116. {
  1117. "data": {
  1118. // Registry ID of the configured feature.
  1119. "featureID": "byg:imparius_mushroom5"
  1120. },
  1121. "weight": 1
  1122. },
  1123. {
  1124. "data": {
  1125. // Registry ID of the configured feature.
  1126. "featureID": "byg:imparius_mushroom6"
  1127. },
  1128. "weight": 1
  1129. }
  1130. ]
  1131. }
  1132. ],
  1133. "byg:indigo_jacaranda_sapling": [
  1134. {
  1135. /* Pattern required for this block to spawn a configured feature.
  1136. "x" represents a sapling position." " represents air.
  1137. Max size is 5x5.
  1138. */
  1139. "pattern": [
  1140. "x"
  1141. ],
  1142. // Configured Feature spawner.
  1143. "spawners": [
  1144. {
  1145. "data": {
  1146. // Registry ID of the configured feature.
  1147. "featureID": "byg:indigo_jacaranda_tree1"
  1148. },
  1149. "weight": 1
  1150. },
  1151. {
  1152. "data": {
  1153. // Registry ID of the configured feature.
  1154. "featureID": "byg:indigo_jacaranda_tree2"
  1155. },
  1156. "weight": 1
  1157. }
  1158. ]
  1159. }
  1160. ],
  1161. "byg:jacaranda_sapling": [
  1162. {
  1163. /* Pattern required for this block to spawn a configured feature.
  1164. "x" represents a sapling position." " represents air.
  1165. Max size is 5x5.
  1166. */
  1167. "pattern": [
  1168. "x"
  1169. ],
  1170. // Configured Feature spawner.
  1171. "spawners": [
  1172. {
  1173. "data": {
  1174. // Registry ID of the configured feature.
  1175. "featureID": "byg:jacaranda_tree1"
  1176. },
  1177. "weight": 1
  1178. },
  1179. {
  1180. "data": {
  1181. // Registry ID of the configured feature.
  1182. "featureID": "byg:jacaranda_tree2"
  1183. },
  1184. "weight": 1
  1185. }
  1186. ]
  1187. }
  1188. ],
  1189. "byg:joshua_sapling": [
  1190. {
  1191. /* Pattern required for this block to spawn a configured feature.
  1192. "x" represents a sapling position." " represents air.
  1193. Max size is 5x5.
  1194. */
  1195. "pattern": [
  1196. "x"
  1197. ],
  1198. // Configured Feature spawner.
  1199. "spawners": [
  1200. {
  1201. "data": {
  1202. // Registry ID of the configured feature.
  1203. "featureID": "byg:joshua_tree1"
  1204. },
  1205. "weight": 1
  1206. },
  1207. {
  1208. "data": {
  1209. // Registry ID of the configured feature.
  1210. "featureID": "byg:joshua_tree2"
  1211. },
  1212. "weight": 1
  1213. }
  1214. ]
  1215. }
  1216. ],
  1217. "byg:lament_sapling": [
  1218. {
  1219. /* Pattern required for this block to spawn a configured feature.
  1220. "x" represents a sapling position." " represents air.
  1221. Max size is 5x5.
  1222. */
  1223. "pattern": [
  1224. "x"
  1225. ],
  1226. // Configured Feature spawner.
  1227. "spawners": [
  1228. {
  1229. "data": {
  1230. // Registry ID of the configured feature.
  1231. "featureID": "byg:lament_twisty_tree1"
  1232. },
  1233. "weight": 1
  1234. },
  1235. {
  1236. "data": {
  1237. // Registry ID of the configured feature.
  1238. "featureID": "byg:lament_twisty_tree2"
  1239. },
  1240. "weight": 1
  1241. },
  1242. {
  1243. "data": {
  1244. // Registry ID of the configured feature.
  1245. "featureID": "byg:lament_twisty_tree3"
  1246. },
  1247. "weight": 1
  1248. },
  1249. {
  1250. "data": {
  1251. // Registry ID of the configured feature.
  1252. "featureID": "byg:lament_weeping_tree1"
  1253. },
  1254. "weight": 1
  1255. },
  1256. {
  1257. "data": {
  1258. // Registry ID of the configured feature.
  1259. "featureID": "byg:lament_weeping_tree2"
  1260. },
  1261. "weight": 1
  1262. },
  1263. {
  1264. "data": {
  1265. // Registry ID of the configured feature.
  1266. "featureID": "byg:lament_weeping_tree3"
  1267. },
  1268. "weight": 1
  1269. }
  1270. ]
  1271. }
  1272. ],
  1273. "byg:mahogany_sapling": [
  1274. {
  1275. /* Pattern required for this block to spawn a configured feature.
  1276. "x" represents a sapling position." " represents air.
  1277. Max size is 5x5.
  1278. */
  1279. "pattern": [
  1280. "x"
  1281. ],
  1282. // Configured Feature spawner.
  1283. "spawners": [
  1284. {
  1285. "data": {
  1286. // Registry ID of the configured feature.
  1287. "featureID": "byg:mahogany_tree1"
  1288. },
  1289. "weight": 1
  1290. },
  1291. {
  1292. "data": {
  1293. // Registry ID of the configured feature.
  1294. "featureID": "byg:mahogany_tree2"
  1295. },
  1296. "weight": 1
  1297. },
  1298. {
  1299. "data": {
  1300. // Registry ID of the configured feature.
  1301. "featureID": "byg:mahogany_tree3"
  1302. },
  1303. "weight": 1
  1304. },
  1305. {
  1306. "data": {
  1307. // Registry ID of the configured feature.
  1308. "featureID": "byg:mahogany_tree4"
  1309. },
  1310. "weight": 1
  1311. }
  1312. ]
  1313. }
  1314. ],
  1315. "byg:mangrove_sapling": [
  1316. {
  1317. /* Pattern required for this block to spawn a configured feature.
  1318. "x" represents a sapling position." " represents air.
  1319. Max size is 5x5.
  1320. */
  1321. "pattern": [
  1322. " x ",
  1323. "x x",
  1324. " x "
  1325. ],
  1326. // Configured Feature spawner.
  1327. "spawners": [
  1328. {
  1329. "data": {
  1330. // Registry ID of the configured feature.
  1331. "featureID": "byg:mangrove_tree1"
  1332. },
  1333. "weight": 1
  1334. },
  1335. {
  1336. "data": {
  1337. // Registry ID of the configured feature.
  1338. "featureID": "byg:mangrove_tree2"
  1339. },
  1340. "weight": 1
  1341. },
  1342. {
  1343. "data": {
  1344. // Registry ID of the configured feature.
  1345. "featureID": "byg:mangrove_tree3"
  1346. },
  1347. "weight": 1
  1348. },
  1349. {
  1350. "data": {
  1351. // Registry ID of the configured feature.
  1352. "featureID": "byg:mangrove_tree4"
  1353. },
  1354. "weight": 1
  1355. },
  1356. {
  1357. "data": {
  1358. // Registry ID of the configured feature.
  1359. "featureID": "byg:mangrove_tree5"
  1360. },
  1361. "weight": 1
  1362. }
  1363. ]
  1364. }
  1365. ],
  1366. "byg:maple_sapling": [
  1367. {
  1368. /* Pattern required for this block to spawn a configured feature.
  1369. "x" represents a sapling position." " represents air.
  1370. Max size is 5x5.
  1371. */
  1372. "pattern": [
  1373. "x"
  1374. ],
  1375. // Configured Feature spawner.
  1376. "spawners": [
  1377. {
  1378. "data": {
  1379. // Registry ID of the configured feature.
  1380. "featureID": "byg:maple_tree1"
  1381. },
  1382. "weight": 1
  1383. }
  1384. ]
  1385. }
  1386. ],
  1387. "byg:nightshade_sapling": [
  1388. {
  1389. /* Pattern required for this block to spawn a configured feature.
  1390. "x" represents a sapling position." " represents air.
  1391. Max size is 5x5.
  1392. */
  1393. "pattern": [
  1394. "x"
  1395. ],
  1396. // Configured Feature spawner.
  1397. "spawners": [
  1398. {
  1399. "data": {
  1400. // Registry ID of the configured feature.
  1401. "featureID": "byg:nightshade_tree1"
  1402. },
  1403. "weight": 1
  1404. },
  1405. {
  1406. "data": {
  1407. // Registry ID of the configured feature.
  1408. "featureID": "byg:nightshade_tree2"
  1409. },
  1410. "weight": 1
  1411. },
  1412. {
  1413. "data": {
  1414. // Registry ID of the configured feature.
  1415. "featureID": "byg:nightshade_tree3"
  1416. },
  1417. "weight": 1
  1418. },
  1419. {
  1420. "data": {
  1421. // Registry ID of the configured feature.
  1422. "featureID": "byg:nightshade_tree4"
  1423. },
  1424. "weight": 1
  1425. }
  1426. ]
  1427. }
  1428. ],
  1429. "byg:orange_birch_sapling": [
  1430. {
  1431. /* Pattern required for this block to spawn a configured feature.
  1432. "x" represents a sapling position." " represents air.
  1433. Max size is 5x5.
  1434. */
  1435. "pattern": [
  1436. "x"
  1437. ],
  1438. // Configured Feature spawner.
  1439. "spawners": [
  1440. {
  1441. "data": {
  1442. // Registry ID of the configured feature.
  1443. "featureID": "byg:orange_birch_tree1"
  1444. },
  1445. "weight": 1
  1446. },
  1447. {
  1448. "data": {
  1449. // Registry ID of the configured feature.
  1450. "featureID": "byg:orange_birch_tree2"
  1451. },
  1452. "weight": 1
  1453. },
  1454. {
  1455. "data": {
  1456. // Registry ID of the configured feature.
  1457. "featureID": "byg:orange_birch_tree3"
  1458. },
  1459. "weight": 1
  1460. },
  1461. {
  1462. "data": {
  1463. // Registry ID of the configured feature.
  1464. "featureID": "byg:orange_birch_tree4"
  1465. },
  1466. "weight": 1
  1467. }
  1468. ]
  1469. }
  1470. ],
  1471. "byg:orange_oak_sapling": [
  1472. {
  1473. /* Pattern required for this block to spawn a configured feature.
  1474. "x" represents a sapling position." " represents air.
  1475. Max size is 5x5.
  1476. */
  1477. "pattern": [
  1478. "x"
  1479. ],
  1480. // Configured Feature spawner.
  1481. "spawners": [
  1482. {
  1483. "data": {
  1484. // Registry ID of the configured feature.
  1485. "featureID": "byg:deciduous_orange_tree1"
  1486. },
  1487. "weight": 1
  1488. },
  1489. {
  1490. "data": {
  1491. // Registry ID of the configured feature.
  1492. "featureID": "byg:deciduous_orange_tree2"
  1493. },
  1494. "weight": 1
  1495. },
  1496. {
  1497. "data": {
  1498. // Registry ID of the configured feature.
  1499. "featureID": "byg:deciduous_orange_tree3"
  1500. },
  1501. "weight": 1
  1502. },
  1503. {
  1504. "data": {
  1505. // Registry ID of the configured feature.
  1506. "featureID": "byg:deciduous_orange_tree4"
  1507. },
  1508. "weight": 1
  1509. },
  1510. {
  1511. "data": {
  1512. // Registry ID of the configured feature.
  1513. "featureID": "byg:orange_oak_tree1"
  1514. },
  1515. "weight": 1
  1516. },
  1517. {
  1518. "data": {
  1519. // Registry ID of the configured feature.
  1520. "featureID": "byg:orange_oak_tree2"
  1521. },
  1522. "weight": 1
  1523. },
  1524. {
  1525. "data": {
  1526. // Registry ID of the configured feature.
  1527. "featureID": "byg:orange_oak_tree3"
  1528. },
  1529. "weight": 1
  1530. }
  1531. ]
  1532. },
  1533. {
  1534. /* Pattern required for this block to spawn a configured feature.
  1535. "x" represents a sapling position." " represents air.
  1536. Max size is 5x5.
  1537. */
  1538. "pattern": [
  1539. "xx",
  1540. "xx"
  1541. ],
  1542. // Configured Feature spawner.
  1543. "spawners": [
  1544. {
  1545. "data": {
  1546. // Registry ID of the configured feature.
  1547. "featureID": "byg:large_orange_oak_tree1"
  1548. },
  1549. "weight": 1
  1550. },
  1551. {
  1552. "data": {
  1553. // Registry ID of the configured feature.
  1554. "featureID": "byg:large_orange_oak_tree2"
  1555. },
  1556. "weight": 1
  1557. },
  1558. {
  1559. "data": {
  1560. // Registry ID of the configured feature.
  1561. "featureID": "byg:large_orange_oak_tree3"
  1562. },
  1563. "weight": 1
  1564. }
  1565. ]
  1566. }
  1567. ],
  1568. "byg:orange_spruce_sapling": [
  1569. {
  1570. /* Pattern required for this block to spawn a configured feature.
  1571. "x" represents a sapling position." " represents air.
  1572. Max size is 5x5.
  1573. */
  1574. "pattern": [
  1575. "x"
  1576. ],
  1577. // Configured Feature spawner.
  1578. "spawners": [
  1579. {
  1580. "data": {
  1581. // Registry ID of the configured feature.
  1582. "featureID": "byg:spruce_orange_tree1"
  1583. },
  1584. "weight": 1
  1585. },
  1586. {
  1587. "data": {
  1588. // Registry ID of the configured feature.
  1589. "featureID": "byg:spruce_orange_tree2"
  1590. },
  1591. "weight": 1
  1592. },
  1593. {
  1594. "data": {
  1595. // Registry ID of the configured feature.
  1596. "featureID": "byg:spruce_orange_tree3"
  1597. },
  1598. "weight": 1
  1599. },
  1600. {
  1601. "data": {
  1602. // Registry ID of the configured feature.
  1603. "featureID": "byg:spruce_orange_tree4"
  1604. },
  1605. "weight": 1
  1606. }
  1607. ]
  1608. },
  1609. {
  1610. /* Pattern required for this block to spawn a configured feature.
  1611. "x" represents a sapling position." " represents air.
  1612. Max size is 5x5.
  1613. */
  1614. "pattern": [
  1615. "xx",
  1616. "xx"
  1617. ],
  1618. // Configured Feature spawner.
  1619. "spawners": [
  1620. {
  1621. "data": {
  1622. // Registry ID of the configured feature.
  1623. "featureID": "byg:spruce_orange_tree_medium1"
  1624. },
  1625. "weight": 1
  1626. },
  1627. {
  1628. "data": {
  1629. // Registry ID of the configured feature.
  1630. "featureID": "byg:spruce_orange_tree_medium2"
  1631. },
  1632. "weight": 1
  1633. },
  1634. {
  1635. "data": {
  1636. // Registry ID of the configured feature.
  1637. "featureID": "byg:spruce_orange_tree_medium3"
  1638. },
  1639. "weight": 1
  1640. },
  1641. {
  1642. "data": {
  1643. // Registry ID of the configured feature.
  1644. "featureID": "byg:spruce_orange_tree_medium4"
  1645. },
  1646. "weight": 1
  1647. }
  1648. ]
  1649. },
  1650. {
  1651. /* Pattern required for this block to spawn a configured feature.
  1652. "x" represents a sapling position." " represents air.
  1653. Max size is 5x5.
  1654. */
  1655. "pattern": [
  1656. "xxx",
  1657. "xxx",
  1658. "xxx"
  1659. ],
  1660. // Configured Feature spawner.
  1661. "spawners": [
  1662. {
  1663. "data": {
  1664. // Registry ID of the configured feature.
  1665. "featureID": "byg:spruce_orange_tree_large1"
  1666. },
  1667. "weight": 1
  1668. }
  1669. ]
  1670. }
  1671. ],
  1672. "byg:orchard_sapling": [
  1673. {
  1674. /* Pattern required for this block to spawn a configured feature.
  1675. "x" represents a sapling position." " represents air.
  1676. Max size is 5x5.
  1677. */
  1678. "pattern": [
  1679. "x"
  1680. ],
  1681. // Configured Feature spawner.
  1682. "spawners": [
  1683. {
  1684. "data": {
  1685. // Registry ID of the configured feature.
  1686. "featureID": "byg:orchard_tree1"
  1687. },
  1688. "weight": 1
  1689. },
  1690. {
  1691. "data": {
  1692. // Registry ID of the configured feature.
  1693. "featureID": "byg:orchard_tree3"
  1694. },
  1695. "weight": 1
  1696. }
  1697. ]
  1698. },
  1699. {
  1700. /* Pattern required for this block to spawn a configured feature.
  1701. "x" represents a sapling position." " represents air.
  1702. Max size is 5x5.
  1703. */
  1704. "pattern": [
  1705. "xxx",
  1706. "xxx",
  1707. "xxx"
  1708. ],
  1709. // Configured Feature spawner.
  1710. "spawners": [
  1711. {
  1712. "data": {
  1713. // Registry ID of the configured feature.
  1714. "featureID": "byg:orchard_tree2"
  1715. },
  1716. "weight": 1
  1717. }
  1718. ]
  1719. }
  1720. ],
  1721. "byg:palm_sapling": [
  1722. {
  1723. /* Pattern required for this block to spawn a configured feature.
  1724. "x" represents a sapling position." " represents air.
  1725. Max size is 5x5.
  1726. */
  1727. "pattern": [
  1728. "x"
  1729. ],
  1730. // Configured Feature spawner.
  1731. "spawners": [
  1732. {
  1733. "data": {
  1734. // Registry ID of the configured feature.
  1735. "featureID": "byg:palm_tree1"
  1736. },
  1737. "weight": 1
  1738. },
  1739. {
  1740. "data": {
  1741. // Registry ID of the configured feature.
  1742. "featureID": "byg:palm_tree2"
  1743. },
  1744. "weight": 1
  1745. },
  1746. {
  1747. "data": {
  1748. // Registry ID of the configured feature.
  1749. "featureID": "byg:palm_tree3"
  1750. },
  1751. "weight": 1
  1752. },
  1753. {
  1754. "data": {
  1755. // Registry ID of the configured feature.
  1756. "featureID": "byg:palm_tree4"
  1757. },
  1758. "weight": 1
  1759. }
  1760. ]
  1761. }
  1762. ],
  1763. "byg:palo_verde_sapling": [
  1764. {
  1765. /* Pattern required for this block to spawn a configured feature.
  1766. "x" represents a sapling position." " represents air.
  1767. Max size is 5x5.
  1768. */
  1769. "pattern": [
  1770. "x"
  1771. ],
  1772. // Configured Feature spawner.
  1773. "spawners": [
  1774. {
  1775. "data": {
  1776. // Registry ID of the configured feature.
  1777. "featureID": "byg:palo_verde_tree1"
  1778. },
  1779. "weight": 1
  1780. },
  1781. {
  1782. "data": {
  1783. // Registry ID of the configured feature.
  1784. "featureID": "byg:palo_verde_tree2"
  1785. },
  1786. "weight": 1
  1787. }
  1788. ]
  1789. }
  1790. ],
  1791. "byg:pine_sapling": [
  1792. {
  1793. /* Pattern required for this block to spawn a configured feature.
  1794. "x" represents a sapling position." " represents air.
  1795. Max size is 5x5.
  1796. */
  1797. "pattern": [
  1798. "x"
  1799. ],
  1800. // Configured Feature spawner.
  1801. "spawners": [
  1802. {
  1803. "data": {
  1804. // Registry ID of the configured feature.
  1805. "featureID": "byg:pine_tree1"
  1806. },
  1807. "weight": 1
  1808. },
  1809. {
  1810. "data": {
  1811. // Registry ID of the configured feature.
  1812. "featureID": "byg:pine_tree2"
  1813. },
  1814. "weight": 1
  1815. }
  1816. ]
  1817. }
  1818. ],
  1819. "byg:pink_cherry_sapling": [
  1820. {
  1821. /* Pattern required for this block to spawn a configured feature.
  1822. "x" represents a sapling position." " represents air.
  1823. Max size is 5x5.
  1824. */
  1825. "pattern": [
  1826. "x"
  1827. ],
  1828. // Configured Feature spawner.
  1829. "spawners": [
  1830. {
  1831. "data": {
  1832. // Registry ID of the configured feature.
  1833. "featureID": "byg:pink_cherry_tree2"
  1834. },
  1835. "weight": 1
  1836. }
  1837. ]
  1838. },
  1839. {
  1840. /* Pattern required for this block to spawn a configured feature.
  1841. "x" represents a sapling position." " represents air.
  1842. Max size is 5x5.
  1843. */
  1844. "pattern": [
  1845. "xx",
  1846. "xx"
  1847. ],
  1848. // Configured Feature spawner.
  1849. "spawners": [
  1850. {
  1851. "data": {
  1852. // Registry ID of the configured feature.
  1853. "featureID": "byg:pink_cherry_tree1"
  1854. },
  1855. "weight": 1
  1856. }
  1857. ]
  1858. }
  1859. ],
  1860. "byg:purple_bulbis_oddity": [
  1861. {
  1862. /* Pattern required for this block to spawn a configured feature.
  1863. "x" represents a sapling position." " represents air.
  1864. Max size is 5x5.
  1865. */
  1866. "pattern": [
  1867. "x"
  1868. ],
  1869. // Configured Feature spawner.
  1870. "spawners": [
  1871. {
  1872. "data": {
  1873. // Registry ID of the configured feature.
  1874. "featureID": "byg:purple_bulbis_tree1"
  1875. },
  1876. "weight": 1
  1877. },
  1878. {
  1879. "data": {
  1880. // Registry ID of the configured feature.
  1881. "featureID": "byg:purple_bulbis_tree2"
  1882. },
  1883. "weight": 1
  1884. },
  1885. {
  1886. "data": {
  1887. // Registry ID of the configured feature.
  1888. "featureID": "byg:purple_bulbis_tree3"
  1889. },
  1890. "weight": 1
  1891. }
  1892. ]
  1893. },
  1894. {
  1895. /* Pattern required for this block to spawn a configured feature.
  1896. "x" represents a sapling position." " represents air.
  1897. Max size is 5x5.
  1898. */
  1899. "pattern": [
  1900. " x ",
  1901. "xxx",
  1902. " x "
  1903. ],
  1904. // Configured Feature spawner.
  1905. "spawners": [
  1906. {
  1907. "data": {
  1908. // Registry ID of the configured feature.
  1909. "featureID": "byg:purple_bulbis_tree4"
  1910. },
  1911. "weight": 1
  1912. },
  1913. {
  1914. "data": {
  1915. // Registry ID of the configured feature.
  1916. "featureID": "byg:purple_bulbis_tree5"
  1917. },
  1918. "weight": 1
  1919. }
  1920. ]
  1921. },
  1922. {
  1923. /* Pattern required for this block to spawn a configured feature.
  1924. "x" represents a sapling position." " represents air.
  1925. Max size is 5x5.
  1926. */
  1927. "pattern": [
  1928. "xxx",
  1929. "xxx",
  1930. "xxx"
  1931. ],
  1932. // Configured Feature spawner.
  1933. "spawners": [
  1934. {
  1935. "data": {
  1936. // Registry ID of the configured feature.
  1937. "featureID": "byg:purple_bulbis_tree6",
  1938. // Some features don't spawn centered, this lets us offset the feature to center it.
  1939. "spawnOffset": [
  1940. -1,
  1941. 0,
  1942. -1
  1943. ]
  1944. },
  1945. "weight": 1
  1946. }
  1947. ]
  1948. },
  1949. {
  1950. /* Pattern required for this block to spawn a configured feature.
  1951. "x" represents a sapling position." " represents air.
  1952. Max size is 5x5.
  1953. */
  1954. "pattern": [
  1955. " x ",
  1956. " xxx ",
  1957. "xxxxx",
  1958. " xxx ",
  1959. " x "
  1960. ],
  1961. // Configured Feature spawner.
  1962. "spawners": [
  1963. {
  1964. "data": {
  1965. // Registry ID of the configured feature.
  1966. "featureID": "byg:bulbis_tree7"
  1967. },
  1968. "weight": 1
  1969. }
  1970. ]
  1971. }
  1972. ],
  1973. "byg:rainbow_eucalyptus_sapling": [
  1974. {
  1975. /* Pattern required for this block to spawn a configured feature.
  1976. "x" represents a sapling position." " represents air.
  1977. Max size is 5x5.
  1978. */
  1979. "pattern": [
  1980. "x"
  1981. ],
  1982. // Configured Feature spawner.
  1983. "spawners": [
  1984. {
  1985. "data": {
  1986. // Registry ID of the configured feature.
  1987. "featureID": "byg:rainbow_eucalyptus_tree1"
  1988. },
  1989. "weight": 1
  1990. }
  1991. ]
  1992. },
  1993. {
  1994. /* Pattern required for this block to spawn a configured feature.
  1995. "x" represents a sapling position." " represents air.
  1996. Max size is 5x5.
  1997. */
  1998. "pattern": [
  1999. " x ",
  2000. "xxx",
  2001. " x "
  2002. ],
  2003. // Configured Feature spawner.
  2004. "spawners": [
  2005. {
  2006. "data": {
  2007. // Registry ID of the configured feature.
  2008. "featureID": "byg:large_rainbow_eucalyptus_tree1"
  2009. },
  2010. "weight": 1
  2011. }
  2012. ]
  2013. }
  2014. ],
  2015. "byg:red_birch_sapling": [
  2016. {
  2017. /* Pattern required for this block to spawn a configured feature.
  2018. "x" represents a sapling position." " represents air.
  2019. Max size is 5x5.
  2020. */
  2021. "pattern": [
  2022. "x"
  2023. ],
  2024. // Configured Feature spawner.
  2025. "spawners": [
  2026. {
  2027. "data": {
  2028. // Registry ID of the configured feature.
  2029. "featureID": "byg:red_birch_tree1"
  2030. },
  2031. "weight": 1
  2032. },
  2033. {
  2034. "data": {
  2035. // Registry ID of the configured feature.
  2036. "featureID": "byg:red_birch_tree2"
  2037. },
  2038. "weight": 1
  2039. },
  2040. {
  2041. "data": {
  2042. // Registry ID of the configured feature.
  2043. "featureID": "byg:red_birch_tree3"
  2044. },
  2045. "weight": 1
  2046. },
  2047. {
  2048. "data": {
  2049. // Registry ID of the configured feature.
  2050. "featureID": "byg:red_birch_tree4"
  2051. },
  2052. "weight": 1
  2053. }
  2054. ]
  2055. }
  2056. ],
  2057. "byg:red_maple_sapling": [
  2058. {
  2059. /* Pattern required for this block to spawn a configured feature.
  2060. "x" represents a sapling position." " represents air.
  2061. Max size is 5x5.
  2062. */
  2063. "pattern": [
  2064. "x"
  2065. ],
  2066. // Configured Feature spawner.
  2067. "spawners": [
  2068. {
  2069. "data": {
  2070. // Registry ID of the configured feature.
  2071. "featureID": "byg:red_maple_tree1"
  2072. },
  2073. "weight": 1
  2074. },
  2075. {
  2076. "data": {
  2077. // Registry ID of the configured feature.
  2078. "featureID": "byg:red_maple_tree2"
  2079. },
  2080. "weight": 1
  2081. }
  2082. ]
  2083. }
  2084. ],
  2085. "byg:red_oak_sapling": [
  2086. {
  2087. /* Pattern required for this block to spawn a configured feature.
  2088. "x" represents a sapling position." " represents air.
  2089. Max size is 5x5.
  2090. */
  2091. "pattern": [
  2092. "x"
  2093. ],
  2094. // Configured Feature spawner.
  2095. "spawners": [
  2096. {
  2097. "data": {
  2098. // Registry ID of the configured feature.
  2099. "featureID": "byg:deciduous_red_tree1"
  2100. },
  2101. "weight": 1
  2102. },
  2103. {
  2104. "data": {
  2105. // Registry ID of the configured feature.
  2106. "featureID": "byg:deciduous_red_tree2"
  2107. },
  2108. "weight": 1
  2109. },
  2110. {
  2111. "data": {
  2112. // Registry ID of the configured feature.
  2113. "featureID": "byg:deciduous_red_tree3"
  2114. },
  2115. "weight": 1
  2116. },
  2117. {
  2118. "data": {
  2119. // Registry ID of the configured feature.
  2120. "featureID": "byg:deciduous_red_tree4"
  2121. },
  2122. "weight": 1
  2123. },
  2124. {
  2125. "data": {
  2126. // Registry ID of the configured feature.
  2127. "featureID": "byg:red_oak_tree1"
  2128. },
  2129. "weight": 1
  2130. },
  2131. {
  2132. "data": {
  2133. // Registry ID of the configured feature.
  2134. "featureID": "byg:red_oak_tree2"
  2135. },
  2136. "weight": 1
  2137. },
  2138. {
  2139. "data": {
  2140. // Registry ID of the configured feature.
  2141. "featureID": "byg:red_oak_tree3"
  2142. },
  2143. "weight": 1
  2144. }
  2145. ]
  2146. },
  2147. {
  2148. /* Pattern required for this block to spawn a configured feature.
  2149. "x" represents a sapling position." " represents air.
  2150. Max size is 5x5.
  2151. */
  2152. "pattern": [
  2153. "xx",
  2154. "xx"
  2155. ],
  2156. // Configured Feature spawner.
  2157. "spawners": [
  2158. {
  2159. "data": {
  2160. // Registry ID of the configured feature.
  2161. "featureID": "byg:large_red_oak_tree1"
  2162. },
  2163. "weight": 1
  2164. },
  2165. {
  2166. "data": {
  2167. // Registry ID of the configured feature.
  2168. "featureID": "byg:large_red_oak_tree2"
  2169. },
  2170. "weight": 1
  2171. },
  2172. {
  2173. "data": {
  2174. // Registry ID of the configured feature.
  2175. "featureID": "byg:large_red_oak_tree3"
  2176. },
  2177. "weight": 1
  2178. }
  2179. ]
  2180. }
  2181. ],
  2182. "byg:red_spruce_sapling": [
  2183. {
  2184. /* Pattern required for this block to spawn a configured feature.
  2185. "x" represents a sapling position." " represents air.
  2186. Max size is 5x5.
  2187. */
  2188. "pattern": [
  2189. "x"
  2190. ],
  2191. // Configured Feature spawner.
  2192. "spawners": [
  2193. {
  2194. "data": {
  2195. // Registry ID of the configured feature.
  2196. "featureID": "byg:spruce_red_tree1"
  2197. },
  2198. "weight": 1
  2199. },
  2200. {
  2201. "data": {
  2202. // Registry ID of the configured feature.
  2203. "featureID": "byg:spruce_red_tree2"
  2204. },
  2205. "weight": 1
  2206. },
  2207. {
  2208. "data": {
  2209. // Registry ID of the configured feature.
  2210. "featureID": "byg:spruce_red_tree3"
  2211. },
  2212. "weight": 1
  2213. },
  2214. {
  2215. "data": {
  2216. // Registry ID of the configured feature.
  2217. "featureID": "byg:spruce_red_tree4"
  2218. },
  2219. "weight": 1
  2220. }
  2221. ]
  2222. },
  2223. {
  2224. /* Pattern required for this block to spawn a configured feature.
  2225. "x" represents a sapling position." " represents air.
  2226. Max size is 5x5.
  2227. */
  2228. "pattern": [
  2229. "xx",
  2230. "xx"
  2231. ],
  2232. // Configured Feature spawner.
  2233. "spawners": [
  2234. {
  2235. "data": {
  2236. // Registry ID of the configured feature.
  2237. "featureID": "byg:spruce_red_tree_medium1"
  2238. },
  2239. "weight": 1
  2240. },
  2241. {
  2242. "data": {
  2243. // Registry ID of the configured feature.
  2244. "featureID": "byg:spruce_red_tree_medium2"
  2245. },
  2246. "weight": 1
  2247. },
  2248. {
  2249. "data": {
  2250. // Registry ID of the configured feature.
  2251. "featureID": "byg:spruce_red_tree_medium3"
  2252. },
  2253. "weight": 1
  2254. },
  2255. {
  2256. "data": {
  2257. // Registry ID of the configured feature.
  2258. "featureID": "byg:spruce_red_tree_medium4"
  2259. },
  2260. "weight": 1
  2261. }
  2262. ]
  2263. },
  2264. {
  2265. /* Pattern required for this block to spawn a configured feature.
  2266. "x" represents a sapling position." " represents air.
  2267. Max size is 5x5.
  2268. */
  2269. "pattern": [
  2270. "xxx",
  2271. "xxx",
  2272. "xxx"
  2273. ],
  2274. // Configured Feature spawner.
  2275. "spawners": [
  2276. {
  2277. "data": {
  2278. // Registry ID of the configured feature.
  2279. "featureID": "byg:spruce_red_tree_large1"
  2280. },
  2281. "weight": 1
  2282. }
  2283. ]
  2284. }
  2285. ],
  2286. "byg:redwood_sapling": [
  2287. {
  2288. /* Pattern required for this block to spawn a configured feature.
  2289. "x" represents a sapling position." " represents air.
  2290. Max size is 5x5.
  2291. */
  2292. "pattern": [
  2293. " x ",
  2294. "xxx",
  2295. " x "
  2296. ],
  2297. // Configured Feature spawner.
  2298. "spawners": [
  2299. {
  2300. "data": {
  2301. // Registry ID of the configured feature.
  2302. "featureID": "byg:redwood_tree3"
  2303. },
  2304. "weight": 1
  2305. }
  2306. ]
  2307. },
  2308. {
  2309. /* Pattern required for this block to spawn a configured feature.
  2310. "x" represents a sapling position." " represents air.
  2311. Max size is 5x5.
  2312. */
  2313. "pattern": [
  2314. "xxx",
  2315. "xxx",
  2316. "xxx"
  2317. ],
  2318. // Configured Feature spawner.
  2319. "spawners": [
  2320. {
  2321. "data": {
  2322. // Registry ID of the configured feature.
  2323. "featureID": "byg:redwood_tree1"
  2324. },
  2325. "weight": 1
  2326. }
  2327. ]
  2328. },
  2329. {
  2330. /* Pattern required for this block to spawn a configured feature.
  2331. "x" represents a sapling position." " represents air.
  2332. Max size is 5x5.
  2333. */
  2334. "pattern": [
  2335. " x ",
  2336. " xxx ",
  2337. "xxxxx",
  2338. " xxx ",
  2339. " x "
  2340. ],
  2341. // Configured Feature spawner.
  2342. "spawners": [
  2343. {
  2344. "data": {
  2345. // Registry ID of the configured feature.
  2346. "featureID": "byg:redwood_tree2"
  2347. },
  2348. "weight": 1
  2349. }
  2350. ]
  2351. }
  2352. ],
  2353. "byg:shulkren_fungus": [
  2354. {
  2355. /* Pattern required for this block to spawn a configured feature.
  2356. "x" represents a sapling position." " represents air.
  2357. Max size is 5x5.
  2358. */
  2359. "pattern": [
  2360. "x"
  2361. ],
  2362. // Configured Feature spawner.
  2363. "spawners": [
  2364. {
  2365. "data": {
  2366. // Registry ID of the configured feature.
  2367. "featureID": "byg:shulkren_tree1"
  2368. },
  2369. "weight": 1
  2370. },
  2371. {
  2372. "data": {
  2373. // Registry ID of the configured feature.
  2374. "featureID": "byg:shulkren_tree2"
  2375. },
  2376. "weight": 1
  2377. }
  2378. ]
  2379. }
  2380. ],
  2381. "byg:silver_maple_sapling": [
  2382. {
  2383. /* Pattern required for this block to spawn a configured feature.
  2384. "x" represents a sapling position." " represents air.
  2385. Max size is 5x5.
  2386. */
  2387. "pattern": [
  2388. "x"
  2389. ],
  2390. // Configured Feature spawner.
  2391. "spawners": [
  2392. {
  2393. "data": {
  2394. // Registry ID of the configured feature.
  2395. "featureID": "byg:silver_maple_tree1"
  2396. },
  2397. "weight": 1
  2398. },
  2399. {
  2400. "data": {
  2401. // Registry ID of the configured feature.
  2402. "featureID": "byg:silver_maple_tree2"
  2403. },
  2404. "weight": 1
  2405. }
  2406. ]
  2407. }
  2408. ],
  2409. "byg:skyris_sapling": [
  2410. {
  2411. /* Pattern required for this block to spawn a configured feature.
  2412. "x" represents a sapling position." " represents air.
  2413. Max size is 5x5.
  2414. */
  2415. "pattern": [
  2416. "x"
  2417. ],
  2418. // Configured Feature spawner.
  2419. "spawners": [
  2420. {
  2421. "data": {
  2422. // Registry ID of the configured feature.
  2423. "featureID": "byg:skyris_tree1"
  2424. },
  2425. "weight": 1
  2426. },
  2427. {
  2428. "data": {
  2429. // Registry ID of the configured feature.
  2430. "featureID": "byg:skyris_tree2"
  2431. },
  2432. "weight": 1
  2433. },
  2434. {
  2435. "data": {
  2436. // Registry ID of the configured feature.
  2437. "featureID": "byg:skyris_tree3"
  2438. },
  2439. "weight": 1
  2440. },
  2441. {
  2442. "data": {
  2443. // Registry ID of the configured feature.
  2444. "featureID": "byg:skyris_tree4"
  2445. },
  2446. "weight": 1
  2447. },
  2448. {
  2449. "data": {
  2450. // Registry ID of the configured feature.
  2451. "featureID": "byg:skyris_tree5"
  2452. },
  2453. "weight": 1
  2454. }
  2455. ]
  2456. }
  2457. ],
  2458. "byg:soul_shroom": [
  2459. {
  2460. /* Pattern required for this block to spawn a configured feature.
  2461. "x" represents a sapling position." " represents air.
  2462. Max size is 5x5.
  2463. */
  2464. "pattern": [
  2465. "x"
  2466. ],
  2467. // Configured Feature spawner.
  2468. "spawners": [
  2469. {
  2470. "data": {
  2471. // Registry ID of the configured feature.
  2472. "featureID": "byg:soul_shroom_tree1"
  2473. },
  2474. "weight": 1
  2475. },
  2476. {
  2477. "data": {
  2478. // Registry ID of the configured feature.
  2479. "featureID": "byg:soul_shroom_tree2"
  2480. },
  2481. "weight": 1
  2482. },
  2483. {
  2484. "data": {
  2485. // Registry ID of the configured feature.
  2486. "featureID": "byg:soul_shroom_tree3"
  2487. },
  2488. "weight": 1
  2489. }
  2490. ]
  2491. }
  2492. ],
  2493. "byg:sythian_fungus": [
  2494. {
  2495. /* Pattern required for this block to spawn a configured feature.
  2496. "x" represents a sapling position." " represents air.
  2497. Max size is 5x5.
  2498. */
  2499. "pattern": [
  2500. "x"
  2501. ],
  2502. // Configured Feature spawner.
  2503. "spawners": [
  2504. {
  2505. "data": {
  2506. // Registry ID of the configured feature.
  2507. "featureID": "byg:sythian_fungus_tree1"
  2508. },
  2509. "weight": 1
  2510. },
  2511. {
  2512. "data": {
  2513. // Registry ID of the configured feature.
  2514. "featureID": "byg:sythian_fungus_tree2"
  2515. },
  2516. "weight": 1
  2517. },
  2518. {
  2519. "data": {
  2520. // Registry ID of the configured feature.
  2521. "featureID": "byg:sythian_fungus_tree3"
  2522. },
  2523. "weight": 1
  2524. },
  2525. {
  2526. "data": {
  2527. // Registry ID of the configured feature.
  2528. "featureID": "byg:sythian_fungus_tree4"
  2529. },
  2530. "weight": 1
  2531. }
  2532. ]
  2533. }
  2534. ],
  2535. "byg:weeping_milkcap": [
  2536. {
  2537. /* Pattern required for this block to spawn a configured feature.
  2538. "x" represents a sapling position." " represents air.
  2539. Max size is 5x5.
  2540. */
  2541. "pattern": [
  2542. "x"
  2543. ],
  2544. // Configured Feature spawner.
  2545. "spawners": [
  2546. {
  2547. "data": {
  2548. // Registry ID of the configured feature.
  2549. "featureID": "byg:huge_weeping_milkcap"
  2550. },
  2551. "weight": 1
  2552. }
  2553. ]
  2554. }
  2555. ],
  2556. "byg:white_cherry_sapling": [
  2557. {
  2558. /* Pattern required for this block to spawn a configured feature.
  2559. "x" represents a sapling position." " represents air.
  2560. Max size is 5x5.
  2561. */
  2562. "pattern": [
  2563. "x"
  2564. ],
  2565. // Configured Feature spawner.
  2566. "spawners": [
  2567. {
  2568. "data": {
  2569. // Registry ID of the configured feature.
  2570. "featureID": "byg:white_cherry_tree2"
  2571. },
  2572. "weight": 1
  2573. }
  2574. ]
  2575. },
  2576. {
  2577. /* Pattern required for this block to spawn a configured feature.
  2578. "x" represents a sapling position." " represents air.
  2579. Max size is 5x5.
  2580. */
  2581. "pattern": [
  2582. "xx",
  2583. "xx"
  2584. ],
  2585. // Configured Feature spawner.
  2586. "spawners": [
  2587. {
  2588. "data": {
  2589. // Registry ID of the configured feature.
  2590. "featureID": "byg:white_cherry_tree1"
  2591. },
  2592. "weight": 1
  2593. }
  2594. ]
  2595. }
  2596. ],
  2597. "byg:willow_sapling": [
  2598. {
  2599. /* Pattern required for this block to spawn a configured feature.
  2600. "x" represents a sapling position." " represents air.
  2601. Max size is 5x5.
  2602. */
  2603. "pattern": [
  2604. " x ",
  2605. " ",
  2606. "x x",
  2607. " ",
  2608. " x "
  2609. ],
  2610. // Configured Feature spawner.
  2611. "spawners": [
  2612. {
  2613. "data": {
  2614. // Registry ID of the configured feature.
  2615. "featureID": "byg:willow_tree1"
  2616. },
  2617. "weight": 1
  2618. },
  2619. {
  2620. "data": {
  2621. // Registry ID of the configured feature.
  2622. "featureID": "byg:willow_tree2"
  2623. },
  2624. "weight": 1
  2625. },
  2626. {
  2627. "data": {
  2628. // Registry ID of the configured feature.
  2629. "featureID": "byg:willow_tree3"
  2630. },
  2631. "weight": 1
  2632. },
  2633. {
  2634. "data": {
  2635. // Registry ID of the configured feature.
  2636. "featureID": "byg:willow_tree4"
  2637. },
  2638. "weight": 1
  2639. }
  2640. ]
  2641. }
  2642. ],
  2643. "byg:witch_hazel_sapling": [
  2644. {
  2645. /* Pattern required for this block to spawn a configured feature.
  2646. "x" represents a sapling position." " represents air.
  2647. Max size is 5x5.
  2648. */
  2649. "pattern": [
  2650. "xx",
  2651. "xx"
  2652. ],
  2653. // Configured Feature spawner.
  2654. "spawners": [
  2655. {
  2656. "data": {
  2657. // Registry ID of the configured feature.
  2658. "featureID": "byg:hazel_tree1"
  2659. },
  2660. "weight": 4
  2661. },
  2662. {
  2663. "data": {
  2664. // Registry ID of the configured feature.
  2665. "featureID": "byg:hazel_tree2"
  2666. },
  2667. "weight": 4
  2668. },
  2669. {
  2670. "data": {
  2671. // Registry ID of the configured feature.
  2672. "featureID": "byg:dead_hazel_tree1"
  2673. },
  2674. "weight": 1
  2675. },
  2676. {
  2677. "data": {
  2678. // Registry ID of the configured feature.
  2679. "featureID": "byg:dead_hazel_tree2"
  2680. },
  2681. "weight": 1
  2682. }
  2683. ]
  2684. }
  2685. ],
  2686. "byg:withering_oak_sapling": [
  2687. {
  2688. /* Pattern required for this block to spawn a configured feature.
  2689. "x" represents a sapling position." " represents air.
  2690. Max size is 5x5.
  2691. */
  2692. "pattern": [
  2693. "x"
  2694. ],
  2695. // Configured Feature spawner.
  2696. "spawners": [
  2697. {
  2698. "data": {
  2699. // Registry ID of the configured feature.
  2700. "featureID": "byg:withering_oak_tree1"
  2701. },
  2702. "weight": 1
  2703. },
  2704. {
  2705. "data": {
  2706. // Registry ID of the configured feature.
  2707. "featureID": "byg:withering_oak_tree2"
  2708. },
  2709. "weight": 1
  2710. },
  2711. {
  2712. "data": {
  2713. // Registry ID of the configured feature.
  2714. "featureID": "byg:withering_oak_tree3"
  2715. },
  2716. "weight": 1
  2717. },
  2718. {
  2719. "data": {
  2720. // Registry ID of the configured feature.
  2721. "featureID": "byg:withering_oak_tree4"
  2722. },
  2723. "weight": 1
  2724. },
  2725. {
  2726. "data": {
  2727. // Registry ID of the configured feature.
  2728. "featureID": "byg:withering_oak_tree5"
  2729. },
  2730. "weight": 1
  2731. }
  2732. ]
  2733. }
  2734. ],
  2735. "byg:wood_blewit": [
  2736. {
  2737. /* Pattern required for this block to spawn a configured feature.
  2738. "x" represents a sapling position." " represents air.
  2739. Max size is 5x5.
  2740. */
  2741. "pattern": [
  2742. "x"
  2743. ],
  2744. // Configured Feature spawner.
  2745. "spawners": [
  2746. {
  2747. "data": {
  2748. // Registry ID of the configured feature.
  2749. "featureID": "byg:huge_wood_blewit"
  2750. },
  2751. "weight": 1
  2752. }
  2753. ]
  2754. }
  2755. ],
  2756. "byg:yellow_birch_sapling": [
  2757. {
  2758. /* Pattern required for this block to spawn a configured feature.
  2759. "x" represents a sapling position." " represents air.
  2760. Max size is 5x5.
  2761. */
  2762. "pattern": [
  2763. "x"
  2764. ],
  2765. // Configured Feature spawner.
  2766. "spawners": [
  2767. {
  2768. "data": {
  2769. // Registry ID of the configured feature.
  2770. "featureID": "byg:yellow_birch_tree1"
  2771. },
  2772. "weight": 1
  2773. },
  2774. {
  2775. "data": {
  2776. // Registry ID of the configured feature.
  2777. "featureID": "byg:yellow_birch_tree2"
  2778. },
  2779. "weight": 1
  2780. },
  2781. {
  2782. "data": {
  2783. // Registry ID of the configured feature.
  2784. "featureID": "byg:yellow_birch_tree3"
  2785. },
  2786. "weight": 1
  2787. },
  2788. {
  2789. "data": {
  2790. // Registry ID of the configured feature.
  2791. "featureID": "byg:yellow_birch_tree4"
  2792. },
  2793. "weight": 1
  2794. }
  2795. ]
  2796. }
  2797. ],
  2798. "byg:yellow_spruce_sapling": [
  2799. {
  2800. /* Pattern required for this block to spawn a configured feature.
  2801. "x" represents a sapling position." " represents air.
  2802. Max size is 5x5.
  2803. */
  2804. "pattern": [
  2805. "x"
  2806. ],
  2807. // Configured Feature spawner.
  2808. "spawners": [
  2809. {
  2810. "data": {
  2811. // Registry ID of the configured feature.
  2812. "featureID": "byg:spruce_yellow_tree1"
  2813. },
  2814. "weight": 1
  2815. },
  2816. {
  2817. "data": {
  2818. // Registry ID of the configured feature.
  2819. "featureID": "byg:spruce_yellow_tree2"
  2820. },
  2821. "weight": 1
  2822. },
  2823. {
  2824. "data": {
  2825. // Registry ID of the configured feature.
  2826. "featureID": "byg:spruce_yellow_tree3"
  2827. },
  2828. "weight": 1
  2829. },
  2830. {
  2831. "data": {
  2832. // Registry ID of the configured feature.
  2833. "featureID": "byg:spruce_yellow_tree4"
  2834. },
  2835. "weight": 1
  2836. }
  2837. ]
  2838. },
  2839. {
  2840. /* Pattern required for this block to spawn a configured feature.
  2841. "x" represents a sapling position." " represents air.
  2842. Max size is 5x5.
  2843. */
  2844. "pattern": [
  2845. "xx",
  2846. "xx"
  2847. ],
  2848. // Configured Feature spawner.
  2849. "spawners": [
  2850. {
  2851. "data": {
  2852. // Registry ID of the configured feature.
  2853. "featureID": "byg:spruce_yellow_tree_medium1"
  2854. },
  2855. "weight": 1
  2856. },
  2857. {
  2858. "data": {
  2859. // Registry ID of the configured feature.
  2860. "featureID": "byg:spruce_yellow_tree_medium2"
  2861. },
  2862. "weight": 1
  2863. },
  2864. {
  2865. "data": {
  2866. // Registry ID of the configured feature.
  2867. "featureID": "byg:spruce_yellow_tree_medium3"
  2868. },
  2869. "weight": 1
  2870. },
  2871. {
  2872. "data": {
  2873. // Registry ID of the configured feature.
  2874. "featureID": "byg:spruce_yellow_tree_medium4"
  2875. },
  2876. "weight": 1
  2877. }
  2878. ]
  2879. },
  2880. {
  2881. /* Pattern required for this block to spawn a configured feature.
  2882. "x" represents a sapling position." " represents air.
  2883. Max size is 5x5.
  2884. */
  2885. "pattern": [
  2886. "xxx",
  2887. "xxx",
  2888. "xxx"
  2889. ],
  2890. // Configured Feature spawner.
  2891. "spawners": [
  2892. {
  2893. "data": {
  2894. // Registry ID of the configured feature.
  2895. "featureID": "byg:spruce_yellow_tree_large1"
  2896. },
  2897. "weight": 1
  2898. }
  2899. ]
  2900. }
  2901. ],
  2902. "byg:zelkova_sapling": [
  2903. {
  2904. /* Pattern required for this block to spawn a configured feature.
  2905. "x" represents a sapling position." " represents air.
  2906. Max size is 5x5.
  2907. */
  2908. "pattern": [
  2909. "x"
  2910. ],
  2911. // Configured Feature spawner.
  2912. "spawners": [
  2913. {
  2914. "data": {
  2915. // Registry ID of the configured feature.
  2916. "featureID": "byg:zelkova_tree1"
  2917. },
  2918. "weight": 1
  2919. },
  2920. {
  2921. "data": {
  2922. // Registry ID of the configured feature.
  2923. "featureID": "byg:zelkova_tree2"
  2924. },
  2925. "weight": 1
  2926. },
  2927. {
  2928. "data": {
  2929. // Registry ID of the configured feature.
  2930. "featureID": "byg:zelkova_tree3"
  2931. },
  2932. "weight": 1
  2933. },
  2934. {
  2935. "data": {
  2936. // Registry ID of the configured feature.
  2937. "featureID": "byg:zelkova_brown_tree1"
  2938. },
  2939. "weight": 1
  2940. },
  2941. {
  2942. "data": {
  2943. // Registry ID of the configured feature.
  2944. "featureID": "byg:zelkova_brown_tree2"
  2945. },
  2946. "weight": 1
  2947. },
  2948. {
  2949. "data": {
  2950. // Registry ID of the configured feature.
  2951. "featureID": "byg:zelkova_brown_tree3"
  2952. },
  2953. "weight": 1
  2954. }
  2955. ]
  2956. }
  2957. ]
  2958. }
  2959. }